diff --git a/.eslintrc.json b/.eslintrc.json index 009ab15b47..be1d01ee15 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -199,7 +199,8 @@ "jsdoc": { "mode": "typescript", "preferredTypes": { - ".<>": "<>" + ".<>": "<>", + "Object": "object" }, "tagNamePreference": { "auguments": "extends" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 844e4083a5..2f22522783 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -63,6 +63,14 @@ jobs: fi + - name: Adjust manifest + uses: microsoft/variable-substitution@v1 + with: + files: "system.json" + env: + flags.hotReload: false + + # Set up Node - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index efdb1dc0ce..1849d429a2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -14,18 +14,18 @@ This repository leverages [gulp](https://gulpjs.com/) to run automated build tas Installs all dependencies needed to run developer tooling scripts. -### `npm run build` / `gulp buildAll` +### `npm run build` Runs all relevant build scripts: - Converts LESS -> CSS - Converts JSON -> DB (compendia) -### `npm run build:css` / `gulp buildCSS` +### `npm run build:css` Converts the LESS in `./less` to the final `dnd5e.css`. -### `npm run build:watch` / `gulp` +### `npm run build:watch` Runs the LESS -> CSS builder in watch mode so that changes made to the LESS files will automatically compile to CSS. @@ -44,8 +44,8 @@ npm run build:db gulp compilePacks ``` -- `gulp compilePacks` - Compile all JSON files into their NEDB files. -- `gulp compilePacks --pack classes` - Only compile the specified pack. +- `npm run build:db` - Compile all JSON files into their NEDB files. +- `npm run build:db -- classes` - Only compile the specified pack. #### Extracting Packs @@ -56,9 +56,9 @@ npm run build:json gulp extractPacks ``` -- `gulp extractPacks` - Extract all compendium NEDB files into JSON files. -- `gulp extractPacks --pack classes` - Only extract the contents of the specified compendium. -- `gulp extractPacks --pack classes --name Barbarian` - Only extract a single item from the specified compendium. +- `npm run build:json` - Extract all compendium NEDB files into JSON files. +- `npm run build:json -- classes` - Only extract the contents of the specified compendium. +- `npm run build:json -- classes Barbarian` - Only extract a single item from the specified compendium. #### Cleaning Packs @@ -69,9 +69,9 @@ npm run build:clean gulp extractPacks ``` -- `gulp cleanPacks` - Clean all source JSON files. -- `gulp cleanPacks --pack classes` - Only clean the source files for the specified compendium. -- `gulp cleanPacks --pack classes --name Barbarian` - Only clean a single item from the specified compendium. +- `npm run build:clean` - Clean all source JSON files. +- `npm run build:clean -- classes` - Only clean the source files for the specified compendium. +- `npm run build:clean -- classes Barbarian` - Only clean a single item from the specified compendium. ## Issues @@ -118,8 +118,8 @@ To contribute code, [fork this project](https://docs.github.com/en/get-started/q Please attempt to follow code style present throughout the project. An ESLint profile is included to help with maintaining a consistent code style. All warnings presented by the linter should be resolved before an PR is submitted. -- `gulp lint` or `npm run lint` - Run the linter and display any issues found. -- `gulp lint --fix` or `npm run lint:fix` - Automatically fix any code style issues that can be fixed. +- `npm run lint` - Run the linter and display any issues found. +- `npm run lint:fix` - Automatically fix any code style issues that can be fixed. ### Linked Issues diff --git a/dnd5e.css b/dnd5e.css index 7aaa921e65..842f4729df 100644 --- a/dnd5e.css +++ b/dnd5e.css @@ -547,6 +547,18 @@ h5 { /* ----------------------------------------- */ /* Trait Selector /* ----------------------------------------- */ +.trait-selector { + max-height: 700px; +} +.trait-selector form { + overflow: hidden; + display: flex; + flex-direction: column; +} +.trait-selector form > .trait-list { + overflow: auto; + border-bottom: 2px groove #eeede0; +} .trait-selector .trait-list { list-style: none; margin: 0; @@ -555,6 +567,12 @@ h5 { .trait-selector .trait-list li ol.trait-list { margin-left: 1.5em; } +.trait-selector .trait-list .category > label { + font-weight: bold; +} +.trait-selector .trait-list .wildcard > label { + font-style: italic; +} .trait-selector input[type="text"] { height: 24px; margin: 2px; @@ -634,6 +652,7 @@ h5 { font-size: 12px; line-height: 20px; font-weight: normal; + align-items: baseline; } .actor-type label.radio > input[type="radio"] { margin: 0 5px 0 0; @@ -708,6 +727,34 @@ h5 { width: 16px; height: 16px; } +/* ----------------------------------------- */ +/* Accordion */ +/* ----------------------------------------- */ +.accordion { + transition: margin-bottom 500ms ease; +} +.accordion.collapsed > .accordion-content { + height: 0; +} +.accordion-indicator { + display: none; + transition: transform 500ms ease; +} +.accordion .accordion-indicator { + display: inherit; + transform: rotate(0deg); +} +.accordion.collapsed .accordion-indicator { + transform: rotate(-90deg); +} +.accordion-heading { + cursor: pointer; + position: relative; +} +.accordion-content { + overflow: hidden; + transition: height 500ms ease; +} .dnd5e.sheet.actor { /* ----------------------------------------- */ /* Shared Styles */ @@ -1045,6 +1092,14 @@ h5 { height: 20px; line-height: 20px; } +.dnd5e.sheet.actor .counters .counter label { + cursor: pointer; + align-items: center; +} +.dnd5e.sheet.actor .counters .counter label input[type=checkbox] { + top: unset; + flex: none; +} .dnd5e.sheet.actor .counters .counter h4 { flex: auto; margin: 0; @@ -1161,6 +1216,7 @@ h5 { } .dnd5e.sheet.actor .inventory-list .item .item-name { cursor: pointer; + flex: auto; } .dnd5e.sheet.actor .inventory-list .item .item-name.rollable:hover .item-image { background-image: url("../../icons/svg/d20-grey.svg") !important; @@ -1388,6 +1444,12 @@ h5 { /* ----------------------------------------- */ /* Scale Value */ /* ----------------------------------------- */ + /* ----------------------------------------- */ + /* Size */ + /* ----------------------------------------- */ + /* ----------------------------------------- */ + /* Traits */ + /* ----------------------------------------- */ } .dnd5e.advancement input[type="text"], .dnd5e.advancement input[type="number"], @@ -1475,6 +1537,10 @@ h5 { padding: 0; font-size: var(--font-size-18); } +.dnd5e.advancement form[data-type="AbilityScoreImprovement"] .ability-scores > label > .cap { + margin-block: 0; + font-size: var(--font-size-13); +} .dnd5e.advancement form[data-type="AbilityScoreImprovement"] .ability-scores li { display: grid; grid-template: "label label label label" "minus value value plus" "minus delta delta plus"; @@ -1565,6 +1631,65 @@ h5 { .dnd5e.advancement.scale-value select option[value=""] { color: var(--color-text-light-6); } +.dnd5e.advancement.size textarea { + flex: 1 0 100%; +} +.dnd5e.advancement.size .trait-list { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 0.25rem; + padding: 0; + list-style: none; +} +.dnd5e.advancement.size .trait-list li { + flex: 1 1 40%; +} +.dnd5e.advancement.traits { + --grid-two-column-right-size: 0.6fr; +} +.dnd5e.advancement.traits form { + grid-gap: 1rem; +} +.dnd5e.advancement.traits .selected-trait h4 { + font-weight: bold; +} +.dnd5e.advancement.traits .selected-trait ul { + list-style: none; + padding: 0; +} +.dnd5e.advancement.traits .selected-trait ul li { + display: flex; + gap: 0.5em; +} +.dnd5e.advancement.traits .selected-trait ul li:not(:first-of-type) { + padding-block-start: 0.5em; +} +.dnd5e.advancement.traits .selected-trait ul label { + flex-grow: 1; + display: flex; + gap: 1em; + align-items: baseline; +} +.dnd5e.advancement.traits .selected-trait ul label:not(.selected) { + cursor: pointer; +} +.dnd5e.advancement.traits .selected-trait ul label:not(.selected):hover { + text-shadow: 0 0 8px var(--color-shadow-primary); +} +.dnd5e.advancement.traits .selected-trait ul label.selected { + font-weight: bold; +} +.dnd5e.advancement.traits .selected-trait ul label input[type="radio"] { + display: none; +} +.dnd5e.advancement.traits .hint textarea { + flex: 1 0 100%; +} +.dnd5e.advancement.traits [data-action="add-choice"] { + display: block; + padding-block: 0.25em; + text-align: center; +} .dnd5e.advancement-migration .items-list { margin-block-end: 1em; } @@ -1643,6 +1768,36 @@ h5 { .dnd5e.advancement.flow form[data-type="ScaleValue"] span.none { font-style: italic; } +.dnd5e.advancement.flow form[data-type="Trait"] select { + min-width: min(20em, 100%); + margin-block-end: 0.25em; +} +.dnd5e.advancement.flow form[data-type="Trait"] .trait-slots { + counter-reset: trait-list; + list-style: none; + padding: 0; +} +.dnd5e.advancement.flow form[data-type="Trait"] .trait-slot { + min-height: 30px; + align-items: center; + font-size: var(--font-size-14); +} +.dnd5e.advancement.flow form[data-type="Trait"] .trait-slot::before { + counter-increment: trait-list; + content: counter(trait-list); + width: 2em; + text-align: center; + font-size: var(--font-size-16); +} +.dnd5e.advancement.flow form[data-type="Trait"] .trait-slot a { + flex: 0; + padding-inline-end: 0.5em; +} +.dnd5e.advancement.flow form[data-type="Size"] select { + width: 100%; + font-size: var(--font-size-16); + height: 2em; +} .dnd5e.advancement.flow nav { display: flex; justify-content: flex-end; @@ -1659,16 +1814,16 @@ h5 { /* Sheet Header */ /* ----------------------------------------- */ /* ----------------------------------------- */ - /* Item Details Form */ + /* Item Description */ /* ----------------------------------------- */ /* ----------------------------------------- */ - /* Item Actions */ + /* Item Details Form */ /* ----------------------------------------- */ /* ----------------------------------------- */ /* Item Actions */ /* ----------------------------------------- */ /* ----------------------------------------- */ - /* Loot Sheet (No Tabs) */ + /* Item Actions */ /* ----------------------------------------- */ } .dnd5e.sheet.item .sheet-header img.profile { @@ -1697,6 +1852,27 @@ h5 { padding: 0 0.25em; text-align: right; } +.dnd5e.sheet.item .sheet-header .summary li { + display: flex; + justify-content: space-between; + gap: 0.25em; +} +.dnd5e.sheet.item .sheet-header .summary li span { + padding-inline: 4px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + font-weight: 400; +} +.dnd5e.sheet.item .sheet-header .summary li .config-button { + display: none; + font-size: var(--font-size-14); + font-weight: normal; + padding-inline-end: 0.25em; +} +.dnd5e.sheet.item .sheet-header .summary li:hover .config-button { + display: block; +} .dnd5e.sheet.item .sheet-navigation { margin-bottom: 5px; } @@ -1712,9 +1888,11 @@ h5 { } .dnd5e.sheet.item .sheet-body .item-properties { flex: 0 0 120px; - margin: 5px 5px 5px 0; - padding-right: 5px; + margin: 0 5px 0 0; + padding: 5px 5px 0 0; border-right: 2px groove #eeede0; + overflow: hidden auto; + height: 100%; } .dnd5e.sheet.item .sheet-body .item-properties .form-group { margin: 0; @@ -1748,6 +1926,66 @@ h5 { .dnd5e.sheet.item .sheet-body .item-properties [name="system.price.denomination"] { border: none; } +.dnd5e.sheet.item .form-group .config-button, +.dnd5e.sheet.item h4 .config-button { + color: #4b4a44; + font-size: 10px; + font-weight: normal; + opacity: 0; +} +.dnd5e.sheet.item .form-group:hover .config-button, +.dnd5e.sheet.item h4:hover .config-button { + display: inline; + opacity: 1; +} +.dnd5e.sheet.item [data-tab="description"] { + align-content: stretch; +} +.dnd5e.sheet.item [data-tab="description"] .item-description .description-header { + display: flex; + align-items: first baseline; + gap: 0.5em; + margin-block-end: 0; + padding: 0.25rem; + background-color: rgba(0, 0, 0, 0.05); +} +.dnd5e.sheet.item [data-tab="description"] .item-description .description-header .description-edit { + margin-inline-start: auto; + opacity: 20%; +} +.dnd5e.sheet.item [data-tab="description"] .item-description .description-header .description-edit .fa-solid.fa-edit { + position: absolute; + inset-block: 0; + inset-inline-end: 0; + padding: 6px; +} +.dnd5e.sheet.item [data-tab="description"] .item-description .description-header:hover .description-edit { + opacity: 100%; +} +.dnd5e.sheet.item [data-tab="description"] .item-description .editor + .description-header { + margin-block-start: 0.5rem; +} +.dnd5e.sheet.item [data-tab="description"] .item-description .editor:not(.prosemirror) { + height: auto; + padding-inline: 0.25rem; +} +.dnd5e.sheet.item [data-tab="description"] .item-description .accordion { + margin-block-end: 0.5rem; +} +.dnd5e.sheet.item [data-tab="description"] .item-description .accordion p:last-child { + margin-block-end: 0; +} +.dnd5e.sheet.item [data-tab="description"] .item-description .accordion.collapsed > .editor.accordion-content { + height: 0; +} +.dnd5e.sheet.item [data-tab="description"] .item-description .editor.accordion-content > .editor-content { + overflow: hidden; +} +.dnd5e.sheet.item [data-tab="description"] .item-description .accordion-indicator { + align-self: center; + opacity: 0.5; + font-size: 0.75em; +} .dnd5e.sheet.item .details input[type="text"], .dnd5e.sheet.item .details input[type="number"], .dnd5e.sheet.item .details select { @@ -1852,9 +2090,6 @@ h5 { .dnd5e.sheet.item .weapon-properties label.checkbox { flex: 0 0 98px; } -.dnd5e.sheet.item .loot-header { - margin-bottom: 10px; -} /* ----------------------------------------- */ /* Item Advancement */ /* ----------------------------------------- */ @@ -1967,6 +2202,13 @@ h5 { column-count: 3; } /* ----------------------------------------- */ +/* Journal Styles */ +/* ----------------------------------------- */ +.passive-check { + text-decoration: underline; + text-decoration-style: dotted; +} +/* ----------------------------------------- */ /* Journal Pages */ /* ----------------------------------------- */ .journal-editor { @@ -2018,7 +2260,7 @@ h5 { border-bottom: 1px solid var(--color-border-light-secondary); } /* ----------------------------------------- */ -/* Chat Cards +/* Chat Cards */ /* ----------------------------------------- */ .dnd5e.chat-card { font-style: normal; @@ -2105,6 +2347,21 @@ h5 { color: red; } /* ----------------------------------------- */ +/* Inline Roll Actions */ +/* ----------------------------------------- */ +a.roll-link { + background: #DDD; + padding: 1px 4px; + border: 1px solid var(--color-border-dark-tertiary); + border-radius: 2px; + white-space: nowrap; + word-break: break-all; +} +a.roll-link i { + color: var(--color-text-dark-inactive); + margin-inline-end: 0.25em; +} +/* ----------------------------------------- */ /* Basic Structure */ /* ----------------------------------------- */ .dnd5e.sheet.actor.character { @@ -2293,26 +2550,32 @@ h5 { .dnd5e.sheet.actor.npc .summary { font-size: 18px; } -.dnd5e.sheet.actor.npc .summary .creature-type { +.dnd5e.sheet.actor.npc .summary li { display: flex; justify-content: space-between; - width: 1em; - padding: 0 3px; + gap: 0.25em; } -.dnd5e.sheet.actor.npc .summary .creature-type span { +.dnd5e.sheet.actor.npc .summary li span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } -.dnd5e.sheet.actor.npc .summary .creature-type .config-button { +.dnd5e.sheet.actor.npc .summary li .config-button { display: none; font-size: 12px; font-weight: normal; line-height: 2em; } -.dnd5e.sheet.actor.npc .summary .creature-type:hover .config-button { +.dnd5e.sheet.actor.npc .summary li:hover .config-button { display: block; } +.dnd5e.sheet.actor.npc .summary .creature-type { + width: 1em; + padding: 0 3px; +} +.dnd5e.sheet.actor.npc .summary .source { + width: 1em; +} .dnd5e.sheet.actor.vehicle { min-width: 720px; min-height: 680px; diff --git a/dnd5e.mjs b/dnd5e.mjs index c4c4264819..b8f57ddc03 100644 --- a/dnd5e.mjs +++ b/dnd5e.mjs @@ -18,6 +18,7 @@ import * as canvas from "./module/canvas/_module.mjs"; import * as dataModels from "./module/data/_module.mjs"; import * as dice from "./module/dice/_module.mjs"; import * as documents from "./module/documents/_module.mjs"; +import * as enrichers from "./module/enrichers.mjs"; import * as migrations from "./module/migration.mjs"; import * as utils from "./module/utils.mjs"; import {ModuleArt} from "./module/module-art.mjs"; @@ -33,6 +34,7 @@ globalThis.dnd5e = { dataModels, dice, documents, + enrichers, migrations, utils }; @@ -57,7 +59,6 @@ Hooks.once("init", function() { CONFIG.Dice.D20Roll = dice.D20Roll; CONFIG.MeasuredTemplate.defaults.angle = 53.13; // 5e cone RAW should be 53.13 degrees CONFIG.ui.combat = applications.combat.CombatTracker5e; - CONFIG.compatibility.excludePatterns.push(/\bActiveEffect5e#label\b/); // backwards compatibility with v10 game.dnd5e.isV10 = game.release.generation < 11; // Register System Settings @@ -126,6 +127,8 @@ Hooks.once("init", function() { // Preload Handlebars helpers & partials utils.registerHandlebarsHelpers(); utils.preloadHandlebarsTemplates(); + + enrichers.registerCustomEnrichers(); }); /** @@ -289,7 +292,7 @@ Hooks.once("ready", function() { // Perform the migration if ( cv && isNewerVersion(game.system.flags.compatibleMigrationVersion, cv) ) { - ui.notifications.error(game.i18n.localize("MIGRATION.5eVersionTooOldWarning"), {permanent: true}); + ui.notifications.error("MIGRATION.5eVersionTooOldWarning", {localize: true, permanent: true}); } migrations.migrateWorld(); }); @@ -324,6 +327,7 @@ export { dataModels, dice, documents, + enrichers, migrations, utils, DND5E diff --git a/gulpfile.mjs b/gulpfile.mjs deleted file mode 100644 index 20df111e51..0000000000 --- a/gulpfile.mjs +++ /dev/null @@ -1,31 +0,0 @@ -import gulp from "gulp"; - -import * as css from "./utils/css.mjs"; -import * as javascript from "./utils/javascript.mjs"; -import * as packs from "./utils/packs.mjs"; - - -// Default export - build CSS and watch for updates -export default gulp.series( - gulp.parallel(css.compile), - css.watchUpdates -); - -// CSS compiling -export const buildCSS = gulp.series(css.compile); - -// Javascript compiling & linting -export const buildJS = gulp.series(javascript.compile); -export const lint = gulp.series(javascript.lint); - -// Compendium pack management -export const cleanPacks = gulp.series(packs.clean); -export const compilePacks = gulp.series(packs.compile); -export const extractPacks = gulp.series(packs.extract); - -// Build all artifacts -export const buildAll = gulp.parallel( - css.compile, - javascript.compile, - packs.compile -); diff --git a/icons/LICENSE b/icons/LICENSE index 28b21845d9..6f56023a86 100644 --- a/icons/LICENSE +++ b/icons/LICENSE @@ -9,3 +9,15 @@ The dnd5e system for Foundry Virtual Tabletop includes icon artwork licensed fro /svg/item-choice.svg - "Choice" by Delapouite under CC BY 3.0 /svg/item-grant.svg - "White book" by Willdabeast under CC BY 3.0 /svg/scale-value.svg - "Dice target" by Delapouite under CC BY 3.0 +/svg/size.svg - "Body height" by Delapouite under CC BY 3.0 +/svg/trait.svg - "Scroll unfurled" by Lorc under CC BY 3.0 +/svg/trait-armor-proficiencies.svg - "Leather armor" by Delapouite under CC BY 3.0 +/svg/trait-damage-immunities.svg - "Aura" by Lorc under CC BY 3.0 +/svg/trait-damage-resistances.svg - "Surrounded shield" by Lorc under CC BY 3.0 +/svg/trait-damage-vulnerabilities.svg - "Arm bandage" by Delapouite under CC BY 3.0 +/svg/trait-condition-immunities.svg - "Frozen body" by Delapouite under CC BY 3.0 +/svg/trait-languages.svg - "Wax tablet" by Delapouite under CC BY 3.0 +/svg/trait-saves.svg - "Dodging" by Lorc under CC BY 3.0 +/svg/trait-skills.svg - "Juggler" by Lorc under CC BY 3.0 +/svg/trait-tool-proficiencies.svg - "Swiss army knife" by Delapouite under CC BY 3.0 +/svg/trait-weapon-proficiencies.svg - "Crossed swords" by Lorc under CC BY 3.0 diff --git a/icons/svg/size.svg b/icons/svg/size.svg new file mode 100644 index 0000000000..5f0594fa69 --- /dev/null +++ b/icons/svg/size.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/svg/trait-armor-proficiencies.svg b/icons/svg/trait-armor-proficiencies.svg new file mode 100644 index 0000000000..d624d3d53b --- /dev/null +++ b/icons/svg/trait-armor-proficiencies.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/svg/trait-condition-immunities.svg b/icons/svg/trait-condition-immunities.svg new file mode 100644 index 0000000000..b1479d573e --- /dev/null +++ b/icons/svg/trait-condition-immunities.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/svg/trait-damage-immunities.svg b/icons/svg/trait-damage-immunities.svg new file mode 100644 index 0000000000..0798bf6026 --- /dev/null +++ b/icons/svg/trait-damage-immunities.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/svg/trait-damage-resistances.svg b/icons/svg/trait-damage-resistances.svg new file mode 100644 index 0000000000..b594fedf17 --- /dev/null +++ b/icons/svg/trait-damage-resistances.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/svg/trait-damage-vulnerabilities.svg b/icons/svg/trait-damage-vulnerabilities.svg new file mode 100644 index 0000000000..ad4ec14a90 --- /dev/null +++ b/icons/svg/trait-damage-vulnerabilities.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/svg/trait-languages.svg b/icons/svg/trait-languages.svg new file mode 100644 index 0000000000..19a7499699 --- /dev/null +++ b/icons/svg/trait-languages.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/svg/trait-saves.svg b/icons/svg/trait-saves.svg new file mode 100644 index 0000000000..4470f90db5 --- /dev/null +++ b/icons/svg/trait-saves.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/svg/trait-skills.svg b/icons/svg/trait-skills.svg new file mode 100644 index 0000000000..2ee89b33c7 --- /dev/null +++ b/icons/svg/trait-skills.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/svg/trait-tool-proficiencies.svg b/icons/svg/trait-tool-proficiencies.svg new file mode 100644 index 0000000000..3543b4e6d7 --- /dev/null +++ b/icons/svg/trait-tool-proficiencies.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/svg/trait-weapon-proficiencies.svg b/icons/svg/trait-weapon-proficiencies.svg new file mode 100644 index 0000000000..e36893cb38 --- /dev/null +++ b/icons/svg/trait-weapon-proficiencies.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/svg/trait.svg b/icons/svg/trait.svg new file mode 100644 index 0000000000..f16e46f0e0 --- /dev/null +++ b/icons/svg/trait.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/json/fa-token-mapping.json b/json/fa-token-mapping.json index 929c605f80..8b03993214 100644 --- a/json/fa-token-mapping.json +++ b/json/fa-token-mapping.json @@ -1,125 +1,147 @@ { "dnd5e.monsters": { + "irz834sqAxRihtSG": { + "actor":"systems/dnd5e/tokens/dragon/CopperDragonAdult.webp", + "token": { + "texture": { + "src": "systems/dnd5e/tokens/dragon/CopperDragonAdult.webp", + "scaleX": 2.33, + "scaleY": 2.33 + } + } + }, + "vFeFRlF2FOgf2HIL": { + "actor":"systems/dnd5e/tokens/dragon/RedDragonAncient.webp", + "token": { + "width": 13, + "height": 13, + "texture": { + "src": "systems/dnd5e/tokens/dragon/RedDragonAncient.webp", + "scaleX": 3, + "scaleY": 3 + } + } + }, "1vaBSMUfOy6JPJ14": { - "actor":"systems/dnd5e/tokens/humanoid/Drow.webp", - "token": "systems/dnd5e/tokens/humanoid/Drow.webp" - }, + "actor":"systems/dnd5e/tokens/humanoid/Drow.webp", + "token": "systems/dnd5e/tokens/humanoid/Drow.webp" + }, "3o2rQBqpzjIHmrBW": { - "actor":"systems/dnd5e/tokens/fiend/Erinyes.webp", - "token": { - "texture": { - "src":"systems/dnd5e/tokens/fiend/Erinyes.webp", - "scaleX":1.8, - "scaleY":1.8 - } - } - }, + "actor":"systems/dnd5e/tokens/fiend/Erinyes.webp", + "token": { + "texture": { + "src":"systems/dnd5e/tokens/fiend/Erinyes.webp", + "scaleX":1.8, + "scaleY":1.8 + } + } + }, "lOYt73eaJojBDxAV": { - "actor":"systems/dnd5e/tokens/celestial/Solar.webp", - "token": "systems/dnd5e/tokens/celestial/Solar.webp" - }, - "Hm4o2FgPZsdbXjLq": { - "actor":"systems/dnd5e/tokens/construct/FleshGolem.webp", - "token": "systems/dnd5e/tokens/construct/FleshGolem.webp" - }, - "mNijwXPMhwR7yYfc": { - "actor":"systems/dnd5e/tokens/dragon/YoungBlueDragon.webp", - "token": { - "texture": { - "src":"systems/dnd5e/tokens/dragon/YoungBlueDragon.webp", - "scaleX":2, - "scaleY":2 - } - } - }, - "FzvZ6xl3U9GoL9ju": { - "actor":"systems/dnd5e/tokens/dragon/YoungBrassDragon.webp", - "token": { - "texture": { - "src":"systems/dnd5e/tokens/dragon/YoungBrassDragon.webp", - "scaleX":2, - "scaleY":2 - } - } - }, - "qW8cBwg7ghCA4Cw6": { - "actor":"systems/dnd5e/tokens/dragon/YoungCopperDragon.webp", - "token": { - "texture": { - "src": "systems/dnd5e/tokens/dragon/YoungCopperDragon.webp", - "scaleX":2, - "scaleY":2 - } - } - }, - "7198siHjPJf8g0cG": { - "actor":"systems/dnd5e/tokens/dragon/Wyvern.webp", - "token": { - "texture": { - "src":"systems/dnd5e/tokens/dragon/Wyvern.webp", - "scaleX":2, - "scaleY":2 - } - } - }, - "sLdpiuaZF8lujJQy": { - "actor":"systems/dnd5e/tokens/fiend/Barbed.webp", - "token": "systems/dnd5e/tokens/fiend/Barbed.webp" - }, - "Aw2wmqGIatxe2ImI": { - "actor":"systems/dnd5e/tokens/giant/CloudGiant.webp", - "token": { - "texture": { - "src":"systems/dnd5e/tokens/giant/CloudGiant.webp", - "scaleX":1.66, - "scaleY":1.66 - } - } - }, - "KLCkHep28HBfdsky": { - "actor":"systems/dnd5e/tokens/giant/Ettin.webp", - "token": { - "texture": { - "src":"systems/dnd5e/tokens/giant/Ettin.webp", - "scaleX":1.5, - "scaleY":1.5 - } - } - }, - "9g4N9sjyh8Ql46to": { - "actor":"systems/dnd5e/tokens/giant/HillGiant.webp", - "token": { - "texture": { - "src":"systems/dnd5e/tokens/giant/HillGiant.webp", - "scaleX":1.66, - "scaleY":1.66 - } - } - }, - "5TmstVMURpVtmNR3": { - "actor":"systems/dnd5e/tokens/humanoid/HalfRedDragonVeteran.webp", - "token": "systems/dnd5e/tokens/humanoid/HalfRedDragonVeteran.webp" - }, - "zIr3NaNF0mWz5Ahq": { - "actor":"systems/dnd5e/tokens/humanoid/Weretiger.webp", - "token": "systems/dnd5e/tokens/humanoid/Weretiger.webp" - }, - "nEC1BRwM8Lx9hLXW": { - "actor":"systems/dnd5e/tokens/monstrosity/Androsphinx.webp", - "token": "systems/dnd5e/tokens/monstrosity/Androsphinx.webp" - }, - "gGeLeV411iQ5Yijs": { - "actor":"systems/dnd5e/tokens/plant/ShamblingMound.webp", - "token": "systems/dnd5e/tokens/plant/ShamblingMound.webp" - }, - "NB6wUgVqeOQtsQKu": { - "actor":"systems/dnd5e/tokens/plant/Treant.webp", - "token": "systems/dnd5e/tokens/plant/Treant.webp" - }, - "RenLfmDT2XlbCF4x": { - "actor":"systems/dnd5e/tokens/undead/OgreZombie.webp", - "token": "systems/dnd5e/tokens/undead/OgreZombie.webp" - }, + "actor":"systems/dnd5e/tokens/celestial/Solar.webp", + "token": "systems/dnd5e/tokens/celestial/Solar.webp" + }, + "Hm4o2FgPZsdbXjLq": { + "actor":"systems/dnd5e/tokens/construct/FleshGolem.webp", + "token": "systems/dnd5e/tokens/construct/FleshGolem.webp" + }, + "mNijwXPMhwR7yYfc": { + "actor":"systems/dnd5e/tokens/dragon/YoungBlueDragon.webp", + "token": { + "texture": { + "src":"systems/dnd5e/tokens/dragon/YoungBlueDragon.webp", + "scaleX":2, + "scaleY":2 + } + } + }, + "FzvZ6xl3U9GoL9ju": { + "actor":"systems/dnd5e/tokens/dragon/YoungBrassDragon.webp", + "token": { + "texture": { + "src":"systems/dnd5e/tokens/dragon/YoungBrassDragon.webp", + "scaleX":2, + "scaleY":2 + } + } + }, + "qW8cBwg7ghCA4Cw6": { + "actor":"systems/dnd5e/tokens/dragon/YoungCopperDragon.webp", + "token": { + "texture": { + "src": "systems/dnd5e/tokens/dragon/YoungCopperDragon.webp", + "scaleX":2, + "scaleY":2 + } + } + }, + "7198siHjPJf8g0cG": { + "actor":"systems/dnd5e/tokens/dragon/Wyvern.webp", + "token": { + "texture": { + "src":"systems/dnd5e/tokens/dragon/Wyvern.webp", + "scaleX":2, + "scaleY":2 + } + } + }, + "sLdpiuaZF8lujJQy": { + "actor":"systems/dnd5e/tokens/fiend/Barbed.webp", + "token": "systems/dnd5e/tokens/fiend/Barbed.webp" + }, + "Aw2wmqGIatxe2ImI": { + "actor":"systems/dnd5e/tokens/giant/CloudGiant.webp", + "token": { + "texture": { + "src":"systems/dnd5e/tokens/giant/CloudGiant.webp", + "scaleX":1.66, + "scaleY":1.66 + } + } + }, + "KLCkHep28HBfdsky": { + "actor":"systems/dnd5e/tokens/giant/Ettin.webp", + "token": { + "texture": { + "src":"systems/dnd5e/tokens/giant/Ettin.webp", + "scaleX":1.5, + "scaleY":1.5 + } + } + }, + "9g4N9sjyh8Ql46to": { + "actor":"systems/dnd5e/tokens/giant/HillGiant.webp", + "token": { + "texture": { + "src":"systems/dnd5e/tokens/giant/HillGiant.webp", + "scaleX":1.66, + "scaleY":1.66 + } + } + }, + "5TmstVMURpVtmNR3": { + "actor":"systems/dnd5e/tokens/humanoid/HalfRedDragonVeteran.webp", + "token": "systems/dnd5e/tokens/humanoid/HalfRedDragonVeteran.webp" + }, + "zIr3NaNF0mWz5Ahq": { + "actor":"systems/dnd5e/tokens/humanoid/Weretiger.webp", + "token": "systems/dnd5e/tokens/humanoid/Weretiger.webp" + }, + "nEC1BRwM8Lx9hLXW": { + "actor":"systems/dnd5e/tokens/monstrosity/Androsphinx.webp", + "token": "systems/dnd5e/tokens/monstrosity/Androsphinx.webp" + }, + "gGeLeV411iQ5Yijs": { + "actor":"systems/dnd5e/tokens/plant/ShamblingMound.webp", + "token": "systems/dnd5e/tokens/plant/ShamblingMound.webp" + }, + "NB6wUgVqeOQtsQKu": { + "actor":"systems/dnd5e/tokens/plant/Treant.webp", + "token": "systems/dnd5e/tokens/plant/Treant.webp" + }, + "RenLfmDT2XlbCF4x": { + "actor":"systems/dnd5e/tokens/undead/OgreZombie.webp", + "token": "systems/dnd5e/tokens/undead/OgreZombie.webp" + }, "shhHtE7b92PefCWB": { "actor": "systems/dnd5e/tokens/aberration/Aboleth.webp", "token": { diff --git a/lang/en.json b/lang/en.json index 2e127f6467..0bf27e2696 100644 --- a/lang/en.json +++ b/lang/en.json @@ -32,6 +32,8 @@ "ITEM.TypeFeaturePl": "Features", "ITEM.TypeLoot": "Loot", "ITEM.TypeLootPl": "Loot", +"ITEM.TypeRace": "Race", +"ITEM.TypeRacePl": "Races", "ITEM.TypeSpell": "Spell", "ITEM.TypeSpellPl": "Spells", "ITEM.TypeSubclass": "Subclass", @@ -57,6 +59,8 @@ "TYPES.Item.featurePl": "Features", "TYPES.Item.loot": "Loot", "TYPES.Item.lootPl": "Loot", +"TYPES.Item.race": "Race", +"TYPES.Item.racePl": "Races", "TYPES.Item.spell": "Spell", "TYPES.Item.spellPl": "Spells", "TYPES.Item.subclass": "Subclass", @@ -106,6 +110,7 @@ "DND5E.AbilityUseConsumableChargeHint": "Using this {type} will consume 1 charge of {value} remaining.", "DND5E.AbilityUseConsumableQuantityHint": "Using this {type} will consume 1 quantity of {quantity} remaining", "DND5E.AbilityUseConsumableDestroyHint": "Using this {type} will consume its final charge and it will be destroyed.", +"DND5E.AbilityUseConsumableDestroyResourceHint": "Using this {type} will consume the final charge off {name} and destroy it.", "DND5E.AbilityUseConsume": "Consume Available Usage?", "DND5E.AbilityUseChargesLabel": "{value} Charges", "DND5E.AbilityUseConsumableLabel": "{max} per {per}", @@ -135,17 +140,22 @@ "DND5E.ActionWarningNoItem": "The requested item {item} no longer exists on Actor {name}", "DND5E.ActionWarningNoToken": "You must have one or more controlled Tokens in order to use this option.", "DND5E.ActorWarningInvalidItem": "{itemType} items cannot be added to a {actorType}.", +"DND5E.ActorWarningSingleton": "Only a single {itemType} can be added to a {actorType}.", "DND5E.ActiveEffectOverrideWarning": "This value is being modified by an Active Effect and cannot be edited. Disable the effect to edit it.", "DND5E.Add": "Add", "DND5E.AddEmbeddedItemPromptHint": "Do you want to add these items to your character sheet?", "DND5E.AdvancementAbilityScoreImprovementTitle": "Ability Score Improvement", "DND5E.AdvancementAbilityScoreImprovementHint": "Allow the player to increase one or more ability scores or take an optional feat.", +"DND5E.AdvancementAbilityScoreImprovementCap": "Point Cap", +"DND5E.AdvancementAbilityScoreImprovementCapHint": "Maximum number of points a player can assign to a single score.", +"DND5E.AdvancementAbilityScoreImprovementCapDisplay.one": "Max {points} point per score", +"DND5E.AdvancementAbilityScoreImprovementCapDisplay.other": "Max {points} points per score", "DND5E.AdvancementAbilityScoreImprovementFeatHint": "Drop a feat here to choose one instead of an ability score improvement.", "DND5E.AdvancementAbilityScoreImprovementFeatWarning": "Only features with the 'feat' type can be selected.", "DND5E.AdvancementAbilityScoreImprovementFixed": "Fixed Improvement", "DND5E.AdvancementAbilityScoreImprovementLockedHint": "Scores cannot be modified with a feat selected.", "DND5E.AdvancementAbilityScoreImprovementPoints": "Points", -"DND5E.AdvancementAbilityScoreImprovementPointsHint": "Number of points that can be assigned to any ability score below the maximum that doesn't have a fixed improvement set.", +"DND5E.AdvancementAbilityScoreImprovementPointsHint": "Number of points that can be assigned to any ability score that doesn't have a fixed improvement set.", "DND5E.AdvancementAbilityScoreImprovementPointsRemaining.one": "{points} Point Remaining", "DND5E.AdvancementAbilityScoreImprovementPointsRemaining.other": "{points} Points Remaining", "DND5E.AdvancementChoices": "choices", @@ -244,7 +254,33 @@ "DND5E.AdvancementScaleValueTypeString": "Anything", "DND5E.AdvancementSelectionCreateButton": "Create Advancement", "DND5E.AdvancementSelectionTitle": "Select Advancement Type", +"DND5E.AdvancementSizeTitle": "Size", +"DND5E.AdvancementSizeHint": "Set a character's size.", +"DND5E.AdvancementSizeFlowHintSingle": "Your size is {size}.", +"DND5E.AdvancementSizeflowHintMultiple": "Choose your size from either {sizes}.", "DND5E.AdvancementTitle": "Advancement", +"DND5E.AdvancementTraitTitle": "Traits", +"DND5E.AdvancementTraitHint": "Grant a character certain traits or give them an option to select traits (such as proficiencies, skills, languages).", +"DND5E.AdvancementTraitActionAddChoice": "Add Choice", +"DND5E.AdvancementTraitActionRemoveChoice": "Remove Choice", +"DND5E.AdvancementTraitAllowReplacements": "Allow Replacements", +"DND5E.AdvancementTraitAllowReplacementsHint": "If a trait is already set on the actor, allow the player to choose from any other trait as a replacement.", +"DND5E.AdvancementTraitChoices": "Choices", +"DND5E.AdvancementTraitChoicesHint": "The following traits will be presented as a choice to the player.", +"DND5E.AdvancementTraitChoicesRemaining": "Select {count} more {type}", +"DND5E.AdvancementTraitCount": "Count", +"DND5E.AdvancementTraitGrants": "Guaranteed", +"DND5E.AdvancementTraitGrantsHint": "The following traits will be granted to the character as long as they don't already possess that trait.", +"DND5E.AdvancementTraitMode": "Mode", +"DND5E.AdvancementTraitModeDefaultLabel": "Default", +"DND5E.AdvancementTraitModeDefaultHint": "Gain a trait or proficiency.", +"DND5E.AdvancementTraitModeExpertiseLabel": "Expertise", +"DND5E.AdvancementTraitModeExpertiseHint": "Gain expertise in a trait in which you already have proficiency.", +"DND5E.AdvancementTraitModeForceLabel": "Forced Expertise", +"DND5E.AdvancementTraitModeForceHint": "Gain expertise in a trait regardless of your previous proficiency level.", +"DND5E.AdvancementTraitModeUpgradeLabel": "Upgrade", +"DND5E.AdvancementTraitModeUpgradeHint": "Gain proficiency in a trait unless you already have it, otherwise gain expertise.", +"DND5E.AdvancementTraitType": "Trait Type", "DND5E.Advantage": "Advantage", "DND5E.Alignment": "Alignment", "DND5E.AlignmentCE": "Chaotic Evil", @@ -287,6 +323,7 @@ "DND5E.AttackRoll": "Attack Roll", "DND5E.Attributes": "Attributes", "DND5E.Automatic": "Automatic", +"DND5E.AutomaticValue": "Automatic ({value})", "DND5E.Background": "Background", "DND5E.BackgroundName": "Background Name", "DND5E.Biography": "Biography", @@ -349,9 +386,6 @@ "DND5E.ClassName": "Class Name", "DND5E.ClassOriginal": "Original Class", "DND5E.ClassSaves": "Saving Throws", -"DND5E.ClassSkillsNumber": "Number of Starting Skills", -"DND5E.ClassSkillsEligible": "Eligible Class Skills", -"DND5E.ClassSkillsChosen": "Chosen Class Skills", "DND5E.ComponentMaterial": "Material", "DND5E.ComponentMaterialAbbr": "M", "DND5E.ComponentSomatic": "Somatic", @@ -390,15 +424,16 @@ "DND5E.Concentration": "Concentration", "DND5E.ConcentrationAbbr": "C", "DND5E.ConsumeTitle": "Resource Consumption", -"DND5E.ConsumeAmount": "Consumption Quantity", +"DND5E.ConsumeAmount": "Consumption Amount", "DND5E.ConsumeTarget": "Consumption Target", "DND5E.ConsumeType": "Consumption Category", -"DND5E.ConsumeQuanity": "Quantity Consumed", "DND5E.ConsumeAmmunition": "Ammunition", "DND5E.ConsumeAttribute": "Attribute", "DND5E.ConsumeHitDice": "Hit Dice", "DND5E.ConsumeHitDiceLargest": "Largest Available", +"DND5E.ConsumeHitDiceLargestLong": "Largest Hit Dice Available", "DND5E.ConsumeHitDiceSmallest": "Smallest Available", +"DND5E.ConsumeHitDiceSmallestLong": "Smallest Hit Dice Available", "DND5E.ConsumeMaterial": "Material", "DND5E.ConsumeCharges": "Item Uses", "DND5E.ConsumeWarningNoResource": "{name} is designated to consume {type} but no resource is specified!", @@ -407,6 +442,9 @@ "DND5E.ConsumeWarningZeroAttribute": "{name} has run out of its designated attribute resource pool!", "DND5E.ConsumeResource": "Consume Resource?", "DND5E.ConsumeRecharge": "Consume Recharge?", +"DND5E.ConsumeScaling": "Resource Scaling", +"DND5E.ConsumeScalingLabel": "Use Resources", +"DND5E.ConsumeScalingTooltip": "If checked, consuming additional resources will increase the level the spell is cast at.", "DND5E.ConsumableAmmo": "Ammunition", "DND5E.ConsumableFood": "Food", "DND5E.ConsumablePoison": "Poison", @@ -503,6 +541,7 @@ "DND5E.DamageThreshold": "Damage Threshold", "DND5E.DamageThunder": "Thunder", "DND5E.DamageTypes": "Damage Types", +"DND5E.Dawn": "Dawn", "DND5E.Day": "Day", "DND5E.DeathSave": "Death Saves", "DND5E.DeathSaveCriticalSuccess": "{name} critically succeeded on a death saving throw and has regained 1 Hit Point!", @@ -535,6 +574,7 @@ "DND5E.DurationType": "Duration Type", "DND5E.DurationUnits": "Duration Units", "DND5E.DurationValue": "Duration Value", +"DND5E.Dusk": "Dusk", "DND5E.Effect": "Effect", "DND5E.Effects": "Effects", "DND5E.Environment": "Environment", @@ -565,6 +605,13 @@ "DND5E.Focus.Arcane": "Arcane Focus", "DND5E.Focus.Druidic": "Druidic Focus", "DND5E.Focus.Holy": "Holy Focus", +"DND5E.Loot.Art": "Art Object", +"DND5E.Loot.Gear": "Adventuring Gear", +"DND5E.Loot.Gem": "Gemstone", +"DND5E.Loot.Junk": "Junk", +"DND5E.Loot.Material": "Material", +"DND5E.Loot.Resource": "Resource", +"DND5E.Loot.Treasure": "Treasure", "DND5E.Flaws": "Flaws", "DND5E.FormulaCannotContainDiceError": "{name} formula cannot contain dice expressions.", "DND5E.EffectCreate": "Create Effect", @@ -709,6 +756,7 @@ "DND5E.ItemCritExtraDamage": "Extra Critical Hit Damage", "DND5E.ItemDelete": "Delete Item", "DND5E.ItemDestroyEmpty": "Destroy on Empty", +"DND5E.ItemDestroyEmptyTooltip": "If this item has limited uses, it will be destroyed when none are left.", "DND5E.ItemEdit": "Edit Item", "DND5E.ItemEquipmentAction": "Equipment Action", "DND5E.ItemEquipmentBase": "Base Equipment", @@ -721,6 +769,9 @@ "DND5E.ItemFeatureDetails": "Feature Details", "DND5E.ItemFeatureSubtype": "{category} Type", "DND5E.ItemFeatureType": "Feature Type", +"DND5E.ItemLootDetails": "Loot Details", +"DND5E.ItemLootSubtype": "{category} Type", +"DND5E.ItemLootType": "Loot Type", "DND5E.ItemName": "Item Name", "DND5E.ItemNew": "New {type}", "DND5E.ItemRechargeCheck": "{name} recharge check", @@ -759,6 +810,7 @@ "DND5E.LanguagesDruidic": "Druidic", "DND5E.LanguagesDwarvish": "Dwarvish", "DND5E.LanguagesElvish": "Elvish", +"DND5E.LanguagesExotic": "Exotic Languages", "DND5E.LanguagesGiant": "Giant", "DND5E.LanguagesGith": "Gith", "DND5E.LanguagesGnoll": "Gnoll", @@ -769,6 +821,7 @@ "DND5E.LanguagesInfernal": "Infernal", "DND5E.LanguagesOrc": "Orc", "DND5E.LanguagesPrimordial": "Primordial", +"DND5E.LanguagesStandard": "Standard Languages", "DND5E.LanguagesSylvan": "Sylvan", "DND5E.LanguagesTerran": "Terran", "DND5E.LanguagesThievesCant": "Thieves' Cant", @@ -791,6 +844,8 @@ "DND5E.LimitedUsesAvailable": "Remaining Uses", "DND5E.LimitedUsesMax": "Maximum Uses", "DND5E.LimitedUsesPer": "Use Recovery Mode", +"DND5E.LimitedUsesPrompt": "Uses Prompt", +"DND5E.LimitedUsesPromptTooltip": "If unchecked, the prompt to consume an available use will be suppressed.", "DND5E.Long": "Long", "DND5E.LongRest": "Long Rest", "DND5E.LongRestNormal": "Long Rest (8 hours)", @@ -817,6 +872,7 @@ "DND5E.Name": "Character Name", "DND5E.NoCharges": "No Charges", "DND5E.None": "None", +"DND5E.NoneActionLabel": "None", "DND5E.Normal": "Normal", "DND5E.NotProficient": "Not Proficient", "DND5E.OtherFormula": "Other Formula", @@ -873,6 +929,7 @@ "DND5E.Quantity": "Quantity", "DND5E.QuantityAbbr": "Qty", "DND5E.Race": "Race", +"DND5E.RaceName": "Race Name", "DND5E.RacialTraits": "Racial Traits", "DND5E.Range": "Range", "DND5E.RangeDistance": "Distance", @@ -998,6 +1055,14 @@ "DND5E.SkillPassiveHint": "Passive {skill}", "DND5E.Skip": "Skip", "DND5E.Source": "Source", +"DND5E.SourceBook": "Book", +"DND5E.SourceConfig": "Configure Source", +"DND5E.SourceCustom": "Custom Label", +"DND5E.SourceDisplay": "{book} {page}", +"DND5E.SourceLicense": "License", +"DND5E.SourcePage": "Page/Section", +"DND5E.SourcePageDisplay": "pg. {page}", +"DND5E.SourceUUID": "Original Source", "DND5E.Special": "Special", "DND5E.SpecialTraits": "Special Traits", "DND5E.Speed": "Speed", @@ -1008,6 +1073,7 @@ "DND5E.SpellCantrip": "Cantrip", "DND5E.SpellCastConsume": "Consume Spell Slot?", "DND5E.SpellCastNoSlots": "You have no available {level} spell slots with which to cast {name}", +"DND5E.SpellCastNoSlotsLeft": "You have no available spell slots with which to cast {name}!", "DND5E.SpellCastUpcast": "Cast at Level", "DND5E.SpellcasterLevel": "Spellcaster Level", "DND5E.SpellCastingHeader": "Spell Casting", @@ -1092,6 +1158,8 @@ "DND5E.TargetWall": "Wall", "DND5E.TargetWidth": "Line Width", "DND5E.TargetWilling": "Willing Creature", +"DND5E.TemplatePrompt": "Template Prompt", +"DND5E.TemplatePromptTooltip": "If unchecked, the prompt for placing a Measured Template will be suppressed.", "DND5E.Temp": "Temp", "DND5E.Threshold": "Threshold", "DND5E.TimeDay": "Days", @@ -1126,12 +1194,19 @@ "DND5E.TraitCIPlural.one": "Condition Immunity", "DND5E.TraitCIPlural.other": "Condition Immunities", "DND5E.TraitConfig": "Configure {trait}", +"DND5E.TraitConfigChooseAnyCounted": "any {count} {type}", +"DND5E.TraitConfigChooseAnyUncounted": "any {type}", +"DND5E.TraitConfigChooseList": "{count} from {list}", +"DND5E.TraitConfigChooseOther": "{count} other {type}", +"DND5E.TraitConfigChooseWrapper": "Choose {choices}", "DND5E.TraitDIPlural.one": "Damage Immunity", "DND5E.TraitDIPlural.other": "Damage Immunities", "DND5E.TraitDRPlural.one": "Damage Resistance", "DND5E.TraitDRPlural.other": "Damage Resistances", "DND5E.TraitDVPlural.one": "Damage Vulnerability", "DND5E.TraitDVPlural.other": "Damage Vulnerabilities", +"DND5E.TraitGenericPlural.one": "Trait", +"DND5E.TraitGenericPlural.other": "Traits", "DND5E.TraitLanguagesPlural.one": "Language", "DND5E.TraitLanguagesPlural.other": "Languages", "DND5E.TraitSave": "Update", @@ -1228,14 +1303,26 @@ "DND5E.per": "per", "DND5E.spell": "spell", +"EDITOR.DND5E.Inline.CheckShort": "{check}", +"EDITOR.DND5E.Inline.CheckLong": "{check} check", +"EDITOR.DND5E.Inline.DamageShort": "{formula} {type}", +"EDITOR.DND5E.Inline.DamageLong": "{average} ({formula}) {type}", +"EDITOR.DND5E.Inline.DC": "DC {dc} {check}", +"EDITOR.DND5E.Inline.DCPassiveShort": "DC {dc} passive {check}", +"EDITOR.DND5E.Inline.DCPassiveLong": "passive {check} score of {dc} or higher", +"EDITOR.DND5E.Inline.NoActorWarning": "No selected or assigned actor could be found to execute this roll.", +"EDITOR.DND5E.Inline.SaveShort": "{save}", +"EDITOR.DND5E.Inline.SaveLong": "{save} saving throw", +"EDITOR.DND5E.Inline.SpecificCheck": "{ability} ({type})", + "JOURNALENTRYPAGE.TypeClass": "Class Summary", "TYPES.JournalEntryPage.class": "Class Summary", "JOURNALENTRYPAGE.DND5E.Class.AdditionalEquipment": "Equipment", "JOURNALENTRYPAGE.DND5E.Class.AdditionalEquipmentHint": "List of equipment granted by this class if taken at first level.", "JOURNALENTRYPAGE.DND5E.Class.AdditionalHitPoints": "Additional Hit Points Description", "JOURNALENTRYPAGE.DND5E.Class.AdditionalHitPointsHint": "Additional descriptive text displayed beneath the auto-generated hit points section.", -"JOURNALENTRYPAGE.DND5E.Class.AdditionalTraits": "Proficiencies", -"JOURNALENTRYPAGE.DND5E.Class.AdditionalTraitsHint": "List of proficiencies granted by this class.", +"JOURNALENTRYPAGE.DND5E.Class.AdditionalTraits": "Additional Proficiencies Description", +"JOURNALENTRYPAGE.DND5E.Class.AdditionalTraitsHint": "Additional descriptive text displayed beneath list of proficiencies granted by this class.", "JOURNALENTRYPAGE.DND5E.Class.Description": "Introduction", "JOURNALENTRYPAGE.DND5E.Class.DescriptionHint": "Primary description of the class that will appear first.", "JOURNALENTRYPAGE.DND5E.Class.EquipmentHeader": "Equipment", @@ -1312,7 +1399,11 @@ "SETTINGS.5eRestPHB": "Player's Handbook (LR: 8 hours, SR: 1 hour)", "SETTINGS.5eRestGritty": "Gritty Realism (LR: 7 days, SR: 8 hours)", "SETTINGS.5eRestEpic": "Epic Heroism (LR: 1 hour, SR: 1 min)", +"SETTINGS.5eGridAlignedSquareTemplatesL": "When square templates are created as the result of casting a spell or using an item, they will be locked to the grid alignment and unable to be rotated.", +"SETTINGS.5eGridAlignedSquareTemplatesN": "Grid-Aligned Square Templates", "SETTINGS.5eSanityL": "Enable the use of the optional Sanity ability score. Requires the world to be reloaded.", "SETTINGS.5eSanityN": "Sanity Ability Score", -"SETTINGS.5eUndoChanges": "Undo Changes" +"SETTINGS.5eUndoChanges": "Undo Changes", + +"SOURCE.BOOK.SRD": "System Reference Document 5.1" } diff --git a/less/actors.less b/less/actors.less index 1994786391..336ff507a9 100644 --- a/less/actors.less +++ b/less/actors.less @@ -380,6 +380,15 @@ height: 20px; line-height: 20px; + label { + cursor: pointer; + align-items: center; + input[type=checkbox] { + top: unset; + flex: none; + } + } + h4 { flex: auto; margin: 0; @@ -525,6 +534,7 @@ .item { .item-name { cursor: pointer; + flex: auto; &.rollable:hover .item-image { background-image: url("../../icons/svg/d20-grey.svg") !important; } diff --git a/less/advancement.less b/less/advancement.less index a1cc170858..f41eddcf8d 100644 --- a/less/advancement.less +++ b/less/advancement.less @@ -96,6 +96,11 @@ margin-block: 0.5em 0; padding: 0; font-size: var(--font-size-18); + + > .cap { + margin-block: 0; + font-size: var(--font-size-13); + } } li { @@ -204,6 +209,85 @@ } } } + + /* ----------------------------------------- */ + /* Size */ + /* ----------------------------------------- */ + &.size { + textarea { + flex: 1 0 100%; + } + + .trait-list { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 0.25rem; + padding: 0; + list-style: none; + + li { + flex: 1 1 40%; + } + } + } + + /* ----------------------------------------- */ + /* Traits */ + /* ----------------------------------------- */ + &.traits { + --grid-two-column-right-size: 0.6fr; + + form { + grid-gap: 1rem; + } + + .selected-trait { + h4 { + font-weight: bold; + } + ul { + list-style: none; + padding: 0; + li { + display: flex; + gap: 0.5em; + &:not(:first-of-type) { + padding-block-start: 0.5em; + } + } + label { + flex-grow: 1; + display: flex; + gap: 1em; + align-items: baseline; + + &:not(.selected) { + cursor: pointer; + &:hover { + text-shadow: 0 0 8px var(--color-shadow-primary); + } + } + &.selected { + font-weight: bold; + } + + input[type="radio"] { + display: none; + } + } + } + } + + .hint textarea { + flex: 1 0 100%; + } + + [data-action="add-choice"] { + display: block; + padding-block: 0.25em; + text-align: center; + } + } } .dnd5e.advancement-migration { @@ -298,6 +382,44 @@ } span.none { font-style: italic; } } + + form[data-type="Trait"] { + select { + min-width: min(20em, 100%); + margin-block-end: 0.25em; + } + .trait-slots { + counter-reset: trait-list; + list-style: none; + padding: 0; + } + .trait-slot { + min-height: 30px; + align-items: center; + font-size: var(--font-size-14); + + &::before { + counter-increment: trait-list; + content: counter(trait-list); + width: 2em; + text-align: center; + font-size: var(--font-size-16); + } + + a { + flex: 0; + padding-inline-end: 0.5em; + } + } + } + + form[data-type="Size"] { + select { + width: 100%; + font-size: var(--font-size-16); + height: 2em; + } + } nav { display: flex; diff --git a/less/apps.less b/less/apps.less index 8b44eafd25..5630cabeb9 100644 --- a/less/apps.less +++ b/less/apps.less @@ -541,6 +541,19 @@ h5 { /* ----------------------------------------- */ .trait-selector { + max-height: 700px; + + form { + overflow: hidden; + display: flex; + flex-direction: column; + + > .trait-list { + overflow: auto; + border-bottom: @borderGroove; + } + } + .trait-list { list-style: none; margin: 0; @@ -549,6 +562,12 @@ h5 { li ol.trait-list { margin-left: 1.5em; } + .category > label { + font-weight: bold; + } + .wildcard > label { + font-style: italic; + } } input[type="text"] { @@ -641,6 +660,7 @@ h5 { font-size: 12px; line-height: 20px; font-weight: normal; + align-items: baseline; > input[type="radio"] { margin: 0 5px 0 0; } @@ -734,3 +754,36 @@ h5 { } } } + +/* ----------------------------------------- */ +/* Accordion */ +/* ----------------------------------------- */ + +.accordion { + transition: margin-bottom 500ms ease; +} +.accordion.collapsed { + > .accordion-content { height: 0; } +} + +.accordion-indicator { + display: none; + transition: transform 500ms ease; +} +.accordion .accordion-indicator { + display: inherit; + transform: rotate(0deg); +} +.accordion.collapsed .accordion-indicator { + transform: rotate(-90deg); +} + +.accordion-heading { + cursor: pointer; + position: relative; +} + +.accordion-content { + overflow: hidden; + transition: height 500ms ease; +} diff --git a/less/chat.less b/less/chat.less index 00abeed129..d2e98757a7 100644 --- a/less/chat.less +++ b/less/chat.less @@ -1,7 +1,7 @@ @import "variables.less"; /* ----------------------------------------- */ -/* Chat Cards +/* Chat Cards */ /* ----------------------------------------- */ .dnd5e.chat-card { @@ -100,4 +100,22 @@ &.fumble { color: red; } -} \ No newline at end of file +} + +/* ----------------------------------------- */ +/* Inline Roll Actions */ +/* ----------------------------------------- */ + +a.roll-link { + background: #DDD; + padding: 1px 4px; + border: 1px solid var(--color-border-dark-tertiary); + border-radius: 2px; + white-space: nowrap; + word-break: break-all; + + i { + color: var(--color-text-dark-inactive); + margin-inline-end: 0.25em; + } +} diff --git a/less/items.less b/less/items.less index 2c0143f97f..15a511aac2 100644 --- a/less/items.less +++ b/less/items.less @@ -40,6 +40,29 @@ padding: 0 0.25em; text-align: right; } + li { + display: flex; + justify-content: space-between; + gap: 0.25em; + + span { + padding-inline: 4px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + font-weight: 400; + } + + .config-button { + display: none; + font-size: var(--font-size-14); + font-weight: normal; + padding-inline-end: 0.25em; + } + &:hover .config-button { + display: block; + } + } } } @@ -60,9 +83,11 @@ .item-properties { flex: 0 0 120px; - margin: 5px 5px 5px 0; - padding-right: 5px; + margin: 0 5px 0 0; + padding: 5px 5px 0 0; border-right: @borderGroove; + overflow: hidden auto; + height: 100%; .form-group { margin: 0; @@ -103,6 +128,70 @@ } } + .form-group, h4 { + .config-button { + color: @colorOlive; + font-size: 10px; + font-weight: normal; + opacity: 0; + } + + &:hover .config-button { + display: inline; + opacity: 1; + } + } + + /* ----------------------------------------- */ + /* Item Description */ + /* ----------------------------------------- */ + + [data-tab="description"] { + align-content: stretch; + + .item-description { + .description-header { + display: flex; + align-items: first baseline; + gap: 0.5em; + margin-block-end: 0; + padding: 0.25rem; + background-color: rgb(0 0 0 / 0.05); + + .description-edit { + margin-inline-start: auto; + opacity: 20%; + + .fa-solid.fa-edit { + position: absolute; + inset-block: 0; + inset-inline-end: 0; + padding: 6px; + } + } + &:hover .description-edit { + opacity: 100%; + } + } + .editor + .description-header { + margin-block-start: 0.5rem; + } + .editor:not(.prosemirror) { + height: auto; + padding-inline: 0.25rem; + } + .accordion { margin-block-end: 0.5rem; } + .accordion p:last-child { margin-block-end: 0; } + .accordion.collapsed > .editor.accordion-content { height: 0; } + .editor.accordion-content > .editor-content { overflow: hidden; } + .accordion-indicator { + align-self: center; + opacity: 0.5; + font-size: 0.75em; + } + } + } + /* ----------------------------------------- */ /* Item Details Form */ /* ----------------------------------------- */ @@ -243,14 +332,6 @@ .weapon-properties label.checkbox { flex: 0 0 98px; } - - /* ----------------------------------------- */ - /* Loot Sheet (No Tabs) */ - /* ----------------------------------------- */ - - .loot-header { - margin-bottom: 10px; - } } /* ----------------------------------------- */ diff --git a/less/journal.less b/less/journal.less index e681e00b72..d30732fa68 100644 --- a/less/journal.less +++ b/less/journal.less @@ -72,6 +72,15 @@ } } +/* ----------------------------------------- */ +/* Journal Styles */ +/* ----------------------------------------- */ + +.passive-check { + text-decoration: underline; + text-decoration-style: dotted; +} + /* ----------------------------------------- */ /* Journal Pages */ /* ----------------------------------------- */ diff --git a/less/npc.less b/less/npc.less index 7a77081eff..d69ff840cb 100644 --- a/less/npc.less +++ b/less/npc.less @@ -34,11 +34,10 @@ .summary { font-size: 18px; - .creature-type { + li { display: flex; justify-content: space-between; - width: 1em; - padding: 0 3px; + gap: 0.25em; span { overflow: hidden; @@ -56,5 +55,13 @@ display: block; } } + + .creature-type { + width: 1em; + padding: 0 3px; + } + .source { + width: 1em; + } } } \ No newline at end of file diff --git a/module/applications/_module.mjs b/module/applications/_module.mjs index 18591ecf63..6f12f2e03a 100644 --- a/module/applications/_module.mjs +++ b/module/applications/_module.mjs @@ -4,7 +4,5 @@ export * as combat from "./combat/_module.mjs"; export * as item from "./item/_module.mjs"; export * as journal from "./journal/_module.mjs"; -export {default as DamageTraitSelector} from "./damage-trait-selector.mjs"; -export {default as ProficiencySelector} from "./proficiency-selector.mjs"; export {default as PropertyAttribution} from "./property-attribution.mjs"; -export {default as TraitSelector} from "./trait-selector.mjs"; +export {default as SourceConfig} from "./source-config.mjs"; diff --git a/module/applications/accordion.mjs b/module/applications/accordion.mjs new file mode 100644 index 0000000000..bab84fe66f --- /dev/null +++ b/module/applications/accordion.mjs @@ -0,0 +1,208 @@ +/** + * @typedef {object} AccordionConfiguration + * @property {string} headingSelector The CSS selector that identifies accordion headers in the given markup. + * @property {string} contentSelector The CSS selector that identifies accordion content in the given markup. This + * can match content within the heading element, or sibling to the heading + * element, with priority given to the former. + * @property {boolean} [collapseOthers] Automatically collapses the other headings in this group when one heading is + * clicked. + */ + +/** + * A class responsible for augmenting markup with an accordion effect. + * @param {AccordionConfiguration} config Configuration options. + */ +export default class Accordion { + constructor(config) { + config.contentSelector = `${config.contentSelector}:not(.accordion-content)`; + this.#config = config; + } + + /** + * Configuration options. + * @type {AccordionConfiguration} + */ + #config; + + /** + * A mapping of heading elements to content elements. + * @type {Map} + */ + #sections = new Map(); + + /** + * A mapping of heading elements to any ongoing transition effect functions. + * @type {Map} + */ + #ongoing = new Map(); + + /** + * Record the state of collapsed sections. + * @type {boolean[]} + */ + #collapsed; + + /* -------------------------------------------- */ + + /** + * Augment the given markup with an accordion effect. + * @param {HTMLElement} root The root HTML node. + */ + async bind(root) { + const firstBind = this.#sections.size < 1; + if ( firstBind ) this.#collapsed = []; + this.#sections = new Map(); + this.#ongoing = new Map(); + const { headingSelector, contentSelector } = this.#config; + let collapsedIndex = 0; + for ( const heading of root.querySelectorAll(headingSelector) ) { + const content = heading.querySelector(contentSelector) ?? heading.parentElement.querySelector(contentSelector); + if ( !content ) continue; + const wrapper = document.createElement("div"); + wrapper.classList.add("accordion"); + heading.before(wrapper); + wrapper.append(heading, content); + this.#sections.set(heading, content); + if ( firstBind ) this.#collapsed.push(this.#collapsed.length > 0); + else if ( this.#collapsed[collapsedIndex] ) wrapper.classList.add("collapsed"); + heading.classList.add("accordion-heading"); + content.classList.add("accordion-content"); + heading.addEventListener("click", this._onClickHeading.bind(this)); + collapsedIndex++; + } + await new Promise(resolve => { setTimeout(resolve, 0); }); // Allow re-paint. + this._restoreCollapsedState(); + } + + /* -------------------------------------------- */ + + /** + * Handle clicking an accordion heading. + * @param {PointerEvent} event The triggering event. + * @protected + */ + _onClickHeading(event) { + if ( event.target.closest("a") ) return; + const heading = event.currentTarget; + const content = this.#sections.get(heading); + if ( !content ) return; + event.preventDefault(); + const collapsed = heading.parentElement.classList.contains("collapsed"); + if ( collapsed ) this._onExpandSection(heading, content); + else this._onCollapseSection(heading, content); + } + + /* -------------------------------------------- */ + + /** + * Handle expanding a section. + * @param {HTMLElement} heading The section heading. + * @param {HTMLElement} content The section content. + * @param {object} [options] + * @param {boolean} [options.animate=true] Whether to animate the expand effect. + * @protected + */ + async _onExpandSection(heading, content, { animate=true }={}) { + this.#cancelOngoing(heading); + + if ( this.#config.collapseOthers ) { + for ( const [otherHeading, otherContent] of this.#sections.entries() ) { + if ( (heading !== otherHeading) && !otherHeading.parentElement.classList.contains("collapsed") ) { + this._onCollapseSection(otherHeading, otherContent, { animate }); + } + } + } + + heading.parentElement.classList.remove("collapsed"); + if ( animate ) content.style.height = "0"; + else { + content.style.height = `${content._fullHeight}px`; + return; + } + await new Promise(resolve => { setTimeout(resolve, 0); }); // Allow re-paint. + const onEnd = this._onEnd.bind(this, heading, content); + this.#ongoing.set(heading, onEnd); + content.addEventListener("transitionend", onEnd, { once: true }); + content.style.height = `${content._fullHeight}px`; + } + + /* -------------------------------------------- */ + + /** + * Handle collapsing a section. + * @param {HTMLElement} heading The section heading. + * @param {HTMLElement} content The section content. + * @param {object} [options] + * @param {boolean} [options.animate=true] Whether to animate the collapse effect. + * @protected + */ + async _onCollapseSection(heading, content, { animate=true }={}) { + this.#cancelOngoing(heading); + const { height } = content.getBoundingClientRect(); + heading.parentElement.classList.add("collapsed"); + content._fullHeight = height; + if ( animate ) content.style.height = `${height}px`; + else { + content.style.height = "0"; + return; + } + await new Promise(resolve => { setTimeout(resolve, 0); }); // Allow re-paint. + const onEnd = this._onEnd.bind(this, heading, content); + this.#ongoing.set(heading, onEnd); + content.addEventListener("transitionend", onEnd, { once: true }); + content.style.height = "0"; + } + + /* -------------------------------------------- */ + + /** + * A function to invoke when the height transition has ended. + * @param {HTMLElement} heading The section heading. + * @param {HTMLElement} content The section content. + * @protected + */ + _onEnd(heading, content) { + content.style.height = ""; + this.#ongoing.delete(heading); + } + + /* -------------------------------------------- */ + + /** + * Cancel an ongoing effect. + * @param {HTMLElement} heading The section heading. + */ + #cancelOngoing(heading) { + const ongoing = this.#ongoing.get(heading); + const content = this.#sections.get(heading); + if ( ongoing && content ) content.removeEventListener("transitionend", ongoing); + } + + /* -------------------------------------------- */ + + /** + * Save the accordion state. + * @protected + */ + _saveCollapsedState() { + this.#collapsed = []; + for ( const heading of this.#sections.keys() ) { + this.#collapsed.push(heading.parentElement.classList.contains("collapsed")); + } + } + + /* -------------------------------------------- */ + + /** + * Restore the accordion state. + * @protected + */ + _restoreCollapsedState() { + const entries = Array.from(this.#sections.entries()); + for ( let i = 0; i < entries.length; i++ ) { + const collapsed = this.#collapsed[i]; + const [heading, content] = entries[i]; + if ( collapsed ) this._onCollapseSection(heading, content, { animate: false }); + } + } +} diff --git a/module/applications/actor/_module.mjs b/module/applications/actor/_module.mjs index 854ce44f16..f5ef4ed09c 100644 --- a/module/applications/actor/_module.mjs +++ b/module/applications/actor/_module.mjs @@ -15,7 +15,6 @@ export {default as ActorMovementConfig} from "./movement-config.mjs"; export {default as ActorSensesConfig} from "./senses-config.mjs"; export {default as ActorSheetFlags} from "./sheet-flags.mjs"; export {default as ShortRestDialog} from "./short-rest.mjs"; -export {default as ActorSkillConfig} from "./skill-config.mjs"; export {default as ProficiencyConfig} from "./proficiency-config.mjs"; export {default as TraitSelector} from "./trait-selector.mjs"; export {default as ToolSelector} from "./tool-selector.mjs"; diff --git a/module/applications/actor/base-sheet.mjs b/module/applications/actor/base-sheet.mjs index 26358d00a0..b065630915 100644 --- a/module/applications/actor/base-sheet.mjs +++ b/module/applications/actor/base-sheet.mjs @@ -11,6 +11,7 @@ import ActorMovementConfig from "./movement-config.mjs"; import ActorSensesConfig from "./senses-config.mjs"; import ActorSheetFlags from "./sheet-flags.mjs"; import ActorTypeConfig from "./type-config.mjs"; +import SourceConfig from "../source-config.mjs"; import AdvancementConfirmationDialog from "../advancement/advancement-confirmation-dialog.mjs"; import AdvancementManager from "../advancement/advancement-manager.mjs"; @@ -19,12 +20,14 @@ import PropertyAttribution from "../property-attribution.mjs"; import TraitSelector from "./trait-selector.mjs"; import ProficiencyConfig from "./proficiency-config.mjs"; import ToolSelector from "./tool-selector.mjs"; +import { simplifyBonus } from "../../utils.mjs"; +import { ActorSheetMixin } from "./sheet-mixin.mjs"; /** * Extend the basic ActorSheet class to suppose system-specific logic and functionality. * @abstract */ -export default class ActorSheet5e extends ActorSheet { +export default class ActorSheet5e extends ActorSheetMixin(ActorSheet) { /** * Track the set of item filters which are applied @@ -40,6 +43,15 @@ export default class ActorSheet5e extends ActorSheet { /* -------------------------------------------- */ + /** + * Track the most recent drag event. + * @type {DragEvent} + * @protected + */ + _event = null; + + /* -------------------------------------------- */ + /** * IDs for items on the sheet that have been expanded. * @type {Set} @@ -149,7 +161,7 @@ export default class ActorSheet5e extends ActorSheet { entry.abbreviation = CONFIG.DND5E.abilities[entry.ability]?.abbreviation; entry.icon = this._getProficiencyIcon(entry.value); entry.hover = CONFIG.DND5E.proficiencyLevels[entry.value]; - entry.label = prop === "skills" ? CONFIG.DND5E.skills[key]?.label : Trait.keyLabel("tool", key); + entry.label = prop === "skills" ? CONFIG.DND5E.skills[key]?.label : Trait.keyLabel(key, {trait: "tool"}); entry.baseValue = source.system[prop]?.[key]?.value ?? 0; } }); @@ -230,7 +242,7 @@ export default class ActorSheet5e extends ActorSheet { if ( largestPrimary ) { let primary = speeds.shift(); return { - primary: `${primary ? primary[1] : "0"} ${movement.units}`, + primary: `${primary ? primary[1] : "0"} ${movement.units || Object.keys(CONFIG.DND5E.movementUnits)[0]}`, special: speeds.map(s => s[1]).join(", ") }; } @@ -238,7 +250,7 @@ export default class ActorSheet5e extends ActorSheet { // Case 2: Walk as primary else { return { - primary: `${movement.walk || 0} ${movement.units}`, + primary: `${movement.walk || 0} ${movement.units || Object.keys(CONFIG.DND5E.movementUnits)[0]}`, special: speeds.length ? speeds.map(s => s[1]).join(", ") : "" }; } @@ -260,7 +272,7 @@ export default class ActorSheet5e extends ActorSheet { if ( v === 0 ) continue; tags[k] = `${game.i18n.localize(label)} ${v} ${senses.units}`; } - if ( senses.special ) tags.special = senses.special; + if ( senses.special ) senses.special.split(";").forEach((c, i) => tags[`custom${i+1}`] = c.trim()); return tags; } @@ -283,14 +295,15 @@ export default class ActorSheet5e extends ActorSheet { * @protected */ _prepareActiveEffectAttributions(target) { + const rollData = this.actor.getRollData({deterministic: true}); return this.actor.effects.reduce((arr, e) => { let source = e.sourceName; - if ( e.origin === this.actor.uuid ) source = e.label; + if ( e.origin === this.actor.uuid ) source = e.name; if ( !source || e.disabled || e.isSuppressed ) return arr; const value = e.changes.reduce((n, change) => { - if ( (change.key !== target) || !Number.isNumeric(change.value) ) return n; + if ( change.key !== target ) return n; if ( change.mode !== CONST.ACTIVE_EFFECT_MODES.ADD ) return n; - return n + Number(change.value); + return n + simplifyBonus(change.value, rollData); }, 0); if ( !value ) return arr; arr.push({value, label: source, mode: CONST.ACTIVE_EFFECT_MODES.ADD}); @@ -386,9 +399,8 @@ export default class ActorSheet5e extends ActorSheet { _prepareTraits(systemData) { const traits = {}; for ( const [trait, traitConfig] of Object.entries(CONFIG.DND5E.traits) ) { - const key = traitConfig.actorKeyPath ?? `traits.${trait}`; + const key = traitConfig.actorKeyPath?.replace("system.", "") ?? `traits.${trait}`; const data = foundry.utils.deepClone(foundry.utils.getProperty(systemData, key)); - const choices = CONFIG.DND5E[traitConfig.configKey]; if ( !data ) continue; foundry.utils.setProperty(traits, key, data); @@ -408,7 +420,7 @@ export default class ActorSheet5e extends ActorSheet { } data.selected = values.reduce((obj, key) => { - obj[key] = Trait.keyLabel(trait, key) ?? key; + obj[key] = Trait.keyLabel(key, { trait }) ?? key; return obj; }, {}); @@ -417,7 +429,7 @@ export default class ActorSheet5e extends ActorSheet { const damageTypesFormatter = new Intl.ListFormat(game.i18n.lang, { style: "long", type: "conjunction" }); const bypassFormatter = new Intl.ListFormat(game.i18n.lang, { style: "long", type: "disjunction" }); data.selected.physical = game.i18n.format("DND5E.DamagePhysicalBypasses", { - damageTypes: damageTypesFormatter.format(physical.map(t => choices[t])), + damageTypes: damageTypesFormatter.format(physical.map(t => Trait.keyLabel(t, { trait }))), bypassTypes: bypassFormatter.format(data.bypasses.map(t => CONFIG.DND5E.physicalWeaponProperties[t])) }); } @@ -651,8 +663,8 @@ export default class ActorSheet5e extends ActorSheet { this._disableOverriddenFields(html); } - // Owner Only Listeners - if ( this.actor.isOwner ) { + // Owner Only Listeners, for non-compendium actors. + if ( this.actor.isOwner && !this.actor.compendium ) { // Ability Checks html.find(".ability-name").click(this._onRollAbilityTest.bind(this)); @@ -666,9 +678,6 @@ export default class ActorSheet5e extends ActorSheet { // Item Rolling html.find(".rollable .item-image").click(event => this._onItemUse(event)); html.find(".item .item-recharge").click(event => this._onItemRecharge(event)); - - // Item Context Menu - new ContextMenu(html, ".item-list .item", [], {onOpen: this._onItemContext.bind(this)}); } // Otherwise, remove rollable classes @@ -676,6 +685,9 @@ export default class ActorSheet5e extends ActorSheet { html.find(".rollable").each((i, el) => el.classList.remove("rollable")); } + // Item Context Menu + new ContextMenu(html, ".item-list .item", [], {onOpen: this._onItemContext.bind(this)}); + // Handle default listeners last so system listeners are triggered first super.activateListeners(html); } @@ -745,97 +757,6 @@ export default class ActorSheet5e extends ActorSheet { /* -------------------------------------------- */ - /** - * Prepare an array of context menu options which are available for owned ActiveEffect documents. - * @param {ActiveEffect5e} effect The ActiveEffect for which the context menu is activated - * @returns {ContextMenuEntry[]} An array of context menu options offered for the ActiveEffect - * @protected - */ - _getActiveEffectContextOptions(effect) { - return [ - { - name: "DND5E.ContextMenuActionEdit", - icon: "", - callback: () => effect.sheet.render(true) - }, - { - name: "DND5E.ContextMenuActionDuplicate", - icon: "", - callback: () => effect.clone({label: game.i18n.format("DOCUMENT.CopyOf", {name: effect.label})}, {save: true}) - }, - { - name: "DND5E.ContextMenuActionDelete", - icon: "", - callback: () => effect.deleteDialog() - }, - { - name: effect.disabled ? "DND5E.ContextMenuActionEnable" : "DND5E.ContextMenuActionDisable", - icon: effect.disabled ? "" : "", - callback: () => effect.update({disabled: !effect.disabled}) - } - ]; - } - - /* -------------------------------------------- */ - - /** - * Prepare an array of context menu options which are available for owned Item documents. - * @param {Item5e} item The Item for which the context menu is activated - * @returns {ContextMenuEntry[]} An array of context menu options offered for the Item - * @protected - */ - _getItemContextOptions(item) { - - // Standard Options - const options = [ - { - name: "DND5E.ContextMenuActionEdit", - icon: "", - callback: () => item.sheet.render(true) - }, - { - name: "DND5E.ContextMenuActionDuplicate", - icon: "", - condition: () => !["race", "background", "class", "subclass"].includes(item.type), - callback: () => item.clone({name: game.i18n.format("DOCUMENT.CopyOf", {name: item.name})}, {save: true}) - }, - { - name: "DND5E.ContextMenuActionDelete", - icon: "", - callback: () => item.deleteDialog() - } - ]; - - // Toggle Attunement State - if ( ("attunement" in item.system) && (item.system.attunement !== CONFIG.DND5E.attunementTypes.NONE) ) { - const isAttuned = item.system.attunement === CONFIG.DND5E.attunementTypes.ATTUNED; - options.push({ - name: isAttuned ? "DND5E.ContextMenuActionUnattune" : "DND5E.ContextMenuActionAttune", - icon: "", - callback: () => item.update({ - "system.attunement": CONFIG.DND5E.attunementTypes[isAttuned ? "REQUIRED" : "ATTUNED"] - }) - }); - } - - // Toggle Equipped State - if ( "equipped" in item.system ) options.push({ - name: item.system.equipped ? "DND5E.ContextMenuActionUnequip" : "DND5E.ContextMenuActionEquip", - icon: "", - callback: () => item.update({"system.equipped": !item.system.equipped}) - }); - - // Toggle Prepared State - if ( ("preparation" in item.system) && (item.system.preparation?.mode === "prepared") ) options.push({ - name: item.system?.preparation?.prepared ? "DND5E.ContextMenuActionUnprepare" : "DND5E.ContextMenuActionPrepare", - icon: "", - callback: () => item.update({"system.preparation.prepared": !item.system.preparation?.prepared}) - }); - return options; - } - - /* -------------------------------------------- */ - /** * Initialize Item list filters by activating the set of filters which are currently applied * @param {number} i Index of the filter in the list. @@ -854,24 +775,6 @@ export default class ActorSheet5e extends ActorSheet { /* Event Listeners and Handlers */ /* -------------------------------------------- */ - /** - * Handle input changes to numeric form fields, allowing them to accept delta-typed inputs. - * @param {Event} event Triggering event. - * @protected - */ - _onChangeInputDelta(event) { - const input = event.target; - const value = input.value; - if ( ["+", "-"].includes(value[0]) ) { - const delta = parseFloat(value); - const item = this.actor.items.get(input.closest("[data-item-id]")?.dataset.itemId); - if ( item ) input.value = Number(foundry.utils.getProperty(item, input.dataset.name)) + delta; - else input.value = Number(foundry.utils.getProperty(this.actor, input.name)) + delta; - } else if ( value[0] === "=" ) input.value = value.slice(1); - } - - /* -------------------------------------------- */ - /** * Handle spawning the TraitSelector application which allows a checkbox of multiple trait options. * @param {Event} event The click event which originated the selection. @@ -904,24 +807,24 @@ export default class ActorSheet5e extends ActorSheet { case "senses": app = new ActorSensesConfig(this.actor); break; + case "source": + app = new SourceConfig(this.actor); + break; case "type": app = new ActorTypeConfig(this.actor); break; - case "ability": { + case "ability": const ability = event.currentTarget.closest("[data-ability]").dataset.ability; app = new ActorAbilityConfig(this.actor, null, ability); break; - } - case "skill": { + case "skill": const skill = event.currentTarget.closest("[data-key]").dataset.key; app = new ProficiencyConfig(this.actor, {property: "skills", key: skill}); break; - } - case "tool": { + case "tool": const tool = event.currentTarget.closest("[data-key]").dataset.key; app = new ProficiencyConfig(this.actor, {property: "tools", key: tool}); break; - } } app?.render(true); } @@ -1029,6 +932,14 @@ export default class ActorSheet5e extends ActorSheet { /* -------------------------------------------- */ + /** @override */ + async _onDrop(event) { + this._event = event; + return super._onDrop(event); + } + + /* -------------------------------------------- */ + /** @override */ async _onDropItemCreate(itemData) { let items = itemData instanceof Array ? itemData : [itemData]; @@ -1059,7 +970,6 @@ export default class ActorSheet5e extends ActorSheet { * @protected */ async _onDropSingleItem(itemData) { - // Check to make sure items of this type are allowed on this actor if ( this.constructor.unsupportedItemTypes.has(itemData.type) ) { ui.notifications.warn(game.i18n.format("DND5E.ActorWarningInvalidItem", { @@ -1091,6 +1001,10 @@ export default class ActorSheet5e extends ActorSheet { return false; } } + + // Adjust the preparation mode of a leveled spell depending on the section on which it is dropped. + if ( itemData.type === "spell" ) this._onDropSpell(itemData); + return itemData; } @@ -1111,21 +1025,52 @@ export default class ActorSheet5e extends ActorSheet { /* -------------------------------------------- */ /** - * Stack identical consumables when a new one is dropped rather than creating a duplicate item. - * @param {object} itemData The item data requested for creation. - * @returns {Promise|null} If a duplicate was found, returns the adjusted item stack. + * Adjust the preparation mode of a dropped spell depending on the drop location on the sheet. + * @param {object} itemData The item data requested for creation. **Will be mutated.** */ - _onDropStackConsumables(itemData) { - const droppedSourceId = itemData.flags.core?.sourceId; - if ( itemData.type !== "consumable" || !droppedSourceId ) return null; - const similarItem = this.actor.items.find(i => { - const sourceId = i.getFlag("core", "sourceId"); - return sourceId && (sourceId === droppedSourceId) && (i.type === "consumable") && (i.name === itemData.name); - }); - if ( !similarItem ) return null; - return similarItem.update({ - "system.quantity": similarItem.system.quantity + Math.max(itemData.system.quantity, 1) - }); + _onDropSpell(itemData) { + if ( !["npc", "character"].includes(this.document.type) ) return; + + // Determine the section it is dropped on, if any. + let header = this._event.target.closest(".items-header"); // Dropped directly on the header. + if ( !header ) { + const list = this._event.target.closest(".item-list"); // Dropped inside an existing list. + header = list?.previousElementSibling; + } + const mode = header?.dataset ?? {}; + + // Determine the actor's spell slot progressions, if any. + const progs = Object.values(this.document.classes).reduce((acc, cls) => { + if ( cls.spellcasting?.type === "pact" ) acc.pact = true; + else if ( cls.spellcasting?.type === "leveled" ) acc.leveled = true; + return acc; + }, {pact: false, leveled: false}); + + // Case 1: Drop a cantrip. + if ( itemData.system.level === 0 ) { + if ( ["pact", "prepared"].includes(mode["preparation.mode"]) ) { + itemData.system.preparation.mode = "prepared"; + } else if ( !mode["preparation.mode"] ) { + const isCaster = this.document.system.details.spellLevel || progs.pact || progs.leveled; + itemData.system.preparation.mode = isCaster ? "prepared" : "innate"; + } else { + itemData.system.preparation.mode = mode["preparation.mode"]; + } + } + + // Case 2: Drop a leveled spell in a section without a mode. + else if ( (mode.level === 0) || !mode["preparation.mode"] ) { + if ( this.document.type === "npc" ) { + itemData.system.preparation.mode = this.document.system.details.spellLevel ? "prepared" : "innate"; + } else { + itemData.system.preparation.mode = progs.leveled ? "prepared" : progs.pact ? "pact" : "innate"; + } + } + + // Case 3: Drop a leveled spell in a specific section. + else { + itemData.system.preparation.mode = mode["preparation.mode"]; + } } /* -------------------------------------------- */ @@ -1178,40 +1123,6 @@ export default class ActorSheet5e extends ActorSheet { /* -------------------------------------------- */ - /** - * Change the uses amount of an Owned Item within the Actor. - * @param {Event} event The triggering click event. - * @returns {Promise} Updated item. - * @protected - */ - async _onUsesChange(event) { - event.preventDefault(); - const itemId = event.currentTarget.closest(".item").dataset.itemId; - const item = this.actor.items.get(itemId); - const uses = Math.clamped(0, parseInt(event.target.value), item.system.uses.max); - event.target.value = uses; - return item.update({"system.uses.value": uses}); - } - - /* -------------------------------------------- */ - - /** - * Change the quantity of an Owned Item within the actor. - * @param {Event} event The triggering click event. - * @returns {Promise} Updated item. - * @protected - */ - async _onQuantityChange(event) { - event.preventDefault(); - const itemId = event.currentTarget.closest(".item").dataset.itemId; - const item = this.actor.items.get(itemId); - const quantity = Math.max(0, parseInt(event.target.value)); - event.target.value = quantity; - return item.update({"system.quantity": quantity}); - } - - /* -------------------------------------------- */ - /** * Handle using an item from the Actor sheet, obtaining the Item instance, and dispatching to its use method. * @param {Event} event The triggering click event. @@ -1242,33 +1153,6 @@ export default class ActorSheet5e extends ActorSheet { /* -------------------------------------------- */ - /** - * Handle toggling and items expanded description. - * @param {Event} event Triggering event. - * @private - */ - async _onItemSummary(event) { - event.preventDefault(); - const li = $(event.currentTarget).parents(".item"); - const item = this.actor.items.get(li.data("item-id")); - const chatData = await item.getChatData({secrets: this.actor.isOwner}); - - // Toggle summary - if ( li.hasClass("expanded") ) { - const summary = li.children(".item-summary"); - summary.slideUp(200, () => summary.remove()); - this._expanded.delete(item.id); - } else { - const summary = $(await renderTemplate("systems/dnd5e/templates/items/parts/item-summary.hbs", chatData)); - li.append(summary.hide()); - summary.slideDown(200); - this._expanded.add(item.id); - } - li.toggleClass("expanded"); - } - - /* -------------------------------------------- */ - /** * Handle creating a new Owned Item for the actor using initial data defined in the HTML dataset. * @param {Event} event The originating click event. @@ -1277,19 +1161,20 @@ export default class ActorSheet5e extends ActorSheet { */ _onItemCreate(event) { event.preventDefault(); - const header = event.currentTarget; - const type = header.dataset.type; + const dataset = (event.currentTarget.closest(".spellbook-header") ?? event.currentTarget).dataset; + const type = dataset.type; // Check to make sure the newly created class doesn't take player over level cap if ( type === "class" && (this.actor.system.details.level + 1 > CONFIG.DND5E.maxLevel) ) { const err = game.i18n.format("DND5E.MaxCharacterLevelExceededWarn", {max: CONFIG.DND5E.maxLevel}); - return ui.notifications.error(err); + ui.notifications.error(err); + return null; } const itemData = { name: game.i18n.format("DND5E.ItemNew", {type: game.i18n.localize(CONFIG.Item.typeLabels[type])}), type: type, - system: foundry.utils.expandObject({ ...header.dataset }) + system: foundry.utils.expandObject({ ...dataset }) }; delete itemData.system.type; return this.actor.createEmbeddedDocuments("Item", [itemData]); @@ -1329,15 +1214,12 @@ export default class ActorSheet5e extends ActorSheet { if ( !game.settings.get("dnd5e", "disableAdvancements") ) { const manager = AdvancementManager.forDeletedItem(this.actor, item.id); if ( manager.steps.length ) { - if ( ["class", "subclass"].includes(item.type) ) { - try { - const shouldRemoveAdvancements = await AdvancementConfirmationDialog.forDelete(item); - if ( shouldRemoveAdvancements ) return manager.render(true); - } catch(err) { - return; - } - } else { - return manager.render(true); + try { + const shouldRemoveAdvancements = await AdvancementConfirmationDialog.forDelete(item); + if ( shouldRemoveAdvancements ) return manager.render(true); + return item.delete({ shouldRemoveAdvancements }); + } catch(err) { + return; } } } @@ -1355,15 +1237,7 @@ export default class ActorSheet5e extends ActorSheet { async _onPropertyAttribution(event) { const element = event.target; let property = element.dataset.attribution; - if ( !property ) { - property = element.dataset.property; - if ( !property ) return; - foundry.utils.logCompatibilityWarning( - "Defining attributable properties on sheets with the `.attributable` class and `data-property` value" - + " has been deprecated in favor of a single `data-attribution` value.", - { since: "DnD5e 2.1.3", until: "DnD5e 2.4" } - ); - } + if ( !property ) return; const rollData = this.actor.getRollData({ deterministic: true }); const title = game.i18n.localize(element.dataset.attributionCaption); diff --git a/module/applications/actor/character-sheet.mjs b/module/applications/actor/character-sheet.mjs index 6c6a76da9f..27d44b3a80 100644 --- a/module/applications/actor/character-sheet.mjs +++ b/module/applications/actor/character-sheet.mjs @@ -1,4 +1,5 @@ import ActorSheet5e from "./base-sheet.mjs"; +import ActorTypeConfig from "./type-config.mjs"; import AdvancementConfirmationDialog from "../advancement/advancement-confirmation-dialog.mjs"; import AdvancementManager from "../advancement/advancement-manager.mjs"; @@ -24,11 +25,12 @@ export default class ActorSheet5eCharacter extends ActorSheet5e { // Resources context.resources = ["primary", "secondary", "tertiary"].reduce((arr, r) => { - const res = context.actor.system.resources[r] || {}; - res.name = r; - res.placeholder = game.i18n.localize(`DND5E.Resource${r.titleCase()}`); - if (res && res.value === 0) delete res.value; - if (res && res.max === 0) delete res.max; + const res = foundry.utils.mergeObject(context.actor.system.resources[r] || {}, { + name: r, + placeholder: game.i18n.localize(`DND5E.Resource${r.titleCase()}`) + }, {inplace: false}); + if ( res.value === 0 ) delete res.value; + if ( res.max === 0 ) delete res.max; return arr.concat([res]); }, []); @@ -36,6 +38,9 @@ export default class ActorSheet5eCharacter extends ActorSheet5e { return foundry.utils.mergeObject(context, { disableExperience: game.settings.get("dnd5e", "disableExperienceTracking"), classLabels: classes.map(c => c.name).join(", "), + labels: { + type: context.system.details.type.label + }, multiclassLabels: classes.map(c => [c.subclass?.name ?? "", c.name, c.system.levels].filterJoin(" ")).join(", "), weightUnit: game.i18n.localize(`DND5E.Abbreviation${ game.settings.get("dnd5e", "metricWeightUnits") ? "Kg" : "Lbs"}`), @@ -55,8 +60,8 @@ export default class ActorSheet5eCharacter extends ActorSheet5e { } // Partition items by category - let {items, spells, feats, backgrounds, classes, subclasses} = context.items.reduce((obj, item) => { - const {quantity, uses, recharge, target} = item.system; + let {items, spells, feats, races, backgrounds, classes, subclasses} = context.items.reduce((obj, item) => { + const {quantity, uses, recharge} = item.system; // Item details const ctx = context.itemContext[item.id] ??= {}; @@ -78,10 +83,10 @@ export default class ActorSheet5eCharacter extends ActorSheet5e { ctx.isExpanded = this._expanded.has(item.id); // Item usage - ctx.hasUses = uses && (uses.max > 0); + ctx.hasUses = item.hasLimitedUses; ctx.isOnCooldown = recharge && !!recharge.value && (recharge.charged === false); - ctx.isDepleted = ctx.isOnCooldown && (uses.per && (uses.value > 0)); - ctx.hasTarget = !!target && !(["none", ""].includes(target.type)); + ctx.isDepleted = ctx.isOnCooldown && ctx.hasUses && (uses.value > 0); + ctx.hasTarget = item.hasAreaTarget || item.hasIndividualTarget; // Item toggle state this._prepareItemToggleState(item, ctx); @@ -89,12 +94,13 @@ export default class ActorSheet5eCharacter extends ActorSheet5e { // Classify items into types if ( item.type === "spell" ) obj.spells.push(item); else if ( item.type === "feat" ) obj.feats.push(item); + else if ( item.type === "race" ) obj.races.push(item); else if ( item.type === "background" ) obj.backgrounds.push(item); else if ( item.type === "class" ) obj.classes.push(item); else if ( item.type === "subclass" ) obj.subclasses.push(item); else if ( Object.keys(inventory).includes(item.type) ) obj.items.push(item); return obj; - }, { items: [], spells: [], feats: [], backgrounds: [], classes: [], subclasses: [] }); + }, { items: [], spells: [], feats: [], races: [], backgrounds: [], classes: [], subclasses: [] }); // Apply active item filters items = this._filterItems(items, this._filters.inventory); @@ -140,6 +146,9 @@ export default class ActorSheet5eCharacter extends ActorSheet5e { // Organize Features const features = { + race: { + label: CONFIG.Item.typeLabels.race, items: races, + hasActions: false, dataset: {type: "race"} }, background: { label: CONFIG.Item.typeLabels.background, items: backgrounds, hasActions: false, dataset: {type: "background"} }, @@ -164,7 +173,6 @@ export default class ActorSheet5eCharacter extends ActorSheet5e { context.spellbook = spellbook; context.preparedSpells = nPrepared; context.features = Object.values(features); - context.labels.background = backgrounds[0]?.name; } /* -------------------------------------------- */ @@ -211,6 +219,19 @@ export default class ActorSheet5eCharacter extends ActorSheet5e { /* -------------------------------------------- */ + /** @inheritdoc */ + _onConfigMenu(event) { + event.preventDefault(); + event.stopPropagation(); + if ( (event.currentTarget.dataset.action === "type") && (this.actor.system.details.race?.id) ) { + new ActorTypeConfig(this.actor.system.details.race, { keyPath: "system.type" }).render(true); + } else if ( event.currentTarget.dataset.action !== "type" ) { + return super._onConfigMenu(event); + } + } + + /* -------------------------------------------- */ + /** * Handle mouse click events for character sheet actions. * @param {MouseEvent} event The originating click event. diff --git a/module/applications/actor/group-sheet.mjs b/module/applications/actor/group-sheet.mjs index 1d44494e50..683b7db5ee 100644 --- a/module/applications/actor/group-sheet.mjs +++ b/module/applications/actor/group-sheet.mjs @@ -1,13 +1,13 @@ import ActorMovementConfig from "./movement-config.mjs"; -import ActorSheet5e from "./base-sheet.mjs"; import Item5e from "../../documents/item.mjs"; +import { ActorSheetMixin } from "./sheet-mixin.mjs"; /** * A character sheet for group-type Actors. * The functionality of this sheet is sufficiently different from other Actor types that we extend the base * Foundry VTT ActorSheet instead of the ActorSheet5e abstraction used for character, npc, and vehicle types. */ -export default class GroupActorSheet extends ActorSheet { +export default class GroupActorSheet extends ActorSheetMixin(ActorSheet) { /** * IDs for items on the sheet that have been expanded. @@ -235,11 +235,12 @@ export default class GroupActorSheet extends ActorSheet { // Input focus and update const inputs = html.find("input"); inputs.focus(ev => ev.currentTarget.select()); - inputs.addBack().find('[type="text"][data-dtype="Number"]').change(ActorSheet5e.prototype._onChangeInputDelta.bind(this)); + inputs.addBack().find('[type="text"][data-dtype="Number"]').change(this._onChangeInputDelta.bind(this)); html.find(".action-button").click(this._onClickActionButton.bind(this)); html.find(".item-control").click(this._onClickItemControl.bind(this)); - html.find(".item .rollable h4").click(event => this._onClickItemName(event)); - html.find(".item-quantity input, .item-uses input").change(this._onItemPropertyChange.bind(this)); + html.find(".item .rollable h4").click(event => this._onItemSummary(event)); + html.find(".item-uses input").change(this._onUsesChange.bind(this)); + html.find(".item-quantity input").change(this._onQuantityChange.bind(this)); new ContextMenu(html, ".item-list .item", [], {onOpen: this._onItemContext.bind(this)}); } } @@ -329,7 +330,7 @@ export default class GroupActorSheet extends ActorSheet { _onItemContext(element) { const item = this.actor.items.get(element.dataset.itemId); if ( !item ) return; - ui.context.menuItems = ActorSheet5e.prototype._getItemContextOptions.call(this, item); + ui.context.menuItems = this._getItemContextOptions(item); Hooks.call("dnd5e.getItemContextOptions", item, ui.context.menuItems); } @@ -349,32 +350,6 @@ export default class GroupActorSheet extends ActorSheet { /* -------------------------------------------- */ - /** - * Handle clicks on an item name to expand its description - * @param {PointerEvent} event The initiating click event - * @protected - */ - _onClickItemName(event) { - game.system.applications.actor.ActorSheet5e.prototype._onItemSummary.call(this, event); - } - - /* -------------------------------------------- */ - - /** - * Change the quantity or limited uses of an Owned Item within the actor. - * @param {Event} event The triggering click event. - * @returns {Promise} Updated item. - * @protected - */ - async _onItemPropertyChange(event) { - const proto = game.system.applications.actor.ActorSheet5e.prototype; - const parent = event.currentTarget.parentElement; - if ( parent.classList.contains("item-quantity") ) return proto._onQuantityChange.call(this, event); - else if ( parent.classList.contains("item-uses") ) return proto._onUsesChange.call(this, event); - } - - /* -------------------------------------------- */ - /** @override */ async _onDropActor(event, data) { if ( !this.isEditable ) return; @@ -426,7 +401,9 @@ export default class GroupActorSheet extends ActorSheet { return scroll.toObject(); } - // TODO: Stack identical consumables + // Stack identical consumables + const stacked = this._onDropStackConsumables(itemData); + if ( stacked ) return false; return itemData; } diff --git a/module/applications/actor/hit-points-config.mjs b/module/applications/actor/hit-points-config.mjs index 50d0cc5a82..91f35d91a8 100644 --- a/module/applications/actor/hit-points-config.mjs +++ b/module/applications/actor/hit-points-config.mjs @@ -99,7 +99,7 @@ export default class ActorHitPointsConfig extends BaseConfigSheet { this.clone.updateSource({"system.attributes.hp.max": roll.total}); this.render(); } catch(error) { - ui.notifications.error(game.i18n.localize("DND5E.HPFormulaError")); + ui.notifications.error("DND5E.HPFormulaError", {localize: true}); throw error; } } diff --git a/module/applications/actor/movement-config.mjs b/module/applications/actor/movement-config.mjs index da0d93796b..298036526f 100644 --- a/module/applications/actor/movement-config.mjs +++ b/module/applications/actor/movement-config.mjs @@ -5,35 +5,32 @@ import BaseConfigSheet from "./base-config.mjs"; */ export default class ActorMovementConfig extends BaseConfigSheet { - /** @override */ + /** @inheritdoc */ static get defaultOptions() { return foundry.utils.mergeObject(super.defaultOptions, { classes: ["dnd5e"], template: "systems/dnd5e/templates/apps/movement-config.hbs", width: 300, - height: "auto" + height: "auto", + sheetConfig: false, + keyPath: "system.attributes.movement" }); } /* -------------------------------------------- */ - /** @override */ + /** @inheritdoc */ get title() { return `${game.i18n.localize("DND5E.MovementConfig")}: ${this.document.name}`; } /* -------------------------------------------- */ - /** @override */ + /** @inheritdoc */ getData(options={}) { const source = this.document.toObject(); - - // Current movement values - const movement = source.system.attributes?.movement || {}; - for ( let [k, v] of Object.entries(movement) ) { - if ( ["units", "hover"].includes(k) ) continue; - movement[k] = Number.isNumeric(v) ? v.toNearest(0.1) : 0; - } + const movement = foundry.utils.getProperty(source, this.options.keyPath) ?? {}; + const raceData = this.document.system.details?.race?.system?.movement ?? {}; // Allowed speeds const speeds = source.type === "group" ? { @@ -48,13 +45,19 @@ export default class ActorMovementConfig extends BaseConfigSheet { swim: "DND5E.MovementSwim" }; - // Return rendering context return { - speeds, movement, - selectUnits: source.type !== "group", - canHover: source.type !== "group", - units: CONFIG.DND5E.movementUnits + movements: Object.entries(speeds).reduce((obj, [k, label]) => { + obj[k] = { label, value: movement[k], placeholder: raceData[k] ?? 0 }; + return obj; + }, {}), + selectUnits: Object.hasOwn(movement, "units"), + canHover: Object.hasOwn(movement, "hover"), + units: CONFIG.DND5E.movementUnits, + unitsPlaceholder: game.i18n.format("DND5E.AutomaticValue", { + value: CONFIG.DND5E.movementUnits[raceData.units ?? Object.keys(CONFIG.DND5E.movementUnits)[0]]?.toLowerCase() + }), + keyPath: this.options.keyPath }; } } diff --git a/module/applications/actor/npc-sheet.mjs b/module/applications/actor/npc-sheet.mjs index 5607aaac0d..68b20c5e9b 100644 --- a/module/applications/actor/npc-sheet.mjs +++ b/module/applications/actor/npc-sheet.mjs @@ -16,7 +16,7 @@ export default class ActorSheet5eNPC extends ActorSheet5e { /* -------------------------------------------- */ /** @override */ - static unsupportedItemTypes = new Set(["background", "class", "subclass"]); + static unsupportedItemTypes = new Set(["background", "class", "race", "subclass"]); /* -------------------------------------------- */ /* Context Preparation */ @@ -33,7 +33,7 @@ export default class ActorSheet5eNPC extends ActorSheet5e { return foundry.utils.mergeObject(context, { labels: { cr: cr >= 1 ? String(cr) : crLabels[cr] ?? 1, - type: this.actor.constructor.formatCreatureType(context.system.details.type), + type: context.system.details.type.label, armorType: this.getArmorLabel() } }); diff --git a/module/applications/actor/proficiency-config.mjs b/module/applications/actor/proficiency-config.mjs index 012ad98616..14fce443be 100644 --- a/module/applications/actor/proficiency-config.mjs +++ b/module/applications/actor/proficiency-config.mjs @@ -49,7 +49,8 @@ export default class ProficiencyConfig extends BaseConfigSheet { /** @inheritdoc */ get title() { - const label = this.isSkill ? CONFIG.DND5E.skills[this.options.key].label : Trait.keyLabel("tool", this.options.key); + const label = this.isSkill ? CONFIG.DND5E.skills[this.options.key].label + : Trait.keyLabel(this.options.key, { trait: "tool" }); return `${game.i18n.format("DND5E.ProficiencyConfigureTitle", {label})}: ${this.document.name}`; } diff --git a/module/applications/actor/senses-config.mjs b/module/applications/actor/senses-config.mjs index 30e6e380b5..d90887bbe6 100644 --- a/module/applications/actor/senses-config.mjs +++ b/module/applications/actor/senses-config.mjs @@ -11,7 +11,8 @@ export default class ActorSensesConfig extends BaseConfigSheet { classes: ["dnd5e"], template: "systems/dnd5e/templates/apps/senses-config.hbs", width: 300, - height: "auto" + height: "auto", + keyPath: "system.attributes.senses" }); } @@ -26,19 +27,20 @@ export default class ActorSensesConfig extends BaseConfigSheet { /** @inheritdoc */ getData(options) { - const source = this.document.toObject().system.attributes?.senses || {}; - const data = { - senses: {}, - special: source.special ?? "", - units: source.units, movementUnits: CONFIG.DND5E.movementUnits - }; - for ( let [name, label] of Object.entries(CONFIG.DND5E.senses) ) { - const v = Number(source[name]); - data.senses[name] = { - label: game.i18n.localize(label), - value: Number.isNumeric(v) ? v.toNearest(0.1) : 0 - }; - } - return data; + const source = this.document.toObject(); + const senses = foundry.utils.getProperty(source, this.options.keyPath) ?? {}; + const raceData = this.document.system.details?.race?.system?.senses ?? {}; + return foundry.utils.mergeObject(super.getData(options), { + senses: Object.entries(CONFIG.DND5E.senses).reduce((obj, [k, label]) => { + obj[k] = { label, value: senses[k], placeholder: raceData[k] ?? 0 }; + return obj; + }, {}), + special: senses.special ?? "", + units: senses.units, movementUnits: CONFIG.DND5E.movementUnits, + unitsPlaceholder: game.i18n.format("DND5E.AutomaticValue", { + value: CONFIG.DND5E.movementUnits[raceData.units ?? Object.keys(CONFIG.DND5E.movementUnits)[0]]?.toLowerCase() + }), + keyPath: this.options.keyPath + }); } } diff --git a/module/applications/actor/sheet-mixin.mjs b/module/applications/actor/sheet-mixin.mjs new file mode 100644 index 0000000000..7d024d5ff5 --- /dev/null +++ b/module/applications/actor/sheet-mixin.mjs @@ -0,0 +1,202 @@ +/** + * Mixin method for common uses between all actor sheets. + * @mixin + */ +export const ActorSheetMixin = Base => class extends Base { + /** + * Handle input changes to numeric form fields, allowing them to accept delta-typed inputs. + * @param {Event} event Triggering event. + * @protected + */ + _onChangeInputDelta(event) { + const input = event.target; + const value = input.value; + if ( ["+", "-"].includes(value[0]) ) { + const delta = parseFloat(value); + const item = this.actor.items.get(input.closest("[data-item-id]")?.dataset.itemId); + if ( item ) input.value = Number(foundry.utils.getProperty(item, input.dataset.name)) + delta; + else input.value = Number(foundry.utils.getProperty(this.actor, input.name)) + delta; + } else if ( value[0] === "=" ) input.value = value.slice(1); + } + + /* -------------------------------------------- */ + + /** + * Prepare an array of context menu options which are available for owned ActiveEffect documents. + * @param {ActiveEffect5e} effect The ActiveEffect for which the context menu is activated + * @returns {ContextMenuEntry[]} An array of context menu options offered for the ActiveEffect + * @protected + */ + _getActiveEffectContextOptions(effect) { + return [ + { + name: "DND5E.ContextMenuActionEdit", + icon: "", + condition: () => effect.isOwner, + callback: () => effect.sheet.render(true) + }, + { + name: "DND5E.ContextMenuActionDuplicate", + icon: "", + condition: () => effect.isOwner, + callback: () => effect.clone({label: game.i18n.format("DOCUMENT.CopyOf", {name: effect.label})}, {save: true}) + }, + { + name: "DND5E.ContextMenuActionDelete", + icon: "", + condition: () => effect.isOwner, + callback: () => effect.deleteDialog() + }, + { + name: effect.disabled ? "DND5E.ContextMenuActionEnable" : "DND5E.ContextMenuActionDisable", + icon: effect.disabled ? "" : "", + condition: () => effect.isOwner, + callback: () => effect.update({disabled: !effect.disabled}) + } + ]; + } + + /* -------------------------------------------- */ + + /** + * Prepare an array of context menu options which are available for owned Item documents. + * @param {Item5e} item The Item for which the context menu is activated + * @returns {ContextMenuEntry[]} An array of context menu options offered for the Item + * @protected + */ + _getItemContextOptions(item) { + + // Standard Options + const options = [ + { + name: "DND5E.ContextMenuActionEdit", + icon: "", + condition: () => item.isOwner, + callback: () => item.sheet.render(true) + }, + { + name: "DND5E.ContextMenuActionDuplicate", + icon: "", + condition: () => !["race", "background", "class", "subclass"].includes(item.type) && item.actor.isOwner, + callback: () => item.clone({name: game.i18n.format("DOCUMENT.CopyOf", {name: item.name})}, {save: true}) + }, + { + name: "DND5E.ContextMenuActionDelete", + icon: "", + condition: () => item.isOwner, + callback: () => item.deleteDialog() + } + ]; + + // Toggle Attunement State + if ( ("attunement" in item.system) && (item.system.attunement !== CONFIG.DND5E.attunementTypes.NONE) ) { + const isAttuned = item.system.attunement === CONFIG.DND5E.attunementTypes.ATTUNED; + options.push({ + name: isAttuned ? "DND5E.ContextMenuActionUnattune" : "DND5E.ContextMenuActionAttune", + icon: "", + condition: () => item.isOwner, + callback: () => item.update({ + "system.attunement": CONFIG.DND5E.attunementTypes[isAttuned ? "REQUIRED" : "ATTUNED"] + }) + }); + } + + // Toggle Equipped State + if ( "equipped" in item.system ) options.push({ + name: item.system.equipped ? "DND5E.ContextMenuActionUnequip" : "DND5E.ContextMenuActionEquip", + icon: "", + condition: () => item.isOwner, + callback: () => item.update({"system.equipped": !item.system.equipped}) + }); + + // Toggle Prepared State + if ( ("preparation" in item.system) && (item.system.preparation?.mode === "prepared") ) options.push({ + name: item.system?.preparation?.prepared ? "DND5E.ContextMenuActionUnprepare" : "DND5E.ContextMenuActionPrepare", + icon: "", + condition: () => item.isOwner, + callback: () => item.update({"system.preparation.prepared": !item.system.preparation?.prepared}) + }); + return options; + } + + /* -------------------------------------------- */ + + /** + * Handle toggling and items expanded description. + * @param {Event} event Triggering event. + * @private + */ + async _onItemSummary(event) { + event.preventDefault(); + const li = $(event.currentTarget).parents(".item"); + const item = this.actor.items.get(li.data("item-id")); + const chatData = await item.getChatData({secrets: this.actor.isOwner}); + + // Toggle summary + if ( li.hasClass("expanded") ) { + const summary = li.children(".item-summary"); + summary.slideUp(200, () => summary.remove()); + this._expanded.delete(item.id); + } else { + const summary = $(await renderTemplate("systems/dnd5e/templates/items/parts/item-summary.hbs", chatData)); + li.append(summary.hide()); + summary.slideDown(200); + this._expanded.add(item.id); + } + li.toggleClass("expanded"); + } + + /* -------------------------------------------- */ + + /** + * Change the uses amount of an Owned Item within the Actor. + * @param {Event} event The triggering click event. + * @returns {Promise} Updated item. + * @protected + */ + async _onUsesChange(event) { + event.preventDefault(); + const itemId = event.currentTarget.closest(".item").dataset.itemId; + const item = this.actor.items.get(itemId); + const uses = Math.clamped(0, parseInt(event.target.value || 0), item.system.uses.max); + event.target.value = uses; + return item.update({"system.uses.value": uses}); + } + + /* -------------------------------------------- */ + + /** + * Change the quantity of an Owned Item within the actor. + * @param {Event} event The triggering click event. + * @returns {Promise} Updated item. + * @protected + */ + async _onQuantityChange(event) { + event.preventDefault(); + const itemId = event.currentTarget.closest(".item").dataset.itemId; + const item = this.actor.items.get(itemId); + const quantity = Math.max(0, parseInt(event.target.value || 0)); + event.target.value = quantity; + return item.update({"system.quantity": quantity}); + } + + /* -------------------------------------------- */ + + /** + * Stack identical consumables when a new one is dropped rather than creating a duplicate item. + * @param {object} itemData The item data requested for creation. + * @returns {Promise|null} If a duplicate was found, returns the adjusted item stack. + */ + _onDropStackConsumables(itemData) { + const droppedSourceId = itemData.flags.core?.sourceId; + if ( itemData.type !== "consumable" || !droppedSourceId ) return null; + const similarItem = this.actor.items.find(i => { + const sourceId = i.getFlag("core", "sourceId"); + return sourceId && (sourceId === droppedSourceId) && (i.type === "consumable") && (i.name === itemData.name); + }); + if ( !similarItem ) return null; + return similarItem.update({ + "system.quantity": similarItem.system.quantity + Math.max(itemData.system.quantity, 1) + }); + } +} diff --git a/module/applications/actor/skill-config.mjs b/module/applications/actor/skill-config.mjs deleted file mode 100644 index e4260ec927..0000000000 --- a/module/applications/actor/skill-config.mjs +++ /dev/null @@ -1,70 +0,0 @@ -import BaseConfigSheet from "./base-config.mjs"; - -/** - * A simple form to set skill configuration for a given skill. - * - * @param {Actor} actor The Actor instance being displayed within the sheet. - * @param {ApplicationOptions} options Additional application configuration options. - * @param {string} skillId The skill key as defined in CONFIG.DND5E.skills. - * @deprecated since dnd5e 2.2, targeted for removal in 2.4 - */ -export default class ActorSkillConfig extends BaseConfigSheet { - constructor(actor, options, skillId) { - super(actor, options); - this._skillId = skillId; - - foundry.utils.logCompatibilityWarning("ActorSkillConfig has been deprecated in favor of the more general " - + "ProficiencyConfig available at 'dnd5e.applications.actor.ProficiencyConfig'. Support for the old application " - + "will be removed in a future version.", {since: "DnD5e 2.2", until: "DnD5e 2.4"}); - } - - /* -------------------------------------------- */ - - /** @inheritdoc */ - static get defaultOptions() { - return foundry.utils.mergeObject(super.defaultOptions, { - classes: ["dnd5e"], - template: "systems/dnd5e/templates/apps/skill-config.hbs", - width: 500, - height: "auto" - }); - } - - /* -------------------------------------------- */ - - /** @inheritdoc */ - get title() { - const label = CONFIG.DND5E.skills[this._skillId].label; - return `${game.i18n.format("DND5E.SkillConfigureTitle", {skill: label})}: ${this.document.name}`; - } - - /* -------------------------------------------- */ - - /** @inheritdoc */ - getData(options) { - const src = this.document.toObject(); - return { - abilities: CONFIG.DND5E.abilities, - skill: src.system.skills?.[this._skillId] ?? this.document.system.skills[this._skillId] ?? {}, - skillId: this._skillId, - proficiencyLevels: CONFIG.DND5E.proficiencyLevels, - bonusGlobal: src.system.bonuses?.abilities.skill - }; - } - - /* -------------------------------------------- */ - - /** @inheritdoc */ - _updateObject(event, formData) { - const passive = formData[`system.skills.${this._skillId}.bonuses.passive`]; - const passiveRoll = new Roll(passive); - if ( !passiveRoll.isDeterministic ) { - const message = game.i18n.format("DND5E.FormulaCannotContainDiceError", { - name: game.i18n.localize("DND5E.SkillBonusPassive") - }); - ui.notifications.error(message); - throw new Error(message); - } - super._updateObject(event, formData); - } -} diff --git a/module/applications/actor/tool-selector.mjs b/module/applications/actor/tool-selector.mjs index 5d798cb4f3..ac3b3c7c57 100644 --- a/module/applications/actor/tool-selector.mjs +++ b/module/applications/actor/tool-selector.mjs @@ -10,7 +10,7 @@ export default class ToolSelector extends TraitSelector { async getData() { return { ...super.getData(), - choices: await Trait.choices(this.trait, Object.keys(this.document.system.tools)) + choices: await Trait.choices(this.trait, { chosen: new Set(Object.keys(this.document.system.tools)) }) }; } diff --git a/module/applications/actor/trait-selector.mjs b/module/applications/actor/trait-selector.mjs index 542a00670b..7075e465c6 100644 --- a/module/applications/actor/trait-selector.mjs +++ b/module/applications/actor/trait-selector.mjs @@ -61,13 +61,13 @@ export default class TraitSelector extends BaseConfigSheet { /** @inheritdoc */ async getData() { - const path = `system.${Trait.actorKeyPath(this.trait)}`; + const path = Trait.actorKeyPath(this.trait); const data = foundry.utils.getProperty(this.document, path); if ( !data ) return super.getData(); return { ...super.getData(), - choices: await Trait.choices(this.trait, data.value), + choices: await Trait.choices(this.trait, { chosen: data.value }), custom: data.custom, customPath: "custom" in data ? `${path}.custom` : null, bypasses: "bypasses" in data ? Object.entries(CONFIG.DND5E.physicalWeaponProperties).reduce((obj, [k, v]) => { @@ -94,7 +94,7 @@ export default class TraitSelector extends BaseConfigSheet { /** @inheritdoc */ _getActorOverrides() { const overrides = super._getActorOverrides(); - const path = `system.${Trait.actorKeyPath(this.trait)}.value`; + const path = Trait.changeKeyPath(this.trait); const src = new Set(foundry.utils.getProperty(this.document._source, path)); const current = foundry.utils.getProperty(this.document, path); const delta = current.difference(src); @@ -151,7 +151,7 @@ export default class TraitSelector extends BaseConfigSheet { /** @override */ async _updateObject(event, formData) { - const path = `system.${Trait.actorKeyPath(this.trait)}`; + const path = Trait.actorKeyPath(this.trait); const data = foundry.utils.getProperty(this.document, path); this._prepareChoices("choices", `${path}.value`, formData); diff --git a/module/applications/actor/type-config.mjs b/module/applications/actor/type-config.mjs index 58aeb98f08..2635e1c61a 100644 --- a/module/applications/actor/type-config.mjs +++ b/module/applications/actor/type-config.mjs @@ -3,9 +3,9 @@ import Actor5e from "../../documents/actor/actor.mjs"; /** * A specialized form used to select from a checklist of attributes, traits, or properties */ -export default class ActorTypeConfig extends FormApplication { +export default class ActorTypeConfig extends DocumentSheet { - /** @inheritDoc */ + /** @inheritdoc */ static get defaultOptions() { return foundry.utils.mergeObject(super.defaultOptions, { classes: ["dnd5e", "actor-type", "trait-selector"], @@ -15,31 +15,43 @@ export default class ActorTypeConfig extends FormApplication { choices: {}, allowCustom: true, minimum: 0, - maximum: null + maximum: null, + sheetConfig: false, + keyPath: "system.details.type" }); } /* -------------------------------------------- */ - /** @inheritDoc */ + /** @inheritdoc */ get title() { return `${game.i18n.localize("DND5E.CreatureTypeTitle")}: ${this.object.name}`; } /* -------------------------------------------- */ - /** @override */ + /** @inheritdoc */ get id() { return `actor-type-${this.object.id}`; } /* -------------------------------------------- */ - /** @override */ - getData(options={}) { + /** + * Return a reference to the Actor. Either the NPCs themselves if they are being edited, otherwise the parent Actor + * if a race Item is being edited. + * @returns {Actor5e} + */ + get actor() { + return this.object.actor ?? this.object; + } + + /* -------------------------------------------- */ + /** @inheritdoc */ + getData(options={}) { // Get current value or new default - let attr = foundry.utils.getProperty(this.object.system, "details.type"); + let attr = foundry.utils.getProperty(this.object, this.options.keyPath); if ( foundry.utils.getType(attr) !== "Object" ) attr = { value: (attr in CONFIG.DND5E.creatureTypes) ? attr : "humanoid", subtype: "", @@ -64,6 +76,8 @@ export default class ActorTypeConfig extends FormApplication { label: game.i18n.localize("DND5E.CreatureTypeSelectorCustom"), chosen: attr.value === "custom" }, + showCustom: Object.hasOwn(attr, "custom"), + showSwarm: Object.hasOwn(attr, "swarm"), subtype: attr.subtype, swarm: attr.swarm, sizes: Array.from(Object.entries(CONFIG.DND5E.actorSizes)).reverse().reduce((obj, e) => { @@ -79,7 +93,7 @@ export default class ActorTypeConfig extends FormApplication { /** @override */ async _updateObject(event, formData) { const typeObject = foundry.utils.expandObject(formData); - return this.object.update({"system.details.type": typeObject}); + return this.object.update({[this.options.keyPath]: typeObject}); } /* -------------------------------------------- */ @@ -90,6 +104,15 @@ export default class ActorTypeConfig extends FormApplication { activateListeners(html) { super.activateListeners(html); html.find("input[name='custom']").focusin(this._onCustomFieldFocused.bind(this)); + + const overrides = Object.keys(foundry.utils.flattenObject(this.actor.overrides || {})); + if ( overrides.some(k => k.startsWith("system.details.type.")) ) { + // Disable editing any type field if one of them is overridden by an Active Effect. + html.find("input, select").each((i, el) => { + el.disabled = true; + el.dataset.tooltip = "DND5E.ActiveEffectOverrideWarning"; + }); + } } /* -------------------------------------------- */ diff --git a/module/applications/actor/vehicle-sheet.mjs b/module/applications/actor/vehicle-sheet.mjs index bee6c3db36..267f63a44c 100644 --- a/module/applications/actor/vehicle-sheet.mjs +++ b/module/applications/actor/vehicle-sheet.mjs @@ -15,7 +15,7 @@ export default class ActorSheet5eVehicle extends ActorSheet5e { /* -------------------------------------------- */ /** @override */ - static unsupportedItemTypes = new Set(["background", "class", "subclass"]); + static unsupportedItemTypes = new Set(["background", "class", "race", "subclass"]); /* -------------------------------------------- */ diff --git a/module/applications/advancement/_module.mjs b/module/applications/advancement/_module.mjs index a77b97e179..9ef0fce0e5 100644 --- a/module/applications/advancement/_module.mjs +++ b/module/applications/advancement/_module.mjs @@ -15,3 +15,7 @@ export {default as ItemGrantConfig} from "./item-grant-config.mjs"; export {default as ItemGrantFlow} from "./item-grant-flow.mjs"; export {default as ScaleValueConfig} from "./scale-value-config.mjs"; export {default as ScaleValueFlow} from "./scale-value-flow.mjs"; +export {default as SizeConfig} from "./size-config.mjs"; +export {default as SizeFlow} from "./size-flow.mjs"; +export {default as TraitConfig} from "./trait-config.mjs"; +export {default as TraitFlow} from "./trait-flow.mjs"; diff --git a/module/applications/advancement/ability-score-improvement-flow.mjs b/module/applications/advancement/ability-score-improvement-flow.mjs index 39be64c528..c4035c4f24 100644 --- a/module/applications/advancement/ability-score-improvement-flow.mjs +++ b/module/applications/advancement/ability-score-improvement-flow.mjs @@ -48,6 +48,7 @@ export default class AbilityScoreImprovementFlow extends AdvancementFlow { if ( !this.advancement.canImprove(key) || this.advancement.configuration.fixed[key] ) return assigned; return assigned + (this.assignments[key] ?? 0); }, 0), + cap: this.advancement.configuration.cap ?? Infinity, total: this.advancement.configuration.points }; points.available = points.total - points.assigned; @@ -57,8 +58,9 @@ export default class AbilityScoreImprovementFlow extends AdvancementFlow { const abilities = Object.entries(CONFIG.DND5E.abilities).reduce((obj, [key, data]) => { if ( !this.advancement.canImprove(key) ) return obj; const ability = this.advancement.actor.system.abilities[key]; + const assignment = this.assignments[key] ?? 0; const fixed = this.advancement.configuration.fixed[key] ?? 0; - const value = Math.min(ability.value + ((fixed || this.assignments[key]) ?? 0), ability.max); + const value = Math.min(ability.value + ((fixed || assignment) ?? 0), ability.max); const max = fixed ? value : Math.min(value + points.available, ability.max); obj[key] = { key, max, value, @@ -69,20 +71,24 @@ export default class AbilityScoreImprovementFlow extends AdvancementFlow { delta: (value - ability.value) ? formatter.format(value - ability.value) : null, showDelta: true, isDisabled: !!this.feat, - isFixed: !!fixed, - canIncrease: (value < max) && !fixed && !this.feat, + isFixed: !!fixed || (ability.value >= ability.max), + canIncrease: (value < max) && (assignment < points.cap) && !fixed && !this.feat, canDecrease: (value > ability.value) && !fixed && !this.feat }; return obj; }, {}); - const pluralRule = new Intl.PluralRules(game.i18n.lang).select(points.available); + const pluralRules = new Intl.PluralRules(game.i18n.lang); return foundry.utils.mergeObject(super.getData(), { abilities, points, feat: this.feat, staticIncrease: !this.advancement.configuration.points, + pointCap: game.i18n.format( + `DND5E.AdvancementAbilityScoreImprovementCapDisplay.${pluralRules.select(points.cap)}`, {points: points.cap} + ), pointsRemaining: game.i18n.format( - `DND5E.AdvancementAbilityScoreImprovementPointsRemaining.${pluralRule}`, {points: points.available} + `DND5E.AdvancementAbilityScoreImprovementPointsRemaining.${pluralRules.select(points.available)}`, + {points: points.available} ) }); } @@ -104,8 +110,13 @@ export default class AbilityScoreImprovementFlow extends AdvancementFlow { super._onChangeInput(event); const input = event.currentTarget; const key = input.closest("[data-score]").dataset.score; - const clampedValue = Math.clamped(input.valueAsNumber, Number(input.min), Number(input.max)); - this.assignments[key] = clampedValue - Number(input.dataset.initial); + if ( isNaN(input.valueAsNumber) ) this.assignments[key] = 0; + else { + this.assignments[key] = Math.min( + Math.clamped(input.valueAsNumber, Number(input.min), Number(input.max)) - Number(input.dataset.initial), + this.advancement.configuration.cap ?? Infinity + ); + } this.render(); } @@ -187,9 +198,10 @@ export default class AbilityScoreImprovementFlow extends AdvancementFlow { if ( data.type !== "Item" ) return false; const item = await Item.implementation.fromDropData(data); - if ( (item.type !== "feat") || (item.system.type.value !== "feat") ) return ui.notifications.error( - game.i18n.localize("DND5E.AdvancementAbilityScoreImprovementFeatWarning") - ); + if ( (item.type !== "feat") || (item.system.type.value !== "feat") ) { + ui.notifications.error("DND5E.AdvancementAbilityScoreImprovementFeatWarning", {localize: true}); + return null; + } this.feat = item; this.render(); diff --git a/module/applications/advancement/advancement-config.mjs b/module/applications/advancement/advancement-config.mjs index 36caeb014b..d9874e4e9c 100644 --- a/module/applications/advancement/advancement-config.mjs +++ b/module/applications/advancement/advancement-config.mjs @@ -194,19 +194,22 @@ export default class AdvancementConfig extends FormApplication { try { this._validateDroppedItem(event, item); } catch(err) { - return ui.notifications.error(err.message); + ui.notifications.error(err.message); + return null; } const existingItems = foundry.utils.getProperty(this.advancement.configuration, this.options.dropKeyPath); // Abort if this uuid is the parent item if ( item.uuid === this.item.uuid ) { - return ui.notifications.error(game.i18n.localize("DND5E.AdvancementItemGrantRecursiveWarning")); + ui.notifications.error("DND5E.AdvancementItemGrantRecursiveWarning", {localize: true}); + return null; } // Abort if this uuid exists already if ( existingItems.includes(item.uuid) ) { - return ui.notifications.warn(game.i18n.localize("DND5E.AdvancementItemGrantDuplicateWarning")); + ui.notifications.warn("DND5E.AdvancementItemGrantDuplicateWarning", {localize: true}); + return null; } await this.advancement.update({[`configuration.${this.options.dropKeyPath}`]: [...existingItems, item.uuid]}); diff --git a/module/applications/advancement/advancement-flow.mjs b/module/applications/advancement/advancement-flow.mjs index 786e2be912..29761a88bb 100644 --- a/module/applications/advancement/advancement-flow.mjs +++ b/module/applications/advancement/advancement-flow.mjs @@ -99,9 +99,26 @@ export default class AdvancementFlow extends FormApplication { /* -------------------------------------------- */ + /** @inheritdoc */ + async _render(...args) { + await super._render(...args); + + // Call setPosition on manager to adjust for size changes + this.options.manager?.setPosition(); + } + + /* -------------------------------------------- */ + /** @inheritdoc */ async _updateObject(event, formData) { await this.advancement.apply(this.level, formData); } + /* -------------------------------------------- */ + + /** @inheritdoc */ + _canDragDrop(selector) { + return true; + } + } diff --git a/module/applications/advancement/advancement-manager.mjs b/module/applications/advancement/advancement-manager.mjs index df41dc6b94..2027b54826 100644 --- a/module/applications/advancement/advancement-manager.mjs +++ b/module/applications/advancement/advancement-manager.mjs @@ -466,6 +466,7 @@ export default class AdvancementManager extends Application { // Render the step this.step.flow._element = null; + this.step.flow.options.manager ??= this; await this.step.flow._render(force, options); this.setPosition(); } diff --git a/module/applications/advancement/item-choice-flow.mjs b/module/applications/advancement/item-choice-flow.mjs index 2e11b3b326..e6d014d9e3 100644 --- a/module/applications/advancement/item-choice-flow.mjs +++ b/module/applications/advancement/item-choice-flow.mjs @@ -128,7 +128,8 @@ export default class ItemChoiceFlow extends ItemGrantFlow { try { this.advancement._validateItemType(item); } catch(err) { - return ui.notifications.error(err.message); + ui.notifications.error(err.message); + return null; } // If the item is already been marked as selected, no need to go further @@ -138,7 +139,8 @@ export default class ItemChoiceFlow extends ItemGrantFlow { for ( const [level, data] of Object.entries(this.advancement.value.added ?? {}) ) { if ( level >= this.level ) continue; if ( Object.values(data).includes(item.uuid) ) { - return ui.notifications.error(game.i18n.localize("DND5E.AdvancementItemChoicePreviouslyChosenWarning")); + ui.notifications.error("DND5E.AdvancementItemChoicePreviouslyChosenWarning", {localize: true}); + return null; } } @@ -146,9 +148,12 @@ export default class ItemChoiceFlow extends ItemGrantFlow { const spellLevel = this.advancement.configuration.restriction.level; if ( (this.advancement.configuration.type === "spell") && spellLevel === "available" ) { const maxSlot = this._maxSpellSlotLevel(); - if ( item.system.level > maxSlot ) return ui.notifications.error(game.i18n.format( - "DND5E.AdvancementItemChoiceSpellLevelAvailableWarning", { level: CONFIG.DND5E.spellLevels[maxSlot] } - )); + if ( item.system.level > maxSlot ) { + ui.notifications.error(game.i18n.format("DND5E.AdvancementItemChoiceSpellLevelAvailableWarning", { + level: CONFIG.DND5E.spellLevels[maxSlot] + })); + return null; + } } // Mark the item as selected diff --git a/module/applications/advancement/scale-value-config.mjs b/module/applications/advancement/scale-value-config.mjs index 5a72295e78..ba0936e683 100644 --- a/module/applications/advancement/scale-value-config.mjs +++ b/module/applications/advancement/scale-value-config.mjs @@ -44,7 +44,9 @@ export default class ScaleValueConfig extends AdvancementConfig { */ _prepareLevelData() { let lastValue = null; - return Array.fromRange(CONFIG.DND5E.maxLevel + 1).slice(1).reduce((obj, level) => { + let levels = Array.fromRange(CONFIG.DND5E.maxLevel + 1); + if ( ["class", "subclass"].includes(this.advancement.parent.type) ) levels = levels.slice(1); + return levels.reduce((obj, level) => { obj[level] = { placeholder: this._formatPlaceholder(lastValue), value: null }; const value = this.advancement.configuration.scale[level]; if ( value ) { diff --git a/module/applications/advancement/size-config.mjs b/module/applications/advancement/size-config.mjs new file mode 100644 index 0000000000..8cf89e3ec4 --- /dev/null +++ b/module/applications/advancement/size-config.mjs @@ -0,0 +1,40 @@ +import { filteredKeys } from "../../utils.mjs"; +import AdvancementConfig from "./advancement-config.mjs"; + +/** + * Configuration application for size advancement. + */ +export default class SizeConfig extends AdvancementConfig { + + /** @inheritdoc */ + static get defaultOptions() { + return foundry.utils.mergeObject(super.defaultOptions, { + classes: ["dnd5e", "advancement", "size"], + template: "systems/dnd5e/templates/advancement/size-config.hbs" + }); + } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + getData() { + return foundry.utils.mergeObject(super.getData(), { + default: { + hint: this.advancement.automaticHint + }, + showLevelSelector: false, + sizes: Object.entries(CONFIG.DND5E.actorSizes).reduce((obj, [key, label]) => { + obj[key] = { label, chosen: this.advancement.configuration.sizes.has(key) }; + return obj; + }, {}) + }); + } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + async prepareConfigurationUpdate(configuration) { + configuration.sizes = filteredKeys(configuration.sizes ?? {}); + return configuration; + } +} diff --git a/module/applications/advancement/size-flow.mjs b/module/applications/advancement/size-flow.mjs new file mode 100644 index 0000000000..0a19d53ab0 --- /dev/null +++ b/module/applications/advancement/size-flow.mjs @@ -0,0 +1,30 @@ +import AdvancementFlow from "./advancement-flow.mjs"; + +/** + * Inline application that displays size advancement. + */ +export default class SizeFlow extends AdvancementFlow { + + /** @inheritdoc */ + static get defaultOptions() { + return foundry.utils.mergeObject(super.defaultOptions, { + template: "systems/dnd5e/templates/advancement/size-flow.hbs" + }); + } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + getData() { + const sizes = this.advancement.configuration.sizes; + return foundry.utils.mergeObject(super.getData(), { + singleSize: sizes.size === 1 ? sizes.first() : null, + hint: this.advancement.configuration.hint || this.advancement.automaticHint, + selectedSize: this.retainedData?.size ?? this.advancement.value.size, + sizes: Array.from(sizes).reduce((obj, key) => { + obj[key] = CONFIG.DND5E.actorSizes[key]; + return obj; + }, {}) + }); + } +} diff --git a/module/applications/advancement/trait-config.mjs b/module/applications/advancement/trait-config.mjs new file mode 100644 index 0000000000..4e8a5c9f74 --- /dev/null +++ b/module/applications/advancement/trait-config.mjs @@ -0,0 +1,232 @@ +import AdvancementConfig from "./advancement-config.mjs"; +import * as Trait from "../../documents/actor/trait.mjs"; +import { filteredKeys } from "../../utils.mjs"; + +/** + * Configuration application for traits. + */ +export default class TraitConfig extends AdvancementConfig { + constructor(...args) { + super(...args); + this.selected = (this.config.choices.length && !this.config.grants.size) ? 0 : -1; + this.trait = this.types.first() ?? "skills"; + } + + /* -------------------------------------------- */ + + /** + * Shortcut to the configuration data on the advancement. + * @type {object} + */ + get config() { + return this.advancement.configuration; + } + + /* -------------------------------------------- */ + + /** + * Index of the selected configuration, `-1` means `grants` array, any other number is equal + * to an index in `choices` array. + * @type {number} + */ + selected; + + /* -------------------------------------------- */ + + /** + * Trait type to display in the selector interface. + * @type {string} + */ + trait; + + /* -------------------------------------------- */ + + /** + * List of trait types for the current selected configuration. + * @type {Set} + */ + get types() { + const pool = this.selected === -1 ? this.config.grants : this.config.choices[this.selected].pool; + return this.advancement.representedTraits([pool]); + } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + static get defaultOptions() { + return foundry.utils.mergeObject(super.defaultOptions, { + classes: ["dnd5e", "advancement", "traits", "two-column"], + template: "systems/dnd5e/templates/advancement/trait-config.hbs", + width: 640 + }); + } + + /* -------------------------------------------- */ + /* Context Preparation */ + /* -------------------------------------------- */ + + /** @inheritdoc */ + async getData() { + const context = super.getData(); + + context.grants = { + label: Trait.localizedList({ grants: this.config.grants }) || "—", + data: this.config.grants, + selected: this.selected === -1 + }; + context.choices = this.config.choices.map((choice, index) => ({ + label: Trait.choiceLabel(choice, { only: true }).capitalize() || "—", + data: choice, + selected: this.selected === index + })); + const chosen = (this.selected === -1) ? context.grants.data : context.choices[this.selected].data.pool; + context.count = context.choices[this.selected]?.data.count; + context.selectedIndex = this.selected; + + context.validTraitTypes = Object.entries(CONFIG.DND5E.traits).reduce((obj, [key, config]) => { + if ( (this.config.mode === "default") || config.expertise ) obj[key] = config.labels.title; + return obj; + }, {}); + + const rep = this.advancement.representedTraits(); + const traitConfig = rep.size === 1 ? CONFIG.DND5E.traits[rep.first()] : null; + if ( traitConfig ) { + context.default.title = traitConfig.labels.title; + context.default.icon = traitConfig.icon; + } else { + context.default.title = game.i18n.localize("DND5E.TraitGenericPlural.other"); + context.default.icon = this.advancement.constructor.metadata.icon; + } + context.default.hint = Trait.localizedList({ grants: this.config.grants, choices: this.config.choices }); + + context.choiceOptions = await Trait.choices(this.trait, { chosen, prefixed: true, any: this.selected !== -1 }); + context.selectedTraitHeader = `${CONFIG.DND5E.traits[this.trait].labels.localization}.other`; + context.selectedTrait = this.trait; + + return context; + } + + /* -------------------------------------------- */ + /* Event Handlers */ + /* -------------------------------------------- */ + + /** @inheritdoc */ + activateListeners(html) { + super.activateListeners(html); + + this.form.querySelectorAll("[data-action]").forEach(a => a.addEventListener("click", this._onAction.bind(this))); + + // Handle selecting & disabling category children when a category is selected + for ( const checkbox of html[0].querySelectorAll(".trait-selector input:checked") ) { + const toCheck = checkbox.name.endsWith("*") + ? checkbox.closest("ol").querySelectorAll(`input:not([name="${checkbox.name}"])`) + : checkbox.closest("li").querySelector("ol")?.querySelectorAll("input"); + toCheck?.forEach(i => i.checked = i.disabled = true); + } + } + + /* -------------------------------------------- */ + + /** + * Handle clicks to the Add and Remove buttons above the list. + * @param {Event} event Triggering click. + */ + async _onAction(event) { + event.preventDefault(); + switch ( event.currentTarget.dataset.action ) { + case "add-choice": + this.config.choices.push({ count: 1 }); + this.selected = this.config.choices.length - 1; + break; + + case "remove-choice": + const input = event.currentTarget.closest("li").querySelector("[name='selectedIndex']"); + const selectedIndex = Number(input.value); + this.config.choices.splice(selectedIndex, 1); + if ( selectedIndex <= this.selected ) this.selected -= 1; + break; + + default: + return; + } + + await this.advancement.update({ configuration: await this.prepareConfigurationUpdate() }); + } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + async _onChangeInput(event) { + // Display new set of trait choices + if ( event.target.name === "selectedTrait" ) { + this.trait = event.target.value; + return this.render(); + } + + // Change selected configuration set + else if ( event.target.name === "selectedIndex" ) { + this.selected = Number(event.target.value ?? -1); + const types = this.types; + if ( types.size && !types.has(this.trait) ) this.trait = types.first(); + return this.render(); + } + + // If mode is changed from default to one of the others, change selected type if current type is not valid + if ( (event.target.name === "configuration.mode") + && (event.target.value !== "default") + && (this.config.mode === "default") ) { + const validTraitTypes = filteredKeys(CONFIG.DND5E.traits, c => c.expertise); + if ( !validTraitTypes.includes(this.trait) ) this.trait = validTraitTypes[0]; + } + + super._onChangeInput(event); + } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + async prepareConfigurationUpdate(configuration={}) { + const choicesCollection = foundry.utils.deepClone(this.config.choices); + + if ( configuration.checked ) { + const prefix = `${this.trait}:`; + const filteredSelected = filteredKeys(configuration.checked); + + // Update grants + if ( this.selected === -1 ) { + const filteredPrevious = this.config.grants.filter(k => !k.startsWith(prefix)); + configuration.grants = [...filteredPrevious, ...filteredSelected]; + } + + // Update current choice pool + else { + const current = choicesCollection[this.selected]; + const filteredPrevious = current.pool.filter(k => !k.startsWith(prefix)); + current.pool = [...filteredPrevious, ...filteredSelected]; + } + delete configuration.checked; + } + + if ( configuration.count ) { + choicesCollection[this.selected].count = configuration.count; + delete configuration.count; + } + + // TODO: Remove when https://github.com/foundryvtt/foundryvtt/issues/7706 is resolved + choicesCollection.forEach(c => { + if ( !c.pool ) return; + c.pool = Array.from(c.pool); + }); + configuration.choices = choicesCollection; + configuration.grants ??= Array.from(this.config.grants); + + // If one of the expertise modes is selected, filter out any traits that are not of a valid type + if ( (configuration.mode ?? this.config.mode) !== "default" ) { + const validTraitTypes = filteredKeys(CONFIG.DND5E.traits, c => c.expertise); + configuration.grants = configuration.grants.filter(k => validTraitTypes.some(t => k.startsWith(t))); + configuration.choices.forEach(c => c.pool = c.pool?.filter(k => validTraitTypes.some(t => k.startsWith(t)))); + } + + return configuration; + } +} diff --git a/module/applications/advancement/trait-flow.mjs b/module/applications/advancement/trait-flow.mjs new file mode 100644 index 0000000000..b3053a306a --- /dev/null +++ b/module/applications/advancement/trait-flow.mjs @@ -0,0 +1,136 @@ +import AdvancementFlow from "./advancement-flow.mjs"; +import * as Trait from "../../documents/actor/trait.mjs"; + +/** + * Inline application that presents the player with a trait choices. + */ +export default class TraitFlow extends AdvancementFlow { + + /** + * Array of trait keys currently chosen. + * @type {Set} + */ + chosen; + + /* -------------------------------------------- */ + + /** @inheritdoc */ + static get defaultOptions() { + return foundry.utils.mergeObject(super.defaultOptions, { + template: "systems/dnd5e/templates/advancement/trait-flow.hbs" + }); + } + + /* -------------------------------------------- */ + + /** + * Trait configuration from `CONFIG.TRAITS` for this advancement's trait type. + * @type {TraitConfiguration} + */ + get traitConfig() { + return CONFIG.DND5E.traits[this.advancement.configuration.type]; + } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + async getData() { + this.chosen ??= await this.prepareInitialValue(); + const available = await this.advancement.availableChoices(this.chosen); + return foundry.utils.mergeObject(super.getData(), { + hint: this.advancement.configuration.hint ? this.advancement.configuration.hint : Trait.localizedList({ + grants: this.advancement.configuration.grants, choices: this.advancement.configuration.choices + }), + slots: this.prepareTraitSlots(available), + available + }); + } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + activateListeners(html) { + this.form.querySelectorAll("select").forEach(s => s.addEventListener("change", this._onSelectTrait.bind(this))); + this.form.querySelectorAll(".remove").forEach(s => s.addEventListener("click", this._onRemoveTrait.bind(this))); + } + + /* -------------------------------------------- */ + + /** + * Add a trait to the value when one is selected. + * @param {Event} event Triggering change to a select input. + */ + _onSelectTrait(event) { + const addedTrait = event.target.value; + if ( addedTrait === "" ) return; + this.chosen.add(addedTrait); + this.render(); + } + + /* -------------------------------------------- */ + + /** + * Remove a trait for the value when the remove button is clicked. + * @param {Event} event Triggering click. + */ + _onRemoveTrait(event) { + const tag = event.target.closest(".trait-slot"); + this.chosen.delete(tag.dataset.key); + this.render(); + } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + async _updateObject(event, formData) { + if ( formData.chosen && !Array.isArray(formData.chosen) ) formData.chosen = [formData.chosen]; + super._updateObject(event, formData); + } + + /* -------------------------------------------- */ + /* Data Preparation Methods */ + /* -------------------------------------------- */ + + /** + * When only a single choice is available, automatically select that choice provided value is empty. + * @returns {Set} + */ + async prepareInitialValue() { + const existingChosen = this.retainedData?.chosen ?? this.advancement.value.chosen; + if ( existingChosen?.size ) return new Set(existingChosen); + const { available } = await this.advancement.unfulfilledChoices(); + const chosen = new Set(); + for ( const { choices } of available ) { + const set = choices.asSet(); + if ( set.size === 1 ) chosen.add(set.first()); + } + return chosen; + } + + /* -------------------------------------------- */ + + /** + * Prepare the list of slots to be populated by traits. + * @param {object} available Trait availability returned by `prepareAvailableTraits`. + * @returns {object[]} + */ + prepareTraitSlots(available) { + const config = this.advancement.configuration; + const count = config.choices.reduce((count, c) => count + c.count, config.grants.size); + const chosen = Array.from(this.chosen); + let selectorShown = false; + const slots = []; + for ( let i = 1; i <= count; i++ ) { + const key = chosen.shift(); + if ( selectorShown || (!key && !available) ) continue; + selectorShown = !key; + slots.push({ + key, + label: key ? Trait.keyLabel(key, { type: config.type }) : null, + showDelete: !this.advancement.configuration.grants.has(key), + showSelector: !key + }); + } + return slots; + } +} diff --git a/module/applications/damage-trait-selector.mjs b/module/applications/damage-trait-selector.mjs deleted file mode 100644 index d095b3d76c..0000000000 --- a/module/applications/damage-trait-selector.mjs +++ /dev/null @@ -1,41 +0,0 @@ -import TraitSelector from "./trait-selector.mjs"; - -/** - * @deprecated since dnd5e 2.1, targeted for removal in 2.3 - */ -export default class DamageTraitSelector extends TraitSelector { - - /** @inheritdoc */ - static get defaultOptions() { - return foundry.utils.mergeObject(super.defaultOptions, { - template: "systems/dnd5e/templates/apps/damage-trait-selector.hbs" - }); - } - - /* -------------------------------------------- */ - - /** @override */ - getData() { - const data = super.getData(); - const attr = foundry.utils.getProperty(this.object, this.attribute); - - data.bypasses = Object.entries(this.options.bypasses).reduce((obj, [k, v]) => { - obj[k] = { label: v, chosen: attr ? attr.bypasses.includes(k) : false }; - return obj; - }, {}); - - return data; - } - - /* -------------------------------------------- */ - - /** @override */ - async _updateObject(event, formData) { - const data = foundry.utils.expandObject(formData); - const updateData = this._prepareUpdateData(data.choices); - if ( !updateData ) return; - updateData[`${this.attribute}.bypasses`] = Object.entries(data.bypasses).filter(([, v]) => v).map(([k]) => k); - this.object.update(updateData); - } - -} diff --git a/module/applications/item/ability-use-dialog.mjs b/module/applications/item/ability-use-dialog.mjs index 77caa24bc5..d35986d848 100644 --- a/module/applications/item/ability-use-dialog.mjs +++ b/module/applications/item/ability-use-dialog.mjs @@ -24,48 +24,43 @@ export default class AbilityUseDialog extends Dialog { /** * A constructor function which displays the Spell Cast Dialog app for a given Actor and Item. * Returns a Promise which resolves to the dialog FormData once the workflow has been completed. - * @param {Item5e} item Item being used. - * @returns {Promise} Promise that is resolved when the use dialog is acted upon. + * @param {Item5e} item Item being used. + * @param {ItemUseConfiguration} config The ability use configuration's values. + * @returns {Promise} Promise that is resolved when the use dialog is acted upon. */ - static async create(item) { + static async create(item, config) { if ( !item.isOwned ) throw new Error("You cannot display an ability usage dialog for an unowned item"); + config ??= item._getUsageConfig(); + const slotOptions = config.consumeSpellSlot ? this._createSpellSlotOptions(item.actor, item.system.level) : []; + const resourceOptions = this._createResourceOptions(item); - // Prepare data - const uses = item.system.uses ?? {}; - const resource = item.system.consume ?? {}; - const quantity = item.system.quantity ?? 0; - const recharge = item.system.recharge ?? {}; - const recharges = !!recharge.value; - const sufficientUses = (quantity > 0 && !uses.value) || uses.value > 0; - - // Prepare dialog form data const data = { - item: item, - title: game.i18n.format("DND5E.AbilityUseHint", {type: game.i18n.localize(CONFIG.Item.typeLabels[item.type]), name: item.name}), - note: this._getAbilityUseNote(item, uses, recharge), - consumeSpellSlot: false, - consumeRecharge: recharges, - consumeResource: resource.target && (!item.hasAttack || (resource.type !== "ammo")), - consumeUses: uses.per && (uses.max > 0), - canUse: recharges ? recharge.charged : sufficientUses, - createTemplate: game.user.can("TEMPLATE_CREATE") && item.hasAreaTarget, - errors: [] + item, + ...config, + slotOptions, + resourceOptions, + scaling: item.usageScaling, + note: this._getAbilityUseNote(item, config), + title: game.i18n.format("DND5E.AbilityUseHint", { + type: game.i18n.localize(CONFIG.Item.typeLabels[item.type]), + name: item.name + }) }; - if ( item.type === "spell" ) this._getSpellData(item.actor.system, item.system, data); + this._getAbilityUseWarnings(data); // Render the ability usage template const html = await renderTemplate("systems/dnd5e/templates/apps/ability-use.hbs", data); // Create the Dialog and return data as a Promise - const icon = data.isSpell ? "fa-magic" : "fa-fist-raised"; - const label = game.i18n.localize(`DND5E.AbilityUse${data.isSpell ? "Cast" : "Use"}`); + const isSpell = item.type === "spell"; + const label = game.i18n.localize(`DND5E.AbilityUse${isSpell ? "Cast" : "Use"}`); return new Promise(resolve => { const dlg = new this(item, { title: `${item.name}: ${game.i18n.localize("DND5E.AbilityUseConfig")}`, content: html, buttons: { use: { - icon: ``, + icon: ``, label: label, callback: html => { const fd = new FormDataExtended(html[0].querySelector("form")); @@ -85,34 +80,24 @@ export default class AbilityUseDialog extends Dialog { /* -------------------------------------------- */ /** - * Get dialog data related to limited spell slots. - * @param {object} actorData System data from the actor using the spell. - * @param {object} itemData System data from the spell being used. - * @param {object} data Data for the dialog being presented. - * @returns {object} Modified dialog data. + * Create an array of spell slot options for a select. + * @param {Actor5e} actor The actor with spell slots. + * @param {number} level The minimum level. + * @returns {object[]} Array of spell slot select options. * @private */ - static _getSpellData(actorData, itemData, data) { - - // Determine whether the spell may be up-cast - const lvl = itemData.level; - const consumeSpellSlot = (lvl > 0) && CONFIG.DND5E.spellUpcastModes.includes(itemData.preparation.mode); - - // If can't upcast, return early and don't bother calculating available spell slots - if ( !consumeSpellSlot ) { - return foundry.utils.mergeObject(data, { isSpell: true, consumeSpellSlot }); - } - + static _createSpellSlotOptions(actor, level) { // Determine the levels which are feasible let lmax = 0; - const spellLevels = Array.fromRange(Object.keys(CONFIG.DND5E.spellLevels).length).reduce((arr, i) => { - if ( i < lvl ) return arr; + const options = Array.fromRange(Object.keys(CONFIG.DND5E.spellLevels).length).reduce((arr, i) => { + if ( i < level ) return arr; const label = CONFIG.DND5E.spellLevels[i]; - const l = actorData.spells[`spell${i}`] || {max: 0, override: null}; + const l = actor.system.spells[`spell${i}`] || {max: 0, override: null}; let max = parseInt(l.override || l.max || 0); let slots = Math.clamped(parseInt(l.value || 0), 0, max); if ( max > 0 ) lmax = i; arr.push({ + key: `spell${i}`, level: i, label: i > 0 ? game.i18n.format("DND5E.SpellLevelSlot", {level: label, n: slots}) : label, canCast: max > 0, @@ -121,62 +106,119 @@ export default class AbilityUseDialog extends Dialog { return arr; }, []).filter(sl => sl.level <= lmax); - // If this character has pact slots, present them as an option for casting the spell. - const pact = actorData.spells.pact; - if ( pact.level >= lvl ) { - spellLevels.push({ - level: "pact", + // If this character has pact slots, present them as well. + const pact = actor.system.spells.pact; + if ( pact.level >= level ) { + options.push({ + key: "pact", + level: pact.level, label: `${game.i18n.format("DND5E.SpellLevelPact", {level: pact.level, n: pact.value})}`, canCast: true, hasSlots: pact.value > 0 }); } - const canCast = spellLevels.some(l => l.hasSlots); - if ( !canCast ) data.errors.push(game.i18n.format("DND5E.SpellCastNoSlots", { - level: CONFIG.DND5E.spellLevels[lvl], - name: data.item.name - })); - - // Merge spell casting data - return foundry.utils.mergeObject(data, { isSpell: true, consumeSpellSlot, spellLevels }); + + return options; + } + + /* -------------------------------------------- */ + + /** + * Configure resource consumption options for a select. + * @param {Item5e} item The item. + * @returns {object|null} Object of select options, or null if the item does not or cannot scale with resources. + * @protected + */ + static _createResourceOptions(item) { + const consume = item.system.consume || {}; + if ( (item.type !== "spell") || !consume.scale ) return null; + const spellLevels = Object.keys(CONFIG.DND5E.spellLevels).length - 1; + + const min = consume.amount || 1; + const cap = spellLevels + min - item.system.level; + + let target; + let value; + let label; + switch ( consume.type ) { + case "ammo": + case "material": { + target = item.actor.items.get(consume.target); + label = target?.name; + value = target?.system.quantity; + break; + } + case "attribute": { + target = item.actor; + value = foundry.utils.getProperty(target.system, consume.target); + break; + } + case "charges": { + target = item.actor.items.get(consume.target); + label = target?.name; + value = target?.system.uses.value; + break; + } + case "hitDice": { + target = item.actor; + if ( ["smallest", "largest"].includes(consume.target) ) { + label = game.i18n.localize(`DND5E.ConsumeHitDice${consume.target.capitalize()}Long`); + value = target.system.attributes.hd; + } else { + value = Object.values(item.actor.classes ?? {}).reduce((acc, cls) => { + if ( cls.system.hitDice !== consume.target ) return acc; + const hd = cls.system.levels - cls.system.hitDiceUsed; + return acc + hd; + }, 0); + label = `${game.i18n.localize("DND5E.HitDice")} (${consume.target})`; + } + break; + } + } + + if ( !target ) return null; + + const max = Math.min(cap, value); + return Array.fromRange(max, 1).reduce((acc, n) => { + if ( n >= min ) acc[n] = `[${n}/${value}] ${label ?? consume.target}`; + return acc; + }, {}); } /* -------------------------------------------- */ /** * Get the ability usage note that is displayed. - * @param {object} item Data for the item being used. - * @param {{value: number, max: number, per: string}} uses Object uses and recovery configuration. - * @param {{charged: boolean, value: string}} recharge Object recharge configuration. - * @returns {string} Localized string indicating available uses. + * @param {object} item Data for the item being used. + * @param {ItemUseConfiguration} config The ability use configuration's values. + * @returns {string} The note to display. * @private */ - static _getAbilityUseNote(item, uses, recharge) { + static _getAbilityUseNote(item, config) { + const { quantity, recharge, uses } = item.system; // Zero quantity - const quantity = item.system.quantity; if ( quantity <= 0 ) return game.i18n.localize("DND5E.AbilityUseUnavailableHint"); // Abilities which use Recharge - if ( recharge.value ) { + if ( config.consumeUsage && recharge?.value ) { return game.i18n.format(recharge.charged ? "DND5E.AbilityUseChargedHint" : "DND5E.AbilityUseRechargeHint", { type: game.i18n.localize(CONFIG.Item.typeLabels[item.type]) }); } // Does not use any resource - if ( !uses.per || !uses.max ) return ""; + if ( !uses?.per || !uses?.max ) return ""; // Consumables - if ( item.type === "consumable" ) { + if ( uses.autoDestroy ) { let str = "DND5E.AbilityUseNormalHint"; if ( uses.value > 1 ) str = "DND5E.AbilityUseConsumableChargeHint"; - else if ( item.system.quantity === 1 && uses.autoDestroy ) str = "DND5E.AbilityUseConsumableDestroyHint"; - else if ( item.system.quantity > 1 ) str = "DND5E.AbilityUseConsumableQuantityHint"; + else if ( quantity > 1 ) str = "DND5E.AbilityUseConsumableQuantityHint"; return game.i18n.format(str, { type: game.i18n.localize(`DND5E.Consumable${item.system.consumableType.capitalize()}`), value: uses.value, - quantity: item.system.quantity, + quantity: quantity, max: uses.max, per: CONFIG.DND5E.limitedUsePeriods[uses.per] }); @@ -192,4 +234,80 @@ export default class AbilityUseDialog extends Dialog { }); } } + + /* -------------------------------------------- */ + + /** + * Get the ability usage warnings to display. + * @param {object} data Template data for the AbilityUseDialog. **Will be mutated** + * @private + */ + static _getAbilityUseWarnings(data) { + const warnings = []; + const item = data.item; + const { quantity, level, consume, consumableType } = item.system; + const scale = item.usageScaling; + + if ( (scale === "slot") && data.slotOptions.every(o => !o.hasSlots) ) { + // Warn that the actor has no spell slots of any level with which to use this item. + warnings.push(game.i18n.format("DND5E.SpellCastNoSlotsLeft", { + name: item.name + })); + } else if ( (scale === "slot") && !data.slotOptions.some(o => (o.level === level) && o.hasSlots) ) { + // Warn that the actor has no spell slots of this particular level with which to use this item. + warnings.push(game.i18n.format("DND5E.SpellCastNoSlots", { + level: CONFIG.DND5E.spellLevels[level], + name: item.name + })); + } else if ( (scale === "resource") && foundry.utils.isEmpty(data.resourceOptions) ) { + // Warn that the resource does not have enough left. + warnings.push(game.i18n.format("DND5E.ConsumeWarningNoQuantity", { + name: item.name, + type: CONFIG.DND5E.abilityConsumptionTypes[consume.type] + })); + } + + // Warn that the resource item is missing. + if ( item.hasResource ) { + const isItem = ["ammo", "material", "charges"].includes(consume.type); + if ( isItem && !item.actor.items.get(consume.target) ) { + warnings.push(game.i18n.format("DND5E.ConsumeWarningNoSource", { + name: item.name, type: CONFIG.DND5E.abilityConsumptionTypes[consume.type] + })); + } + } + + // Display warnings that the item or its resource item will be destroyed. + if ( item.type === "consumable" ) { + const type = game.i18n.localize(`DND5E.Consumable${consumableType.capitalize()}`); + if ( this._willLowerQuantity(item) && (quantity === 1) ) { + warnings.push(game.i18n.format("DND5E.AbilityUseConsumableDestroyHint", {type})); + } + + const resource = item.actor.items.get(consume.target); + const qty = consume.amount || 1; + if ( resource && (resource.system.quantity === 1) && this._willLowerQuantity(resource, qty) ) { + warnings.push(game.i18n.format("DND5E.AbilityUseConsumableDestroyResourceHint", {type, name: resource.name})); + } + } + + data.warnings = warnings; + } + + /* -------------------------------------------- */ + + /** + * Get whether an update for an item's limited uses will result in lowering its quantity. + * @param {Item5e} item The item targeted for updates. + * @param {number} [consume] The amount of limited uses to subtract. + * @returns {boolean} + * @private + */ + static _willLowerQuantity(item, consume=1) { + const hasUses = item.hasLimitedUses; + const uses = item.system.uses; + if ( !hasUses || !uses.autoDestroy ) return false; + const value = uses.value - consume; + return value <= 0; + } } diff --git a/module/applications/item/item-sheet.mjs b/module/applications/item/item-sheet.mjs index d64084ef1d..7ddef45354 100644 --- a/module/applications/item/item-sheet.mjs +++ b/module/applications/item/item-sheet.mjs @@ -1,6 +1,10 @@ +import ActorMovementConfig from "../actor/movement-config.mjs"; +import ActorSensesConfig from "../actor/senses-config.mjs"; +import ActorTypeConfig from "../actor/type-config.mjs"; import AdvancementManager from "../advancement/advancement-manager.mjs"; import AdvancementMigrationDialog from "../advancement/advancement-migration-dialog.mjs"; -import TraitSelector from "../trait-selector.mjs"; +import Accordion from "../accordion.mjs"; +import SourceConfig from "../source-config.mjs"; import ActiveEffect5e from "../../documents/active-effect.mjs"; import * as Trait from "../../documents/actor/trait.mjs"; @@ -19,6 +23,8 @@ export default class ItemSheet5e extends ItemSheet { else if ( this.object.type === "subclass" ) { this.options.height = this.position.height = 540; } + + this._accordions = this._createAccordions(); } /* -------------------------------------------- */ @@ -27,20 +33,23 @@ export default class ItemSheet5e extends ItemSheet { static get defaultOptions() { return foundry.utils.mergeObject(super.defaultOptions, { width: 560, - height: 400, + height: 500, classes: ["dnd5e", "sheet", "item"], resizable: true, scrollY: [ ".tab[data-tab=details]", ".tab[data-tab=effects] .items-list", ".tab[data-tab=description] .editor-content", - ".tab[data-tab=advancement] .items-list", + ".tab[data-tab=advancement] .items-list" ], tabs: [{navSelector: ".tabs", contentSelector: ".sheet-body", initial: "description"}], dragDrop: [ {dragSelector: "[data-effect-id]", dropSelector: ".effects-list"}, {dragSelector: ".advancement-item", dropSelector: ".advancement"} - ] + ], + accordions: [{ + headingSelector: ".description-header", contentSelector: ".editor" + }] }); } @@ -54,6 +63,14 @@ export default class ItemSheet5e extends ItemSheet { /* -------------------------------------------- */ + /** + * The description currently being edited. + * @type {string} + */ + editingDescriptionTarget; + + /* -------------------------------------------- */ + /** @inheritdoc */ get template() { return `systems/dnd5e/templates/items/${this.item.type}.hbs`; @@ -63,6 +80,14 @@ export default class ItemSheet5e extends ItemSheet { /* Context Preparation */ /* -------------------------------------------- */ + /** @inheritDoc */ + async _render(force, options) { + if ( !this.editingDescriptionTarget ) this._accordions.forEach(accordion => accordion._saveCollapsedState()); + return super._render(force, options); + } + + /* -------------------------------------------- */ + /** @override */ async getData(options) { const context = await super.getData(options); @@ -92,6 +117,8 @@ export default class ItemSheet5e extends ItemSheet { isHealing: item.system.actionType === "heal", isFlatDC: item.system.save?.scaling === "flat", isLine: ["line", "wall"].includes(item.system.target?.type), + isFormulaRecharge: item.system.uses?.per in CONFIG.DND5E.limitedUseFormulaPeriods, + isCostlessAction: item.system.activation?.type in CONFIG.DND5E.staticAbilityActivationTypes, // Vehicles isCrewed: item.system.activation?.type === "crew", @@ -119,15 +146,30 @@ export default class ItemSheet5e extends ItemSheet { case "spell": context.spellComponents = {...CONFIG.DND5E.spellComponents, ...CONFIG.DND5E.spellTags}; break; + case "loot": + const lootType = CONFIG.DND5E.lootTypes[item.system.type?.value]; + if ( lootType ) { + context.itemType = lootType.label; + context.lootSubtypes = lootType.subtypes; + } + break; } // Enrich HTML description - context.descriptionHTML = await TextEditor.enrichHTML(item.system.description.value, { - secrets: item.isOwner, - async: true, - relativeTo: this.item, - rollData: context.rollData - }); + const enrichmentOptions = { + secrets: item.isOwner, async: true, relativeTo: this.item, rollData: context.rollData + }; + context.enriched = { + description: await TextEditor.enrichHTML(item.system.description.value, enrichmentOptions), + unidentified: await TextEditor.enrichHTML(item.system.description.unidentified, enrichmentOptions), + chat: await TextEditor.enrichHTML(item.system.description.chat, enrichmentOptions) + }; + if ( this.editingDescriptionTarget ) { + context.editingDescriptionTarget = this.editingDescriptionTarget; + context.enriched.editing = await TextEditor.enrichHTML( + foundry.utils.getProperty(context, this.editingDescriptionTarget), enrichmentOptions + ); + } return context; } @@ -261,7 +303,7 @@ export default class ItemSheet5e extends ItemSheet { // Limited-use items const uses = i.system.uses || {}; if ( uses.per && uses.max ) { - const label = uses.per === "charges" + const label = (uses.per in CONFIG.DND5E.limitedUseFormulaPeriods) ? ` (${game.i18n.format("DND5E.AbilityUseChargesLabel", {value: uses.value})})` : ` (${game.i18n.format("DND5E.AbilityUseConsumableLabel", {max: uses.max, per: uses.per})})`; obj[i.id] = i.name + label; @@ -366,7 +408,10 @@ export default class ItemSheet5e extends ItemSheet { menu: ProseMirror.ProseMirrorMenu.build(ProseMirror.defaultSchema, { compact: true, destroyOnSave: true, - onSave: () => this.saveEditor(name, {remove: true}) + onSave: () => { + this.saveEditor(name, {remove: true}); + this.editingDescriptionTarget = null; + } }) }; return super.activateEditor(name, options, initialContent); @@ -391,9 +436,10 @@ export default class ItemSheet5e extends ItemSheet { if ( !maxRoll.isDeterministic ) { uses.max = this.item._source.system.uses.max; this.form.querySelector("input[name='system.uses.max']").value = uses.max; - return ui.notifications.error(game.i18n.format("DND5E.FormulaCannotContainDiceError", { + ui.notifications.error(game.i18n.format("DND5E.FormulaCannotContainDiceError", { name: game.i18n.localize("DND5E.LimitedUses") })); + return null; } } @@ -404,9 +450,10 @@ export default class ItemSheet5e extends ItemSheet { if ( !durationRoll.isDeterministic ) { duration.value = this.item._source.system.duration.value; this.form.querySelector("input[name='system.duration.value']").value = duration.value; - return ui.notifications.error(game.i18n.format("DND5E.FormulaCannotContainDiceError", { + ui.notifications.error(game.i18n.format("DND5E.FormulaCannotContainDiceError", { name: game.i18n.localize("DND5E.Duration") })); + return null; } } @@ -414,7 +461,8 @@ export default class ItemSheet5e extends ItemSheet { if ( formData.system?.identifier && !dnd5e.utils.validators.isValidIdentifier(formData.system.identifier) ) { formData.system.identifier = this.item._source.system.identifier; this.form.querySelector("input[name='system.identifier']").value = formData.system.identifier; - return ui.notifications.error(game.i18n.localize("DND5E.IdentifierError")); + ui.notifications.error("DND5E.IdentifierError", {localize: true}); + return null; } // Return the flattened submission data @@ -426,9 +474,10 @@ export default class ItemSheet5e extends ItemSheet { /** @inheritDoc */ activateListeners(html) { super.activateListeners(html); + if ( !this.editingDescriptionTarget ) this._accordions.forEach(accordion => accordion.bind(html[0])); if ( this.isEditable ) { + html.find(".config-button").click(this._onConfigMenu.bind(this)); html.find(".damage-control").click(this._onDamageControl.bind(this)); - html.find(".trait-selector").click(this._onConfigureTraits.bind(this)); html.find(".effect-control").click(ev => { const unsupported = game.dnd5e.isV10 && this.item.isOwned; if ( unsupported ) return ui.notifications.warn("Managing Active Effects within an Owned Item is not currently supported and will be added in a subsequent update."); @@ -438,6 +487,10 @@ export default class ItemSheet5e extends ItemSheet { const t = event.currentTarget; if ( t.dataset.action ) this._onAdvancementAction(t, t.dataset.action); }); + html.find(".description-edit").click(event => { + this.editingDescriptionTarget = event.currentTarget.dataset.target; + this.render(); + }); } // Advancement context menu @@ -488,6 +541,34 @@ export default class ItemSheet5e extends ItemSheet { ]; } + /* -------------------------------------------- */ + /** + * Handle spawning the configuration applications. + * @param {Event} event The click event which originated the selection. + * @protected + */ + _onConfigMenu(event) { + event.preventDefault(); + event.stopPropagation(); + const button = event.currentTarget; + let app; + switch ( button.dataset.action ) { + case "movement": + app = new ActorMovementConfig(this.item, { keyPath: "system.movement" }); + break; + case "senses": + app = new ActorSensesConfig(this.item, { keyPath: "system.senses" }); + break; + case "source": + app = new SourceConfig(this.item, { keyPath: "system.source" }); + break; + case "type": + app = new ActorTypeConfig(this.item, { keyPath: "system.type" }); + break; + } + app?.render(true); + } + /* -------------------------------------------- */ /** @@ -516,6 +597,15 @@ export default class ItemSheet5e extends ItemSheet { return this.item.update({"system.damage.parts": damage.parts}); } } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + _canDragStart(selector) { + if ( selector === ".advancement-item" ) return true; + return super._canDragStart(selector); + } + /* -------------------------------------------- */ /** @inheritdoc */ @@ -593,6 +683,7 @@ export default class ItemSheet5e extends ItemSheet { * Handle the dropping of an advancement or item with advancements onto the advancements tab. * @param {DragEvent} event The concluding DragEvent which contains drop data. * @param {object} data The data transfer extracted from the event. + * @returns {Promise} */ async _onDropAdvancement(event, data) { let advancements; @@ -636,45 +727,6 @@ export default class ItemSheet5e extends ItemSheet { /* -------------------------------------------- */ - /** - * Handle spawning the TraitSelector application for selection various options. - * @param {Event} event The click event which originated the selection. - * @private - */ - _onConfigureTraits(event) { - event.preventDefault(); - const a = event.currentTarget; - const options = { - name: a.dataset.target, - title: a.parentElement.innerText, - choices: [], - allowCustom: false, - suppressWarning: true - }; - switch (a.dataset.options) { - case "saves": - options.choices = CONFIG.DND5E.abilities; - options.valueKey = null; - options.labelKey = "label"; - break; - case "skills.choices": - options.choices = CONFIG.DND5E.skills; - options.valueKey = null; - options.labelKey = "label"; - break; - case "skills": - const skills = this.item.system.skills; - const choices = skills.choices?.length ? skills.choices : Object.keys(CONFIG.DND5E.skills); - options.choices = Object.fromEntries(Object.entries(CONFIG.DND5E.skills).filter(([s]) => choices.includes(s))); - options.maximum = skills.number; - options.labelKey = "label"; - break; - } - new TraitSelector(this.item, options).render(true); - } - - /* -------------------------------------------- */ - /** * Handle one of the advancement actions from the buttons or context menu. * @param {Element} target Button or context menu entry that triggered this action. @@ -714,4 +766,15 @@ export default class ItemSheet5e extends ItemSheet { if ( this._tabs[0].active === "details" ) this.position.height = "auto"; await super._onSubmit(...args); } + + /* -------------------------------------------- */ + + /** + * Instantiate accordion widgets. + * @returns {Accordion[]} + * @protected + */ + _createAccordions() { + return this.options.accordions.map(config => new Accordion(config)); + } } diff --git a/module/applications/journal/class-sheet.mjs b/module/applications/journal/class-sheet.mjs index f3e91b14b6..86aa229c63 100644 --- a/module/applications/journal/class-sheet.mjs +++ b/module/applications/journal/class-sheet.mjs @@ -1,5 +1,6 @@ import Actor5e from "../../documents/actor/actor.mjs"; import Proficiency from "../../documents/actor/proficiency.mjs"; +import * as Trait from "../../documents/actor/trait.mjs"; import JournalEditor from "./journal-editor.mjs"; /** @@ -80,6 +81,26 @@ export default class JournalClassPageSheet extends JournalPageSheet { }; } + const traits = item.advancement.byType.Trait ?? []; + const makeTrait = type => { + const advancement = traits.find(a => { + const rep = a.representedTraits(); + if ( (rep.size > 1) || (rep.first() !== type) ) return false; + return (a.classRestriction !== "secondary") && (a.level === 1); + }); + if ( !advancement ) return game.i18n.localize("None"); + return advancement.configuration.hint || Trait.localizedList(advancement.configuration); + }; + if ( traits.length ) { + advancement.traits = { + armor: makeTrait("armor"), + weapons: makeTrait("weapon"), + tools: makeTrait("tool"), + saves: makeTrait("saves"), + skills: makeTrait("skills") + }; + } + return advancement; } diff --git a/module/applications/proficiency-selector.mjs b/module/applications/proficiency-selector.mjs deleted file mode 100644 index 578b539caf..0000000000 --- a/module/applications/proficiency-selector.mjs +++ /dev/null @@ -1,110 +0,0 @@ -import TraitSelector from "./trait-selector.mjs"; -import * as Trait from "../documents/actor/trait.mjs"; - -/** - * An application for selecting proficiencies with categories that can contain children. - * @deprecated since dnd5e 2.1, targeted for removal in 2.3 - */ -export default class ProficiencySelector extends TraitSelector { - - /** @inheritdoc */ - static get defaultOptions() { - return foundry.utils.mergeObject(super.defaultOptions, { - title: "Actor Proficiency Selection", - type: "" - }); - } - - /* -------------------------------------------- */ - - /** @inheritdoc */ - async getData() { - const attr = foundry.utils.getProperty(this.object, this.attribute); - const chosen = (this.options.valueKey) ? foundry.utils.getProperty(attr, this.options.valueKey) ?? [] : attr; - - const data = super.getData(); - data.choices = await Trait.choices(this.options.type, chosen); - return data; - } - - /* -------------------------------------------- */ - - /** - * A static helper method to get a list of choices for a proficiency type. - * - * @param {string} type Proficiency type to select, either `armor`, `tool`, or `weapon`. - * @param {string[]} [chosen] Optional list of items to be marked as chosen. - * @returns {Object} Object mapping proficiency ids to choice objects. - * @deprecated since dnd5e 2.1, targeted for removal in 2.3 - */ - static async getChoices(type, chosen=[]) { - foundry.utils.logCompatibilityWarning( - "ProficiencySelector#getChoices has been deprecated in favor of Trait#choices.", - { since: "DnD5e 2.1", until: "DnD5e 2.3" } - ); - return Trait.choices(type, chosen); - } - - /* -------------------------------------------- */ - - /** - * Fetch an item for the provided ID. If the provided ID contains a compendium pack name - * it will be fetched from that pack, otherwise it will be fetched from the compendium defined - * in `DND5E.sourcePacks.ITEMS`. - * - * @param {string} identifier Simple ID or compendium name and ID separated by a dot. - * @param {object} [options] - * @param {boolean} [options.indexOnly] If set to true, only the index data will be fetched (will never return - * Promise). - * @param {boolean} [options.fullItem] If set to true, the full item will be returned as long as `indexOnly` is - * false. - * @returns {Promise|object} Promise for a `Document` if `indexOnly` is false & `fullItem` is true, - * otherwise else a simple object containing the minimal index data. - * @deprecated since dnd5e 2.1, targeted for removal in 2.3 - */ - static getBaseItem(identifier, options) { - foundry.utils.logCompatibilityWarning( - "ProficiencySelector#getBaseItem has been deprecated in favor of Trait#getBaseItem.", - { since: "DnD5e 2.1", until: "DnD5e 2.3" } - ); - return Trait.getBaseItem(identifier, options); - } - - /* -------------------------------------------- */ - - /** @inheritdoc */ - activateListeners(html) { - super.activateListeners(html); - - for ( const checkbox of html[0].querySelectorAll("input[type='checkbox']") ) { - if ( checkbox.checked ) this._onToggleCategory(checkbox); - } - } - - /* -------------------------------------------- */ - - /** @inheritdoc */ - async _onChangeInput(event) { - super._onChangeInput(event); - - if ( event.target.tagName === "INPUT" ) this._onToggleCategory(event.target); - } - - /* -------------------------------------------- */ - - /** - * Enable/disable all children when a category is checked. - * - * @param {HTMLElement} checkbox Checkbox that was changed. - * @private - */ - _onToggleCategory(checkbox) { - const children = checkbox.closest("li")?.querySelector("ol"); - if ( !children ) return; - - for ( const child of children.querySelectorAll("input[type='checkbox']") ) { - child.checked = child.disabled = checkbox.checked; - } - } - -} diff --git a/module/applications/source-config.mjs b/module/applications/source-config.mjs new file mode 100644 index 0000000000..6d8f26a5e2 --- /dev/null +++ b/module/applications/source-config.mjs @@ -0,0 +1,48 @@ +/** + * Application for configuring the source data on actors and items. + */ +export default class SourceConfig extends DocumentSheet { + + /** @inheritdoc */ + static get defaultOptions() { + return foundry.utils.mergeObject(super.defaultOptions, { + classes: ["dnd5e", "source-config", "dialog"], + template: "systems/dnd5e/templates/apps/source-config.hbs", + width: 400, + height: "auto", + sheetConfig: false, + keyPath: "system.details.source" + }); + } + + /* -------------------------------------------- */ + + /** @override */ + get title() { + return `${game.i18n.localize("DND5E.SourceConfig")}: ${this.document.name}`; + } + + /* -------------------------------------------- */ + /* Rendering */ + /* -------------------------------------------- */ + + /** @inheritdoc */ + getData(options) { + const context = super.getData(options); + context.appId = this.id; + context.CONFIG = CONFIG.DND5E; + context.source = foundry.utils.getProperty(this.document, this.options.keyPath); + context.sourceUuid = foundry.utils.getProperty(this.document, "flags.core.sourceId"); + return context; + } + + /* -------------------------------------------- */ + /* Event Handlers */ + /* -------------------------------------------- */ + + /** @override */ + async _updateObject(event, formData) { + const source = foundry.utils.expandObject(formData).source; + return this.document.update({[this.options.keyPath]: source}); + } +} diff --git a/module/applications/trait-selector.mjs b/module/applications/trait-selector.mjs deleted file mode 100644 index e0c9e84ba8..0000000000 --- a/module/applications/trait-selector.mjs +++ /dev/null @@ -1,118 +0,0 @@ -/** - * A specialized form used to select from a checklist of attributes, traits, or properties. - * @deprecated since dnd5e 2.1, targeted for removal in 2.3 - */ -export default class TraitSelector extends DocumentSheet { - constructor(...args) { - super(...args); - - if ( !this.options.suppressWarning ) foundry.utils.logCompatibilityWarning( - `${this.constructor.name} has been deprecated in favor of a more specialized TraitSelector ` - + "available at 'dnd5e.applications.actor.TraitSelector'. Support for the old application will " - + "be removed in a future version.", - { since: "DnD5e 2.1", until: "DnD5e 2.3" } - ); - } - - /* -------------------------------------------- */ - - /** @inheritDoc */ - static get defaultOptions() { - return foundry.utils.mergeObject(super.defaultOptions, { - id: "trait-selector", - classes: ["dnd5e", "trait-selector", "subconfig"], - title: "Actor Trait Selection", - template: "systems/dnd5e/templates/apps/trait-selector.hbs", - width: 320, - height: "auto", - choices: {}, - allowCustom: true, - minimum: 0, - maximum: null, - labelKey: null, - valueKey: "value", - customKey: "custom" - }); - } - - /* -------------------------------------------- */ - - /** @inheritdoc */ - get title() { - return this.options.title || super.title; - } - - /* -------------------------------------------- */ - - /** - * Return a reference to the target attribute - * @type {string} - */ - get attribute() { - return this.options.name; - } - - /* -------------------------------------------- */ - - /** @override */ - getData() { - const attr = foundry.utils.getProperty(this.object, this.attribute); - const o = this.options; - const value = (o.valueKey) ? foundry.utils.getProperty(attr, o.valueKey) ?? [] : attr; - const custom = (o.customKey) ? foundry.utils.getProperty(attr, o.customKey) ?? "" : ""; - - // Populate choices - const choices = Object.entries(o.choices).reduce((obj, e) => { - let [k, v] = e; - const label = o.labelKey ? foundry.utils.getProperty(v, o.labelKey) ?? v : v; - obj[k] = { label, chosen: attr ? value.includes(k) : false }; - return obj; - }, {}); - - // Return data - return { - choices: choices, - custom: custom, - customPath: o.allowCustom ? "custom" : null - }; - } - - /* -------------------------------------------- */ - - /** - * Prepare the update data to include choices in the provided object. - * @param {object} formData Form data to search for choices. - * @returns {object} Updates to apply to target. - */ - _prepareUpdateData(formData) { - const o = this.options; - formData = foundry.utils.expandObject(formData); - - // Obtain choices - const chosen = Object.entries(formData.choices).filter(([, v]) => v).map(([k]) => k); - - // Object including custom data - const updateData = {}; - if ( o.valueKey ) updateData[`${this.attribute}.${o.valueKey}`] = chosen; - else updateData[this.attribute] = chosen; - if ( o.allowCustom ) updateData[`${this.attribute}.${o.customKey}`] = formData.custom; - - // Validate the number chosen - if ( o.minimum && (chosen.length < o.minimum) ) { - return ui.notifications.error(`You must choose at least ${o.minimum} options`); - } - if ( o.maximum && (chosen.length > o.maximum) ) { - return ui.notifications.error(`You may choose no more than ${o.maximum} options`); - } - - return updateData; - } - - /* -------------------------------------------- */ - - /** @override */ - async _updateObject(event, formData) { - const updateData = this._prepareUpdateData(formData); - if ( updateData ) this.object.update(updateData); - } -} diff --git a/module/canvas/ability-template.mjs b/module/canvas/ability-template.mjs index 33f5d24402..0c835d35dc 100644 --- a/module/canvas/ability-template.mjs +++ b/module/canvas/ability-template.mjs @@ -30,15 +30,16 @@ export default class AbilityTemplate extends MeasuredTemplate { /** * A factory method to create an AbilityTemplate instance using provided data from an Item5e instance * @param {Item5e} item The Item object for which to construct the template + * @param {object} [options={}] Options to modify the created template. * @returns {AbilityTemplate|null} The template object, or null if the item does not produce a template */ - static fromItem(item) { + static fromItem(item, options={}) { const target = item.system.target ?? {}; const templateShape = dnd5e.config.areaTargetTypes[target.type]?.template; if ( !templateShape ) return null; // Prepare template data - const templateData = { + const templateData = foundry.utils.mergeObject({ t: templateShape, user: game.user.id, distance: target.value, @@ -46,8 +47,8 @@ export default class AbilityTemplate extends MeasuredTemplate { x: 0, y: 0, fillColor: game.user.color, - flags: { dnd5e: { origin: item.uuid } } - }; + flags: { dnd5e: { origin: item.uuid, spellLevel: item.system.level } } + }, options); // Additional type-specific data switch ( templateShape ) { @@ -55,9 +56,14 @@ export default class AbilityTemplate extends MeasuredTemplate { templateData.angle = CONFIG.MeasuredTemplate.defaults.angle; break; case "rect": // 5e rectangular AoEs are always cubes - templateData.distance = Math.hypot(target.value, target.value); templateData.width = target.value; - templateData.direction = 45; + if ( game.settings.get("dnd5e", "gridAlignedSquareTemplates") ) { + templateData.distance = Math.hypot(target.value, target.value); + templateData.direction = 45; + } else { + // Override as 'ray' to make the template able to be rotated without morphing its shape + templateData.t = "ray"; + } break; case "ray": // 5e rays are most commonly 1 square (5 ft) in width templateData.width = target.width ?? canvas.dimensions.distance; diff --git a/module/config.mjs b/module/config.mjs index c59fcd1692..a6de9d0f92 100644 --- a/module/config.mjs +++ b/module/config.mjs @@ -20,6 +20,7 @@ _______________________________`; * @typedef {object} AbilityConfiguration * @property {string} label Localized label. * @property {string} abbreviation Localized abbreviation. + * @property {string} fullKey Fully written key used as alternate for enrichers. * @property {string} [type] Whether this is a "physical" or "mental" ability. * @property {Object} [defaults] Default values for this ability based on actor type. * If a string is used, the system will attempt to fetch. @@ -34,40 +35,47 @@ DND5E.abilities = { str: { label: "DND5E.AbilityStr", abbreviation: "DND5E.AbilityStrAbbr", - type: "physical" + type: "physical", + fullKey: "strength" }, dex: { label: "DND5E.AbilityDex", abbreviation: "DND5E.AbilityDexAbbr", - type: "physical" + type: "physical", + fullKey: "dexterity" }, con: { label: "DND5E.AbilityCon", abbreviation: "DND5E.AbilityConAbbr", - type: "physical" + type: "physical", + fullKey: "constitution" }, int: { label: "DND5E.AbilityInt", abbreviation: "DND5E.AbilityIntAbbr", type: "mental", + fullKey: "intelligence", defaults: { vehicle: 0 } }, wis: { label: "DND5E.AbilityWis", abbreviation: "DND5E.AbilityWisAbbr", type: "mental", + fullKey: "wisdom", defaults: { vehicle: 0 } }, cha: { label: "DND5E.AbilityCha", abbreviation: "DND5E.AbilityChaAbbr", type: "mental", + fullKey: "charisma", defaults: { vehicle: 0 } }, hon: { label: "DND5E.AbilityHon", abbreviation: "DND5E.AbilityHonAbbr", type: "mental", + fullKey: "honor", defaults: { npc: "cha", vehicle: 0 }, improvement: false }, @@ -75,22 +83,12 @@ DND5E.abilities = { label: "DND5E.AbilitySan", abbreviation: "DND5E.AbilitySanAbbr", type: "mental", + fullKey: "sanity", defaults: { npc: "wis", vehicle: 0 }, improvement: false } }; preLocalize("abilities", { keys: ["label", "abbreviation"] }); -patchConfig("abilities", "label", { since: 2.2, until: 2.4 }); - -Object.defineProperty(DND5E, "abilityAbbreviations", { - get() { - foundry.utils.logCompatibilityWarning( - "The `abilityAbbreviations` configuration object has been merged with `abilities`.", - { since: "DnD5e 2.2", until: "DnD5e 2.4" } - ); - return Object.fromEntries(Object.entries(DND5E.abilities).map(([k, v]) => [k, v.abbreviation])); - } -}); /** * Configure which ability score is used as the default modifier for initiative rolls. @@ -112,6 +110,7 @@ DND5E.hitPointsAbility = "con"; * @typedef {object} SkillConfiguration * @property {string} label Localized label. * @property {string} ability Key for the default ability used by this skill. + * @property {string} fullKey Fully written key used as alternate for enrichers. */ /** @@ -119,24 +118,24 @@ DND5E.hitPointsAbility = "con"; * @enum {SkillConfiguration} */ DND5E.skills = { - acr: { label: "DND5E.SkillAcr", ability: "dex" }, - ani: { label: "DND5E.SkillAni", ability: "wis" }, - arc: { label: "DND5E.SkillArc", ability: "int" }, - ath: { label: "DND5E.SkillAth", ability: "str" }, - dec: { label: "DND5E.SkillDec", ability: "cha" }, - his: { label: "DND5E.SkillHis", ability: "int" }, - ins: { label: "DND5E.SkillIns", ability: "wis" }, - itm: { label: "DND5E.SkillItm", ability: "cha" }, - inv: { label: "DND5E.SkillInv", ability: "int" }, - med: { label: "DND5E.SkillMed", ability: "wis" }, - nat: { label: "DND5E.SkillNat", ability: "int" }, - prc: { label: "DND5E.SkillPrc", ability: "wis" }, - prf: { label: "DND5E.SkillPrf", ability: "cha" }, - per: { label: "DND5E.SkillPer", ability: "cha" }, - rel: { label: "DND5E.SkillRel", ability: "int" }, - slt: { label: "DND5E.SkillSlt", ability: "dex" }, - ste: { label: "DND5E.SkillSte", ability: "dex" }, - sur: { label: "DND5E.SkillSur", ability: "wis" } + acr: { label: "DND5E.SkillAcr", ability: "dex", fullKey: "acrobatics" }, + ani: { label: "DND5E.SkillAni", ability: "wis", fullKey: "animalHandling" }, + arc: { label: "DND5E.SkillArc", ability: "int", fullKey: "arcana" }, + ath: { label: "DND5E.SkillAth", ability: "str", fullKey: "athletics" }, + dec: { label: "DND5E.SkillDec", ability: "cha", fullKey: "deception" }, + his: { label: "DND5E.SkillHis", ability: "int", fullKey: "history" }, + ins: { label: "DND5E.SkillIns", ability: "wis", fullKey: "insight" }, + itm: { label: "DND5E.SkillItm", ability: "cha", fullKey: "intimidation" }, + inv: { label: "DND5E.SkillInv", ability: "int", fullKey: "investigation" }, + med: { label: "DND5E.SkillMed", ability: "wis", fullKey: "medicine" }, + nat: { label: "DND5E.SkillNat", ability: "int", fullKey: "nature" }, + prc: { label: "DND5E.SkillPrc", ability: "wis", fullKey: "perception" }, + prf: { label: "DND5E.SkillPrf", ability: "cha", fullKey: "performance" }, + per: { label: "DND5E.SkillPer", ability: "cha", fullKey: "persuasion" }, + rel: { label: "DND5E.SkillRel", ability: "int", fullKey: "religion" }, + slt: { label: "DND5E.SkillSlt", ability: "dex", fullKey: "sleightOfHand" }, + ste: { label: "DND5E.SkillSte", ability: "dex", fullKey: "stealth" }, + sur: { label: "DND5E.SkillSur", ability: "wis", fullKey: "survival" } }; preLocalize("skills", { key: "label", sort: true }); @@ -390,18 +389,27 @@ preLocalize("timePeriods"); /* -------------------------------------------- */ +/** + * Ways in which to activate an item that cannot be labeled with a cost. + * @enum {string} + */ +DND5E.staticAbilityActivationTypes = { + none: "DND5E.NoneActionLabel", + special: DND5E.timePeriods.spec +}; + /** * Various ways in which an item or ability can be activated. * @enum {string} */ DND5E.abilityActivationTypes = { + ...DND5E.staticAbilityActivationTypes, action: "DND5E.Action", bonus: "DND5E.BonusAction", reaction: "DND5E.Reaction", minute: DND5E.timePeriods.minute, hour: DND5E.timePeriods.hour, day: DND5E.timePeriods.day, - special: DND5E.timePeriods.spec, legendary: "DND5E.LegendaryActionLabel", mythic: "DND5E.MythicActionLabel", lair: "DND5E.LairActionLabel", @@ -538,6 +546,18 @@ preLocalize("itemRarity"); /* -------------------------------------------- */ +/** + * The limited use periods that support a recovery formula. + * @enum {string} + */ +DND5E.limitedUseFormulaPeriods = { + charges: "DND5E.Charges", + dawn: "DND5E.Dawn", + dusk: "DND5E.Dusk" +}; + +/* -------------------------------------------- */ + /** * Enumerate the lengths of time over which an item can have limited use ability. * @enum {string} @@ -546,7 +566,7 @@ DND5E.limitedUsePeriods = { sr: "DND5E.ShortRest", lr: "DND5E.LongRest", day: "DND5E.Day", - charges: "DND5E.Charges" + ...DND5E.limitedUseFormulaPeriods }; preLocalize("limitedUsePeriods"); @@ -842,6 +862,44 @@ preLocalize("featureTypes.class.subtypes", { sort: true }); /* -------------------------------------------- */ +/** + * Configuration data for an item with the "loot" type. + * + * @typedef {object} LootTypeConfiguration + * @property {string} label Localized label for this type. + */ + +/** + * Types of "loot" items. + * @enum {LootTypeConfiguration} + */ +DND5E.lootTypes = { + art: { + label: "DND5E.Loot.Art" + }, + gear: { + label: "DND5E.Loot.Gear" + }, + gem: { + label: "DND5E.Loot.Gem" + }, + junk: { + label: "DND5E.Loot.Junk" + }, + material: { + label: "DND5E.Loot.Material" + }, + resource: { + label: "DND5E.Loot.Resource" + }, + treasure: { + label: "DND5E.Loot.Treasure" + } +}; +preLocalize("lootTypes", { key: "label" }); + +/* -------------------------------------------- */ + /** * @typedef {object} CurrencyConfiguration * @property {string} label Localized label for the currency. @@ -1207,7 +1265,7 @@ preLocalize("spellPreparationModes"); /** * Subset of `DND5E.spellPreparationModes` that consume spell slots. - * @type {boolean[]} + * @type {string[]} */ DND5E.spellUpcastModes = ["always", "pact", "prepared"]; @@ -1625,38 +1683,62 @@ DND5E.conditionTypes = { }; preLocalize("conditionTypes", { sort: true }); +/* -------------------------------------------- */ +/* Languages */ +/* -------------------------------------------- */ + /** * Languages a character can learn. * @enum {string} */ DND5E.languages = { - common: "DND5E.LanguagesCommon", - aarakocra: "DND5E.LanguagesAarakocra", - abyssal: "DND5E.LanguagesAbyssal", - aquan: "DND5E.LanguagesAquan", - auran: "DND5E.LanguagesAuran", - celestial: "DND5E.LanguagesCelestial", - deep: "DND5E.LanguagesDeepSpeech", - draconic: "DND5E.LanguagesDraconic", - druidic: "DND5E.LanguagesDruidic", - dwarvish: "DND5E.LanguagesDwarvish", - elvish: "DND5E.LanguagesElvish", - giant: "DND5E.LanguagesGiant", - gith: "DND5E.LanguagesGith", - gnomish: "DND5E.LanguagesGnomish", - goblin: "DND5E.LanguagesGoblin", - gnoll: "DND5E.LanguagesGnoll", - halfling: "DND5E.LanguagesHalfling", - ignan: "DND5E.LanguagesIgnan", - infernal: "DND5E.LanguagesInfernal", - orc: "DND5E.LanguagesOrc", - primordial: "DND5E.LanguagesPrimordial", - sylvan: "DND5E.LanguagesSylvan", - terran: "DND5E.LanguagesTerran", + standard: { + label: "DND5E.LanguagesStandard", + children: { + common: "DND5E.LanguagesCommon", + dwarvish: "DND5E.LanguagesDwarvish", + elvish: "DND5E.LanguagesElvish", + giant: "DND5E.LanguagesGiant", + gnomish: "DND5E.LanguagesGnomish", + goblin: "DND5E.LanguagesGoblin", + halfling: "DND5E.LanguagesHalfling", + orc: "DND5E.LanguagesOrc" + } + }, + exotic: { + label: "DND5E.LanguagesExotic", + children: { + aarakocra: "DND5E.LanguagesAarakocra", + abyssal: "DND5E.LanguagesAbyssal", + celestial: "DND5E.LanguagesCelestial", + deep: "DND5E.LanguagesDeepSpeech", + draconic: "DND5E.LanguagesDraconic", + gith: "DND5E.LanguagesGith", + gnoll: "DND5E.LanguagesGnoll", + infernal: "DND5E.LanguagesInfernal", + primordial: { + label: "DND5E.LanguagesPrimordial", + children: { + aquan: "DND5E.LanguagesAquan", + auran: "DND5E.LanguagesAuran", + ignan: "DND5E.LanguagesIgnan", + terran: "DND5E.LanguagesTerran" + } + }, + sylvan: "DND5E.LanguagesSylvan", + undercommon: "DND5E.LanguagesUndercommon" + } + }, cant: "DND5E.LanguagesThievesCant", - undercommon: "DND5E.LanguagesUndercommon" + druidic: "DND5E.LanguagesDruidic" }; -preLocalize("languages", { sort: true }); +preLocalize("languages", { key: "label" }); +preLocalize("languages.standard.children", { sort: true }); +preLocalize("languages.exotic.children", { key: "label", sort: true }); +preLocalize("languages.exotic.children.primordial.children", { sort: true }); +patchConfig("languages", "label", { since: "DnD5e 2.4", until: "DnD5e 2.6" }); + +/* -------------------------------------------- */ /** * Maximum allowed character level. @@ -1706,17 +1788,22 @@ DND5E.CR_EXP_LEVELS = [ * Trait configuration information. * * @typedef {object} TraitConfiguration - * @property {string} label Localization key for the trait name. - * @property {string} [actorKeyPath] If the trait doesn't directly map to an entry as `traits.[key]`, where is - * this trait's data stored on the actor? - * @property {string} [configKey] If the list of trait options doesn't match the name of the trait, where can - * the options be found within `CONFIG.DND5E`? - * @property {string} [labelKey] If config is an enum of objects, where can the label be found? - * @property {object} [subtypes] Configuration for traits that take some sort of base item. - * @property {string} [subtypes.keyPath] Path to subtype value on base items, should match a category key. - * @property {string[]} [subtypes.ids] Key for base item ID objects within `CONFIG.DND5E`. - * @property {object} [children] Mapping of category key to an object defining its children. - * @property {boolean} [sortCategories] Whether top-level categories should be sorted. + * @property {object} labels + * @property {string} labels.title Localization key for the trait name. + * @property {string} labels.localization Prefix for a localization key that can be used to generate various + * plural variants of the trait type. + * @property {string} icon Path to the icon used to represent this trait. + * @property {string} [actorKeyPath] If the trait doesn't directly map to an entry as `traits.[key]`, where is + * this trait's data stored on the actor? + * @property {string} [configKey] If the list of trait options doesn't match the name of the trait, where can + * the options be found within `CONFIG.DND5E`? + * @property {string} [labelKeyPath] If config is an enum of objects, where can the label be found? + * @property {object} [subtypes] Configuration for traits that take some sort of base item. + * @property {string} [subtypes.keyPath] Path to subtype value on base items, should match a category key. + * @property {string[]} [subtypes.ids] Key for base item ID objects within `CONFIG.DND5E`. + * @property {object} [children] Mapping of category key to an object defining its children. + * @property {boolean} [sortCategories] Whether top-level categories should be sorted. + * @property {boolean} [expertise] Can an actor receive expertise in this trait? */ /** @@ -1725,55 +1812,125 @@ DND5E.CR_EXP_LEVELS = [ */ DND5E.traits = { saves: { - label: "DND5E.ClassSaves", + labels: { + title: "DND5E.ClassSaves", + localization: "DND5E.TraitSavesPlural" + }, + icon: "systems/dnd5e/icons/svg/trait-saves.svg", + actorKeyPath: "system.abilities", configKey: "abilities", - labelKey: "label" + labelKeyPath: "label" }, skills: { - label: "DND5E.TraitSkillProf", - labelKey: "label" + labels: { + title: "DND5E.Skills", + localization: "DND5E.TraitSkillsPlural" + }, + icon: "systems/dnd5e/icons/svg/trait-skills.svg", + actorKeyPath: "system.skills", + labelKeyPath: "label", + expertise: true }, languages: { - label: "DND5E.Languages" + labels: { + title: "DND5E.Languages", + localization: "DND5E.TraitLanguagesPlural" + }, + icon: "systems/dnd5e/icons/svg/trait-languages.svg" + }, + armor: { + labels: { + title: "DND5E.TraitArmorProf", + localization: "DND5E.TraitArmorPlural" + }, + icon: "systems/dnd5e/icons/svg/trait-armor-proficiencies.svg", + actorKeyPath: "system.traits.armorProf", + configKey: "armorProficiencies", + subtypes: { keyPath: "armor.type", ids: ["armorIds", "shieldIds"] } + }, + weapon: { + labels: { + title: "DND5E.TraitWeaponProf", + localization: "DND5E.TraitWeaponPlural" + }, + icon: "systems/dnd5e/icons/svg/trait-weapon-proficiencies.svg", + actorKeyPath: "system.traits.weaponProf", + configKey: "weaponProficiencies", + subtypes: { keyPath: "weaponType", ids: ["weaponIds"] } + }, + tool: { + labels: { + title: "DND5E.TraitToolProf", + localization: "DND5E.TraitToolPlural" + }, + icon: "systems/dnd5e/icons/svg/trait-tool-proficiencies.svg", + actorKeyPath: "system.tools", + configKey: "toolProficiencies", + subtypes: { keyPath: "toolType", ids: ["toolIds"] }, + children: { vehicle: "vehicleTypes" }, + sortCategories: true, + expertise: true }, di: { - label: "DND5E.DamImm", + labels: { + title: "DND5E.DamImm", + localization: "DND5E.TraitDIPlural" + }, + icon: "systems/dnd5e/icons/svg/trait-damage-immunities.svg", configKey: "damageTypes" }, dr: { - label: "DND5E.DamRes", + labels: { + title: "DND5E.DamRes", + localization: "DND5E.TraitDRPlural" + }, + icon: "systems/dnd5e/icons/svg/trait-damage-resistances.svg", configKey: "damageTypes" }, dv: { - label: "DND5E.DamVuln", + labels: { + title: "DND5E.DamVuln", + localization: "DND5E.TraitDVPlural" + }, + icon: "systems/dnd5e/icons/svg/trait-damage-vulnerabilities.svg", configKey: "damageTypes" }, ci: { - label: "DND5E.ConImm", + labels: { + title: "DND5E.ConImm", + localization: "DND5E.TraitCIPlural" + }, + icon: "systems/dnd5e/icons/svg/trait-condition-immunities.svg", configKey: "conditionTypes" + } +}; +preLocalize("traits", { key: "labels.title" }); + +/* -------------------------------------------- */ + +/** + * Modes used within a trait advancement. + * @enum {object} + */ +DND5E.traitModes = { + default: { + label: "DND5E.AdvancementTraitModeDefaultLabel", + hint: "DND5E.AdvancementTraitModeDefaultHint" }, - weapon: { - label: "DND5E.TraitWeaponProf", - actorKeyPath: "traits.weaponProf", - configKey: "weaponProficiencies", - subtypes: { keyPath: "weaponType", ids: ["weaponIds"] } + expertise: { + label: "DND5E.AdvancementTraitModeExpertiseLabel", + hint: "DND5E.AdvancementTraitModeExpertiseHint" }, - armor: { - label: "DND5E.TraitArmorProf", - actorKeyPath: "traits.armorProf", - configKey: "armorProficiencies", - subtypes: { keyPath: "armor.type", ids: ["armorIds", "shieldIds"] } + forcedExpertise: { + label: "DND5E.AdvancementTraitModeForceLabel", + hint: "DND5E.AdvancementTraitModeForceHint" }, - tool: { - label: "DND5E.TraitToolProf", - actorKeyPath: "tools", - configKey: "toolProficiencies", - subtypes: { keyPath: "toolType", ids: ["toolIds"] }, - children: { vehicle: "vehicleTypes" }, - sortCategories: true + upgrade: { + label: "DND5E.AdvancementTraitModeUpgradeLabel", + hint: "DND5E.AdvancementTraitModeUpgradeHint" } }; -preLocalize("traits", { key: "label" }); +preLocalize("traitModes", { keys: ["label", "hint"] }); /* -------------------------------------------- */ @@ -1892,9 +2049,45 @@ DND5E.advancementTypes = { HitPoints: advancement.HitPointsAdvancement, ItemChoice: advancement.ItemChoiceAdvancement, ItemGrant: advancement.ItemGrantAdvancement, - ScaleValue: advancement.ScaleValueAdvancement + ScaleValue: advancement.ScaleValueAdvancement, + Size: advancement.SizeAdvancement, + Trait: advancement.TraitAdvancement }; +/* -------------------------------------------- */ +/* Sources */ +/* -------------------------------------------- */ + +/** + * List of books available as sources. + * @enum {string} + */ +DND5E.sourceBooks = { + "SRD 5.1": "SOURCE.BOOK.SRD" +}; +preLocalize("sourceBooks", { sort: true }); + +/* -------------------------------------------- */ +/* Enrichment */ +/* -------------------------------------------- */ + +let _enrichmentLookup; +Object.defineProperty(DND5E, "enrichmentLookup", { + get() { + if ( !_enrichmentLookup ) { + _enrichmentLookup = { + abilities: foundry.utils.deepClone(DND5E.abilities), + skills: foundry.utils.deepClone(DND5E.skills), + tools: foundry.utils.deepClone(DND5E.toolIds) + }; + Object.values(DND5E.abilities).forEach(a => _enrichmentLookup.abilities[a.fullKey] = a); + Object.values(DND5E.skills).forEach(s => _enrichmentLookup.skills[s.fullKey] = s); + } + return _enrichmentLookup; + }, + enumerable: true +}); + /* -------------------------------------------- */ /** @@ -1913,7 +2106,10 @@ function patchConfig(key, fallbackKey, options) { return this[fallbackKey]; } - Object.values(DND5E[key]).forEach(o => o.toString = toString); + Object.values(DND5E[key]).forEach(o => { + if ( foundry.utils.getType(o) !== "Object" ) return; + o.toString = toString; + }); } /* -------------------------------------------- */ diff --git a/module/data/abstract.mjs b/module/data/abstract.mjs index d691540fbe..3870101072 100644 --- a/module/data/abstract.mjs +++ b/module/data/abstract.mjs @@ -37,12 +37,48 @@ export default class SystemDataModel extends foundry.abstract.DataModel { /* -------------------------------------------- */ + /** + * The field names of the base templates used for construction. + * @type {Set} + * @private + */ + static get _schemaTemplateFields() { + const fieldNames = Object.freeze(new Set(this._schemaTemplates.map(t => t.schema.keys()).flat())); + Object.defineProperty(this, "_schemaTemplateFields", { + value: fieldNames, + writable: false, + configurable: false + }); + return fieldNames; + } + + /* -------------------------------------------- */ + /** * A list of properties that should not be mixed-in to the final type. * @type {Set} * @private */ - static _immiscible = new Set(["length", "mixed", "name", "prototype", "migrateData", "defineSchema"]); + static _immiscible = new Set(["length", "mixed", "name", "prototype", "cleanData", "_cleanData", + "_initializationOrder", "validateJoint", "_validateJoint", "migrateData", "_migrateData", + "shimData", "_shimData", "defineSchema"]); + + /* -------------------------------------------- */ + + /** + * @typedef {object} SystemDataModelMetadata + * @property {boolean} [singleton] - Should only a single item of this type be allowed on an actor? + */ + + /** + * Metadata that describes this DataModel. + * @type {SystemDataModelMetadata} + */ + static metadata = {}; + + get metadata() { + return this.constructor.metadata; + } /* -------------------------------------------- */ @@ -71,16 +107,51 @@ export default class SystemDataModel extends foundry.abstract.DataModel { return a; } + + /* -------------------------------------------- */ + /* Data Cleaning */ /* -------------------------------------------- */ /** @inheritdoc */ - static migrateData(source) { + static cleanData(source, options) { + this._cleanData(source, options); + return super.cleanData(source, options); + } + + /* -------------------------------------------- */ + + /** + * Performs cleaning without calling DataModel.cleanData. + * @param {object} [source] The source data + * @param {object} [options={}] Additional options (see DataModel.cleanData) + * @protected + */ + static _cleanData(source, options) { for ( const template of this._schemaTemplates ) { - template.migrateData?.(source); + template._cleanData(source, options); + } + } + + /* -------------------------------------------- */ + /* Data Initialization */ + /* -------------------------------------------- */ + + /** @inheritdoc */ + static *_initializationOrder() { + for ( const template of this._schemaTemplates ) { + for ( const entry of template._initializationOrder() ) { + entry[1] = this.schema.get(entry[0]); + yield entry; + } + } + for ( const entry of this.schema.entries() ) { + if ( this._schemaTemplateFields.has(entry[0]) ) continue; + yield entry; } - return super.migrateData(source); } + /* -------------------------------------------- */ + /* Data Validation */ /* -------------------------------------------- */ /** @inheritdoc */ @@ -89,6 +160,100 @@ export default class SystemDataModel extends foundry.abstract.DataModel { return super.validate(options); } + /* -------------------------------------------- */ + /* Socket Event Handlers */ + /* -------------------------------------------- */ + + /** + * Pre-creation logic for this system data. + * @param {object} data The initial data object provided to the document creation request. + * @param {object} options Additional options which modify the creation request. + * @param {User} user The User requesting the document creation. + * @returns {Promise} A return value of false indicates the creation operation should be cancelled. + * @see {Document#_preCreate} + * @protected + */ + async _preCreate(data, options, user) { + const actor = this.parent.actor; + if ( (actor?.type !== "character") || !this.metadata?.singleton ) return; + if ( actor.itemTypes[data.type]?.length ) { + ui.notifications.error(game.i18n.format("DND5E.ActorWarningSingleton", { + itemType: game.i18n.localize(CONFIG.Item.typeLabels[data.type]), + actorType: game.i18n.localize(CONFIG.Actor.typeLabels[actor.type]) + })); + return false; + } + } + + /* -------------------------------------------- */ + /* Mixin */ + /* -------------------------------------------- */ + + /** @inheritdoc */ + static validateJoint(data) { + this._validateJoint(data); + return super.validateJoint(data); + } + + /* -------------------------------------------- */ + + /** + * Performs joint validation without calling DataModel.validateJoint. + * @param {object} data The source data + * @throws An error if a validation failure is detected + * @protected + */ + static _validateJoint(data) { + for ( const template of this._schemaTemplates ) { + template._validateJoint(data); + } + } + + /* -------------------------------------------- */ + /* Data Migration */ + /* -------------------------------------------- */ + + /** @inheritdoc */ + static migrateData(source) { + this._migrateData(source); + return super.migrateData(source); + } + + /* -------------------------------------------- */ + + /** + * Performs migration without calling DataModel.migrateData. + * @param {object} source The source data + * @protected + */ + static _migrateData(source) { + for ( const template of this._schemaTemplates ) { + template._migrateData(source); + } + } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + static shimData(data, options) { + this._shimData(data, options); + return super.shimData(data, options); + } + + /* -------------------------------------------- */ + + /** + * Performs shimming without calling DataModel.shimData. + * @param {object} data The source data + * @param {object} [options] Additional options (see DataModel.shimData) + * @protected + */ + static _shimData(data, options) { + for ( const template of this._schemaTemplates ) { + template._shimData(data, options); + } + } + /* -------------------------------------------- */ /** @@ -97,6 +262,12 @@ export default class SystemDataModel extends foundry.abstract.DataModel { * @returns {typeof SystemDataModel} Final prepared type. */ static mixin(...templates) { + for ( const template of templates ) { + if ( !(template.prototype instanceof SystemDataModel) ) { + throw new Error(`${template.name} is not a subclass of SystemDataModel`); + } + } + const Base = class extends this {}; Object.defineProperty(Base, "_schemaTemplates", { value: Object.seal([...this._schemaTemplates, ...templates]), diff --git a/module/data/actor/character.mjs b/module/data/actor/character.mjs index 78bcbdb678..f793acb194 100644 --- a/module/data/actor/character.mjs +++ b/module/data/actor/character.mjs @@ -1,4 +1,5 @@ -import { FormulaField } from "../fields.mjs"; +import { FormulaField, LocalDocumentField } from "../fields.mjs"; +import CreatureTypeField from "../shared/creature-type-field.mjs"; import AttributesFields from "./templates/attributes.mjs"; import CreatureTemplate from "./templates/creature.mjs"; import DetailsFields from "./templates/details.mjs"; @@ -26,7 +27,7 @@ import TraitsFields from "./templates/traits.mjs"; * @property {number} attributes.exhaustion Number of levels of exhaustion. * @property {number} attributes.inspiration Does this character have inspiration? * @property {object} details - * @property {string} details.background Name of character's background. + * @property {Item5e|string} details.background Character's background item or name. * @property {string} details.originalClass ID of first class taken by character. * @property {XPData} details.xp Experience points gained. * @property {number} details.xp.value Total experience points earned. @@ -91,7 +92,9 @@ export default class CharacterData extends CreatureTemplate { details: new foundry.data.fields.SchemaField({ ...DetailsFields.common, ...DetailsFields.creature, - background: new foundry.data.fields.StringField({required: true, label: "DND5E.Background"}), + background: new LocalDocumentField(foundry.documents.BaseItem, { + required: true, fallback: true, label: "DND5E.Background" + }), originalClass: new foundry.data.fields.StringField({required: true, label: "DND5E.ClassOriginal"}), xp: new foundry.data.fields.SchemaField({ value: new foundry.data.fields.NumberField({ @@ -118,13 +121,44 @@ export default class CharacterData extends CreatureTemplate { }); } + /* -------------------------------------------- */ + /* Data Migration */ /* -------------------------------------------- */ /** @inheritdoc */ - static migrateData(source) { - super.migrateData(source); + static _migrateData(source) { + super._migrateData(source); AttributesFields._migrateInitiative(source.attributes); } + + /* -------------------------------------------- */ + /* Data Preparation */ + /* -------------------------------------------- */ + + /** + * Prepare movement & senses values derived from race item. + */ + prepareEmbeddedData() { + const raceData = this.details.race?.system; + if ( !raceData ) { + this.details.type = new CreatureTypeField({ swarm: false }).initialize({ value: "humanoid" }, this); + return; + } + + for ( const key of Object.keys(CONFIG.DND5E.movementTypes) ) { + if ( raceData.movement[key] ) this.attributes.movement[key] ??= raceData.movement[key]; + } + if ( raceData.movement.hover ) this.attributes.movement.hover = true; + this.attributes.movement.units ??= raceData.movement.units; + + for ( const key of Object.keys(CONFIG.DND5E.senses) ) { + if ( raceData.senses[key] ) this.attributes.senses[key] ??= raceData.senses[key]; + } + this.attributes.senses.special = [this.attributes.senses.special, raceData.senses.special].filterJoin(";"); + this.attributes.senses.units ??= raceData.senses.units; + + this.details.type = raceData.type; + } } /* -------------------------------------------- */ diff --git a/module/data/actor/group.mjs b/module/data/actor/group.mjs index 61e6a8d223..b34a61c977 100644 --- a/module/data/actor/group.mjs +++ b/module/data/actor/group.mjs @@ -56,11 +56,8 @@ export default class GroupActor extends SystemDataModel.mixin(CurrencyTemplate) /* Data Preparation */ /* -------------------------------------------- */ - /** - * Prepare base data for group actors. - * @internal - */ - _prepareBaseData() { + /** @inheritdoc */ + prepareBaseData() { this.members.clear(); for ( const id of this._source.members ) { const a = game.actors.get(id); @@ -74,14 +71,6 @@ export default class GroupActor extends SystemDataModel.mixin(CurrencyTemplate) } } - /** - * Prepare derived data for group actors. - * @internal - */ - _prepareDerivedData() { - // No preparation needed at this time - } - /* -------------------------------------------- */ /* Methods */ /* -------------------------------------------- */ diff --git a/module/data/actor/npc.mjs b/module/data/actor/npc.mjs index 439060865d..f05fe58ad4 100644 --- a/module/data/actor/npc.mjs +++ b/module/data/actor/npc.mjs @@ -1,4 +1,6 @@ import { FormulaField } from "../fields.mjs"; +import CreatureTypeField from "../shared/creature-type-field.mjs"; +import SourceField from "../shared/source-field.mjs"; import AttributesFields from "./templates/attributes.mjs"; import CreatureTemplate from "./templates/creature.mjs"; import DetailsFields from "./templates/details.mjs"; @@ -27,7 +29,7 @@ import TraitsFields from "./templates/traits.mjs"; * @property {string} details.environment Common environments in which this NPC is found. * @property {number} details.cr NPC's challenge rating. * @property {number} details.spellLevel Spellcasting level of this NPC. - * @property {string} details.source What book or adventure is this NPC from? + * @property {SourceField} details.source Adventure or sourcebook where this NPC originated. * @property {object} resources * @property {object} resources.legact NPC's legendary actions. * @property {number} resources.legact.value Currently available legendary actions. @@ -72,12 +74,7 @@ export default class NPCData extends CreatureTemplate { details: new foundry.data.fields.SchemaField({ ...DetailsFields.common, ...DetailsFields.creature, - type: new foundry.data.fields.SchemaField({ - value: new foundry.data.fields.StringField({required: true, blank: true, label: "DND5E.CreatureType"}), - subtype: new foundry.data.fields.StringField({required: true, label: "DND5E.CreatureTypeSelectorSubtype"}), - swarm: new foundry.data.fields.StringField({required: true, blank: true, label: "DND5E.CreatureSwarmSize"}), - custom: new foundry.data.fields.StringField({required: true, label: "DND5E.CreatureTypeSelectorCustom"}) - }, {label: "DND5E.CreatureType"}), + type: new CreatureTypeField(), environment: new foundry.data.fields.StringField({required: true, label: "DND5E.Environment"}), cr: new foundry.data.fields.NumberField({ required: true, nullable: false, min: 0, initial: 1, label: "DND5E.ChallengeRating" @@ -85,7 +82,7 @@ export default class NPCData extends CreatureTemplate { spellLevel: new foundry.data.fields.NumberField({ required: true, nullable: false, integer: true, min: 0, initial: 0, label: "DND5E.SpellcasterLevel" }), - source: new foundry.data.fields.StringField({required: true, label: "DND5E.Source"}) + source: new SourceField() }, {label: "DND5E.Details"}), resources: new foundry.data.fields.SchemaField({ legact: new foundry.data.fields.SchemaField({ @@ -121,14 +118,27 @@ export default class NPCData extends CreatureTemplate { /* -------------------------------------------- */ /** @inheritdoc */ - static migrateData(source) { - super.migrateData(source); + static _migrateData(source) { + super._migrateData(source); + NPCData.#migrateSource(source); NPCData.#migrateTypeData(source); AttributesFields._migrateInitiative(source.attributes); } /* -------------------------------------------- */ + /** + * Convert source string into custom object. + * @param {object} source The candidate source data from which the model will be constructed. + */ + static #migrateSource(source) { + if ( source.details?.source && (foundry.utils.getType(source.details.source) !== "Object") ) { + source.details.source = { custom: source.details.source }; + } + } + + /* -------------------------------------------- */ + /** * Migrate the actor type string to type object. * @param {object} source The candidate source data from which the model will be constructed. diff --git a/module/data/actor/templates/attributes.mjs b/module/data/actor/templates/attributes.mjs index 12f078cd60..06e64372b0 100644 --- a/module/data/actor/templates/attributes.mjs +++ b/module/data/actor/templates/attributes.mjs @@ -1,4 +1,6 @@ import { FormulaField } from "../../fields.mjs"; +import MovementField from "../../shared/movement-field.mjs"; +import SensesField from "../../shared/senses-field.mjs"; /** * Shared contents of the attributes schema between various actor types. @@ -26,25 +28,7 @@ export default class AttributesFields { ability: new foundry.data.fields.StringField({label: "DND5E.AbilityModifier"}), bonus: new FormulaField({label: "DND5E.InitiativeBonus"}) }, { label: "DND5E.Initiative" }), - movement: new foundry.data.fields.SchemaField({ - burrow: new foundry.data.fields.NumberField({ - nullable: false, min: 0, step: 0.1, initial: 0, label: "DND5E.MovementBurrow" - }), - climb: new foundry.data.fields.NumberField({ - nullable: false, min: 0, step: 0.1, initial: 0, label: "DND5E.MovementClimb" - }), - fly: new foundry.data.fields.NumberField({ - nullable: false, min: 0, step: 0.1, initial: 0, label: "DND5E.MovementFly" - }), - swim: new foundry.data.fields.NumberField({ - nullable: false, min: 0, step: 0.1, initial: 0, label: "DND5E.MovementSwim" - }), - walk: new foundry.data.fields.NumberField({ - nullable: false, min: 0, step: 0.1, initial: 30, label: "DND5E.MovementWalk" - }), - units: new foundry.data.fields.StringField({initial: "ft", label: "DND5E.MovementUnits"}), - hover: new foundry.data.fields.BooleanField({label: "DND5E.MovementHover"}) - }, {label: "DND5E.Movement"}) + movement: new MovementField() }; } @@ -72,22 +56,7 @@ export default class AttributesFields { required: true, nullable: false, integer: true, min: 0, initial: 3, label: "DND5E.AttunementMax" }) }, {label: "DND5E.Attunement"}), - senses: new foundry.data.fields.SchemaField({ - darkvision: new foundry.data.fields.NumberField({ - required: true, nullable: false, integer: true, min: 0, initial: 0, label: "DND5E.SenseDarkvision" - }), - blindsight: new foundry.data.fields.NumberField({ - required: true, nullable: false, integer: true, min: 0, initial: 0, label: "DND5E.SenseBlindsight" - }), - tremorsense: new foundry.data.fields.NumberField({ - required: true, nullable: false, integer: true, min: 0, initial: 0, label: "DND5E.SenseTremorsense" - }), - truesight: new foundry.data.fields.NumberField({ - required: true, nullable: false, integer: true, min: 0, initial: 0, label: "DND5E.SenseTruesight" - }), - units: new foundry.data.fields.StringField({required: true, initial: "ft", label: "DND5E.SenseUnits"}), - special: new foundry.data.fields.StringField({required: true, label: "DND5E.SenseSpecial"}) - }, {label: "DND5E.Senses"}), + senses: new SensesField(), spellcasting: new foundry.data.fields.StringField({ required: true, blank: true, initial: "int", label: "DND5E.SpellAbility" }) diff --git a/module/data/actor/templates/common.mjs b/module/data/actor/templates/common.mjs index f2abc9bf46..5661f76bcd 100644 --- a/module/data/actor/templates/common.mjs +++ b/module/data/actor/templates/common.mjs @@ -69,8 +69,8 @@ export default class CommonTemplate extends SystemDataModel.mixin(CurrencyTempla /* -------------------------------------------- */ /** @inheritdoc */ - static migrateData(source) { - super.migrateData(source); + static _migrateData(source) { + super._migrateData(source); CommonTemplate.#migrateACData(source); CommonTemplate.#migrateMovementData(source); } diff --git a/module/data/actor/templates/creature.mjs b/module/data/actor/templates/creature.mjs index c8095d9b8f..d1710ad5eb 100644 --- a/module/data/actor/templates/creature.mjs +++ b/module/data/actor/templates/creature.mjs @@ -108,8 +108,8 @@ export default class CreatureTemplate extends CommonTemplate { /* -------------------------------------------- */ /** @inheritdoc */ - static migrateData(source) { - super.migrateData(source); + static _migrateData(source) { + super._migrateData(source); CreatureTemplate.#migrateSensesData(source); CreatureTemplate.#migrateToolData(source); } diff --git a/module/data/actor/templates/details.mjs b/module/data/actor/templates/details.mjs index 4f9982241e..e077201c71 100644 --- a/module/data/actor/templates/details.mjs +++ b/module/data/actor/templates/details.mjs @@ -1,3 +1,5 @@ +import { LocalDocumentField } from "../../fields.mjs"; + /** * Shared contents of the details schema between various actor types. */ @@ -25,13 +27,15 @@ export default class DetailsField { * Fields shared between characters and NPCs. * * @type {object} - * @property {string} alignment Creature's alignment. - * @property {string} race Creature's race. + * @property {string} alignment Creature's alignment. + * @property {Item5e|string} race Creature's race item or name. */ static get creature() { return { alignment: new foundry.data.fields.StringField({required: true, label: "DND5E.Alignment"}), - race: new foundry.data.fields.StringField({required: true, label: "DND5E.Race"}) + race: new LocalDocumentField(foundry.documents.BaseItem, { + required: true, fallback: true, label: "DND5E.Race" + }) }; } } diff --git a/module/data/actor/vehicle.mjs b/module/data/actor/vehicle.mjs index d8b382654d..84187881d4 100644 --- a/module/data/actor/vehicle.mjs +++ b/module/data/actor/vehicle.mjs @@ -1,4 +1,5 @@ import { FormulaField } from "../fields.mjs"; +import SourceField from "../shared/source-field.mjs"; import AttributesFields from "./templates/attributes.mjs"; import CommonTemplate from "./templates/common.mjs"; import DetailsFields from "./templates/details.mjs"; @@ -37,6 +38,8 @@ import TraitsFields from "./templates/traits.mjs"; * @property {object} cargo Details on this vehicle's crew and cargo capacities. * @property {PassengerData[]} cargo.crew Creatures responsible for operating the vehicle. * @property {PassengerData[]} cargo.passengers Creatures just takin' a ride. + * @property {object} details + * @property {SourceField} details.source Adventure or sourcebook where this vehicle originated. */ export default class VehicleData extends CommonTemplate { @@ -99,7 +102,7 @@ export default class VehicleData extends CommonTemplate { }, {label: "DND5E.Attributes"}), details: new foundry.data.fields.SchemaField({ ...DetailsFields.common, - source: new foundry.data.fields.StringField({required: true, label: "DND5E.Source"}) + source: new SourceField() }, {label: "DND5E.Details"}), traits: new foundry.data.fields.SchemaField({ ...TraitsFields.common, @@ -121,9 +124,22 @@ export default class VehicleData extends CommonTemplate { /* -------------------------------------------- */ /** @inheritdoc */ - static migrateData(source) { - super.migrateData(source); + static _migrateData(source) { + super._migrateData(source); AttributesFields._migrateInitiative(source.attributes); + VehicleData.#migrateSource(source); + } + + /* -------------------------------------------- */ + + /** + * Convert source string into custom object. + * @param {object} source The candidate source data from which the model will be constructed. + */ + static #migrateSource(source) { + if ( source.details?.source && (foundry.utils.getType(source.details.source) !== "Object") ) { + source.details.source = { custom: source.details.source }; + } } } diff --git a/module/data/advancement/_module.mjs b/module/data/advancement/_module.mjs index 079d3d5b7c..72b0388fd9 100644 --- a/module/data/advancement/_module.mjs +++ b/module/data/advancement/_module.mjs @@ -5,3 +5,5 @@ export * from "./ability-score-improvement.mjs"; export {default as ItemChoiceConfigurationData} from "./item-choice.mjs"; export {default as ItemGrantConfigurationData} from "./item-grant.mjs"; export * as scaleValue from "./scale-value.mjs"; +export * from "./size.mjs"; +export {TraitConfigurationData, TraitValueData} from "./trait.mjs"; diff --git a/module/data/advancement/ability-score-improvement.mjs b/module/data/advancement/ability-score-improvement.mjs index c6e46e986c..99bcd07d5b 100644 --- a/module/data/advancement/ability-score-improvement.mjs +++ b/module/data/advancement/ability-score-improvement.mjs @@ -11,16 +11,19 @@ export class AbilityScoreImprovementConfigurationData extends foundry.abstract.D /** @inheritdoc */ static defineSchema() { return { - // TODO: This should default to 2 if added to a class, or 0 if added to anything else points: new foundry.data.fields.NumberField({ - integer: true, min: 0, initial: 2, + integer: true, min: 0, initial: 0, label: "DND5E.AdvancementAbilityScoreImprovementPoints", hint: "DND5E.AdvancementAbilityScoreImprovementPointsHint" }), fixed: new MappingField( new foundry.data.fields.NumberField({nullable: false, integer: true, initial: 0}), {label: "DND5E.AdvancementAbilityScoreImprovementFixed"} - ) + ), + cap: new foundry.data.fields.NumberField({ + integer: true, min: 1, initial: 2, label: "DND5E.AdvancementAbilityScoreImprovementCap", + hint: "DND5E.AdvancementAbilityScoreImprovementCapHint" + }) }; } } diff --git a/module/data/advancement/base-advancement.mjs b/module/data/advancement/base-advancement.mjs index d5956a496e..20e808504a 100644 --- a/module/data/advancement/base-advancement.mjs +++ b/module/data/advancement/base-advancement.mjs @@ -25,7 +25,7 @@ export default class BaseAdvancement extends SparseDataModel { configuration: new AdvancementDataField(this, {required: true}), value: new AdvancementDataField(this, {required: true}), level: new foundry.data.fields.NumberField({ - integer: true, initial: this.metadata?.multiLevel ? undefined : 1, min: 0, label: "DND5E.Level" + integer: true, initial: this.metadata?.multiLevel ? undefined : 0, min: 0, label: "DND5E.Level" }), title: new foundry.data.fields.StringField({initial: undefined, label: "DND5E.AdvancementCustomTitle"}), icon: new foundry.data.fields.FilePathField({ diff --git a/module/data/advancement/size.mjs b/module/data/advancement/size.mjs new file mode 100644 index 0000000000..3b789a6075 --- /dev/null +++ b/module/data/advancement/size.mjs @@ -0,0 +1,26 @@ +/** + * Configuration data for the size advancement type. + */ +export class SizeConfigurationData extends foundry.abstract.DataModel { + /** @inheritdoc */ + static defineSchema() { + return { + hint: new foundry.data.fields.StringField({label: "DND5E.AdvancementHint"}), + sizes: new foundry.data.fields.SetField( + new foundry.data.fields.StringField(), {required: false, initial: ["med"], label: "DND5E.Size"} + ) + }; + } +} + +/** + * Value data for the size advancement type. + */ +export class SizeValueData extends foundry.abstract.DataModel { + /** @inheritdoc */ + static defineSchema() { + return { + size: new foundry.data.fields.StringField({required: false, label: "DND5E.Size"}) + }; + } +} diff --git a/module/data/advancement/trait.mjs b/module/data/advancement/trait.mjs new file mode 100644 index 0000000000..cafdd6904e --- /dev/null +++ b/module/data/advancement/trait.mjs @@ -0,0 +1,57 @@ +/** + * Configuration for a specific trait choice. + * + * @typedef {object} TraitChoice + * @property {number} count Number of traits that can be selected. + * @property {string[]} [pool] List of trait or category keys that can be chosen. If no choices are provided, + * any trait of the specified type can be selected. + */ + +/** + * Configuration data for the TraitAdvancement. + * + * @property {string} hint Hint displayed instead of the automatically generated one. + * @property {string} mode Method by which this advancement modifies the actor's traits. + * @property {boolean} allowReplacements Whether all potential choices should be presented to the user if there + * are no more choices available in a more limited set. + * @property {string[]} grants Keys for traits granted automatically. + * @property {TraitChoice[]} choices Choices presented to the user. + */ +export class TraitConfigurationData extends foundry.abstract.DataModel { + static defineSchema() { + return { + hint: new foundry.data.fields.StringField({label: "DND5E.AdvancementHint"}), + mode: new foundry.data.fields.StringField({initial: "default", label: "DND5E.AdvancementTraitMode"}), + allowReplacements: new foundry.data.fields.BooleanField({ + required: true, label: "DND5E.AdvancementTraitAllowReplacements", + hint: "DND5E.AdvancementTraitAllowReplacementsHint" + }), + grants: new foundry.data.fields.SetField(new foundry.data.fields.StringField(), { + required: true, label: "DND5E.AdvancementTraitGrants" + }), + choices: new foundry.data.fields.ArrayField(new foundry.data.fields.SchemaField({ + count: new foundry.data.fields.NumberField({ + required: true, positive: true, integer: true, initial: 1, label: "DND5E.AdvancementTraitCount" + }), + pool: new foundry.data.fields.SetField(new foundry.data.fields.StringField(), { + required: false, initial: undefined, label: "DOCUMENT.Items" + }) + }), {label: "DND5E.AdvancementTraitChoices"}) + }; + } +} + +/** + * Value data for the TraitAdvancement. + * + * @property {Set} chosen Trait keys that have been chosen. + */ +export class TraitValueData extends foundry.abstract.DataModel { + static defineSchema() { + return { + chosen: new foundry.data.fields.SetField(new foundry.data.fields.StringField(), { + required: false, initial: undefined + }) + }; + } +} diff --git a/module/data/fields.mjs b/module/data/fields.mjs index da7246987f..fa1b3028bb 100644 --- a/module/data/fields.mjs +++ b/module/data/fields.mjs @@ -150,6 +150,91 @@ export class IdentifierField extends foundry.data.fields.StringField { /* -------------------------------------------- */ +/** + * @typedef {StringFieldOptions} LocalDocumentFieldOptions + * @property {boolean} [fallback=false] Display the string value if no matching item is found. + */ + +/** + * A mirror of ForeignDocumentField that references a Document embedded within this Document. + * + * @param {typeof Document} model The local DataModel class definition which this field should link to. + * @param {LocalDocumentFieldOptions} options Options which configure the behavior of the field. + */ +export class LocalDocumentField extends foundry.data.fields.DocumentIdField { + constructor(model, options={}) { + if ( !foundry.utils.isSubclass(model, foundry.abstract.DataModel) ) { + throw new Error("A ForeignDocumentField must specify a DataModel subclass as its type"); + } + + super(options); + this.model = model; + } + + /* -------------------------------------------- */ + + /** + * A reference to the model class which is stored in this field. + * @type {typeof Document} + */ + model; + + /* -------------------------------------------- */ + + /** @inheritdoc */ + static get _defaults() { + return foundry.utils.mergeObject(super._defaults, { + nullable: true, + readonly: false, + idOnly: false, + fallback: false + }); + } + + /* -------------------------------------------- */ + + /** @override */ + _cast(value) { + if ( typeof value === "string" ) return value; + if ( (value instanceof this.model) ) return value._id; + throw new Error(`The value provided to a LocalDocumentField must be a ${this.model.name} instance.`); + } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + _validateType(value) { + if ( !this.options.fallback ) super._validateType(value); + } + + /* -------------------------------------------- */ + + /** @override */ + initialize(value, model, options={}) { + if ( this.idOnly ) return this.options.fallback || foundry.data.validators.isValidId(value) ? value : null; + const collection = model.parent?.[this.model.metadata.collection]; + return () => { + const document = collection?.get(value); + if ( !document ) return this.options.fallback ? value : null; + if ( this.options.fallback ) Object.defineProperty(document, "toString", { + value: () => document.name, + configurable: true, + enumerable: false + }); + return document; + }; + } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + toObject(value) { + return value?._id ?? value; + } +} + +/* -------------------------------------------- */ + /** * @callback MappingFieldInitialValueBuilder * @param {string} key The key within the object where this new value is being generated. diff --git a/module/data/item/_module.mjs b/module/data/item/_module.mjs index 1d6f7dbce5..d84473a44e 100644 --- a/module/data/item/_module.mjs +++ b/module/data/item/_module.mjs @@ -5,6 +5,7 @@ import ContainerData from "./container.mjs"; import EquipmentData from "./equipment.mjs"; import FeatData from "./feat.mjs"; import LootData from "./loot.mjs"; +import RaceData from "./race.mjs"; import SpellData from "./spell.mjs"; import SubclassData from "./subclass.mjs"; import ToolData from "./tool.mjs"; @@ -18,6 +19,7 @@ export { EquipmentData, FeatData, LootData, + RaceData, SpellData, SubclassData, ToolData, @@ -38,6 +40,7 @@ export const config = { equipment: EquipmentData, feat: FeatData, loot: LootData, + race: RaceData, spell: SpellData, subclass: SubclassData, tool: ToolData, diff --git a/module/data/item/background.mjs b/module/data/item/background.mjs index ccc7fe62a0..26b1bde916 100644 --- a/module/data/item/background.mjs +++ b/module/data/item/background.mjs @@ -15,4 +15,43 @@ export default class BackgroundData extends SystemDataModel.mixin(ItemDescriptio advancement: new foundry.data.fields.ArrayField(new AdvancementField(), {label: "DND5E.AdvancementTitle"}) }); } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + static metadata = Object.freeze({ + singleton: true + }); + + /* -------------------------------------------- */ + /* Socket Event Handlers */ + /* -------------------------------------------- */ + + /** + * Set the background reference in actor data. + * @param {object} data The initial data object provided to the document creation request + * @param {object} options Additional options which modify the creation request + * @param {string} userId The id of the User requesting the document update + * @see {Document#_onCreate} + * @protected + */ + _onCreate(data, options, userId) { + if ( (game.user.id !== userId) || this.parent.actor?.type !== "character" ) return; + this.parent.actor.update({"system.details.background": this.parent.id}); + } + + /* -------------------------------------------- */ + + /** + * Remove the background reference in actor data. + * @param {object} options Additional options which modify the deletion request + * @param {documents.BaseUser} user The User requesting the document deletion + * @returns {Promise} A return value of false indicates the deletion operation should be cancelled. + * @see {Document#_preDelete} + * @protected + */ + async _preDelete(options, user) { + if ( this.parent.actor?.type !== "character" ) return; + await this.parent.actor.update({"system.details.background": null}); + } } diff --git a/module/data/item/class.mjs b/module/data/item/class.mjs index f9ebdbfa1f..36eedff4d3 100644 --- a/module/data/item/class.mjs +++ b/module/data/item/class.mjs @@ -1,3 +1,4 @@ +import TraitAdvancement from "../../documents/advancement/trait.mjs"; import SystemDataModel from "../abstract.mjs"; import { AdvancementField, IdentifierField } from "../fields.mjs"; import ItemDescriptionTemplate from "./templates/item-description.mjs"; @@ -11,11 +12,6 @@ import ItemDescriptionTemplate from "./templates/item-description.mjs"; * @property {string} hitDice Denomination of hit dice available as defined in `DND5E.hitDieTypes`. * @property {number} hitDiceUsed Number of hit dice consumed. * @property {object[]} advancement Advancement objects for this class. - * @property {string[]} saves Savings throws in which this class grants proficiency. - * @property {object} skills Available class skills and selected skills. - * @property {number} skills.number Number of skills selectable by the player. - * @property {string[]} skills.choices List of skill keys that are valid to be chosen. - * @property {string[]} skills.value List of skill keys the player has chosen. * @property {object} spellcasting Details on class's spellcasting ability. * @property {string} spellcasting.progression Spell progression granted by class as from `DND5E.spellProgression`. * @property {string} spellcasting.ability Ability score to use for spellcasting. @@ -36,18 +32,6 @@ export default class ClassData extends SystemDataModel.mixin(ItemDescriptionTemp required: true, nullable: false, integer: true, initial: 0, min: 0, label: "DND5E.HitDiceUsed" }), advancement: new foundry.data.fields.ArrayField(new AdvancementField(), {label: "DND5E.AdvancementTitle"}), - saves: new foundry.data.fields.ArrayField(new foundry.data.fields.StringField(), {label: "DND5E.ClassSaves"}), - skills: new foundry.data.fields.SchemaField({ - number: new foundry.data.fields.NumberField({ - required: true, nullable: false, integer: true, min: 0, initial: 2, label: "DND5E.ClassSkillsNumber" - }), - choices: new foundry.data.fields.ArrayField( - new foundry.data.fields.StringField(), {label: "DND5E.ClassSkillsEligible"} - ), - value: new foundry.data.fields.ArrayField( - new foundry.data.fields.StringField(), {label: "DND5E.ClassSkillsChosen"} - ) - }), spellcasting: new foundry.data.fields.SchemaField({ progression: new foundry.data.fields.StringField({ required: true, initial: "none", blank: false, label: "DND5E.SpellProgression" @@ -62,8 +46,8 @@ export default class ClassData extends SystemDataModel.mixin(ItemDescriptionTemp /* -------------------------------------------- */ /** @inheritdoc */ - static migrateData(source) { - super.migrateData(source); + static _migrateData(source) { + super._migrateData(source); ClassData.#migrateLevels(source); ClassData.#migrateSpellcastingData(source); } @@ -94,4 +78,56 @@ export default class ClassData extends SystemDataModel.mixin(ItemDescriptionTemp ability: "" }; } + + /* -------------------------------------------- */ + + /** + * Migrate the class's saves & skills into TraitAdvancements. + * @param {object} source The candidate source data from which the model will be constructed. + * @protected + */ + static _migrateTraitAdvancement(source) { + const system = source.system; + if ( !system?.advancement || system.advancement.find(a => a.type === "Trait") ) return; + let needsMigration = false; + + if ( system.saves?.length ) { + const savesData = { + type: "Trait", + level: 1, + configuration: { + grants: system.saves.map(t => `saves:${t}`) + } + }; + savesData.value = { + chosen: savesData.configuration.grants + }; + system.advancement.push(new TraitAdvancement(savesData).toObject()); + delete system.saves; + needsMigration = true; + } + + if ( system.skills?.choices?.length ) { + const skillsData = { + type: "Trait", + level: 1, + configuration: { + choices: [{ + count: system.skills.number ?? 1, + pool: system.skills.choices.map(t => `skills:${t}`) + }] + } + }; + if ( system.skills.value?.length ) { + skillsData.value = { + chosen: system.skills.value.map(t => `skills:${t}`) + }; + } + system.advancement.push(new TraitAdvancement(skillsData).toObject()); + delete system.skills; + needsMigration = true; + } + + if ( needsMigration ) foundry.utils.setProperty(source, "flags.dnd5e.persistSourceMigration", true); + } } diff --git a/module/data/item/consumable.mjs b/module/data/item/consumable.mjs index 4947112ce5..49679dddbd 100644 --- a/module/data/item/consumable.mjs +++ b/module/data/item/consumable.mjs @@ -47,7 +47,8 @@ export default class ConsumableData extends SystemDataModel.mixin( get chatProperties() { return [ CONFIG.DND5E.consumableTypes[this.consumableType], - this.hasLimitedUses ? `${this.uses.value}/${this.uses.max} ${game.i18n.localize("DND5E.Charges")}` : null + this.hasLimitedUses ? `${this.uses.value}/${this.uses.max} ${game.i18n.localize("DND5E.Charges")}` : null, + this.priceLabel ]; } diff --git a/module/data/item/equipment.mjs b/module/data/item/equipment.mjs index 1491c8d31d..557c9bcce4 100644 --- a/module/data/item/equipment.mjs +++ b/module/data/item/equipment.mjs @@ -62,8 +62,8 @@ export default class EquipmentData extends SystemDataModel.mixin( /* -------------------------------------------- */ /** @inheritdoc */ - static migrateData(source) { - super.migrateData(source); + static _migrateData(source) { + super._migrateData(source); EquipmentData.#migrateArmor(source); EquipmentData.#migrateStrength(source); EquipmentData.#migrateProficient(source); diff --git a/module/data/item/feat.mjs b/module/data/item/feat.mjs index 83634d9cb3..f405116f67 100644 --- a/module/data/item/feat.mjs +++ b/module/data/item/feat.mjs @@ -42,8 +42,8 @@ export default class FeatData extends SystemDataModel.mixin( /* -------------------------------------------- */ /** @inheritdoc */ - static migrateData(source) { - super.migrateData(source); + static _migrateData(source) { + super._migrateData(source); FeatData.#migrateType(source); FeatData.#migrateRecharge(source); } @@ -89,7 +89,7 @@ export default class FeatData extends SystemDataModel.mixin( /** @inheritdoc */ get hasLimitedUses() { - return !!this.recharge.value || super.hasLimitedUses; + return this.isActive && (!!this.recharge.value || super.hasLimitedUses); } /* -------------------------------------------- */ diff --git a/module/data/item/loot.mjs b/module/data/item/loot.mjs index bc6f5655b0..5d7ccb5e84 100644 --- a/module/data/item/loot.mjs +++ b/module/data/item/loot.mjs @@ -8,6 +8,15 @@ import PhysicalItemTemplate from "./templates/physical-item.mjs"; * @mixes PhysicalItemTemplate */ export default class LootData extends SystemDataModel.mixin(ItemDescriptionTemplate, PhysicalItemTemplate) { + /** @inheritdoc */ + static defineSchema() { + return this.mergeSchema(super.defineSchema(), { + type: new foundry.data.fields.SchemaField({ + value: new foundry.data.fields.StringField({required: true, label: "DND5E.Type"}), + subtype: new foundry.data.fields.StringField({required: true, label: "DND5E.Subtype"}) + }, {label: "DND5E.ItemLootType"}) + }); + } /* -------------------------------------------- */ /* Getters */ @@ -20,7 +29,8 @@ export default class LootData extends SystemDataModel.mixin(ItemDescriptionTempl get chatProperties() { return [ game.i18n.localize(CONFIG.Item.typeLabels.loot), - this.weight ? `${this.weight} ${game.i18n.localize("DND5E.AbbreviationLbs")}` : null + this.weight ? `${this.weight} ${game.i18n.localize("DND5E.AbbreviationLbs")}` : null, + this.priceLabel ]; } } diff --git a/module/data/item/race.mjs b/module/data/item/race.mjs new file mode 100644 index 0000000000..91db9cf642 --- /dev/null +++ b/module/data/item/race.mjs @@ -0,0 +1,132 @@ +import Actor5e from "../../documents/actor/actor.mjs"; +import SystemDataModel from "../abstract.mjs"; +import { AdvancementField, IdentifierField } from "../fields.mjs"; +import { CreatureTypeField, MovementField, SensesField } from "../shared/_module.mjs"; +import ItemDescriptionTemplate from "./templates/item-description.mjs"; + +/** + * Data definition for Race items. + * @mixes ItemDescriptionTemplate + * + * @property {string} identifier Identifier slug for this race. + * @property {object[]} advancement Advancement objects for this race. + * @property {MovementField} movement + * @property {SensesField} senses + * @property {CreatureType} type + */ +export default class RaceData extends SystemDataModel.mixin(ItemDescriptionTemplate) { + /** @inheritdoc */ + static defineSchema() { + return this.mergeSchema(super.defineSchema(), { + identifier: new IdentifierField({label: "DND5E.Identifier"}), + advancement: new foundry.data.fields.ArrayField(new AdvancementField(), {label: "DND5E.AdvancementTitle"}), + movement: new MovementField(), + senses: new SensesField(), + type: new CreatureTypeField({ swarm: false }, { initial: { value: "humanoid" } }) + }); + } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + static metadata = Object.freeze({ + singleton: true + }); + + /* -------------------------------------------- */ + /* Properties */ + /* -------------------------------------------- */ + + /** + * Sheet labels for a race's movement. + * @returns {Object} + */ + get movementLabels() { + const units = CONFIG.DND5E.movementUnits[this.movement.units || Object.keys(CONFIG.DND5E.movementUnits)[0]]; + return Object.entries(CONFIG.DND5E.movementTypes).reduce((obj, [k, label]) => { + const value = this.movement[k]; + if ( value ) obj[k] = `${label} ${value} ${units}`; + return obj; + }, {}); + } + + /* -------------------------------------------- */ + + /** + * Sheet labels for a race's senses. + * @returns {Object} + */ + get sensesLabels() { + const units = CONFIG.DND5E.movementUnits[this.senses.units || Object.keys(CONFIG.DND5E.movementUnits)[0]]; + return Object.entries(CONFIG.DND5E.senses).reduce((arr, [k, label]) => { + const value = this.senses[k]; + if ( value ) arr.push(`${label} ${value} ${units}`); + return arr; + }, []).concat(this.senses.special.split(";").filter(l => l)); + } + + /* -------------------------------------------- */ + + /** + * Sheet label for a race's creature type. + * @returns {Object} + */ + get typeLabel() { + return Actor5e.formatCreatureType(this.type); + } + + /* -------------------------------------------- */ + /* Socket Event Handlers */ + /* -------------------------------------------- */ + + /** + * Create default advancement items when race is created. + * @param {object} data The initial data object provided to the document creation request. + * @param {object} options Additional options which modify the creation request. + * @param {User} user The User requesting the document creation. + * @returns {Promise} A return value of false indicates the creation operation should be cancelled. + * @see {Document#_preCreate} + * @protected + */ + async _preCreate(data, options, user) { + if ( data._id || foundry.utils.hasProperty(data, "system.advancement") ) return; + const toCreate = [ + { type: "AbilityScoreImprovement" }, { type: "Size" }, + { type: "Trait", configuration: { grants: ["languages:standard:common"] } } + ]; + this.parent.updateSource({"system.advancement": toCreate.map(c => { + const AdvancementClass = CONFIG.DND5E.advancementTypes[c.type]; + return new AdvancementClass(c, { parent: this.parent }).toObject(); + })}); + } + + /* -------------------------------------------- */ + + /** + * Set the race reference in actor data. + * @param {object} data The initial data object provided to the document creation request + * @param {object} options Additional options which modify the creation request + * @param {string} userId The id of the User requesting the document update + * @see {Document#_onCreate} + * @protected + */ + _onCreate(data, options, userId) { + if ( (game.user.id !== userId) || this.parent.actor?.type !== "character" ) return; + this.parent.actor.update({ "system.details.race": this.parent.id }); + } + + /* -------------------------------------------- */ + + /** + * Remove the race reference in actor data. + * @param {object} options Additional options which modify the deletion request + * @param {documents.BaseUser} user The User requesting the document deletion + * @returns {Promise} A return value of false indicates the deletion operation should be cancelled. + * @see {Document#_preDelete} + * @protected + */ + async _preDelete(options, user) { + if ( (this.parent.actor?.type !== "character") ) return; + await this.parent.actor.update({ "system.details.race": null }); + } +} diff --git a/module/data/item/spell.mjs b/module/data/item/spell.mjs index 431de979a3..b056afffe8 100644 --- a/module/data/item/spell.mjs +++ b/module/data/item/spell.mjs @@ -72,8 +72,8 @@ export default class SpellData extends SystemDataModel.mixin( /* -------------------------------------------- */ /** @inheritdoc */ - static migrateData(source) { - super.migrateData(source); + static _migrateData(source) { + super._migrateData(source); SpellData.#migrateComponentData(source); SpellData.#migrateScaling(source); } diff --git a/module/data/item/templates/action.mjs b/module/data/item/templates/action.mjs index 14fae4c366..91703a7114 100644 --- a/module/data/item/templates/action.mjs +++ b/module/data/item/templates/action.mjs @@ -1,3 +1,4 @@ +import SystemDataModel from "../../abstract.mjs"; import { FormulaField } from "../../fields.mjs"; /** @@ -20,7 +21,7 @@ import { FormulaField } from "../../fields.mjs"; * @property {string} save.scaling Method for automatically determining saving throw DC. * @mixin */ -export default class ActionTemplate extends foundry.abstract.DataModel { +export default class ActionTemplate extends SystemDataModel { /** @inheritdoc */ static defineSchema() { return { @@ -62,7 +63,8 @@ export default class ActionTemplate extends foundry.abstract.DataModel { /* -------------------------------------------- */ /** @inheritdoc */ - static migrateData(source) { + static _migrateData(source) { + super._migrateData(source); ActionTemplate.#migrateAbility(source); ActionTemplate.#migrateAttackBonus(source); ActionTemplate.#migrateCritical(source); @@ -176,8 +178,8 @@ export default class ActionTemplate extends foundry.abstract.DataModel { get criticalThreshold() { if ( !this.hasAttack ) return null; let ammoThreshold = Infinity; - if ( this.consume?.type === "ammo" ) { - ammoThreshold = this.parent?.actor?.items.get(this.consume.target).system.critical.threshold ?? Infinity; + if ( this.hasAmmo ) { + ammoThreshold = this.parent?.actor?.items.get(this.consume.target)?.system.critical.threshold ?? Infinity; } const threshold = Math.min(this.critical.threshold ?? Infinity, this._typeCriticalThreshold, ammoThreshold); return threshold < Infinity ? threshold : 20; diff --git a/module/data/item/templates/activated-effect.mjs b/module/data/item/templates/activated-effect.mjs index b75251cc26..29f0c537d5 100644 --- a/module/data/item/templates/activated-effect.mjs +++ b/module/data/item/templates/activated-effect.mjs @@ -31,7 +31,7 @@ import { FormulaField } from "../../fields.mjs"; * @property {number} consume.amount Quantity of the resource to consume per use. * @mixin */ -export default class ActivatedEffectTemplate extends foundry.abstract.DataModel { +export default class ActivatedEffectTemplate extends SystemDataModel { /** @inheritdoc */ static defineSchema() { return { @@ -52,7 +52,8 @@ export default class ActivatedEffectTemplate extends foundry.abstract.DataModel value: new foundry.data.fields.NumberField({required: true, min: 0, label: "DND5E.TargetValue"}), width: new foundry.data.fields.NumberField({required: true, min: 0, label: "DND5E.TargetWidth"}), units: new foundry.data.fields.StringField({required: true, blank: true, label: "DND5E.TargetUnits"}), - type: new foundry.data.fields.StringField({required: true, blank: true, label: "DND5E.TargetType"}) + type: new foundry.data.fields.StringField({required: true, blank: true, label: "DND5E.TargetType"}), + prompt: new foundry.data.fields.BooleanField({initial: true, label: "DND5E.TemplatePrompt"}) }, {label: "DND5E.Target"}), range: new foundry.data.fields.SchemaField({ value: new foundry.data.fields.NumberField({required: true, min: 0, label: "DND5E.RangeNormal"}), @@ -65,7 +66,8 @@ export default class ActivatedEffectTemplate extends foundry.abstract.DataModel target: new foundry.data.fields.StringField({ required: true, nullable: true, initial: null, label: "DND5E.ConsumeTarget" }), - amount: new foundry.data.fields.NumberField({required: true, integer: true, label: "DND5E.ConsumeAmount"}) + amount: new foundry.data.fields.NumberField({required: true, integer: true, label: "DND5E.ConsumeAmount"}), + scale: new foundry.data.fields.BooleanField({label: "DND5E.ConsumeScaling"}) }, {label: "DND5E.ConsumeTitle"}) }; } @@ -86,7 +88,8 @@ export default class ActivatedEffectTemplate extends foundry.abstract.DataModel per: new foundry.data.fields.StringField({ required: true, nullable: true, blank: false, initial: null, label: "DND5E.LimitedUsesPer" }), - recovery: new FormulaField({required: true, label: "DND5E.RecoveryFormula"}) + recovery: new FormulaField({required: true, label: "DND5E.RecoveryFormula"}), + prompt: new foundry.data.fields.BooleanField({initial: true, label: "DND5E.LimitedUsesPrompt"}) }, extraSchema), options); } }; @@ -96,7 +99,8 @@ export default class ActivatedEffectTemplate extends foundry.abstract.DataModel /* -------------------------------------------- */ /** @inheritdoc */ - static migrateData(source) { + static _migrateData(source) { + super._migrateData(source); ActivatedEffectTemplate.#migrateFormulaFields(source); ActivatedEffectTemplate.#migrateRanges(source); ActivatedEffectTemplate.#migrateTargets(source); @@ -209,12 +213,22 @@ export default class ActivatedEffectTemplate extends foundry.abstract.DataModel /* -------------------------------------------- */ + /** + * Is this Item an activatable item? + * @type {boolean} + */ + get isActive() { + return !!this.activation.type; + } + + /* -------------------------------------------- */ + /** * Does the Item have an area of effect target? * @type {boolean} */ get hasAreaTarget() { - return this.target.type in CONFIG.DND5E.areaTargetTypes; + return this.isActive && (this.target.type in CONFIG.DND5E.areaTargetTypes); } /* -------------------------------------------- */ @@ -224,7 +238,7 @@ export default class ActivatedEffectTemplate extends foundry.abstract.DataModel * @type {boolean} */ get hasIndividualTarget() { - return this.target.type in CONFIG.DND5E.individualTargetTypes; + return this.isActive && (this.target.type in CONFIG.DND5E.individualTargetTypes); } /* -------------------------------------------- */ @@ -234,7 +248,29 @@ export default class ActivatedEffectTemplate extends foundry.abstract.DataModel * @type {boolean} */ get hasLimitedUses() { - return !!this.uses.per && (this.uses.max > 0); + return this.isActive && (this.uses.per in CONFIG.DND5E.limitedUsePeriods) && (this.uses.max > 0); + } + + /* -------------------------------------------- */ + + /** + * Does this Item draw from a resource? + * @type {boolean} + */ + get hasResource() { + const consume = this.consume; + return this.isActive && !!consume.target && !!consume.type && (!this.hasAttack || (consume.type !== "ammo")); + } + + /* -------------------------------------------- */ + + /** + * Does this Item draw from ammunition? + * @type {boolean} + */ + get hasAmmo() { + const consume = this.consume; + return this.isActive && !!consume.target && !!consume.type && this.hasAttack && (consume.type === "ammo"); } /* -------------------------------------------- */ @@ -274,7 +310,7 @@ export default class ActivatedEffectTemplate extends foundry.abstract.DataModel * @type {boolean} */ get hasTarget() { - return !["", null].includes(this.target.type); + return this.isActive && !["", null].includes(this.target.type); } } diff --git a/module/data/item/templates/equippable-item.mjs b/module/data/item/templates/equippable-item.mjs index 997f608ad6..7cf8309206 100644 --- a/module/data/item/templates/equippable-item.mjs +++ b/module/data/item/templates/equippable-item.mjs @@ -1,3 +1,5 @@ +import SystemDataModel from "../../abstract.mjs"; + /** * Data model template with information on items that can be attuned and equipped. * @@ -5,7 +7,7 @@ * @property {boolean} equipped Is this item equipped on its owning actor. * @mixin */ -export default class EquippableItemTemplate extends foundry.abstract.DataModel { +export default class EquippableItemTemplate extends SystemDataModel { /** @inheritdoc */ static defineSchema() { return { @@ -21,7 +23,8 @@ export default class EquippableItemTemplate extends foundry.abstract.DataModel { /* -------------------------------------------- */ /** @inheritdoc */ - static migrateData(source) { + static _migrateData(source) { + super._migrateData(source); EquippableItemTemplate.#migrateAttunement(source); EquippableItemTemplate.#migrateEquipped(source); } diff --git a/module/data/item/templates/item-description.mjs b/module/data/item/templates/item-description.mjs index 40c2f0512f..641a6b8a08 100644 --- a/module/data/item/templates/item-description.mjs +++ b/module/data/item/templates/item-description.mjs @@ -1,3 +1,6 @@ +import SystemDataModel from "../../abstract.mjs"; +import SourceField from "../../shared/source-field.mjs"; + /** * Data model template with item description & source. * @@ -5,10 +8,10 @@ * @property {string} description.value Full item description. * @property {string} description.chat Description displayed in chat card. * @property {string} description.unidentified Description displayed if item is unidentified. - * @property {string} source Adventure or sourcebook where this item originated. + * @property {SourceField} source Adventure or sourcebook where this item originated. * @mixin */ -export default class ItemDescriptionTemplate extends foundry.abstract.DataModel { +export default class ItemDescriptionTemplate extends SystemDataModel { /** @inheritdoc */ static defineSchema() { return { @@ -19,7 +22,7 @@ export default class ItemDescriptionTemplate extends foundry.abstract.DataModel required: true, nullable: true, label: "DND5E.DescriptionUnidentified" }) }), - source: new foundry.data.fields.StringField({required: true, label: "DND5E.Source"}) + source: new SourceField() }; } @@ -28,17 +31,20 @@ export default class ItemDescriptionTemplate extends foundry.abstract.DataModel /* -------------------------------------------- */ /** @inheritdoc */ - static migrateData(source) { + static _migrateData(source) { + super._migrateData(source); ItemDescriptionTemplate.#migrateSource(source); } /* -------------------------------------------- */ /** - * Convert null source to the blank string. + * Convert source string into custom object. * @param {object} source The candidate source data from which the model will be constructed. */ static #migrateSource(source) { - if ( source.source === null ) source.source = ""; + if ( foundry.utils.getType(source.source) !== "Object" ) { + source.source = { custom: source.source }; + } } } diff --git a/module/data/item/templates/mountable.mjs b/module/data/item/templates/mountable.mjs index 615b5ca4bd..d728d8f5a5 100644 --- a/module/data/item/templates/mountable.mjs +++ b/module/data/item/templates/mountable.mjs @@ -1,3 +1,5 @@ +import SystemDataModel from "../../abstract.mjs"; + /** * Data model template for equipment that can be mounted on a vehicle. * @@ -10,7 +12,7 @@ * @property {string} hp.conditions Conditions that are triggered when this equipment takes damage. * @mixin */ -export default class MountableTemplate extends foundry.abstract.DataModel { +export default class MountableTemplate extends SystemDataModel { /** @inheritdoc */ static defineSchema() { return { diff --git a/module/data/item/templates/physical-item.mjs b/module/data/item/templates/physical-item.mjs index af14dc9830..8bf21b38c6 100644 --- a/module/data/item/templates/physical-item.mjs +++ b/module/data/item/templates/physical-item.mjs @@ -1,3 +1,5 @@ +import SystemDataModel from "../../abstract.mjs"; + /** * Data model template with information on physical items. * @@ -10,7 +12,7 @@ * @property {boolean} identified Has this item been identified? * @mixin */ -export default class PhysicalItemTemplate extends foundry.abstract.DataModel { +export default class PhysicalItemTemplate extends SystemDataModel { /** @inheritdoc */ static defineSchema() { return { @@ -33,12 +35,27 @@ export default class PhysicalItemTemplate extends foundry.abstract.DataModel { }; } + /* -------------------------------------------- */ + /* Getters */ + /* -------------------------------------------- */ + + /** + * Get a human-readable label for the price and denomination. + * @type {string} + */ + get priceLabel() { + const { value, denomination } = this.price; + const hasPrice = value && (denomination in CONFIG.DND5E.currencies); + return hasPrice ? `${value} ${CONFIG.DND5E.currencies[denomination].label}` : null; + } + /* -------------------------------------------- */ /* Migrations */ /* -------------------------------------------- */ /** @inheritdoc */ - static migrateData(source) { + static _migrateData(source) { + super._migrateData(source); PhysicalItemTemplate.#migratePrice(source); PhysicalItemTemplate.#migrateRarity(source); PhysicalItemTemplate.#migrateWeight(source); diff --git a/module/data/item/tool.mjs b/module/data/item/tool.mjs index 827582e1d2..4cbf436865 100644 --- a/module/data/item/tool.mjs +++ b/module/data/item/tool.mjs @@ -41,8 +41,8 @@ export default class ToolData extends SystemDataModel.mixin( /* -------------------------------------------- */ /** @inheritdoc */ - static migrateData(source) { - super.migrateData(source); + static _migrateData(source) { + super._migrateData(source); ToolData.#migrateAbility(source); } diff --git a/module/data/item/weapon.mjs b/module/data/item/weapon.mjs index 0fb4e7b0b3..5dc17cab9c 100644 --- a/module/data/item/weapon.mjs +++ b/module/data/item/weapon.mjs @@ -46,8 +46,8 @@ export default class WeaponData extends SystemDataModel.mixin( /* -------------------------------------------- */ /** @inheritdoc */ - static migrateData(source) { - super.migrateData(source); + static _migrateData(source) { + super._migrateData(source); WeaponData.#migratePropertiesData(source); WeaponData.#migrateProficient(source); WeaponData.#migrateWeaponType(source); diff --git a/module/data/shared/_module.mjs b/module/data/shared/_module.mjs index 8f634b36b9..3d4254ef86 100644 --- a/module/data/shared/_module.mjs +++ b/module/data/shared/_module.mjs @@ -1 +1,5 @@ +export {default as CreatureTypeField} from "./creature-type-field.mjs"; export {default as CurrencyTemplate} from "./currency.mjs"; +export {default as MovementField} from "./movement-field.mjs"; +export {default as SensesField} from "./senses-field.mjs"; +export {default as SourceField} from "./source-field.mjs"; diff --git a/module/data/shared/creature-type-field.mjs b/module/data/shared/creature-type-field.mjs new file mode 100644 index 0000000000..82c497afe5 --- /dev/null +++ b/module/data/shared/creature-type-field.mjs @@ -0,0 +1,32 @@ +/** + * Field for storing creature type data. + */ +export default class CreatureTypeField extends foundry.data.fields.SchemaField { + constructor(fields={}, options={}) { + fields = { + value: new foundry.data.fields.StringField({blank: true, label: "DND5E.CreatureType"}), + subtype: new foundry.data.fields.StringField({label: "DND5E.CreatureTypeSelectorSubtype"}), + swarm: new foundry.data.fields.StringField({blank: true, label: "DND5E.CreatureSwarmSize"}), + custom: new foundry.data.fields.StringField({label: "DND5E.CreatureTypeSelectorCustom"}), + ...fields + }; + Object.entries(fields).forEach(([k, v]) => !v ? delete fields[k] : null); + super(fields, { label: "DND5E.CreatureType", ...options }); + } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + initialize(value, model, options={}) { + const obj = super.initialize(value, model, options); + + Object.defineProperty(obj, "label", { + get() { + return dnd5e.documents.Actor5e.formatCreatureType(this); + }, + enumerable: false + }); + + return obj; + } +} diff --git a/module/data/shared/currency.mjs b/module/data/shared/currency.mjs index f4a33fb80d..bb45347be5 100644 --- a/module/data/shared/currency.mjs +++ b/module/data/shared/currency.mjs @@ -1,3 +1,4 @@ +import SystemDataModel from "../abstract.mjs"; import { MappingField } from "../fields.mjs"; /** @@ -6,7 +7,7 @@ import { MappingField } from "../fields.mjs"; * @property {object} currency Object containing currencies as numbers. * @mixin */ -export default class CurrencyTemplate extends foundry.abstract.DataModel { +export default class CurrencyTemplate extends SystemDataModel { /** @inheritdoc */ static defineSchema() { return { diff --git a/module/data/shared/movement-field.mjs b/module/data/shared/movement-field.mjs new file mode 100644 index 0000000000..273eb1eb75 --- /dev/null +++ b/module/data/shared/movement-field.mjs @@ -0,0 +1,22 @@ +/** + * Field for storing movement data. + */ +export default class MovementField extends foundry.data.fields.SchemaField { + constructor(fields={}, options={}) { + const numberConfig = { required: true, nullable: true, min: 0, step: 0.1, initial: null }; + fields = { + burrow: new foundry.data.fields.NumberField({ ...numberConfig, label: "DND5E.MovementBurrow" }), + climb: new foundry.data.fields.NumberField({ ...numberConfig, label: "DND5E.MovementClimb" }), + fly: new foundry.data.fields.NumberField({ ...numberConfig, label: "DND5E.MovementFly" }), + swim: new foundry.data.fields.NumberField({ ...numberConfig, label: "DND5E.MovementSwim" }), + walk: new foundry.data.fields.NumberField({ ...numberConfig, label: "DND5E.MovementWalk" }), + units: new foundry.data.fields.StringField({ + required: true, nullable: true, blank: false, initial: null, label: "DND5E.MovementUnits" + }), + hover: new foundry.data.fields.BooleanField({required: true, label: "DND5E.MovementHover"}), + ...fields + }; + Object.entries(fields).forEach(([k, v]) => !v ? delete fields[k] : null); + super(fields, { label: "DND5E.Movement", ...options }); + } +} diff --git a/module/data/shared/senses-field.mjs b/module/data/shared/senses-field.mjs new file mode 100644 index 0000000000..cfad34f926 --- /dev/null +++ b/module/data/shared/senses-field.mjs @@ -0,0 +1,21 @@ +/** + * Field for storing senses data. + */ +export default class SensesField extends foundry.data.fields.SchemaField { + constructor(fields={}, options={}) { + const numberConfig = { required: true, nullable: true, integer: true, min: 0, initial: null }; + fields = { + darkvision: new foundry.data.fields.NumberField({ ...numberConfig, label: "DND5E.SenseDarkvision" }), + blindsight: new foundry.data.fields.NumberField({ ...numberConfig, label: "DND5E.SenseBlindsight" }), + tremorsense: new foundry.data.fields.NumberField({ ...numberConfig, label: "DND5E.SenseTremorsense" }), + truesight: new foundry.data.fields.NumberField({ ...numberConfig, label: "DND5E.SenseTruesight" }), + units: new foundry.data.fields.StringField({ + required: true, nullable: true, blank: false, initial: null, label: "DND5E.SenseUnits" + }), + special: new foundry.data.fields.StringField({required: true, label: "DND5E.SenseSpecial"}), + ...fields + }; + Object.entries(fields).forEach(([k, v]) => !v ? delete fields[k] : null); + super(fields, { label: "DND5E.Senses", ...options }); + } +} diff --git a/module/data/shared/source-field.mjs b/module/data/shared/source-field.mjs new file mode 100644 index 0000000000..fde0fd48e4 --- /dev/null +++ b/module/data/shared/source-field.mjs @@ -0,0 +1,48 @@ +const { SchemaField, StringField } = foundry.data.fields; + +/** + * Data fields that stores information on the adventure or sourcebook where this document originated. + * + * @property {string} book Book/publication where the item originated. + * @property {string} page Page or section where the item can be found. + * @property {string} custom Fully custom source label. + * @property {string} license Type of license that covers this item. + */ +export default class SourceField extends SchemaField { + constructor(fields={}, options={}) { + super({ + book: new StringField({label: "DND5E.SourceBook"}), + page: new StringField({label: "DND5E.SourcePage"}), + custom: new StringField({label: "DND5E.SourceCustom"}), + license: new StringField({label: "DND5E.SourceLicense"}), + ...fields + }, { label: "DND5E.Source", ...options }); + } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + initialize(value, model, options={}) { + const obj = super.initialize(value, model, options); + + Object.defineProperty(obj, "label", { + get() { + if ( this.custom ) return this.custom; + const page = Number.isNumeric(this.page) + ? game.i18n.format("DND5E.SourcePageDisplay", { page: this.page }) : this.page; + return game.i18n.format("DND5E.SourceDisplay", { book: this.book ?? "", page: page ?? "" }).trim(); + }, + enumerable: false + }); + Object.defineProperty(obj, "toString", { + value: () => { + foundry.utils.logCompatibilityWarning("Source has been converted to an object, the label can now be accessed " + + "using the `source#label` property.", { since: "DnD5e 2.4", until: "DnD5e 2.6" }); + return obj.label; + }, + enumerable: false + }); + + return obj; + } +} diff --git a/module/dice/d20-roll.mjs b/module/dice/d20-roll.mjs index 4c6fd6f3b6..1e1d22e545 100644 --- a/module/dice/d20-roll.mjs +++ b/module/dice/d20-roll.mjs @@ -62,7 +62,7 @@ export default class D20Roll extends Roll { NORMAL: 0, ADVANTAGE: 1, DISADVANTAGE: -1 - } + }; /* -------------------------------------------- */ diff --git a/module/dice/simplify-roll-formula.mjs b/module/dice/simplify-roll-formula.mjs index a31a5ccc79..572f74e047 100644 --- a/module/dice/simplify-roll-formula.mjs +++ b/module/dice/simplify-roll-formula.mjs @@ -107,7 +107,8 @@ function _simplifyDiceTerms(terms) { // Split the unannotated terms into different die sizes and signs const diceQuantities = unannotated.reduce((obj, curr, i) => { if ( curr instanceof OperatorTerm ) return obj; - const key = `${unannotated[i - 1].operator}${curr.faces}`; + const face = curr.constructor?.name === "Coin" ? "c" : curr.faces; + const key = `${unannotated[i - 1].operator}${face}`; obj[key] = (obj[key] ?? 0) + curr.number; return obj; }, {}); @@ -115,7 +116,9 @@ function _simplifyDiceTerms(terms) { // Add new die and operator terms to simplified for each die size and sign const simplified = Object.entries(diceQuantities).flatMap(([key, number]) => ([ new OperatorTerm({ operator: key.charAt(0) }), - new Die({ number, faces: parseInt(key.slice(1)) }) + key.slice(1) === "c" + ? new Coin({ number: number }) + : new Die({ number, faces: parseInt(key.slice(1)) }) ])); return [...simplified, ...annotated]; } diff --git a/module/documents/_module.mjs b/module/documents/_module.mjs index 5bf6c3c23d..cdcf7855c0 100644 --- a/module/documents/_module.mjs +++ b/module/documents/_module.mjs @@ -7,6 +7,7 @@ export {default as TokenDocument5e} from "./token.mjs"; // Helper Methods export {default as Proficiency} from "./actor/proficiency.mjs"; +export {default as SelectChoices} from "./actor/select-choices.mjs"; export * as Trait from "./actor/trait.mjs"; export * as chat from "./chat-message.mjs"; export * as combat from "./combat.mjs"; diff --git a/module/documents/active-effect.mjs b/module/documents/active-effect.mjs index fc3f76c6a5..684ef4fb6d 100644 --- a/module/documents/active-effect.mjs +++ b/module/documents/active-effect.mjs @@ -81,17 +81,22 @@ export default class ActiveEffect5e extends ActiveEffect { */ determineSuppression() { this.isSuppressed = false; - if ( this.disabled || (this.parent.documentName !== "Actor") ) return; - const parts = this.origin?.split(".") ?? []; - const [parentType, parentId, documentType, documentId, syntheticItem, syntheticItemId] = parts; + if ( this.disabled || (this.parent.documentName !== "Actor") || !this.origin ) return; + // Deliberately avoiding using fromUuidSync here, see: https://github.com/foundryvtt/dnd5e/pull/1980 + const parsed = game.dnd5e.isV10 ? _parseUuid(this.origin) : parseUuid(this.origin); + if ( !parsed ) return; + const { collection, documentId: parentId, embedded } = parsed; let item; // Case 1: This is a linked or sidebar actor - if ( parentType === "Actor" ) { + if ( collection === game.actors ) { + const [documentType, documentId] = embedded; if ( (parentId !== this.parent.id) || (documentType !== "Item") ) return; item = this.parent.items.get(documentId); } // Case 2: This is a synthetic actor on the scene - else if ( parentType === "Scene" ) { + else if ( collection === game.scenes ) { + if ( embedded.length > 4 ) embedded.splice(2, 2); + const [, documentId, syntheticItem, syntheticItemId] = embedded; if ( (documentId !== this.parent.token?.id) || (syntheticItem !== "Item") ) return; item = this.parent.items.get(syntheticItemId); } @@ -114,9 +119,10 @@ export default class ActiveEffect5e extends ActiveEffect { const effect = li.dataset.effectId ? owner.effects.get(li.dataset.effectId) : null; switch ( a.dataset.action ) { case "create": + const isActor = owner instanceof Actor; return owner.createEmbeddedDocuments("ActiveEffect", [{ - label: game.i18n.localize("DND5E.EffectNew"), - icon: "icons/svg/aura.svg", + label: isActor ? game.i18n.localize("DND5E.EffectNew") : owner.name, + icon: isActor ? "icons/svg/aura.svg" : owner.img, origin: owner.uuid, "duration.rounds": li.dataset.effectType === "temporary" ? 1 : undefined, disabled: li.dataset.effectType === "inactive" @@ -124,7 +130,7 @@ export default class ActiveEffect5e extends ActiveEffect { case "edit": return effect.sheet.render(true); case "delete": - return effect.delete(); + return effect.deleteDialog(); case "toggle": return effect.update({disabled: !effect.disabled}); } @@ -174,4 +180,21 @@ export default class ActiveEffect5e extends ActiveEffect { categories.suppressed.hidden = !categories.suppressed.effects.length; return categories; } + + /* ~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ */ + /* Deprecations and Compatibility */ + /* ~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ */ + + _initialize(options) { + super._initialize(options); + if ( game.release.generation < 11 ) { + Object.defineProperty(this, "name", { + get() { + return this.label; + }, + configurable: true, + enumerable: false + }); + } + } } diff --git a/module/documents/actor/actor.mjs b/module/documents/actor/actor.mjs index e724e605ba..27c9527d41 100644 --- a/module/documents/actor/actor.mjs +++ b/module/documents/actor/actor.mjs @@ -1,14 +1,16 @@ import Proficiency from "./proficiency.mjs"; +import * as Trait from "./trait.mjs"; +import ScaleValueAdvancement from "../advancement/scale-value.mjs"; +import { SystemDocumentMixin } from "../mixin.mjs"; import { d20Roll } from "../../dice/dice.mjs"; import { simplifyBonus } from "../../utils.mjs"; import ShortRestDialog from "../../applications/actor/short-rest.mjs"; import LongRestDialog from "../../applications/actor/long-rest.mjs"; -import * as Trait from "./trait.mjs"; /** * Extend the base Actor class to implement additional system-specific logic. */ -export default class Actor5e extends Actor { +export default class Actor5e extends SystemDocumentMixin(Actor) { /** * The data source for Actor5e.classes allowing it to be lazily computed. @@ -91,8 +93,7 @@ export default class Actor5e extends Actor { /** @inheritDoc */ prepareData() { - // Do not attempt to prepare non-system types. - if ( !game.template.Actor.types.includes(this.type) ) return; + if ( !game.template.Actor.types.includes(this.type) ) return super.prepareData(); this._classes = undefined; this._preparationWarnings = []; super.prepareData(); @@ -103,13 +104,9 @@ export default class Actor5e extends Actor { /** @inheritDoc */ prepareBaseData() { - - // Delegate preparation to type-subclass - if ( this.type === "group" ) { // Eventually other types will also support this - return this.system._prepareBaseData(); - } - - this._prepareBaseArmorClass(); + if ( !game.template.Actor.types.includes(this.type) ) return; + if ( this.type !== "group" ) this._prepareBaseArmorClass(); + else if ( game.release.generation < 11 ) this.system.prepareBaseData(); // Type-specific preparation switch ( this.type ) { @@ -127,6 +124,7 @@ export default class Actor5e extends Actor { /** @inheritDoc */ applyActiveEffects() { this._prepareScaleValues(); + if ( this.system?.prepareEmbeddedData instanceof Function ) this.system.prepareEmbeddedData(); // The Active Effects do not have access to their parent at preparation time, so we wait until this stage to // determine whether they are suppressed or not. this.effects.forEach(e => e.determineSuppression()); @@ -137,11 +135,7 @@ export default class Actor5e extends Actor { /** @inheritDoc */ prepareDerivedData() { - - // Delegate preparation to type-subclass - if ( this.type === "group" ) { // Eventually other types will also support this - return this.system._prepareDerivedData(); - } + if ( !game.template.Actor.types.includes(this.type) || (this.type === "group") ) return; const flags = this.flags.dnd5e || {}; this.labels = {}; @@ -231,7 +225,8 @@ export default class Actor5e extends Actor { _prepareBaseArmorClass() { const ac = this.system.attributes.ac; ac.armor = 10; - ac.shield = ac.bonus = ac.cover = 0; + ac.shield = ac.cover = 0; + ac.bonus = ""; } /* -------------------------------------------- */ @@ -242,9 +237,8 @@ export default class Actor5e extends Actor { * @protected */ _prepareScaleValues() { - this.system.scale = Object.entries(this.classes).reduce((scale, [identifier, cls]) => { - scale[identifier] = cls.scaleValues; - if ( cls.subclass ) scale[cls.subclass.identifier] = cls.subclass.scaleValues; + this.system.scale = this.items.reduce((scale, item) => { + if ( ScaleValueAdvancement.metadata.validItemTypes.has(item.type) ) scale[item.identifier] = item.scaleValues; return scale; }, {}); } @@ -481,6 +475,7 @@ export default class Actor5e extends Actor { else obj.armors.push(equip); return obj; }, {armors: [], shields: []}); + const rollData = this.getRollData({ deterministic: true }); // Determine base AC switch ( ac.calc ) { @@ -509,7 +504,6 @@ export default class Actor5e extends Actor { } else ac.dex = this.system.abilities.dex?.mod ?? 0; - const rollData = this.getRollData({ deterministic: true }); rollData.attributes.ac = ac; try { const replaced = Roll.replaceFormulaData(formula, rollData); @@ -534,6 +528,7 @@ export default class Actor5e extends Actor { } // Compute total AC and return + ac.bonus = simplifyBonus(ac.bonus, rollData); ac.value = ac.base + ac.shield + ac.bonus + ac.cover; } @@ -845,7 +840,8 @@ export default class Actor5e extends Actor { /** @inheritdoc */ async _preCreate(data, options, user) { - await super._preCreate(data, options, user); + if ( (await super._preCreate(data, options, user)) === false ) return false; + const sourceId = this.getFlag("core", "sourceId"); if ( sourceId?.startsWith("Compendium.") ) return; @@ -866,7 +862,7 @@ export default class Actor5e extends Actor { /** @inheritdoc */ async _preUpdate(changed, options, user) { - await super._preUpdate(changed, options, user); + if ( (await super._preUpdate(changed, options, user)) === false ) return false; // Apply changes in Actor size to Token width/height if ( "size" in (this.system.traits || {}) ) { @@ -1011,14 +1007,14 @@ export default class Actor5e extends Actor { */ async rollSkill(skillId, options={}) { const skl = this.system.skills[skillId]; - const abl = this.system.abilities[skl.ability]; + const abl = this.system.abilities[options.ability ?? skl.ability]; const globalBonuses = this.system.bonuses?.abilities ?? {}; const parts = ["@mod", "@abilityCheckBonus"]; const data = this.getRollData(); // Add ability modifier - data.mod = skl.mod; - data.defaultAbility = skl.ability; + data.mod = abl?.mod ?? 0; + data.defaultAbility = options.ability ?? skl.ability; // Include proficiency bonus if ( skl.prof.hasProficiency ) { @@ -1112,7 +1108,7 @@ export default class Actor5e extends Actor { const data = this.getRollData(); // Add ability modifier. - data.mod = tool?.mod ?? 0; + data.mod = ability?.mod ?? 0; data.defaultAbility = options.ability || (tool?.ability ?? "int"); // Add proficiency. @@ -1141,7 +1137,7 @@ export default class Actor5e extends Actor { data.toolBonus = bonus.join(" + "); } - const flavor = game.i18n.format("DND5E.ToolPromptTitle", {tool: Trait.keyLabel("tool", toolId) ?? ""}); + const flavor = game.i18n.format("DND5E.ToolPromptTitle", {tool: Trait.keyLabel(toolId, {trait: "tool"}) ?? ""}); const rollData = foundry.utils.mergeObject({ data, flavor, title: `${flavor}: ${this.name}`, @@ -1376,7 +1372,7 @@ export default class Actor5e extends Actor { // Display a warning if we are not at zero HP or if we already have reached 3 if ( (this.system.attributes.hp.value > 0) || (death.failure >= 3) || (death.success >= 3) ) { - ui.notifications.warn(game.i18n.localize("DND5E.DeathSaveUnnecessary")); + ui.notifications.warn("DND5E.DeathSaveUnnecessary", {localize: true}); return null; } @@ -1594,13 +1590,14 @@ export default class Actor5e extends Actor { // Temporarily cache the configured roll and use it to roll initiative for the Actor this._cachedInitiativeRoll = roll; await this.rollInitiative({createCombatants: true}); - delete this._cachedInitiativeRoll; } /* -------------------------------------------- */ /** @inheritdoc */ - async rollInitiative(options={}) { + async rollInitiative(options={}, rollOptions={}) { + this._cachedInitiativeRoll ??= this.getInitiativeRoll(rollOptions); + /** * A hook event that fires before initiative is rolled for an Actor. * @function dnd5e.preRollInitiative @@ -1608,7 +1605,10 @@ export default class Actor5e extends Actor { * @param {Actor5e} actor The Actor that is rolling initiative. * @param {D20Roll} roll The initiative roll. */ - if ( Hooks.call("dnd5e.preRollInitiative", this, this._cachedInitiativeRoll) === false ) return; + if ( Hooks.call("dnd5e.preRollInitiative", this, this._cachedInitiativeRoll) === false ) { + delete this._cachedInitiativeRoll; + return null; + } const combat = await super.rollInitiative(options); const combatants = this.isToken ? this.getActiveTokens(false, true).reduce((arr, t) => { @@ -1625,6 +1625,7 @@ export default class Actor5e extends Actor { * @param {Combatant[]} combatants The associated Combatants in the Combat. */ Hooks.callAll("dnd5e.rollInitiative", this, combatants); + delete this._cachedInitiativeRoll; return combat; } @@ -1982,8 +1983,8 @@ export default class Actor5e extends Actor { if ( Hooks.call("dnd5e.preRestCompleted", this, result) === false ) return result; // Perform updates - await this.update(result.updateData); - await this.updateEmbeddedDocuments("Item", result.updateItems); + await this.update(result.updateData, { isRest: true }); + await this.updateEmbeddedDocuments("Item", result.updateItems, { isRest: true }); // Display a Chat Message summarizing the rest effects if ( chat ) await this._displayRestResultMessage(result, longRest); @@ -2202,7 +2203,7 @@ export default class Actor5e extends Actor { } // Items that roll to gain charges on a new day - if ( recoverDailyUses && uses?.recovery && (uses?.per === "charges") ) { + if ( recoverDailyUses && uses?.recovery && (uses?.per in CONFIG.DND5E.limitedUseFormulaPeriods) ) { const roll = new Roll(uses.recovery, item.getRollData()); if ( recoverLongRestUses && (game.settings.get("dnd5e", "restVariant") === "gritty") ) { roll.alter(7, 0, {multiplyNumeric: true}); @@ -2316,7 +2317,8 @@ export default class Actor5e extends Actor { // Ensure the player is allowed to polymorph const allowed = game.settings.get("dnd5e", "allowPolymorphing"); if ( !allowed && !game.user.isGM ) { - return ui.notifications.warn(game.i18n.localize("DND5E.PolymorphWarn")); + ui.notifications.warn("DND5E.PolymorphWarn", {localize: true}); + return null; } // Get the original Actor data and the new source data @@ -2385,8 +2387,8 @@ export default class Actor5e extends Actor { else if ( keepMental && (type === "mental") ) abilities[k] = oa; // Set saving throw proficiencies. - if ( keepSaves ) abilities[k].proficient = oa.proficient; - else if ( mergeSaves ) abilities[k].proficient = Math.max(prof, oa.proficient); + if ( keepSaves && oa ) abilities[k].proficient = oa.proficient; + else if ( mergeSaves && oa ) abilities[k].proficient = Math.max(prof, oa.proficient); else abilities[k].proficient = source.system.abilities[k].proficient; } @@ -2394,7 +2396,7 @@ export default class Actor5e extends Actor { if ( keepSkills ) d.system.skills = o.system.skills; else if ( mergeSkills ) { for ( let [k, s] of Object.entries(d.system.skills) ) { - s.value = Math.max(s.value, o.system.skills[k].value); + s.value = Math.max(s.value, o.system.skills[k]?.value ?? 0); } } @@ -2528,7 +2530,10 @@ export default class Actor5e extends Actor { */ async revertOriginalForm({renderSheet=true}={}) { if ( !this.isPolymorphed ) return; - if ( !this.isOwner ) return ui.notifications.warn(game.i18n.localize("DND5E.PolymorphRevertWarn")); + if ( !this.isOwner ) { + ui.notifications.warn("DND5E.PolymorphRevertWarn", {localize: true}); + return null; + } /** * A hook event that fires just before the actor is reverted to original form. diff --git a/module/documents/actor/select-choices.mjs b/module/documents/actor/select-choices.mjs new file mode 100644 index 0000000000..4f023d69a3 --- /dev/null +++ b/module/documents/actor/select-choices.mjs @@ -0,0 +1,230 @@ +import { sortObjectEntries } from "../../utils.mjs"; + +/** + * Object representing a nested set of choices to be displayed in a grouped select list or a trait selector. + * + * @typedef {object} SelectChoicesEntry + * @property {string} label Label, either pre- or post-localized. + * @property {boolean} [chosen] Has this choice been selected? + * @property {boolean} [sorting=true] Should this value be sorted? If there are a mixture of this value at + * a level, unsorted values are listed first followed by sorted values. + * @property {SelectChoices} [children] Nested choices. If wildcard filtering support is desired, then trait keys + * should be provided prefixed for children (e.g. `parent:child`, rather than + * just `child`). + */ + +/** + * Object with a number of methods for performing actions on a nested set of choices. + * + * @param {Object} [choices={}] Initial choices for the object. + */ +export default class SelectChoices { + constructor(choices={}) { + const clone = foundry.utils.deepClone(choices); + for ( const value of Object.values(clone) ) { + if ( !value.children || (value.children instanceof SelectChoices) ) continue; + value.category = true; + value.children = new this.constructor(value.children); + } + Object.assign(this, clone); + } + + /* -------------------------------------------- */ + + /** + * Create a set of available choice keys. + * @param {Set} [set] Existing set to which the values will be added. + * @returns {Set} + */ + asSet(set) { + set ??= new Set(); + for ( const [key, choice] of Object.entries(this) ) { + if ( choice.children ) choice.children.asSet(set); + else set.add(key); + } + return set; + } + + /* -------------------------------------------- */ + + /** + * Create a clone of this object. + * @returns {SelectChoices} + */ + clone() { + const newData = {}; + for ( const [key, value] of Object.entries(this) ) { + newData[key] = foundry.utils.deepClone(value); + if ( value.children ) newData[key].children = value.children.clone(); + } + const clone = new this.constructor(newData); + return clone; + } + + /* -------------------------------------------- */ + + /** + * Merge another SelectChoices object into this one. + * @param {SelectChoices} other + * @param {object} [options={}] + * @param {boolean} [options.inplace=true] Should this SelectChoices be mutated or a new one returned? + * @returns {SelectChoices} + */ + merge(other, { inplace=true }={}) { + if ( !inplace ) return this.clone().merge(other); + return foundry.utils.mergeObject(this, other); + } + + /* -------------------------------------------- */ + + /** + * Internal sorting method. + * @param {object} lhs + * @param {object} rhs + * @returns {number} + * @protected + */ + _sort(lhs, rhs) { + if ( (lhs.sorting === false) && (rhs.sorting === false) ) return 0; + if ( lhs.sorting === false ) return -1; + if ( rhs.sorting === false ) return 1; + return lhs.label.localeCompare(rhs.label); + } + + /* -------------------------------------------- */ + + /** + * Sort the entries using the label. + * @param {object} [options={}] + * @param {boolean} [options.inplace=true] Should this SelectChoices be mutated or a new one returned? + * @returns {SelectChoices} + */ + sort({ inplace=true }={}) { + const sorted = new SelectChoices(sortObjectEntries(this, this._sort)); + + if ( inplace ) { + for ( const key of Object.keys(this) ) delete this[key]; + this.merge(sorted); + for ( const entry of Object.values(this) ) { + if ( entry.children ) entry.children.sort(); + } + return this; + } + + else { + for ( const entry of Object.values(sorted) ) { + if ( entry.children ) entry.children = entry.children.sort({ inplace }); + } + return sorted; + } + } + + /* -------------------------------------------- */ + + /** + * Filters choices in place to only include the provided keys. + * @param {Set|SelectChoices} filter Keys of traits to retain or another SelectChoices object. + * @param {object} [options={}] + * @param {boolean} [options.inplace=true] Should this SelectChoices be mutated or a new one returned? + * @returns {SelectChoices} This SelectChoices with filter applied. + * + * @example + * const choices = new SelectChoices({ + * categoryOne: { label: "One" }, + * categoryTwo: { label: "Two", children: { + * childOne: { label: "Child One" }, + * childTwo: { label: "Child Two" } + * } } + * }); + * + * // Results in only categoryOne + * choices.filter(new Set(["categoryOne"])); + * + * // Results in only categoryTwo, but none if its children + * choices.filter(new Set(["categoryTwo"])); + * + * // Results in categoryTwo and all of its children + * choices.filter(new Set(["categoryTwo:*"])); + * + * // Results in categoryTwo with only childOne + * choices.filter(new Set(["categoryTwo:childOne"])); + * + * // Results in categoryOne, plus categoryTwo with only childOne + * choices.filter(new Set(["categoryOne", "categoryTwo:childOne"])); + * + * @example + * const choices = new SelectChoices({ + * "type:categoryOne": { label: "One" }, + * "type:categoryTwo": { label: "Two", children: { + * "type:categoryOne:childOne": { label: "Child One" }, + * "type:categoryOne:childTwo": { label: "Child Two" } + * } } + * }); + * + * // Results in no changes + * choices.filter(new Set(["type:*"])); + * + * // Results in only categoryOne + * choices.filter(new Set(["type:categoryOne"])); + * + * // Results in categoryTwo and all of its children + * choices.filter(new Set(["type:categoryTwo:*"])); + * + * // Results in categoryTwo with only childOne + * choices.filter(new Set(["type:categoryTwo:childOne"])); + */ + filter(filter, { inplace=true }={}) { + if ( !inplace ) return this.clone().filter(filter); + if ( filter instanceof SelectChoices ) filter = filter.asSet(); + + for ( const [key, trait] of Object.entries(this) ) { + // Remove children if direct match and no wildcard for this category present + const wildcardKey = key.replace(/(:|^)(\w+)$/, "$1*"); + if ( filter.has(key) && !filter.has(wildcardKey) ) { + if ( trait.children ) delete trait.children; + } + + // Check children, remove entry if no children match filter + else if ( !filter.has(wildcardKey) && !filter.has(`${key}:*`) ) { + if ( trait.children ) trait.children.filter(filter); + if ( foundry.utils.isEmpty(trait.children ?? {}) ) delete this[key]; + } + } + + return this; + } + + /* -------------------------------------------- */ + + /** + * Removes in place any traits or categories the keys of which are included in the exclusion set. + * Note: Wildcard keys are not supported with this method. + * @param {Set} keys Set of keys to remove from the choices. + * @param {object} [options={}] + * @param {boolean} [options.inplace=true] Should this SelectChoices be mutated or a new one returned? + * @returns {SelectChoices} This SelectChoices with excluded keys removed. + * + * @example + * const choices = new SelectChoices({ + * categoryOne: { label: "One" }, + * categoryTwo: { label: "Two", children: { + * childOne: { label: "Child One" }, + * childTwo: { label: "Child Two" } + * } } + * }); + * + * // Results in categoryOne being removed + * choices.exclude(new Set(["categoryOne"])); + * + * // Results in categoryOne and childOne being removed, but categoryTwo and childTwo remaining + * choices.exclude(new Set(["categoryOne", "categoryTwo:childOne"])); + */ + exclude(keys, { inplace=true }={}) { + if ( !inplace ) return this.clone().exclude(keys); + for ( const [key, trait] of Object.entries(this) ) { + if ( keys.has(key) ) delete this[key]; + else if ( trait.children ) trait.children = trait.children.exclude(keys); + } + return this; + } +} diff --git a/module/documents/actor/trait.mjs b/module/documents/actor/trait.mjs index 78a9611c5c..fcbbbb1d24 100644 --- a/module/documents/actor/trait.mjs +++ b/module/documents/actor/trait.mjs @@ -1,3 +1,5 @@ +import SelectChoices from "./select-choices.mjs"; + /** * Cached version of the base items compendia indices with the needed subtype fields. * @type {object} @@ -5,8 +7,20 @@ */ const _cachedIndices = {}; +/** + * Determine the appropriate label to use for a trait category. + * @param {object|string} data Category for which to fetch the label. + * @param {object} config Trait configuration data. + * @returns {string} + * @private + */ +function _innerLabel(data, config) { + return foundry.utils.getType(data) === "Object" + ? foundry.utils.getProperty(data, config.labelKeyPath ?? "label") : data; +} + /* -------------------------------------------- */ -/* Trait Lists */ +/* Application */ /* -------------------------------------------- */ /** @@ -17,46 +31,81 @@ const _cachedIndices = {}; export function actorKeyPath(trait) { const traitConfig = CONFIG.DND5E.traits[trait]; if ( traitConfig.actorKeyPath ) return traitConfig.actorKeyPath; - return `traits.${trait}`; + return `system.traits.${trait}`; } /* -------------------------------------------- */ /** - * Fetch the categories object for the specified trait. - * @param {string} trait Trait as defined in `CONFIG.DND5E.traits`. - * @returns {object} Trait categories defined within `CONFIG.DND5E`. + * Get the current trait values for the provided actor. + * @param {Actor5e} actor Actor from which to retrieve the values. + * @param {string} trait Trait as defined in `CONFIG.DND5E.traits`. + * @returns {Object} */ -export function categories(trait) { - const traitConfig = CONFIG.DND5E.traits[trait]; - return CONFIG.DND5E[traitConfig.configKey ?? trait]; +export function actorValues(actor, trait) { + const keyPath = actorKeyPath(trait); + const data = foundry.utils.getProperty(actor, keyPath); + if ( !data ) return {}; + const values = {}; + + if ( ["skills", "tool"].includes(trait) ) { + Object.entries(data).forEach(([k, d]) => values[`${trait}:${k}`] = d.value); + } else if ( trait === "saves" ) { + Object.entries(data).forEach(([k, d]) => values[`${trait}:${k}`] = d.proficient); + } else { + data.value.forEach(v => values[`${trait}:${v}`] = 1); + } + + return values; } /* -------------------------------------------- */ /** - * Get a list of choices for a specific trait. - * @param {string} trait Trait as defined in `CONFIG.DND5E.traits`. - * @param {Set} [chosen=[]] Optional list of keys to be marked as chosen. - * @returns {object} Object mapping proficiency ids to choice objects. + * Calculate the change key path for a provided trait key. + * @param {string} key Key for a trait to set. + * @param {string} [trait] Trait as defined in `CONFIG.DND5E.traits`, only needed if key isn't prefixed. + * @returns {string|void} */ -export async function choices(trait, chosen=new Set()) { +export function changeKeyPath(key, trait) { + const split = key.split(":"); + if ( !trait ) trait = split.shift(); + const traitConfig = CONFIG.DND5E.traits[trait]; - if ( foundry.utils.getType(chosen) === "Array" ) chosen = new Set(chosen); + if ( !traitConfig ) return; + + let keyPath = actorKeyPath(trait); + + if ( trait === "saves" ) { + return `${keyPath}.${split.pop()}.proficient`; + } else if ( ["skills", "tool"].includes(trait) ) { + return `${keyPath}.${split.pop()}.value`; + } else { + return `${keyPath}.value`; + } +} - let data = Object.entries(categories(trait)).reduce((obj, [key, label]) => { - obj[key] = { label, chosen: chosen.has(key) }; - return obj; - }, {}); - - if ( traitConfig.children ) { - for ( const [categoryKey, childrenKey] of Object.entries(traitConfig.children) ) { - const children = CONFIG.DND5E[childrenKey]; - if ( !children || !data[categoryKey] ) continue; - data[categoryKey].children = Object.entries(children).reduce((obj, [key, label]) => { - obj[key] = { label, chosen: chosen.has(key) }; - return obj; - }, {}); +/* -------------------------------------------- */ +/* Trait Lists */ +/* -------------------------------------------- */ + +/** + * Build up a trait structure containing all of the children gathered from config & base items. + * @param {string} trait Trait as defined in `CONFIG.DND5E.traits`. + * @returns {Promise} Object with trait categories and children. + */ +export async function categories(trait) { + const traitConfig = CONFIG.DND5E.traits[trait]; + const config = foundry.utils.deepClone(CONFIG.DND5E[traitConfig.configKey ?? trait]); + + for ( const key of Object.keys(config) ) { + if ( foundry.utils.getType(config[key]) !== "Object" ) config[key] = { label: config[key] }; + if ( traitConfig.children?.[key] ) { + const children = config[key].children ??= {}; + for ( const [childKey, value] of Object.entries(CONFIG.DND5E[traitConfig.children[key]]) ) { + if ( foundry.utils.getType(value) !== "Object" ) children[childKey] = { label: value }; + else children[childKey] = { ...value }; + } } } @@ -64,9 +113,9 @@ export async function choices(trait, chosen=new Set()) { const keyPath = `system.${traitConfig.subtypes.keyPath}`; const map = CONFIG.DND5E[`${trait}ProficienciesMap`]; - // Merge all IDs lists together + // Merge all ID lists together const ids = traitConfig.subtypes.ids.reduce((obj, key) => { - if ( CONFIG.DND5E[key] ) Object.assign(obj, CONFIG.DND5E[key]); + foundry.utils.mergeObject(obj, CONFIG.DND5E[key] ?? {}); return obj; }, {}); @@ -84,29 +133,93 @@ export async function choices(trait, chosen=new Set()) { let type = foundry.utils.getProperty(index, keyPath); if ( map?.[type] ) type = map[type]; - const entry = { label: index.name, chosen: chosen.has(key) }; - // No category for this type, add at top level - if ( !data[type] ) data[key] = entry; + if ( !config[type] ) config[key] = { label: index.name }; - // Add as child to appropriate category + // Add as child of appropriate category else { - data[type].children ??= {}; - data[type].children[key] = entry; + config[type].children ??= {}; + config[type].children[key] = { label: index.name }; } } } - // Sort Categories - if ( traitConfig.sortCategories ) data = dnd5e.utils.sortObjectEntries(data, "label"); + return config; +} - // Sort Children - for ( const category of Object.values(data) ) { - if ( !category.children ) continue; - category.children = dnd5e.utils.sortObjectEntries(category.children, "label"); +/* -------------------------------------------- */ + +/** + * Get a list of choices for a specific trait. + * @param {string} trait Trait as defined in `CONFIG.DND5E.traits`. + * @param {object} [options={}] + * @param {Set} [options.chosen=[]] Optional list of keys to be marked as chosen. + * @param {boolean} [options.prefixed=false] Should keys be prefixed with trait type? + * @param {boolean} [options.any=false] Should the "Any" option be added to each category? + * @returns {Promise} Object mapping proficiency ids to choice objects. + */ +export async function choices(trait, { chosen=new Set(), prefixed=false, any=false }={}) { + const traitConfig = CONFIG.DND5E.traits[trait]; + if ( !traitConfig ) return new SelectChoices(); + if ( foundry.utils.getType(chosen) === "Array" ) chosen = new Set(chosen); + const categoryData = await categories(trait); + + let result = {}; + if ( prefixed && any ) { + const key = `${trait}:*`; + result[key] = { + label: keyLabel(key).titleCase(), + chosen: chosen.has(key), sorting: false, wildcard: true + }; } - return data; + const prepareCategory = (key, data, result, prefix) => { + let label = _innerLabel(data, traitConfig); + if ( !label ) label = key; + if ( prefixed ) key = `${prefix}:${key}`; + result[key] = { + label: game.i18n.localize(label), + chosen: chosen.has(key), + sorting: traitConfig.sortCategories === true + }; + if ( data.children ) { + const children = result[key].children = {}; + if ( prefixed && any ) { + const anyKey = `${key}:*`; + children[anyKey] = { + label: keyLabel(anyKey).titleCase(), + chosen: chosen.has(anyKey), sorting: false, wildcard: true + }; + } + Object.entries(data.children).forEach(([k, v]) => prepareCategory(k, v, children, key)); + } + }; + + Object.entries(categoryData).forEach(([k, v]) => prepareCategory(k, v, result, trait)); + + return new SelectChoices(result).sort(); +} + +/* -------------------------------------------- */ + +/** + * Prepare an object with all possible choices from a set of keys. These choices will be grouped by + * trait type if more than one type is present. + * @param {Set} keys Prefixed trait keys. + * @returns {Promise} + */ +export async function mixedChoices(keys) { + if ( !keys.size ) return new SelectChoices(); + const types = {}; + for ( const key of keys ) { + const split = key.split(":"); + const trait = split.shift(); + const selectChoices = (await choices(trait, { prefixed: true })).filter(new Set([key])); + types[trait] ??= { label: traitLabel(trait), children: new SelectChoices() }; + types[trait].children.merge(selectChoices); + } + if ( Object.keys(types).length > 1 ) return new SelectChoices(types); + return Object.values(types)[0].children; } /* -------------------------------------------- */ @@ -190,66 +303,226 @@ export function traitIndexFields() { * @returns {string} Localized label. */ export function traitLabel(trait, count) { - let typeCap; - if ( trait.length === 2 ) typeCap = trait.toUpperCase(); - else typeCap = trait.capitalize(); - - const pluralRule = ( count !== undefined ) ? new Intl.PluralRules(game.i18n.lang).select(count) : "other"; - return game.i18n.localize(`DND5E.Trait${typeCap}Plural.${pluralRule}`); + const traitConfig = CONFIG.DND5E.traits[trait]; + const pluralRule = (count !== undefined) ? new Intl.PluralRules(game.i18n.lang).select(count) : "other"; + if ( !traitConfig ) return game.i18n.localize(`DND5E.TraitGenericPlural.${pluralRule}`); + return game.i18n.localize(`${traitConfig.labels.localization}.${pluralRule}`); } /* -------------------------------------------- */ /** - * Retrieve the proper display label for the provided key. - * @param {string} trait Trait as defined in `CONFIG.DND5E.traits`. - * @param {string} key Key for which to generate the label. - * @returns {string} Retrieved label. + * Retrieve the proper display label for the provided key. Will return a promise unless a categories + * object is provided in config. + * @param {string} key Key for which to generate the label. + * @param {object} [config={}] + * @param {number} [config.count] Number to display, only if a wildcard is used as final part of key. + * @param {string} [config.trait] Trait as defined in `CONFIG.DND5E.traits` if not using a prefixed key. + * @param {boolean} [config.final] Is this the final in a list? + * @returns {string} Retrieved label. + * + * @example + * // Returns "Tool Proficiency" + * keyLabel("tool"); + * + * @example + * // Returns "Artisan's Tools" + * keyLabel("tool:art"); + * + * @example + * // Returns "any Artisan's Tools" + * keyLabel("tool:art:*"); + * + * @example + * // Returns "any 2 Artisan's Tools" + * keyLabel("tool:art:*", { count: 2 }); + * + * @example + * // Returns "2 other Artisan's Tools" + * keyLabel("tool:art:*", { count: 2, final: true }); + * + * @example + * // Returns "Gaming Sets" + * keyLabel("tool:game"); + * + * @example + * // Returns "Land Vehicle" + * keyLabel("tool:vehicle:land"); + * + * @example + * // Returns "Shortsword" + * keyLabel("weapon:shortsword"); + * keyLabel("weapon:simple:shortsword"); + * keyLabel("shortsword", { trait: "weapon" }); */ -export function keyLabel(trait, key) { - const traitConfig = CONFIG.DND5E.traits[trait]; - if ( categories(trait)[key] ) { - const category = categories(trait)[key]; - if ( !traitConfig.labelKey ) return category; - return foundry.utils.getProperty(category, traitConfig.labelKey); +export function keyLabel(key, config={}) { + if ( foundry.utils.getType(config) === "string" ) { + foundry.utils.logCompatibilityWarning("Trait.keyLabel(trait, key) is now Trait.keyLabel(key, { trait }).", { + since: "DnD5e 2.4", until: "DnD5e 2.6" + }); + const tmp = config; + config = { trait: key }; + key = tmp; } + let { count, trait, final } = config; - for ( const childrenKey of Object.values(traitConfig.children ?? {}) ) { - if ( CONFIG.DND5E[childrenKey]?.[key] ) return CONFIG.DND5E[childrenKey]?.[key]; - } + let parts = key.split(":"); + const pluralRules = new Intl.PluralRules(game.i18n.lang); - for ( const idsKey of traitConfig.subtypes?.ids ?? [] ) { - if ( !CONFIG.DND5E[idsKey]?.[key] ) continue; - const index = getBaseItem(CONFIG.DND5E[idsKey][key], { indexOnly: true }); - if ( index ) return index.name; - else break; + if ( !trait ) trait = parts.shift(); + const traitConfig = CONFIG.DND5E.traits[trait]; + if ( !traitConfig ) return key; + const traitData = CONFIG.DND5E[traitConfig.configKey ?? trait] ?? {}; + let categoryLabel = game.i18n.localize(`${traitConfig.labels.localization}.${ + pluralRules.select(count ?? 1)}`); + + // Trait (e.g. "Tool Proficiency") + const lastKey = parts.pop(); + if ( !lastKey ) return categoryLabel; + + // Wildcards (e.g. "Artisan's Tools", "any Artisan's Tools", "any 2 Artisan's Tools", or "2 other Artisan's Tools") + if ( lastKey === "*" ) { + let type; + if ( parts.length ) { + let category = traitData; + do { + category = (category.children ?? category)[parts.shift()]; + if ( !category ) return key; + } while ( parts.length ); + type = _innerLabel(category, traitConfig); + } else type = categoryLabel.toLowerCase(); + const localization = `DND5E.TraitConfigChoose${final ? "Other" : `Any${count ? "Counted" : "Uncounted"}`}`; + return game.i18n.format(localization, { count: count ?? 1, type }); } - return key; + else { + // Category (e.g. "Gaming Sets") + const category = traitData[lastKey]; + if ( category ) return _innerLabel(category, traitConfig); + + // Child (e.g. "Land Vehicle") + for ( const childrenKey of Object.values(traitConfig.children ?? {}) ) { + const childLabel = CONFIG.DND5E[childrenKey]?.[lastKey]; + if ( childLabel ) return childLabel; + } + + // Base item (e.g. "Shortsword") + for ( const idsKey of traitConfig.subtypes?.ids ?? [] ) { + const baseItemId = CONFIG.DND5E[idsKey]?.[lastKey]; + if ( !baseItemId ) continue; + const index = getBaseItem(baseItemId, { indexOnly: true }); + if ( index ) return index.name; + break; + } + + // Explicit categories (e.g. languages) + const searchCategory = (data, key) => { + for ( const [k, v] of Object.entries(data) ) { + if ( k === key ) return v; + if ( v.children ) { + const result = searchCategory(v.children, key); + if ( result ) return result; + } + } + }; + const config = searchCategory(traitData, lastKey); + return config ? _innerLabel(config, traitConfig) : key; + } } /* -------------------------------------------- */ /** * Create a human readable description of the provided choice. - * @param {string} trait Trait as defined in `CONFIG.DND5E.traits`. - * @param {TraitChoice} choice Data for a specific choice. + * @param {TraitChoice} choice Data for a specific choice. + * @param {object} [options={}] + * @param {boolean} [options.only=false] Is this choice on its own, or part of a larger list? + * @param {boolean} [options.final=false] If this choice is part of a list of other grants or choices, + * is it in the final position? * @returns {string} + * + * @example + * // Returns "any three skill proficiencies" + * choiceLabel({ count: 3, pool: new Set(["skills:*"]) }); + * + * @example + * // Returns "three other skill proficiencies" + * choiceLabel({ count: 3, pool: new Set(["skills:*"]) }, { final: true }); + * + * @example + * // Returns "any skill proficiency" + * choiceLabel({ count: 1, pool: new Set(["skills:*"]) }, { only: true }); + * + * @example + * // Returns "Thieves Tools or any skill" + * choiceLabel({ count: 1, pool: new Set(["tool:thief", "skills:*"]) }, { only: true }); + * + * @example + * // Returns "Thieves' Tools or any artisan tool" + * choiceLabel({ count: 1, pool: new Set(["tool:thief", "tool:art:*"]) }, { only: true }); + * + * @example + * // Returns "2 from Thieves' Tools or any skill proficiency" + * choiceLabel({ count: 2, pool: new Set(["tool:thief", "skills:*"]) }); + * */ -export function choiceLabel(trait, choice) { - // Select from any trait values - if ( !choice.pool ) { - return game.i18n.format("DND5E.TraitConfigChooseAny", { - count: choice.count, - type: traitLabel(trait, choice.count).toLowerCase() +export function choiceLabel(choice, { only=false, final=false }={}) { + if ( !choice.pool.size ) return ""; + + // Single entry in pool (e.g. "any three skill proficiencies" or "three other skill proficiencies") + if ( choice.pool.size === 1 ) { + return keyLabel(choice.pool.first(), { + count: (choice.count > 1 || !only) ? choice.count : null, final: final && !only }); } - // Select from a list of options - const choices = choice.pool.map(key => keyLabel(trait, key)); const listFormatter = new Intl.ListFormat(game.i18n.lang, { type: "disjunction" }); + + // Singular count (e.g. "any skill", "Thieves Tools or any skill", or "Thieves' Tools or any artisan tool") + if ( (choice.count === 1) && only ) { + return listFormatter.format(choice.pool.map(key => keyLabel(key))); + } + + // Select from a list of options (e.g. "2 from Thieves' Tools or any skill proficiency") + const choices = choice.pool.map(key => keyLabel(key)); return game.i18n.format("DND5E.TraitConfigChooseList", { count: choice.count, list: listFormatter.format(choices) }); } + +/* -------------------------------------------- */ + +/** + * Create a human readable description of trait grants & choices. + * @param {object} config + * @param {Set} [config.grants] Guaranteed trait grants. + * @param {TraitChoice[]} [config.choices=[]] Trait choices. + * @returns {string} + * + * @example + * // Returns "Acrobatics and Athletics" + * localizedList({ grants: new Set(["skills:acr", "skills:ath"]) }); + * + * @example + * // Returns "Acrobatics and one other skill proficiency" + * localizedList({ grants: new Set(["skills:acr"]), choices: [{ count: 1, pool: new Set(["skills:*"])}] }); + * + * @example + * // Returns "Choose any skill proficiency" + * localizedList({ choices: [{ count: 1, pool: new Set(["skills:*"])}] }); + */ +export function localizedList({ grants=new Set(), choices=[] }) { + const sections = Array.from(grants).map(g => keyLabel(g)); + + for ( const [index, choice] of choices.entries() ) { + const final = index === choices.length - 1; + sections.push(choiceLabel(choice, { final, only: !grants.size && choices.length === 1 })); + } + + const listFormatter = new Intl.ListFormat(game.i18n.lang, { style: "long", type: "conjunction" }); + if ( !sections.length || grants.size ) return listFormatter.format(sections); + return game.i18n.format("DND5E.TraitConfigChooseWrapper", { + choices: listFormatter.format(sections) + }); +} diff --git a/module/documents/advancement/_module.mjs b/module/documents/advancement/_module.mjs index cbb5e7b9ed..ae7596dcad 100644 --- a/module/documents/advancement/_module.mjs +++ b/module/documents/advancement/_module.mjs @@ -5,3 +5,5 @@ export {default as HitPointsAdvancement} from "./hit-points.mjs"; export {default as ItemChoiceAdvancement} from "./item-choice.mjs"; export {default as ItemGrantAdvancement} from "./item-grant.mjs"; export {default as ScaleValueAdvancement} from "./scale-value.mjs"; +export {default as SizeAdvancement} from "./size.mjs"; +export {default as TraitAdvancement} from "./trait.mjs"; diff --git a/module/documents/advancement/ability-score-improvement.mjs b/module/documents/advancement/ability-score-improvement.mjs index c281d32ff6..ff6d99654b 100644 --- a/module/documents/advancement/ability-score-improvement.mjs +++ b/module/documents/advancement/ability-score-improvement.mjs @@ -22,7 +22,7 @@ export default class AbilityScoreImprovementAdvancement extends Advancement { icon: "systems/dnd5e/icons/svg/ability-score-improvement.svg", title: game.i18n.localize("DND5E.AdvancementAbilityScoreImprovementTitle"), hint: game.i18n.localize("DND5E.AdvancementAbilityScoreImprovementHint"), - validItemTypes: new Set(["background", "class"]), + validItemTypes: new Set(["background", "class", "race"]), apps: { config: AbilityScoreImprovementConfig, flow: AbilityScoreImprovementFlow @@ -30,6 +30,17 @@ export default class AbilityScoreImprovementAdvancement extends Advancement { }); } + /* -------------------------------------------- */ + /* Preparation Methods */ + /* -------------------------------------------- */ + + /** @inheritdoc */ + _preCreate(data) { + if ( super._preCreate(data) === false ) return false; + if ( this.item.type !== "class" || foundry.utils.hasProperty(data, "configuration.points") ) return; + this.updateSource({"configuration.points": 2}); + } + /* -------------------------------------------- */ /* Instance Properties */ /* -------------------------------------------- */ @@ -88,22 +99,34 @@ export default class AbilityScoreImprovementAdvancement extends Advancement { /** @inheritdoc */ summaryForLevel(level, { configMode=false }={}) { - if ( (this.value.type === "feat") && this.value.feat ) { + const formatter = new Intl.NumberFormat(game.i18n.lang, { signDisplay: "always" }); + if ( configMode ) { + const entries = Object.entries(this.configuration.fixed).map(([key, value]) => { + if ( !value ) return null; + const name = CONFIG.DND5E.abilities[key]?.label ?? key; + return `${name} ${formatter.format(value)}`; + }); + if ( this.configuration.points ) entries.push(`${ + game.i18n.localize("DND5E.AdvancementAbilityScoreImprovementPoints")}: ${ + this.configuration.points}` + ); + return entries.filterJoin("\n"); + } + else if ( (this.value.type === "feat") && this.value.feat ) { const id = Object.keys(this.value.feat)[0]; const feat = this.actor.items.get(id); if ( feat ) return feat.toAnchor({classes: ["content-link"]}).outerHTML; + } - } else if ( (this.value.type === "asi") && this.value.assignments ) { - - const formatter = new Intl.NumberFormat(game.i18n.lang, { signDisplay: "always" }); + else if ( (this.value.type === "asi") && this.value.assignments ) { return Object.entries(this.value.assignments).reduce((html, [key, value]) => { const name = CONFIG.DND5E.abilities[key]?.label ?? key; html += `${name} ${formatter.format(value)}\n`; return html; }, ""); - } + return ""; } @@ -118,9 +141,10 @@ export default class AbilityScoreImprovementAdvancement extends Advancement { const updates = {}; for ( const key of Object.keys(assignments) ) { const ability = this.actor.system.abilities[key]; + const source = this.actor.system.toObject().abilities[key] ?? {}; if ( !ability || !this.canImprove(key) ) continue; - assignments[key] = Math.min(assignments[key], ability.max - ability.value); - if ( assignments[key] ) updates[`system.abilities.${key}.value`] = ability.value + assignments[key]; + assignments[key] = Math.min(assignments[key], ability.max - source.value); + if ( assignments[key] ) updates[`system.abilities.${key}.value`] = source.value + assignments[key]; else delete assignments[key]; } data.assignments = assignments; @@ -167,7 +191,7 @@ export default class AbilityScoreImprovementAdvancement extends Advancement { if ( this.value.type === "asi" ) { const updates = {}; for ( const [key, change] of Object.entries(this.value.assignments ?? {}) ) { - const ability = this.actor.system.abilities[key]; + const ability = this.actor.system.toObject().abilities[key]; if ( !ability || !this.canImprove(key) ) continue; updates[`system.abilities.${key}.value`] = ability.value - change; } diff --git a/module/documents/advancement/advancement.mjs b/module/documents/advancement/advancement.mjs index 44a304aea2..82cdc78af2 100644 --- a/module/documents/advancement/advancement.mjs +++ b/module/documents/advancement/advancement.mjs @@ -81,7 +81,7 @@ export default class Advancement extends BaseAdvancement { title: game.i18n.localize("DND5E.AdvancementTitle"), hint: "", multiLevel: false, - validItemTypes: new Set(["background", "class", "subclass"]), + validItemTypes: new Set(["background", "class", "race", "subclass"]), apps: { config: AdvancementConfig, flow: AdvancementFlow @@ -169,6 +169,21 @@ export default class Advancement extends BaseAdvancement { this.icon = this.icon || this.constructor.metadata.icon; } + /* -------------------------------------------- */ + + /** + * Perform preliminary operations before an Advancement is created. + * @param {object} data The initial data object provided to the document creation request. + * @returns {boolean|void} A return value of false indicates the creation operation should be cancelled. + * @protected + */ + _preCreate(data) { + if ( !["class", "subclass"].includes(this.item.type) + || foundry.utils.hasProperty(data, "level") + || this.constructor.metadata.multiLevel ) return; + this.updateSource({level: 1}); + } + /* -------------------------------------------- */ /* Display Methods */ /* -------------------------------------------- */ diff --git a/module/documents/advancement/scale-value.mjs b/module/documents/advancement/scale-value.mjs index 596748d13f..b06ba7b586 100644 --- a/module/documents/advancement/scale-value.mjs +++ b/module/documents/advancement/scale-value.mjs @@ -19,7 +19,7 @@ export default class ScaleValueAdvancement extends Advancement { title: game.i18n.localize("DND5E.AdvancementScaleValueTitle"), hint: game.i18n.localize("DND5E.AdvancementScaleValueHint"), multiLevel: true, - validItemTypes: new Set(["class", "subclass"]), + validItemTypes: new Set(["background", "class", "race", "subclass"]), apps: { config: ScaleValueConfig, flow: ScaleValueFlow diff --git a/module/documents/advancement/size.mjs b/module/documents/advancement/size.mjs new file mode 100644 index 0000000000..ffcea70d75 --- /dev/null +++ b/module/documents/advancement/size.mjs @@ -0,0 +1,100 @@ +import Advancement from "./advancement.mjs"; +import SizeConfig from "../../applications/advancement/size-config.mjs"; +import SizeFlow from "../../applications/advancement/size-flow.mjs"; +import { SizeConfigurationData, SizeValueData } from "../../data/advancement/size.mjs"; + +/** + * Advancement that handles player size. + */ +export default class SizeAdvancement extends Advancement { + + /** @inheritdoc */ + static get metadata() { + return foundry.utils.mergeObject(super.metadata, { + dataModels: { + configuration: SizeConfigurationData, + value: SizeValueData + }, + order: 25, + icon: "systems/dnd5e/icons/svg/size.svg", + title: game.i18n.localize("DND5E.AdvancementSizeTitle"), + hint: game.i18n.localize("DND5E.AdvancementSizeHint"), + validItemTypes: new Set(["race"]), + apps: { + config: SizeConfig, + flow: SizeFlow + } + }); + } + + /* -------------------------------------------- */ + /* Instance Properties */ + /* -------------------------------------------- */ + + /** + * Hint that will be displayed to players if none is entered. + * @type {string} + */ + get automaticHint() { + if ( !this.configuration.sizes.size ) return ""; + if ( this.configuration.sizes.size === 1 ) return game.i18n.format("DND5E.AdvancementSizeFlowHintSingle", { + size: CONFIG.DND5E.actorSizes[this.configuration.sizes.first()] + }); + + const listFormatter = new Intl.ListFormat(game.i18n.lang, { type: "disjunction" }); + return game.i18n.format("DND5E.AdvancementSizeflowHintMultiple", { + sizes: listFormatter.format(this.configuration.sizes.map(s => CONFIG.DND5E.actorSizes[s])) + }); + } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + get levels() { + return [0]; + } + + /* -------------------------------------------- */ + /* Display Methods */ + /* -------------------------------------------- */ + + /** @inheritdoc */ + summaryForLevel(level, { configMode=false }={}) { + const sizes = configMode ? Array.from(this.configuration.sizes) : this.value.size ? [this.value.size] : []; + return sizes.map(s => `${CONFIG.DND5E.actorSizes[s]}`).join(""); + } + + /* -------------------------------------------- */ + /* Editing Methods */ + /* -------------------------------------------- */ + + /** @inheritdoc */ + static availableForItem(item) { + return !item.advancement.byType.Size?.length; + } + + /* -------------------------------------------- */ + /* Application Methods */ + /* -------------------------------------------- */ + + /** @inheritdoc */ + async apply(level, data) { + this.actor.updateSource({"system.traits.size": data.size ?? "med"}); + this.updateSource({ value: data }); + } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + async restore(level, data) { + this.apply(level, data); + } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + async reverse(level) { + this.actor.updateSource({"system.traits.size": "med"}); + this.updateSource({ "value.-=size": null }); + } +} diff --git a/module/documents/advancement/trait.mjs b/module/documents/advancement/trait.mjs new file mode 100644 index 0000000000..80850573b9 --- /dev/null +++ b/module/documents/advancement/trait.mjs @@ -0,0 +1,324 @@ +import Advancement from "./advancement.mjs"; +import SelectChoices from "../actor/select-choices.mjs"; +import * as Trait from "../actor/trait.mjs"; +import TraitConfig from "../../applications/advancement/trait-config.mjs"; +import TraitFlow from "../../applications/advancement/trait-flow.mjs"; +import {TraitConfigurationData, TraitValueData} from "../../data/advancement/trait.mjs"; +import { filteredKeys } from "../../utils.mjs"; + +/** + * Advancement that grants the player with certain traits or presents them with a list of traits from which + * to choose. + */ +export default class TraitAdvancement extends Advancement { + + /** @inheritdoc */ + static get metadata() { + return foundry.utils.mergeObject(super.metadata, { + dataModels: { + configuration: TraitConfigurationData, + value: TraitValueData + }, + order: 30, + icon: "systems/dnd5e/icons/svg/trait.svg", + title: game.i18n.localize("DND5E.AdvancementTraitTitle"), + hint: game.i18n.localize("DND5E.AdvancementTraitHint"), + apps: { + config: TraitConfig, + flow: TraitFlow + } + }); + } + + /* -------------------------------------------- */ + + /** + * The maximum number of traits granted by this advancement. The number of traits actually granted may be lower if + * actor already has some traits. + * @type {number} + */ + get maxTraits() { + const { grants, choices } = this.configuration; + return grants.size + choices.reduce((acc, choice) => acc + choice.count, 0); + } + + /* -------------------------------------------- */ + /* Preparation Methods */ + /* -------------------------------------------- */ + + /** + * Prepare data for the Advancement. + */ + prepareData() { + const rep = this.representedTraits(); + const traitConfig = rep.size === 1 ? CONFIG.DND5E.traits[rep.first()] : null; + this.title = this.title || traitConfig?.labels.title || this.constructor.metadata.title; + this.icon = this.icon || traitConfig?.icon || this.constructor.metadata.icon; + } + + /* -------------------------------------------- */ + /* Display Methods */ + /* -------------------------------------------- */ + + /** @inheritdoc */ + configuredForLevel(level) { + return !!this.value.chosen?.size; + } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + sortingValueForLevel(levels) { + const traitOrder = Object.keys(CONFIG.DND5E.traits).findIndex(k => k === this.representedTraits().first()); + const modeOrder = Object.keys(CONFIG.DND5E.traitModes).findIndex(k => k === this.configuration.mode); + const order = traitOrder + (modeOrder * 100); + return `${this.constructor.metadata.order.paddedString(4)} ${order.paddedString(4)} ${this.titleForLevel(levels)}`; + } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + summaryForLevel(level, { configMode=false }={}) { + if ( configMode ) { + if ( this.configuration.hint ) return `${this.configuration.hint}`; + return `${Trait.localizedList({ + grants: this.configuration.grants, choices: this.configuration.choices + })}`; + } else { + return Array.from(this.value.chosen).map(k => `${Trait.keyLabel(k)}`).join(" "); + } + } + + /* -------------------------------------------- */ + /* Application Methods */ + /* -------------------------------------------- */ + + /** @inheritdoc */ + async apply(level, data) { + const updates = {}; + if ( !data.chosen ) return; + + for ( const key of data.chosen ) { + const keyPath = Trait.changeKeyPath(key); + let existingValue = updates[keyPath] ?? foundry.utils.getProperty(this.actor, keyPath); + + if ( ["Array", "Set"].includes(foundry.utils.getType(existingValue)) ) { + existingValue = new Set(existingValue); + existingValue.add(key.split(":").pop()); + updates[keyPath] = Array.from(existingValue); + } else if ( (this.configuration.mode !== "expertise") || (existingValue !== 0) ) { + updates[keyPath] = (this.configuration.mode === "default") + || ((this.configuration.mode === "upgrade") && (existingValue === 0)) ? 1 : 2; + } + } + + this.actor.updateSource(updates); + this.updateSource({ "value.chosen": Array.from(data.chosen) }); + } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + async restore(level, data) { + this.apply(level, data); + } + + /* -------------------------------------------- */ + + /** @inheritdoc */ + async reverse(level) { + const updates = {}; + if ( !this.value.chosen ) return; + + for ( const key of this.value.chosen ) { + const keyPath = Trait.changeKeyPath(key); + let existingValue = updates[keyPath] ?? foundry.utils.getProperty(this.actor, keyPath); + + if ( ["Array", "Set"].includes(foundry.utils.getType(existingValue)) ) { + existingValue = new Set(existingValue); + existingValue.delete(key.split(":").pop()); + updates[keyPath] = Array.from(existingValue); + } + + else if ( this.configuration.mode === "expertise" ) updates[keyPath] = 1; + else if ( this.configuration.mode === "upgrade" ) updates[keyPath] = existingValue === 1 ? 0 : 1; + else updates[keyPath] = 0; + // NOTE: When using forced expertise mode, this will not return to original value + // if the value before being applied is 1. + } + + const retainedData = foundry.utils.deepClone(this.value); + this.actor.updateSource(updates); + this.updateSource({ "value.chosen": [] }); + return retainedData; + } + + /* -------------------------------------------- */ + /* Helper Methods */ + /* -------------------------------------------- */ + + /** + * Two sets of keys based on actor data, one that is considered "selected" and thus unavailable to be chosen + * and another that is "available". This is based off configured advancement mode. + * @returns {{selected: Set, available: Set}} + */ + async actorSelected() { + const selected = new Set(); + const available = new Set(); + + // If "default" mode is selected, return all traits + // If any other mode is selected, only return traits that support expertise + const traitTypes = this.configuration.mode === "default" ? Object.keys(CONFIG.DND5E.traits) + : filteredKeys(CONFIG.DND5E.traits, t => t.expertise); + + for ( const trait of traitTypes ) { + const actorValues = Trait.actorValues(this.actor, trait); + const choices = await Trait.choices(trait, { prefixed: true }); + for ( const key of choices.asSet() ) { + const value = actorValues[key]; + if ( this.configuration.mode === "default" ) { + if ( value >= 1 ) selected.add(key); + else available.add(key); + } else { + if ( value === 2 ) selected.add(key); + if ( (this.configuration.mode === "expertise") && (value === 1) ) available.add(key); + else if ( (this.configuration.mode !== "expertise") && (value < 2) ) available.add(key); + } + } + } + + return { selected, available }; + } + + /* -------------------------------------------- */ + + /** + * Guess the trait type from the grants & choices on this advancement. + * @param {Set[]} [pools] Trait pools to use when figuring out the type. + * @returns {Set} + */ + representedTraits(pools) { + const set = new Set(); + pools ??= [this.configuration.grants, ...this.configuration.choices.map(c => c.pool)]; + for ( const pool of pools ) { + for ( const key of pool ) { + const [type] = key.split(":"); + set.add(type); + } + } + return set; + } + + /* -------------------------------------------- */ + + /** + * Prepare the list of available traits from which the player can choose. + * @param {Set} [chosen] Traits already chosen on the advancement. If not set then it will + * be retrieved from advancement's value. + * @returns {{choices: SelectChoices, label: string}|null} + */ + async availableChoices(chosen) { + // TODO: Still shows "Choose 1 x" even if not possible due to mode restriction + let { available, choices } = await this.unfulfilledChoices(chosen); + + // If all traits of this type are already assigned, then nothing new can be selected + if ( foundry.utils.isEmpty(choices) ) return null; + + // Remove any grants that have no choices remaining + let unfilteredLength = available.length; + available = available.filter(a => a.choices.asSet().size > 0); + + // If replacements are allowed and there are grants with zero choices from their limited set, + // display all remaining choices as an option + if ( this.configuration.allowReplacements && (unfilteredLength > available.length) ) { + const rep = this.representedTraits(); + return { + choices: choices.filter(this.representedTraits().map(t => `${t}:*`), { inplace: false }), + label: game.i18n.format("DND5E.AdvancementTraitChoicesRemaining", { + count: unfilteredLength, + type: Trait.traitLabel(rep.size === 1 ? rep.first() : null, unfilteredLength) + }) + }; + // TODO: This works well for types without categories like skills where it is primarily intended, + // but perhaps there could be some improvements elsewhere. For example, if I have an advancement + // that grants proficiency in the Bagpipes and allows replacements, but the character already has + // Bagpipe proficiency. In this example this just lets them choose from any other tool proficiency + // as their replacement, but it might make sense to only show other musical instruments unless + // they already have proficiency in all musical instruments. Might not be worth the effort. + } + + if ( !available.length ) return null; + + // Create a choices object featuring a union of choices from all remaining grants + const remainingSet = new Set(available.flatMap(a => Array.from(a.choices.asSet()))); + choices.filter(remainingSet); + + const rep = this.representedTraits(available.map(a => a.choices.asSet())); + return { + choices, + label: game.i18n.format("DND5E.AdvancementTraitChoicesRemaining", { + count: available.length, + type: Trait.traitLabel(rep.size === 1 ? rep.first() : null, available.length) + }) + }; + } + + /* -------------------------------------------- */ + + /** + * The advancement configuration is flattened into separate options for the user that are chosen step-by-step. Some + * are automatically picked for them if they are 'grants' or if there is only one option after the character's + * existing traits have been taken into account. + * @typedef {object} TraitChoices + * @property {"grant"|"choice"} type Whether this trait is automatically granted or is chosen from some options. + * @property {number} [choiceIdx] An index that groups each separate choice into the groups that they originally + * came from. + * @property {SelectChoices} choices The available traits to pick from. Grants have only 0 or 1, depending on whether + * the character already has the granted trait. + */ + + /** + * Determine which of the provided grants, if any, still needs to be fulfilled. + * @param {Set} [chosen] Traits already chosen on the advancement. If not set then it will + * be retrieved from advancement's value. + * @returns {{ available: TraitChoices[], choices: SelectChoices }} + */ + async unfulfilledChoices(chosen) { + const actorData = await this.actorSelected(); + const selected = { + actor: actorData.selected, + item: chosen ?? this.value.selected ?? new Set() + }; + + // If everything has already been selected, no need to go further + if ( this.maxTraits <= selected.item.size ) { + return { available: [], choices: new SelectChoices() }; + } + + const available = await Promise.all([ + ...this.configuration.grants.map(async g => ({ + type: "grant", + choices: await Trait.mixedChoices(new Set([g])) + })), + ...this.configuration.choices.reduce((arr, choice, index) => { + return arr.concat(Array.fromRange(choice.count).map(async () => ({ + type: "choice", + choiceIdx: index, + choices: await Trait.mixedChoices(choice.pool) + }))); + }, []) + ]); + + available.sort((lhs, rhs) => lhs.choices.asSet().size - rhs.choices.asSet().size); + + // Remove any fulfilled grants + for ( const key of selected.item ) available.findSplice(grant => grant.choices.asSet().has(key)); + + // Merge all possible choices into a single SelectChoices + const allChoices = await Trait.mixedChoices(actorData.available); + allChoices.exclude(new Set([...(selected.actor ?? []), ...selected.item])); + available.forEach(a => a.choices = allChoices.filter(a.choices, { inplace: false })); + + return { available, choices: allChoices }; + } +} diff --git a/module/documents/item.mjs b/module/documents/item.mjs index 1498304c4a..d11f34fa5e 100644 --- a/module/documents/item.mjs +++ b/module/documents/item.mjs @@ -1,13 +1,15 @@ +import ClassData from "../data/item/class.mjs"; import {d20Roll, damageRoll} from "../dice/dice.mjs"; import simplifyRollFormula from "../dice/simplify-roll-formula.mjs"; import Advancement from "./advancement/advancement.mjs"; import AbilityUseDialog from "../applications/item/ability-use-dialog.mjs"; import Proficiency from "./actor/proficiency.mjs"; +import { SystemDocumentMixin } from "./mixin.mjs"; /** * Override and extend the basic Item implementation. */ -export default class Item5e extends Item { +export default class Item5e extends SystemDocumentMixin(Item) { /** * Caches an item linked to this one, such as a subclass associated with a class. @@ -20,6 +22,14 @@ export default class Item5e extends Item { /* Item Properties */ /* -------------------------------------------- */ + /** + * Is this Item an activatable item? + * @type {boolean} + */ + get isActive() { + return this.system.isActive ?? false; + } + /** * Which ability score modifier is used by this item? * @type {string|null} @@ -119,6 +129,28 @@ export default class Item5e extends Item { /* -------------------------------------------- */ + /** + * Does this Item draw from a resource? + * @type {boolean} + * @see {@link ActivatedEffectTemplate#hasResource} + */ + get hasResource() { + return this.system.hasResource ?? false; + } + + /* -------------------------------------------- */ + + /** + * Does this Item draw from ammunition? + * @type {boolean} + * @see {@link ActivatedEffectTemplate#hasAmmo} + */ + get hasAmmo() { + return this.system.hasAmmo ?? false; + } + + /* -------------------------------------------- */ + /** * Does the Item implement a saving throw as part of its usage? * @type {boolean} @@ -239,8 +271,9 @@ export default class Item5e extends Item { * @type {object} */ get scaleValues() { - if ( !["class", "subclass"].includes(this.type) || !this.advancement.byType.ScaleValue ) return {}; - const level = this.type === "class" ? this.system.levels : this.class?.system.levels ?? 0; + if ( !this.advancement.byType.ScaleValue ) return {}; + const level = this.type === "class" ? this.system.levels : this.type === "subclass" ? this.class?.system.levels + : this.parent?.system.details.level ?? 0; return this.advancement.byType.ScaleValue.reduce((obj, advancement) => { obj[advancement.identifier] = advancement.valueForLevel(level); return obj; @@ -249,6 +282,20 @@ export default class Item5e extends Item { /* -------------------------------------------- */ + /** + * Does this item scale with any kind of consumption? + * @type {string|null} + */ + get usageScaling() { + const { level, preparation, consume } = this.system; + const isLeveled = (this.type === "spell") && (level > 0); + if ( isLeveled && CONFIG.DND5E.spellUpcastModes.includes(preparation.mode) ) return "slot"; + else if ( isLeveled && this.hasResource && consume.scale ) return "resource"; + return null; + } + + /* -------------------------------------------- */ + /** * Spellcasting details for a class or subclass. * @@ -399,23 +446,29 @@ export default class Item5e extends Item { // Ability Activation Label const act = this.system.activation ?? {}; - if ( ["none", ""].includes(act.type) ) act.type = null; // Backwards compatibility - this.labels.activation = act.type ? [act.cost, C.abilityActivationTypes[act.type]].filterJoin(" ") : ""; + if ( !act.type ) act.type = null; // Backwards compatibility + this.labels.activation = act.type ? [ + (act.type in C.staticAbilityActivationTypes) ? null : act.cost, + C.abilityActivationTypes[act.type] + ].filterJoin(" ") : ""; // Target Label let tgt = this.system.target ?? {}; if ( ["none", ""].includes(tgt.type) ) tgt.type = null; // Backwards compatibility if ( [null, "self"].includes(tgt.type) ) tgt.value = tgt.units = null; else if ( tgt.units === "touch" ) tgt.value = null; - this.labels.target = tgt.type - ? [tgt.value, C.distanceUnits[tgt.units], C.targetTypes[tgt.type]].filterJoin(" ") : ""; + + if ( this.hasTarget ) { + this.labels.target = [tgt.value, C.distanceUnits[tgt.units], C.targetTypes[tgt.type]].filterJoin(" "); + } // Range Label let rng = this.system.range ?? {}; if ( ["none", ""].includes(rng.units) ) rng.units = null; // Backwards compatibility if ( [null, "touch", "self"].includes(rng.units) ) rng.value = rng.long = null; - this.labels.range = rng.units - ? [rng.value, rng.long ? `/ ${rng.long}` : null, C.distanceUnits[rng.units]].filterJoin(" ") : ""; + if ( this.isActive && rng.units ) { + this.labels.range = [rng.value, rng.long ? `/ ${rng.long}` : null, C.distanceUnits[rng.units]].filterJoin(" "); + } else this.labels.range = game.i18n.localize("DND5E.None"); // Recharge Label let chg = this.system.recharge ?? {}; @@ -450,7 +503,7 @@ export default class Item5e extends Item { this.advancement = { byId: {}, byLevel: Object.fromEntries( - Array.fromRange(CONFIG.DND5E.maxLevel + 1).slice(minAdvancementLevel).map(l => [l, []]) + Array.fromRange(CONFIG.DND5E.maxLevel + 1, minAdvancementLevel).map(l => [l, []]) ), byType: {}, needingConfiguration: [] @@ -460,7 +513,7 @@ export default class Item5e extends Item { this.advancement.byId[advancement.id] = advancement; this.advancement.byType[advancement.type] ??= []; this.advancement.byType[advancement.type].push(advancement); - advancement.levels.forEach(l => this.advancement.byLevel[l].push(advancement)); + advancement.levels.forEach(l => this.advancement.byLevel[l]?.push(advancement)); if ( !advancement.levels.length ) this.advancement.needingConfiguration.push(advancement); } Object.entries(this.advancement.byLevel).forEach(([lvl, data]) => data.sort((a, b) => { @@ -613,17 +666,15 @@ export default class Item5e extends Item { if ( actorBonus.attack ) parts.push(actorBonus.attack); // One-time bonus provided by consumed ammunition - if ( (this.system.consume?.type === "ammo") && this.actor.items ) { - const ammoItem = this.actor.items.get(this.system.consume.target); - if ( ammoItem ) { - const ammoItemQuantity = ammoItem.system.quantity; - const ammoCanBeConsumed = ammoItemQuantity && (ammoItemQuantity - (this.system.consume.amount ?? 0) >= 0); - const ammoItemAttackBonus = ammoItem.system.attackBonus; - const ammoIsTypeConsumable = (ammoItem.type === "consumable") && (ammoItem.system.consumableType === "ammo"); - if ( ammoCanBeConsumed && ammoItemAttackBonus && ammoIsTypeConsumable ) { - parts.push("@ammo"); - rollData.ammo = ammoItemAttackBonus; - } + const ammo = this.hasAmmo ? this.actor.items.get(this.system.consume.target) : null; + if ( ammo ) { + const ammoItemQuantity = ammo.system.quantity; + const ammoCanBeConsumed = ammoItemQuantity && (ammoItemQuantity - (this.system.consume.amount ?? 0) >= 0); + const ammoItemAttackBonus = ammo.system.attackBonus; + const ammoIsTypeConsumable = (ammo.type === "consumable") && (ammo.system.consumableType === "ammo"); + if ( ammoCanBeConsumed && ammoItemAttackBonus && ammoIsTypeConsumable ) { + parts.push("@ammo"); + rollData.ammo = ammoItemAttackBonus; } } @@ -728,14 +779,12 @@ export default class Item5e extends Item { * Configuration data for an item usage being prepared. * * @typedef {object} ItemUseConfiguration - * @property {boolean} createMeasuredTemplate Trigger a template creation - * @property {boolean} consumeQuantity Should the item's quantity be consumed? - * @property {boolean} consumeRecharge Should a recharge be consumed? - * @property {boolean} consumeResource Should a linked (non-ammo) resource be consumed? - * @property {number|string|null} consumeSpellLevel Specific spell level to consume, or "pact" for pact level. - * @property {boolean} consumeSpellSlot Should any spell slot be consumed? - * @property {boolean} consumeUsage Should limited uses be consumed? - * @property {boolean} needsConfiguration Is user-configuration needed? + * @property {boolean} createMeasuredTemplate Should this item create a template? + * @property {boolean} consumeResource Should this item consume a (non-ammo) resource? + * @property {boolean} consumeSpellSlot Should this item (a spell) consume a spell slot? + * @property {boolean} consumeUsage Should this item consume its limited uses or recharge? + * @property {string|number|null} slotLevel The spell slot type or level to consume by default. + * @property {number|null} resourceAmount The amount to consume by default when scaling with consumption. */ /** @@ -750,21 +799,6 @@ export default class Item5e extends Item { * @property {Event} event The browser event which triggered the item usage, if any. */ - /** - * Trigger an item usage, optionally creating a chat message with followup actions. - * @param {ItemUseOptions} [options] Options used for configuring item usage. - * @returns {Promise} Chat message if options.createMessage is true, message data if it is - * false, and nothing if the roll wasn't performed. - * @deprecated since 2.0 in favor of `Item5e#use`, targeted for removal in 2.4 - */ - async roll(options={}) { - foundry.utils.logCompatibilityWarning( - "Item5e#roll has been renamed Item5e#use. Support for the old name will be removed in future versions.", - { since: "DnD5e 2.0", until: "DnD5e 2.4" } - ); - return this.use(undefined, options); - } - /** * Trigger an item usage, optionally creating a chat message with followup actions. * @param {ItemUseConfiguration} [config] Initial configuration data for the usage. @@ -784,25 +818,13 @@ export default class Item5e extends Item { "flags.dnd5e.use": {type: this.type, itemId: this.id, itemUuid: this.uuid} }, options); - // Reference aspects of the item data necessary for usage - const resource = is.consume || {}; // Resource consumption - const isSpell = item.type === "spell"; // Does the item require a spell slot? - const requireSpellSlot = isSpell && (is.level > 0) && CONFIG.DND5E.spellUpcastModes.includes(is.preparation.mode); - // Define follow-up actions resulting from the item usage - config = foundry.utils.mergeObject({ - createMeasuredTemplate: item.hasAreaTarget, - consumeQuantity: is.uses?.autoDestroy ?? false, - consumeRecharge: !!is.recharge?.value, - consumeResource: !!resource.target && (!item.hasAttack || (resource.type !== "ammo")), - consumeSpellLevel: requireSpellSlot ? is.preparation.mode === "pact" ? "pact" : is.level : null, - consumeSpellSlot: requireSpellSlot, - consumeUsage: !!is.uses?.per && (is.uses?.max > 0) - }, config); - - // Display a configuration dialog to customize the usage - if ( config.needsConfiguration === undefined ) config.needsConfiguration = config.createMeasuredTemplate - || config.consumeRecharge || config.consumeResource || config.consumeSpellSlot || config.consumeUsage; + if ( config.consumeSlotLevel ) { + console.warn("You are passing 'consumeSlotLevel' to the ItemUseConfiguration object, which now expects a key as 'slotLevel'."); + config.slotLevel = config.consumeSlotLevel; + delete config.consumeSlotLevel; + } + config = foundry.utils.mergeObject(this._getUsageConfig(), config); /** * A hook event that fires before an item usage is configured. @@ -815,24 +837,35 @@ export default class Item5e extends Item { */ if ( Hooks.call("dnd5e.preUseItem", item, config, options) === false ) return; + // Are any default values necessitating a prompt? + const needsConfiguration = Object.values(config).includes(true); + // Display configuration dialog - if ( (options.configureDialog !== false) && config.needsConfiguration ) { - const configuration = await AbilityUseDialog.create(item); + if ( (options.configureDialog !== false) && needsConfiguration ) { + const configuration = await AbilityUseDialog.create(item, config); if ( !configuration ) return; foundry.utils.mergeObject(config, configuration); } - // Handle spell upcasting - if ( isSpell && (config.consumeSpellSlot || config.consumeSpellLevel) ) { - const upcastLevel = config.consumeSpellLevel === "pact" ? as.spells.pact.level - : parseInt(config.consumeSpellLevel); - if ( upcastLevel && (upcastLevel !== is.level) ) { - item = item.clone({"system.level": upcastLevel}, {keepId: true}); + // Handle upcasting + if ( item.type === "spell" ) { + let level = null; + if ( config.slotLevel ) { + // A spell slot was consumed. + level = Number.isInteger(config.slotLevel) ? config.slotLevel + : config.slotLevel === "pact" ? as.spells.pact.level : parseInt(config.slotLevel.replace("spell", "")); + } else if ( config.resourceAmount ) { + // A quantity of the resource was consumed. + const diff = config.resourceAmount - (this.system.consume.amount || 1); + level = is.level + diff; + } + if ( level && (level !== is.level) ) { + item = item.clone({"system.level": level}, {keepId: true}); item.prepareData(); item.prepareFinalAttributes(); } } - if ( isSpell ) foundry.utils.mergeObject(options.flags, {"dnd5e.use.spellLevel": item.system.level}); + if ( item.type === "spell" ) foundry.utils.mergeObject(options.flags, {"dnd5e.use.spellLevel": item.system.level}); /** * A hook event that fires before an item's resource consumption has been calculated. @@ -861,16 +894,17 @@ export default class Item5e extends Item { * @param {object} usage.actorUpdates Updates that will be applied to the actor. * @param {object} usage.itemUpdates Updates that will be applied to the item being used. * @param {object[]} usage.resourceUpdates Updates that will be applied to other items on the actor. + * @param {Set} usage.deleteIds Item ids for those which consumption will delete. * @returns {boolean} Explicitly return `false` to prevent item from being used. */ if ( Hooks.call("dnd5e.itemUsageConsumption", item, config, options, usage) === false ) return; // Commit pending data updates - const { actorUpdates, itemUpdates, resourceUpdates } = usage; + const { actorUpdates, itemUpdates, resourceUpdates, deleteIds } = usage; if ( !foundry.utils.isEmpty(itemUpdates) ) await item.update(itemUpdates); - if ( config.consumeQuantity && (item.system.quantity === 0) ) await item.delete(); + if ( !foundry.utils.isEmpty(deleteIds) ) await this.actor.deleteEmbeddedDocuments("Item", [...deleteIds]); if ( !foundry.utils.isEmpty(actorUpdates) ) await this.actor.update(actorUpdates); - if ( resourceUpdates.length ) await this.actor.updateEmbeddedDocuments("Item", resourceUpdates); + if ( !foundry.utils.isEmpty(resourceUpdates) ) await this.actor.updateEmbeddedDocuments("Item", resourceUpdates); // Prepare card data & display it if options.createMessage is true const cardData = await item.displayCard(options); @@ -903,6 +937,40 @@ export default class Item5e extends Item { return cardData; } + /** + * Prepare an object of possible and default values for item usage. A value that is `null` is ignored entirely. + * @returns {ItemUseConfiguration} Configuration data for the roll. + */ + _getUsageConfig() { + const { consume, uses, target, level, preparation } = this.system; + + const config = { + consumeSpellSlot: null, + slotLevel: null, + consumeUsage: null, + consumeResource: null, + resourceAmount: null, + createMeasuredTemplate: null + }; + + const scaling = this.usageScaling; + if ( scaling === "slot" ) { + config.consumeSpellSlot = true; + config.slotLevel = (preparation?.mode === "pact") ? "pact" : `spell${level}`; + } else if ( scaling === "resource" ) { + config.resourceAmount = consume.amount || 1; + } + if ( this.hasLimitedUses ) config.consumeUsage = uses.prompt; + if ( this.hasResource ) { + config.consumeResource = true; + // Do not suggest consuming your own uses if also consuming them through resources. + if ( consume.target === this.id ) config.consumeUsage = null; + } + if ( game.user.can("TEMPLATE_CREATE") && this.hasAreaTarget ) config.createMeasuredTemplate = target.prompt; + + return config; + } + /* -------------------------------------------- */ /** @@ -912,86 +980,103 @@ export default class Item5e extends Item { * @returns {object|boolean} A set of data changes to apply when the item is used, or false. * @protected */ - _getUsageUpdates({ - consumeQuantity, consumeRecharge, consumeResource, consumeSpellSlot, - consumeSpellLevel, consumeUsage}) { + _getUsageUpdates(config) { const actorUpdates = {}; const itemUpdates = {}; const resourceUpdates = []; + const deleteIds = new Set(); - // Consume Recharge - if ( consumeRecharge ) { - const recharge = this.system.recharge || {}; - if ( recharge.charged === false ) { - ui.notifications.warn(game.i18n.format("DND5E.ItemNoUses", {name: this.name})); - return false; - } - itemUpdates["system.recharge.charged"] = false; + // Consume own limited uses or recharge + if ( config.consumeUsage ) { + const canConsume = this._handleConsumeUses(itemUpdates, actorUpdates, resourceUpdates, deleteIds); + if ( canConsume === false ) return false; } // Consume Limited Resource - if ( consumeResource ) { - const canConsume = this._handleConsumeResource(itemUpdates, actorUpdates, resourceUpdates); + if ( config.consumeResource ) { + const canConsume = this._handleConsumeResource(config, itemUpdates, actorUpdates, resourceUpdates, deleteIds); if ( canConsume === false ) return false; } // Consume Spell Slots - if ( consumeSpellSlot && consumeSpellLevel ) { - if ( Number.isNumeric(consumeSpellLevel) ) consumeSpellLevel = `spell${consumeSpellLevel}`; - const level = this.actor?.system.spells[consumeSpellLevel]; + if ( config.consumeSpellSlot ) { + const level = this.actor?.system.spells[config.slotLevel]; const spells = Number(level?.value ?? 0); if ( spells === 0 ) { - const labelKey = consumeSpellLevel === "pact" ? "DND5E.SpellProgPact" : `DND5E.SpellLevel${this.system.level}`; + const labelKey = config.slotLevel === "pact" ? "DND5E.SpellProgPact" : `DND5E.SpellLevel${this.system.level}`; const label = game.i18n.localize(labelKey); ui.notifications.warn(game.i18n.format("DND5E.SpellCastNoSlots", {name: this.name, level: label})); return false; } - actorUpdates[`system.spells.${consumeSpellLevel}.value`] = Math.max(spells - 1, 0); + actorUpdates[`system.spells.${config.slotLevel}.value`] = Math.max(spells - 1, 0); } - // Consume Limited Usage - if ( consumeUsage ) { - const uses = this.system.uses || {}; - const available = Number(uses.value ?? 0); - let used = false; - const remaining = Math.max(available - 1, 0); - if ( available >= 1 ) { + // Return the configured usage + return {itemUpdates, actorUpdates, resourceUpdates, deleteIds}; + } + + /* -------------------------------------------- */ + + /** + * Handle update actions required when consuming an item's uses or recharge + * @param {object} itemUpdates An object of data updates applied to this item + * @param {object} actorUpdates An object of data updates applied to the item owner (Actor) + * @param {object[]} resourceUpdates An array of updates to apply to other items owned by the actor + * @param {Set} deleteIds A set of item ids that will be deleted off the actor + * @returns {boolean|void} Return false to block further progress, or return nothing to continue + * @protected + */ + _handleConsumeUses(itemUpdates, actorUpdates, resourceUpdates, deleteIds) { + const recharge = this.system.recharge || {}; + const uses = this.system.uses || {}; + const quantity = this.system.quantity ?? 1; + let used = false; + + // Consume recharge. + if ( recharge.value ) { + if ( recharge.charged ) { + itemUpdates["system.recharge.charged"] = false; used = true; - itemUpdates["system.uses.value"] = remaining; } + } - // Reduce quantity if not reducing usages or if usages hit zero, and we are set to consumeQuantity - if ( consumeQuantity && (!used || (remaining === 0)) ) { - const q = Number(this.system.quantity ?? 1); - if ( q >= 1 ) { - used = true; - itemUpdates["system.quantity"] = Math.max(q - 1, 0); - itemUpdates["system.uses.value"] = uses.max ?? 1; - } - } + // Consume uses (or quantity). + else if ( uses.max && uses.per && (uses.value > 0) ) { + const remaining = Math.max(uses.value - 1, 0); - // If the item was not used, return a warning - if ( !used ) { - ui.notifications.warn(game.i18n.format("DND5E.ItemNoUses", {name: this.name})); - return false; + if ( remaining > 0 || (!remaining && !uses.autoDestroy) ) { + used = true; + itemUpdates["system.uses.value"] = remaining; + } else if ( quantity >= 2 ) { + used = true; + itemUpdates["system.quantity"] = quantity - 1; + itemUpdates["system.uses.value"] = uses.max; + } else if ( quantity === 1 ) { + used = true; + deleteIds.add(this.id); } } - // Return the configured usage - return {itemUpdates, actorUpdates, resourceUpdates}; + // If the item was not used, return a warning + if ( !used ) { + ui.notifications.warn(game.i18n.format("DND5E.ItemNoUses", {name: this.name})); + return false; + } } /* -------------------------------------------- */ /** * Handle update actions required when consuming an external resource - * @param {object} itemUpdates An object of data updates applied to this item - * @param {object} actorUpdates An object of data updates applied to the item owner (Actor) - * @param {object[]} resourceUpdates An array of updates to apply to other items owned by the actor - * @returns {boolean|void} Return false to block further progress, or return nothing to continue + * @param {ItemUseConfiguration} usageConfig Configuration data for an item usage being prepared. + * @param {object} itemUpdates An object of data updates applied to this item + * @param {object} actorUpdates An object of data updates applied to the item owner (Actor) + * @param {object[]} resourceUpdates An array of updates to apply to other items owned by the actor + * @param {Set} deleteIds A set of item ids that will be deleted off the actor + * @returns {boolean|void} Return false to block further progress, or return nothing to continue * @protected */ - _handleConsumeResource(itemUpdates, actorUpdates, resourceUpdates) { + _handleConsumeResource(usageConfig, itemUpdates, actorUpdates, resourceUpdates, deleteIds) { const consume = this.system.consume || {}; if ( !consume.type ) return; @@ -1004,7 +1089,7 @@ export default class Item5e extends Item { // Identify the consumed resource and its current quantity let resource = null; - let amount = Number(consume.amount ?? 1); + let amount = usageConfig.resourceAmount ? usageConfig.resourceAmount : (consume.amount || 1); let quantity = 0; switch ( consume.type ) { case "attribute": @@ -1061,7 +1146,7 @@ export default class Item5e extends Item { if ( consume.target === "largest" ) sort *= -1; return sort; }); - let toConsume = consume.amount; + let toConsume = amount; for ( const cls of resource ) { const available = (toConsume > 0 ? cls.system.levels : 0) - cls.system.hitDiceUsed; const delta = toConsume > 0 ? Math.min(toConsume, available) : Math.max(toConsume, available); @@ -1076,6 +1161,16 @@ export default class Item5e extends Item { const uses = resource.system.uses || {}; const recharge = resource.system.recharge || {}; const update = {_id: consume.target}; + // Reduce quantity of, or delete, the external resource. + if ( uses.per && uses.max && uses.autoDestroy && (remaining === 0) ) { + update["system.quantity"] = Math.max(resource.system.quantity - 1, 0); + update["system.uses.value"] = uses.max ?? 1; + if ( update["system.quantity"] === 0 ) deleteIds.add(resource.id); + else resourceUpdates.push(update); + break; + } + + // Regular consumption. if ( uses.per && uses.max ) update["system.uses.value"] = remaining; else if ( recharge.value ) update["system.recharge.charged"] = false; resourceUpdates.push(update); @@ -1211,19 +1306,14 @@ export default class Item5e extends Item { if ( options.spellLevel ) rollData.item.level = options.spellLevel; // Handle ammunition consumption - delete this._ammo; - let ammo = null; let ammoUpdate = []; const consume = this.system.consume; - if ( consume?.type === "ammo" ) { - ammo = this.actor.items.get(consume.target); - if ( ammo?.system ) { - const q = ammo.system.quantity; - const consumeAmount = consume.amount ?? 0; - if ( q && (q - consumeAmount >= 0) ) { - this._ammo = ammo; - title += ` [${ammo.name}]`; - } + const ammo = this.hasAmmo ? this.actor.items.get(consume.target) : null; + if ( ammo ) { + const q = ammo.system.quantity; + const consumeAmount = consume.amount ?? 0; + if ( q && (q - consumeAmount >= 0) ) { + title += ` [${ammo.name}]`; } // Get pending ammunition update @@ -1358,11 +1448,11 @@ export default class Item5e extends Item { } // Only add the ammunition damage if the ammunition is a consumable with type 'ammo' - if ( this._ammo && (this._ammo.type === "consumable") && (this._ammo.system.consumableType === "ammo") ) { + const ammo = this.hasAmmo ? this.actor.items.get(this.system.consume.target) : null; + if ( ammo ) { parts.push("@ammo"); - rollData.ammo = this._ammo.system.damage.parts.map(p => p[0]).join("+"); - rollConfig.flavor += ` [${this._ammo.name}]`; - delete this._ammo; + rollData.ammo = ammo.system.damage.parts.map(p => p[0]).join("+"); + rollConfig.flavor += ` [${ammo.name}]`; } // Factor in extra critical damage dice from the Barbarian's "Brutal Critical" @@ -1671,8 +1761,10 @@ export default class Item5e extends Item { const storedData = message.getFlag("dnd5e", "itemData"); const item = storedData ? new this(storedData, {parent: actor}) : actor.items.get(card.dataset.itemId); if ( !item ) { - const err = game.i18n.format("DND5E.ActionWarningNoItem", {item: card.dataset.itemId, name: actor.name}); - return ui.notifications.error(err); + ui.notifications.error(game.i18n.format("DND5E.ActionWarningNoItem", { + item: card.dataset.itemId, name: actor.name + })); + return null; } const spellLevel = parseInt(card.dataset.spellLevel) || null; @@ -1706,7 +1798,7 @@ export default class Item5e extends Item { await item.rollToolCheck({event}); break; case "placeTemplate": try { - await dnd5e.canvas.AbilityTemplate.fromItem(item)?.drawPreview(); + await dnd5e.canvas.AbilityTemplate.fromItem(item, {"flags.dnd5e.spellLevel": spellLevel})?.drawPreview(); } catch(err) { Hooks.onError("Item5e._onChatCardAction", err, { msg: game.i18n.localize("DND5E.PlaceTemplateError"), @@ -1776,7 +1868,7 @@ export default class Item5e extends Item { static _getChatCardTargets(card) { let targets = canvas.tokens.controlled.filter(t => !!t.actor); if ( !targets.length && game.user.character ) targets = targets.concat(game.user.character.getActiveTokens()); - if ( !targets.length ) ui.notifications.warn(game.i18n.localize("DND5E.ActionWarningNoToken")); + if ( !targets.length ) ui.notifications.warn("DND5E.ActionWarningNoToken", {localize: true}); return targets; } @@ -1804,7 +1896,10 @@ export default class Item5e extends Item { throw new Error(`${type} advancement cannot be added to ${this.name}`); } + const createData = foundry.utils.deepClone(data); const advancement = new Advancement(data, {parent: this}); + if ( advancement._preCreate(createData) === false ) return; + const advancementCollection = this.toObject().system.advancement; advancementCollection.push(advancement.toObject()); if ( source ) return this.updateSource({"system.advancement": advancementCollection}); @@ -1904,7 +1999,7 @@ export default class Item5e extends Item { /** @inheritdoc */ async _preCreate(data, options, user) { - await super._preCreate(data, options, user); + if ( (await super._preCreate(data, options, user)) === false ) return false; // Create class identifier based on name if ( ["class", "subclass"].includes(this.type) && !this.system.identifier ) { @@ -1949,12 +2044,12 @@ export default class Item5e extends Item { /** @inheritdoc */ async _preUpdate(changed, options, user) { - await super._preUpdate(changed, options, user); + if ( (await super._preUpdate(changed, options, user)) === false ) return false; if ( (this.type !== "class") || !("levels" in (changed.system || {})) ) return; // Check to make sure the updated class level isn't below zero if ( changed.system.levels <= 0 ) { - ui.notifications.warn(game.i18n.localize("DND5E.MaxClassLevelMinimumWarn")); + ui.notifications.warn("DND5E.MaxClassLevelMinimumWarn", {localize: true}); changed.system.levels = 1; } @@ -2028,7 +2123,7 @@ export default class Item5e extends Item { * Pre-creation logic for the automatic configuration of owned weapon type Items. * @param {object} data Data for the newly created item. * @param {boolean} isNPC Is this actor an NPC? - * @returns {object} Updates to apply to the item data. + * @returns {object|void} Updates to apply to the item data. * @private */ _onCreateOwnedWeapon(data, isNPC) { @@ -2068,6 +2163,17 @@ export default class Item5e extends Item { // Get spell data const itemData = (spell instanceof Item5e) ? spell.toObject() : spell; + + /** + * A hook event that fires before the item data for a scroll is created. + * @function dnd5e.preCreateScrollFromSpell + * @memberof hookEvents + * @param {object} itemData The initial item data of the spell to convert to a scroll + * @param {object} [options] Additional options that modify the created scroll + * @returns {boolean} Explicitly return false to prevent the scroll to be created. + */ + if ( Hooks.call("dnd5e.preCreateScrollFromSpell", itemData, options) === false ) return; + let { actionType, description, source, activation, duration, target, range, damage, formula, save, level, attackBonus, ability, components @@ -2087,11 +2193,13 @@ export default class Item5e extends Item { const scrollDetails = scrollDescription.slice(scrollIntroEnd + pdel.length); // Create a composite description from the scroll description and the spell details - const desc = scrollIntro - + `${itemData.name} (${game.i18n.format("DND5E.LevelNumber", {level})})` - + (components.concentration ? `${game.i18n.localize("DND5E.ScrollRequiresConcentration")}` : "") - + `${description.value}` - + `${game.i18n.localize("DND5E.ScrollDetails")}${scrollDetails}`; + const desc = ` + ${scrollIntro} + ${itemData.name} (${game.i18n.format("DND5E.LevelNumber", {level})}) + ${(components.concentration ? `${game.i18n.localize("DND5E.ScrollRequiresConcentration")}` : "")} + ${description.value} + ${game.i18n.localize("DND5E.ScrollDetails")}${scrollDetails} + `; // Used a fixed attack modifier and saving throw according to the level of spell scroll. if ( ["mwak", "rwak", "msak", "rsak"].includes(actionType) ) { @@ -2126,23 +2234,13 @@ export default class Item5e extends Item { } /* -------------------------------------------- */ - /* Deprecations */ + /* Migrations & Deprecations */ /* -------------------------------------------- */ - /** - * Retrieve an item's critical hit threshold. Uses the smallest value from among the following sources: - * - item document - * - item document's actor (if it has one) - * - item document's ammunition (if it has any) - * - the constant '20' - * @returns {number|null} The minimum value that must be rolled to be considered a critical hit. - * @deprecated since dnd5e 2.2, targeted for removal in 2.4 - */ - getCriticalThreshold() { - foundry.utils.logCompatibilityWarning( - "Item5e#getCriticalThreshold has been replaced with the Item5e#criticalThreshold getter.", - { since: "DnD5e 2.2", until: "DnD5e 2.4" } - ); - return this.criticalThreshold; + /** @inheritdoc */ + static migrateData(source) { + source = super.migrateData(source); + if ( source.type === "class" ) ClassData._migrateTraitAdvancement(source); + return source; } } diff --git a/module/documents/macro.mjs b/module/documents/macro.mjs index 32aedae900..6cfc449f31 100644 --- a/module/documents/macro.mjs +++ b/module/documents/macro.mjs @@ -2,13 +2,17 @@ * Attempt to create a macro from the dropped data. Will use an existing macro if one exists. * @param {object} dropData The dropped data * @param {number} slot The hotbar slot to use + * @returns {Promise} */ export async function create5eMacro(dropData, slot) { const macroData = { type: "script", scope: "actor" }; switch ( dropData.type ) { case "Item": const itemData = await Item.implementation.fromDropData(dropData); - if ( !itemData ) return ui.notifications.warn(game.i18n.localize("MACRO.5eUnownedWarn")); + if ( !itemData ) { + ui.notifications.warn("MACRO.5eUnownedWarn", {localize: true}); + return null; + } foundry.utils.mergeObject(macroData, { name: itemData.name, img: itemData.img, @@ -18,7 +22,10 @@ export async function create5eMacro(dropData, slot) { break; case "ActiveEffect": const effectData = await ActiveEffect.implementation.fromDropData(dropData); - if ( !effectData ) return ui.notifications.warn(game.i18n.localize("MACRO.5eUnownedWarn")); + if ( !effectData ) { + ui.notifications.warn("MACRO.5eUnownedWarn", {localize: true}); + return null; + } foundry.utils.mergeObject(macroData, { name: effectData.label, img: effectData.icon, @@ -50,7 +57,10 @@ function getMacroTarget(name, documentType) { const speaker = ChatMessage.getSpeaker(); if ( speaker.token ) actor = game.actors.tokens[speaker.token]; actor ??= game.actors.get(speaker.actor); - if ( !actor ) return ui.notifications.warn(game.i18n.localize("MACRO.5eNoActorSelected")); + if ( !actor ) { + ui.notifications.warn("MACRO.5eNoActorSelected", {localize: true}); + return null; + } const collection = (documentType === "Item") ? actor.items : actor.effects; const nameKeyPath = (documentType === "Item") ? "name" : "label"; @@ -59,7 +69,8 @@ function getMacroTarget(name, documentType) { const documents = collection.filter(i => foundry.utils.getProperty(i, nameKeyPath) === name); const type = game.i18n.localize(`DOCUMENT.${documentType}`); if ( documents.length === 0 ) { - return ui.notifications.warn(game.i18n.format("MACRO.5eMissingTargetWarn", { actor: actor.name, type, name })); + ui.notifications.warn(game.i18n.format("MACRO.5eMissingTargetWarn", { actor: actor.name, type, name })); + return null; } if ( documents.length > 1 ) { ui.notifications.warn(game.i18n.format("MACRO.5eMultipleTargetsWarn", { actor: actor.name, type, name })); diff --git a/module/documents/mixin.mjs b/module/documents/mixin.mjs new file mode 100644 index 0000000000..d84b15b3c3 --- /dev/null +++ b/module/documents/mixin.mjs @@ -0,0 +1,109 @@ +/** + * Mixin used to share some logic between Actor & Item documents. + * @type {function(Class)} + * @mixin + */ +export const SystemDocumentMixin = Base => class extends Base { + + /* -------------------------------------------- */ + /* Socket Event Handlers */ + /* -------------------------------------------- */ + + /** + * Perform preliminary operations before a Document of this type is created. + * Pre-creation operations only occur for the client which requested the operation. + * @param {object} data The initial data object provided to the document creation request. + * @param {object} options Additional options which modify the creation request. + * @param {User} user The User requesting the document creation. + * @returns {Promise} A return value of false indicates the creation operation should be cancelled. + * @see {Document#_preCreate} + * @protected + */ + async _preCreate(data, options, user) { + let allowed = await super._preCreate(data, options, user); + if ( allowed !== false ) allowed = await this.system._preCreate?.(data, options, user); + return allowed; + } + + /* -------------------------------------------- */ + + /** + * Perform preliminary operations before a Document of this type is updated. + * Pre-update operations only occur for the client which requested the operation. + * @param {object} changed The differential data that is changed relative to the documents prior values + * @param {object} options Additional options which modify the update request + * @param {documents.BaseUser} user The User requesting the document update + * @returns {Promise} A return value of false indicates the update operation should be cancelled. + * @see {Document#_preUpdate} + * @protected + */ + async _preUpdate(changed, options, user) { + let allowed = await super._preUpdate(changed, options, user); + if ( allowed !== false ) allowed = await this.system._preUpdate?.(changed, options, user); + return allowed; + } + + /* -------------------------------------------- */ + + /** + * Perform preliminary operations before a Document of this type is deleted. + * Pre-delete operations only occur for the client which requested the operation. + * @param {object} options Additional options which modify the deletion request + * @param {documents.BaseUser} user The User requesting the document deletion + * @returns {Promise} A return value of false indicates the deletion operation should be cancelled. + * @see {Document#_preDelete} + * @protected + */ + async _preDelete(options, user) { + let allowed = await super._preDelete(options, user); + if ( allowed !== false ) allowed = await this.system._preDelete?.(options, user); + return allowed; + } + + /* -------------------------------------------- */ + + /** + * Perform follow-up operations after a Document of this type is created. + * Post-creation operations occur for all clients after the creation is broadcast. + * @param {object} data The initial data object provided to the document creation request + * @param {object} options Additional options which modify the creation request + * @param {string} userId The id of the User requesting the document update + * @see {Document#_onCreate} + * @protected + */ + _onCreate(data, options, userId) { + super._onCreate(data, options, userId); + this.system._onCreate?.(data, options, userId); + } + + /* -------------------------------------------- */ + + /** + * Perform follow-up operations after a Document of this type is updated. + * Post-update operations occur for all clients after the update is broadcast. + * @param {object} changed The differential data that was changed relative to the documents prior values + * @param {object} options Additional options which modify the update request + * @param {string} userId The id of the User requesting the document update + * @see {Document#_onUpdate} + * @protected + */ + _onUpdate(changed, options, userId) { + super._onUpdate(changed, options, userId); + this.system._onUpdate?.(changed, options, userId); + } + + /* -------------------------------------------- */ + + /** + * Perform follow-up operations after a Document of this type is deleted. + * Post-deletion operations occur for all clients after the deletion is broadcast. + * @param {object} options Additional options which modify the deletion request + * @param {string} userId The id of the User requesting the document update + * @see {Document#_onDelete} + * @protected + */ + _onDelete(options, userId) { + super._onDelete(options, userId); + this.system._onDelete?.(options, userId); + } +}; diff --git a/module/enrichers.mjs b/module/enrichers.mjs new file mode 100644 index 0000000000..2afb7f5db4 --- /dev/null +++ b/module/enrichers.mjs @@ -0,0 +1,425 @@ +import { simplifyBonus } from "./utils.mjs"; +import { damageRoll } from "./dice/_module.mjs"; +import * as Trait from "./documents/actor/trait.mjs"; + +/** + * Set up the custom text enricher. + */ +export function registerCustomEnrichers() { + CONFIG.TextEditor.enrichers.push({ + pattern: /\[\[\/(?check|damage|save|skill|tool) (?[^\]]+)]](?:{(?[^}]+)})?/gi, + enricher: enrichString + }); + + document.body.addEventListener("click", rollAction); +} + +/* -------------------------------------------- */ + +/** + * Parse the enriched string and provide the appropriate content. + * @param {RegExpMatchArray} match The regular expression match result. + * @param {EnrichmentOptions} options Options provided to customize text enrichment. + * @returns {Promise} An HTML element to insert in place of the matched text or null to + * indicate that no replacement should be made. + */ +async function enrichString(match, options) { + let { type, config, label } = match.groups; + config = parseConfig(config, match.input); + config.input = match[0]; + switch ( type.toLowerCase() ) { + case "damage": return enrichDamage(config, label, options); + case "check": + case "skill": + case "tool": return enrichCheck(config, label, options); + case "save": return enrichSave(config, label, options); + } + return match.input; +} + +/* -------------------------------------------- */ + +/** + * Parse a roll string into a configuration object. + * @param {string} match Matched configuration string. + * @returns {object} + */ +function parseConfig(match) { + const config = { values: [] }; + for ( const part of match.split(" ") ) { + if ( !part ) continue; + const [key, value] = part.split("="); + const valueLower = value?.toLowerCase(); + if ( value === undefined ) config.values.push(key); + else if ( ["true", "false"].includes(valueLower) ) config[key] = valueLower === "true"; + else if ( Number.isNumeric(value) ) config[key] = Number(value); + else config[key] = value; + } + return config; +} + +/* -------------------------------------------- */ +/* Enrichers */ +/* -------------------------------------------- */ + +/** + * Enrich an ability check link to perform a specific ability or skill check. If an ability is provided + * along with a skill, then the skill check will always use the provided ability. Otherwise it will use + * the character's default ability for that skill. + * @param {string[]} config Configuration data. + * @param {string} [label] Optional label to replace default text. + * @param {EnrichmentOptions} options Options provided to customize text enrichment. + * @returns {HTMLElement|null} An HTML link if the check could be built, otherwise null. + * + * @example Create a dexterity check: + * ```[[/check ability=dex]]``` + * becomes + * ```html + * + * Dexterity check + * + * ``` + * + * @example Create an acrobatics check with a DC and default ability: + * ```[[/check skill=acr dc=20]]``` + * becomes + * ```html + * + * DC 20 Dexterity (Acrobatics) check + * + * ``` + * + * @example Create an acrobatics check using strength: + * ```[[/check ability=str skill=acr]]``` + * becomes + * ```html + * + * Strength (Acrobatics) check + * + * ``` + * + * @example Create a tool check: + * ```[[/check tool=thief ability=int]]``` + * becomes + * ```html + * + * Intelligence (Thieves' Tools) check + * + * ``` + * + * @example Formulas used for DCs will be resolved using data provided to the description (not the roller): + * ```[[/check ability=cha dc=@abilities.int.dc]]``` + * becomes + * ```html + * + * DC 15 Charisma check + * + * ``` + */ +async function enrichCheck(config, label, options) { + for ( const value of config.values ) { + if ( value in CONFIG.DND5E.enrichmentLookup.abilities ) config.ability = value; + else if ( value in CONFIG.DND5E.enrichmentLookup.skills ) config.skill = value; + else if ( value in CONFIG.DND5E.enrichmentLookup.tools ) config.tool = value; + else if ( Number.isNumeric(value) ) config.dc = Number(value); + else config[value] = true; + } + + let invalid = false; + + const skillConfig = CONFIG.DND5E.enrichmentLookup.skills[config.skill]; + if ( config.skill && !skillConfig ) { + console.warn(`Skill ${config.skill} not found while enriching ${config.input}.`); + invalid = true; + } else if ( config.skill && !config.ability ) { + config.ability = skillConfig.ability; + } + + const toolUUID = CONFIG.DND5E.enrichmentLookup.tools[config.tool]; + const toolIndex = toolUUID ? Trait.getBaseItem(toolUUID, { indexOnly: true }) : null; + if ( config.tool && !toolIndex ) { + console.warn(`Tool ${config.tool} not found while enriching ${config.input}.`); + invalid = true; + } + + let abilityConfig = CONFIG.DND5E.enrichmentLookup.abilities[config.ability]; + if ( config.ability && !abilityConfig ) { + console.warn(`Ability ${ability} not found while enriching ${config.input}.`); + invalid = true; + } else if ( !abilityConfig ) { + console.warn(`No ability provided while enriching check ${config.input}.`); + invalid = true; + } + + if ( config.dc && !Number.isNumeric(config.dc) ) config.dc = simplifyBonus(config.dc, options.rollData ?? {}); + + if ( invalid ) return config.input; + + // Insert the icon and label into the link + if ( !label ) { + const ability = abilityConfig?.label; + const skill = skillConfig?.label; + const tool = toolIndex?.name; + if ( ability && (skill || tool) ) { + label = game.i18n.format("EDITOR.DND5E.Inline.SpecificCheck", { ability, type: skill ?? tool }); + } else { + label = ability; + } + const longSuffix = config.format === "long" ? "Long" : "Short"; + if ( config.passive ) { + label = game.i18n.format(`EDITOR.DND5E.Inline.DCPassive${longSuffix}`, { dc: config.dc, check: label }); + } else { + if ( config.dc ) label = game.i18n.format("EDITOR.DND5E.Inline.DC", { dc: config.dc, check: label }); + label = game.i18n.format(`EDITOR.DND5E.Inline.Check${longSuffix}`, { check: label }); + } + } + + if ( config.passive ) return createPassiveTag(label, config); + const type = config.skill ? "skill" : config.tool ? "tool" : "check"; + return createRollLink(label, { type, ...config }); +} + +/* -------------------------------------------- */ + +/** + * Enrich a damage link. + * @param {string[]} config Configuration data. + * @param {string} [label] Optional label to replace default text. + * @param {EnrichmentOptions} options Options provided to customize text enrichment. + * @returns {HTMLElement|null} An HTML link if the save could be built, otherwise null. + * + * @example Create a damage link: + * ```[[/damage 2d6 type=bludgeoning]]`` + * becomes + * ```html + * + * 2d6 + * bludgeoning + * ```` + * + * @example Display the average: + * ```[[/damage 2d6 type=bludgeoning average=true]]`` + * becomes + * ```html + * 7 ( + * 2d6 + * ) bludgeoning + * ```` + * + * @example Manually set the average & don't prefix the type: + * ```[[/damage 8d4dl force average=666]]`` + * becomes + * ```html + * 666 ( + * 8d4dl + * force + * ```` + */ +async function enrichDamage(config, label, options) { + const formulaParts = []; + if ( config.formula ) formulaParts.push(config.formula); + for ( const value of config.values ) { + if ( value in CONFIG.DND5E.damageTypes ) config.type = value; + else if ( value === "average" ) config.average = true; + else formulaParts.push(value); + } + config.formula = Roll.defaultImplementation.replaceFormulaData(formulaParts.join(" "), options.rollData ?? {}); + if ( !config.formula ) return null; + config.damageType = config.type; + config.type = "damage"; + + if ( label ) return createRollLink(label, config); + + const localizationData = { + formula: createRollLink(config.formula, config).outerHTML, + type: game.i18n.localize(CONFIG.DND5E.damageTypes[config.damageType] ?? "").toLowerCase() + }; + + let localizationType = "Short"; + if ( config.average ) { + localizationType = "Long"; + if ( config.average === true ) { + const minRoll = Roll.create(config.formula).evaluate({ minimize: true, async: true }); + const maxRoll = Roll.create(config.formula).evaluate({ maximize: true, async: true }); + localizationData.average = Math.floor((await minRoll.total + await maxRoll.total) / 2); + } else if ( Number.isNumeric(config.average) ) { + localizationData.average = config.average; + } + } + + const span = document.createElement("span"); + span.innerHTML = game.i18n.format(`EDITOR.DND5E.Inline.Damage${localizationType}`, localizationData); + return span; +} + +/* -------------------------------------------- */ + +/** + * Enrich a saving throw link. + * @param {string[]} config Configuration data. + * @param {string} [label] Optional label to replace default text. + * @param {EnrichmentOptions} options Options provided to customize text enrichment. + * @returns {HTMLElement|null} An HTML link if the save could be built, otherwise null. + * + * @example Create a dexterity saving throw: + * ```[[/save ability=dex]]``` + * becomes + * ```html + * + * Dexterity + * + * ``` + * + * @example Add a DC to the save: + * ```[[/save ability=dex dc=20]]``` + * becomes + * ```html + * + * DC 20 Dexterity + * + * ``` + */ +async function enrichSave(config, label, options) { + for ( const value of config.values ) { + if ( value in CONFIG.DND5E.enrichmentLookup.abilities ) config.ability = value; + else if ( Number.isNumeric(value) ) config.dc = Number(value); + else config[value] = true; + } + + const abilityConfig = CONFIG.DND5E.enrichmentLookup.abilities[config.ability]; + if ( !abilityConfig ) { + console.warn(`Ability ${config.ability} not found while enriching ${config.input}.`); + return config.input; + } + + if ( config.dc && !Number.isNumeric(config.dc) ) config.dc = simplifyBonus(config.dc, options.rollData ?? {}); + + if ( !label ) { + label = abilityConfig.label; + if ( config.dc ) label = game.i18n.format("EDITOR.DND5E.Inline.DC", { dc: config.dc, check: label }); + label = game.i18n.format(`EDITOR.DND5E.Inline.Save${config.format === "long" ? "Long" : "Short"}`, { + save: label + }); + } + + return createRollLink(label, { type: "save", ...config }); +} + +/* -------------------------------------------- */ + +/** + * Add a dataset object to the provided element. + * @param {HTMLElement} element Element to modify. + * @param {object} dataset Data properties to add. + * @private + */ +function _addDataset(element, dataset) { + for ( const [key, value] of Object.entries(dataset) ) { + if ( !["input", "values"].includes(key) && value ) element.dataset[key] = value; + } +} + +/* -------------------------------------------- */ + +/** + * Create a passive skill tag. + * @param {string} label Label to display. + * @param {object} dataset Data that will be added to the tag. + * @returns {HTMLElement} + */ +function createPassiveTag(label, dataset) { + const span = document.createElement("span"); + span.classList.add("passive-check"); + _addDataset(span, dataset); + span.innerText = label; + return span; +} + +/* -------------------------------------------- */ + +/** + * Create a rollable link. + * @param {string} label Label to display. + * @param {object} dataset Data that will be added to the link for the rolling method. + * @returns {HTMLElement} + */ +function createRollLink(label, dataset) { + const link = document.createElement("a"); + link.classList.add("roll-link"); + _addDataset(link, dataset); + link.innerHTML = ` ${label}`; + return link; +} + +/* -------------------------------------------- */ +/* Actions */ +/* -------------------------------------------- */ + +/** + * Perform the provided roll action. + * @param {Event} event The click event triggering the action. + * @returns {Promise|void} + */ +function rollAction(event) { + const target = event.target.closest(".roll-link"); + if ( !target ) return; + event.stopPropagation(); + + const { type, ability, skill, tool, dc } = target.dataset; + const options = { event }; + if ( dc ) options.targetValue = dc; + + // Fetch the actor that should perform the roll + let actor; + const speaker = ChatMessage.implementation.getSpeaker(); + if ( speaker.token ) actor = game.actors.tokens[speaker.token]; + actor ??= game.actors.get(speaker.actor); + if ( !actor && (type !== "damage") ) { + ui.notifications.warn(game.i18n.localize("EDITOR.DND5E.Inline.NoActorWarning")); + return; + } + + switch ( type ) { + case "check": + return actor.rollAbilityTest(ability, options); + case "damage": + return rollDamage(event, speaker); + case "save": + return actor.rollAbilitySave(ability, options); + case "skill": + if ( ability ) options.ability = ability; + return actor.rollSkill(skill, options); + case "tool": + options.ability = ability; + return actor.rollToolCheck(tool, options); + default: + return console.warn(`DnD5e | Unknown roll type ${type} provided.`); + } +} + +/* -------------------------------------------- */ + +/** + * Perform a damage roll. + * @param {Event} event The click event triggering the action. + * @param {TokenDocument} [speaker] Currently selected token, if one exists. + * @returns {Promise|void} + */ +async function rollDamage(event, speaker) { + const target = event.target.closest(".roll-link"); + const { formula, damageType } = target.dataset; + + const title = game.i18n.localize("DND5E.DamageRoll"); + const messageData = { "flags.dnd5e.roll.type": "damage", speaker }; + const rollConfig = { + parts: [formula], + flavor: `${title} (${game.i18n.localize(CONFIG.DND5E.damageTypes[damageType] ?? damageType)})`, + event, + title, + messageData + }; + + if ( Hooks.call("dnd5e.preRollDamage", undefined, rollConfig) === false ) return; + const roll = await damageRoll(rollConfig); + if ( roll ) Hooks.callAll("dnd5e.rollDamage", undefined, roll); +} diff --git a/module/migration.mjs b/module/migration.mjs index f46fa56314..240772bf89 100644 --- a/module/migration.mjs +++ b/module/migration.mjs @@ -13,11 +13,15 @@ export const migrateWorld = async function() { .concat(Array.from(game.actors.invalidDocumentIds).map(id => [game.actors.getInvalid(id), false])); for ( const [actor, valid] of actors ) { try { + const flags = { persistSourceMigration: false }; const source = valid ? actor.toObject() : game.data.actors.find(a => a._id === actor.id); - const updateData = migrateActorData(source, migrationData); + let updateData = migrateActorData(source, migrationData, flags); if ( !foundry.utils.isEmpty(updateData) ) { console.log(`Migrating Actor document ${actor.name}`); - await actor.update(updateData, {enforceTypes: false, diff: valid}); + if ( flags.persistSourceMigration ) { + updateData = foundry.utils.mergeObject(source, updateData, {inplace: false}); + } + await actor.update(updateData, {enforceTypes: false, diff: valid && !flags.persistSourceMigration}); } } catch(err) { err.message = `Failed dnd5e system migration for Actor ${actor.name}: ${err.message}`; @@ -30,11 +34,15 @@ export const migrateWorld = async function() { .concat(Array.from(game.items.invalidDocumentIds).map(id => [game.items.getInvalid(id), false])); for ( const [item, valid] of items ) { try { + const flags = { persistSourceMigration: false }; const source = valid ? item.toObject() : game.data.items.find(i => i._id === item.id); - const updateData = migrateItemData(source, migrationData); + let updateData = migrateItemData(source, migrationData, flags); if ( !foundry.utils.isEmpty(updateData) ) { console.log(`Migrating Item document ${item.name}`); - await item.update(updateData, {enforceTypes: false, diff: valid}); + if ( flags.persistSourceMigration ) { + updateData = foundry.utils.mergeObject(source, updateData, {inplace: false}); + } + await item.update(updateData, {enforceTypes: false, diff: valid && !flags.persistSourceMigration}); } } catch(err) { err.message = `Failed dnd5e system migration for Item ${item.name}: ${err.message}`; @@ -64,7 +72,7 @@ export const migrateWorld = async function() { console.log(`Migrating RollTable document ${table.name}`); await table.update(updateData, { enforceTypes: false }); } - } catch ( err ) { + } catch(err) { err.message = `Failed dnd5e system migration for RollTable ${table.name}: ${err.message}`; console.error(err); } @@ -124,21 +132,24 @@ export const migrateCompendium = async function(pack) { for ( let doc of documents ) { let updateData = {}; try { + const flags = { persistSourceMigration: false }; + const source = doc.toObject(); switch (documentName) { case "Actor": - updateData = migrateActorData(doc.toObject(), migrationData); + updateData = migrateActorData(source, migrationData, flags); break; case "Item": - updateData = migrateItemData(doc.toObject(), migrationData); + updateData = migrateItemData(source, migrationData, flags); break; case "Scene": - updateData = migrateSceneData(doc.toObject(), migrationData); + updateData = migrateSceneData(source, migrationData, flags); break; } // Save the entry, if data was changed if ( foundry.utils.isEmpty(updateData) ) continue; - await doc.update(updateData); + if ( flags.persistSourceMigration ) updateData = foundry.utils.mergeObject(source, updateData); + await doc.update(updateData, { diff: !flags.persistSourceMigration }); console.log(`Migrated ${documentName} document ${doc.name} in Compendium ${pack.collection}`); } @@ -247,12 +258,14 @@ export const migrateArmorClass = async function(pack) { * Return an Object of updateData to be applied * @param {object} actor The actor data object to update * @param {object} [migrationData] Additional data to perform the migration + * @param {object} [flags={}] Track the needs migration flag. * @returns {object} The updateData to apply */ -export const migrateActorData = function(actor, migrationData) { +export const migrateActorData = function(actor, migrationData, flags={}) { const updateData = {}; _migrateTokenImage(actor, updateData); _migrateActorAC(actor, updateData); + _migrateActorMovementSenses(actor, updateData); // Migrate embedded effects if ( actor.effects ) { @@ -265,7 +278,12 @@ export const migrateActorData = function(actor, migrationData) { const items = actor.items.reduce((arr, i) => { // Migrate the Owned Item const itemData = i instanceof CONFIG.Item.documentClass ? i.toObject() : i; - let itemUpdate = migrateItemData(itemData, migrationData); + const itemFlags = { persistSourceMigration: false }; + let itemUpdate = migrateItemData(itemData, migrationData, itemFlags); + + if ( (itemData.type === "background") && (actor.system?.details?.background !== itemData._id) ) { + updateData["system.details.background"] = itemData._id; + } // Prepared, Equipped, and Proficient for NPC actors if ( actor.type === "npc" ) { @@ -275,8 +293,11 @@ export const migrateActorData = function(actor, migrationData) { // Update the Owned Item if ( !foundry.utils.isEmpty(itemUpdate) ) { - itemUpdate._id = itemData._id; - arr.push(foundry.utils.expandObject(itemUpdate)); + if ( itemFlags.persistSourceMigration ) { + itemUpdate = foundry.utils.mergeObject(itemData, itemUpdate, {inplace: false}); + flags.persistSourceMigration = true; + } + arr.push({ ...itemUpdate, _id: itemData._id }); } // Update tool expertise. @@ -301,9 +322,10 @@ export const migrateActorData = function(actor, migrationData) { * * @param {object} item Item data to migrate * @param {object} [migrationData] Additional data to perform the migration + * @param {object} [flags={}] Track the needs migration flag. * @returns {object} The updateData to apply */ -export function migrateItemData(item, migrationData) { +export function migrateItemData(item, migrationData, flags={}) { const updateData = {}; _migrateDocumentIcon(item, updateData, migrationData); @@ -313,6 +335,11 @@ export function migrateItemData(item, migrationData) { if ( effects.length > 0 ) updateData.effects = effects; } + if ( foundry.utils.getProperty(item, "flags.dnd5e.persistSourceMigration") ) { + flags.persistSourceMigration = true; + updateData["flags.dnd5e.-=persistSourceMigration"] = null; + } + return updateData; } @@ -496,6 +523,29 @@ function _migrateActorAC(actorData, updateData) { /* -------------------------------------------- */ +/** + * Migrate the actor movement & senses to replace `0` with `null`. + * @param {object} actorData Actor data being migrated. + * @param {object} updateData Existing updates being applied to actor. *Will be mutated.* + * @returns {object} Modified version of update data. + * @private + */ +function _migrateActorMovementSenses(actorData, updateData) { + if ( actorData._stats?.systemVersion && foundry.utils.isNewerVersion("2.4.0", actorData._stats.systemVersion) ) { + for ( const key of Object.keys(CONFIG.DND5E.movementTypes) ) { + const keyPath = `system.attributes.movement.${key}`; + if ( foundry.utils.getProperty(actorData, keyPath) === 0 ) updateData[keyPath] = null; + } + for ( const key of Object.keys(CONFIG.DND5E.senses) ) { + const keyPath = `system.attributes.senses.${key}`; + if ( foundry.utils.getProperty(actorData, keyPath) === 0 ) updateData[keyPath] = null; + } + } + return updateData; +} + +/* -------------------------------------------- */ + /** * Migrate any system token images from PNG to WEBP. * @param {object} actorData Actor or token data to migrate. diff --git a/module/settings.mjs b/module/settings.mjs index 664d498523..24ecf459ae 100644 --- a/module/settings.mjs +++ b/module/settings.mjs @@ -44,6 +44,16 @@ export default function registerSystemSettings() { onChange: rule => canvas.grid.diagonalRule = rule }); + // Allow rotating square templates + game.settings.register("dnd5e", "gridAlignedSquareTemplates", { + name: "SETTINGS.5eGridAlignedSquareTemplatesN", + hint: "SETTINGS.5eGridAlignedSquareTemplatesL", + scope: "world", + config: true, + default: true, + type: Boolean + }); + // Proficiency modifier type game.settings.register("dnd5e", "proficiencyModifier", { name: "SETTINGS.5eProfN", diff --git a/module/utils.mjs b/module/utils.mjs index c84beb4cf7..d06f459e75 100644 --- a/module/utils.mjs +++ b/module/utils.mjs @@ -25,16 +25,31 @@ export function simplifyBonus(bonus, data={}) { /* Object Helpers */ /* -------------------------------------------- */ +/** + * Transform an object, returning only the keys which match the provided filter. + * @param {object} obj Object to transform. + * @param {Function} [filter] Filtering function. If none is provided, it will just check for truthiness. + * @returns {string[]} Array of filtered keys. + */ +export function filteredKeys(obj, filter) { + filter ??= e => e; + return Object.entries(obj).filter(e => filter(e[1])).map(e => e[0]); +} + +/* -------------------------------------------- */ + /** * Sort the provided object by its values or by an inner sortKey. - * @param {object} obj The object to sort. - * @param {string} [sortKey] An inner key upon which to sort. - * @returns {object} A copy of the original object that has been sorted. + * @param {object} obj The object to sort. + * @param {string|Function} [sortKey] An inner key upon which to sort or sorting function. + * @returns {object} A copy of the original object that has been sorted. */ export function sortObjectEntries(obj, sortKey) { let sorted = Object.entries(obj); - if ( sortKey ) sorted = sorted.sort((a, b) => a[1][sortKey].localeCompare(b[1][sortKey])); - else sorted = sorted.sort((a, b) => a[1].localeCompare(b[1])); + const sort = (lhs, rhs) => foundry.utils.getType(lhs) === "string" ? lhs.localeCompare(rhs) : lhs - rhs; + if ( foundry.utils.getType(sortKey) === "function" ) sorted = sorted.sort((lhs, rhs) => sortKey(lhs[1], rhs[1])); + else if ( sortKey ) sorted = sorted.sort((lhs, rhs) => sort(lhs[1][sortKey], rhs[1][sortKey])); + else sorted = sorted.sort((lhs, rhs) => sort(lhs[1], rhs[1])); return Object.fromEntries(sorted); } @@ -124,6 +139,7 @@ export async function preloadHandlebarsTemplates() { "systems/dnd5e/templates/items/parts/item-description.hbs", "systems/dnd5e/templates/items/parts/item-mountable.hbs", "systems/dnd5e/templates/items/parts/item-spellcasting.hbs", + "systems/dnd5e/templates/items/parts/item-source.hbs", "systems/dnd5e/templates/items/parts/item-summary.hbs", // Journal Partials @@ -146,6 +162,58 @@ export async function preloadHandlebarsTemplates() { /* -------------------------------------------- */ +/** + * A helper to create a set of elements in a block grouped together + * in based on the provided categories. + * + * @param {SelectChoices} choices Choices to format. + * @param {object} [options] + * @param {boolean} [options.localize] Should the label be localized? + * @param {string} [options.blank] Name for the empty option, if one should be added. + * @param {string} [options.labelAttr] Attribute pointing to label string. + * @param {string} [options.chosenAttr] Attribute pointing to chosen boolean. + * @param {string} [options.childrenAttr] Attribute pointing to array of children. + * @returns {Handlebars.SafeString} Formatted option list. + */ +function groupedSelectOptions(choices, options) { + const localize = options.hash.localize ?? false; + const blank = options.hash.blank ?? null; + const labelAttr = options.hash.labelAttr ?? "label"; + const chosenAttr = options.hash.chosenAttr ?? "chosen"; + const childrenAttr = options.hash.childrenAttr ?? "children"; + + // Create an option + const option = (name, label, chosen) => { + if ( localize ) label = game.i18n.localize(label); + html += `${label}`; + }; + + // Create a group + const group = category => { + let label = category[labelAttr]; + if ( localize ) game.i18n.localize(label); + html += ``; + children(category[childrenAttr]); + html += ""; + }; + + // Add children + const children = children => { + for ( let [name, child] of Object.entries(children) ) { + if ( child[childrenAttr] ) group(child); + else option(name, child[labelAttr], child[chosenAttr] ?? false); + } + }; + + // Create the options + let html = ""; + if ( blank !== null ) option("", blank); + children(choices); + return new Handlebars.SafeString(html); +} + +/* -------------------------------------------- */ + /** * A helper that fetch the appropriate item context from root and adds it to the first block parameter. * @param {object} context Current evaluation context. @@ -173,6 +241,7 @@ function itemContext(context, options) { export function registerHandlebarsHelpers() { Handlebars.registerHelper({ getProperty: foundry.utils.getProperty, + "dnd5e-groupedSelectOptions": groupedSelectOptions, "dnd5e-linkForUuid": linkForUuid, "dnd5e-itemContext": itemContext }); @@ -248,8 +317,9 @@ function _localizeObject(obj, keys) { } for ( const key of keys ) { - if ( !v[key] ) continue; - v[key] = game.i18n.localize(v[key]); + const value = foundry.utils.getProperty(v, key); + if ( !value ) continue; + foundry.utils.setProperty(v, key, game.i18n.localize(value)); } } } diff --git a/package-lock.json b/package-lock.json index 8b85b6162e..7eb2e0d34f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5,21 +5,16 @@ "packages": { "": { "devDependencies": { - "@babel/eslint-parser": "^7.15.4", - "@rollup/plugin-node-resolve": "^15.0.1", - "eslint-plugin-jsdoc": "^39.6.7", + "@babel/eslint-parser": "^7.22.15", + "@foundryvtt/foundryvtt-cli": "^1.0.0-rc.4", + "@rollup/plugin-node-resolve": "^15.2.1", + "eslint-plugin-jsdoc": "^46.5.0", "fancy-log": "^2.0.0", - "fs": "^0.0.1-security", - "gulp": "^4.0.2", - "gulp-eslint7": "^0.3.1", - "gulp-if": "^3.0.0", - "gulp-less": "^5.0.0", - "merge-stream": "^2.0.0", - "nedb": "^1.8.0", - "path": "^0.12.7", - "rollup": "^3.9.1", - "through2": "^4.0.2", - "yargs": "^17.5.1" + "less": "^4.2.0", + "less-watch-compiler": "^1.16.3", + "nedb-promises": "^6.2.3", + "rollup": "^3.28.1", + "yargs": "^17.7.2" } }, "node_modules/@ampproject/remapping": { @@ -37,13 +32,14 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", "dev": true, "peer": true, "dependencies": { - "@babel/highlight": "^7.18.6" + "@babel/highlight": "^7.22.13", + "chalk": "^2.4.2" }, "engines": { "node": ">=6.9.0" @@ -91,32 +87,33 @@ } }, "node_modules/@babel/eslint-parser": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.2.tgz", - "integrity": "sha512-oFQYkE8SuH14+uR51JVAmdqwKYXGRjEXx7s+WiagVjqQ+HPE+nnwyF2qlVG8evUsUHmPcA+6YXMEDbIhEyQc5A==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.22.15.tgz", + "integrity": "sha512-yc8OOBIQk1EcRrpizuARSQS0TWAcOMpEJ1aafhNznaeYkeL+OhqnDObGFylB8ka8VFF/sZc+S4RzHyO+3LjQxg==", "dev": true, "dependencies": { - "eslint-scope": "^5.1.1", + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", "eslint-visitor-keys": "^2.1.0", - "semver": "^6.3.0" + "semver": "^6.3.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || >=14.0.0" }, "peerDependencies": { - "@babel/core": ">=7.11.0", + "@babel/core": "^7.11.0", "eslint": "^7.5.0 || ^8.0.0" } }, "node_modules/@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz", + "integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==", "dev": true, "peer": true, "dependencies": { - "@babel/types": "^7.18.7", + "@babel/types": "^7.23.0", "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" }, "engines": { @@ -158,9 +155,9 @@ } }, "node_modules/@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", "dev": true, "peer": true, "engines": { @@ -168,27 +165,27 @@ } }, "node_modules/@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", "dev": true, "peer": true, "dependencies": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", "dev": true, "peer": true, "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -241,23 +238,34 @@ } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", "dev": true, "peer": true, "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", "dev": true, + "peer": true, "engines": { "node": ">=6.9.0" } @@ -288,13 +296,14 @@ } }, "node_modules/@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", + "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", "dev": true, + "peer": true, "dependencies": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", "js-tokens": "^4.0.0" }, "engines": { @@ -302,9 +311,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", - "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz", + "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==", "dev": true, "peer": true, "bin": { @@ -315,35 +324,35 @@ } }, "node_modules/@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", "dev": true, "peer": true, "dependencies": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/code-frame": "^7.22.13", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", - "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.2.tgz", + "integrity": "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==", "dev": true, "peer": true, "dependencies": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.7", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.8", - "@babel/types": "^7.18.8", + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.23.0", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.0", + "@babel/types": "^7.23.0", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -352,13 +361,14 @@ } }, "node_modules/@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.0.tgz", + "integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==", "dev": true, "peer": true, "dependencies": { - "@babel/helper-validator-identifier": "^7.18.6", + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.20", "to-fast-properties": "^2.0.0" }, "engines": { @@ -366,17 +376,17 @@ } }, "node_modules/@es-joy/jsdoccomment": { - "version": "0.36.1", - "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.36.1.tgz", - "integrity": "sha512-922xqFsTpHs6D0BUiG4toiyPOMc8/jafnWKxz1KWgS4XzKPy2qXf1Pe6UFuNSCQqt6tOuhAWXBNuuyUhJmw9Vg==", + "version": "0.40.1", + "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.40.1.tgz", + "integrity": "sha512-YORCdZSusAlBrFpZ77pJjc5r1bQs5caPWtAu+WWmiSo+8XaUzseapVrfAtiRFbQWnrBxxLLEwF6f6ZG/UgCQCg==", "dev": true, "dependencies": { - "comment-parser": "1.3.1", - "esquery": "^1.4.0", - "jsdoc-type-pratt-parser": "~3.1.0" + "comment-parser": "1.4.0", + "esquery": "^1.5.0", + "jsdoc-type-pratt-parser": "~4.0.0" }, "engines": { - "node": "^14 || ^16 || ^17 || ^18 || ^19" + "node": ">=16" } }, "node_modules/@eslint/eslintrc": { @@ -419,6 +429,55 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/@foundryvtt/foundryvtt-cli": { + "version": "1.0.0-rc.4", + "resolved": "https://registry.npmjs.org/@foundryvtt/foundryvtt-cli/-/foundryvtt-cli-1.0.0-rc.4.tgz", + "integrity": "sha512-DqwEwhrdCy+tSv0xo/KzRLsEvNpm2howE1Lyi329FPC1XAj6WjcVzRAne99ynDXzeK2PLQWEUa/NFgJGnD5oAQ==", + "dev": true, + "dependencies": { + "chalk": "^5.2.0", + "classic-level": "^1.2.0", + "esm": "^3.2.25", + "js-yaml": "^4.1.0", + "mkdirp": "^3.0.0", + "nedb-core": "^3.0.6", + "nedb-promises": "^6.2.1", + "yargs": "^17.7.1" + }, + "bin": { + "fvtt": "fvtt.mjs" + }, + "engines": { + "node": ">17.0.0" + } + }, + "node_modules/@foundryvtt/foundryvtt-cli/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@foundryvtt/foundryvtt-cli/node_modules/mkdirp": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz", + "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==", + "dev": true, + "bin": { + "mkdirp": "dist/cjs/src/bin.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/@humanwhocodes/config-array": { "version": "0.11.8", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", @@ -452,7 +511,8 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", - "dev": true + "dev": true, + "peer": true }, "node_modules/@jridgewell/gen-mapping": { "version": "0.1.1", @@ -496,14 +556,23 @@ "peer": true }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.14", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz", - "integrity": "sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==", + "version": "0.3.20", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", + "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", "dev": true, "peer": true, "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "dev": true, + "dependencies": { + "eslint-scope": "5.1.1" } }, "node_modules/@nodelib/fs.scandir": { @@ -545,15 +614,15 @@ } }, "node_modules/@rollup/plugin-node-resolve": { - "version": "15.0.1", - "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.0.1.tgz", - "integrity": "sha512-ReY88T7JhJjeRVbfCyNj+NXAG3IIsVMsX9b5/9jC98dRP8/yxlZdz7mHZbHk5zHr24wZZICS5AcXsFZAXYUQEg==", + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.2.1.tgz", + "integrity": "sha512-nsbUg588+GDSu8/NS8T4UAshO6xeaOfINNuXeVHcKV02LJtoRaM1SiOacClw4kws1SFiNhdLGxlbMY9ga/zs/w==", "dev": true, "dependencies": { "@rollup/pluginutils": "^5.0.1", "@types/resolve": "1.20.2", "deepmerge": "^4.2.2", - "is-builtin-module": "^3.2.0", + "is-builtin-module": "^3.2.1", "is-module": "^1.0.0", "resolve": "^1.22.1" }, @@ -591,6 +660,36 @@ } } }, + "node_modules/@seald-io/binary-search-tree": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@seald-io/binary-search-tree/-/binary-search-tree-1.0.3.tgz", + "integrity": "sha512-qv3jnwoakeax2razYaMsGI/luWdliBLHTdC6jU55hQt1hcFqzauH/HsBollQ7IR4ySTtYhT+xyHoijpA16C+tA==", + "dev": true + }, + "node_modules/@seald-io/nedb": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@seald-io/nedb/-/nedb-4.0.2.tgz", + "integrity": "sha512-gJ91fT1sgh2cLXYVcTSh7khZ8LdemI8+SojCdpZ5wy+DUQ4fSrEwGqOwbdV49NDs2BBO6GeBpSb8CnhG2IW1rw==", + "dev": true, + "dependencies": { + "@seald-io/binary-search-tree": "^1.0.3", + "localforage": "^1.9.0", + "util": "^0.12.4" + } + }, + "node_modules/@seald-io/nedb/node_modules/util": { + "version": "0.12.5", + "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", + "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "which-typed-array": "^1.1.2" + } + }, "node_modules/@types/estree": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", @@ -603,6 +702,47 @@ "integrity": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==", "dev": true }, + "node_modules/abstract-level": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/abstract-level/-/abstract-level-1.0.3.tgz", + "integrity": "sha512-t6jv+xHy+VYwc4xqZMn2Pa9DjcdzvzZmQGRjTFc8spIbRGHgBrEKbPq+rYXc7CCo0lxgYvSgKVg9qZAhpVQSjA==", + "dev": true, + "dependencies": { + "buffer": "^6.0.3", + "catering": "^2.1.0", + "is-buffer": "^2.0.5", + "level-supports": "^4.0.0", + "level-transcoder": "^1.0.1", + "module-error": "^1.0.1", + "queue-microtask": "^1.2.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/abstract-level/node_modules/is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "engines": { + "node": ">=4" + } + }, "node_modules/acorn": { "version": "8.8.1", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", @@ -621,6 +761,7 @@ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, + "peer": true, "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } @@ -630,6 +771,7 @@ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, + "peer": true, "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", @@ -641,28 +783,13 @@ "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/ansi-colors": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz", - "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", - "dev": true, - "dependencies": { - "ansi-wrap": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ansi-gray": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", - "integrity": "sha512-HrgGIZUl8h2EHuZaU9hTR/cU5nhKxpVE1V6kdGsQ8e4zirElJ5fvtfc8N7Q1oq1aatO275i8pUFUCpNWCAnVWw==", + "node_modules/amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==", "dev": true, - "dependencies": { - "ansi-wrap": "0.1.0" - }, "engines": { - "node": ">=0.10.0" + "node": ">=0.4.2" } }, "node_modules/ansi-regex": { @@ -679,6 +806,7 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, + "peer": true, "dependencies": { "color-convert": "^1.9.0" }, @@ -686,1905 +814,1795 @@ "node": ">=4" } }, - "node_modules/ansi-wrap": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", - "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", + "node_modules/are-docs-informative": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz", + "integrity": "sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=14" } }, - "node_modules/anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "dev": true, - "dependencies": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - } + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true }, - "node_modules/append-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", - "integrity": "sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==", + "node_modules/async": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", + "integrity": "sha512-eAkdoKxU6/LkKDBzLpT+t6Ff5EtfSF4wx1WfJiPEEV7WNLnDaRXk0oVysiEPm262roaachGexwUv94WhSgN5TQ==", + "dev": true + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", "dev": true, - "dependencies": { - "buffer-equal": "^1.0.0" - }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/archy": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", - "integrity": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==", + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", "dev": true, - "peer": true + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "node_modules/arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/arr-filter": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz", - "integrity": "sha512-A2BETWCqhsecSvCkWAeVBFLH6sXEUGASuzkpjL3GR1SlL/PWL6M3J8EAAld2Uubmh39tvkJTqC9LeLHCUKmFXA==", + "node_modules/browserslist": { + "version": "4.21.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", + "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "peer": true, "dependencies": { - "make-iterator": "^1.0.0" + "caniuse-lite": "^1.0.30001359", + "electron-to-chromium": "^1.4.172", + "node-releases": "^2.0.5", + "update-browserslist-db": "^1.0.4" + }, + "bin": { + "browserslist": "cli.js" }, "engines": { - "node": ">=0.10.0" + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" } }, - "node_modules/arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "node_modules/builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/arr-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz", - "integrity": "sha512-tVqVTHt+Q5Xb09qRkbu+DidW1yYzz5izWS2Xm2yFm7qJnmUfz4HPzNxbHkdRJbz2lrqI7S+z17xNYdFcBBO8Hw==", + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "dev": true, "dependencies": { - "make-iterator": "^1.0.0" + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/arr-union": { + "node_modules/callsites": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, + "peer": true, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/array-each": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", - "integrity": "sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==", + "node_modules/caniuse-lite": { + "version": "1.0.30001363", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", + "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==", "dev": true, - "engines": { - "node": ">=0.10.0" - } + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + } + ], + "peer": true }, - "node_modules/array-initial": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz", - "integrity": "sha512-BC4Yl89vneCYfpLrs5JU2aAu9/a+xWbeKhvISg9PT7eWFB9UlRvI+rKEtk6mgxWr3dSkk9gQ8hCrdqt06NXPdw==", + "node_modules/catering": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/catering/-/catering-2.1.1.tgz", + "integrity": "sha512-K7Qy8O9p76sL3/3m7/zLKbRkyOlSZAgzEaLhyj2mXS8PsCud2Eo4hAb8aLtZqHh0QGqLcb9dlJSu6lHRVENm1w==", "dev": true, - "dependencies": { - "array-slice": "^1.0.0", - "is-number": "^4.0.0" - }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/array-initial/node_modules/is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, + "peer": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/array-last": { + "node_modules/classic-level": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz", - "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==", + "resolved": "https://registry.npmjs.org/classic-level/-/classic-level-1.3.0.tgz", + "integrity": "sha512-iwFAJQYtqRTRM0F6L8h4JCt00ZSGdOyqh7yVrhhjrOpFhmBjNlRUey64MCiyo6UmQHMJ+No3c81nujPv+n9yrg==", "dev": true, + "hasInstallScript": true, "dependencies": { - "is-number": "^4.0.0" + "abstract-level": "^1.0.2", + "catering": "^2.1.0", + "module-error": "^1.0.1", + "napi-macros": "^2.2.2", + "node-gyp-build": "^4.3.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/array-last/node_modules/is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/array-slice": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", - "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, - "engines": { - "node": ">=0.10.0" + "peer": true, + "dependencies": { + "color-name": "1.1.3" } }, - "node_modules/array-sort": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz", - "integrity": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==", + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "dev": true, - "dependencies": { - "default-compare": "^1.0.0", - "get-value": "^2.0.6", - "kind-of": "^5.0.2" - }, - "engines": { - "node": ">=0.10.0" - } + "peer": true }, - "node_modules/array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", "dev": true, - "engines": { - "node": ">=0.10.0" + "bin": { + "color-support": "bin.js" } }, - "node_modules/assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">= 12" } }, - "node_modules/astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "node_modules/comment-parser": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.4.0.tgz", + "integrity": "sha512-QLyTNiZ2KDOibvFPlZ6ZngVsZ/0gYnE6uTXi5aoDg8ed3AkJAz4sEje3Y8a29hQ1s6A99MZXe47fLAXQ1rTqaw==", "dev": true, "engines": { - "node": ">=8" + "node": ">= 12.0.0" } }, - "node_modules/async": { - "version": "0.2.10", - "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", - "integrity": "sha512-eAkdoKxU6/LkKDBzLpT+t6Ff5EtfSF4wx1WfJiPEEV7WNLnDaRXk0oVysiEPm262roaachGexwUv94WhSgN5TQ==", + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, - "node_modules/async-done": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz", - "integrity": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==", + "node_modules/convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", "dev": true, + "peer": true, "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.2", - "process-nextick-args": "^2.0.0", - "stream-exhaust": "^1.0.1" - }, - "engines": { - "node": ">= 0.10" + "safe-buffer": "~5.1.1" } }, - "node_modules/async-each": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", - "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", - "dev": true - }, - "node_modules/async-settle": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz", - "integrity": "sha512-VPXfB4Vk49z1LHHodrEQ6Xf7W4gg1w0dAPROHngx7qgDjqmIQ+fXmwgGXTW/ITLai0YLSvWepJOP9EVpMnEAcw==", + "node_modules/copy-anything": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", + "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", "dev": true, "dependencies": { - "async-done": "^1.2.2" + "is-what": "^3.14.1" }, - "engines": { - "node": ">= 0.10" + "funding": { + "url": "https://github.com/sponsors/mesqueeb" } }, - "node_modules/atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, - "bin": { - "atob": "bin/atob.js" + "peer": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, "engines": { - "node": ">= 4.5.0" + "node": ">= 8" } }, - "node_modules/bach": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", - "integrity": "sha512-bZOOfCb3gXBXbTFXq3OZtGR88LwGeJvzu6szttaIzymOTS4ZttBNOWSv7aLZja2EMycKtRYV0Oa8SNKH/zkxvg==", + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "dependencies": { - "arr-filter": "^1.1.1", - "arr-flatten": "^1.0.1", - "arr-map": "^2.0.0", - "array-each": "^1.0.0", - "array-initial": "^1.0.0", - "array-last": "^1.1.1", - "async-done": "^1.2.2", - "async-settle": "^1.0.0", - "now-and-later": "^2.0.0" + "ms": "2.1.2" }, "engines": { - "node": ">= 0.10" + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "peer": true }, - "node_modules/base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "node_modules/deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", "dev": true, - "dependencies": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, "engines": { "node": ">=0.10.0" } }, - "node_modules/base/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, + "peer": true, "dependencies": { - "is-descriptor": "^1.0.0" + "esutils": "^2.0.2" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "node": ">=6.0.0" } }, - "node_modules/binary-search-tree": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/binary-search-tree/-/binary-search-tree-0.2.5.tgz", - "integrity": "sha512-CvNVKS6iXagL1uGwLagSXz1hzSMezxOuGnFi5FHGKqaTO3nPPWrAbyALUzK640j+xOTVm7lzD9YP8W1f/gvUdw==", - "dev": true, - "dependencies": { - "underscore": "~1.4.4" - } + "node_modules/dom-walk": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz", + "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==", + "dev": true }, - "node_modules/bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "node_modules/electron-to-chromium": { + "version": "1.4.185", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.185.tgz", + "integrity": "sha512-9kV/isoOGpKkBt04yYNaSWIBn3187Q5VZRtoReq8oz5NY/A4XmU6cAoqgQlDp7kKJCZMRjWZ8nsQyxfpFHvfyw==", "dev": true, - "optional": true, - "dependencies": { - "file-uri-to-path": "1.0.0" - } + "peer": true }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true }, - "node_modules/braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", "dev": true, + "optional": true, "dependencies": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" + "prr": "~1.0.1" }, - "engines": { - "node": ">=0.10.0" + "bin": { + "errno": "cli.js" } }, - "node_modules/braces/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", "dev": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/braces/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, + "peer": true, "engines": { - "node": ">=0.10.0" + "node": ">=0.8.0" } }, - "node_modules/browserslist": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", - "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", + "node_modules/eslint": { + "version": "8.32.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.32.0.tgz", + "integrity": "sha512-nETVXpnthqKPFyuY2FNjz/bEd6nbosRgKbkgS/y1C7LJop96gYHWpiguLecMHQ2XCPxn77DS0P+68WzG6vkZSQ==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - } - ], "peer": true, "dependencies": { - "caniuse-lite": "^1.0.30001359", - "electron-to-chromium": "^1.4.172", - "node-releases": "^2.0.5", - "update-browserslist-db": "^1.0.4" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/buffer-equal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.1.tgz", - "integrity": "sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==", - "dev": true, + "@eslint/eslintrc": "^1.4.1", + "@humanwhocodes/config-array": "^0.11.8", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.1.1", + "eslint-utils": "^3.0.0", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.4.0", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-sdsl": "^4.1.4", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "regexpp": "^3.2.0", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, "engines": { - "node": ">=0.4" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://opencollective.com/eslint" } }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true + "node_modules/eslint-plugin-jsdoc": { + "version": "46.5.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.5.1.tgz", + "integrity": "sha512-CPbvKprmEuJYoxMj5g8gXfPqUGgcqMM6jpH06Kp4pn5Uy5MrPkFKzoD7UFp2E4RBzfXbJz1+TeuEivwFVMkXBg==", + "dev": true, + "dependencies": { + "@es-joy/jsdoccomment": "~0.40.1", + "are-docs-informative": "^0.0.2", + "comment-parser": "1.4.0", + "debug": "^4.3.4", + "escape-string-regexp": "^4.0.0", + "esquery": "^1.5.0", + "is-builtin-module": "^3.2.1", + "semver": "^7.5.4", + "spdx-expression-parse": "^3.0.1" + }, + "engines": { + "node": ">=16" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + } }, - "node_modules/builtin-modules": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", - "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "node_modules/eslint-plugin-jsdoc/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, "engines": { - "node": ">=6" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "node_modules/eslint-plugin-jsdoc/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">=0.10.0" + "node": ">=10" } }, - "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true, "engines": { - "node": ">=6" + "node": ">=8.0.0" } }, - "node_modules/camelcase": { + "node_modules/eslint-utils": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", "dev": true, + "peer": true, + "dependencies": { + "eslint-visitor-keys": "^2.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" } }, - "node_modules/caniuse-lite": { - "version": "1.0.30001363", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz", - "integrity": "sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - } - ], - "peer": true - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "dev": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, "engines": { - "node": ">=4" + "node": ">=10" } }, - "node_modules/chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "deprecated": "Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies", + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "peer": true, "dependencies": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" + "color-convert": "^2.0.1" }, - "optionalDependencies": { - "fsevents": "^1.2.7" + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/chokidar/node_modules/glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "peer": true, "dependencies": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/chokidar/node_modules/glob-parent/node_modules/is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "node_modules/eslint/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, + "peer": true, "dependencies": { - "is-extglob": "^2.1.0" + "color-name": "~1.1.4" }, "engines": { - "node": ">=0.10.0" + "node": ">=7.0.0" } }, - "node_modules/chokidar/node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "node_modules/eslint/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true, - "engines": { - "node": ">=0.10.0" - } + "peer": true }, - "node_modules/class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, - "dependencies": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, + "peer": true, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/class-utils/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "node_modules/eslint/node_modules/eslint-scope": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", + "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", "dev": true, + "peer": true, "dependencies": { - "is-descriptor": "^0.1.0" + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" }, "engines": { - "node": ">=0.10.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/class-utils/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, + "peer": true, "engines": { - "node": ">=0.10.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "node_modules/eslint/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, + "peer": true, "engines": { - "node": ">=0.10.0" + "node": ">=4.0" } }, - "node_modules/class-utils/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "node_modules/eslint/node_modules/globals": { + "version": "13.19.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz", + "integrity": "sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==", "dev": true, + "peer": true, "dependencies": { - "kind-of": "^3.0.2" + "type-fest": "^0.20.2" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, + "peer": true, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/class-utils/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "peer": true, "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "node_modules/esm": { + "version": "3.2.25", + "resolved": "https://registry.npmjs.org/esm/-/esm-3.2.25.tgz", + "integrity": "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==", "dev": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" + "engines": { + "node": ">=6" } }, - "node_modules/clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "node_modules/espree": { + "version": "9.4.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", + "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", "dev": true, + "peer": true, + "dependencies": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.3.0" + }, "engines": { - "node": ">=0.8" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/clone-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", - "integrity": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==", + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", "dev": true, + "peer": true, "engines": { - "node": ">= 0.10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/clone-stats": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", - "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", - "dev": true - }, - "node_modules/cloneable-readable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", - "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", "dev": true, "dependencies": { - "inherits": "^2.0.1", - "process-nextick-args": "^2.0.0", - "readable-stream": "^2.3.5" + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" } }, - "node_modules/code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==", + "node_modules/esquery/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=4.0" } }, - "node_modules/collection-map": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz", - "integrity": "sha512-5D2XXSpkOnleOI21TG7p3T0bGAsZ/XknZpKBmGYyluO8pw4zA3K8ZlrBIbC4FXg3m6z/RNFiUFfT2sQK01+UHA==", + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, "dependencies": { - "arr-map": "^2.0.2", - "for-own": "^1.0.0", - "make-iterator": "^1.0.0" + "estraverse": "^5.2.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=4.0" } }, - "node_modules/collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, - "dependencies": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - }, "engines": { - "node": ">=0.10.0" + "node": ">=4.0" } }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true, - "dependencies": { - "color-name": "1.1.3" + "engines": { + "node": ">=4.0" } }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", "dev": true }, - "node_modules/color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true, - "bin": { - "color-support": "bin.js" - } - }, - "node_modules/comment-parser": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.3.1.tgz", - "integrity": "sha512-B52sN2VNghyq5ofvUsqZjmk6YkihBX5vMSChmSK9v4ShjKf3Vk5Xcmgpw4o+iIgtrnM/u5FiMpz9VKb8lpBveA==", + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, + "peer": true, "engines": { - "node": ">= 12.0.0" + "node": ">=0.10.0" } }, - "node_modules/component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", - "dev": true - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", "dev": true }, - "node_modules/concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "node_modules/fancy-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-2.0.0.tgz", + "integrity": "sha512-9CzxZbACXMUXW13tS0tI8XsGGmxWzO2DmYrGuBJOJ8k8q2K7hwfJA5qHjuPPe8wtsco33YR9wc+Rlr5wYFvhSA==", "dev": true, - "engines": [ - "node >= 0.8" - ], "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" + "color-support": "^1.1.3" + }, + "engines": { + "node": ">=10.13.0" } }, - "node_modules/convert-source-map": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", - "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true, - "dependencies": { - "safe-buffer": "~5.1.1" - } + "peer": true }, - "node_modules/copy-anything": { + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "peer": true + }, + "node_modules/fast-levenshtein": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", - "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true, - "dependencies": { - "is-what": "^3.14.1" - }, - "funding": { - "url": "https://github.com/sponsors/mesqueeb" - } + "peer": true }, - "node_modules/copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", "dev": true, - "engines": { - "node": ">=0.10.0" + "peer": true, + "dependencies": { + "reusify": "^1.0.4" } }, - "node_modules/copy-props": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz", - "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==", + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, + "peer": true, "dependencies": { - "each-props": "^1.3.2", - "is-plain-object": "^5.0.0" + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/copy-props/node_modules/is-plain-object": { + "node_modules/find-up": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, + "peer": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", "dev": true, + "peer": true, "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "flatted": "^3.1.0", + "rimraf": "^3.0.2" }, "engines": { - "node": ">= 8" + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/d": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", - "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "node_modules/flatted": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.6.tgz", + "integrity": "sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ==", "dev": true, - "dependencies": { - "es5-ext": "^0.10.50", - "type": "^1.0.1" - } + "peer": true }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "dev": true, "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } + "is-callable": "^1.1.3" } }, - "node_modules/decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true }, - "node_modules/decode-uri-component": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", - "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, + "peer": true, "engines": { - "node": ">=0.10" + "node": ">=6.9.0" } }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "node_modules/deepmerge": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", - "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": "6.* || 8.* || >= 10.*" } }, - "node_modules/default-compare": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz", - "integrity": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==", + "node_modules/get-intrinsic": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", + "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", "dev": true, "dependencies": { - "kind-of": "^5.0.2" + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/default-resolution": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz", - "integrity": "sha512-2xaP6GiwVwOEbXCGoJ4ufgC76m8cj805jrghScewJC2ZDsb9U0b4BIrba+xt/Uytyd0HvQ6+WymSRTfnYj59GQ==", - "dev": true, - "engines": { - "node": ">= 0.10" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/define-properties": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", - "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "dependencies": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">= 0.4" + "node": "*" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, + "peer": true, "dependencies": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" + "is-glob": "^4.0.3" }, "engines": { - "node": ">=0.10.0" + "node": ">=10.13.0" } }, - "node_modules/detect-file": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", - "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", + "node_modules/global": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", + "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "min-document": "^2.19.0", + "process": "^0.11.10" } }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, + "peer": true, "engines": { - "node": ">=6.0.0" + "node": ">=4" } }, - "node_modules/duplexify": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz", - "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==", + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "dev": true, "dependencies": { - "end-of-stream": "^1.4.1", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1", - "stream-shift": "^1.0.0" + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/duplexify/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "optional": true + }, + "node_modules/grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", + "dev": true, + "peer": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dev": true, "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "function-bind": "^1.1.1" }, "engines": { - "node": ">= 6" + "node": ">= 0.4.0" } }, - "node_modules/each-props": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz", - "integrity": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==", + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, - "dependencies": { - "is-plain-object": "^2.0.1", - "object.defaults": "^1.1.0" + "peer": true, + "engines": { + "node": ">=4" } }, - "node_modules/electron-to-chromium": { - "version": "1.4.185", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.185.tgz", - "integrity": "sha512-9kV/isoOGpKkBt04yYNaSWIBn3187Q5VZRtoReq8oz5NY/A4XmU6cAoqgQlDp7kKJCZMRjWZ8nsQyxfpFHvfyw==", + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "dev": true, - "peer": true - }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", "dev": true, "dependencies": { - "once": "^1.4.0" + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/enquirer": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", - "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, + "optional": true, "dependencies": { - "ansi-colors": "^4.1.1" + "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { - "node": ">=8.6" + "node": ">=0.10.0" } }, - "node_modules/enquirer/node_modules/ansi-colors": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", - "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", "dev": true, + "peer": true, "engines": { - "node": ">=6" + "node": ">= 4" } }, - "node_modules/errno": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", - "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "node_modules/image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", "dev": true, "optional": true, - "dependencies": { - "prr": "~1.0.1" - }, "bin": { - "errno": "cli.js" + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, - "dependencies": { - "is-arrayish": "^0.2.1" - } + "node_modules/immediate": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", + "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==", + "dev": true }, - "node_modules/es5-ext": { - "version": "0.10.62", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", - "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, - "hasInstallScript": true, + "peer": true, "dependencies": { - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.3", - "next-tick": "^1.1.0" + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" }, "engines": { - "node": ">=0.10" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/es6-iterator": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, - "dependencies": { - "d": "1", - "es5-ext": "^0.10.35", - "es6-symbol": "^3.1.1" + "peer": true, + "engines": { + "node": ">=0.8.19" } }, - "node_modules/es6-symbol": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", - "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dev": true, "dependencies": { - "d": "^1.0.1", - "ext": "^1.1.2" + "once": "^1.3.0", + "wrappy": "1" } }, - "node_modules/es6-weak-map": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", - "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", - "dev": true, - "dependencies": { - "d": "1", - "es5-ext": "^0.10.46", - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.1" - } + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", "dev": true, "engines": { - "node": ">=6" + "node": ">= 0.10" } }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "node_modules/is": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/is/-/is-3.3.0.tgz", + "integrity": "sha512-nW24QBoPcFGGHJGUwnfpI7Yc5CdqWNdsyHQszVE/z2pKHXzh7FZ5GWhJqSyaQ9wMkQnsTx+kAI8bHlCX4tKdbg==", "dev": true, "engines": { - "node": ">=0.8.0" + "node": "*" } }, - "node_modules/eslint": { - "version": "8.32.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.32.0.tgz", - "integrity": "sha512-nETVXpnthqKPFyuY2FNjz/bEd6nbosRgKbkgS/y1C7LJop96gYHWpiguLecMHQ2XCPxn77DS0P+68WzG6vkZSQ==", + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", "dev": true, - "peer": true, "dependencies": { - "@eslint/eslintrc": "^1.4.1", - "@humanwhocodes/config-array": "^0.11.8", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.4.0", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-sdsl": "^4.1.4", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "regexpp": "^3.2.0", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">= 0.4" }, "funding": { - "url": "https://opencollective.com/eslint" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-plugin-jsdoc": { - "version": "39.6.7", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.6.7.tgz", - "integrity": "sha512-0mrzXrHvL2ZLe3QK9X0OEDy7Fs2cFQ/f1d1G5KHEGD+13D1qg56Iovq0uOkYf5bJlHiKPytWVgOOO9y7kLW3VA==", + "node_modules/is-builtin-module": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", + "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", "dev": true, "dependencies": { - "@es-joy/jsdoccomment": "~0.36.1", - "comment-parser": "1.3.1", - "debug": "^4.3.4", - "escape-string-regexp": "^4.0.0", - "esquery": "^1.4.0", - "semver": "^7.3.8", - "spdx-expression-parse": "^3.0.1" + "builtin-modules": "^3.3.0" }, "engines": { - "node": "^14 || ^16 || ^17 || ^18 || ^19" + "node": ">=6" }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-plugin-jsdoc/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "dev": true, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-plugin-jsdoc/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "node_modules/is-core-module": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz", + "integrity": "sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "has": "^1.0.3" }, - "engines": { - "node": ">=10" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, + "peer": true, "engines": { - "node": ">=8.0.0" + "node": ">=0.10.0" } }, - "node_modules/eslint-utils": { + "node_modules/is-fullwidth-code-point": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", "dev": true, - "peer": true, "dependencies": { - "eslint-visitor-keys": "^2.0.0" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=5" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, + "peer": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, "engines": { - "node": ">=10" + "node": ">=0.10.0" } }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", + "dev": true + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", "dev": true, "peer": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", "dev": true, - "peer": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "which-typed-array": "^1.1.11" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "peer": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } + "node_modules/is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", + "dev": true }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", "dev": true, "peer": true }, - "node_modules/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "node_modules/js-sdsl": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz", + "integrity": "sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==", "dev": true, "peer": true, - "engines": { - "node": ">=10" - }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/js-sdsl" } }, - "node_modules/eslint/node_modules/eslint-scope": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", - "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true, + "peer": true + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, - "peer": true, "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" + "argparse": "^2.0.1" }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/eslint/node_modules/eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "node_modules/jsdoc-type-pratt-parser": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.0.0.tgz", + "integrity": "sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==", "dev": true, - "peer": true, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=12.0.0" } }, - "node_modules/eslint/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true, "peer": true, + "bin": { + "jsesc": "bin/jsesc" + }, "engines": { - "node": ">=4.0" + "node": ">=4" } }, - "node_modules/eslint/node_modules/globals": { - "version": "13.19.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz", - "integrity": "sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==", + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true, - "peer": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "peer": true }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true, - "peer": true, - "engines": { - "node": ">=8" - } + "peer": true }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, "peer": true, - "dependencies": { - "has-flag": "^4.0.0" + "bin": { + "json5": "lib/cli.js" }, "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/espree": { - "version": "9.4.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", - "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", + "node_modules/less": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/less/-/less-4.2.0.tgz", + "integrity": "sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==", "dev": true, - "peer": true, "dependencies": { - "acorn": "^8.8.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "copy-anything": "^2.0.1", + "parse-node-version": "^1.0.1", + "tslib": "^2.3.0" }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/espree/node_modules/eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "dev": true, - "peer": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true, "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" + "lessc": "bin/lessc" }, "engines": { - "node": ">=4" + "node": ">=6" + }, + "optionalDependencies": { + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "needle": "^3.1.0", + "source-map": "~0.6.0" } }, - "node_modules/esquery": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "node_modules/less-watch-compiler": { + "version": "1.16.3", + "resolved": "https://registry.npmjs.org/less-watch-compiler/-/less-watch-compiler-1.16.3.tgz", + "integrity": "sha512-cxGUt8YdPpPPB72w1dfzPVXML5JYgfExXbFvDfG5XBU9qvj6uVjwTY2qOgwvf09Au5p2RvmWVcNps/cMTojJNQ==", "dev": true, "dependencies": { - "estraverse": "^5.1.0" + "amdefine": ">= 0.1.0", + "commander": "^8.0.0", + "extend": ">= 2.0.0", + "global": "^4.3.1", + "less": "^4.0.0", + "shelljs": ">= 0.4.0" }, - "engines": { - "node": ">=0.10" + "bin": { + "less-watch-compiler": "dist/less-watch-compiler.js" } }, - "node_modules/esquery/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "node_modules/level-supports": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/level-supports/-/level-supports-4.0.1.tgz", + "integrity": "sha512-PbXpve8rKeNcZ9C1mUicC9auIYFyGpkV9/i6g76tLgANwWhtG2v7I4xNBUlkn3lE2/dZF3Pi0ygYGtLc4RXXdA==", "dev": true, "engines": { - "node": ">=4.0" + "node": ">=12" } }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "node_modules/level-transcoder": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/level-transcoder/-/level-transcoder-1.0.1.tgz", + "integrity": "sha512-t7bFwFtsQeD8cl8NIoQ2iwxA0CL/9IFw7/9gAjOonH0PWTTiRfY7Hq+Ejbsxh86tXobDQ6IOiddjNYIfOBs06w==", "dev": true, "dependencies": { - "estraverse": "^5.2.0" + "buffer": "^6.0.3", + "module-error": "^1.0.1" }, "engines": { - "node": ">=4.0" + "node": ">=12" } }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, + "peer": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, "engines": { - "node": ">=4.0" + "node": ">= 0.8.0" } }, - "node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "node_modules/lie": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/lie/-/lie-3.1.1.tgz", + "integrity": "sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==", "dev": true, - "engines": { - "node": ">=4.0" + "dependencies": { + "immediate": "~3.0.5" } }, - "node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", - "dev": true - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "node_modules/localforage": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/localforage/-/localforage-1.10.0.tgz", + "integrity": "sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "lie": "3.1.1" } }, - "node_modules/expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, + "peer": true, "dependencies": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" + "p-locate": "^5.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/expand-brackets/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true, - "dependencies": { - "ms": "2.0.0" - } + "peer": true }, - "node_modules/expand-brackets/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "dependencies": { - "is-descriptor": "^0.1.0" + "yallist": "^4.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=10" } }, - "node_modules/expand-brackets/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", "dev": true, + "optional": true, "dependencies": { - "is-extendable": "^0.1.0" + "pify": "^4.0.1", + "semver": "^5.6.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/expand-brackets/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "node_modules/make-dir/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" + "optional": true, + "bin": { + "semver": "bin/semver" } }, - "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" + "optional": true, + "bin": { + "mime": "cli.js" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/expand-brackets/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "node_modules/min-document": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", + "integrity": "sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==", "dev": true, "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" + "dom-walk": "^0.1.0" } }, - "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "is-buffer": "^1.1.5" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=0.10.0" + "node": "*" } }, - "node_modules/expand-brackets/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "node_modules/minimist": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", + "dev": true + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dev": true, "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" + "minimist": "^1.2.6" }, - "engines": { - "node": ">=0.10.0" + "bin": { + "mkdirp": "bin/cmd.js" } }, - "node_modules/expand-brackets/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "node_modules/module-error": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/module-error/-/module-error-1.0.2.tgz", + "integrity": "sha512-0yuvsqSCv8LbaOKhnsQ/T5JhyFlCYLPXK3U2sgV10zoKQwzs/MyfuQUOZQ1V/6OCOJsK/TRgNVrPuPDqtdMFtA==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=10" } }, - "node_modules/expand-brackets/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, - "node_modules/expand-tilde": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", - "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", + "node_modules/napi-macros": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/napi-macros/-/napi-macros-2.2.2.tgz", + "integrity": "sha512-hmEVtAGYzVQpCKdbQea4skABsdXW4RUh5t5mJ2zzqowJS2OyXZTU1KhDVFhx+NlWZ4ap9mqR9TcDO3LTTttd+g==", + "dev": true + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true, - "dependencies": { - "homedir-polyfill": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } + "peer": true }, - "node_modules/ext": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", - "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", + "node_modules/nedb-core": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/nedb-core/-/nedb-core-3.0.6.tgz", + "integrity": "sha512-fbxtDJGduzLuxTWE3eD+FLb2yvtFunPBy/bNPS2TIaHNJK1YzEQydrNXJuOSGzZJ9DrNWOm+MdsqkdOeWBV74Q==", "dev": true, "dependencies": { - "type": "^2.7.2" + "async": "latest", + "is": "latest", + "localforage": "latest", + "mkdirp": "latest", + "underscore": "latest" } }, - "node_modules/ext/node_modules/type": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", - "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==", - "dev": true - }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, - "node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "node_modules/nedb-promises": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/nedb-promises/-/nedb-promises-6.2.3.tgz", + "integrity": "sha512-enq0IjNyBz9Qy9W/QPCcLGh/QORGBjXbIeZeWvIjO3OMLyAvlKT3hiJubP2BKEiFniUlR3L01o18ktqgn5jxqA==", "dev": true, "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" + "@seald-io/nedb": "^4.0.2" } }, - "node_modules/extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "node_modules/needle": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/needle/-/needle-3.1.0.tgz", + "integrity": "sha512-gCE9weDhjVGCRqS8dwDR/D3GTAeyXLXuqp7I8EzH6DllZGXSUyxuqqLh+YX9rMAWaaTFyVAg6rHGL25dqvczKw==", "dev": true, + "optional": true, "dependencies": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" + "debug": "^3.2.6", + "iconv-lite": "^0.6.3", + "sax": "^1.2.4" }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "dev": true, - "dependencies": { - "is-descriptor": "^1.0.0" + "bin": { + "needle": "bin/needle" }, "engines": { - "node": ">=0.10.0" + "node": ">= 4.4.x" } }, - "node_modules/extglob/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "node_modules/needle/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, + "optional": true, "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "ms": "^2.1.1" } }, - "node_modules/fancy-log": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-2.0.0.tgz", - "integrity": "sha512-9CzxZbACXMUXW13tS0tI8XsGGmxWzO2DmYrGuBJOJ8k8q2K7hwfJA5qHjuPPe8wtsco33YR9wc+Rlr5wYFvhSA==", + "node_modules/node-gyp-build": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.1.tgz", + "integrity": "sha512-24vnklJmyRS8ViBNI8KbtK/r/DmXQMRiOMXTNz2nrTnAYUwjmEEbnnpB/+kt+yWRv73bPsSPRFddrcIbAxSiMQ==", "dev": true, - "dependencies": { - "color-support": "^1.1.3" - }, - "engines": { - "node": ">=10.13.0" + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" } }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "node_modules/fast-levenshtein": { + "node_modules/node-releases": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", "dev": true, - "peer": true, - "dependencies": { - "reusify": "^1.0.4" - } + "peer": true }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, "dependencies": { - "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" + "wrappy": "1" } }, - "node_modules/file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "dev": true, - "optional": true - }, - "node_modules/fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "node_modules/optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", "dev": true, + "peer": true, "dependencies": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.8.0" } }, - "node_modules/fill-range/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, + "peer": true, "dependencies": { - "is-extendable": "^0.1.0" + "yocto-queue": "^0.1.0" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fill-range/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/find-up": { + "node_modules/p-locate": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, "peer": true, "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" + "p-limit": "^3.0.2" }, "engines": { "node": ">=10" @@ -2593,3690 +2611,392 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/findup-sync": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", - "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, + "peer": true, "dependencies": { - "detect-file": "^1.0.0", - "is-glob": "^4.0.0", - "micromatch": "^3.0.4", - "resolve-dir": "^1.0.1" + "callsites": "^3.0.0" }, "engines": { - "node": ">= 0.10" + "node": ">=6" } }, - "node_modules/fined": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz", - "integrity": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==", + "node_modules/parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", "dev": true, - "dependencies": { - "expand-tilde": "^2.0.2", - "is-plain-object": "^2.0.3", - "object.defaults": "^1.1.0", - "object.pick": "^1.2.0", - "parse-filepath": "^1.0.1" - }, "engines": { "node": ">= 0.10" } }, - "node_modules/flagged-respawn": { + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz", - "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true, "engines": { - "node": ">= 0.10" + "node": ">=0.10.0" } }, - "node_modules/flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, - "dependencies": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" - }, + "peer": true, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=8" } }, - "node_modules/flatted": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.6.tgz", - "integrity": "sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ==", + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, - "node_modules/flush-write-stream": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", - "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "readable-stream": "^2.3.6" - } + "peer": true }, - "node_modules/for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/for-own": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", - "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==", + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", "dev": true, - "dependencies": { - "for-in": "^1.0.1" - }, + "optional": true, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/fork-stream": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/fork-stream/-/fork-stream-0.0.4.tgz", - "integrity": "sha512-Pqq5NnT78ehvUnAk/We/Jr22vSvanRlFTpAmQ88xBY/M1TlHe+P0ILuEyXS595ysdGfaj22634LBkGMA2GTcpA==", - "dev": true - }, - "node_modules/fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, - "dependencies": { - "map-cache": "^0.2.2" - }, + "peer": true, "engines": { - "node": ">=0.10.0" + "node": ">= 0.8.0" } }, - "node_modules/fs": { - "version": "0.0.1-security", - "resolved": "https://registry.npmjs.org/fs/-/fs-0.0.1-security.tgz", - "integrity": "sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==", - "dev": true - }, - "node_modules/fs-mkdirp-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", - "integrity": "sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==", + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", "dev": true, - "dependencies": { - "graceful-fs": "^4.1.11", - "through2": "^2.0.3" - }, "engines": { - "node": ">= 0.10" + "node": ">= 0.6.0" } }, - "node_modules/fs-mkdirp-stream/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" + "optional": true + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6" } }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "node_modules/fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", + "node_modules/rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], "dependencies": { - "bindings": "^1.5.0", - "nan": "^2.12.1" + "resolve": "^1.1.6" }, "engines": { - "node": ">= 4.0" + "node": ">= 0.10" } }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, - "node_modules/functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", - "dev": true - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "node_modules/regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", "dev": true, "peer": true, "engines": { - "node": ">=6.9.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" } }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "dev": true, "engines": { - "node": "6.* || 8.* || >= 10.*" + "node": ">=0.10.0" } }, - "node_modules/get-intrinsic": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", - "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", + "node_modules/resolve": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", "dev": true, "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true, + "peer": true, "engines": { + "iojs": ">=1.0.0", "node": ">=0.10.0" } }, - "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dev": true, + "peer": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "glob": "^7.1.3" }, - "engines": { - "node": "*" + "bin": { + "rimraf": "bin.js" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "node_modules/rollup": { + "version": "3.28.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.28.1.tgz", + "integrity": "sha512-R9OMQmIHJm9znrU3m3cpE8uhN0fGdXiawME7aZIpQqvpS/85+Vt1Hq1/yVIcYfOmaQiHjvXkQAoJukvLpau6Yw==", "dev": true, - "peer": true, - "dependencies": { - "is-glob": "^4.0.3" + "bin": { + "rollup": "dist/bin/rollup" }, "engines": { - "node": ">=10.13.0" + "node": ">=14.18.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "node_modules/glob-stream": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", - "integrity": "sha512-uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw==", + "node_modules/rollup/node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", "dev": true, - "dependencies": { - "extend": "^3.0.0", - "glob": "^7.1.1", - "glob-parent": "^3.1.0", - "is-negated-glob": "^1.0.0", - "ordered-read-streams": "^1.0.0", - "pumpify": "^1.3.5", - "readable-stream": "^2.1.5", - "remove-trailing-separator": "^1.0.1", - "to-absolute-glob": "^2.0.0", - "unique-stream": "^2.0.2" - }, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">= 0.10" + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "node_modules/glob-stream/node_modules/glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "peer": true, "dependencies": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" + "queue-microtask": "^1.2.2" } }, - "node_modules/glob-stream/node_modules/is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true, - "dependencies": { - "is-extglob": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } + "peer": true }, - "node_modules/glob-watcher": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz", - "integrity": "sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==", + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", "dev": true, - "dependencies": { - "anymatch": "^2.0.0", - "async-done": "^1.2.0", - "chokidar": "^2.0.0", - "is-negated-glob": "^1.0.0", - "just-debounce": "^1.0.0", - "normalize-path": "^3.0.0", - "object.defaults": "^1.1.0" - }, - "engines": { - "node": ">= 0.10" - } + "optional": true }, - "node_modules/glob-watcher/node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", "dev": true, - "engines": { - "node": ">=0.10.0" + "optional": true + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/global-modules": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", - "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, + "peer": true, "dependencies": { - "global-prefix": "^1.0.1", - "is-windows": "^1.0.1", - "resolve-dir": "^1.0.0" + "shebang-regex": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/global-prefix": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", - "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, - "dependencies": { - "expand-tilde": "^2.0.2", - "homedir-polyfill": "^1.0.1", - "ini": "^1.3.4", - "is-windows": "^1.0.1", - "which": "^1.2.14" - }, + "peer": true, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/global-prefix/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "node_modules/shelljs": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", + "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", "dev": true, "dependencies": { - "isexe": "^2.0.0" + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" }, "bin": { - "which": "bin/which" - } - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true, - "peer": true, + "shjs": "bin/shjs" + }, "engines": { "node": ">=4" } }, - "node_modules/glogg": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz", - "integrity": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==", + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "dependencies": { - "sparkles": "^1.0.0" - }, + "optional": true, "engines": { - "node": ">= 0.10" + "node": ">=0.10.0" } }, - "node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", "dev": true }, - "node_modules/grapheme-splitter": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", - "dev": true, - "peer": true - }, - "node_modules/gulp": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/gulp/-/gulp-4.0.2.tgz", - "integrity": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==", - "dev": true, - "dependencies": { - "glob-watcher": "^5.0.3", - "gulp-cli": "^2.2.0", - "undertaker": "^1.2.1", - "vinyl-fs": "^3.0.0" - }, - "bin": { - "gulp": "bin/gulp.js" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/gulp-cli": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz", - "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==", - "dev": true, - "dependencies": { - "ansi-colors": "^1.0.1", - "archy": "^1.0.0", - "array-sort": "^1.0.0", - "color-support": "^1.1.3", - "concat-stream": "^1.6.0", - "copy-props": "^2.0.1", - "fancy-log": "^1.3.2", - "gulplog": "^1.0.0", - "interpret": "^1.4.0", - "isobject": "^3.0.1", - "liftoff": "^3.1.0", - "matchdep": "^2.0.0", - "mute-stdout": "^1.0.0", - "pretty-hrtime": "^1.0.0", - "replace-homedir": "^1.0.0", - "semver-greatest-satisfied-range": "^1.1.0", - "v8flags": "^3.2.0", - "yargs": "^7.1.0" - }, - "bin": { - "gulp": "bin/gulp.js" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/gulp-cli/node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-cli/node_modules/cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==", - "dev": true, - "dependencies": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wrap-ansi": "^2.0.0" - } - }, - "node_modules/gulp-cli/node_modules/fancy-log": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", - "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", - "dev": true, - "dependencies": { - "ansi-gray": "^0.1.1", - "color-support": "^1.1.3", - "parse-node-version": "^1.0.0", - "time-stamp": "^1.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/gulp-cli/node_modules/get-caller-file": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", - "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", - "dev": true - }, - "node_modules/gulp-cli/node_modules/is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", - "dev": true, - "dependencies": { - "number-is-nan": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-cli/node_modules/string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", - "dev": true, - "dependencies": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-cli/node_modules/strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", - "dev": true, - "dependencies": { - "ansi-regex": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-cli/node_modules/wrap-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==", - "dev": true, - "dependencies": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-cli/node_modules/y18n": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", - "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==", - "dev": true - }, - "node_modules/gulp-cli/node_modules/yargs": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.2.tgz", - "integrity": "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==", - "dev": true, - "dependencies": { - "camelcase": "^3.0.0", - "cliui": "^3.2.0", - "decamelize": "^1.1.1", - "get-caller-file": "^1.0.1", - "os-locale": "^1.4.0", - "read-pkg-up": "^1.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^1.0.2", - "which-module": "^1.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^5.0.1" - } - }, - "node_modules/gulp-cli/node_modules/yargs-parser": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz", - "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==", - "dev": true, - "dependencies": { - "camelcase": "^3.0.0", - "object.assign": "^4.1.0" - } - }, - "node_modules/gulp-eslint7": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/gulp-eslint7/-/gulp-eslint7-0.3.2.tgz", - "integrity": "sha512-zDb/sz8sXmP2jv6BTM9mH1DhoOX7nq5Q3ESHelqw+Fqd7lbU0GoOUVte3NvpqP+oWaGn2+t0AKEs0kXEQRMUIw==", - "deprecated": "\"gulp-eslint7\" has been renamed. Switch to \"gulp-eslint-new\" for the latest updates, including support for ESLint 8.", - "dev": true, - "dependencies": { - "eslint": "^7.32.0", - "fancy-log": "^1.3.3", - "plugin-error": "^1.0.1" - } - }, - "node_modules/gulp-eslint7/node_modules/@babel/code-frame": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", - "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", - "dev": true, - "dependencies": { - "@babel/highlight": "^7.10.4" - } - }, - "node_modules/gulp-eslint7/node_modules/@eslint/eslintrc": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", - "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", - "dev": true, - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.1.1", - "espree": "^7.3.0", - "globals": "^13.9.0", - "ignore": "^4.0.6", - "import-fresh": "^3.2.1", - "js-yaml": "^3.13.1", - "minimatch": "^3.0.4", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/gulp-eslint7/node_modules/@humanwhocodes/config-array": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", - "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", - "dev": true, - "dependencies": { - "@humanwhocodes/object-schema": "^1.2.0", - "debug": "^4.1.1", - "minimatch": "^3.0.4" - }, - "engines": { - "node": ">=10.10.0" - } - }, - "node_modules/gulp-eslint7/node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/gulp-eslint7/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/gulp-eslint7/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/gulp-eslint7/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/gulp-eslint7/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/gulp-eslint7/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/gulp-eslint7/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/gulp-eslint7/node_modules/eslint": { - "version": "7.32.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", - "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", - "dev": true, - "dependencies": { - "@babel/code-frame": "7.12.11", - "@eslint/eslintrc": "^0.4.3", - "@humanwhocodes/config-array": "^0.5.0", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.0.1", - "doctrine": "^3.0.0", - "enquirer": "^2.3.5", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^5.1.1", - "eslint-utils": "^2.1.0", - "eslint-visitor-keys": "^2.0.0", - "espree": "^7.3.1", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^5.1.2", - "globals": "^13.6.0", - "ignore": "^4.0.6", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "js-yaml": "^3.13.1", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.0.4", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "progress": "^2.0.0", - "regexpp": "^3.1.0", - "semver": "^7.2.1", - "strip-ansi": "^6.0.0", - "strip-json-comments": "^3.1.0", - "table": "^6.0.9", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/gulp-eslint7/node_modules/eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", - "dev": true, - "dependencies": { - "eslint-visitor-keys": "^1.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - } - }, - "node_modules/gulp-eslint7/node_modules/eslint-utils/node_modules/eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/gulp-eslint7/node_modules/espree": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", - "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", - "dev": true, - "dependencies": { - "acorn": "^7.4.0", - "acorn-jsx": "^5.3.1", - "eslint-visitor-keys": "^1.3.0" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/gulp-eslint7/node_modules/espree/node_modules/eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/gulp-eslint7/node_modules/fancy-log": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", - "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", - "dev": true, - "dependencies": { - "ansi-gray": "^0.1.1", - "color-support": "^1.1.3", - "parse-node-version": "^1.0.0", - "time-stamp": "^1.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/gulp-eslint7/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/gulp-eslint7/node_modules/globals": { - "version": "13.19.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz", - "integrity": "sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/gulp-eslint7/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/gulp-eslint7/node_modules/ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/gulp-eslint7/node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/gulp-eslint7/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/gulp-eslint7/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/gulp-if": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/gulp-if/-/gulp-if-3.0.0.tgz", - "integrity": "sha512-fCUEngzNiEZEK2YuPm+sdMpO6ukb8+/qzbGfJBXyNOXz85bCG7yBI+pPSl+N90d7gnLvMsarthsAImx0qy7BAw==", - "dev": true, - "dependencies": { - "gulp-match": "^1.1.0", - "ternary-stream": "^3.0.0", - "through2": "^3.0.1" - } - }, - "node_modules/gulp-if/node_modules/through2": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", - "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", - "dev": true, - "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "2 || 3" - } - }, - "node_modules/gulp-less": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/gulp-less/-/gulp-less-5.0.0.tgz", - "integrity": "sha512-W2I3TewO/By6UZsM/wJG3pyK5M6J0NYmJAAhwYXQHR+38S0iDtZasmUgFCH3CQj+pQYw/PAIzxvFvwtEXz1HhQ==", - "dev": true, - "dependencies": { - "less": "^3.7.1 || ^4.0.0", - "object-assign": "^4.0.1", - "plugin-error": "^1.0.0", - "replace-ext": "^2.0.0", - "through2": "^4.0.0", - "vinyl-sourcemaps-apply": "^0.2.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/gulp-match": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/gulp-match/-/gulp-match-1.1.0.tgz", - "integrity": "sha512-DlyVxa1Gj24DitY2OjEsS+X6tDpretuxD6wTfhXE/Rw2hweqc1f6D/XtsJmoiCwLWfXgR87W9ozEityPCVzGtQ==", - "dev": true, - "dependencies": { - "minimatch": "^3.0.3" - } - }, - "node_modules/gulplog": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", - "integrity": "sha512-hm6N8nrm3Y08jXie48jsC55eCZz9mnb4OirAStEk2deqeyhXU3C1otDVh+ccttMuc1sBi6RX6ZJ720hs9RCvgw==", - "dev": true, - "dependencies": { - "glogg": "^1.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", - "dev": true, - "dependencies": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", - "dev": true, - "dependencies": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-values/node_modules/kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/homedir-polyfill": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", - "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", - "dev": true, - "dependencies": { - "parse-passwd": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "optional": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "dev": true, - "peer": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/image-size": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", - "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", - "dev": true, - "optional": true, - "bin": { - "image-size": "bin/image-size.js" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/immediate": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", - "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==", - "dev": true - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true - }, - "node_modules/interpret": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", - "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/invert-kv": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", - "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-absolute": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", - "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", - "dev": true, - "dependencies": { - "is-relative": "^1.0.0", - "is-windows": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true - }, - "node_modules/is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", - "dev": true, - "dependencies": { - "binary-extensions": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true - }, - "node_modules/is-builtin-module": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.0.tgz", - "integrity": "sha512-phDA4oSGt7vl1n5tJvTWooWWAsXLY+2xCnxNqvKhGEzujg+A43wPlPOyDg3C8XQHN+6k/JTQWJ/j0dQh/qr+Hw==", - "dev": true, - "dependencies": { - "builtin-modules": "^3.3.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-core-module": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz", - "integrity": "sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==", - "dev": true, - "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-descriptor/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", - "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", - "dev": true - }, - "node_modules/is-negated-glob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", - "integrity": "sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-number/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-relative": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", - "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", - "dev": true, - "dependencies": { - "is-unc-path": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-unc-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", - "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", - "dev": true, - "dependencies": { - "unc-path-regex": "^0.1.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==", - "dev": true - }, - "node_modules/is-valid-glob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", - "integrity": "sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-what": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", - "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", - "dev": true - }, - "node_modules/is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "node_modules/isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/js-sdsl": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz", - "integrity": "sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==", - "dev": true, - "peer": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/js-sdsl" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "peer": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsdoc-type-pratt-parser": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-3.1.0.tgz", - "integrity": "sha512-MgtD0ZiCDk9B+eI73BextfRrVQl0oyzRG8B2BjORts6jbunj4ScKPcyXGTbB6eXL4y9TzxCm6hyeLq/2ASzNdw==", - "dev": true, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true, - "peer": true, - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true, - "peer": true, - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/just-debounce": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.1.0.tgz", - "integrity": "sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==", - "dev": true - }, - "node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/last-run": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", - "integrity": "sha512-U/VxvpX4N/rFvPzr3qG5EtLKEnNI0emvIQB3/ecEwv+8GHaUKbIB8vxv1Oai5FAF0d0r7LXHhLLe5K/yChm5GQ==", - "dev": true, - "dependencies": { - "default-resolution": "^2.0.0", - "es6-weak-map": "^2.0.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/lazystream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", - "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", - "dev": true, - "dependencies": { - "readable-stream": "^2.0.5" - }, - "engines": { - "node": ">= 0.6.3" - } - }, - "node_modules/lcid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", - "integrity": "sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==", - "dev": true, - "dependencies": { - "invert-kv": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/lead": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", - "integrity": "sha512-IpSVCk9AYvLHo5ctcIXxOBpMWUe+4TKN3VPWAKUbJikkmsGp0VrSM8IttVc32D6J4WUsiPE6aEFRNmIoF/gdow==", - "dev": true, - "dependencies": { - "flush-write-stream": "^1.0.2" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/less": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/less/-/less-4.1.3.tgz", - "integrity": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==", - "dev": true, - "dependencies": { - "copy-anything": "^2.0.1", - "parse-node-version": "^1.0.1", - "tslib": "^2.3.0" - }, - "bin": { - "lessc": "bin/lessc" - }, - "engines": { - "node": ">=6" - }, - "optionalDependencies": { - "errno": "^0.1.1", - "graceful-fs": "^4.1.2", - "image-size": "~0.5.0", - "make-dir": "^2.1.0", - "mime": "^1.4.1", - "needle": "^3.1.0", - "source-map": "~0.6.0" - } - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/lie": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/lie/-/lie-3.1.1.tgz", - "integrity": "sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==", - "dev": true, - "dependencies": { - "immediate": "~3.0.5" - } - }, - "node_modules/liftoff": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz", - "integrity": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==", - "dev": true, - "dependencies": { - "extend": "^3.0.0", - "findup-sync": "^3.0.0", - "fined": "^1.0.1", - "flagged-respawn": "^1.0.0", - "is-plain-object": "^2.0.4", - "object.map": "^1.0.0", - "rechoir": "^0.6.2", - "resolve": "^1.1.7" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "strip-bom": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/load-json-file/node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/localforage": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/localforage/-/localforage-1.10.0.tgz", - "integrity": "sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==", - "dev": true, - "dependencies": { - "lie": "3.1.1" - } - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "peer": true, - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "node_modules/lodash.truncate": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", - "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", - "dev": true - }, - "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "dev": true, - "optional": true, - "dependencies": { - "pify": "^4.0.1", - "semver": "^5.6.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/make-dir/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "optional": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/make-iterator": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", - "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", - "dev": true, - "dependencies": { - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/make-iterator/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", - "dev": true, - "dependencies": { - "object-visit": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/matchdep": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz", - "integrity": "sha512-LFgVbaHIHMqCRuCZyfCtUOq9/Lnzhi7Z0KFUE2fhD54+JN2jLh3hC02RLkqauJ3U4soU6H1J3tfj/Byk7GoEjA==", - "dev": true, - "dependencies": { - "findup-sync": "^2.0.0", - "micromatch": "^3.0.4", - "resolve": "^1.4.0", - "stack-trace": "0.0.10" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/matchdep/node_modules/findup-sync": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", - "integrity": "sha512-vs+3unmJT45eczmcAZ6zMJtxN3l/QXeccaXQx5cu/MeJMhewVfoWZqibRkOxPnmoR59+Zy5hjabfQc6JLSah4g==", - "dev": true, - "dependencies": { - "detect-file": "^1.0.0", - "is-glob": "^3.1.0", - "micromatch": "^3.0.4", - "resolve-dir": "^1.0.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/matchdep/node_modules/is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "node_modules/micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/micromatch/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true, - "optional": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", - "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", - "dev": true - }, - "node_modules/mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "dev": true, - "dependencies": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "dev": true, - "dependencies": { - "minimist": "^1.2.6" - }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/mute-stdout": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.1.tgz", - "integrity": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/nan": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz", - "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==", - "dev": true, - "optional": true - }, - "node_modules/nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", - "dev": true, - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nanomatch/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "node_modules/nedb": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/nedb/-/nedb-1.8.0.tgz", - "integrity": "sha512-ip7BJdyb5m+86ZbSb4y10FCCW9g35+U8bDRrZlAfCI6m4dKwEsQ5M52grcDcVK4Vm/vnPlDLywkyo3GliEkb5A==", - "dev": true, - "dependencies": { - "async": "0.2.10", - "binary-search-tree": "0.2.5", - "localforage": "^1.3.0", - "mkdirp": "~0.5.1", - "underscore": "~1.4.4" - } - }, - "node_modules/needle": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/needle/-/needle-3.1.0.tgz", - "integrity": "sha512-gCE9weDhjVGCRqS8dwDR/D3GTAeyXLXuqp7I8EzH6DllZGXSUyxuqqLh+YX9rMAWaaTFyVAg6rHGL25dqvczKw==", - "dev": true, - "optional": true, - "dependencies": { - "debug": "^3.2.6", - "iconv-lite": "^0.6.3", - "sax": "^1.2.4" - }, - "bin": { - "needle": "bin/needle" - }, - "engines": { - "node": ">= 4.4.x" - } - }, - "node_modules/needle/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "optional": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/next-tick": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", - "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", - "dev": true - }, - "node_modules/node-releases": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", - "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", - "dev": true, - "peer": true - }, - "node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "node_modules/normalize-package-data/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", - "dev": true, - "dependencies": { - "remove-trailing-separator": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/now-and-later": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", - "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", - "dev": true, - "dependencies": { - "once": "^1.3.2" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", - "dev": true, - "dependencies": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", - "dev": true, - "dependencies": { - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.defaults": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", - "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==", - "dev": true, - "dependencies": { - "array-each": "^1.0.1", - "array-slice": "^1.0.0", - "for-own": "^1.0.0", - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.map": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", - "integrity": "sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==", - "dev": true, - "dependencies": { - "for-own": "^1.0.0", - "make-iterator": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", - "dev": true, - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.reduce": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz", - "integrity": "sha512-naLhxxpUESbNkRqc35oQ2scZSJueHGQNUfMW/0U37IgN6tE2dgDWg3whf+NEliy3F/QysrO48XKUz/nGPe+AQw==", - "dev": true, - "dependencies": { - "for-own": "^1.0.0", - "make-iterator": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", - "dev": true, - "dependencies": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/ordered-read-streams": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", - "integrity": "sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==", - "dev": true, - "dependencies": { - "readable-stream": "^2.0.1" - } - }, - "node_modules/os-locale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==", - "dev": true, - "dependencies": { - "lcid": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "peer": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "peer": true, - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dev": true, - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/parse-filepath": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", - "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", - "dev": true, - "dependencies": { - "is-absolute": "^1.0.0", - "map-cache": "^0.2.0", - "path-root": "^0.1.1" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", - "dev": true, - "dependencies": { - "error-ex": "^1.2.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/parse-node-version": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", - "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/parse-passwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", - "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path": { - "version": "0.12.7", - "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", - "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==", - "dev": true, - "dependencies": { - "process": "^0.11.1", - "util": "^0.10.3" - } - }, - "node_modules/path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", - "dev": true - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true - }, - "node_modules/path-root": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", - "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", - "dev": true, - "dependencies": { - "path-root-regex": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-root-regex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", - "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.1.2", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-type/node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true, - "peer": true - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true, - "optional": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", - "dev": true, - "dependencies": { - "pinkie": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/plugin-error": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz", - "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==", - "dev": true, - "dependencies": { - "ansi-colors": "^1.0.1", - "arr-diff": "^4.0.0", - "arr-union": "^3.1.0", - "extend-shallow": "^3.0.2" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/pretty-hrtime": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", - "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", - "dev": true, - "engines": { - "node": ">= 0.6.0" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "node_modules/progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", - "dev": true, - "optional": true - }, - "node_modules/pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/pumpify": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", - "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", - "dev": true, - "dependencies": { - "duplexify": "^3.6.0", - "inherits": "^2.0.3", - "pump": "^2.0.0" - } - }, - "node_modules/pumpify/node_modules/duplexify": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", - "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - } - }, - "node_modules/punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "peer": true - }, - "node_modules/read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", - "dev": true, - "dependencies": { - "load-json-file": "^1.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", - "dev": true, - "dependencies": { - "find-up": "^1.0.0", - "read-pkg": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/read-pkg-up/node_modules/find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", - "dev": true, - "dependencies": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/read-pkg-up/node_modules/path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", - "dev": true, - "dependencies": { - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/rechoir": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", - "dev": true, - "dependencies": { - "resolve": "^1.1.6" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", - "dev": true, - "dependencies": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/regexpp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - } - }, - "node_modules/remove-bom-buffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", - "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5", - "is-utf8": "^0.2.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/remove-bom-stream": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", - "integrity": "sha512-wigO8/O08XHb8YPzpDDT+QmRANfW6vLqxfaXm1YXhnFf3AkSLyjfG3GEFg4McZkmgL7KvCj5u2KczkvSP6NfHA==", - "dev": true, - "dependencies": { - "remove-bom-buffer": "^3.0.0", - "safe-buffer": "^5.1.0", - "through2": "^2.0.3" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/remove-bom-stream/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", - "dev": true - }, - "node_modules/repeat-element": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", - "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", - "dev": true, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/replace-ext": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-2.0.0.tgz", - "integrity": "sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==", - "dev": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/replace-homedir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz", - "integrity": "sha512-CHPV/GAglbIB1tnQgaiysb8H2yCy8WQ7lcEwQ/eT+kLj0QHV8LnJW0zpqpE7RSkrMSRoa+EBoag86clf7WAgSg==", - "dev": true, - "dependencies": { - "homedir-polyfill": "^1.0.1", - "is-absolute": "^1.0.0", - "remove-trailing-separator": "^1.1.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==", - "dev": true - }, - "node_modules/resolve": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", - "dev": true, - "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-dir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", - "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", - "dev": true, - "dependencies": { - "expand-tilde": "^2.0.0", - "global-modules": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/resolve-options": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", - "integrity": "sha512-NYDgziiroVeDC29xq7bp/CacZERYsA9bXYd1ZmcJlF3BcrZv5pTb4NG7SjdyKDnXZ84aC4vo2u6sNKIA1LCu/A==", - "dev": true, - "dependencies": { - "value-or-function": "^3.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", - "deprecated": "https://github.com/lydell/resolve-url#deprecated", - "dev": true - }, - "node_modules/ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "dev": true, - "engines": { - "node": ">=0.12" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "peer": true, - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/rollup": { - "version": "3.9.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.9.1.tgz", - "integrity": "sha512-GswCYHXftN8ZKGVgQhTFUJB/NBXxrRGgO2NCy6E8s1rwEJ4Q9/VttNqcYfEvx4dTo4j58YqdC3OVztPzlKSX8w==", - "dev": true, - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=14.18.0", - "npm": ">=8.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/rollup/node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "peer": true, - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", - "dev": true, - "dependencies": { - "ret": "~0.1.10" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true, - "optional": true - }, - "node_modules/sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", - "dev": true, - "optional": true - }, - "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/semver-greatest-satisfied-range": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz", - "integrity": "sha512-Ny/iyOzSSa8M5ML46IAx3iXc6tfOsYU2R4AXi2UpHk60Zrgyq6eqPj/xiOfS0rRl/iiQ/rdJkVjw/5cdUyCntQ==", - "dev": true, - "dependencies": { - "sver-compat": "^1.5.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", - "dev": true - }, - "node_modules/set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", - "dev": true, - "dependencies": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/set-value/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/set-value/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/slice-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/slice-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/slice-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", - "dev": true, - "dependencies": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", - "dev": true, - "dependencies": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "dev": true, - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", - "dev": true, - "dependencies": { - "kind-of": "^3.2.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-util/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/snapdragon/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/snapdragon/node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-resolve": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", - "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", - "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", - "dev": true, - "dependencies": { - "atob": "^2.1.2", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" - } - }, - "node_modules/source-map-url": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", - "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", - "deprecated": "See https://github.com/lydell/source-map-url#deprecated", - "dev": true - }, - "node_modules/sparkles": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz", - "integrity": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/spdx-correct": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", - "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", - "dev": true, - "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", - "dev": true - }, - "node_modules/spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", - "dev": true, - "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-license-ids": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", - "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==", - "dev": true - }, - "node_modules/split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", - "dev": true, - "dependencies": { - "extend-shallow": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "dev": true - }, - "node_modules/stack-trace": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", - "dev": true, - "dependencies": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" } }, - "node_modules/stream-exhaust": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz", - "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==", - "dev": true - }, - "node_modules/stream-shift": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", - "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "node_modules/spdx-license-ids": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", + "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==", "dev": true }, - "node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, "node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", @@ -6288,478 +3008,113 @@ "strip-ansi": "^6.0.1" }, "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", - "dev": true, - "dependencies": { - "is-utf8": "^0.2.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/sver-compat": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz", - "integrity": "sha512-aFTHfmjwizMNlNE6dsGmoAM4lHjL0CyiobWaFiXWSlD7cIxshW422Nb8KbXCmR6z+0ZEPY+daXJrDyh/vuwTyg==", - "dev": true, - "dependencies": { - "es6-iterator": "^2.0.1", - "es6-symbol": "^3.1.1" - } - }, - "node_modules/table": { - "version": "6.8.1", - "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", - "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", - "dev": true, - "dependencies": { - "ajv": "^8.0.1", - "lodash.truncate": "^4.4.2", - "slice-ansi": "^4.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/table/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/table/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "node_modules/ternary-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ternary-stream/-/ternary-stream-3.0.0.tgz", - "integrity": "sha512-oIzdi+UL/JdktkT+7KU5tSIQjj8pbShj3OASuvDEhm0NT5lppsm7aXWAmAq4/QMaBIyfuEcNLbAQA+HpaISobQ==", - "dev": true, - "dependencies": { - "duplexify": "^4.1.1", - "fork-stream": "^0.0.4", - "merge-stream": "^2.0.0", - "through2": "^3.0.1" - } - }, - "node_modules/ternary-stream/node_modules/through2": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", - "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", - "dev": true, - "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "2 || 3" - } - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true - }, - "node_modules/through2": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", - "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", - "dev": true, - "dependencies": { - "readable-stream": "3" - } - }, - "node_modules/through2-filter": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz", - "integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==", - "dev": true, - "dependencies": { - "through2": "~2.0.0", - "xtend": "~4.0.0" - } - }, - "node_modules/through2-filter/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/through2/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/time-stamp": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", - "integrity": "sha512-gLCeArryy2yNTRzTGKbZbloctj64jkZ57hj5zdraXue6aFgd6PmvVtEyiUU+hvU0v7q08oVv8r8ev0tRo6bvgw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-absolute-glob": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", - "integrity": "sha512-rtwLUQEwT8ZeKQbyFJyomBRYXyE16U5VKuy0ftxLMK/PZb2fkOsg5r9kHdauuVDbsNdIBoC/HCthpidamQFXYA==", - "dev": true, - "dependencies": { - "is-absolute": "^1.0.0", - "is-negated-glob": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true, - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-object-path/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", - "dev": true, - "dependencies": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "dev": true, - "dependencies": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-through": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", - "integrity": "sha512-+QIz37Ly7acM4EMdw2PRN389OneM5+d844tirkGp4dPKzI5OE72V9OsbFp+CIYJDahZ41ZV05hNtcPAQUAm9/Q==", - "dev": true, - "dependencies": { - "through2": "^2.0.3" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/to-through/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", - "dev": true - }, - "node_modules/type": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", - "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==", - "dev": true - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", - "dev": true - }, - "node_modules/unc-path-regex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", - "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/underscore": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.4.4.tgz", - "integrity": "sha512-ZqGrAgaqqZM7LGRzNjLnw5elevWb5M8LEoDMadxIW3OWbcv72wMMgKdwOKpd5Fqxe8choLD8HN3iSj3TUh/giQ==", - "dev": true + "node": ">=8" + } }, - "node_modules/undertaker": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-1.3.0.tgz", - "integrity": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==", + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "dependencies": { - "arr-flatten": "^1.0.1", - "arr-map": "^2.0.0", - "bach": "^1.0.0", - "collection-map": "^1.0.0", - "es6-weak-map": "^2.0.1", - "fast-levenshtein": "^1.0.0", - "last-run": "^1.1.0", - "object.defaults": "^1.0.0", - "object.reduce": "^1.0.0", - "undertaker-registry": "^1.0.0" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">= 0.10" + "node": ">=8" } }, - "node_modules/undertaker-registry": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz", - "integrity": "sha512-UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw==", + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, + "peer": true, "engines": { - "node": ">= 0.10" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/undertaker/node_modules/fast-levenshtein": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz", - "integrity": "sha512-Ia0sQNrMPXXkqVFt6w6M1n1oKo3NfKs+mvaV811Jwir7vAk9a6PVV9VPYf6X3BU97QiLEmuW3uXH9u87zDFfdw==", - "dev": true - }, - "node_modules/union-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", - "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, + "peer": true, "dependencies": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" + "has-flag": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/union-value/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/unique-stream": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz", - "integrity": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==", + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true, - "dependencies": { - "json-stable-stringify-without-jsonify": "^1.0.1", - "through2-filter": "^3.0.0" - } + "peer": true }, - "node_modules/unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", "dev": true, - "dependencies": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, + "peer": true, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/unset-value/node_modules/has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", - "dev": true, - "dependencies": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } + "node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true }, - "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, + "peer": true, "dependencies": { - "isarray": "1.0.0" + "prelude-ls": "^1.2.1" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.8.0" } }, - "node_modules/unset-value/node_modules/has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, + "peer": true, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/upath": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", - "dev": true, - "engines": { - "node": ">=4", - "yarn": "*" - } + "node_modules/underscore": { + "version": "1.13.6", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz", + "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==", + "dev": true }, "node_modules/update-browserslist-db": { "version": "1.0.4", @@ -6793,189 +3148,17 @@ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, + "peer": true, "dependencies": { "punycode": "^2.1.0" } }, - "node_modules/urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", - "deprecated": "Please see https://github.com/lydell/urix#deprecated", - "dev": true - }, - "node_modules/use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/util": { - "version": "0.10.4", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", - "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", - "dev": true, - "dependencies": { - "inherits": "2.0.3" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "node_modules/util/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true - }, - "node_modules/v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", - "dev": true - }, - "node_modules/v8flags": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz", - "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==", - "dev": true, - "dependencies": { - "homedir-polyfill": "^1.0.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "dev": true, - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "node_modules/value-or-function": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", - "integrity": "sha512-jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/vinyl": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", - "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", - "dev": true, - "dependencies": { - "clone": "^2.1.1", - "clone-buffer": "^1.0.0", - "clone-stats": "^1.0.0", - "cloneable-readable": "^1.0.0", - "remove-trailing-separator": "^1.0.1", - "replace-ext": "^1.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/vinyl-fs": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", - "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==", - "dev": true, - "dependencies": { - "fs-mkdirp-stream": "^1.0.0", - "glob-stream": "^6.1.0", - "graceful-fs": "^4.0.0", - "is-valid-glob": "^1.0.0", - "lazystream": "^1.0.0", - "lead": "^1.0.0", - "object.assign": "^4.0.4", - "pumpify": "^1.3.5", - "readable-stream": "^2.3.3", - "remove-bom-buffer": "^3.0.0", - "remove-bom-stream": "^1.2.0", - "resolve-options": "^1.1.0", - "through2": "^2.0.0", - "to-through": "^2.0.0", - "value-or-function": "^3.0.0", - "vinyl": "^2.0.0", - "vinyl-sourcemap": "^1.1.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/vinyl-fs/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/vinyl-sourcemap": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", - "integrity": "sha512-NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA==", - "dev": true, - "dependencies": { - "append-buffer": "^1.0.2", - "convert-source-map": "^1.5.0", - "graceful-fs": "^4.1.6", - "normalize-path": "^2.1.1", - "now-and-later": "^2.0.0", - "remove-bom-buffer": "^3.0.0", - "vinyl": "^2.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/vinyl-sourcemaps-apply": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz", - "integrity": "sha512-+oDh3KYZBoZC8hfocrbrxbLUeaYtQK7J5WU5Br9VqWqmCll3tFJqKp97GC9GmMsVIL0qnx2DgEDVxdo5EZ5sSw==", - "dev": true, - "dependencies": { - "source-map": "^0.5.1" - } - }, - "node_modules/vinyl-sourcemaps-apply/node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/vinyl/node_modules/replace-ext": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", - "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, + "peer": true, "dependencies": { "isexe": "^2.0.0" }, @@ -6986,17 +3169,31 @@ "node": ">= 8" } }, - "node_modules/which-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "integrity": "sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ==", - "dev": true + "node_modules/which-typed-array": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz", + "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "dev": true, + "peer": true, "engines": { "node": ">=0.10.0" } @@ -7057,15 +3254,6 @@ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true, - "engines": { - "node": ">=0.4" - } - }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", @@ -7082,27 +3270,27 @@ "dev": true }, "node_modules/yargs": { - "version": "17.5.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.5.1.tgz", - "integrity": "sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==", + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, "dependencies": { - "cliui": "^7.0.2", + "cliui": "^8.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", "string-width": "^4.2.3", "y18n": "^5.0.5", - "yargs-parser": "^21.0.0" + "yargs-parser": "^21.1.1" }, "engines": { "node": ">=12" } }, "node_modules/yargs-parser": { - "version": "21.0.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.0.1.tgz", - "integrity": "sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==", + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", "dev": true, "engines": { "node": ">=12" @@ -7135,13 +3323,14 @@ } }, "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", "dev": true, "peer": true, "requires": { - "@babel/highlight": "^7.18.6" + "@babel/highlight": "^7.22.13", + "chalk": "^2.4.2" } }, "@babel/compat-data": { @@ -7176,25 +3365,26 @@ } }, "@babel/eslint-parser": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.2.tgz", - "integrity": "sha512-oFQYkE8SuH14+uR51JVAmdqwKYXGRjEXx7s+WiagVjqQ+HPE+nnwyF2qlVG8evUsUHmPcA+6YXMEDbIhEyQc5A==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.22.15.tgz", + "integrity": "sha512-yc8OOBIQk1EcRrpizuARSQS0TWAcOMpEJ1aafhNznaeYkeL+OhqnDObGFylB8ka8VFF/sZc+S4RzHyO+3LjQxg==", "dev": true, "requires": { - "eslint-scope": "^5.1.1", + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", "eslint-visitor-keys": "^2.1.0", - "semver": "^6.3.0" + "semver": "^6.3.1" } }, "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz", + "integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==", "dev": true, "peer": true, "requires": { - "@babel/types": "^7.18.7", + "@babel/types": "^7.23.0", "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" }, "dependencies": { @@ -7226,31 +3416,31 @@ } }, "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", "dev": true, "peer": true }, "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", "dev": true, "peer": true, "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" } }, "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", "dev": true, "peer": true, "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" } }, "@babel/helper-module-imports": { @@ -7291,20 +3481,28 @@ } }, "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", "dev": true, "peer": true, "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" } }, + "@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "dev": true, + "peer": true + }, "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==", - "dev": true + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true, + "peer": true }, "@babel/helper-validator-option": { "version": "7.18.6", @@ -7326,74 +3524,76 @@ } }, "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", + "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", "dev": true, + "peer": true, "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", "js-tokens": "^4.0.0" } }, "@babel/parser": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", - "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz", + "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==", "dev": true, "peer": true }, "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", "dev": true, "peer": true, "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/code-frame": "^7.22.13", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15" } }, "@babel/traverse": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", - "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.2.tgz", + "integrity": "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==", "dev": true, "peer": true, "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.7", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.8", - "@babel/types": "^7.18.8", + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.23.0", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.0", + "@babel/types": "^7.23.0", "debug": "^4.1.0", "globals": "^11.1.0" } }, "@babel/types": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", - "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.0.tgz", + "integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==", "dev": true, "peer": true, "requires": { - "@babel/helper-validator-identifier": "^7.18.6", + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.20", "to-fast-properties": "^2.0.0" } }, "@es-joy/jsdoccomment": { - "version": "0.36.1", - "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.36.1.tgz", - "integrity": "sha512-922xqFsTpHs6D0BUiG4toiyPOMc8/jafnWKxz1KWgS4XzKPy2qXf1Pe6UFuNSCQqt6tOuhAWXBNuuyUhJmw9Vg==", + "version": "0.40.1", + "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.40.1.tgz", + "integrity": "sha512-YORCdZSusAlBrFpZ77pJjc5r1bQs5caPWtAu+WWmiSo+8XaUzseapVrfAtiRFbQWnrBxxLLEwF6f6ZG/UgCQCg==", "dev": true, "requires": { - "comment-parser": "1.3.1", - "esquery": "^1.4.0", - "jsdoc-type-pratt-parser": "~3.1.0" + "comment-parser": "1.4.0", + "esquery": "^1.5.0", + "jsdoc-type-pratt-parser": "~4.0.0" } }, "@eslint/eslintrc": { @@ -7426,6 +3626,36 @@ } } }, + "@foundryvtt/foundryvtt-cli": { + "version": "1.0.0-rc.4", + "resolved": "https://registry.npmjs.org/@foundryvtt/foundryvtt-cli/-/foundryvtt-cli-1.0.0-rc.4.tgz", + "integrity": "sha512-DqwEwhrdCy+tSv0xo/KzRLsEvNpm2howE1Lyi329FPC1XAj6WjcVzRAne99ynDXzeK2PLQWEUa/NFgJGnD5oAQ==", + "dev": true, + "requires": { + "chalk": "^5.2.0", + "classic-level": "^1.2.0", + "esm": "^3.2.25", + "js-yaml": "^4.1.0", + "mkdirp": "^3.0.0", + "nedb-core": "^3.0.6", + "nedb-promises": "^6.2.1", + "yargs": "^17.7.1" + }, + "dependencies": { + "chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true + }, + "mkdirp": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz", + "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==", + "dev": true + } + } + }, "@humanwhocodes/config-array": { "version": "0.11.8", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", @@ -7449,7 +3679,8 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", - "dev": true + "dev": true, + "peer": true }, "@jridgewell/gen-mapping": { "version": "0.1.1", @@ -7484,14 +3715,23 @@ "peer": true }, "@jridgewell/trace-mapping": { - "version": "0.3.14", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz", - "integrity": "sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==", + "version": "0.3.20", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", + "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", "dev": true, "peer": true, "requires": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "dev": true, + "requires": { + "eslint-scope": "5.1.1" } }, "@nodelib/fs.scandir": { @@ -7524,15 +3764,15 @@ } }, "@rollup/plugin-node-resolve": { - "version": "15.0.1", - "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.0.1.tgz", - "integrity": "sha512-ReY88T7JhJjeRVbfCyNj+NXAG3IIsVMsX9b5/9jC98dRP8/yxlZdz7mHZbHk5zHr24wZZICS5AcXsFZAXYUQEg==", + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.2.1.tgz", + "integrity": "sha512-nsbUg588+GDSu8/NS8T4UAshO6xeaOfINNuXeVHcKV02LJtoRaM1SiOacClw4kws1SFiNhdLGxlbMY9ga/zs/w==", "dev": true, "requires": { "@rollup/pluginutils": "^5.0.1", "@types/resolve": "1.20.2", "deepmerge": "^4.2.2", - "is-builtin-module": "^3.2.0", + "is-builtin-module": "^3.2.1", "is-module": "^1.0.0", "resolve": "^1.22.1" } @@ -7548,6 +3788,38 @@ "picomatch": "^2.3.1" } }, + "@seald-io/binary-search-tree": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@seald-io/binary-search-tree/-/binary-search-tree-1.0.3.tgz", + "integrity": "sha512-qv3jnwoakeax2razYaMsGI/luWdliBLHTdC6jU55hQt1hcFqzauH/HsBollQ7IR4ySTtYhT+xyHoijpA16C+tA==", + "dev": true + }, + "@seald-io/nedb": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@seald-io/nedb/-/nedb-4.0.2.tgz", + "integrity": "sha512-gJ91fT1sgh2cLXYVcTSh7khZ8LdemI8+SojCdpZ5wy+DUQ4fSrEwGqOwbdV49NDs2BBO6GeBpSb8CnhG2IW1rw==", + "dev": true, + "requires": { + "@seald-io/binary-search-tree": "^1.0.3", + "localforage": "^1.9.0", + "util": "^0.12.4" + }, + "dependencies": { + "util": { + "version": "0.12.5", + "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", + "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "which-typed-array": "^1.1.2" + } + } + } + }, "@types/estree": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", @@ -7560,6 +3832,29 @@ "integrity": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==", "dev": true }, + "abstract-level": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/abstract-level/-/abstract-level-1.0.3.tgz", + "integrity": "sha512-t6jv+xHy+VYwc4xqZMn2Pa9DjcdzvzZmQGRjTFc8spIbRGHgBrEKbPq+rYXc7CCo0lxgYvSgKVg9qZAhpVQSjA==", + "dev": true, + "requires": { + "buffer": "^6.0.3", + "catering": "^2.1.0", + "is-buffer": "^2.0.5", + "level-supports": "^4.0.0", + "level-transcoder": "^1.0.1", + "module-error": "^1.0.1", + "queue-microtask": "^1.2.3" + }, + "dependencies": { + "is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "dev": true + } + } + }, "acorn": { "version": "8.8.1", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", @@ -7572,6 +3867,7 @@ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, + "peer": true, "requires": {} }, "ajv": { @@ -7579,6 +3875,7 @@ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, + "peer": true, "requires": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", @@ -7586,23 +3883,11 @@ "uri-js": "^4.2.2" } }, - "ansi-colors": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz", - "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", - "dev": true, - "requires": { - "ansi-wrap": "^0.1.0" - } - }, - "ansi-gray": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", - "integrity": "sha512-HrgGIZUl8h2EHuZaU9hTR/cU5nhKxpVE1V6kdGsQ8e4zirElJ5fvtfc8N7Q1oq1aatO275i8pUFUCpNWCAnVWw==", - "dev": true, - "requires": { - "ansi-wrap": "0.1.0" - } + "amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==", + "dev": true }, "ansi-regex": { "version": "5.0.1", @@ -7615,158 +3900,21 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, + "peer": true, "requires": { "color-convert": "^1.9.0" } }, - "ansi-wrap": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", - "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", - "dev": true - }, - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "dev": true, - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - } - }, - "append-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", - "integrity": "sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==", - "dev": true, - "requires": { - "buffer-equal": "^1.0.0" - } - }, - "archy": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", - "integrity": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==", + "are-docs-informative": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz", + "integrity": "sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==", "dev": true }, "argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true, - "peer": true - }, - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", - "dev": true - }, - "arr-filter": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz", - "integrity": "sha512-A2BETWCqhsecSvCkWAeVBFLH6sXEUGASuzkpjL3GR1SlL/PWL6M3J8EAAld2Uubmh39tvkJTqC9LeLHCUKmFXA==", - "dev": true, - "requires": { - "make-iterator": "^1.0.0" - } - }, - "arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", - "dev": true - }, - "arr-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz", - "integrity": "sha512-tVqVTHt+Q5Xb09qRkbu+DidW1yYzz5izWS2Xm2yFm7qJnmUfz4HPzNxbHkdRJbz2lrqI7S+z17xNYdFcBBO8Hw==", - "dev": true, - "requires": { - "make-iterator": "^1.0.0" - } - }, - "arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", - "dev": true - }, - "array-each": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", - "integrity": "sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==", - "dev": true - }, - "array-initial": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz", - "integrity": "sha512-BC4Yl89vneCYfpLrs5JU2aAu9/a+xWbeKhvISg9PT7eWFB9UlRvI+rKEtk6mgxWr3dSkk9gQ8hCrdqt06NXPdw==", - "dev": true, - "requires": { - "array-slice": "^1.0.0", - "is-number": "^4.0.0" - }, - "dependencies": { - "is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", - "dev": true - } - } - }, - "array-last": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz", - "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==", - "dev": true, - "requires": { - "is-number": "^4.0.0" - }, - "dependencies": { - "is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", - "dev": true - } - } - }, - "array-slice": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", - "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", - "dev": true - }, - "array-sort": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz", - "integrity": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==", - "dev": true, - "requires": { - "default-compare": "^1.0.0", - "get-value": "^2.0.6", - "kind-of": "^5.0.2" - } - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", - "dev": true - }, - "assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", - "dev": true - }, - "astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", "dev": true }, "async": { @@ -7775,113 +3923,24 @@ "integrity": "sha512-eAkdoKxU6/LkKDBzLpT+t6Ff5EtfSF4wx1WfJiPEEV7WNLnDaRXk0oVysiEPm262roaachGexwUv94WhSgN5TQ==", "dev": true }, - "async-done": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz", - "integrity": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.2", - "process-nextick-args": "^2.0.0", - "stream-exhaust": "^1.0.1" - } - }, - "async-each": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", - "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", - "dev": true - }, - "async-settle": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz", - "integrity": "sha512-VPXfB4Vk49z1LHHodrEQ6Xf7W4gg1w0dAPROHngx7qgDjqmIQ+fXmwgGXTW/ITLai0YLSvWepJOP9EVpMnEAcw==", - "dev": true, - "requires": { - "async-done": "^1.2.2" - } - }, - "atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", "dev": true }, - "bach": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", - "integrity": "sha512-bZOOfCb3gXBXbTFXq3OZtGR88LwGeJvzu6szttaIzymOTS4ZttBNOWSv7aLZja2EMycKtRYV0Oa8SNKH/zkxvg==", - "dev": true, - "requires": { - "arr-filter": "^1.1.1", - "arr-flatten": "^1.0.1", - "arr-map": "^2.0.0", - "array-each": "^1.0.0", - "array-initial": "^1.0.0", - "array-last": "^1.1.1", - "async-done": "^1.2.2", - "async-settle": "^1.0.0", - "now-and-later": "^2.0.0" - } - }, "balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, - "base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "dev": true, - "requires": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - } - } - }, - "binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", "dev": true }, - "binary-search-tree": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/binary-search-tree/-/binary-search-tree-0.2.5.tgz", - "integrity": "sha512-CvNVKS6iXagL1uGwLagSXz1hzSMezxOuGnFi5FHGKqaTO3nPPWrAbyALUzK640j+xOTVm7lzD9YP8W1f/gvUdw==", - "dev": true, - "requires": { - "underscore": "~1.4.4" - } - }, - "bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "dev": true, - "optional": true, - "requires": { - "file-uri-to-path": "1.0.0" - } - }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -7892,41 +3951,6 @@ "concat-map": "0.0.1" } }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true - } - } - }, "browserslist": { "version": "4.21.1", "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", @@ -7940,17 +3964,15 @@ "update-browserslist-db": "^1.0.4" } }, - "buffer-equal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.1.tgz", - "integrity": "sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==", - "dev": true - }, - "buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true + "buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "dev": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } }, "builtin-modules": { "version": "3.3.0", @@ -7958,23 +3980,6 @@ "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", "dev": true }, - "cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "dev": true, - "requires": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - } - }, "call-bind": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", @@ -7989,13 +3994,8 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true - }, - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", - "dev": true + "dev": true, + "peer": true }, "caniuse-lite": { "version": "1.0.30001363", @@ -8004,212 +4004,54 @@ "dev": true, "peer": true }, + "catering": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/catering/-/catering-2.1.1.tgz", + "integrity": "sha512-K7Qy8O9p76sL3/3m7/zLKbRkyOlSZAgzEaLhyj2mXS8PsCud2Eo4hAb8aLtZqHh0QGqLcb9dlJSu6lHRVENm1w==", + "dev": true + }, "chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, + "peer": true, "requires": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }, - "chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "dev": true, - "requires": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "fsevents": "^1.2.7", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - }, - "dependencies": { - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", - "dev": true, - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - } - } - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - } - } - }, - "class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "classic-level": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/classic-level/-/classic-level-1.3.0.tgz", + "integrity": "sha512-iwFAJQYtqRTRM0F6L8h4JCt00ZSGdOyqh7yVrhhjrOpFhmBjNlRUey64MCiyo6UmQHMJ+No3c81nujPv+n9yrg==", "dev": true, "requires": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - } - } + "abstract-level": "^1.0.2", + "catering": "^2.1.0", + "module-error": "^1.0.1", + "napi-macros": "^2.2.2", + "node-gyp-build": "^4.3.0" } }, "cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "dev": true, "requires": { "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", + "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" } }, - "clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", - "dev": true - }, - "clone-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", - "integrity": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==", - "dev": true - }, - "clone-stats": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", - "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", - "dev": true - }, - "cloneable-readable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", - "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "process-nextick-args": "^2.0.0", - "readable-stream": "^2.3.5" - } - }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==", - "dev": true - }, - "collection-map": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz", - "integrity": "sha512-5D2XXSpkOnleOI21TG7p3T0bGAsZ/XknZpKBmGYyluO8pw4zA3K8ZlrBIbC4FXg3m6z/RNFiUFfT2sQK01+UHA==", - "dev": true, - "requires": { - "arr-map": "^2.0.2", - "for-own": "^1.0.0", - "make-iterator": "^1.0.0" - } - }, - "collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", - "dev": true, - "requires": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - } - }, "color-convert": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, + "peer": true, "requires": { "color-name": "1.1.3" } @@ -8218,7 +4060,8 @@ "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true + "dev": true, + "peer": true }, "color-support": { "version": "1.1.3", @@ -8226,16 +4069,16 @@ "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", "dev": true }, - "comment-parser": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.3.1.tgz", - "integrity": "sha512-B52sN2VNghyq5ofvUsqZjmk6YkihBX5vMSChmSK9v4ShjKf3Vk5Xcmgpw4o+iIgtrnM/u5FiMpz9VKb8lpBveA==", + "commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", "dev": true }, - "component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "comment-parser": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.4.0.tgz", + "integrity": "sha512-QLyTNiZ2KDOibvFPlZ6ZngVsZ/0gYnE6uTXi5aoDg8ed3AkJAz4sEje3Y8a29hQ1s6A99MZXe47fLAXQ1rTqaw==", "dev": true }, "concat-map": { @@ -8244,23 +4087,12 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, - "concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, "convert-source-map": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", "dev": true, + "peer": true, "requires": { "safe-buffer": "~5.1.1" } @@ -8274,57 +4106,18 @@ "is-what": "^3.14.1" } }, - "copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", - "dev": true - }, - "copy-props": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz", - "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==", - "dev": true, - "requires": { - "each-props": "^1.3.2", - "is-plain-object": "^5.0.0" - }, - "dependencies": { - "is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", - "dev": true - } - } - }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true - }, "cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, + "peer": true, "requires": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" } }, - "d": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", - "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", - "dev": true, - "requires": { - "es5-ext": "^0.10.50", - "type": "^1.0.1" - } - }, "debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -8334,23 +4127,12 @@ "ms": "2.1.2" } }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "dev": true - }, - "decode-uri-component": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", - "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", - "dev": true - }, "deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true + "dev": true, + "peer": true }, "deepmerge": { "version": "4.2.2", @@ -8358,90 +4140,21 @@ "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", "dev": true }, - "default-compare": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz", - "integrity": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==", - "dev": true, - "requires": { - "kind-of": "^5.0.2" - } - }, - "default-resolution": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz", - "integrity": "sha512-2xaP6GiwVwOEbXCGoJ4ufgC76m8cj805jrghScewJC2ZDsb9U0b4BIrba+xt/Uytyd0HvQ6+WymSRTfnYj59GQ==", - "dev": true - }, - "define-properties": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", - "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", - "dev": true, - "requires": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - } - }, - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dev": true, - "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - } - }, - "detect-file": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", - "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", - "dev": true - }, "doctrine": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, + "peer": true, "requires": { "esutils": "^2.0.2" } }, - "duplexify": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz", - "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==", - "dev": true, - "requires": { - "end-of-stream": "^1.4.1", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1", - "stream-shift": "^1.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } - } - }, - "each-props": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz", - "integrity": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.1", - "object.defaults": "^1.1.0" - } + "dom-walk": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz", + "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==", + "dev": true }, "electron-to-chromium": { "version": "1.4.185", @@ -8456,32 +4169,6 @@ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dev": true, - "requires": { - "once": "^1.4.0" - } - }, - "enquirer": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", - "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", - "dev": true, - "requires": { - "ansi-colors": "^4.1.1" - }, - "dependencies": { - "ansi-colors": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", - "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", - "dev": true - } - } - }, "errno": { "version": "0.1.8", "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", @@ -8492,59 +4179,6 @@ "prr": "~1.0.1" } }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, - "requires": { - "is-arrayish": "^0.2.1" - } - }, - "es5-ext": { - "version": "0.10.62", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", - "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", - "dev": true, - "requires": { - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.3", - "next-tick": "^1.1.0" - } - }, - "es6-iterator": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", - "dev": true, - "requires": { - "d": "1", - "es5-ext": "^0.10.35", - "es6-symbol": "^3.1.1" - } - }, - "es6-symbol": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", - "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", - "dev": true, - "requires": { - "d": "^1.0.1", - "ext": "^1.1.2" - } - }, - "es6-weak-map": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", - "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", - "dev": true, - "requires": { - "d": "1", - "es5-ext": "^0.10.46", - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.1" - } - }, "escalade": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", @@ -8555,7 +4189,8 @@ "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true + "dev": true, + "peer": true }, "eslint": { "version": "8.32.0", @@ -8705,17 +4340,19 @@ } }, "eslint-plugin-jsdoc": { - "version": "39.6.7", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.6.7.tgz", - "integrity": "sha512-0mrzXrHvL2ZLe3QK9X0OEDy7Fs2cFQ/f1d1G5KHEGD+13D1qg56Iovq0uOkYf5bJlHiKPytWVgOOO9y7kLW3VA==", + "version": "46.5.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.5.1.tgz", + "integrity": "sha512-CPbvKprmEuJYoxMj5g8gXfPqUGgcqMM6jpH06Kp4pn5Uy5MrPkFKzoD7UFp2E4RBzfXbJz1+TeuEivwFVMkXBg==", "dev": true, "requires": { - "@es-joy/jsdoccomment": "~0.36.1", - "comment-parser": "1.3.1", + "@es-joy/jsdoccomment": "~0.40.1", + "are-docs-informative": "^0.0.2", + "comment-parser": "1.4.0", "debug": "^4.3.4", "escape-string-regexp": "^4.0.0", - "esquery": "^1.4.0", - "semver": "^7.3.8", + "esquery": "^1.5.0", + "is-builtin-module": "^3.2.1", + "semver": "^7.5.4", "spdx-expression-parse": "^3.0.1" }, "dependencies": { @@ -8726,9 +4363,9 @@ "dev": true }, "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -8762,6 +4399,12 @@ "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "dev": true }, + "esm": { + "version": "3.2.25", + "resolved": "https://registry.npmjs.org/esm/-/esm-3.2.25.tgz", + "integrity": "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==", + "dev": true + }, "espree": { "version": "9.4.1", "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", @@ -8783,16 +4426,10 @@ } } }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true - }, "esquery": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", "dev": true, "requires": { "estraverse": "^5.1.0" @@ -8839,140 +4476,8 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true - }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", - "dev": true, - "requires": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - } - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } - } - }, - "expand-tilde": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", - "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", - "dev": true, - "requires": { - "homedir-polyfill": "^1.0.1" - } - }, - "ext": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", - "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", "dev": true, - "requires": { - "type": "^2.7.2" - }, - "dependencies": { - "type": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", - "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==", - "dev": true - } - } + "peer": true }, "extend": { "version": "3.0.2", @@ -8980,58 +4485,6 @@ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", "dev": true }, - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "dev": true, - "requires": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true - } - } - }, "fancy-log": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-2.0.0.tgz", @@ -9045,19 +4498,22 @@ "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true + "dev": true, + "peer": true }, "fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true + "dev": true, + "peer": true }, "fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true + "dev": true, + "peer": true }, "fastq": { "version": "1.15.0", @@ -9074,46 +4530,11 @@ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, + "peer": true, "requires": { "flat-cache": "^3.0.4" } }, - "file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "dev": true, - "optional": true - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true - } - } - }, "find-up": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", @@ -9125,119 +4546,31 @@ "path-exists": "^4.0.0" } }, - "findup-sync": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", - "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", - "dev": true, - "requires": { - "detect-file": "^1.0.0", - "is-glob": "^4.0.0", - "micromatch": "^3.0.4", - "resolve-dir": "^1.0.1" - } - }, - "fined": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz", - "integrity": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==", - "dev": true, - "requires": { - "expand-tilde": "^2.0.2", - "is-plain-object": "^2.0.3", - "object.defaults": "^1.1.0", - "object.pick": "^1.2.0", - "parse-filepath": "^1.0.1" - } - }, - "flagged-respawn": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz", - "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==", - "dev": true - }, "flat-cache": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", "dev": true, + "peer": true, "requires": { "flatted": "^3.1.0", "rimraf": "^3.0.2" } }, - "flatted": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.6.tgz", - "integrity": "sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ==", - "dev": true - }, - "flush-write-stream": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", - "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "readable-stream": "^2.3.6" - } - }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", - "dev": true - }, - "for-own": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", - "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==", - "dev": true, - "requires": { - "for-in": "^1.0.1" - } - }, - "fork-stream": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/fork-stream/-/fork-stream-0.0.4.tgz", - "integrity": "sha512-Pqq5NnT78ehvUnAk/We/Jr22vSvanRlFTpAmQ88xBY/M1TlHe+P0ILuEyXS595ysdGfaj22634LBkGMA2GTcpA==", - "dev": true - }, - "fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", - "dev": true, - "requires": { - "map-cache": "^0.2.2" - } - }, - "fs": { - "version": "0.0.1-security", - "resolved": "https://registry.npmjs.org/fs/-/fs-0.0.1-security.tgz", - "integrity": "sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==", - "dev": true + "flatted": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.6.tgz", + "integrity": "sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ==", + "dev": true, + "peer": true }, - "fs-mkdirp-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", - "integrity": "sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==", + "for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "dev": true, "requires": { - "graceful-fs": "^4.1.11", - "through2": "^2.0.3" - }, - "dependencies": { - "through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "requires": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - } + "is-callable": "^1.1.3" } }, "fs.realpath": { @@ -9246,29 +4579,12 @@ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "dev": true }, - "fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "dev": true, - "optional": true, - "requires": { - "bindings": "^1.5.0", - "nan": "^2.12.1" - } - }, "function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", "dev": true }, - "functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", - "dev": true - }, "gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -9293,12 +4609,6 @@ "has-symbols": "^1.0.3" } }, - "get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", - "dev": true - }, "glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", @@ -9323,101 +4633,14 @@ "is-glob": "^4.0.3" } }, - "glob-stream": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", - "integrity": "sha512-uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw==", - "dev": true, - "requires": { - "extend": "^3.0.0", - "glob": "^7.1.1", - "glob-parent": "^3.1.0", - "is-negated-glob": "^1.0.0", - "ordered-read-streams": "^1.0.0", - "pumpify": "^1.3.5", - "readable-stream": "^2.1.5", - "remove-trailing-separator": "^1.0.1", - "to-absolute-glob": "^2.0.0", - "unique-stream": "^2.0.2" - }, - "dependencies": { - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", - "dev": true, - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - } - }, - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - } - } - }, - "glob-watcher": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz", - "integrity": "sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==", - "dev": true, - "requires": { - "anymatch": "^2.0.0", - "async-done": "^1.2.0", - "chokidar": "^2.0.0", - "is-negated-glob": "^1.0.0", - "just-debounce": "^1.0.0", - "normalize-path": "^3.0.0", - "object.defaults": "^1.1.0" - }, - "dependencies": { - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - } - } - }, - "global-modules": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", - "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", - "dev": true, - "requires": { - "global-prefix": "^1.0.1", - "is-windows": "^1.0.1", - "resolve-dir": "^1.0.0" - } - }, - "global-prefix": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", - "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "global": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", + "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", "dev": true, "requires": { - "expand-tilde": "^2.0.2", - "homedir-polyfill": "^1.0.1", - "ini": "^1.3.4", - "is-windows": "^1.0.1", - "which": "^1.2.14" - }, - "dependencies": { - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } + "min-document": "^2.19.0", + "process": "^0.11.10" } }, "globals": { @@ -9427,492 +4650,28 @@ "dev": true, "peer": true }, - "glogg": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz", - "integrity": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==", + "gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "dev": true, "requires": { - "sparkles": "^1.0.0" + "get-intrinsic": "^1.1.3" } }, "graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "optional": true }, "grapheme-splitter": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", - "dev": true, - "peer": true - }, - "gulp": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/gulp/-/gulp-4.0.2.tgz", - "integrity": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==", - "dev": true, - "requires": { - "glob-watcher": "^5.0.3", - "gulp-cli": "^2.2.0", - "undertaker": "^1.2.1", - "vinyl-fs": "^3.0.0" - } - }, - "gulp-cli": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz", - "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==", - "dev": true, - "requires": { - "ansi-colors": "^1.0.1", - "archy": "^1.0.0", - "array-sort": "^1.0.0", - "color-support": "^1.1.3", - "concat-stream": "^1.6.0", - "copy-props": "^2.0.1", - "fancy-log": "^1.3.2", - "gulplog": "^1.0.0", - "interpret": "^1.4.0", - "isobject": "^3.0.1", - "liftoff": "^3.1.0", - "matchdep": "^2.0.0", - "mute-stdout": "^1.0.0", - "pretty-hrtime": "^1.0.0", - "replace-homedir": "^1.0.0", - "semver-greatest-satisfied-range": "^1.1.0", - "v8flags": "^3.2.0", - "yargs": "^7.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", - "dev": true - }, - "cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==", - "dev": true, - "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wrap-ansi": "^2.0.0" - } - }, - "fancy-log": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", - "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", - "dev": true, - "requires": { - "ansi-gray": "^0.1.1", - "color-support": "^1.1.3", - "parse-node-version": "^1.0.0", - "time-stamp": "^1.0.0" - } - }, - "get-caller-file": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", - "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", - "dev": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", - "dev": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "wrap-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==", - "dev": true, - "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1" - } - }, - "y18n": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", - "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==", - "dev": true - }, - "yargs": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.2.tgz", - "integrity": "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==", - "dev": true, - "requires": { - "camelcase": "^3.0.0", - "cliui": "^3.2.0", - "decamelize": "^1.1.1", - "get-caller-file": "^1.0.1", - "os-locale": "^1.4.0", - "read-pkg-up": "^1.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^1.0.2", - "which-module": "^1.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^5.0.1" - } - }, - "yargs-parser": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz", - "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==", - "dev": true, - "requires": { - "camelcase": "^3.0.0", - "object.assign": "^4.1.0" - } - } - } - }, - "gulp-eslint7": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/gulp-eslint7/-/gulp-eslint7-0.3.2.tgz", - "integrity": "sha512-zDb/sz8sXmP2jv6BTM9mH1DhoOX7nq5Q3ESHelqw+Fqd7lbU0GoOUVte3NvpqP+oWaGn2+t0AKEs0kXEQRMUIw==", - "dev": true, - "requires": { - "eslint": "^7.32.0", - "fancy-log": "^1.3.3", - "plugin-error": "^1.0.1" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", - "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", - "dev": true, - "requires": { - "@babel/highlight": "^7.10.4" - } - }, - "@eslint/eslintrc": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", - "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", - "dev": true, - "requires": { - "ajv": "^6.12.4", - "debug": "^4.1.1", - "espree": "^7.3.0", - "globals": "^13.9.0", - "ignore": "^4.0.6", - "import-fresh": "^3.2.1", - "js-yaml": "^3.13.1", - "minimatch": "^3.0.4", - "strip-json-comments": "^3.1.1" - } - }, - "@humanwhocodes/config-array": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", - "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", - "dev": true, - "requires": { - "@humanwhocodes/object-schema": "^1.2.0", - "debug": "^4.1.1", - "minimatch": "^3.0.4" - } - }, - "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "requires": { - "sprintf-js": "~1.0.2" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true - }, - "eslint": { - "version": "7.32.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", - "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", - "dev": true, - "requires": { - "@babel/code-frame": "7.12.11", - "@eslint/eslintrc": "^0.4.3", - "@humanwhocodes/config-array": "^0.5.0", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.0.1", - "doctrine": "^3.0.0", - "enquirer": "^2.3.5", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^5.1.1", - "eslint-utils": "^2.1.0", - "eslint-visitor-keys": "^2.0.0", - "espree": "^7.3.1", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^5.1.2", - "globals": "^13.6.0", - "ignore": "^4.0.6", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "js-yaml": "^3.13.1", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.0.4", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "progress": "^2.0.0", - "regexpp": "^3.1.0", - "semver": "^7.2.1", - "strip-ansi": "^6.0.0", - "strip-json-comments": "^3.1.0", - "table": "^6.0.9", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" - } - }, - "eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", - "dev": true, - "requires": { - "eslint-visitor-keys": "^1.1.0" - }, - "dependencies": { - "eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true - } - } - }, - "espree": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", - "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", - "dev": true, - "requires": { - "acorn": "^7.4.0", - "acorn-jsx": "^5.3.1", - "eslint-visitor-keys": "^1.3.0" - }, - "dependencies": { - "eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true - } - } - }, - "fancy-log": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", - "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", - "dev": true, - "requires": { - "ansi-gray": "^0.1.1", - "color-support": "^1.1.3", - "parse-node-version": "^1.0.0", - "time-stamp": "^1.0.0" - } - }, - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "requires": { - "is-glob": "^4.0.1" - } - }, - "globals": { - "version": "13.19.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz", - "integrity": "sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==", - "dev": true, - "requires": { - "type-fest": "^0.20.2" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", - "dev": true - }, - "js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - } - }, - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "gulp-if": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/gulp-if/-/gulp-if-3.0.0.tgz", - "integrity": "sha512-fCUEngzNiEZEK2YuPm+sdMpO6ukb8+/qzbGfJBXyNOXz85bCG7yBI+pPSl+N90d7gnLvMsarthsAImx0qy7BAw==", - "dev": true, - "requires": { - "gulp-match": "^1.1.0", - "ternary-stream": "^3.0.0", - "through2": "^3.0.1" - }, - "dependencies": { - "through2": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", - "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", - "dev": true, - "requires": { - "inherits": "^2.0.4", - "readable-stream": "2 || 3" - } - } - } - }, - "gulp-less": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/gulp-less/-/gulp-less-5.0.0.tgz", - "integrity": "sha512-W2I3TewO/By6UZsM/wJG3pyK5M6J0NYmJAAhwYXQHR+38S0iDtZasmUgFCH3CQj+pQYw/PAIzxvFvwtEXz1HhQ==", - "dev": true, - "requires": { - "less": "^3.7.1 || ^4.0.0", - "object-assign": "^4.0.1", - "plugin-error": "^1.0.0", - "replace-ext": "^2.0.0", - "through2": "^4.0.0", - "vinyl-sourcemaps-apply": "^0.2.0" - } - }, - "gulp-match": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/gulp-match/-/gulp-match-1.1.0.tgz", - "integrity": "sha512-DlyVxa1Gj24DitY2OjEsS+X6tDpretuxD6wTfhXE/Rw2hweqc1f6D/XtsJmoiCwLWfXgR87W9ozEityPCVzGtQ==", - "dev": true, - "requires": { - "minimatch": "^3.0.3" - } - }, - "gulplog": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", - "integrity": "sha512-hm6N8nrm3Y08jXie48jsC55eCZz9mnb4OirAStEk2deqeyhXU3C1otDVh+ccttMuc1sBi6RX6ZJ720hs9RCvgw==", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", "dev": true, - "requires": { - "glogg": "^1.0.0" - } + "peer": true }, "has": { "version": "1.0.3", @@ -9927,16 +4686,8 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true - }, - "has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", "dev": true, - "requires": { - "get-intrinsic": "^1.1.1" - } + "peer": true }, "has-symbols": { "version": "1.0.3", @@ -9944,53 +4695,15 @@ "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "dev": true }, - "has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", - "dev": true, - "requires": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - } - }, - "has-values": { + "has-tostringtag": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "dependencies": { - "kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "homedir-polyfill": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", - "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", "dev": true, "requires": { - "parse-passwd": "^1.0.0" + "has-symbols": "^1.0.2" } }, - "hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, "iconv-lite": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", @@ -10001,6 +4714,12 @@ "safer-buffer": ">= 2.1.2 < 3.0.0" } }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true + }, "ignore": { "version": "5.2.4", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", @@ -10026,6 +4745,7 @@ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, + "peer": true, "requires": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" @@ -10035,7 +4755,8 @@ "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true + "dev": true, + "peer": true }, "inflight": { "version": "1.0.6", @@ -10053,81 +4774,43 @@ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, - "ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true - }, "interpret": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", "dev": true }, - "invert-kv": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", - "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==", - "dev": true - }, - "is-absolute": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", - "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", - "dev": true, - "requires": { - "is-relative": "^1.0.0", - "is-windows": "^1.0.1" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - }, - "dependencies": { - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true - } - } - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "is": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/is/-/is-3.3.0.tgz", + "integrity": "sha512-nW24QBoPcFGGHJGUwnfpI7Yc5CdqWNdsyHQszVE/z2pKHXzh7FZ5GWhJqSyaQ9wMkQnsTx+kAI8bHlCX4tKdbg==", "dev": true }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", "dev": true, "requires": { - "binary-extensions": "^1.0.0" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" } }, - "is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true - }, "is-builtin-module": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.0.tgz", - "integrity": "sha512-phDA4oSGt7vl1n5tJvTWooWWAsXLY+2xCnxNqvKhGEzujg+A43wPlPOyDg3C8XQHN+6k/JTQWJ/j0dQh/qr+Hw==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", + "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", "dev": true, "requires": { "builtin-modules": "^3.3.0" } }, + "is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true + }, "is-core-module": { "version": "2.9.0", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz", @@ -10137,56 +4820,12 @@ "has": "^1.0.3" } }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - }, - "dependencies": { - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true - } - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - }, - "dependencies": { - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true - } - } - }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - }, "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true + "dev": true, + "peer": true }, "is-fullwidth-code-point": { "version": "3.0.0", @@ -10194,11 +4833,21 @@ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true }, + "is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, "is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, + "peer": true, "requires": { "is-extglob": "^2.1.1" } @@ -10209,32 +4858,6 @@ "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", "dev": true }, - "is-negated-glob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", - "integrity": "sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==", - "dev": true - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, "is-path-inside": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", @@ -10242,74 +4865,27 @@ "dev": true, "peer": true }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "is-relative": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", - "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", - "dev": true, - "requires": { - "is-unc-path": "^1.0.0" - } - }, - "is-unc-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", - "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", + "is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", "dev": true, "requires": { - "unc-path-regex": "^0.1.2" + "which-typed-array": "^1.1.11" } }, - "is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==", - "dev": true - }, - "is-valid-glob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", - "integrity": "sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==", - "dev": true - }, "is-what": { "version": "3.14.1", "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", "dev": true }, - "is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "dev": true - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", - "dev": true + "dev": true, + "peer": true }, "js-sdsl": { "version": "4.3.0", @@ -10322,22 +4898,22 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true + "dev": true, + "peer": true }, "js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, - "peer": true, "requires": { "argparse": "^2.0.1" } }, "jsdoc-type-pratt-parser": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-3.1.0.tgz", - "integrity": "sha512-MgtD0ZiCDk9B+eI73BextfRrVQl0oyzRG8B2BjORts6jbunj4ScKPcyXGTbB6eXL4y9TzxCm6hyeLq/2ASzNdw==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.0.0.tgz", + "integrity": "sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==", "dev": true }, "jsesc": { @@ -10351,13 +4927,15 @@ "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true + "dev": true, + "peer": true }, "json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true + "dev": true, + "peer": true }, "json5": { "version": "2.2.3", @@ -10366,59 +4944,10 @@ "dev": true, "peer": true }, - "just-debounce": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.1.0.tgz", - "integrity": "sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==", - "dev": true - }, - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - }, - "last-run": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", - "integrity": "sha512-U/VxvpX4N/rFvPzr3qG5EtLKEnNI0emvIQB3/ecEwv+8GHaUKbIB8vxv1Oai5FAF0d0r7LXHhLLe5K/yChm5GQ==", - "dev": true, - "requires": { - "default-resolution": "^2.0.0", - "es6-weak-map": "^2.0.1" - } - }, - "lazystream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", - "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", - "dev": true, - "requires": { - "readable-stream": "^2.0.5" - } - }, - "lcid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", - "integrity": "sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==", - "dev": true, - "requires": { - "invert-kv": "^1.0.0" - } - }, - "lead": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", - "integrity": "sha512-IpSVCk9AYvLHo5ctcIXxOBpMWUe+4TKN3VPWAKUbJikkmsGp0VrSM8IttVc32D6J4WUsiPE6aEFRNmIoF/gdow==", - "dev": true, - "requires": { - "flush-write-stream": "^1.0.2" - } - }, "less": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/less/-/less-4.1.3.tgz", - "integrity": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/less/-/less-4.2.0.tgz", + "integrity": "sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==", "dev": true, "requires": { "copy-anything": "^2.0.1", @@ -10433,11 +4962,42 @@ "tslib": "^2.3.0" } }, + "less-watch-compiler": { + "version": "1.16.3", + "resolved": "https://registry.npmjs.org/less-watch-compiler/-/less-watch-compiler-1.16.3.tgz", + "integrity": "sha512-cxGUt8YdPpPPB72w1dfzPVXML5JYgfExXbFvDfG5XBU9qvj6uVjwTY2qOgwvf09Au5p2RvmWVcNps/cMTojJNQ==", + "dev": true, + "requires": { + "amdefine": ">= 0.1.0", + "commander": "^8.0.0", + "extend": ">= 2.0.0", + "global": "^4.3.1", + "less": "^4.0.0", + "shelljs": ">= 0.4.0" + } + }, + "level-supports": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/level-supports/-/level-supports-4.0.1.tgz", + "integrity": "sha512-PbXpve8rKeNcZ9C1mUicC9auIYFyGpkV9/i6g76tLgANwWhtG2v7I4xNBUlkn3lE2/dZF3Pi0ygYGtLc4RXXdA==", + "dev": true + }, + "level-transcoder": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/level-transcoder/-/level-transcoder-1.0.1.tgz", + "integrity": "sha512-t7bFwFtsQeD8cl8NIoQ2iwxA0CL/9IFw7/9gAjOonH0PWTTiRfY7Hq+Ejbsxh86tXobDQ6IOiddjNYIfOBs06w==", + "dev": true, + "requires": { + "buffer": "^6.0.3", + "module-error": "^1.0.1" + } + }, "levn": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, + "peer": true, "requires": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" @@ -10452,43 +5012,6 @@ "immediate": "~3.0.5" } }, - "liftoff": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz", - "integrity": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==", - "dev": true, - "requires": { - "extend": "^3.0.0", - "findup-sync": "^3.0.0", - "fined": "^1.0.1", - "flagged-respawn": "^1.0.0", - "is-plain-object": "^2.0.4", - "object.map": "^1.0.0", - "rechoir": "^0.6.2", - "resolve": "^1.1.7" - } - }, - "load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "strip-bom": "^2.0.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true - } - } - }, "localforage": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/localforage/-/localforage-1.10.0.tgz", @@ -10512,13 +5035,8 @@ "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "lodash.truncate": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", - "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", - "dev": true + "dev": true, + "peer": true }, "lru-cache": { "version": "6.0.0", @@ -10531,123 +5049,21 @@ }, "make-dir": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "dev": true, - "optional": true, - "requires": { - "pify": "^4.0.1", - "semver": "^5.6.0" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "optional": true - } - } - }, - "make-iterator": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", - "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", - "dev": true, - "requires": { - "kind-of": "^6.0.2" - }, - "dependencies": { - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true - } - } - }, - "map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", - "dev": true - }, - "map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", - "dev": true, - "requires": { - "object-visit": "^1.0.0" - } - }, - "matchdep": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz", - "integrity": "sha512-LFgVbaHIHMqCRuCZyfCtUOq9/Lnzhi7Z0KFUE2fhD54+JN2jLh3hC02RLkqauJ3U4soU6H1J3tfj/Byk7GoEjA==", - "dev": true, - "requires": { - "findup-sync": "^2.0.0", - "micromatch": "^3.0.4", - "resolve": "^1.4.0", - "stack-trace": "0.0.10" - }, - "dependencies": { - "findup-sync": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", - "integrity": "sha512-vs+3unmJT45eczmcAZ6zMJtxN3l/QXeccaXQx5cu/MeJMhewVfoWZqibRkOxPnmoR59+Zy5hjabfQc6JLSah4g==", - "dev": true, - "requires": { - "detect-file": "^1.0.0", - "is-glob": "^3.1.0", - "micromatch": "^3.0.4", - "resolve-dir": "^1.0.1" - } - }, - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - } - } - }, - "merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", "dev": true, + "optional": true, "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": { + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "optional": true } } }, @@ -10658,6 +5074,15 @@ "dev": true, "optional": true }, + "min-document": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", + "integrity": "sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==", + "dev": true, + "requires": { + "dom-walk": "^0.1.0" + } + }, "minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", @@ -10673,16 +5098,6 @@ "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", "dev": true }, - "mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "dev": true, - "requires": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - } - }, "mkdirp": { "version": "0.5.6", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", @@ -10692,69 +5107,51 @@ "minimist": "^1.2.6" } }, + "module-error": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/module-error/-/module-error-1.0.2.tgz", + "integrity": "sha512-0yuvsqSCv8LbaOKhnsQ/T5JhyFlCYLPXK3U2sgV10zoKQwzs/MyfuQUOZQ1V/6OCOJsK/TRgNVrPuPDqtdMFtA==", + "dev": true + }, "ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, - "mute-stdout": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.1.tgz", - "integrity": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==", + "napi-macros": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/napi-macros/-/napi-macros-2.2.2.tgz", + "integrity": "sha512-hmEVtAGYzVQpCKdbQea4skABsdXW4RUh5t5mJ2zzqowJS2OyXZTU1KhDVFhx+NlWZ4ap9mqR9TcDO3LTTttd+g==", "dev": true }, - "nan": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz", - "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==", + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true, - "optional": true + "peer": true }, - "nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "nedb-core": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/nedb-core/-/nedb-core-3.0.6.tgz", + "integrity": "sha512-fbxtDJGduzLuxTWE3eD+FLb2yvtFunPBy/bNPS2TIaHNJK1YzEQydrNXJuOSGzZJ9DrNWOm+MdsqkdOeWBV74Q==", "dev": true, "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true - } + "async": "latest", + "is": "latest", + "localforage": "latest", + "mkdirp": "latest", + "underscore": "latest" } }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "nedb": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/nedb/-/nedb-1.8.0.tgz", - "integrity": "sha512-ip7BJdyb5m+86ZbSb4y10FCCW9g35+U8bDRrZlAfCI6m4dKwEsQ5M52grcDcVK4Vm/vnPlDLywkyo3GliEkb5A==", + "nedb-promises": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/nedb-promises/-/nedb-promises-6.2.3.tgz", + "integrity": "sha512-enq0IjNyBz9Qy9W/QPCcLGh/QORGBjXbIeZeWvIjO3OMLyAvlKT3hiJubP2BKEiFniUlR3L01o18ktqgn5jxqA==", "dev": true, "requires": { - "async": "0.2.10", - "binary-search-tree": "0.2.5", - "localforage": "^1.3.0", - "mkdirp": "~0.5.1", - "underscore": "~1.4.4" + "@seald-io/nedb": "^4.0.2" } }, "needle": { @@ -10781,10 +5178,10 @@ } } }, - "next-tick": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", - "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", + "node-gyp-build": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.1.tgz", + "integrity": "sha512-24vnklJmyRS8ViBNI8KbtK/r/DmXQMRiOMXTNz2nrTnAYUwjmEEbnnpB/+kt+yWRv73bPsSPRFddrcIbAxSiMQ==", "dev": true }, "node-releases": { @@ -10794,192 +5191,6 @@ "dev": true, "peer": true }, - "normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "requires": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - } - } - }, - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", - "dev": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } - }, - "now-and-later": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", - "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", - "dev": true, - "requires": { - "once": "^1.3.2" - } - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", - "dev": true - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "dev": true - }, - "object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", - "dev": true, - "requires": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true - }, - "object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", - "dev": true, - "requires": { - "isobject": "^3.0.0" - } - }, - "object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - } - }, - "object.defaults": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", - "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==", - "dev": true, - "requires": { - "array-each": "^1.0.1", - "array-slice": "^1.0.0", - "for-own": "^1.0.0", - "isobject": "^3.0.0" - } - }, - "object.map": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", - "integrity": "sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==", - "dev": true, - "requires": { - "for-own": "^1.0.0", - "make-iterator": "^1.0.0" - } - }, - "object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "object.reduce": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz", - "integrity": "sha512-naLhxxpUESbNkRqc35oQ2scZSJueHGQNUfMW/0U37IgN6tE2dgDWg3whf+NEliy3F/QysrO48XKUz/nGPe+AQw==", - "dev": true, - "requires": { - "for-own": "^1.0.0", - "make-iterator": "^1.0.0" - } - }, "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", @@ -10994,6 +5205,7 @@ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", "dev": true, + "peer": true, "requires": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", @@ -11003,24 +5215,6 @@ "word-wrap": "^1.2.3" } }, - "ordered-read-streams": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", - "integrity": "sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==", - "dev": true, - "requires": { - "readable-stream": "^2.0.1" - } - }, - "os-locale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==", - "dev": true, - "requires": { - "lcid": "^1.0.0" - } - }, "p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", @@ -11046,64 +5240,17 @@ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, + "peer": true, "requires": { "callsites": "^3.0.0" } }, - "parse-filepath": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", - "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", - "dev": true, - "requires": { - "is-absolute": "^1.0.0", - "map-cache": "^0.2.0", - "path-root": "^0.1.1" - } - }, - "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", - "dev": true, - "requires": { - "error-ex": "^1.2.0" - } - }, "parse-node-version": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", "dev": true }, - "parse-passwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", - "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", - "dev": true - }, - "pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", - "dev": true - }, - "path": { - "version": "0.12.7", - "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", - "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==", - "dev": true, - "requires": { - "process": "^0.11.1", - "util": "^0.10.3" - } - }, - "path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", - "dev": true - }, "path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", @@ -11121,7 +5268,8 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true + "dev": true, + "peer": true }, "path-parse": { "version": "1.0.7", @@ -11129,40 +5277,6 @@ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, - "path-root": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", - "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", - "dev": true, - "requires": { - "path-root-regex": "^0.1.0" - } - }, - "path-root-regex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", - "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", - "dev": true - }, - "path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true - } - } - }, "picocolors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", @@ -11183,50 +5297,12 @@ "dev": true, "optional": true }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", - "dev": true - }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", - "dev": true, - "requires": { - "pinkie": "^2.0.0" - } - }, - "plugin-error": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz", - "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==", - "dev": true, - "requires": { - "ansi-colors": "^1.0.1", - "arr-diff": "^4.0.0", - "arr-union": "^3.1.0", - "extend-shallow": "^3.0.2" - } - }, - "posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", - "dev": true - }, "prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true - }, - "pretty-hrtime": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", - "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", - "dev": true + "dev": true, + "peer": true }, "process": { "version": "0.11.10", @@ -11234,18 +5310,6 @@ "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", "dev": true }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "dev": true - }, "prr": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", @@ -11253,121 +5317,18 @@ "dev": true, "optional": true }, - "pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "pumpify": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", - "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", - "dev": true, - "requires": { - "duplexify": "^3.6.0", - "inherits": "^2.0.3", - "pump": "^2.0.0" - }, - "dependencies": { - "duplexify": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", - "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", - "dev": true, - "requires": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - } - } - } - }, "punycode": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", - "dev": true - }, - "queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true, "peer": true }, - "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", - "dev": true, - "requires": { - "load-json-file": "^1.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^1.0.0" - } - }, - "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", - "dev": true, - "requires": { - "find-up": "^1.0.0", - "read-pkg": "^1.0.0" - }, - "dependencies": { - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", - "dev": true, - "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", - "dev": true, - "requires": { - "pinkie-promise": "^2.0.0" - } - } - } - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - } + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true }, "rechoir": { "version": "0.6.2", @@ -11378,89 +5339,12 @@ "resolve": "^1.1.6" } }, - "regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", - "dev": true, - "requires": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" - } - }, "regexpp": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", - "dev": true - }, - "remove-bom-buffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", - "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5", - "is-utf8": "^0.2.1" - } - }, - "remove-bom-stream": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", - "integrity": "sha512-wigO8/O08XHb8YPzpDDT+QmRANfW6vLqxfaXm1YXhnFf3AkSLyjfG3GEFg4McZkmgL7KvCj5u2KczkvSP6NfHA==", - "dev": true, - "requires": { - "remove-bom-buffer": "^3.0.0", - "safe-buffer": "^5.1.0", - "through2": "^2.0.3" - }, - "dependencies": { - "through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "requires": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - } - } - }, - "remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", - "dev": true - }, - "repeat-element": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", - "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", - "dev": true - }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", - "dev": true - }, - "replace-ext": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-2.0.0.tgz", - "integrity": "sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==", - "dev": true - }, - "replace-homedir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz", - "integrity": "sha512-CHPV/GAglbIB1tnQgaiysb8H2yCy8WQ7lcEwQ/eT+kLj0QHV8LnJW0zpqpE7RSkrMSRoa+EBoag86clf7WAgSg==", "dev": true, - "requires": { - "homedir-polyfill": "^1.0.1", - "is-absolute": "^1.0.0", - "remove-trailing-separator": "^1.1.0" - } + "peer": true }, "require-directory": { "version": "2.1.1", @@ -11468,18 +5352,6 @@ "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "dev": true }, - "require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true - }, - "require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==", - "dev": true - }, "resolve": { "version": "1.22.1", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", @@ -11491,42 +5363,12 @@ "supports-preserve-symlinks-flag": "^1.0.0" } }, - "resolve-dir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", - "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", - "dev": true, - "requires": { - "expand-tilde": "^2.0.0", - "global-modules": "^1.0.0" - } - }, "resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true - }, - "resolve-options": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", - "integrity": "sha512-NYDgziiroVeDC29xq7bp/CacZERYsA9bXYd1ZmcJlF3BcrZv5pTb4NG7SjdyKDnXZ84aC4vo2u6sNKIA1LCu/A==", "dev": true, - "requires": { - "value-or-function": "^3.0.0" - } - }, - "resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", - "dev": true - }, - "ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "dev": true + "peer": true }, "reusify": { "version": "1.0.4", @@ -11540,14 +5382,15 @@ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dev": true, + "peer": true, "requires": { "glob": "^7.1.3" } }, "rollup": { - "version": "3.9.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.9.1.tgz", - "integrity": "sha512-GswCYHXftN8ZKGVgQhTFUJB/NBXxrRGgO2NCy6E8s1rwEJ4Q9/VttNqcYfEvx4dTo4j58YqdC3OVztPzlKSX8w==", + "version": "3.28.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.28.1.tgz", + "integrity": "sha512-R9OMQmIHJm9znrU3m3cpE8uhN0fGdXiawME7aZIpQqvpS/85+Vt1Hq1/yVIcYfOmaQiHjvXkQAoJukvLpau6Yw==", "dev": true, "requires": { "fsevents": "~2.3.2" @@ -11576,16 +5419,8 @@ "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", "dev": true, - "requires": { - "ret": "~0.1.10" - } + "peer": true }, "safer-buffer": { "version": "2.1.2", @@ -11602,60 +5437,17 @@ "optional": true }, "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - }, - "semver-greatest-satisfied-range": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz", - "integrity": "sha512-Ny/iyOzSSa8M5ML46IAx3iXc6tfOsYU2R4AXi2UpHk60Zrgyq6eqPj/xiOfS0rRl/iiQ/rdJkVjw/5cdUyCntQ==", - "dev": true, - "requires": { - "sver-compat": "^1.5.0" - } - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true }, - "set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true - } - } - }, "shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, + "peer": true, "requires": { "shebang-regex": "^3.0.0" } @@ -11664,379 +5456,49 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true - }, - "slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - } - } - }, - "snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", - "dev": true, - "requires": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - } - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "dev": true - } - } - }, - "snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", "dev": true, - "requires": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - } - } + "peer": true }, - "snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "shelljs": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", + "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", "dev": true, "requires": { - "kind-of": "^3.2.0" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" } }, "source-map": { "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "optional": true - }, - "source-map-resolve": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", - "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", - "dev": true, - "requires": { - "atob": "^2.1.2", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" - } - }, - "source-map-url": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", - "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", - "dev": true - }, - "sparkles": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz", - "integrity": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==", - "dev": true - }, - "spdx-correct": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", - "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", - "dev": true, - "requires": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", - "dev": true - }, - "spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", - "dev": true, - "requires": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-license-ids": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", - "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==", - "dev": true - }, - "split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", - "dev": true, - "requires": { - "extend-shallow": "^3.0.0" - } - }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "dev": true - }, - "stack-trace": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", - "dev": true - }, - "static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", - "dev": true, - "requires": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - } - } - } - }, - "stream-exhaust": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz", - "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==", - "dev": true + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true }, - "stream-shift": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", - "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", "dev": true }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, "requires": { - "safe-buffer": "~5.1.0" + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" } }, + "spdx-license-ids": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", + "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==", + "dev": true + }, "string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", @@ -12057,26 +5519,19 @@ "ansi-regex": "^5.0.1" } }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", - "dev": true, - "requires": { - "is-utf8": "^0.2.0" - } - }, "strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true + "dev": true, + "peer": true }, "supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, + "peer": true, "requires": { "has-flag": "^3.0.0" } @@ -12087,138 +5542,12 @@ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true }, - "sver-compat": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz", - "integrity": "sha512-aFTHfmjwizMNlNE6dsGmoAM4lHjL0CyiobWaFiXWSlD7cIxshW422Nb8KbXCmR6z+0ZEPY+daXJrDyh/vuwTyg==", - "dev": true, - "requires": { - "es6-iterator": "^2.0.1", - "es6-symbol": "^3.1.1" - } - }, - "table": { - "version": "6.8.1", - "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", - "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", - "dev": true, - "requires": { - "ajv": "^8.0.1", - "lodash.truncate": "^4.4.2", - "slice-ansi": "^4.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1" - }, - "dependencies": { - "ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - } - } - }, - "ternary-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ternary-stream/-/ternary-stream-3.0.0.tgz", - "integrity": "sha512-oIzdi+UL/JdktkT+7KU5tSIQjj8pbShj3OASuvDEhm0NT5lppsm7aXWAmAq4/QMaBIyfuEcNLbAQA+HpaISobQ==", - "dev": true, - "requires": { - "duplexify": "^4.1.1", - "fork-stream": "^0.0.4", - "merge-stream": "^2.0.0", - "through2": "^3.0.1" - }, - "dependencies": { - "through2": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", - "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", - "dev": true, - "requires": { - "inherits": "^2.0.4", - "readable-stream": "2 || 3" - } - } - } - }, "text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true - }, - "through2": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", - "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", "dev": true, - "requires": { - "readable-stream": "3" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } - } - }, - "through2-filter": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz", - "integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==", - "dev": true, - "requires": { - "through2": "~2.0.0", - "xtend": "~4.0.0" - }, - "dependencies": { - "through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "requires": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - } - } - }, - "time-stamp": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", - "integrity": "sha512-gLCeArryy2yNTRzTGKbZbloctj64jkZ57hj5zdraXue6aFgd6PmvVtEyiUU+hvU0v7q08oVv8r8ev0tRo6bvgw==", - "dev": true - }, - "to-absolute-glob": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", - "integrity": "sha512-rtwLUQEwT8ZeKQbyFJyomBRYXyE16U5VKuy0ftxLMK/PZb2fkOsg5r9kHdauuVDbsNdIBoC/HCthpidamQFXYA==", - "dev": true, - "requires": { - "is-absolute": "^1.0.0", - "is-negated-glob": "^1.0.0" - } + "peer": true }, "to-fast-properties": { "version": "2.0.0", @@ -12227,86 +5556,18 @@ "dev": true, "peer": true }, - "to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", - "dev": true, - "requires": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - }, - "to-through": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", - "integrity": "sha512-+QIz37Ly7acM4EMdw2PRN389OneM5+d844tirkGp4dPKzI5OE72V9OsbFp+CIYJDahZ41ZV05hNtcPAQUAm9/Q==", - "dev": true, - "requires": { - "through2": "^2.0.3" - }, - "dependencies": { - "through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "requires": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - } - } - }, "tslib": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", "dev": true }, - "type": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", - "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==", - "dev": true - }, "type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, + "peer": true, "requires": { "prelude-ls": "^1.2.1" } @@ -12315,132 +5576,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true - }, - "typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", - "dev": true - }, - "unc-path-regex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", - "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", - "dev": true - }, - "underscore": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.4.4.tgz", - "integrity": "sha512-ZqGrAgaqqZM7LGRzNjLnw5elevWb5M8LEoDMadxIW3OWbcv72wMMgKdwOKpd5Fqxe8choLD8HN3iSj3TUh/giQ==", - "dev": true - }, - "undertaker": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-1.3.0.tgz", - "integrity": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==", - "dev": true, - "requires": { - "arr-flatten": "^1.0.1", - "arr-map": "^2.0.0", - "bach": "^1.0.0", - "collection-map": "^1.0.0", - "es6-weak-map": "^2.0.1", - "fast-levenshtein": "^1.0.0", - "last-run": "^1.1.0", - "object.defaults": "^1.0.0", - "object.reduce": "^1.0.0", - "undertaker-registry": "^1.0.0" - }, - "dependencies": { - "fast-levenshtein": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz", - "integrity": "sha512-Ia0sQNrMPXXkqVFt6w6M1n1oKo3NfKs+mvaV811Jwir7vAk9a6PVV9VPYf6X3BU97QiLEmuW3uXH9u87zDFfdw==", - "dev": true - } - } - }, - "undertaker-registry": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz", - "integrity": "sha512-UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw==", - "dev": true - }, - "union-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", - "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", - "dev": true, - "requires": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true - } - } - }, - "unique-stream": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz", - "integrity": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==", "dev": true, - "requires": { - "json-stable-stringify-without-jsonify": "^1.0.1", - "through2-filter": "^3.0.0" - } - }, - "unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", - "dev": true, - "requires": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "dependencies": { - "has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", - "dev": true, - "requires": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "dependencies": { - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", - "dev": true, - "requires": { - "isarray": "1.0.0" - } - } - } - }, - "has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", - "dev": true - } - } + "peer": true }, - "upath": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "underscore": { + "version": "1.13.6", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz", + "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==", "dev": true }, "update-browserslist-db": { @@ -12459,187 +5601,40 @@ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, + "peer": true, "requires": { "punycode": "^2.1.0" } }, - "urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", - "dev": true - }, - "use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", - "dev": true - }, - "util": { - "version": "0.10.4", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", - "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", - "dev": true, - "requires": { - "inherits": "2.0.3" - }, - "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true - } - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", - "dev": true - }, - "v8flags": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz", - "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==", - "dev": true, - "requires": { - "homedir-polyfill": "^1.0.1" - } - }, - "validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "dev": true, - "requires": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "value-or-function": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", - "integrity": "sha512-jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg==", - "dev": true - }, - "vinyl": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", - "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", - "dev": true, - "requires": { - "clone": "^2.1.1", - "clone-buffer": "^1.0.0", - "clone-stats": "^1.0.0", - "cloneable-readable": "^1.0.0", - "remove-trailing-separator": "^1.0.1", - "replace-ext": "^1.0.0" - }, - "dependencies": { - "replace-ext": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", - "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", - "dev": true - } - } - }, - "vinyl-fs": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", - "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==", - "dev": true, - "requires": { - "fs-mkdirp-stream": "^1.0.0", - "glob-stream": "^6.1.0", - "graceful-fs": "^4.0.0", - "is-valid-glob": "^1.0.0", - "lazystream": "^1.0.0", - "lead": "^1.0.0", - "object.assign": "^4.0.4", - "pumpify": "^1.3.5", - "readable-stream": "^2.3.3", - "remove-bom-buffer": "^3.0.0", - "remove-bom-stream": "^1.2.0", - "resolve-options": "^1.1.0", - "through2": "^2.0.0", - "to-through": "^2.0.0", - "value-or-function": "^3.0.0", - "vinyl": "^2.0.0", - "vinyl-sourcemap": "^1.1.0" - }, - "dependencies": { - "through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "requires": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - } - } - }, - "vinyl-sourcemap": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", - "integrity": "sha512-NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA==", - "dev": true, - "requires": { - "append-buffer": "^1.0.2", - "convert-source-map": "^1.5.0", - "graceful-fs": "^4.1.6", - "normalize-path": "^2.1.1", - "now-and-later": "^2.0.0", - "remove-bom-buffer": "^3.0.0", - "vinyl": "^2.0.0" - } - }, - "vinyl-sourcemaps-apply": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz", - "integrity": "sha512-+oDh3KYZBoZC8hfocrbrxbLUeaYtQK7J5WU5Br9VqWqmCll3tFJqKp97GC9GmMsVIL0qnx2DgEDVxdo5EZ5sSw==", - "dev": true, - "requires": { - "source-map": "^0.5.1" - }, - "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "dev": true - } - } - }, "which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, + "peer": true, "requires": { "isexe": "^2.0.0" } }, - "which-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "integrity": "sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ==", - "dev": true + "which-typed-array": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz", + "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", + "dev": true, + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + } }, "word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", - "dev": true + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "peer": true }, "wrap-ansi": { "version": "7.0.0", @@ -12684,12 +5679,6 @@ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true - }, "y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", @@ -12703,24 +5692,24 @@ "dev": true }, "yargs": { - "version": "17.5.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.5.1.tgz", - "integrity": "sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==", + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, "requires": { - "cliui": "^7.0.2", + "cliui": "^8.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", "string-width": "^4.2.3", "y18n": "^5.0.5", - "yargs-parser": "^21.0.0" + "yargs-parser": "^21.1.1" } }, "yargs-parser": { - "version": "21.0.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.0.1.tgz", - "integrity": "sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==", + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", "dev": true }, "yocto-queue": { diff --git a/package.json b/package.json index d4ca8d9797..49eadfe86e 100644 --- a/package.json +++ b/package.json @@ -1,29 +1,25 @@ { "scripts": { - "build": "gulp buildAll", - "build:clean": "gulp cleanPacks", - "build:css": "gulp buildCSS", - "build:db": "gulp compilePacks", - "build:json": "gulp extractPacks", - "build:watch": "gulp", - "lint": "gulp lint", - "lint:fix": "gulp lint --fix" + "build": "npm run build:code && npm run build:css && npm run build:db", + "build:clean": "node ./utils/packs.mjs package clean", + "build:code": "rollup dnd5e.mjs -f es -o dnd5e-compiled.mjs -p node-resolve -m --sourcemapFile dnd5e.mjs", + "build:css": "lessc less/dnd5e.less dnd5e.css", + "build:db": "node ./utils/packs.mjs package pack --nedb", + "build:json": "node ./utils/packs.mjs package unpack --nedb", + "lint": "eslint --ext .mjs ./", + "lint:fix": "eslint --ext .mjs ./ --fix", + "watch": "less-watch-compiler less/ ./ dnd5e.less" }, "devDependencies": { - "@babel/eslint-parser": "^7.15.4", - "@rollup/plugin-node-resolve": "^15.0.1", - "eslint-plugin-jsdoc": "^39.6.7", + "@babel/eslint-parser": "^7.22.15", + "@foundryvtt/foundryvtt-cli": "^1.0.0-rc.4", + "@rollup/plugin-node-resolve": "^15.2.1", + "eslint-plugin-jsdoc": "^46.5.0", "fancy-log": "^2.0.0", - "fs": "^0.0.1-security", - "gulp": "^4.0.2", - "gulp-eslint7": "^0.3.1", - "gulp-if": "^3.0.0", - "gulp-less": "^5.0.0", - "merge-stream": "^2.0.0", - "nedb": "^1.8.0", - "path": "^0.12.7", - "rollup": "^3.9.1", - "through2": "^4.0.2", - "yargs": "^17.5.1" + "less": "^4.2.0", + "less-watch-compiler": "^1.16.3", + "nedb-promises": "^6.2.3", + "rollup": "^3.28.1", + "yargs": "^17.7.2" } } diff --git a/packs/backgrounds.db b/packs/backgrounds.db index 05990b0a8b..e82634c2ae 100644 --- a/packs/backgrounds.db +++ b/packs/backgrounds.db @@ -1,2 +1,2 @@ -{"name":"Shelter of the Faithful","type":"feat","img":"icons/environment/settlement/gazebo.webp","system":{"description":{"value":"As an acolyte, you command the respect of those who share your faith, and you can perform the religious ceremonies of your deity. You and your adventuring companions can expect to receive free healing and care at a temple, shrine, or other established presence of your faith, though you must provide any material components needed for spells. Those who share your religion will support you (but only you) at a modest lifestyle.\nYou might also have ties to a specific temple dedicated to your chosen deity or pantheon, and you have a residence there. This could be the temple where you used to serve, if you remain on good terms with it, or a temple where you have found a new home. While near your temple, you can call upon the priests for assistance, provided the assistance you ask for is not hazardous and you remain in good standing with your temple.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"background","subtype":""},"requirements":"Acolyte","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"64N1NWh9kC1dI7zN","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234264,"modifiedTime":1672334243361,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Acolyte","type":"background","img":"icons/equipment/neck/necklace-runed-white-red.webp","system":{"description":{"value":"You have spent your life in the service of a temple to a specific god or pantheon of gods. You act as an intermediary between the realm of the holy and the mortal world, performing sacred rites and offering sacrifices in order to conduct worshipers into the presence of the divine. You are not necessarily a cleric—performing sacred rites is not the same thing as channeling divine power.\nChoose a god, a pantheon of gods, or some other quasi-divine being from among those listed in @UUID[Compendium.dnd5e.rules.udVPA9JW5wy5t3G5.JournalEntryPage.2lysbY50fgv1R3v7]{Fantasy-Historical Pantheons}, and work with your DM to detail the nature of your religious service. Were you a lesser functionary in a temple, raised from childhood to assist the priests in the sacred rites? Or were you a high priest who suddenly experienced a call to serve your god in a different way? Perhaps you were the leader of a small cult outside of any established temple structure, or even an occult group that served a fiendish master that you now deny.\n\nSkill Proficiencies: Insight, Religion\nLanguages: Two of your choice\nEquipment: A holy symbol (a gift to you when you entered the priesthood), a prayer book or prayer wheel, 5 sticks of incense, @Compendium[dnd5e.items.irtqrzaUCeshmTZp]{vestments}, a set of @Compendium[dnd5e.items.8RXjiddJ6VGyE7vB]{common clothes}, and a pouch containing 15 gp.\nFeature: @Compendium[dnd5e.backgrounds.64N1NWh9kC1dI7zN]{Shelter of the Faithful}\n\nSuggested Characteristics\nAcolytes are shaped by their experience in temples or other religious communities. Their study of the history and tenets of their faith and their relationships to temples, shrines, or hierarchies affect their mannerisms and ideals. Their flaws might be some hidden hypocrisy or heretical idea, or an ideal or bond taken to an extreme.\n@Compendium[dnd5e.tables.HDzErjwy3TseLOZX]{Personality Traits}\n@Compendium[dnd5e.tables.W9xqQZy0Ad0CwkN2]{Ideals}\n@Compendium[dnd5e.tables.DZhd8JkjqlpCP8EB]{Bonds}\n@Compendium[dnd5e.tables.COIHGOnoJnmXduad]{Flaws}","chat":"","unidentified":""},"source":"SRD 5.1","advancement":[{"_id":"6grrnum72rnphzi5","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.backgrounds.64N1NWh9kC1dI7zN"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":0,"title":"Feature"}]},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"IgJkSnLiLJOWH7eK","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234264,"modifiedTime":1671220972133,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Shelter of the Faithful","type":"feat","img":"icons/environment/settlement/gazebo.webp","system":{"description":{"value":"As an acolyte, you command the respect of those who share your faith, and you can perform the religious ceremonies of your deity. You and your adventuring companions can expect to receive free healing and care at a temple, shrine, or other established presence of your faith, though you must provide any material components needed for spells. Those who share your religion will support you (but only you) at a modest lifestyle.\nYou might also have ties to a specific temple dedicated to your chosen deity or pantheon, and you have a residence there. This could be the temple where you used to serve, if you remain on good terms with it, or a temple where you have found a new home. While near your temple, you can call upon the priests for assistance, provided the assistance you ask for is not hazardous and you remain in good standing with your temple.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"background","subtype":""},"requirements":"Acolyte","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"64N1NWh9kC1dI7zN","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234264,"modifiedTime":1672334243361,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Acolyte","type":"background","img":"icons/equipment/neck/necklace-runed-white-red.webp","system":{"description":{"value":"You have spent your life in the service of a temple to a specific god or pantheon of gods. You act as an intermediary between the realm of the holy and the mortal world, performing sacred rites and offering sacrifices in order to conduct worshipers into the presence of the divine. You are not necessarily a cleric—performing sacred rites is not the same thing as channeling divine power.\nChoose a god, a pantheon of gods, or some other quasi-divine being from among those listed in @UUID[Compendium.dnd5e.rules.udVPA9JW5wy5t3G5.JournalEntryPage.2lysbY50fgv1R3v7]{Fantasy-Historical Pantheons}, and work with your DM to detail the nature of your religious service. Were you a lesser functionary in a temple, raised from childhood to assist the priests in the sacred rites? Or were you a high priest who suddenly experienced a call to serve your god in a different way? Perhaps you were the leader of a small cult outside of any established temple structure, or even an occult group that served a fiendish master that you now deny.\n\nSkill Proficiencies: Insight, Religion\nLanguages: Two of your choice\nEquipment: A holy symbol (a gift to you when you entered the priesthood), a prayer book or prayer wheel, 5 sticks of incense, @Compendium[dnd5e.items.irtqrzaUCeshmTZp]{vestments}, a set of @Compendium[dnd5e.items.8RXjiddJ6VGyE7vB]{common clothes}, and a pouch containing 15 gp.\nFeature: @Compendium[dnd5e.backgrounds.64N1NWh9kC1dI7zN]{Shelter of the Faithful}\n\nSuggested Characteristics\nAcolytes are shaped by their experience in temples or other religious communities. Their study of the history and tenets of their faith and their relationships to temples, shrines, or hierarchies affect their mannerisms and ideals. Their flaws might be some hidden hypocrisy or heretical idea, or an ideal or bond taken to an extreme.\n@Compendium[dnd5e.tables.HDzErjwy3TseLOZX]{Personality Traits}\n@Compendium[dnd5e.tables.W9xqQZy0Ad0CwkN2]{Ideals}\n@Compendium[dnd5e.tables.DZhd8JkjqlpCP8EB]{Bonds}\n@Compendium[dnd5e.tables.COIHGOnoJnmXduad]{Flaws}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"advancement":[{"_id":"wIwtQfLdf9tJdZNi","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":true,"grants":["skills:ins","skills:rel"],"choices":[]},"level":0,"title":"","value":{}},{"_id":"9YuEhI3iqUxEfIOk","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["languages:*"]}]},"level":0,"title":""},{"_id":"6grrnum72rnphzi5","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.backgrounds.64N1NWh9kC1dI7zN"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":0,"title":"Feature"}]},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"IgJkSnLiLJOWH7eK","_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234264,"modifiedTime":1698857222487,"lastModifiedBy":"dnd5ebuilder0000"}} diff --git a/packs/classes.db b/packs/classes.db index b971bf26bf..84f006ae04 100644 --- a/packs/classes.db +++ b/packs/classes.db @@ -1,12 +1,12 @@ -{"_id":"6T08zzKtmmpVwlXU","name":"Sorcerer","type":"class","img":"icons/magic/earth/projectiles-magma-stone-orange.webp","system":{"description":{"value":"As a sorcerer, you gain the following class features.\nHit Points\nHit Dice: 1d6 per sorcerer levelHit Points at 1st Level: 6 + your Constitution modifierHit Points at Higher Levels: 1d6 (or 4) + your Constitution modifier per sorcerer level after 1st\nProficiencies\nArmor: NoneWeapons: Daggers, darts, slings, quarterstaffs, light crossbowsTools: NoneSaving Throws: Constitution, CharismaSkills: Choose two from Arcana, Deception, Insight, Intimidation, Persuasion, and Religion\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a light crossbow and 20 bolts or (b) any simple weapon\n(a) a component pouch or (b) an arcane focus\n(a) a dungeoneer's pack or (b) an explorer's pack\nTwo daggers\n\nSorcerer Advancement\n\n\n\nLevel\nProficiency Bonus\nSorcery Points\nFeatures\n\n\n\n\n1st\n+2\n̶\n@Compendium[dnd5e.classfeatures.oygRF3ZjTv2T7z0Y]{Spellcasting}, @Compendium[dnd5e.classfeatures.cmRCL9T9UgRYOj1c]{Sorcerous Origins}\n\n\n2nd\n+2\n2\n@Compendium[dnd5e.classfeatures.LBKChJY5n02Afhnq]{Font of Magic}\n\n\n3rd\n+2\n3\n2nd Level Spell Slot, @Compendium[dnd5e.classfeatures.9Uh7uTDNZ04oTJsL]{Metamagic}\n\n\n4th\n+2\n4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n5th\n+3\n5\n3rd Level Spell Slot\n\n\n6th\n+3\n6\nSorcerous Origin feature\n\n\n7th\n+3\n7\n4th Level Spell Slot\n\n\n8th\n+3\n8\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n9th\n+4\n9\n5th Level Spell Slot\n\n\n10th\n+4\n10\n@Compendium[dnd5e.classfeatures.9Uh7uTDNZ04oTJsL]{Metamagic improvement}\n\n\n11th\n+4\n11\n6th Level Spell Slot\n\n\n12th\n+4\n12\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n13\n7th Level Spell Slot\n\n\n14th\n+5\n14\nSorcerous Origin feature\n\n\n15th\n+5\n15\n8th Level Spell Slot\n\n\n16th\n+5\n16\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n17\n9th Level Spell Slot, @Compendium[dnd5e.classfeatures.9Uh7uTDNZ04oTJsL]{Metamagic improvement}\n\n\n18th\n+6\n18\nSorcerous Origin feature\n\n\n19th\n+6\n19\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\n20\n@Compendium[dnd5e.classfeatures.F2lEKSmOY0NUruzY]{Sorcerous Restoration}\n\n\n\nSorcerous Origins\nDifferent sorcerers claim different origins for their innate magic, such as a draconic bloodline.\n@Compendium[dnd5e.subclasses.2nadB2MBSHTQ0kcl]{Draconic Bloodline}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"sorcerer","levels":1,"hitDice":"d6","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.oygRF3ZjTv2T7z0Y","Compendium.dnd5e.classfeatures.cmRCL9T9UgRYOj1c"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.LBKChJY5n02Afhnq"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.9Uh7uTDNZ04oTJsL"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.F2lEKSmOY0NUruzY"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemChoice","configuration":{"hint":"","choices":{"3":2,"10":1,"17":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.zElYrOcCFFMhB6Xl","Compendium.dnd5e.classfeatures.DZpAa3LzMNBexbmX","Compendium.dnd5e.classfeatures.IWpe0Y9uAStHGiH1","Compendium.dnd5e.classfeatures.tQxlKyAx9sgPrbgj","Compendium.dnd5e.classfeatures.tNG2qi9zhmXEkecA","Compendium.dnd5e.classfeatures.nViGf6bZ6DQAJhkw","Compendium.dnd5e.classfeatures.fXa0DMhoVLtbBu9l","Compendium.dnd5e.classfeatures.Qb391hakCfmH4w8p"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"metamagic","level":""}},"value":{},"title":"Metamagic","icon":"systems/dnd5e/icons/svg/item-choice.svg"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":4},"4":{"value":5},"10":{"value":6}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg"},{"type":"ScaleValue","configuration":{"identifier":"spells-known","type":"number","distance":{"units":""},"scale":{"1":{"value":2},"2":{"value":3},"3":{"value":4},"4":{"value":5},"5":{"value":6},"6":{"value":7},"7":{"value":8},"8":{"value":9},"9":{"value":10},"10":{"value":11},"11":{"value":12},"13":{"value":13},"15":{"value":14},"17":{"value":15}}},"value":{},"title":"Spells Known","icon":"systems/dnd5e/icons/svg/scale-value.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["con","cha"],"skills":{"number":2,"choices":["arc","dec","ins","itm","per","rel"],"value":[]},"spellcasting":{"progression":"full","ability":"cha"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234275,"modifiedTime":1691518581039,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"6VoZrWxhOEKGYhnq","name":"Monk","type":"class","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"As a monk, you gain the following class features.\nHit Points\nHit Dice: 1d8 per monk levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per monk level after 1st\nProficiencies\nArmor: NoneWeapons: Simple weapons, shortswordsTools: Choose one type of artisan's tools or one musical instrumentSaving Throws: Strength, DexteritySkills: Choose two from Acrobatics, Athletics, History, Insight, Religion, and Stealth\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a shortsword or (b) any simple weapon\n(a) a dungeoneer's pack or (b) an explorer's pack\n10 darts\n\nMonk Advancement\n\n\n\nLevel\nProficiency Bonus\nMartial Arts\nKi Points\nUnarmored Movement\nFeatures\n\n\n\n\n1st\n+2\n1d4\n—\n—\n@Compendium[dnd5e.classfeatures.UAvV7N7T4zJhxdfI]{Unarmored Defense}, @Compendium[dnd5e.classfeatures.l50hjTxO2r0iecKw]{Martial Arts}\n\n\n2nd\n+2\n1d4\n2\n+10 ft.\n@Compendium[dnd5e.classfeatures.10b6z2W1txNkrGP7]{Ki}, @Compendium[dnd5e.classfeatures.zCeqyQ8uIPNdYJSW]{Unarmored Movement}\n\n\n3rd\n+2\n1d4\n3\n+10 ft.\n@Compendium[dnd5e.classfeatures.rtpQdX77dYWbDIOH]{Monastic Tradition}, @Compendium[dnd5e.classfeatures.mzweVbnsJPQiVkAe]{Deflect Missiles}\n\n\n4th\n+2\n1d4\n4\n+10 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}, @Compendium[dnd5e.classfeatures.KQz9bqxVkXjDl8gK]{Slow Fall}\n\n\n5th\n+3\n1d6\n5\n+10 ft.\n@Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}, @Compendium[dnd5e.classfeatures.pvRc6GAu1ok6zihC]{Stunning Strike}\n\n\n6th\n+3\n1d6\n6\n+15 ft.\n\n@Compendium[dnd5e.classfeatures.7flZKruSSu6dHg6D]{Ki-Empowered Strikes},\nMonastic Tradition feature\n\n\n\n7th\n+3\n1d6\n7\n+15 ft.\n@Compendium[dnd5e.classfeatures.a4P4DNMmH8CqSNkC]{Evasion}, @Compendium[dnd5e.classfeatures.ZmC31XKS4YNENnoc]{Stillness of Mind}\n\n\n8th\n+3\n1d6\n8\n+15 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n9th\n+4\n1d6\n9\n+15 ft.\nUnarmored Movement improvement\n\n\n10th\n+4\n1d6\n10\n+20 ft.\n@Compendium[dnd5e.classfeatures.bqWA7t9pDELbNRkp]{Purity of Body}\n\n\n11th\n+4\n1d8\n11\n+20 ft.\nMonastic Tradition feature\n\n\n12th\n+4\n1d8\n12\n+20 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n1d8\n13\n+20 ft.\n@Compendium[dnd5e.classfeatures.XjuGBeB8Y0C3A5D4]{Tongue of the Sun and Moon}\n\n\n14th\n+5\n1d8\n14\n+25 ft.\n@Compendium[dnd5e.classfeatures.7D2EkLdISwShEDlN]{Diamond Soul}\n\n\n15th\n+5\n1d8\n15\n+25 ft.\n@Compendium[dnd5e.classfeatures.gDH8PMrKvLHaNmEI]{Timeless Body}\n\n\n16th\n+5\n1d8\n16\n+25 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n1d10\n17\n+25 ft.\nMonastic Tradition feature\n\n\n18th\n+6\n1d10\n18\n+30 ft.\n@Compendium[dnd5e.classfeatures.3jwFt3hSqDswBlOH]{Empty Body}\n\n\n19th\n+6\n1d10\n19\n+30 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\n1d10\n20\n+30 ft.\n@Compendium[dnd5e.classfeatures.mQNPg89YIs7g5tG4]{Perfect Self}\n\n\n\nMonastic Traditions\nThree traditions of monastic pursuit are common in the monasteries scattered across the multiverse. Most monasteries practice one tradition exclusively, but a few honor the three traditions and instruct each monk according to his or her aptitude and interest. All three traditions rely on the same basic techniques, diverging as the student grows more adept. Thus, a monk need choose a tradition only upon reaching 3rd level.\n@Compendium[dnd5e.subclasses.IvlpKMXX3PmW1NY2]{Way of the Open Hand}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"monk","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.UAvV7N7T4zJhxdfI","Compendium.dnd5e.classfeatures.l50hjTxO2r0iecKw","Compendium.dnd5e.classfeatures.eGxoNmSMWKNzChCO"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.10b6z2W1txNkrGP7","Compendium.dnd5e.classfeatures.5MwNlVZK7m6VolOH","Compendium.dnd5e.classfeatures.TDglPcxIVEzvVSgK","Compendium.dnd5e.classfeatures.yrSFIGTaQOH2PFRI","Compendium.dnd5e.classfeatures.zCeqyQ8uIPNdYJSW"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.rtpQdX77dYWbDIOH","Compendium.dnd5e.classfeatures.mzweVbnsJPQiVkAe"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.KQz9bqxVkXjDl8gK"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":4,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo","Compendium.dnd5e.classfeatures.pvRc6GAu1ok6zihC"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.7flZKruSSu6dHg6D"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.a4P4DNMmH8CqSNkC","Compendium.dnd5e.classfeatures.ZmC31XKS4YNENnoc"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":7,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.bqWA7t9pDELbNRkp"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.XjuGBeB8Y0C3A5D4"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":13,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.7D2EkLdISwShEDlN"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.gDH8PMrKvLHaNmEI"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":15,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.3jwFt3hSqDswBlOH"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.mQNPg89YIs7g5tG4"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ScaleValue","configuration":{"identifier":"die","type":"dice","distance":{"units":""},"scale":{"1":{"number":null,"faces":4},"5":{"number":null,"faces":6},"11":{"number":null,"faces":8},"17":{"number":null,"faces":10}}},"value":{},"title":"Martial Arts Die","icon":"systems/dnd5e/icons/svg/scale-value.svg"},{"type":"ScaleValue","configuration":{"identifier":"unarmored-movement","type":"distance","distance":{"units":"ft"},"scale":{"2":{"value":10},"6":{"value":15},"10":{"value":20},"14":{"value":25},"18":{"value":30}}},"value":{},"title":"Unarmored Movement","icon":"systems/dnd5e/icons/svg/scale-value.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["str","dex"],"skills":{"number":2,"choices":["acr","ath","his","ins","rel","ste"],"value":[]},"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234277,"modifiedTime":1691518503601,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7WJp9vhi6F6SlAFa","name":"Warlock","type":"class","img":"icons/creatures/mammals/bat-giant-tattered-purple.webp","system":{"description":{"value":"As a warlock, you gain the following class features.Hit PointsHit Dice: 1d8 per warlock levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per warlock level after 1stProficienciesArmor: Light armorWeapons: Simple weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two skills from Arcana, Deception, History, Intimidation, Investigation, Nature, and ReligionEquipmentYou start with the following equipment, in addition to the equipment granted by your background:(a) a light crossbow and 20 bolts or (b) any simple weapon(a) a component pouch or (b) an arcane focus(a) a scholar's pack or (b) a dungeoneer's packLeather armor, any simple weapon, and two daggersWarlock AdvancementLevelProficiency BonusFeaturesInvocations Known1st+2@Compendium[dnd5e.classfeatures.jTXHaK0vvT5DV3uO]{Otherworldly Patron}, @Compendium[dnd5e.classfeatures.x6IJZwr6f0SGral7]{Pact Magic}̶2nd+2@Compendium[dnd5e.classfeatures.8MlxM2nEfE3Q0EVk]{Eldritch Invocations}23rd+2@Compendium[dnd5e.classfeatures.QwgfIpCN8VWfoUtX]{Pact Boon}24th+2@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}25th+33rd Level Spells, +1 Invocation36th+3Otherworldly Patron feature37th+34th Level Spells, +1 Invocation48th+3@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}49th+45th Level Spells, +1 Invocation510th+4Otherworldly Patron feature511th+4@Compendium[dnd5e.classfeatures.zB77V8BcCJvWVxck]{Mystic Arcanum (6th-Level Spell)}512th+4@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}, +1 Invocation613th+5@Compendium[dnd5e.classfeatures.zB77V8BcCJvWVxck]{Mystic Arcanum (7th-Level Spell)}614th+5Otherworldly Patron feature615th+5@Compendium[dnd5e.classfeatures.zB77V8BcCJvWVxck]{Mystic Arcanum (8th-Level Spell)}, +1 Invocation716th+5@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}717th+6@Compendium[dnd5e.classfeatures.zB77V8BcCJvWVxck]{Mystic Arcanum (9th-Level Spell)}718th+6+1 Invocation819th+6@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}820th+6@Compendium[dnd5e.classfeatures.0C04rwyvoknvFYiy]{Eldritch Master}8Your Pact BoonEach Pact Boon option produces a special creature or an object that reflects your patron's nature.Pact of the Chain. Your familiar is more cunning than a typical familiar. Its default form can be a reflection of your patron, with imps and quasits tied to the Fiend.Pact of the Blade. If you serve the Fiend, your weapon could be an axe made of black metal and adorned with decorative flames.Pact of the Tome. Your Book of Shadows could be a weighty tome bound in demon hide studded with iron, holding spells of conjuration and a wealth of forbidden lore about the sinister regions of the cosmos, a gift of the Fiend.Otherworldly PatronsThe beings that serve as patrons for warlocks are mighty inhabitants of other planes of existence—not gods, but almost godlike in their power. Various patrons give their warlocks access to different powers and invocations, and expect significant favors in return.Some patrons collect warlocks, doling out mystic knowledge relatively freely or boasting of their ability to bind mortals to their will. Other patrons bestow their power only grudgingly, and might make a pact with only one warlock. Warlocks who serve the same patron might view each other as allies, siblings, or rivals.@Compendium[dnd5e.subclasses.WPFVBg589uI8iOMH]{The Fiend}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"warlock","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.jTXHaK0vvT5DV3uO","Compendium.dnd5e.classfeatures.x6IJZwr6f0SGral7"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.8MlxM2nEfE3Q0EVk"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.QwgfIpCN8VWfoUtX"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.zB77V8BcCJvWVxck"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":11,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.0C04rwyvoknvFYiy"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemChoice","configuration":{"hint":"If an eldritch invocation has prerequisites, you must meet them to learn it. You can learn the invocation at the same time that you meet its prerequisites. A level prerequisite refers to your level in this class.","choices":{"2":2,"5":1,"7":1,"9":1,"12":1,"15":1,"18":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.2fyuw7MiCnocDeAU","Compendium.dnd5e.classfeatures.alUqO6c6OEKFQJdb","Compendium.dnd5e.classfeatures.QEuH5TeBN4PPYT2g","Compendium.dnd5e.classfeatures.61kXR1sniXHjvN17","Compendium.dnd5e.classfeatures.eNvpIaSnJUdF8fHl","Compendium.dnd5e.classfeatures.KygHql3cTj4IRrvZ","Compendium.dnd5e.classfeatures.CFIYXDmbmSP8BXjN","Compendium.dnd5e.classfeatures.Phy02H5x0TKHd7T3","Compendium.dnd5e.classfeatures.3sN91lT1R3oxcDKd","Compendium.dnd5e.classfeatures.QBk1RsuTIEF4GEBC","Compendium.dnd5e.classfeatures.bbUEsCPTLzbbwK6o","Compendium.dnd5e.classfeatures.r01WtcxTg4yTHm9m","Compendium.dnd5e.classfeatures.lEZKbWaVrSljRa9n","Compendium.dnd5e.classfeatures.id0gmGvzNZBEdzbx","Compendium.dnd5e.classfeatures.65ReXU4ZWqcSs3Cm","Compendium.dnd5e.classfeatures.zUIAzBnyt0NDvVXb","Compendium.dnd5e.classfeatures.MhJfdBl1B7PdU4oZ","Compendium.dnd5e.classfeatures.lxfdjLer3uKjyZqU","Compendium.dnd5e.classfeatures.QnRKYXb2bXpnNd2k","Compendium.dnd5e.classfeatures.DjXi0IkCTbJx1gsp","Compendium.dnd5e.classfeatures.k5DU0mMuYVHejiqz","Compendium.dnd5e.classfeatures.KfnUyjUWAk0bAAus","Compendium.dnd5e.classfeatures.8zciiglzEOZo7DDN","Compendium.dnd5e.classfeatures.rdBPd6CwqXT64iJM","Compendium.dnd5e.classfeatures.Xa2MLUJGCReJ28B7","Compendium.dnd5e.classfeatures.dTSV0xZMpY5CxkRk","Compendium.dnd5e.classfeatures.rhbwDZ9XNTmdkX2u","Compendium.dnd5e.classfeatures.pJADgAxxefgcATWr","Compendium.dnd5e.classfeatures.zYIdNAjqRyhS6qWs","Compendium.dnd5e.classfeatures.k5M8gsl7MMcdjOjs","Compendium.dnd5e.classfeatures.gFjxo01hAN4c9hDG","Compendium.dnd5e.classfeatures.snsjxGfmzWfZR5Nh"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"eldritchInvocation","level":""}},"value":{},"title":"Eldritch Invocations","icon":"systems/dnd5e/icons/svg/item-choice.svg"},{"type":"ItemChoice","configuration":{"hint":"","choices":{"3":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.9dSSa68mIPoX2ezA","Compendium.dnd5e.classfeatures.Ic1CSjvbWKudVUv9","Compendium.dnd5e.classfeatures.MYM908WLZ1lVvA1u"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"pact","level":""}},"value":{},"title":"Pact Boon","icon":"systems/dnd5e/icons/svg/item-choice.svg"},{"type":"ItemChoice","configuration":{"hint":"Choose one 6th-level spell from the warlock spell list as this arcanum.","choices":{"11":1},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"atwill","uses":{"max":"1","per":"lr"}},"restriction":{"type":"","subtype":"","level":"6"}},"value":{},"title":"Mystic Arcanum (6th level)","icon":"systems/dnd5e/icons/svg/item-choice.svg"},{"type":"ItemChoice","configuration":{"hint":"Choose one 7th-level spell from the warlock spell list as this arcanum.","choices":{"13":1},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"atwill","uses":{"max":"1","per":"lr"}},"restriction":{"type":"","subtype":"","level":"7"}},"value":{},"title":"Mystic Arcanum (7th level)","icon":"systems/dnd5e/icons/svg/item-choice.svg"},{"type":"ItemChoice","configuration":{"hint":"Choose one 8th-level spell from the warlock spell list as this arcanum.","choices":{"15":1},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"atwill","uses":{"max":"1","per":"lr"}},"restriction":{"type":"","subtype":"","level":"8"}},"value":{},"title":"Mystic Arcanum (8th level)","icon":"systems/dnd5e/icons/svg/item-choice.svg"},{"type":"ItemChoice","configuration":{"hint":"Choose one 9th-level spell from the warlock spell list as this arcanum.","choices":{"17":1},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"atwill","uses":{"max":"1","per":"lr"}},"restriction":{"type":"","subtype":"","level":"9"}},"value":{},"title":"Mystic Arcanum (9th level)","icon":"systems/dnd5e/icons/svg/item-choice.svg"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":2},"4":{"value":3},"10":{"value":4}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg"},{"type":"ScaleValue","configuration":{"identifier":"spells-known","type":"number","distance":{"units":""},"scale":{"1":{"value":2},"2":{"value":3},"3":{"value":4},"4":{"value":5},"5":{"value":6},"6":{"value":7},"7":{"value":8},"8":{"value":9},"9":{"value":10},"11":{"value":11},"13":{"value":12},"15":{"value":13},"17":{"value":14},"19":{"value":15}}},"value":{},"title":"Spells Known","icon":"systems/dnd5e/icons/svg/scale-value.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["wis","cha"],"skills":{"number":2,"choices":["arc","dec","his","itm","inv","nat","rel"],"value":[]},"spellcasting":{"progression":"pact","ability":"cha"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234278,"modifiedTime":1691518598942,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ABEBgWyRhVlDUIfq","name":"Fighter","type":"class","img":"icons/skills/melee/hand-grip-sword-red.webp","system":{"description":{"value":"As a fighter, you gain the following class features.\nHit Points\nHit Dice: 1d10 per fighter levelHit Points at 1st Level: 10 + your Constitution modifierHit Points at Higher Levels: 1d10 (or 6) + your Constitution modifier per fighter level after 1st\nProficiencies\nArmor: All armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, ConstitutionSkills: Choose two skills from Acrobatics, Animal Handling, Athletics, History, Insight, Intimidation, Perception, and Survival\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) chain mail or (b) leather armor, longbow, and 20 arrows\n(a) a martial weapon and a shield or (b) two martial weapons\n(a) a light crossbow and 20 bolts or (b) two handaxes\n(a) a dungeoneer's pack or (b) an explorer's pack\n\nFighter Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.fbExzwNwEAl2kW9c]{Fighting Style}, @Compendium[dnd5e.classfeatures.nTjmWbyHweXuIqwc]{Second Wind}\n\n\n2nd\n+2\n@Compendium[dnd5e.classfeatures.xF1VTcJ3AdkbTsdQ]{Action Surge}\n\n\n3rd\n+2\n@Compendium[dnd5e.classfeatures.ax8M0X0q1GGWM26j]{Martial Archetype}\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n5th\n+3\n@Compendium[dnd5e.classfeatures.q9g1MLXuLZyxjQMg]{Extra Attack}\n\n\n6th\n+3\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n7th\n+3\nMartial Archetype feature\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n9th\n+4\n@Compendium[dnd5e.classfeatures.653ZHbNcmm7ZGXbw]{Indomitable}\n\n\n10th\n+4\nMartial Archetype feature\n\n\n11th\n+4\n@Compendium[dnd5e.classfeatures.q9g1MLXuLZyxjQMg]{Extra Attack (2)}\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n13th\n+5\n@Compendium[dnd5e.classfeatures.653ZHbNcmm7ZGXbw]{Indomitable (2 uses)}\n\n\n14th\n+5\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n15th\n+5\nMartial Archetype feature\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n17th\n+6\n@Compendium[dnd5e.classfeatures.xF1VTcJ3AdkbTsdQ]{Action Surge (2 uses)}, @Compendium[dnd5e.classfeatures.653ZHbNcmm7ZGXbw]{Indomitable (3 uses)}\n\n\n18th\n+6\nMartial Archetype feature\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n20th\n+6\n@Compendium[dnd5e.classfeatures.q9g1MLXuLZyxjQMg]{Extra Attack (3)}\n\n\n\nMartial Archetypes\nDifferent fighters choose different approaches to perfecting their fighting prowess. The martial archetype you choose to emulate reflects your approach.\n@Compendium[dnd5e.subclasses.sprHbe7cRg9osTzf]{Champion}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"fighter","levels":1,"hitDice":"d10","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"yhZd0KJPJERAWGgA"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.fbExzwNwEAl2kW9c","Compendium.dnd5e.classfeatures.nTjmWbyHweXuIqwc"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"PwWJCRoUIftcpy47"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.xF1VTcJ3AdkbTsdQ"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"pxHWfZrwT5tdCH61"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ax8M0X0q1GGWM26j"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"tdk8Hj5vUKl7Uz2a"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.q9g1MLXuLZyxjQMg"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"1UqvFqvQRr0Mzk3K"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.653ZHbNcmm7ZGXbw"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":9,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"hu99eLBFUHiOOKdl"},{"type":"ItemChoice","configuration":{"hint":"You adopt a particular style of fighting as your specialty. Choose one of the following options. You can’t take a Fighting Style option more than once, even if you later get to choose again.","choices":{"1":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.8YwPFv3UAPjWVDNf","Compendium.dnd5e.classfeatures.zSlV0O2rQMdoq6pB","Compendium.dnd5e.classfeatures.hCop9uJrWhF1QPb4","Compendium.dnd5e.classfeatures.3Nc6u9pyStByuJsm","Compendium.dnd5e.classfeatures.06NVMYf58Z76O85O","Compendium.dnd5e.classfeatures.mHcSjcHJ8oZu3hkb"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"fightingStyle","level":""}},"value":{},"title":"Fighting Style","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"3hmYTgl5rz8Y5Z0I"},{"type":"ScaleValue","configuration":{"identifier":"indomitable","type":"number","distance":{"units":""},"scale":{"9":{"value":1},"13":{"value":2},"17":{"value":3}}},"value":{},"title":"Indomitable Uses","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"B7YpSu4cVsEbHbrv"},{"type":"ScaleValue","configuration":{"identifier":"action-surge","type":"number","distance":{"units":""},"scale":{"2":{"value":1},"17":{"value":2}}},"value":{},"title":"Action Surge Uses","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"kxiasN1v8KFm9nse"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"rvfuW71lYEeJW7HS"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"g49SXigwmpaZW0Hm"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"gXVE2mfohi6iErff"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"GdBOLIPXmNSWRSmO"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""},{"_id":"ZvTgE4hnO4clYc0z","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":6,"title":""},{"_id":"zw1ftiHmlUeHRTdc","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":14,"title":""}],"saves":["str","con"],"skills":{"number":2,"choices":["acr","ani","ath","his","ins","itm","prc","sur"],"value":[]},"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234279,"modifiedTime":1691518656322,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ILvRZGEx3aXqSVUt","name":"Bard","type":"class","img":"icons/skills/toxins/cup-goblet-poisoned-spilled.webp","system":{"description":{"value":"As a bard, you gain the following class features.Hit PointsHit Dice: 1d8 per bard levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per bard level after 1stProficienciesArmor: Light armorWeapons: Simple weapons, hand crossbows, longswords, rapiers, shortswordsTools: Three musical instruments of your choiceSaving Throws: Dexterity, CharismaSkills: Choose any threeEquipmentYou start with the following equipment, in addition to the equipment granted by your background:(a) a rapier, (b) a longsword, or (c) any simple weapon(a) a diplomat's pack or (b) an entertainer's pack(a) a lute or (b) any other musical instrumentLeather armor and a daggerBard AdvancementLevelProficiency BonusFeatures1st+2@Compendium[dnd5e.classfeatures.u4NLajXETJhJU31v]{Spellcasting}, @Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiration (d6)}2nd+2@Compendium[dnd5e.classfeatures.ezWijmCnlnQ9ZRX2]{Jack of All Trades}, @Compendium[dnd5e.classfeatures.he8RpPXwSl2lVSIk]{Song of Rest (d6)}3rd+2@Compendium[dnd5e.classfeatures.ILhzFHiRrqgQ9dFJ]{Bard College} @Compendium[dnd5e.classfeatures.aQLg7BWdRnm4Hr9S]{Expertise}4th+2@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}5th+3@Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiration (d8)}, @Compendium[dnd5e.classfeatures.3VDZGs5Ug3hIE322]{Font of Inspiration}6th+3@Compendium[dnd5e.classfeatures.SEJmsjkEhdAZ90ki]{Countercharm}, Bard College feature7th+34th Level Spell Slot8th+3@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}9th+45th Level Spell Slot @Compendium[dnd5e.classfeatures.he8RpPXwSl2lVSIk]{Song of Rest (d8)}10th+4@Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiration (d10)}, @Compendium[dnd5e.classfeatures.aQLg7BWdRnm4Hr9S]{Expertise}, @Compendium[dnd5e.classfeatures.aonJ2YjkqkYB9WYB]{Magical Secrets}11th+46th Level Spell Slot12th+4@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}13th+57th Level Spell Slot, @Compendium[dnd5e.classfeatures.he8RpPXwSl2lVSIk]{Song of Rest (d10)}14th+5@Compendium[dnd5e.classfeatures.aonJ2YjkqkYB9WYB]{Magical Secrets}, Bard College feature15th+58th Level Spell Slot, @Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiration (d12)}16th+5@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}17th+69th Level Spell Slot, @Compendium[dnd5e.classfeatures.he8RpPXwSl2lVSIk]{Song of Rest (d12)}18th+6@Compendium[dnd5e.classfeatures.aonJ2YjkqkYB9WYB]{Magical Secrets}19th+6@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}20th+6@Compendium[dnd5e.classfeatures.GBYN5rH4nh1ocRlY]{Superior Inspiration}Bard Colleges@Compendium[dnd5e.subclasses.MNvsEc4D2ccX7dQT]{College of Lore}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"bard","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.u4NLajXETJhJU31v","Compendium.dnd5e.classfeatures.hpLNiGq7y67d2EHA"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ezWijmCnlnQ9ZRX2","Compendium.dnd5e.classfeatures.he8RpPXwSl2lVSIk"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ILhzFHiRrqgQ9dFJ","Compendium.dnd5e.classfeatures.aQLg7BWdRnm4Hr9S"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.3VDZGs5Ug3hIE322"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.SEJmsjkEhdAZ90ki"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.aonJ2YjkqkYB9WYB"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.GBYN5rH4nh1ocRlY"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemChoice","configuration":{"hint":"Choose two spells from any classes, including this one. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip.","choices":{"10":2,"14":2,"18":2},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"","subtype":"","level":"available"}},"value":{},"title":"Magical Secrets","icon":"systems/dnd5e/icons/svg/item-choice.svg"},{"type":"ScaleValue","configuration":{"identifier":"inspiration","type":"dice","distance":{"units":""},"scale":{"1":{"number":null,"faces":6},"5":{"number":null,"faces":8},"10":{"number":null,"faces":10},"15":{"number":null,"faces":12}}},"value":{},"title":"Bardic Inspiration Die","icon":"systems/dnd5e/icons/svg/scale-value.svg"},{"type":"ScaleValue","configuration":{"identifier":"song-of-rest","type":"dice","distance":{"units":""},"scale":{"2":{"number":null,"faces":6},"9":{"number":null,"faces":8},"13":{"number":null,"faces":10},"17":{"number":null,"faces":12}}},"value":{},"title":"Song of Rest Die","icon":"systems/dnd5e/icons/svg/scale-value.svg"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":2},"4":{"value":3},"10":{"value":4}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg"},{"type":"ScaleValue","configuration":{"identifier":"spells-known","type":"number","distance":{"units":""},"scale":{"1":{"value":4},"2":{"value":5},"3":{"value":6},"4":{"value":7},"5":{"value":8},"6":{"value":9},"7":{"value":10},"8":{"value":11},"9":{"value":12},"10":{"value":14},"11":{"value":15},"13":{"value":16},"14":{"value":18},"15":{"value":19},"17":{"value":20},"18":{"value":22}}},"value":{},"title":"Spells Known","icon":"systems/dnd5e/icons/svg/scale-value.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["dex","cha"],"skills":{"number":3,"choices":["acr","ani","arc","ath","dec","his","ins","itm","inv","med","nat","prc","per","prf","rel","slt","ste","sur"],"value":[]},"spellcasting":{"progression":"full","ability":"cha"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234279,"modifiedTime":1691518407140,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VkRQ7glQvTWWiOCS","name":"Ranger","type":"class","img":"icons/weapons/bows/shortbow-recurve-yellow.webp","system":{"description":{"value":"As a ranger, you gain the following class features.\nHit Points\nHit Dice: 1d10 per ranger levelHit Points at 1st Level: 10 + your Constitution modifierHit Points at Higher Levels: 1d10 (or 6) + your Constitution modifier per ranger level after 1st\nProficiencies\nArmor: Light armor, medium armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, DexteritySkills: Choose three from Animal Handling, Athletics, Insight, Investigation, Nature, Perception, Stealth, and Survival\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) scale mail or (b) leather armor\n(a) two shortswords or (b) two simple melee weapons\n(a) a dungeoneer's pack or (b) an explorer's pack\nA longbow and a quiver of 20 arrows\n\nRanger Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.4Vpj9vCOB37GtXk6]{Favored Enemy}, @Compendium[dnd5e.classfeatures.8fbZt2Qh7ZttwIan]{Natural Explorer}\n\n\n2nd\n+2\n@Compendium[dnd5e.classfeatures.nJA3ISVmyj3uPRVM]{Fighting Style}, @Compendium[dnd5e.classfeatures.u6xV3Ki3TXRrD7zg]{Spellcasting}\n\n\n3rd\n+2\n@Compendium[dnd5e.classfeatures.1dJHU48yNqn3lcfx]{Ranger Archetype}, @Compendium[dnd5e.classfeatures.kaHcUGiwi8AtfZIm]{Primeval Awareness}\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n5th\n+3\n2nd Level Spell Slot, @Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}\n\n\n6th\n+3\n@Compendium[dnd5e.classfeatures.4Vpj9vCOB37GtXk6]{Favored Enemy +1}, @Compendium[dnd5e.classfeatures.8fbZt2Qh7ZttwIan]{Natural Explorer improvements}\n\n\n7th\n+3\nRanger Archetype feature\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}, @Compendium[dnd5e.classfeatures.C5fzaOBc6HxyOWRn]{Land's Stride}\n\n\n9th\n+4\n3rd Level Spell Slot\n\n\n10th\n+4\n@Compendium[dnd5e.classfeatures.8fbZt2Qh7ZttwIan]{Natural Explorer improvement}, @Compendium[dnd5e.classfeatures.r0unvWK0lPsDthDx]{Hide in Plain Sight}\n\n\n11th\n+4\nRanger Archetype feature\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n4th Level Spell Slot\n\n\n14th\n+5\n@Compendium[dnd5e.classfeatures.4Vpj9vCOB37GtXk6]{Favored Enemy +1}, @Compendium[dnd5e.classfeatures.DhU2dWCNnX78TstR]{Vanish}\n\n\n15th\n+5\nRanger Archetype feature\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n5th Level Spell Slot\n\n\n18th\n+6\n@Compendium[dnd5e.classfeatures.QBVmY56RMQuh6C8h]{Feral Senses}\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\n@Compendium[dnd5e.classfeatures.3CaP1vFHVR8LgHjx]{Foe Slayer}\n\n\n\nRanger Archetypes\nA classic expression of the ranger ideal is the Hunter.\n@Compendium[dnd5e.subclasses.uqd2q6WjVfcsaaGb]{Hunter}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"ranger","levels":1,"hitDice":"d10","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.4Vpj9vCOB37GtXk6","Compendium.dnd5e.classfeatures.8fbZt2Qh7ZttwIan"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.nJA3ISVmyj3uPRVM","Compendium.dnd5e.classfeatures.u6xV3Ki3TXRrD7zg"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.1dJHU48yNqn3lcfx","Compendium.dnd5e.classfeatures.kaHcUGiwi8AtfZIm"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.C5fzaOBc6HxyOWRn"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":8,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.r0unvWK0lPsDthDx"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.DhU2dWCNnX78TstR"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.QBVmY56RMQuh6C8h"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.3CaP1vFHVR8LgHjx"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemChoice","configuration":{"hint":"Choose one of the following options. You can’t take a Fighting Style option more than once, even if you later get to choose again.","choices":{"2":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.8YwPFv3UAPjWVDNf","Compendium.dnd5e.classfeatures.zSlV0O2rQMdoq6pB","Compendium.dnd5e.classfeatures.hCop9uJrWhF1QPb4","Compendium.dnd5e.classfeatures.mHcSjcHJ8oZu3hkb"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"fightingStyle","level":""}},"value":{},"title":"Fighting Style","icon":"systems/dnd5e/icons/svg/item-choice.svg"},{"type":"ScaleValue","configuration":{"identifier":"spells-known","type":"number","distance":{"units":""},"scale":{"2":{"value":2},"3":{"value":3},"5":{"value":4},"7":{"value":5},"9":{"value":6},"11":{"value":7},"13":{"value":8},"15":{"value":9},"17":{"value":10},"19":{"value":11}}},"value":{},"title":"Spells Known","icon":"systems/dnd5e/icons/svg/scale-value.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["str","dex"],"skills":{"number":3,"choices":["ani","ath","ins","inv","nat","prc","ste","sur"],"value":[]},"spellcasting":{"progression":"half","ability":"wis"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234280,"modifiedTime":1691518541515,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gZiUvbXWLs0pOp0c","name":"Paladin","type":"class","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"As a paladin, you gain the following class features.\nHit Points\nHit Dice: 1d10 per paladin levelHit Points at 1st Level: 10 + your Constitution modifierHit Points at Higher Levels: 1d10 (or 6) + your Constitution modifier per paladin level after 1st\nProficiencies\nArmor: All armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two from Athletics, Insight, Intimidation, Medicine, Persuasion, and Religion\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a martial weapon and a shield or (b) two martial weapons\n(a) five javelins or (b) any simple melee weapon\n(a) a priest's pack or (b) an explorer's pack\nChain mail and a holy symbol\n\nPaladin Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.E8ozg8avUVOX9N7u]{Divine Sense}, @Compendium[dnd5e.classfeatures.OdrvL3afwLOPeuYZ]{Lay on Hands}\n\n\n2nd\n+2\n@UUID[Compendium.dnd5e.classfeatures.Ho7dVxBlOYFlfBHk]{Fighting Style}, @Compendium[dnd5e.classfeatures.ihoQHsmVZlyDbPhX]{Spellcasting}, @Compendium[dnd5e.classfeatures.ySMPQ6zNSlvkrl2f]{Divine Smite}\n\n\n3rd\n+2\n@Compendium[dnd5e.classfeatures.dY9yrqkyEDuF0CG2]{Divine Health}, @Compendium[dnd5e.classfeatures.olAqNsUTIef9x8xC]{Sacred Oath}, @UUID[Compendium.dnd5e.classfeatures.8M7uOPhbTxoxxJSo]{Channel Divinity}\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n5th\n+3\n2nd Level Spell Slot, @Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}\n\n\n6th\n+3\n@Compendium[dnd5e.classfeatures.carGDhkIdoduTC0I]{Aura of Protection}\n\n\n7th\n+3\nSacred Oath feature\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n9th\n+4\n3rd Level Spell Slot\n\n\n10th\n+4\n@Compendium[dnd5e.classfeatures.nahSkBO6LH4HkpaT]{Aura of Courage}\n\n\n11th\n+4\n@Compendium[dnd5e.classfeatures.FAk41RPCTcvCk6KI]{Improved Divine Smite}\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n4th Level Spell Slot\n\n\n14th\n+5\n@Compendium[dnd5e.classfeatures.U7BIPVPsptBmwsnV]{Cleansing Touch}\n\n\n15th\n+5\nSacred Oath feature\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n5th Level Spell Slot\n\n\n18th\n+6\nAura improvements\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\nSacred Oath feature\n\n\n\nSacred Oaths\nBecoming a paladin involves taking vows that commit the paladin to the cause of righteousness, an active path of fighting wickedness. The final oath, taken when he or she reaches 3rd level, is the culmination of all the paladin's training. Some characters with this class don't consider themselves true paladins until they have reached 3rd level and made this oath. For others, the actual swearing of the oath is a formality, an official stamp on what has always been true in the paladin's heart.\n@Compendium[dnd5e.subclasses.sZ86mbX8D5PfYuhl]{Oath of Devotion}\nBreaking Your Oath\nA paladin tries to hold to the highest standards of conduct, but even the most virtuous paladin is fallible. Sometimes the right path proves too demanding, sometimes a situation calls for the lesser of two evils, and sometimes the heat of emotion causes a paladin to transgress his or her oath.\nA paladin who has broken a vow typically seeks absolution from a cleric who shares his or her faith or from another paladin of the same order. The paladin might spend an allnight vigil in prayer as a sign of penitence, or undertake a fast or similar act of self-denial. After a rite of confession and forgiveness, the paladin starts fresh.\nIf a paladin willfully violates his or her oath and shows no sign of repentance, the consequences can be more serious. At the GM's discretion, an impenitent paladin might be forced to abandon this class and adopt another.","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"paladin","levels":1,"hitDice":"d10","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.E8ozg8avUVOX9N7u","Compendium.dnd5e.classfeatures.OdrvL3afwLOPeuYZ"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Ho7dVxBlOYFlfBHk","Compendium.dnd5e.classfeatures.ihoQHsmVZlyDbPhX","Compendium.dnd5e.classfeatures.ySMPQ6zNSlvkrl2f"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.dY9yrqkyEDuF0CG2","Compendium.dnd5e.classfeatures.olAqNsUTIef9x8xC","Compendium.dnd5e.classfeatures.8M7uOPhbTxoxxJSo"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.carGDhkIdoduTC0I"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.nahSkBO6LH4HkpaT"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.FAk41RPCTcvCk6KI"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":11,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.U7BIPVPsptBmwsnV"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemChoice","configuration":{"hint":"Choose one of the following options. You can’t take a Fighting Style option more than once, even if you later get to choose again.","choices":{"2":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.zSlV0O2rQMdoq6pB","Compendium.dnd5e.classfeatures.hCop9uJrWhF1QPb4","Compendium.dnd5e.classfeatures.3Nc6u9pyStByuJsm","Compendium.dnd5e.classfeatures.06NVMYf58Z76O85O"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"fightingStyle","level":""}},"value":{},"title":"Fighting Style","icon":"systems/dnd5e/icons/svg/item-choice.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["wis","cha"],"skills":{"number":2,"choices":["ath","ins","itm","med","per","rel"],"value":[]},"spellcasting":{"progression":"half","ability":"cha"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234280,"modifiedTime":1691518520671,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"pvEzGSv71zBhaolc","name":"Barbarian","type":"class","img":"icons/skills/melee/hand-grip-sword-orange.webp","system":{"description":{"value":"As a barbarian, you gain the following class features.\nHit Points\nHit Dice: 1d12 per barbarian levelHit Points at 1st Level: 12 + your Constitution modifierHit Points at Higher Levels: 1d12 (or 7) + your Constitution modifier per barbarian level after 1st\nProficiencies\nArmor: Light armor, medium armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, ConstitutionSkills: Choose two from Animal Handling, Athletics, Intimidation, Nature, Perception, and Survival\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a greataxe or (b) any martial melee weapon\n(a) two handaxes or (b) any simple weapon\nAn explorer's pack and four javelins\n\nBarbarian Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\nRages\nRage Damage\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.VoR0SUrNX5EJVPIO]{Rage}, @Compendium[dnd5e.classfeatures.SZbsNbaxFFGwBpNK]{Unarmored Defense}\n2\n+2\n\n\n2nd\n+2\n@Compendium[dnd5e.classfeatures.SCVjqRdlZ9cvHVSR]{Reckless Attack}, @Compendium[dnd5e.classfeatures.vt31lWAULygEl7yk]{Danger Sense}\n2\n+2\n\n\n3rd\n+2\n@Compendium[dnd5e.classfeatures.TH1QAf6YNGSeBVjT]{Primal Path}\n3\n+2\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n3\n+2\n\n\n5th\n+3\n@Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}, @Compendium[dnd5e.classfeatures.Kl6zifJ5OmdHlOi2]{Fast Movement}\n3\n+2\n\n\n6th\n+3\nPath feature\n4\n+2\n\n\n7th\n+3\n@Compendium[dnd5e.classfeatures.NlXslw4yAqmKZWtN]{Feral Instinct}\n4\n+2\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n4\n+2\n\n\n9th\n+4\n@Compendium[dnd5e.classfeatures.L94gyvNpUhUe0rwh]{Brutal Critical (1 die)}\n4\n+3\n\n\n10th\n+4\nPath feature\n4\n+3\n\n\n11th\n+4\n@Compendium[dnd5e.classfeatures.FqfmbPgxiyrWzhYk]{Relentless Rage}\n4\n+3\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n5\n+3\n\n\n13th\n+5\n@Compendium[dnd5e.classfeatures.L94gyvNpUhUe0rwh]{Brutal Critical (2 dice)}\n5\n+3\n\n\n14th\n+5\nPath feature\n5\n+3\n\n\n15th\n+5\n@Compendium[dnd5e.classfeatures.l8tUhZ5Pecm9wz7I]{Persistent Rage}\n5\n+3\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n5\n+4\n\n\n17th\n+6\n@Compendium[dnd5e.classfeatures.L94gyvNpUhUe0rwh]{Brutal Critical (3 dice)}\n6\n+4\n\n\n18th\n+6\n@Compendium[dnd5e.classfeatures.Q1exex5ALteprrPo]{Indomitable Might}\n6\n+4\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n6\n+4\n\n\n20th\n+6\n@Compendium[dnd5e.classfeatures.jVU4AgqfrFaqgXns]{Primal Champion}\nUnlimited\n+4\n\n\n\nPrimal Paths\n@Compendium[dnd5e.subclasses.uGuDQX9Mz3oHNHkU]{Path of the Berserker}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"barbarian","levels":1,"hitDice":"d12","hitDiceUsed":0,"advancement":[{"_id":"5jn0ekktgccyvvpw","type":"HitPoints","configuration":{},"value":{},"title":""},{"_id":"amez6rlose3eoigo","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.VoR0SUrNX5EJVPIO","Compendium.dnd5e.classfeatures.SZbsNbaxFFGwBpNK"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features"},{"_id":"udl318k61boq0rnn","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.SCVjqRdlZ9cvHVSR","Compendium.dnd5e.classfeatures.vt31lWAULygEl7yk"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features"},{"_id":"8y2ey740kizr4jb6","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.TH1QAf6YNGSeBVjT"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features"},{"_id":"uoexdq8totskritb","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo","Compendium.dnd5e.classfeatures.Kl6zifJ5OmdHlOi2"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features"},{"_id":"w6ceiqibcmzpcuy8","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.NlXslw4yAqmKZWtN"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":7,"title":"Features"},{"_id":"ty9si22p6pfwb3ow","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.L94gyvNpUhUe0rwh"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":9,"title":"Features"},{"_id":"802xi5l50le3ntk8","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.FqfmbPgxiyrWzhYk"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":11,"title":"Features"},{"_id":"g9ut0x1ugm31gbhk","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.l8tUhZ5Pecm9wz7I"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":15,"title":"Features"},{"_id":"so18afasiyobkpxy","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Q1exex5ALteprrPo"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features"},{"_id":"9hvtrqbg7d7zwg07","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.jVU4AgqfrFaqgXns"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features"},{"_id":"62svnflxsuad7oar","type":"ScaleValue","configuration":{"identifier":"rages","type":"number","scale":{"1":{"value":2},"3":{"value":3},"6":{"value":4},"12":{"value":5},"17":{"value":6},"20":{"value":999}},"distance":{"units":""}},"value":{},"title":"Rages"},{"_id":"t42incolsbuqn2ec","type":"ScaleValue","configuration":{"identifier":"rage-damage","type":"number","scale":{"1":{"value":2},"9":{"value":3},"16":{"value":4}},"distance":{"units":""}},"value":{},"title":"Rage Damage"},{"_id":"y0kr48pnq5doebeb","type":"ScaleValue","configuration":{"identifier":"brutal-critical","type":"number","scale":{"9":{"value":1},"13":{"value":2},"17":{"value":3}},"distance":{"units":""}},"value":{},"title":"Brutal Critical Dice"},{"_id":"dZHMy3530RPCjzvD","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":""},{"_id":"dBMWU3h8MBO4PcEm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":""},{"_id":"nROeTbeO8vrGjqAp","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":""},{"_id":"prZMkvcCNoLvF4yB","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":""},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["str","con"],"skills":{"number":2,"choices":["ani","ath","itm","nat","prc","sur"],"value":[]},"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234281,"modifiedTime":1691518329159,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"tlwBnN8GmqJcTgub","name":"Cleric","type":"class","img":"icons/magic/life/ankh-gold-blue.webp","system":{"description":{"value":"As a cleric, you gain the following class features.\nHit Points\nHit Dice: 1d8 per cleric levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per cleric level after 1st\nProficiencies\nArmor: Light armor, medium armor, shieldsWeapons: Simple weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two from History, Insight, Medicine, Persuasion, and Religion\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a mace or (b) a warhammer (if proficient)\n(a) scale mail, (b) leather armor, or (c) chain mail (if proficient)\n(a) a light crossbow and 20 bolts or (b) any simple weapon\n(a) a priest's pack or (b) an explorer's pack\nA shield and a holy symbol\n\nCleric Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.v4gKwLhAq9vuqza7]{Spellcasting} , @Compendium[dnd5e.classfeatures.x637K2Icp2ZFM1TB]{Divine Domain}\n\n\n2nd\n+2\n@Compendium[dnd5e.classfeatures.YpiLQEKGalROn7iJ]{Channel Divinity (1/rest)}, Divine Domain feature\n\n\n3rd\n+2\n2nd Level Spell Slot\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n5th\n+3\n3rd Level Spell Slot, @Compendium[dnd5e.classfeatures.NMy4piwXIpLjYbRE]{Destroy Undead (CR 1/2)}\n\n\n6th\n+3\n@Compendium[dnd5e.classfeatures.YpiLQEKGalROn7iJ]{Channel Divinity (2/rest)}, Divine Domain feature\n\n\n7th\n+3\n4th Level Spell Slot\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{ASI}, @Compendium[dnd5e.classfeatures.NMy4piwXIpLjYbRE]{Destroy Undead (CR 1)}, Divine Domain feature\n\n\n9th\n+4\n5th Level Spell Slot\n\n\n10th\n+4\n@Compendium[dnd5e.classfeatures.eVXqHn0ojWrEuYGU]{Divine Intervention}\n\n\n11th\n+4\n6th Level Spell Slot, @Compendium[dnd5e.classfeatures.NMy4piwXIpLjYbRE]{Destroy Undead (CR 2)}\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n7th Level Spell Slot\n\n\n14th\n+5\n@Compendium[dnd5e.classfeatures.NMy4piwXIpLjYbRE]{Destroy Undead (CR 3)}\n\n\n15th\n+5\n8th Level Spell Slot\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n9th Level Spell Slot, @Compendium[dnd5e.classfeatures.NMy4piwXIpLjYbRE]{Destroy Undead (CR 4)}, Divine Domain feature\n\n\n18th\n+6\n@Compendium[dnd5e.classfeatures.YpiLQEKGalROn7iJ]{Channel Divinity (3/rest)}\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\n@Compendium[dnd5e.classfeatures.eVXqHn0ojWrEuYGU]{Divine Intervention (Automatic Success)}\n\n\n\nDivine Domains\n@Compendium[dnd5e.subclasses.H3RYLGqCiqm8BP3q]{Life Domain}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"cleric","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.v4gKwLhAq9vuqza7","Compendium.dnd5e.classfeatures.x637K2Icp2ZFM1TB"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.YpiLQEKGalROn7iJ","Compendium.dnd5e.classfeatures.r91UIgwFdHwkXdia"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.NMy4piwXIpLjYbRE"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.eVXqHn0ojWrEuYGU"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ScaleValue","configuration":{"identifier":"channel-divinity","type":"number","distance":{"units":""},"scale":{"2":{"value":1},"6":{"value":2},"18":{"value":3}}},"value":{},"title":"Channel Divinity Uses","icon":"systems/dnd5e/icons/svg/scale-value.svg"},{"type":"ScaleValue","configuration":{"identifier":"destroy-undead","type":"cr","distance":{"units":""},"scale":{"5":{"value":0.5},"8":{"value":1},"11":{"value":2},"14":{"value":3},"17":{"value":4}}},"value":{},"title":"Destroy Undead CR","icon":"systems/dnd5e/icons/svg/scale-value.svg"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":3},"4":{"value":4},"10":{"value":5}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["wis","cha"],"skills":{"number":2,"choices":["his","ins","med","per","rel"],"value":[]},"spellcasting":{"progression":"full","ability":"wis"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234282,"modifiedTime":1691518447226,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"wZK2Q0rXB0AQo8h3","name":"Wizard","type":"class","img":"icons/magic/air/wind-tornado-wall-blue.webp","system":{"description":{"value":"As a wizard, you gain the following class features.Hit PointsHit Dice: 1d6 per wizard levelHit Points at 1st Level: 6 + your Constitution modifierHit Points at Higher Levels: 1d6 (or 4) + your Constitution modifier per wizard level after 1stProficienciesArmor: NoneWeapons: Daggers, darts, slings, quarterstaffs, light crossbowsTools: NoneSaving Throws: Intelligence, WisdomSkills: Choose two from Arcana, History, Insight, Investigation, Medicine, and ReligionEquipmentYou start with the following equipment, in addition to the equipment granted by your background:(a) a quarterstaff or (b) a dagger(a) a component pouch or (b) an arcane focus(a) a scholar's pack or (b) an explorer's packA spellbookWizard AdvancementLevelProficiency BonusFeatures1st+2@Compendium[dnd5e.classfeatures.gbNo5eVPaqr8IVKL]{Spellcasting}, @Compendium[dnd5e.classfeatures.e0uTcFPpgxjIyUW9]{Arcane Recovery}2nd+2@Compendium[dnd5e.classfeatures.AEWr9EMxy5gj4ZFT]{Arcane Tradition}3rd+22nd Level Spell Slot4th+2@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}5th+33rd Level Spell Slot6th+3Arcane Tradition feature7th+34th Level Spell Slot8th+3@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}9th+45th Level Spell Slot10th+4Arcane Tradition feature11th+46 Level Spell Slot12th+4@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}13th+57th Level Spell Slot14th+5Arcane Tradition feature15th+58th Level Spell Slot16th+5@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}17th+69 Level Spell Slot18th+6@Compendium[dnd5e.classfeatures.JfFfHTeIszx1hNRx]{Spell Mastery}19th+6@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}20th+6@Compendium[dnd5e.classfeatures.nUrZDi6QN1YjwAr6]{Signature Spells}Your SpellbookThe spells that you add to your spellbook as you gain levels reflect the arcane research you conduct on your own, as well as intellectual breakthroughs you have had about the nature of the multiverse. You might find other spells during your adventures. You could discover a spell recorded on a scroll in an evil wizard's chest, for example, or in a dusty tome in an ancient library.Copying a Spell into the Book. When you find a wizard spell of 1st level or higher, you can add it to your spellbook if it is of a spell level you can prepare and if you can spare the time to decipher and copy it.Copying that spell into your spellbook involves reproducing the basic form of the spell, then deciphering the unique system of notation used by the wizard who wrote it. You must practice the spell until you understand the sounds or gestures required, then transcribe it into your spellbook using your own notation.For each level of the spell, the process takes 2 hours and costs 50 gp. The cost represents material components you expend as you experiment with the spell to master it, as well as the fine inks you need to record it. Once you have spent this time and money, you can prepare the spell just like your other spells.Replacing the Book. You can copy a spell from your own spellbook into another book—for example, if you want to make a backup copy of your spellbook. This is just like copying a new spell into your spellbook, but faster and easier, since you understand your own notation and already know how to cast the spell. You need spend only 1 hour and 10 gp for each level of the copied spell.If you lose your spellbook, you can use the same procedure to transcribe the spells that you have prepared into a new spellbook. Filling out the remainder of your spellbook requires you to find new spells to do so, as normal. For this reason, many wizards keep backup spellbooks in a safe place.The Book's Appearance. Your spellbook is a unique compilation of spells, with its own decorative flourishes and margin notes. It might be a plain, functional leather volume that you received as a gift from your master, a finely bound gilt-edged tome you found in an ancient library, or even a loose collection of notes scrounged together after you lost your previous spellbook in a mishap.Arcane TraditionsThe study of wizardry is ancient, stretching back to the earliest mortal discoveries of magic. It is firmly established in fantasy gaming worlds, with various traditions dedicated to its complex study.The most common arcane traditions in the multiverse revolve around the schools of magic. Wizards through the ages have cataloged thousands of spells, grouping them into eight categories called schools. In some places, these traditions are literally schools. In other institutions, the schools are more like academic departments, with rival faculties competing for students and funding. Even wizards who train apprentices in the solitude of their own towers use the division of magic into schools as a learning device, since the spells of each school require mastery of different techniques.@Compendium[dnd5e.subclasses.Ye5f3FReEnuXfi0y]{School of Evocation}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"wizard","levels":1,"hitDice":"d6","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.gbNo5eVPaqr8IVKL","Compendium.dnd5e.classfeatures.e0uTcFPpgxjIyUW9"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.AEWr9EMxy5gj4ZFT"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.JfFfHTeIszx1hNRx"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.nUrZDi6QN1YjwAr6"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemChoice","configuration":{"hint":"Choose two 3rd-level wizard spells in your spellbook as your signature spells.","choices":{"20":2},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"atwill","uses":{"max":"1","per":"sr"}},"restriction":{"type":"","subtype":"","level":"3"}},"value":{},"title":"Signature Spells","icon":"systems/dnd5e/icons/svg/item-choice.svg"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":3},"4":{"value":4},"10":{"value":5}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["int","wis"],"skills":{"number":2,"choices":["arc","his","ins","inv","med","rel"],"value":[]},"spellcasting":{"progression":"full","ability":"int"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234283,"modifiedTime":1691518616077,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xEb8jmA5HlNs7xTF","name":"Rogue","type":"class","img":"icons/skills/melee/strike-sword-stabbed-brown.webp","system":{"description":{"value":"As a rogue, you have the following class features.\nHit Points\nHit Dice: 1d8 per rogue levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per rogue level after 1st\nProficiencies\nArmor: Light armorWeapons: Simple weapons, hand crossbows, longswords, rapiers, shortswordsTools: Thieves' toolsSaving Throws: Dexterity, IntelligenceSkills: Choose four from Acrobatics, Athletics, Deception, Insight, Intimidation, Investigation, Perception, Performance, Persuasion, Sleight of Hand, and Stealth\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a rapier or (b) a shortsword\n(a) a shortbow and quiver of 20 arrows or (b) a shortsword\n(a) a burglar's pack, (b) a dungeoneer's pack, or (c) an explorer's pack\n(a) Leather armor, two daggers, and thieves' tools\n\nRogue Advancement\n\n\n\nLevel\nProficiency Bonus\nSneak Attack\nFeatures\n\n\n\n\n1st\n+2\n1d6\n@Compendium[dnd5e.classfeatures.3sYPftQKnbbVnHrh]{Expertise}, @Compendium[dnd5e.classfeatures.DPN2Gfk8yi1Z5wp7]{Sneak Attack}, @Compendium[dnd5e.classfeatures.ohwfuwnvuoBWlSQr]{Thieves' Cant}\n\n\n2nd\n+2\n1d6\n@Compendium[dnd5e.classfeatures.01pcLg6PRu5zGrsb]{Cunning Action}\n\n\n3rd\n+2\n2d6\n@Compendium[dnd5e.classfeatures.80USV8ZFPIahpLd0]{Roguish Archetype}\n\n\n4th\n+2\n2d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n5th\n+3\n3d6\n@Compendium[dnd5e.classfeatures.Mm64SKAHJWYecgXS]{Uncanny Dodge}\n\n\n6th\n+3\n3d6\n@Compendium[dnd5e.classfeatures.3sYPftQKnbbVnHrh]{Expertise improvement}\n\n\n7th\n+3\n4d6\n@Compendium[dnd5e.classfeatures.a4P4DNMmH8CqSNkC]{Evasion}\n\n\n8th\n+3\n4d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n9th\n+4\n5d6\nRoguish Archetype feature\n\n\n10th\n+4\n5d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n11th\n+4\n6d6\n@Compendium[dnd5e.classfeatures.YN9xm6MCvse4Y60u]{Reliable Talent}\n\n\n12th\n+4\n6d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n13th\n+5\n7d6\nRoguish Archetype feature\n\n\n14th\n+5\n7d6\n@Compendium[dnd5e.classfeatures.fjsBk7zxoAbLf8ZI]{Blindsense}\n\n\n15th\n+5\n8d6\n@Compendium[dnd5e.classfeatures.V4pwFxlwHtNeB4w9]{Slippery Mind}\n\n\n16th\n+5\n8d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n17th\n+6\n9d6\nRoguish Archetype feature\n\n\n18th\n+6\n9d6\n@Compendium[dnd5e.classfeatures.L7nJSRosos8sHJH9]{Elusive}\n\n\n19th\n+6\n10d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n20th\n+6\n10d6\n@Compendium[dnd5e.classfeatures.rQhWDaMHMn7iU4f2]{Stroke of Luck}\n\n\n\nRoguish Archetypes\nRogues have many features in common, including their emphasis on perfecting their skills, their precise and deadly approach to combat, and their increasingly quick reflexes. But different rogues steer those talents in varying directions, embodied by the rogue archetypes. Your choice of archetype is a reflection of your focus—not necessarily an indication of your chosen profession, but a description of your preferred techniques.\n@Compendium[dnd5e.subclasses.k8iuefRorWOjb9gR]{Thief}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"rogue","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"WMbkpELkLBvDaEsL"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.3sYPftQKnbbVnHrh","Compendium.dnd5e.classfeatures.DPN2Gfk8yi1Z5wp7","Compendium.dnd5e.classfeatures.ohwfuwnvuoBWlSQr"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"13XHsx4Z3vQ2XYkJ"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.01pcLg6PRu5zGrsb"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"5crdJzGJRQIVhbyr"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.80USV8ZFPIahpLd0"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"9F1ZUcRqNsBCOFNX"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Mm64SKAHJWYecgXS"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"PvQXh3OhvuLhjVoo"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.a4P4DNMmH8CqSNkC"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":7,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"X8G2PrPxOrfWQevi"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.YN9xm6MCvse4Y60u"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":11,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"MqV3BlQkAZycZ4Ue"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.fjsBk7zxoAbLf8ZI"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"sI4nacIwT4B8Y7mb"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.V4pwFxlwHtNeB4w9"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":15,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"mugszpD8eVZ2jybU"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.L7nJSRosos8sHJH9"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"EOVFTUpweDErdpSz"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.rQhWDaMHMn7iU4f2"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"GVuwdOHDEDfQX9cl"},{"type":"ScaleValue","configuration":{"identifier":"sneak-attack","type":"dice","distance":{"units":""},"scale":{"1":{"number":1,"faces":6},"3":{"number":2,"faces":6},"5":{"number":3,"faces":6},"7":{"number":4,"faces":6},"9":{"number":5,"faces":6},"11":{"number":6,"faces":6},"13":{"number":7,"faces":6},"15":{"number":8,"faces":6},"17":{"number":9,"faces":6},"19":{"number":10,"faces":6}}},"value":{},"title":"Sneak Attack","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"81nHtANt6Ffg9M4V"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"smghqQkObY4OOg30"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"WFAAUfKJA9QR46Bw"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"ahuQ3gMqz6sCza0m"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"iVq9vmwTow7KielM"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""},{"_id":"WhAioX7KT2ZULDHU","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":10,"title":""}],"saves":["dex","int"],"skills":{"number":4,"choices":["acr","ath","dec","ins","itm","inv","per","prf","prc","slt","ste"],"value":[]},"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234284,"modifiedTime":1691518730064,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ygVYgPbJkaH0tH1N","name":"Druid","type":"class","img":"icons/creatures/mammals/elk-moose-marked-green.webp","system":{"description":{"value":"As a druid, you gain the following class features.Hit PointsHit Dice: 1d8 per druid levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per druid level after 1stProficienciesArmor: Light armor, medium armor, shields (druids will not wear armor or use shields made of metal)Weapons: Clubs, daggers, darts, javelins, maces, quarterstaffs, scimitars, sickles, slings, spearsTools: Herbalism kitSaving Throws: Intelligence, WisdomSkills: Choose two from Arcana, Animal Handling, Insight, Medicine, Nature, Perception, Religion, and SurvivalEquipmentYou start with the following equipment, in addition to the equipment granted by your background:(a) a wooden shield or (b) any simple weapon(a) a scimitar or (b) any simple melee weaponLeather armor, an explorer's pack, and a druidic focusDruid AdvancementLevelProficiency BonusFeatures1st+2@Compendium[dnd5e.classfeatures.LzJ5ayHt0OlSVGxi]{Druidic}, @Compendium[dnd5e.classfeatures.i6tPm3FNK13Ftc9v]{Spellcasting}2nd+2@Compendium[dnd5e.classfeatures.swK0r5TOIxredxWS]{Wild Shape (Max CR ¼)}, @Compendium[dnd5e.classfeatures.u6Du2P9s81SWuGbi]{Druid Circle}3rd+22nd Level Spell Slot4th+2@Compendium[dnd5e.classfeatures.swK0r5TOIxredxWS]{Wild Shape (Max CR ½)}, @Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}5th+33rd Level Spell Slot6th+3Druid Circle feature7th+34th Level Spell Slot8th+3@Compendium[dnd5e.classfeatures.swK0r5TOIxredxWS]{Wild Shape (Max CR 1)}, @Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}9th+45th Level Spell Slot10th+4Druid Circle feature11th+46th Level Spell Slot12th+4@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}13th+57th Level Spell Slot14th+5Druid Circle feature15th+58th Level Spell Slot16th+5@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}17th+69th Level Spell Slot18th+6@Compendium[dnd5e.classfeatures.cVDEQo0ow1WJT7Wl]{Timeless Body}, @Compendium[dnd5e.classfeatures.xvgPu1O57DgXCM86]{Beast Spells}19th+6@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}20th+6@Compendium[dnd5e.classfeatures.ip4bvmGoz3qkoqes]{Archdruid}Sacred Plants and WoodA druid holds certain plants to be sacred, particularly alder, ash, birch, elder, hazel, holly, juniper, mistletoe, oak, rowan, willow, and yew. Druids often use such plants as part of a spellcasting focus, incorporating lengths of oak or yew or sprigs of mistletoe.Similarly, a druid uses such woods to make other objects, such as weapons and shields. Yew is associated with death and rebirth, so weapon handles for scimitars or sickles might be fashioned from it. Ash is associated with life and oak with strength. These woods make excellent hafts or whole weapons, such as clubs or quarterstaffs, as well as shields. Alder is associated with air, and it might be used for thrown weapons, such as darts or javelins.Druids from regions that lack the plants described here have chosen other plants to take on similar uses. For instance, a druid of a desert region might value the yucca tree and cactus plants.Druids and the GodsSome druids venerate the forces of nature themselves, but most druids are devoted to one of the many nature deities worshiped in the multiverse (the lists of gods in @UUID[Compendium.dnd5e.rules.udVPA9JW5wy5t3G5]{Appendix B} include many such deities). The worship of these deities is often considered a more ancient tradition than the faiths of clerics and urbanized peoples.Druid Circles@Compendium[dnd5e.subclasses.4Ae2SPZRXEVbVs0M]{Circle of the Land}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"druid","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.LzJ5ayHt0OlSVGxi","Compendium.dnd5e.classfeatures.i6tPm3FNK13Ftc9v"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.swK0r5TOIxredxWS","Compendium.dnd5e.classfeatures.u6Du2P9s81SWuGbi"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.cVDEQo0ow1WJT7Wl","Compendium.dnd5e.classfeatures.xvgPu1O57DgXCM86"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ip4bvmGoz3qkoqes"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg"},{"type":"ScaleValue","configuration":{"identifier":"wild-shape","type":"cr","distance":{"units":""},"scale":{"2":{"value":0.25},"4":{"value":0.5},"8":{"value":1}}},"value":{},"title":"Wild Shape CR","icon":"systems/dnd5e/icons/svg/scale-value.svg"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":2},"4":{"value":3},"10":{"value":4}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["int","wis"],"skills":{"number":2,"choices":["arc","ani","ins","med","nat","prc","rel","sur"],"value":[]},"spellcasting":{"progression":"full","ability":"wis"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234284,"modifiedTime":1691518466937,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"6T08zzKtmmpVwlXU","name":"Sorcerer","type":"class","img":"icons/magic/earth/projectiles-magma-stone-orange.webp","system":{"description":{"value":"As a sorcerer, you gain the following class features.\nHit Points\nHit Dice: 1d6 per sorcerer levelHit Points at 1st Level: 6 + your Constitution modifierHit Points at Higher Levels: 1d6 (or 4) + your Constitution modifier per sorcerer level after 1st\nProficiencies\nArmor: NoneWeapons: Daggers, darts, slings, quarterstaffs, light crossbowsTools: NoneSaving Throws: Constitution, CharismaSkills: Choose two from Arcana, Deception, Insight, Intimidation, Persuasion, and Religion\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a light crossbow and 20 bolts or (b) any simple weapon\n(a) a component pouch or (b) an arcane focus\n(a) a dungeoneer's pack or (b) an explorer's pack\nTwo daggers\n\nSorcerer Advancement\n\n\n\nLevel\nProficiency Bonus\nSorcery Points\nFeatures\n\n\n\n\n1st\n+2\n̶\n@Compendium[dnd5e.classfeatures.oygRF3ZjTv2T7z0Y]{Spellcasting}, @Compendium[dnd5e.classfeatures.cmRCL9T9UgRYOj1c]{Sorcerous Origins}\n\n\n2nd\n+2\n2\n@Compendium[dnd5e.classfeatures.LBKChJY5n02Afhnq]{Font of Magic}\n\n\n3rd\n+2\n3\n2nd Level Spell Slot, @Compendium[dnd5e.classfeatures.9Uh7uTDNZ04oTJsL]{Metamagic}\n\n\n4th\n+2\n4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n5th\n+3\n5\n3rd Level Spell Slot\n\n\n6th\n+3\n6\nSorcerous Origin feature\n\n\n7th\n+3\n7\n4th Level Spell Slot\n\n\n8th\n+3\n8\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n9th\n+4\n9\n5th Level Spell Slot\n\n\n10th\n+4\n10\n@Compendium[dnd5e.classfeatures.9Uh7uTDNZ04oTJsL]{Metamagic improvement}\n\n\n11th\n+4\n11\n6th Level Spell Slot\n\n\n12th\n+4\n12\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n13\n7th Level Spell Slot\n\n\n14th\n+5\n14\nSorcerous Origin feature\n\n\n15th\n+5\n15\n8th Level Spell Slot\n\n\n16th\n+5\n16\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n17\n9th Level Spell Slot, @Compendium[dnd5e.classfeatures.9Uh7uTDNZ04oTJsL]{Metamagic improvement}\n\n\n18th\n+6\n18\nSorcerous Origin feature\n\n\n19th\n+6\n19\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\n20\n@Compendium[dnd5e.classfeatures.F2lEKSmOY0NUruzY]{Sorcerous Restoration}\n\n\n\nSorcerous Origins\nDifferent sorcerers claim different origins for their innate magic, such as a draconic bloodline.\n@Compendium[dnd5e.subclasses.2nadB2MBSHTQ0kcl]{Draconic Bloodline}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"sorcerer","levels":1,"hitDice":"d6","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"XFeJBDjRoDLHPuR5"},{"_id":"BfjnJtYtVOv4PVHu","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim:dagger","weapon:sim:dart","weapon:sim:lightcrossbow","weapon:sim:quarterstaff","weapon:sim:sling"],"choices":[]},"level":1,"title":"","classRestriction":"primary"},{"_id":"KO7dxe4FlwlKXFIq","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:con","saves:cha"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{}},{"_id":"PAAGQYrkhVdGqg59","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:arc","skills:dec","skills:ins","skills:itm","skills:per","skills:rel"]}]},"level":1,"title":"","classRestriction":"primary","value":{}},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.oygRF3ZjTv2T7z0Y","Compendium.dnd5e.classfeatures.cmRCL9T9UgRYOj1c"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"tHGuZb6Cezr0Yda6"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.LBKChJY5n02Afhnq"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"vEbnPhd3OW2Z5RH8"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.9Uh7uTDNZ04oTJsL"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"7MYEF9Ci5OaEWaQ7"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.F2lEKSmOY0NUruzY"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"7FUhVIQtDqVQxUCJ"},{"type":"ItemChoice","configuration":{"hint":"","choices":{"3":2,"10":1,"17":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.zElYrOcCFFMhB6Xl","Compendium.dnd5e.classfeatures.DZpAa3LzMNBexbmX","Compendium.dnd5e.classfeatures.IWpe0Y9uAStHGiH1","Compendium.dnd5e.classfeatures.tQxlKyAx9sgPrbgj","Compendium.dnd5e.classfeatures.tNG2qi9zhmXEkecA","Compendium.dnd5e.classfeatures.nViGf6bZ6DQAJhkw","Compendium.dnd5e.classfeatures.fXa0DMhoVLtbBu9l","Compendium.dnd5e.classfeatures.Qb391hakCfmH4w8p"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"metamagic","level":""}},"value":{},"title":"Metamagic","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"JvnMksZAolGhHMVS"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":4},"4":{"value":5},"10":{"value":6}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"rSUZv6eYOPRtikhv"},{"type":"ScaleValue","configuration":{"identifier":"spells-known","type":"number","distance":{"units":""},"scale":{"1":{"value":2},"2":{"value":3},"3":{"value":4},"4":{"value":5},"5":{"value":6},"6":{"value":7},"7":{"value":8},"8":{"value":9},"9":{"value":10},"10":{"value":11},"11":{"value":12},"13":{"value":13},"15":{"value":14},"17":{"value":15}}},"value":{},"title":"Spells Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"Wr4j8nEA7gZxzW5Z"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"zSlKyZ0rzKcd78Cq"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"Psp6dqmMqww0D44O"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"9qahHg5ZfS8bWkjD"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"QYpSCG2AmMi8taC1"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["con","cha"],"skills":{"number":2,"choices":["arc","dec","ins","itm","per","rel"],"value":[]},"spellcasting":{"progression":"full","ability":"cha"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234275,"modifiedTime":1698851497625,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"6VoZrWxhOEKGYhnq","name":"Monk","type":"class","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"As a monk, you gain the following class features.\nHit Points\nHit Dice: 1d8 per monk levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per monk level after 1st\nProficiencies\nArmor: NoneWeapons: Simple weapons, shortswordsTools: Choose one type of artisan's tools or one musical instrumentSaving Throws: Strength, DexteritySkills: Choose two from Acrobatics, Athletics, History, Insight, Religion, and Stealth\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a shortsword or (b) any simple weapon\n(a) a dungeoneer's pack or (b) an explorer's pack\n10 darts\n\nMonk Advancement\n\n\n\nLevel\nProficiency Bonus\nMartial Arts\nKi Points\nUnarmored Movement\nFeatures\n\n\n\n\n1st\n+2\n1d4\n—\n—\n@Compendium[dnd5e.classfeatures.UAvV7N7T4zJhxdfI]{Unarmored Defense}, @Compendium[dnd5e.classfeatures.l50hjTxO2r0iecKw]{Martial Arts}\n\n\n2nd\n+2\n1d4\n2\n+10 ft.\n@Compendium[dnd5e.classfeatures.10b6z2W1txNkrGP7]{Ki}, @Compendium[dnd5e.classfeatures.zCeqyQ8uIPNdYJSW]{Unarmored Movement}\n\n\n3rd\n+2\n1d4\n3\n+10 ft.\n@Compendium[dnd5e.classfeatures.rtpQdX77dYWbDIOH]{Monastic Tradition}, @Compendium[dnd5e.classfeatures.mzweVbnsJPQiVkAe]{Deflect Missiles}\n\n\n4th\n+2\n1d4\n4\n+10 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}, @Compendium[dnd5e.classfeatures.KQz9bqxVkXjDl8gK]{Slow Fall}\n\n\n5th\n+3\n1d6\n5\n+10 ft.\n@Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}, @Compendium[dnd5e.classfeatures.pvRc6GAu1ok6zihC]{Stunning Strike}\n\n\n6th\n+3\n1d6\n6\n+15 ft.\n\n@Compendium[dnd5e.classfeatures.7flZKruSSu6dHg6D]{Ki-Empowered Strikes},\nMonastic Tradition feature\n\n\n\n7th\n+3\n1d6\n7\n+15 ft.\n@Compendium[dnd5e.classfeatures.a4P4DNMmH8CqSNkC]{Evasion}, @Compendium[dnd5e.classfeatures.ZmC31XKS4YNENnoc]{Stillness of Mind}\n\n\n8th\n+3\n1d6\n8\n+15 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n9th\n+4\n1d6\n9\n+15 ft.\nUnarmored Movement improvement\n\n\n10th\n+4\n1d6\n10\n+20 ft.\n@Compendium[dnd5e.classfeatures.bqWA7t9pDELbNRkp]{Purity of Body}\n\n\n11th\n+4\n1d8\n11\n+20 ft.\nMonastic Tradition feature\n\n\n12th\n+4\n1d8\n12\n+20 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n1d8\n13\n+20 ft.\n@Compendium[dnd5e.classfeatures.XjuGBeB8Y0C3A5D4]{Tongue of the Sun and Moon}\n\n\n14th\n+5\n1d8\n14\n+25 ft.\n@Compendium[dnd5e.classfeatures.7D2EkLdISwShEDlN]{Diamond Soul}\n\n\n15th\n+5\n1d8\n15\n+25 ft.\n@Compendium[dnd5e.classfeatures.gDH8PMrKvLHaNmEI]{Timeless Body}\n\n\n16th\n+5\n1d8\n16\n+25 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n1d10\n17\n+25 ft.\nMonastic Tradition feature\n\n\n18th\n+6\n1d10\n18\n+30 ft.\n@Compendium[dnd5e.classfeatures.3jwFt3hSqDswBlOH]{Empty Body}\n\n\n19th\n+6\n1d10\n19\n+30 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\n1d10\n20\n+30 ft.\n@Compendium[dnd5e.classfeatures.mQNPg89YIs7g5tG4]{Perfect Self}\n\n\n\nMonastic Traditions\nThree traditions of monastic pursuit are common in the monasteries scattered across the multiverse. Most monasteries practice one tradition exclusively, but a few honor the three traditions and instruct each monk according to his or her aptitude and interest. All three traditions rely on the same basic techniques, diverging as the student grows more adept. Thus, a monk need choose a tradition only upon reaching 3rd level.\n@Compendium[dnd5e.subclasses.IvlpKMXX3PmW1NY2]{Way of the Open Hand}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"monk","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"ocxNtDFJ7YDaYaK7"},{"_id":"mmAxx3U7FvXNAcKc","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim","weapon:mar:shortsword"],"choices":[]},"level":1,"title":"","value":{}},{"_id":"QPXy59CQGY9HB0c3","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":1,"pool":["tool:art:*","tool:music:*"]}]},"level":1,"title":"","classRestriction":"primary","value":{}},{"_id":"4M8MQ1E64zbcRg6B","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:str","saves:dex"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{}},{"_id":"7HRRCPk80Ng2Evdx","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:acr","skills:ath","skills:his","skills:ins","skills:rel","skills:ste"]}]},"level":1,"title":"","classRestriction":"primary","value":{}},{"_id":"BQWHr3mt5flvkfIj","type":"Trait","configuration":{"hint":"Your mastery of the ki flowing through you makes you immune to disease and poison.","mode":"default","allowReplacements":false,"grants":["di:poison","ci:diseased","ci:poisoned"],"choices":[]},"level":10,"title":"Purity of Body"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.UAvV7N7T4zJhxdfI","Compendium.dnd5e.classfeatures.l50hjTxO2r0iecKw","Compendium.dnd5e.classfeatures.eGxoNmSMWKNzChCO"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"n0q8XyiGA3vLPgpK"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.10b6z2W1txNkrGP7","Compendium.dnd5e.classfeatures.5MwNlVZK7m6VolOH","Compendium.dnd5e.classfeatures.TDglPcxIVEzvVSgK","Compendium.dnd5e.classfeatures.yrSFIGTaQOH2PFRI","Compendium.dnd5e.classfeatures.zCeqyQ8uIPNdYJSW"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"7TyDqpGGi3r3nsp0"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.rtpQdX77dYWbDIOH","Compendium.dnd5e.classfeatures.mzweVbnsJPQiVkAe"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"2sLHTw6k15DSW8WB"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.KQz9bqxVkXjDl8gK"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":4,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"Zc1jOZK1b9mIKekq"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo","Compendium.dnd5e.classfeatures.pvRc6GAu1ok6zihC"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"j9LeWmxlsENKaMLo"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.7flZKruSSu6dHg6D"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"psobDjMqtA2216Db"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.a4P4DNMmH8CqSNkC","Compendium.dnd5e.classfeatures.ZmC31XKS4YNENnoc"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":7,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"K38aFaEMxMqRB0BC"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.bqWA7t9pDELbNRkp"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"eLqmJotmwzlGNrxG"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.XjuGBeB8Y0C3A5D4"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":13,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"N0geIQiuofqYgswj"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.7D2EkLdISwShEDlN"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"N1hjizyI82UPp8UI"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.gDH8PMrKvLHaNmEI"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":15,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"TcLZS9WzC7bPETSd"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.3jwFt3hSqDswBlOH"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"tRb3a0tA5IpehPs8"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.mQNPg89YIs7g5tG4"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"sEQz9c9XhWYjS9x5"},{"type":"ScaleValue","configuration":{"identifier":"die","type":"dice","distance":{"units":""},"scale":{"1":{"number":null,"faces":4},"5":{"number":null,"faces":6},"11":{"number":null,"faces":8},"17":{"number":null,"faces":10}}},"value":{},"title":"Martial Arts Die","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"MXFbf0nxMiyLdPbX"},{"type":"ScaleValue","configuration":{"identifier":"unarmored-movement","type":"distance","distance":{"units":"ft"},"scale":{"2":{"value":10},"6":{"value":15},"10":{"value":20},"14":{"value":25},"18":{"value":30}}},"value":{},"title":"Unarmored Movement","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"1OzfWDWCquoHMeX5"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"ofNSUhSHKhhDuPSR"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"s3t9o57hP6iUHirr"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"O24MWOKc1ImsKaml"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"xdqWoLtgO3uyl3nJ"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["str","dex"],"skills":{"number":2,"choices":["acr","ath","his","ins","rel","ste"],"value":[]},"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234277,"modifiedTime":1698857146118,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7WJp9vhi6F6SlAFa","name":"Warlock","type":"class","img":"icons/creatures/mammals/bat-giant-tattered-purple.webp","system":{"description":{"value":"As a warlock, you gain the following class features.Hit PointsHit Dice: 1d8 per warlock levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per warlock level after 1stProficienciesArmor: Light armorWeapons: Simple weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two skills from Arcana, Deception, History, Intimidation, Investigation, Nature, and ReligionEquipmentYou start with the following equipment, in addition to the equipment granted by your background:(a) a light crossbow and 20 bolts or (b) any simple weapon(a) a component pouch or (b) an arcane focus(a) a scholar's pack or (b) a dungeoneer's packLeather armor, any simple weapon, and two daggersWarlock AdvancementLevelProficiency BonusFeaturesInvocations Known1st+2@Compendium[dnd5e.classfeatures.jTXHaK0vvT5DV3uO]{Otherworldly Patron}, @Compendium[dnd5e.classfeatures.x6IJZwr6f0SGral7]{Pact Magic}̶2nd+2@Compendium[dnd5e.classfeatures.8MlxM2nEfE3Q0EVk]{Eldritch Invocations}23rd+2@Compendium[dnd5e.classfeatures.QwgfIpCN8VWfoUtX]{Pact Boon}24th+2@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}25th+33rd Level Spells, +1 Invocation36th+3Otherworldly Patron feature37th+34th Level Spells, +1 Invocation48th+3@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}49th+45th Level Spells, +1 Invocation510th+4Otherworldly Patron feature511th+4@Compendium[dnd5e.classfeatures.zB77V8BcCJvWVxck]{Mystic Arcanum (6th-Level Spell)}512th+4@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}, +1 Invocation613th+5@Compendium[dnd5e.classfeatures.zB77V8BcCJvWVxck]{Mystic Arcanum (7th-Level Spell)}614th+5Otherworldly Patron feature615th+5@Compendium[dnd5e.classfeatures.zB77V8BcCJvWVxck]{Mystic Arcanum (8th-Level Spell)}, +1 Invocation716th+5@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}717th+6@Compendium[dnd5e.classfeatures.zB77V8BcCJvWVxck]{Mystic Arcanum (9th-Level Spell)}718th+6+1 Invocation819th+6@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}820th+6@Compendium[dnd5e.classfeatures.0C04rwyvoknvFYiy]{Eldritch Master}8Your Pact BoonEach Pact Boon option produces a special creature or an object that reflects your patron's nature.Pact of the Chain. Your familiar is more cunning than a typical familiar. Its default form can be a reflection of your patron, with imps and quasits tied to the Fiend.Pact of the Blade. If you serve the Fiend, your weapon could be an axe made of black metal and adorned with decorative flames.Pact of the Tome. Your Book of Shadows could be a weighty tome bound in demon hide studded with iron, holding spells of conjuration and a wealth of forbidden lore about the sinister regions of the cosmos, a gift of the Fiend.Otherworldly PatronsThe beings that serve as patrons for warlocks are mighty inhabitants of other planes of existence—not gods, but almost godlike in their power. Various patrons give their warlocks access to different powers and invocations, and expect significant favors in return.Some patrons collect warlocks, doling out mystic knowledge relatively freely or boasting of their ability to bind mortals to their will. Other patrons bestow their power only grudgingly, and might make a pact with only one warlock. Warlocks who serve the same patron might view each other as allies, siblings, or rivals.@Compendium[dnd5e.subclasses.WPFVBg589uI8iOMH]{The Fiend}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"warlock","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"Xdh0dw6w16k5xFbX"},{"_id":"BTAE9XqCBbyv4O8P","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:lgt"],"choices":[]},"level":1,"title":"","value":{}},{"_id":"25XLH7yn1R41rKlk","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim"],"choices":[]},"level":1,"title":"","value":{}},{"_id":"H0U9QH2KQj0lIrDK","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:wis","saves:cha"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{}},{"_id":"4DBaeL7SR77vUp6F","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:arc","skills:dec","skills:his","skills:itm","skills:inv","skills:nat","skills:rel"]}]},"level":1,"title":"","classRestriction":"primary"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.jTXHaK0vvT5DV3uO","Compendium.dnd5e.classfeatures.x6IJZwr6f0SGral7"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"SikU7aSV7VqT2FPB"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.8MlxM2nEfE3Q0EVk"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"11NYHMcme54WJHuU"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.QwgfIpCN8VWfoUtX"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"buIwQBGbWz96fhau"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.zB77V8BcCJvWVxck"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":11,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"eJpkbBgde3FQyJ7s"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.0C04rwyvoknvFYiy"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"98N1iW9C8krNSPuJ"},{"type":"ItemChoice","configuration":{"hint":"If an eldritch invocation has prerequisites, you must meet them to learn it. You can learn the invocation at the same time that you meet its prerequisites. A level prerequisite refers to your level in this class.","choices":{"2":2,"5":1,"7":1,"9":1,"12":1,"15":1,"18":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.2fyuw7MiCnocDeAU","Compendium.dnd5e.classfeatures.alUqO6c6OEKFQJdb","Compendium.dnd5e.classfeatures.QEuH5TeBN4PPYT2g","Compendium.dnd5e.classfeatures.61kXR1sniXHjvN17","Compendium.dnd5e.classfeatures.eNvpIaSnJUdF8fHl","Compendium.dnd5e.classfeatures.KygHql3cTj4IRrvZ","Compendium.dnd5e.classfeatures.CFIYXDmbmSP8BXjN","Compendium.dnd5e.classfeatures.Phy02H5x0TKHd7T3","Compendium.dnd5e.classfeatures.3sN91lT1R3oxcDKd","Compendium.dnd5e.classfeatures.QBk1RsuTIEF4GEBC","Compendium.dnd5e.classfeatures.bbUEsCPTLzbbwK6o","Compendium.dnd5e.classfeatures.r01WtcxTg4yTHm9m","Compendium.dnd5e.classfeatures.lEZKbWaVrSljRa9n","Compendium.dnd5e.classfeatures.id0gmGvzNZBEdzbx","Compendium.dnd5e.classfeatures.65ReXU4ZWqcSs3Cm","Compendium.dnd5e.classfeatures.zUIAzBnyt0NDvVXb","Compendium.dnd5e.classfeatures.MhJfdBl1B7PdU4oZ","Compendium.dnd5e.classfeatures.lxfdjLer3uKjyZqU","Compendium.dnd5e.classfeatures.QnRKYXb2bXpnNd2k","Compendium.dnd5e.classfeatures.DjXi0IkCTbJx1gsp","Compendium.dnd5e.classfeatures.k5DU0mMuYVHejiqz","Compendium.dnd5e.classfeatures.KfnUyjUWAk0bAAus","Compendium.dnd5e.classfeatures.8zciiglzEOZo7DDN","Compendium.dnd5e.classfeatures.rdBPd6CwqXT64iJM","Compendium.dnd5e.classfeatures.Xa2MLUJGCReJ28B7","Compendium.dnd5e.classfeatures.dTSV0xZMpY5CxkRk","Compendium.dnd5e.classfeatures.rhbwDZ9XNTmdkX2u","Compendium.dnd5e.classfeatures.pJADgAxxefgcATWr","Compendium.dnd5e.classfeatures.zYIdNAjqRyhS6qWs","Compendium.dnd5e.classfeatures.k5M8gsl7MMcdjOjs","Compendium.dnd5e.classfeatures.gFjxo01hAN4c9hDG","Compendium.dnd5e.classfeatures.snsjxGfmzWfZR5Nh"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"eldritchInvocation","level":""}},"value":{},"title":"Eldritch Invocations","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"3iQ0rp3fm10XWLJ4"},{"type":"ItemChoice","configuration":{"hint":"","choices":{"3":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.9dSSa68mIPoX2ezA","Compendium.dnd5e.classfeatures.Ic1CSjvbWKudVUv9","Compendium.dnd5e.classfeatures.MYM908WLZ1lVvA1u"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"pact","level":""}},"value":{},"title":"Pact Boon","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"mwFfObsz7bZQjFl1"},{"type":"ItemChoice","configuration":{"hint":"Choose one 6th-level spell from the warlock spell list as this arcanum.","choices":{"11":1},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"atwill","uses":{"max":"1","per":"lr"}},"restriction":{"type":"","subtype":"","level":"6"}},"value":{},"title":"Mystic Arcanum (6th level)","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"XtoK5DVOTjQ7PJ3H"},{"type":"ItemChoice","configuration":{"hint":"Choose one 7th-level spell from the warlock spell list as this arcanum.","choices":{"13":1},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"atwill","uses":{"max":"1","per":"lr"}},"restriction":{"type":"","subtype":"","level":"7"}},"value":{},"title":"Mystic Arcanum (7th level)","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"6TfqypKVuWsAprw7"},{"type":"ItemChoice","configuration":{"hint":"Choose one 8th-level spell from the warlock spell list as this arcanum.","choices":{"15":1},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"atwill","uses":{"max":"1","per":"lr"}},"restriction":{"type":"","subtype":"","level":"8"}},"value":{},"title":"Mystic Arcanum (8th level)","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"qFhNGSirvpbXMSwo"},{"type":"ItemChoice","configuration":{"hint":"Choose one 9th-level spell from the warlock spell list as this arcanum.","choices":{"17":1},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"atwill","uses":{"max":"1","per":"lr"}},"restriction":{"type":"","subtype":"","level":"9"}},"value":{},"title":"Mystic Arcanum (9th level)","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"zTE0N2sPRw039qCl"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":2},"4":{"value":3},"10":{"value":4}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"IXXGQe1feA5cBsOH"},{"type":"ScaleValue","configuration":{"identifier":"spells-known","type":"number","distance":{"units":""},"scale":{"1":{"value":2},"2":{"value":3},"3":{"value":4},"4":{"value":5},"5":{"value":6},"6":{"value":7},"7":{"value":8},"8":{"value":9},"9":{"value":10},"11":{"value":11},"13":{"value":12},"15":{"value":13},"17":{"value":14},"19":{"value":15}}},"value":{},"title":"Spells Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"zfiyBsaOuE359vfA"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"9tW2ZcVYgy8c3ucN"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"QH0eaxybQeeDjRan"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"Gz5OR2HizUVLjnrv"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"lx0PINdjgWtIMbQU"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["wis","cha"],"skills":{"number":2,"choices":["arc","dec","his","itm","inv","nat","rel"],"value":[]},"spellcasting":{"progression":"pact","ability":"cha"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234278,"modifiedTime":1698851505164,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ABEBgWyRhVlDUIfq","name":"Fighter","type":"class","img":"icons/skills/melee/hand-grip-sword-red.webp","system":{"description":{"value":"As a fighter, you gain the following class features.\nHit Points\nHit Dice: 1d10 per fighter levelHit Points at 1st Level: 10 + your Constitution modifierHit Points at Higher Levels: 1d10 (or 6) + your Constitution modifier per fighter level after 1st\nProficiencies\nArmor: All armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, ConstitutionSkills: Choose two skills from Acrobatics, Animal Handling, Athletics, History, Insight, Intimidation, Perception, and Survival\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) chain mail or (b) leather armor, longbow, and 20 arrows\n(a) a martial weapon and a shield or (b) two martial weapons\n(a) a light crossbow and 20 bolts or (b) two handaxes\n(a) a dungeoneer's pack or (b) an explorer's pack\n\nFighter Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.fbExzwNwEAl2kW9c]{Fighting Style}, @Compendium[dnd5e.classfeatures.nTjmWbyHweXuIqwc]{Second Wind}\n\n\n2nd\n+2\n@Compendium[dnd5e.classfeatures.xF1VTcJ3AdkbTsdQ]{Action Surge}\n\n\n3rd\n+2\n@Compendium[dnd5e.classfeatures.ax8M0X0q1GGWM26j]{Martial Archetype}\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n5th\n+3\n@Compendium[dnd5e.classfeatures.q9g1MLXuLZyxjQMg]{Extra Attack}\n\n\n6th\n+3\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n7th\n+3\nMartial Archetype feature\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n9th\n+4\n@Compendium[dnd5e.classfeatures.653ZHbNcmm7ZGXbw]{Indomitable}\n\n\n10th\n+4\nMartial Archetype feature\n\n\n11th\n+4\n@Compendium[dnd5e.classfeatures.q9g1MLXuLZyxjQMg]{Extra Attack (2)}\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n13th\n+5\n@Compendium[dnd5e.classfeatures.653ZHbNcmm7ZGXbw]{Indomitable (2 uses)}\n\n\n14th\n+5\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n15th\n+5\nMartial Archetype feature\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n17th\n+6\n@Compendium[dnd5e.classfeatures.xF1VTcJ3AdkbTsdQ]{Action Surge (2 uses)}, @Compendium[dnd5e.classfeatures.653ZHbNcmm7ZGXbw]{Indomitable (3 uses)}\n\n\n18th\n+6\nMartial Archetype feature\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n20th\n+6\n@Compendium[dnd5e.classfeatures.q9g1MLXuLZyxjQMg]{Extra Attack (3)}\n\n\n\nMartial Archetypes\nDifferent fighters choose different approaches to perfecting their fighting prowess. The martial archetype you choose to emulate reflects your approach.\n@Compendium[dnd5e.subclasses.sprHbe7cRg9osTzf]{Champion}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"fighter","levels":1,"hitDice":"d10","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"yhZd0KJPJERAWGgA"},{"_id":"mA50Kay0ZDA2jX9p","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:lgt","armor:med","armor:hvy","armor:shl"],"choices":[]},"level":1,"title":"","classRestriction":"primary"},{"_id":"nmUrDORkeK0uZm0p","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim","weapon:mar"],"choices":[]},"level":1,"title":"","value":{}},{"_id":"3o2s8ZVAyJd74CrP","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:str","saves:con"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{}},{"_id":"JEZnz3P7ydbNAdwN","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:acr","skills:ani","skills:ath","skills:his","skills:ins","skills:itm","skills:prc","skills:sur"]}]},"level":1,"title":"","classRestriction":"primary","value":{}},{"type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:lgt","armor:med","armor:shl"],"choices":[]},"level":1,"title":"","_id":"dB3KhImYQRemI4mr","classRestriction":"secondary","value":{}},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.fbExzwNwEAl2kW9c","Compendium.dnd5e.classfeatures.nTjmWbyHweXuIqwc"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"PwWJCRoUIftcpy47"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.xF1VTcJ3AdkbTsdQ"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"pxHWfZrwT5tdCH61"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ax8M0X0q1GGWM26j"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"tdk8Hj5vUKl7Uz2a"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.q9g1MLXuLZyxjQMg"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"1UqvFqvQRr0Mzk3K"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.653ZHbNcmm7ZGXbw"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":9,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"hu99eLBFUHiOOKdl"},{"type":"ItemChoice","configuration":{"hint":"You adopt a particular style of fighting as your specialty. Choose one of the following options. You can’t take a Fighting Style option more than once, even if you later get to choose again.","choices":{"1":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.8YwPFv3UAPjWVDNf","Compendium.dnd5e.classfeatures.zSlV0O2rQMdoq6pB","Compendium.dnd5e.classfeatures.hCop9uJrWhF1QPb4","Compendium.dnd5e.classfeatures.3Nc6u9pyStByuJsm","Compendium.dnd5e.classfeatures.06NVMYf58Z76O85O","Compendium.dnd5e.classfeatures.mHcSjcHJ8oZu3hkb"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"fightingStyle","level":""}},"value":{},"title":"Fighting Style","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"3hmYTgl5rz8Y5Z0I"},{"type":"ScaleValue","configuration":{"identifier":"indomitable","type":"number","distance":{"units":""},"scale":{"9":{"value":1},"13":{"value":2},"17":{"value":3}}},"value":{},"title":"Indomitable Uses","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"B7YpSu4cVsEbHbrv"},{"type":"ScaleValue","configuration":{"identifier":"action-surge","type":"number","distance":{"units":""},"scale":{"2":{"value":1},"17":{"value":2}}},"value":{},"title":"Action Surge Uses","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"kxiasN1v8KFm9nse"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"rvfuW71lYEeJW7HS"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"g49SXigwmpaZW0Hm"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"gXVE2mfohi6iErff"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"GdBOLIPXmNSWRSmO"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""},{"_id":"ZvTgE4hnO4clYc0z","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":6,"title":""},{"_id":"zw1ftiHmlUeHRTdc","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":14,"title":""}],"saves":["str","con"],"skills":{"number":2,"choices":["acr","ani","ath","his","ins","itm","prc","sur"],"value":[]},"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234279,"modifiedTime":1698851335324,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ILvRZGEx3aXqSVUt","name":"Bard","type":"class","img":"icons/skills/toxins/cup-goblet-poisoned-spilled.webp","system":{"description":{"value":"As a bard, you gain the following class features.Hit PointsHit Dice: 1d8 per bard levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per bard level after 1stProficienciesArmor: Light armorWeapons: Simple weapons, hand crossbows, longswords, rapiers, shortswordsTools: Three musical instruments of your choiceSaving Throws: Dexterity, CharismaSkills: Choose any threeEquipmentYou start with the following equipment, in addition to the equipment granted by your background:(a) a rapier, (b) a longsword, or (c) any simple weapon(a) a diplomat's pack or (b) an entertainer's pack(a) a lute or (b) any other musical instrumentLeather armor and a daggerBard AdvancementLevelProficiency BonusFeatures1st+2@Compendium[dnd5e.classfeatures.u4NLajXETJhJU31v]{Spellcasting}, @Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiration (d6)}2nd+2@Compendium[dnd5e.classfeatures.ezWijmCnlnQ9ZRX2]{Jack of All Trades}, @Compendium[dnd5e.classfeatures.he8RpPXwSl2lVSIk]{Song of Rest (d6)}3rd+2@Compendium[dnd5e.classfeatures.ILhzFHiRrqgQ9dFJ]{Bard College} @Compendium[dnd5e.classfeatures.aQLg7BWdRnm4Hr9S]{Expertise}4th+2@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}5th+3@Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiration (d8)}, @Compendium[dnd5e.classfeatures.3VDZGs5Ug3hIE322]{Font of Inspiration}6th+3@Compendium[dnd5e.classfeatures.SEJmsjkEhdAZ90ki]{Countercharm}, Bard College feature7th+34th Level Spell Slot8th+3@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}9th+45th Level Spell Slot @Compendium[dnd5e.classfeatures.he8RpPXwSl2lVSIk]{Song of Rest (d8)}10th+4@Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiration (d10)}, @Compendium[dnd5e.classfeatures.aQLg7BWdRnm4Hr9S]{Expertise}, @Compendium[dnd5e.classfeatures.aonJ2YjkqkYB9WYB]{Magical Secrets}11th+46th Level Spell Slot12th+4@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}13th+57th Level Spell Slot, @Compendium[dnd5e.classfeatures.he8RpPXwSl2lVSIk]{Song of Rest (d10)}14th+5@Compendium[dnd5e.classfeatures.aonJ2YjkqkYB9WYB]{Magical Secrets}, Bard College feature15th+58th Level Spell Slot, @Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiration (d12)}16th+5@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}17th+69th Level Spell Slot, @Compendium[dnd5e.classfeatures.he8RpPXwSl2lVSIk]{Song of Rest (d12)}18th+6@Compendium[dnd5e.classfeatures.aonJ2YjkqkYB9WYB]{Magical Secrets}19th+6@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}20th+6@Compendium[dnd5e.classfeatures.GBYN5rH4nh1ocRlY]{Superior Inspiration}Bard Colleges@Compendium[dnd5e.subclasses.MNvsEc4D2ccX7dQT]{College of Lore}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"bard","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"pILgW7YYeRvTfJS6"},{"_id":"svCkv1ECxsmu2Q7U","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:lgt"],"choices":[]},"level":1,"title":"","value":{}},{"_id":"hZPJWA6MdmFIZuQD","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim","weapon:mar:handcrossbow","weapon:mar:longsword","weapon:mar:rapier","weapon:mar:shortsword"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{}},{"_id":"tRCVvsqiLStPNyFl","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":3,"pool":["tool:music:*"]}]},"level":1,"title":"","classRestriction":"primary","value":{}},{"_id":"wVBCjoHg0ftdHj3m","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:dex","saves:cha"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{}},{"_id":"eNU6FoX5sNVbDx13","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":3,"pool":["skills:*"]}]},"level":1,"title":"","classRestriction":"primary","value":{}},{"type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":1,"pool":["tool:music:*"]}]},"level":1,"title":"","_id":"8oBIVC96av3lm5uk","classRestriction":"secondary","value":{}},{"type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":1,"pool":["skills:*"]}]},"level":1,"title":"","_id":"ELIXk3XCH4EmyiqN","classRestriction":"secondary","value":{}},{"_id":"cwu9uhmtcKhqli8W","type":"Trait","configuration":{"hint":"","mode":"expertise","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:*"]}]},"level":3,"title":"Expertise","value":{}},{"type":"Trait","configuration":{"hint":"","mode":"expertise","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:*"]}]},"level":10,"title":"Expertise","_id":"O2cVH7Y5kNfoUyLg","value":{}},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.u4NLajXETJhJU31v","Compendium.dnd5e.classfeatures.hpLNiGq7y67d2EHA"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"oNNPhAIeXhAweeBN"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ezWijmCnlnQ9ZRX2","Compendium.dnd5e.classfeatures.he8RpPXwSl2lVSIk"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"V3KCwHELag3C3YVj"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ILhzFHiRrqgQ9dFJ","Compendium.dnd5e.classfeatures.aQLg7BWdRnm4Hr9S"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"MSF1wogSoeJqfxAR"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.3VDZGs5Ug3hIE322"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"I7HqKmtMcat8Dm08"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.SEJmsjkEhdAZ90ki"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"UThCJ6mGUL0XQUb8"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.aonJ2YjkqkYB9WYB"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"2fX3mtdNC16A1z7S"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.GBYN5rH4nh1ocRlY"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"ZwU2MLhnY219t78q"},{"type":"ItemChoice","configuration":{"hint":"Choose two spells from any classes, including this one. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip.","choices":{"10":2,"14":2,"18":2},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"","subtype":"","level":"available"}},"value":{},"title":"Magical Secrets","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"EC1yNAV6khHilOhz"},{"type":"ScaleValue","configuration":{"identifier":"inspiration","type":"dice","distance":{"units":""},"scale":{"1":{"number":null,"faces":6},"5":{"number":null,"faces":8},"10":{"number":null,"faces":10},"15":{"number":null,"faces":12}}},"value":{},"title":"Bardic Inspiration Die","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"0Ybu5yMjplpTAHiE"},{"type":"ScaleValue","configuration":{"identifier":"song-of-rest","type":"dice","distance":{"units":""},"scale":{"2":{"number":null,"faces":6},"9":{"number":null,"faces":8},"13":{"number":null,"faces":10},"17":{"number":null,"faces":12}}},"value":{},"title":"Song of Rest Die","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"TK2RAm9EFQtVjDrU"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":2},"4":{"value":3},"10":{"value":4}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"ovKbtrhfIkYTuThu"},{"type":"ScaleValue","configuration":{"identifier":"spells-known","type":"number","distance":{"units":""},"scale":{"1":{"value":4},"2":{"value":5},"3":{"value":6},"4":{"value":7},"5":{"value":8},"6":{"value":9},"7":{"value":10},"8":{"value":11},"9":{"value":12},"10":{"value":14},"11":{"value":15},"13":{"value":16},"14":{"value":18},"15":{"value":19},"17":{"value":20},"18":{"value":22}}},"value":{},"title":"Spells Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"9FXWVh7OmbPr1iR9"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"sbzvEEntzYcE5JfN"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"adpq4VPJ5oVt8m06"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"jl333Hy4RIPs6J9p"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"Eweg6iXNJ6qIC6rY"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["dex","cha"],"skills":{"number":3,"choices":["acr","ani","arc","ath","dec","his","ins","itm","inv","med","nat","prc","per","prf","rel","slt","ste","sur"],"value":[]},"spellcasting":{"progression":"full","ability":"cha"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234279,"modifiedTime":1699386023408,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VkRQ7glQvTWWiOCS","name":"Ranger","type":"class","img":"icons/weapons/bows/shortbow-recurve-yellow.webp","system":{"description":{"value":"As a ranger, you gain the following class features.\nHit Points\nHit Dice: 1d10 per ranger levelHit Points at 1st Level: 10 + your Constitution modifierHit Points at Higher Levels: 1d10 (or 6) + your Constitution modifier per ranger level after 1st\nProficiencies\nArmor: Light armor, medium armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, DexteritySkills: Choose three from Animal Handling, Athletics, Insight, Investigation, Nature, Perception, Stealth, and Survival\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) scale mail or (b) leather armor\n(a) two shortswords or (b) two simple melee weapons\n(a) a dungeoneer's pack or (b) an explorer's pack\nA longbow and a quiver of 20 arrows\n\nRanger Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.4Vpj9vCOB37GtXk6]{Favored Enemy}, @Compendium[dnd5e.classfeatures.8fbZt2Qh7ZttwIan]{Natural Explorer}\n\n\n2nd\n+2\n@Compendium[dnd5e.classfeatures.nJA3ISVmyj3uPRVM]{Fighting Style}, @Compendium[dnd5e.classfeatures.u6xV3Ki3TXRrD7zg]{Spellcasting}\n\n\n3rd\n+2\n@Compendium[dnd5e.classfeatures.1dJHU48yNqn3lcfx]{Ranger Archetype}, @Compendium[dnd5e.classfeatures.kaHcUGiwi8AtfZIm]{Primeval Awareness}\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n5th\n+3\n2nd Level Spell Slot, @Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}\n\n\n6th\n+3\n@Compendium[dnd5e.classfeatures.4Vpj9vCOB37GtXk6]{Favored Enemy +1}, @Compendium[dnd5e.classfeatures.8fbZt2Qh7ZttwIan]{Natural Explorer improvements}\n\n\n7th\n+3\nRanger Archetype feature\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}, @Compendium[dnd5e.classfeatures.C5fzaOBc6HxyOWRn]{Land's Stride}\n\n\n9th\n+4\n3rd Level Spell Slot\n\n\n10th\n+4\n@Compendium[dnd5e.classfeatures.8fbZt2Qh7ZttwIan]{Natural Explorer improvement}, @Compendium[dnd5e.classfeatures.r0unvWK0lPsDthDx]{Hide in Plain Sight}\n\n\n11th\n+4\nRanger Archetype feature\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n4th Level Spell Slot\n\n\n14th\n+5\n@Compendium[dnd5e.classfeatures.4Vpj9vCOB37GtXk6]{Favored Enemy +1}, @Compendium[dnd5e.classfeatures.DhU2dWCNnX78TstR]{Vanish}\n\n\n15th\n+5\nRanger Archetype feature\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n5th Level Spell Slot\n\n\n18th\n+6\n@Compendium[dnd5e.classfeatures.QBVmY56RMQuh6C8h]{Feral Senses}\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\n@Compendium[dnd5e.classfeatures.3CaP1vFHVR8LgHjx]{Foe Slayer}\n\n\n\nRanger Archetypes\nA classic expression of the ranger ideal is the Hunter.\n@Compendium[dnd5e.subclasses.uqd2q6WjVfcsaaGb]{Hunter}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"ranger","levels":1,"hitDice":"d10","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"xBohtOEv3ukqmso2"},{"_id":"TYXdkZvuFRIksnaN","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:lgt","armor:med","armor:shl"],"choices":[]},"level":1,"title":"","value":{}},{"_id":"MPQe2gl78EIkJp4B","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim","weapon:mar"],"choices":[]},"level":1,"title":"","value":{}},{"_id":"mfYrk9GETHcNXCqs","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:str","saves:dex"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{}},{"_id":"ICgRpBmX0g8Y0ZzD","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":3,"pool":["skills:ani","skills:ath","skills:ins","skills:inv","skills:nat","skills:prc","skills:ste","skills:sur"]}]},"level":1,"title":"","classRestriction":"primary"},{"type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":1,"pool":["skills:ani","skills:ath","skills:ins","skills:inv","skills:nat","skills:prc","skills:ste","skills:sur"]}]},"level":1,"title":"","_id":"04X0Kohr5hwmeErb","classRestriction":"secondary","value":{}},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.4Vpj9vCOB37GtXk6","Compendium.dnd5e.classfeatures.8fbZt2Qh7ZttwIan"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"L0DHAlnRhNlttHtT"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.nJA3ISVmyj3uPRVM","Compendium.dnd5e.classfeatures.u6xV3Ki3TXRrD7zg"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"yCF7xTPbbbLvy1oi"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.1dJHU48yNqn3lcfx","Compendium.dnd5e.classfeatures.kaHcUGiwi8AtfZIm"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"uBfO0VT74Ubkb3Vq"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"tkm2YSp7v7CsyAv5"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.C5fzaOBc6HxyOWRn"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":8,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"J2W7bBur77wnP4aC"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.r0unvWK0lPsDthDx"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"DpZ2KsGzNrxyFJEQ"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.DhU2dWCNnX78TstR"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"9bNIObxgYslup65I"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.QBVmY56RMQuh6C8h"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"GOpw3X1MmQnMB4Xb"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.3CaP1vFHVR8LgHjx"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"CjPcaL8V6MErHufh"},{"type":"ItemChoice","configuration":{"hint":"Choose one of the following options. You can’t take a Fighting Style option more than once, even if you later get to choose again.","choices":{"2":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.8YwPFv3UAPjWVDNf","Compendium.dnd5e.classfeatures.zSlV0O2rQMdoq6pB","Compendium.dnd5e.classfeatures.hCop9uJrWhF1QPb4","Compendium.dnd5e.classfeatures.mHcSjcHJ8oZu3hkb"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"fightingStyle","level":""}},"value":{},"title":"Fighting Style","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"ih8WlydEZdg3rCPh"},{"type":"ScaleValue","configuration":{"identifier":"spells-known","type":"number","distance":{"units":""},"scale":{"2":{"value":2},"3":{"value":3},"5":{"value":4},"7":{"value":5},"9":{"value":6},"11":{"value":7},"13":{"value":8},"15":{"value":9},"17":{"value":10},"19":{"value":11}}},"value":{},"title":"Spells Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"FYvhuTSScSJTfYBM"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"bWqpb3Malvjjk8a6"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"Dr4RKCdMxlKWoHHV"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"zDIECkwBeV96xABF"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"5VCLK1OCRzEZxMy3"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["str","dex"],"skills":{"number":3,"choices":["ani","ath","ins","inv","nat","prc","ste","sur"],"value":[]},"spellcasting":{"progression":"half","ability":"wis"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234280,"modifiedTime":1698851429400,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gZiUvbXWLs0pOp0c","name":"Paladin","type":"class","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"As a paladin, you gain the following class features.\nHit Points\nHit Dice: 1d10 per paladin levelHit Points at 1st Level: 10 + your Constitution modifierHit Points at Higher Levels: 1d10 (or 6) + your Constitution modifier per paladin level after 1st\nProficiencies\nArmor: All armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two from Athletics, Insight, Intimidation, Medicine, Persuasion, and Religion\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a martial weapon and a shield or (b) two martial weapons\n(a) five javelins or (b) any simple melee weapon\n(a) a priest's pack or (b) an explorer's pack\nChain mail and a holy symbol\n\nPaladin Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.E8ozg8avUVOX9N7u]{Divine Sense}, @Compendium[dnd5e.classfeatures.OdrvL3afwLOPeuYZ]{Lay on Hands}\n\n\n2nd\n+2\n@UUID[Compendium.dnd5e.classfeatures.Ho7dVxBlOYFlfBHk]{Fighting Style}, @Compendium[dnd5e.classfeatures.ihoQHsmVZlyDbPhX]{Spellcasting}, @Compendium[dnd5e.classfeatures.ySMPQ6zNSlvkrl2f]{Divine Smite}\n\n\n3rd\n+2\n@Compendium[dnd5e.classfeatures.dY9yrqkyEDuF0CG2]{Divine Health}, @Compendium[dnd5e.classfeatures.olAqNsUTIef9x8xC]{Sacred Oath}, @UUID[Compendium.dnd5e.classfeatures.8M7uOPhbTxoxxJSo]{Channel Divinity}\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n5th\n+3\n2nd Level Spell Slot, @Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}\n\n\n6th\n+3\n@Compendium[dnd5e.classfeatures.carGDhkIdoduTC0I]{Aura of Protection}\n\n\n7th\n+3\nSacred Oath feature\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n9th\n+4\n3rd Level Spell Slot\n\n\n10th\n+4\n@Compendium[dnd5e.classfeatures.nahSkBO6LH4HkpaT]{Aura of Courage}\n\n\n11th\n+4\n@Compendium[dnd5e.classfeatures.FAk41RPCTcvCk6KI]{Improved Divine Smite}\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n4th Level Spell Slot\n\n\n14th\n+5\n@Compendium[dnd5e.classfeatures.U7BIPVPsptBmwsnV]{Cleansing Touch}\n\n\n15th\n+5\nSacred Oath feature\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n5th Level Spell Slot\n\n\n18th\n+6\nAura improvements\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\nSacred Oath feature\n\n\n\nSacred Oaths\nBecoming a paladin involves taking vows that commit the paladin to the cause of righteousness, an active path of fighting wickedness. The final oath, taken when he or she reaches 3rd level, is the culmination of all the paladin's training. Some characters with this class don't consider themselves true paladins until they have reached 3rd level and made this oath. For others, the actual swearing of the oath is a formality, an official stamp on what has always been true in the paladin's heart.\n@Compendium[dnd5e.subclasses.sZ86mbX8D5PfYuhl]{Oath of Devotion}\nBreaking Your Oath\nA paladin tries to hold to the highest standards of conduct, but even the most virtuous paladin is fallible. Sometimes the right path proves too demanding, sometimes a situation calls for the lesser of two evils, and sometimes the heat of emotion causes a paladin to transgress his or her oath.\nA paladin who has broken a vow typically seeks absolution from a cleric who shares his or her faith or from another paladin of the same order. The paladin might spend an allnight vigil in prayer as a sign of penitence, or undertake a fast or similar act of self-denial. After a rite of confession and forgiveness, the paladin starts fresh.\nIf a paladin willfully violates his or her oath and shows no sign of repentance, the consequences can be more serious. At the GM's discretion, an impenitent paladin might be forced to abandon this class and adopt another.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"paladin","levels":1,"hitDice":"d10","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"N4T7S8KXXZKskROj"},{"_id":"qfbfR422hrwjwWyd","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:lgt","armor:med","armor:hvy","armor:shl"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{}},{"_id":"2pEp37GeIGCBdiqU","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim","weapon:mar"],"choices":[]},"level":1,"title":"","value":{}},{"_id":"aIeuTIJdiKMaChi8","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:wis","saves:cha"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{}},{"_id":"ZZIWxV7EaHl6GVcu","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:ath","skills:ins","skills:itm","skills:med","skills:per","skills:rel"]}]},"level":1,"title":"","classRestriction":"primary","value":{}},{"type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:lgt","armor:med","armor:shl"],"choices":[]},"level":1,"title":"","_id":"qd6RxOGs50LR5Lea","classRestriction":"secondary","value":{}},{"_id":"LYiiMtwvVVXZs8yE","type":"Trait","configuration":{"hint":"The divine magic flowing through you makes you immune to disease.","mode":"default","allowReplacements":false,"grants":["ci:diseased"],"choices":[]},"level":3,"title":"Divine Health"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.E8ozg8avUVOX9N7u","Compendium.dnd5e.classfeatures.OdrvL3afwLOPeuYZ"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"HL6Kwpmrsz5yqmBK"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Ho7dVxBlOYFlfBHk","Compendium.dnd5e.classfeatures.ihoQHsmVZlyDbPhX","Compendium.dnd5e.classfeatures.ySMPQ6zNSlvkrl2f"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"RwqEtAP5aJqHIW5J"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.dY9yrqkyEDuF0CG2","Compendium.dnd5e.classfeatures.olAqNsUTIef9x8xC","Compendium.dnd5e.classfeatures.8M7uOPhbTxoxxJSo"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"ki8eEksoSjfOHDcF"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"WaoJQunO9O2pdC1g"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.carGDhkIdoduTC0I"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"Gs5c5ciErsG3NDyW"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.nahSkBO6LH4HkpaT"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"teLWeatpgzXs5uCc"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.FAk41RPCTcvCk6KI"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":11,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"BWhYgjLNVypoHyqZ"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.U7BIPVPsptBmwsnV"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"63s9ja0RR4UkfHCN"},{"type":"ItemChoice","configuration":{"hint":"Choose one of the following options. You can’t take a Fighting Style option more than once, even if you later get to choose again.","choices":{"2":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.zSlV0O2rQMdoq6pB","Compendium.dnd5e.classfeatures.hCop9uJrWhF1QPb4","Compendium.dnd5e.classfeatures.3Nc6u9pyStByuJsm","Compendium.dnd5e.classfeatures.06NVMYf58Z76O85O"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"fightingStyle","level":""}},"value":{},"title":"Fighting Style","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"GPzUDRFo5bfrhU1K"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"ASKyHbSBAKRIU6i3"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"iBK2dJf2hwv9vOBI"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"BI8DBqJZY8O9orOX"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"hKEbRRkEEfvA3ydq"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["wis","cha"],"skills":{"number":2,"choices":["ath","ins","itm","med","per","rel"],"value":[]},"spellcasting":{"progression":"half","ability":"cha"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234280,"modifiedTime":1699386117323,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"pvEzGSv71zBhaolc","name":"Barbarian","type":"class","img":"icons/skills/melee/hand-grip-sword-orange.webp","system":{"description":{"value":"As a barbarian, you gain the following class features.\nHit Points\nHit Dice: 1d12 per barbarian levelHit Points at 1st Level: 12 + your Constitution modifierHit Points at Higher Levels: 1d12 (or 7) + your Constitution modifier per barbarian level after 1st\nProficiencies\nArmor: Light armor, medium armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, ConstitutionSkills: Choose two from Animal Handling, Athletics, Intimidation, Nature, Perception, and Survival\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a greataxe or (b) any martial melee weapon\n(a) two handaxes or (b) any simple weapon\nAn explorer's pack and four javelins\n\nBarbarian Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\nRages\nRage Damage\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.VoR0SUrNX5EJVPIO]{Rage}, @Compendium[dnd5e.classfeatures.SZbsNbaxFFGwBpNK]{Unarmored Defense}\n2\n+2\n\n\n2nd\n+2\n@Compendium[dnd5e.classfeatures.SCVjqRdlZ9cvHVSR]{Reckless Attack}, @Compendium[dnd5e.classfeatures.vt31lWAULygEl7yk]{Danger Sense}\n2\n+2\n\n\n3rd\n+2\n@Compendium[dnd5e.classfeatures.TH1QAf6YNGSeBVjT]{Primal Path}\n3\n+2\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n3\n+2\n\n\n5th\n+3\n@Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}, @Compendium[dnd5e.classfeatures.Kl6zifJ5OmdHlOi2]{Fast Movement}\n3\n+2\n\n\n6th\n+3\nPath feature\n4\n+2\n\n\n7th\n+3\n@Compendium[dnd5e.classfeatures.NlXslw4yAqmKZWtN]{Feral Instinct}\n4\n+2\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n4\n+2\n\n\n9th\n+4\n@Compendium[dnd5e.classfeatures.L94gyvNpUhUe0rwh]{Brutal Critical (1 die)}\n4\n+3\n\n\n10th\n+4\nPath feature\n4\n+3\n\n\n11th\n+4\n@Compendium[dnd5e.classfeatures.FqfmbPgxiyrWzhYk]{Relentless Rage}\n4\n+3\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n5\n+3\n\n\n13th\n+5\n@Compendium[dnd5e.classfeatures.L94gyvNpUhUe0rwh]{Brutal Critical (2 dice)}\n5\n+3\n\n\n14th\n+5\nPath feature\n5\n+3\n\n\n15th\n+5\n@Compendium[dnd5e.classfeatures.l8tUhZ5Pecm9wz7I]{Persistent Rage}\n5\n+3\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n5\n+4\n\n\n17th\n+6\n@Compendium[dnd5e.classfeatures.L94gyvNpUhUe0rwh]{Brutal Critical (3 dice)}\n6\n+4\n\n\n18th\n+6\n@Compendium[dnd5e.classfeatures.Q1exex5ALteprrPo]{Indomitable Might}\n6\n+4\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n6\n+4\n\n\n20th\n+6\n@Compendium[dnd5e.classfeatures.jVU4AgqfrFaqgXns]{Primal Champion}\nUnlimited\n+4\n\n\n\nPrimal Paths\n@Compendium[dnd5e.subclasses.uGuDQX9Mz3oHNHkU]{Path of the Berserker}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"barbarian","levels":1,"hitDice":"d12","hitDiceUsed":0,"advancement":[{"_id":"5jn0ekktgccyvvpw","type":"HitPoints","configuration":{},"value":{},"title":""},{"_id":"fjwU0G5OtTZWOkib","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:lgt","armor:med","armor:shl"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{}},{"_id":"sFas4Tifj7zKgmkY","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim","weapon:mar"],"choices":[]},"level":1,"title":"","value":{}},{"_id":"CmX808i8HaWZ7VMx","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:str","saves:con"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{}},{"_id":"lD3JBViqmxFYu0kc","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:ani","skills:ath","skills:itm","skills:nat","skills:prc","skills:sur"]}]},"level":1,"title":"","classRestriction":"primary"},{"type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:shl"],"choices":[]},"level":1,"title":"","_id":"3ETNrLc8RQlHwNXP","classRestriction":"secondary","value":{}},{"_id":"amez6rlose3eoigo","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.VoR0SUrNX5EJVPIO","Compendium.dnd5e.classfeatures.SZbsNbaxFFGwBpNK"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features"},{"_id":"udl318k61boq0rnn","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.SCVjqRdlZ9cvHVSR","Compendium.dnd5e.classfeatures.vt31lWAULygEl7yk"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features"},{"_id":"8y2ey740kizr4jb6","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.TH1QAf6YNGSeBVjT"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features"},{"_id":"uoexdq8totskritb","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo","Compendium.dnd5e.classfeatures.Kl6zifJ5OmdHlOi2"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features"},{"_id":"w6ceiqibcmzpcuy8","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.NlXslw4yAqmKZWtN"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":7,"title":"Features"},{"_id":"ty9si22p6pfwb3ow","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.L94gyvNpUhUe0rwh"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":9,"title":"Features"},{"_id":"802xi5l50le3ntk8","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.FqfmbPgxiyrWzhYk"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":11,"title":"Features"},{"_id":"g9ut0x1ugm31gbhk","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.l8tUhZ5Pecm9wz7I"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":15,"title":"Features"},{"_id":"so18afasiyobkpxy","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Q1exex5ALteprrPo"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features"},{"_id":"9hvtrqbg7d7zwg07","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.jVU4AgqfrFaqgXns"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features"},{"_id":"62svnflxsuad7oar","type":"ScaleValue","configuration":{"identifier":"rages","type":"number","scale":{"1":{"value":2},"3":{"value":3},"6":{"value":4},"12":{"value":5},"17":{"value":6},"20":{"value":999}},"distance":{"units":""}},"value":{},"title":"Rages"},{"_id":"t42incolsbuqn2ec","type":"ScaleValue","configuration":{"identifier":"rage-damage","type":"number","scale":{"1":{"value":2},"9":{"value":3},"16":{"value":4}},"distance":{"units":""}},"value":{},"title":"Rage Damage"},{"_id":"y0kr48pnq5doebeb","type":"ScaleValue","configuration":{"identifier":"brutal-critical","type":"number","scale":{"9":{"value":1},"13":{"value":2},"17":{"value":3}},"distance":{"units":""}},"value":{},"title":"Brutal Critical Dice"},{"_id":"dZHMy3530RPCjzvD","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":""},{"_id":"dBMWU3h8MBO4PcEm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":""},{"_id":"nROeTbeO8vrGjqAp","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":""},{"_id":"prZMkvcCNoLvF4yB","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":""},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["str","con"],"skills":{"number":2,"choices":["ani","ath","itm","nat","prc","sur"],"value":[]},"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234281,"modifiedTime":1698851083985,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"tlwBnN8GmqJcTgub","name":"Cleric","type":"class","img":"icons/magic/life/ankh-gold-blue.webp","system":{"description":{"value":"As a cleric, you gain the following class features.\nHit Points\nHit Dice: 1d8 per cleric levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per cleric level after 1st\nProficiencies\nArmor: Light armor, medium armor, shieldsWeapons: Simple weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two from History, Insight, Medicine, Persuasion, and Religion\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a mace or (b) a warhammer (if proficient)\n(a) scale mail, (b) leather armor, or (c) chain mail (if proficient)\n(a) a light crossbow and 20 bolts or (b) any simple weapon\n(a) a priest's pack or (b) an explorer's pack\nA shield and a holy symbol\n\nCleric Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.v4gKwLhAq9vuqza7]{Spellcasting} , @Compendium[dnd5e.classfeatures.x637K2Icp2ZFM1TB]{Divine Domain}\n\n\n2nd\n+2\n@Compendium[dnd5e.classfeatures.YpiLQEKGalROn7iJ]{Channel Divinity (1/rest)}, Divine Domain feature\n\n\n3rd\n+2\n2nd Level Spell Slot\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n5th\n+3\n3rd Level Spell Slot, @Compendium[dnd5e.classfeatures.NMy4piwXIpLjYbRE]{Destroy Undead (CR 1/2)}\n\n\n6th\n+3\n@Compendium[dnd5e.classfeatures.YpiLQEKGalROn7iJ]{Channel Divinity (2/rest)}, Divine Domain feature\n\n\n7th\n+3\n4th Level Spell Slot\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{ASI}, @Compendium[dnd5e.classfeatures.NMy4piwXIpLjYbRE]{Destroy Undead (CR 1)}, Divine Domain feature\n\n\n9th\n+4\n5th Level Spell Slot\n\n\n10th\n+4\n@Compendium[dnd5e.classfeatures.eVXqHn0ojWrEuYGU]{Divine Intervention}\n\n\n11th\n+4\n6th Level Spell Slot, @Compendium[dnd5e.classfeatures.NMy4piwXIpLjYbRE]{Destroy Undead (CR 2)}\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n7th Level Spell Slot\n\n\n14th\n+5\n@Compendium[dnd5e.classfeatures.NMy4piwXIpLjYbRE]{Destroy Undead (CR 3)}\n\n\n15th\n+5\n8th Level Spell Slot\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n9th Level Spell Slot, @Compendium[dnd5e.classfeatures.NMy4piwXIpLjYbRE]{Destroy Undead (CR 4)}, Divine Domain feature\n\n\n18th\n+6\n@Compendium[dnd5e.classfeatures.YpiLQEKGalROn7iJ]{Channel Divinity (3/rest)}\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\n@Compendium[dnd5e.classfeatures.eVXqHn0ojWrEuYGU]{Divine Intervention (Automatic Success)}\n\n\n\nDivine Domains\n@Compendium[dnd5e.subclasses.H3RYLGqCiqm8BP3q]{Life Domain}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"cleric","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"XqASCKr26BUOObF5"},{"_id":"vLDkTMgod0IS4HJn","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:lgt","armor:med","armor:shl"],"choices":[]},"level":1,"title":"","value":{}},{"_id":"uyLXlhMnjMSHHdbs","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{}},{"_id":"bcFNu9fM4o5He4J7","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:wis","saves:cha"],"choices":[]},"level":1,"title":"","classRestriction":"primary"},{"_id":"6YQrE9NkjbvhfN8F","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:his","skills:ins","skills:med","skills:per","skills:rel"]}]},"level":1,"title":"","classRestriction":"primary","value":{}},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.v4gKwLhAq9vuqza7","Compendium.dnd5e.classfeatures.x637K2Icp2ZFM1TB"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"axeH6FmdvAfb3TnK"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.YpiLQEKGalROn7iJ","Compendium.dnd5e.classfeatures.r91UIgwFdHwkXdia"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"PpE7QUl3ZRdIwbSW"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.NMy4piwXIpLjYbRE"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"PwcMUZPMhGxn6JnJ"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.eVXqHn0ojWrEuYGU"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"RAGsl9ESVLpLfX5u"},{"type":"ScaleValue","configuration":{"identifier":"channel-divinity","type":"number","distance":{"units":""},"scale":{"2":{"value":1},"6":{"value":2},"18":{"value":3}}},"value":{},"title":"Channel Divinity Uses","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"oOvaOWkQdMJHHwzo"},{"type":"ScaleValue","configuration":{"identifier":"destroy-undead","type":"cr","distance":{"units":""},"scale":{"5":{"value":0.5},"8":{"value":1},"11":{"value":2},"14":{"value":3},"17":{"value":4}}},"value":{},"title":"Destroy Undead CR","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"bRWP2zsP33jeZcUY"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":3},"4":{"value":4},"10":{"value":5}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"b6vbDSfWTwxqyTke"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"PrfXQ3yQP9js943H"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"FLozwaTlMVqZKbaN"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"yplB3bqCjEXkNAAq"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"LoImJ16J7Sn1HXi2"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["wis","cha"],"skills":{"number":2,"choices":["his","ins","med","per","rel"],"value":[]},"spellcasting":{"progression":"full","ability":"wis"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234282,"modifiedTime":1698851264871,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"wZK2Q0rXB0AQo8h3","name":"Wizard","type":"class","img":"icons/magic/air/wind-tornado-wall-blue.webp","system":{"description":{"value":"As a wizard, you gain the following class features.Hit PointsHit Dice: 1d6 per wizard levelHit Points at 1st Level: 6 + your Constitution modifierHit Points at Higher Levels: 1d6 (or 4) + your Constitution modifier per wizard level after 1stProficienciesArmor: NoneWeapons: Daggers, darts, slings, quarterstaffs, light crossbowsTools: NoneSaving Throws: Intelligence, WisdomSkills: Choose two from Arcana, History, Insight, Investigation, Medicine, and ReligionEquipmentYou start with the following equipment, in addition to the equipment granted by your background:(a) a quarterstaff or (b) a dagger(a) a component pouch or (b) an arcane focus(a) a scholar's pack or (b) an explorer's packA spellbookWizard AdvancementLevelProficiency BonusFeatures1st+2@Compendium[dnd5e.classfeatures.gbNo5eVPaqr8IVKL]{Spellcasting}, @Compendium[dnd5e.classfeatures.e0uTcFPpgxjIyUW9]{Arcane Recovery}2nd+2@Compendium[dnd5e.classfeatures.AEWr9EMxy5gj4ZFT]{Arcane Tradition}3rd+22nd Level Spell Slot4th+2@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}5th+33rd Level Spell Slot6th+3Arcane Tradition feature7th+34th Level Spell Slot8th+3@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}9th+45th Level Spell Slot10th+4Arcane Tradition feature11th+46 Level Spell Slot12th+4@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}13th+57th Level Spell Slot14th+5Arcane Tradition feature15th+58th Level Spell Slot16th+5@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}17th+69 Level Spell Slot18th+6@Compendium[dnd5e.classfeatures.JfFfHTeIszx1hNRx]{Spell Mastery}19th+6@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}20th+6@Compendium[dnd5e.classfeatures.nUrZDi6QN1YjwAr6]{Signature Spells}Your SpellbookThe spells that you add to your spellbook as you gain levels reflect the arcane research you conduct on your own, as well as intellectual breakthroughs you have had about the nature of the multiverse. You might find other spells during your adventures. You could discover a spell recorded on a scroll in an evil wizard's chest, for example, or in a dusty tome in an ancient library.Copying a Spell into the Book. When you find a wizard spell of 1st level or higher, you can add it to your spellbook if it is of a spell level you can prepare and if you can spare the time to decipher and copy it.Copying that spell into your spellbook involves reproducing the basic form of the spell, then deciphering the unique system of notation used by the wizard who wrote it. You must practice the spell until you understand the sounds or gestures required, then transcribe it into your spellbook using your own notation.For each level of the spell, the process takes 2 hours and costs 50 gp. The cost represents material components you expend as you experiment with the spell to master it, as well as the fine inks you need to record it. Once you have spent this time and money, you can prepare the spell just like your other spells.Replacing the Book. You can copy a spell from your own spellbook into another book—for example, if you want to make a backup copy of your spellbook. This is just like copying a new spell into your spellbook, but faster and easier, since you understand your own notation and already know how to cast the spell. You need spend only 1 hour and 10 gp for each level of the copied spell.If you lose your spellbook, you can use the same procedure to transcribe the spells that you have prepared into a new spellbook. Filling out the remainder of your spellbook requires you to find new spells to do so, as normal. For this reason, many wizards keep backup spellbooks in a safe place.The Book's Appearance. Your spellbook is a unique compilation of spells, with its own decorative flourishes and margin notes. It might be a plain, functional leather volume that you received as a gift from your master, a finely bound gilt-edged tome you found in an ancient library, or even a loose collection of notes scrounged together after you lost your previous spellbook in a mishap.Arcane TraditionsThe study of wizardry is ancient, stretching back to the earliest mortal discoveries of magic. It is firmly established in fantasy gaming worlds, with various traditions dedicated to its complex study.The most common arcane traditions in the multiverse revolve around the schools of magic. Wizards through the ages have cataloged thousands of spells, grouping them into eight categories called schools. In some places, these traditions are literally schools. In other institutions, the schools are more like academic departments, with rival faculties competing for students and funding. Even wizards who train apprentices in the solitude of their own towers use the division of magic into schools as a learning device, since the spells of each school require mastery of different techniques.@Compendium[dnd5e.subclasses.Ye5f3FReEnuXfi0y]{School of Evocation}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"wizard","levels":1,"hitDice":"d6","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"J94h5oqcZsaxhaqz"},{"_id":"JXcSQmjdfaJeSjZ7","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim:dagger","weapon:sim:dart","weapon:sim:lightcrossbow","weapon:sim:quarterstaff","weapon:sim:sling"],"choices":[]},"level":1,"title":"","classRestriction":"primary"},{"_id":"r1DG0GF8L6SkLNvq","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:int","saves:wis"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{}},{"_id":"6blzmKC4EON0KM2e","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:arc","skills:his","skills:ins","skills:inv","skills:med","skills:rel"]}]},"level":1,"title":"","classRestriction":"primary","value":{}},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.gbNo5eVPaqr8IVKL","Compendium.dnd5e.classfeatures.e0uTcFPpgxjIyUW9"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"CTmwzlFgOyeE1L6K"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.AEWr9EMxy5gj4ZFT"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"AC4kN3RjttskWHUJ"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.JfFfHTeIszx1hNRx"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"0jnLhoNlk5qFB4QM"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.nUrZDi6QN1YjwAr6"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"ftN4NxMNvbBwYA0p"},{"type":"ItemChoice","configuration":{"hint":"Choose two 3rd-level wizard spells in your spellbook as your signature spells.","choices":{"20":2},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"atwill","uses":{"max":"1","per":"sr"}},"restriction":{"type":"","subtype":"","level":"3"}},"value":{},"title":"Signature Spells","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"jvTZfjedDhMCVGEn"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":3},"4":{"value":4},"10":{"value":5}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"r4NBaBhA20gUjJ56"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"cqHTAJF9gyolaBBq"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"lQO8njk1wKmUwP1N"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"cyEtKa5tG1NFuknx"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"ZSeVTprbNjLOwWzX"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["int","wis"],"skills":{"number":2,"choices":["arc","his","ins","inv","med","rel"],"value":[]},"spellcasting":{"progression":"full","ability":"int"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234283,"modifiedTime":1698851514621,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xEb8jmA5HlNs7xTF","name":"Rogue","type":"class","img":"icons/skills/melee/strike-sword-stabbed-brown.webp","system":{"description":{"value":"As a rogue, you have the following class features.\nHit Points\nHit Dice: 1d8 per rogue levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per rogue level after 1st\nProficiencies\nArmor: Light armorWeapons: Simple weapons, hand crossbows, longswords, rapiers, shortswordsTools: Thieves' toolsSaving Throws: Dexterity, IntelligenceSkills: Choose four from Acrobatics, Athletics, Deception, Insight, Intimidation, Investigation, Perception, Performance, Persuasion, Sleight of Hand, and Stealth\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a rapier or (b) a shortsword\n(a) a shortbow and quiver of 20 arrows or (b) a shortsword\n(a) a burglar's pack, (b) a dungeoneer's pack, or (c) an explorer's pack\n(a) Leather armor, two daggers, and thieves' tools\n\nRogue Advancement\n\n\n\nLevel\nProficiency Bonus\nSneak Attack\nFeatures\n\n\n\n\n1st\n+2\n1d6\n@Compendium[dnd5e.classfeatures.3sYPftQKnbbVnHrh]{Expertise}, @Compendium[dnd5e.classfeatures.DPN2Gfk8yi1Z5wp7]{Sneak Attack}, @Compendium[dnd5e.classfeatures.ohwfuwnvuoBWlSQr]{Thieves' Cant}\n\n\n2nd\n+2\n1d6\n@Compendium[dnd5e.classfeatures.01pcLg6PRu5zGrsb]{Cunning Action}\n\n\n3rd\n+2\n2d6\n@Compendium[dnd5e.classfeatures.80USV8ZFPIahpLd0]{Roguish Archetype}\n\n\n4th\n+2\n2d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n5th\n+3\n3d6\n@Compendium[dnd5e.classfeatures.Mm64SKAHJWYecgXS]{Uncanny Dodge}\n\n\n6th\n+3\n3d6\n@Compendium[dnd5e.classfeatures.3sYPftQKnbbVnHrh]{Expertise improvement}\n\n\n7th\n+3\n4d6\n@Compendium[dnd5e.classfeatures.a4P4DNMmH8CqSNkC]{Evasion}\n\n\n8th\n+3\n4d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n9th\n+4\n5d6\nRoguish Archetype feature\n\n\n10th\n+4\n5d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n11th\n+4\n6d6\n@Compendium[dnd5e.classfeatures.YN9xm6MCvse4Y60u]{Reliable Talent}\n\n\n12th\n+4\n6d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n13th\n+5\n7d6\nRoguish Archetype feature\n\n\n14th\n+5\n7d6\n@Compendium[dnd5e.classfeatures.fjsBk7zxoAbLf8ZI]{Blindsense}\n\n\n15th\n+5\n8d6\n@Compendium[dnd5e.classfeatures.V4pwFxlwHtNeB4w9]{Slippery Mind}\n\n\n16th\n+5\n8d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n17th\n+6\n9d6\nRoguish Archetype feature\n\n\n18th\n+6\n9d6\n@Compendium[dnd5e.classfeatures.L7nJSRosos8sHJH9]{Elusive}\n\n\n19th\n+6\n10d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n20th\n+6\n10d6\n@Compendium[dnd5e.classfeatures.rQhWDaMHMn7iU4f2]{Stroke of Luck}\n\n\n\nRoguish Archetypes\nRogues have many features in common, including their emphasis on perfecting their skills, their precise and deadly approach to combat, and their increasingly quick reflexes. But different rogues steer those talents in varying directions, embodied by the rogue archetypes. Your choice of archetype is a reflection of your focus—not necessarily an indication of your chosen profession, but a description of your preferred techniques.\n@Compendium[dnd5e.subclasses.k8iuefRorWOjb9gR]{Thief}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"rogue","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"WMbkpELkLBvDaEsL"},{"_id":"OdvmWcuFdpmQa1R9","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:lgt"],"choices":[]},"level":1,"title":"","value":{}},{"_id":"IAuJ7LQGV2HvMXWB","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim","weapon:mar:handcrossbow","weapon:mar:longsword","weapon:mar:rapier","weapon:mar:shortsword"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{}},{"_id":"ZfLkT5c0hxOmdyti","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["tool:thief"],"choices":[]},"level":1,"title":"","value":{}},{"_id":"ejtwT3eAwBpgvtcw","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:dex","saves:int"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{}},{"_id":"rKux16jqNCPEtyDL","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":4,"pool":["skills:acr","skills:ath","skills:dec","skills:ins","skills:itm","skills:inv","skills:prc","skills:prf","skills:per","skills:slt","skills:ste"]}]},"level":1,"title":"","classRestriction":"primary","value":{}},{"_id":"TDHYngxGqDHllgzw","type":"Trait","configuration":{"hint":"","mode":"expertise","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["tool:thief","skills:*"]}]},"level":1,"title":"Expertise","value":{}},{"type":"Trait","configuration":{"hint":"","mode":"expertise","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:*","tool:thief"]}]},"level":6,"title":"Expertise","_id":"Iozyk39gsM4Kecex","value":{}},{"type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":1,"pool":["skills:acr","skills:ath","skills:dec","skills:ins","skills:itm","skills:inv","skills:prc","skills:prf","skills:per","skills:slt","skills:ste"]}]},"level":1,"title":"","_id":"CYYQSaGgmuHG7i6z","classRestriction":"secondary","value":{}},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.3sYPftQKnbbVnHrh","Compendium.dnd5e.classfeatures.DPN2Gfk8yi1Z5wp7","Compendium.dnd5e.classfeatures.ohwfuwnvuoBWlSQr"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"13XHsx4Z3vQ2XYkJ"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.01pcLg6PRu5zGrsb"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"5crdJzGJRQIVhbyr"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.80USV8ZFPIahpLd0"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"9F1ZUcRqNsBCOFNX"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Mm64SKAHJWYecgXS"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"PvQXh3OhvuLhjVoo"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.a4P4DNMmH8CqSNkC"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":7,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"X8G2PrPxOrfWQevi"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.YN9xm6MCvse4Y60u"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":11,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"MqV3BlQkAZycZ4Ue"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.fjsBk7zxoAbLf8ZI"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"sI4nacIwT4B8Y7mb"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.V4pwFxlwHtNeB4w9"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":15,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"mugszpD8eVZ2jybU"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.L7nJSRosos8sHJH9"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"EOVFTUpweDErdpSz"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.rQhWDaMHMn7iU4f2"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"GVuwdOHDEDfQX9cl"},{"type":"ScaleValue","configuration":{"identifier":"sneak-attack","type":"dice","distance":{"units":""},"scale":{"1":{"number":1,"faces":6},"3":{"number":2,"faces":6},"5":{"number":3,"faces":6},"7":{"number":4,"faces":6},"9":{"number":5,"faces":6},"11":{"number":6,"faces":6},"13":{"number":7,"faces":6},"15":{"number":8,"faces":6},"17":{"number":9,"faces":6},"19":{"number":10,"faces":6}}},"value":{},"title":"Sneak Attack","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"81nHtANt6Ffg9M4V"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"smghqQkObY4OOg30"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"WFAAUfKJA9QR46Bw"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"ahuQ3gMqz6sCza0m"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"iVq9vmwTow7KielM"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":19,"title":""},{"_id":"WhAioX7KT2ZULDHU","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":10,"title":""},{"_id":"3GyyG2fRAwPbKK7n","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:cant"],"choices":[]},"level":1,"title":""}],"spellcasting":{"progression":"none","ability":""},"saves":["dex","int"],"skills":{"number":4,"choices":["acr","ath","dec","ins","itm","inv","per","prf","prc","slt","ste"],"value":[]}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234284,"modifiedTime":1699988274467,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ygVYgPbJkaH0tH1N","name":"Druid","type":"class","img":"icons/creatures/mammals/elk-moose-marked-green.webp","system":{"description":{"value":"As a druid, you gain the following class features.Hit PointsHit Dice: 1d8 per druid levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per druid level after 1stProficienciesArmor: Light armor, medium armor, shields (druids will not wear armor or use shields made of metal)Weapons: Clubs, daggers, darts, javelins, maces, quarterstaffs, scimitars, sickles, slings, spearsTools: Herbalism kitSaving Throws: Intelligence, WisdomSkills: Choose two from Arcana, Animal Handling, Insight, Medicine, Nature, Perception, Religion, and SurvivalEquipmentYou start with the following equipment, in addition to the equipment granted by your background:(a) a wooden shield or (b) any simple weapon(a) a scimitar or (b) any simple melee weaponLeather armor, an explorer's pack, and a druidic focusDruid AdvancementLevelProficiency BonusFeatures1st+2@Compendium[dnd5e.classfeatures.LzJ5ayHt0OlSVGxi]{Druidic}, @Compendium[dnd5e.classfeatures.i6tPm3FNK13Ftc9v]{Spellcasting}2nd+2@Compendium[dnd5e.classfeatures.swK0r5TOIxredxWS]{Wild Shape (Max CR ¼)}, @Compendium[dnd5e.classfeatures.u6Du2P9s81SWuGbi]{Druid Circle}3rd+22nd Level Spell Slot4th+2@Compendium[dnd5e.classfeatures.swK0r5TOIxredxWS]{Wild Shape (Max CR ½)}, @Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}5th+33rd Level Spell Slot6th+3Druid Circle feature7th+34th Level Spell Slot8th+3@Compendium[dnd5e.classfeatures.swK0r5TOIxredxWS]{Wild Shape (Max CR 1)}, @Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}9th+45th Level Spell Slot10th+4Druid Circle feature11th+46th Level Spell Slot12th+4@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}13th+57th Level Spell Slot14th+5Druid Circle feature15th+58th Level Spell Slot16th+5@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}17th+69th Level Spell Slot18th+6@Compendium[dnd5e.classfeatures.cVDEQo0ow1WJT7Wl]{Timeless Body}, @Compendium[dnd5e.classfeatures.xvgPu1O57DgXCM86]{Beast Spells}19th+6@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}20th+6@Compendium[dnd5e.classfeatures.ip4bvmGoz3qkoqes]{Archdruid}Sacred Plants and WoodA druid holds certain plants to be sacred, particularly alder, ash, birch, elder, hazel, holly, juniper, mistletoe, oak, rowan, willow, and yew. Druids often use such plants as part of a spellcasting focus, incorporating lengths of oak or yew or sprigs of mistletoe.Similarly, a druid uses such woods to make other objects, such as weapons and shields. Yew is associated with death and rebirth, so weapon handles for scimitars or sickles might be fashioned from it. Ash is associated with life and oak with strength. These woods make excellent hafts or whole weapons, such as clubs or quarterstaffs, as well as shields. Alder is associated with air, and it might be used for thrown weapons, such as darts or javelins.Druids from regions that lack the plants described here have chosen other plants to take on similar uses. For instance, a druid of a desert region might value the yucca tree and cactus plants.Druids and the GodsSome druids venerate the forces of nature themselves, but most druids are devoted to one of the many nature deities worshiped in the multiverse (the lists of gods in @UUID[Compendium.dnd5e.rules.udVPA9JW5wy5t3G5]{Appendix B} include many such deities). The worship of these deities is often considered a more ancient tradition than the faiths of clerics and urbanized peoples.Druid Circles@Compendium[dnd5e.subclasses.4Ae2SPZRXEVbVs0M]{Circle of the Land}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"druid","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"UQN1QAt9gJWSbjhF"},{"_id":"GsMQJqy3R8DVF485","type":"Trait","configuration":{"hint":"Light Armor, Medium Armor, & Shields (druids will not wear armor or use shields made of metal)","mode":"default","allowReplacements":false,"grants":["armor:lgt","armor:med","armor:shl"],"choices":[]},"level":1,"title":"","value":{}},{"_id":"dK0oEtM8ovrLJxi3","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim:club","weapon:sim:dagger","weapon:sim:dart","weapon:sim:javelin","weapon:sim:mace","weapon:sim:quarterstaff","weapon:sim:sickle","weapon:sim:spear","weapon:sim:sling","weapon:mar:scimitar"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{}},{"_id":"tSywlKq0aE3GYMmi","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["tool:herb"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{}},{"_id":"xZ55SColbUbJOW2i","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:int","saves:wis"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{}},{"_id":"bN13f0XX9ZVaUiaC","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:ani","skills:arc","skills:ins","skills:med","skills:nat","skills:prc","skills:rel","skills:sur"]}]},"level":1,"title":"","classRestriction":"primary","value":{}},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.LzJ5ayHt0OlSVGxi","Compendium.dnd5e.classfeatures.i6tPm3FNK13Ftc9v"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"pkkBT3JrxyLuTmwm"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.swK0r5TOIxredxWS","Compendium.dnd5e.classfeatures.u6Du2P9s81SWuGbi"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"kDrm5stUR4Vp6oE3"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.cVDEQo0ow1WJT7Wl","Compendium.dnd5e.classfeatures.xvgPu1O57DgXCM86"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"IRKvBsuqs6C3ktQu"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ip4bvmGoz3qkoqes"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"UpHHo8cfTCVk92Th"},{"type":"ScaleValue","configuration":{"identifier":"wild-shape","type":"cr","distance":{"units":""},"scale":{"2":{"value":0.25},"4":{"value":0.5},"8":{"value":1}}},"value":{},"title":"Wild Shape CR","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"eX43MTPVUV9VB0dK"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":2},"4":{"value":3},"10":{"value":4}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"Gfzu57bEFMsekg7v"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"2T62G1BtLjN7m0D9"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"uXaQWuJioxGLKVfy"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"GiktwdfAHfCAEXzm"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"9QF2H24Ez8ZdH42N"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":19,"title":""},{"_id":"miieZ5i2DxMvyWKG","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:druidic"],"choices":[]},"level":1,"title":""}],"spellcasting":{"progression":"full","ability":"wis"},"saves":["int","wis"],"skills":{"number":2,"choices":["arc","ani","ins","med","nat","prc","rel","sur"],"value":[]}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234284,"modifiedTime":1699988244829,"lastModifiedBy":"dnd5ebuilder0000"}} diff --git a/packs/classfeatures.db b/packs/classfeatures.db index 1e7d695508..488161d38e 100644 --- a/packs/classfeatures.db +++ b/packs/classfeatures.db @@ -1,235 +1,235 @@ -{"_id":"01pcLg6PRu5zGrsb","name":"Cunning Action","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 2nd level, your quick thinking and agility allow you to move and act quickly. You can take a bonus action on each of your turns in combat. This action can be used only to take the Dash, Disengage, or Hide action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/hypnosis-mesmerism-watch.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234318,"modifiedTime":1672334332370,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"06NVMYf58Z76O85O","name":"Fighting Style: Protection","type":"feat","img":"icons/magic/defensive/shield-barrier-deflect-gold.webp","system":{"description":{"value":"When a creature you can see attacks a target other than you that is within 5 feet of you, you can use your reaction to impose disadvantage on the attack roll. You must be wielding a shield.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":"Must be wearing a shield."},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"fightingStyle"},"requirements":"Fighter 1, Champion 10, Paladin 2","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234319,"modifiedTime":1672334618877,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"0C04rwyvoknvFYiy","name":"Eldritch Master","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 20th level, you can draw on your inner reserve of mystical power while entreating your patron to regain expended spell slots. You can spend 1 minute entreating your patron for aid to regain all your expended spell slots from your Pact Magic feature. Once you regain spell slots with this feature, you must finish a long rest before you can do so again.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Warlock 20","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/lightning/orb-ball-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234320,"modifiedTime":1672334475616,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"0Jgf8fYY2ExwgQpN","name":"Mindless Rage","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 6th level, you can't be charmed or frightened while raging. If you are charmed or frightened when you enter your @Compendium[dnd5e.classfeatures.VoR0SUrNX5EJVPIO]{Rage}, the effect is suspended for the duration of the rage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Path of the Berserker 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/toxins/cup-goblet-poisoned-spilled.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234321,"modifiedTime":1672334939494,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"10b6z2W1txNkrGP7","name":"Ki","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 2nd level, your training allows you to harness the mystic energy of ki. Your access to this energy is represented by a number of ki points. Your monk level equals the number of ki points you have, so a 2nd level monk has 2 ki points, a 16th level monk has 16.You can spend these points to fuel various ki features. You start knowing three such features: @Compendium[dnd5e.classfeatures.5MwNlVZK7m6VolOH]{Flurry of Blows}, @Compendium[dnd5e.classfeatures.TDglPcxIVEzvVSgK]{Patient Defense}, and @Compendium[dnd5e.classfeatures.yrSFIGTaQOH2PFRI]{Step of the Wind}. You learn more ki features as you gain levels in this class.When you spend a ki point, it is unavailable until you finish a short or long rest, at the end of which you draw all of your expended ki back into yourself. You must spend at least 30 minutes of the rest meditating to regain your ki points.Some of your ki features require your target to make a saving throw to resist the feature's effects. The saving throw DC is calculated as follows:Ki save DC = 8 + your proficiency bonus + your Wisdom modifierFoundry NoteUse this to track all the various uses of ki for the monk.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":2,"max":"@classes.monk.levels","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 2","recharge":{"value":null,"charged":false}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-beam-impact-silhouette.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234321,"modifiedTime":1672334904331,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"1DY8w3CXeD7PHDXF","name":"Multiattack: Whirlwind Attack","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can use your action to make a melee attack against any number of creatures within 5 feet of you, with a separate attack roll for each target.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"multiattack"},"requirements":"Hunter 11","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/spear-tips-quintuple-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234322,"modifiedTime":1672334926871,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"1dJHU48yNqn3lcfx","name":"Ranger Archetype","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 3rd level, you choose an archetype that you strive to emulate, such as the Hunter. Your choice grants you features at 3rd level and again at 7th, 11th, and 15th level.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/root-vine-hand-strike.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234322,"modifiedTime":1672335063369,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"2fyuw7MiCnocDeAU","name":"Invocation: Agonizing Blast","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you cast @Compendium[dnd5e.spells.Z9p1vezIn95jw1Yw]{Eldritch Blast}, add your Charisma modifier to the damage it deals on a hit.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2, Eldritch Blast","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/acid/projectile-stream-bubbles.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234323,"modifiedTime":1672334819802,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3647zjKSE9zFwOXc","name":"Dragon Wings","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 14th level, you gain the ability to sprout a pair of dragon wings from your back, gaining a flying speed equal to your current speed. You can create these wings as a bonus action on your turn. They last until you dismiss them as a bonus action on your turn.You can't manifest your wings while wearing armor unless the armor is made to accommodate them, and clothing not made to accommodate your wings might be destroyed when you manifest them.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Draconic Bloodline 14","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/wing-batlike-white-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234324,"modifiedTime":1672334487367,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3CaP1vFHVR8LgHjx","name":"Foe Slayer","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 20th level, you become an unparalleled hunter of your enemies. Once on each of your turns, you can add your Wisdom modifier to the attack roll or the damage roll of an attack you make against one of your favored enemies. You can choose to use this feature before or after the roll, but before any effects of the roll are applied.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@mod",""]],"versatile":""},"formula":"@mod","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 20","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/projectile-arrow-fire-red-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234324,"modifiedTime":1672334609382,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3FB25qKxmkmxcxuC","name":"Land's Stride (Circle of the Land)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 6th level, moving through nonmagical difficult terrain costs you no extra movement. You can also pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard.In addition, you have advantage on saving throws against plants that are magically created or manipulated to impede movement, such those created by the @Compendium[dnd5e.spells.gMrWeG8fMDPRFiVe]{Entangle} spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Circle of the Land 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/root-vine-entangle-foot-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234325,"modifiedTime":1672334865588,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3Nc6u9pyStByuJsm","name":"Fighting Style: Great Weapon Fighting","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you roll a 1 or 2 on a damage die for an attack you make with a melee weapon that you are wielding with two hands, you can reroll the die and must use the new roll, even if the new roll is a 1 or a 2. The weapon must have the two-handed or versatile property for you to gain this benefit.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"fightingStyle"},"requirements":"Fighter 1, Champion 10, Paladin 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/strike-sword-steel-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234325,"modifiedTime":1672334623705,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3VDZGs5Ug3hIE322","name":"Font of Inspiration","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning when you reach 5th level, you regain all of your expended uses of @Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiraton} when you finish a short or long rest.Foundry NoteBardic Inspiration is set to long rest recovery by default. Please edit to short rest upon reaching this level.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 5","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/sihouette-hold-beam-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234326,"modifiedTime":1672334606443,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3jwFt3hSqDswBlOH","name":"Ki: Empty Body","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 18th level, you can use your action to spend 4 ki points to become invisible for 1 minute. During that time, you also have resistance to all damage but force damage.\nAdditionally, you can spend 8 ki points to cast the @Compendium[dnd5e.spells.TIoadMIsUKD4edXi]{Astral Projection} spell, without needing material components. When you do so, you can't take any other creatures with you.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":"Also requires 4 ki points (or 8 for Astral Projection)."},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"ki"},"requirements":"Monk 18","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/silhouette-stealth-shadow.webp","effects":[{"_id":"4dvYtqvbQGDsVi51","flags":{},"changes":[{"key":"system.traits.dr.value","value":"fire","mode":2,"priority":null},{"key":"system.traits.dr.value","value":"cold","mode":2,"priority":null},{"key":"system.traits.dr.value","value":"acid","mode":2,"priority":null},{"key":"system.traits.dr.value","value":"bludgeoning","mode":2,"priority":null},{"key":"system.traits.dr.value","value":"lightning","mode":2,"priority":null},{"key":"system.traits.dr.value","value":"necrotic","mode":2,"priority":null},{"key":"system.traits.dr.value","value":"piercing","mode":2,"priority":null},{"key":"system.traits.dr.value","value":"psychic","mode":2,"priority":null},{"key":"system.traits.dr.value","value":"radiant","mode":2,"priority":null},{"key":"system.traits.dr.value","value":"slashing","mode":2,"priority":null},{"key":"system.traits.dr.value","value":"thunder","mode":2,"priority":null},{"key":"system.traits.dr.value","value":"poison","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":60,"rounds":10,"turns":null,"startRound":null,"startTurn":null,"combat":null},"icon":"icons/magic/perception/silhouette-stealth-shadow.webp","label":"Ki: Empty Body","origin":"Item.xqRleciuHDZlYCl6","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234326,"modifiedTime":1672334894583,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3sN91lT1R3oxcDKd","name":"Invocation: Devil's Sight","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can see normally in darkness, both magical and nonmagical, to a distance of 120 feet.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/silhouette-stealth-shadow.webp","effects":[{"_id":"3JYlSTG0olbm1FQC","changes":[{"key":"system.attributes.senses.darkvision","mode":4,"value":"120","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/perception/silhouette-stealth-shadow.webp","label":"Devil's Sight","origin":"Item.3sN91lT1R3oxcDKd","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234327,"modifiedTime":1672334781645,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3sYPftQKnbbVnHrh","name":"Expertise (Rogue)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 1st level, choose two of your skill proficiencies, or one of your skill proficiencies and your proficiency with thieves' tools. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies.At 6th level, you can choose two more of your proficiencies (in skills or with thieves' tools) to gain this benefit.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/targeting/target-glowing-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234328,"modifiedTime":1672334544722,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"4IHsIcBhAVDt8QjY","name":"Expanded Spell List","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The Fiend lets you choose from an expanded list of spells when you learn a warlock spell. The following spells are added to the warlock spell list for you.\nFiend Expanded Spells\n\n\nSpell Level\nSpells\n\n\n\n\n1st\n@Compendium[dnd5e.spells.5SuJewoa1CRWaj1F]{Burning Hands}, @Compendium[dnd5e.spells.arzCrMRgcNiQuh43]{Command}\n\n\n2nd\n@Compendium[dnd5e.spells.zwGsAv6kmwzYGhh3]{Blindness/Deafness}, @Compendium[dnd5e.spells.7u2obDvuvtZBkTfq]{Scorching Ray}\n\n\n3rd\n@Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball}, @Compendium[dnd5e.spells.TwlD4PLcltv7Xh7j]{Stinking Cloud}\n\n\n4th\n@Compendium[dnd5e.spells.avD5XUtkBPQQR97c]{Fire Shield}, @Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire}\n\n\n5th\n@Compendium[dnd5e.spells.5e1xTohkzqFqbYH4]{Flame Strike}, @Compendium[dnd5e.spells.SLxA9QhrggTz0taU]{Hallow}\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"The Fiend 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/encase-creature-monster-hold.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234328,"modifiedTime":1672334457290,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"4UOgxzr83vFuUash","name":"Supreme Healing","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 17th level, when you would normally roll one or more dice to restore hit points with a spell, you instead use the highest number possible for each die. For example, instead of restoring 2d6 hit points to a creature, you restore 12.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Life Domain 17","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/life/cross-worn-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234330,"modifiedTime":1672335344375,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"4Vpj9vCOB37GtXk6","name":"Favored Enemy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 1st level, you have significant experience studying, tracking, hunting, and even talking to a certain type of enemy.Choose a type of favored enemy: aberrations, beasts, celestials, constructs, dragons, elementals, fey, fiends, giants, monstrosities, oozes, plants, or undead. Alternatively, you can select two races of humanoid (such as gnolls and orcs) as favored enemies.You have advantage on Wisdom (Survival) checks to track your favored enemies, as well as on Intelligence checks to recall information about them.When you gain this feature, you also learn one language of your choice that is spoken by your favored enemies, if they speak one at all.You choose one additional favored enemy, as well as an associated language, at 6th and 14th level. As you gain levels, your choices should reflect the types of monsters you have encountered on your adventures.Foundry NoteIf you wish, manually edit this entry and make a note of your choices here:1st level6th level14th level","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/dragon-breath-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234330,"modifiedTime":1672334531486,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5MwNlVZK7m6VolOH","name":"Ki: Flurry of Blows","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Immediately after you take the Attack action on your turn, you can spend 1 ki point to make two unarmed strikes as a bonus action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":"Comes immediately after taking the Attack action."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"ki"},"requirements":"Monk 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234331,"modifiedTime":1672334890974,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5gx1O0sxK08awEO9","name":"Hunter's Prey: Colossus Slayer","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your tenacity can wear down the most potent foes. When you hit a creature with a weapon attack, the creature takes an extra 1d8 damage if it's below its hit point maximum. You can deal this extra damage only once per turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"huntersPrey"},"requirements":"Hunter 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/magical/construct-iron-stomping-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234332,"modifiedTime":1672334575837,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5zPmHPQUne7RDfaU","name":"Cutting Words","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Also at 3rd level, you learn how to use your wit to distract, confuse, and otherwise sap the confidence and competence of others.When a creature that you can see within 60 feet of you makes an attack roll, an ability check, or a damage roll, you can use your reaction to expend one of your uses of @Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiraton}, rolling a Bardic Inspiration die and subtracting the number rolled from the creature's roll.You can choose to use this feature after the creature makes its roll, but before the GM determines whether the attack roll or ability check succeeds or fails, or before the creature deals its damage. The creature is immune if it can't hear you or if it's immune to being charmed.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":"Target must be able to hear you and not be immune to being Charmed."},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"College of Lore 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/wounds/injury-face-impact-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234332,"modifiedTime":1672334438915,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"61kXR1sniXHjvN17","name":"Invocation: Beast Speech","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.aL1F8fvYLtNzUbKu]{Speak with Animals} at will, without expending a spell slot.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/elk-moose-marked-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234333,"modifiedTime":1672334807910,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"653ZHbNcmm7ZGXbw","name":"Indomitable","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can reroll a saving throw that you fail. If you do so, you must use the new roll, and you can't use this feature again until you finish a long rest.You can use this feature twice between long rests starting at 13th level and three times between long rests starting at 17th level.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"@scale.fighter.indomitable","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Fighter 9","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/flame-burning-fist-strike.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234333,"modifiedTime":1672334829021,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"65ReXU4ZWqcSs3Cm","name":"Invocation: Gaze of Two Minds","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can use your action to touch a willing humanoid and perceive through its senses until the end of your next turn. As long as the creature is on the same plane of existence as you, you can use your action on subsequent turns to maintain this connection, extending the duration until the end of your next turn. While perceiving through the other creature's senses, you benefit from any special senses possessed by that creature, and you are blinded and deafened to your own surroundings.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":"Target must be a willing humanoid."},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/third-eye-blue-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234334,"modifiedTime":1672334753800,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"68bYIOvx6rIqnlOW","name":"Bonus Proficiency (Life Domain)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you choose this domain at 1st level, you gain proficiency with heavy armor.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Life Domain 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/equipment/chest/breastplate-layered-steel.webp","effects":[{"_id":"Dk95lqbXXCUlefZW","changes":[{"key":"system.traits.armorProf.value","mode":2,"value":"hvy","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/equipment/chest/breastplate-layered-steel.webp","label":"Heavy Armor Proficiency","origin":"Item.68bYIOvx6rIqnlOW","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234335,"modifiedTime":1672334368160,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"6VBXkjjBgjSpNElh","name":"Sculpt Spells","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 2nd level, you can create pockets of relative safety within the effects of your evocation spells. When you cast an evocation spell that affects other creatures that you can see, you can choose a number of them equal to 1 + the spell's level. The chosen creatures automatically succeed on their saving throws against the spell, and they take no damage if they would normally take half damage on a successful save.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"School of Evocation 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/slimes/slime-movement-dripping-pseudopods-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234335,"modifiedTime":1672335231938,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7D2EkLdISwShEDlN","name":"Ki: Diamond Soul","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 14th level, your mastery of ki grants you proficiency in all saving throws. Additionally, whenever you make a saving throw and fail, you can spend 1 ki point to reroll it and take the second result.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"ki"},"requirements":"Monk 14","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/projectile-icecicle.webp","effects":[{"_id":"v6jhyPoAYRIIXBG1","changes":[{"key":"flags.dnd5e.diamondSoul","mode":5,"value":"true","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/water/projectile-icecicle.webp","label":"Diamond Soul","origin":"Item.PRME1bZBvnc2E0iH","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234336,"modifiedTime":1672334898763,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7O85kj6uDEG5NzUE","name":"Empowered Evocation","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 10th level, you can add your Intelligence modifier to one damage roll of any wizard evocation spell you cast.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"int","actionType":"other","attackBonus":"","chatFlavor":"The bonus to one damage roll:","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@mod",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"School of Evocation 10","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/explosion-mushroom-nuke-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234336,"modifiedTime":1672334465953,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7flZKruSSu6dHg6D","name":"Ki-Empowered Strikes","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 6th level, your unarmed strikes count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/flame-burning-fist-strike.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234337,"modifiedTime":1672334901681,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7pyZjz5vlUWV01qQ","name":"Superior Hunter's Defense: Uncanny Dodge","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When an attacker that you can see hits you with an attack, you can use your reaction to halve the attack's damage against you.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":"Attacker must be visible."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"superiorHuntersDefense"},"requirements":"Hunter 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/air-wave-gust-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234337,"modifiedTime":1672335261810,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7uzJ2JkmsdRGLra3","name":"Evocation Savant","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning when you select this school at 2nd level, the gold and time you must spend to copy an evocation spell into your spellbook is halved.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"School of Evocation 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/barrier-wall-explosion-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234338,"modifiedTime":1672334460025,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7zlTRRXT1vWSBGjX","name":"Multiattack","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 11th level, you gain one of the following features of your choice.@UUID[Compendium.dnd5e.classfeatures.l7W6JB9yWLLLtQKP]{Volley}@UUID[Compendium.dnd5e.classfeatures.1DY8w3CXeD7PHDXF]{Whirlwind Attack}","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Hunter 11","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/skull-trio-badge-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234339,"modifiedTime":1674435899644,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"80USV8ZFPIahpLd0","name":"Roguish Archetype","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 3rd level, you choose an archetype that you emulate in the exercise of your rogue abilities, such as Thief. Your archetype choice grants you features at 3rd level and then again at 9th, 13th, and 17th level.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/silhouette-robe-evil-power.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234339,"modifiedTime":1672335237536,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8M7uOPhbTxoxxJSo","name":"Channel Divinity (Paladin)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your oath allows you to channel divine energy to fuel magical effects. Each Channel Divinity option provided by your oath explains how to use it.When you use your Channel Divinity, you choose which option to use. You must then finish a short or long rest to use your Channel Divinity again.Some Channel Divinity effects require saving throws. When you use such an effect from this class, the DC equals your paladin spell save DC.Foundry NoteUse this to track all the various uses of Channel Divinity for the paladin.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/projectile-wave-arrow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234340,"modifiedTime":1672334361044,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8MlxM2nEfE3Q0EVk","name":"Eldritch Invocations","ownership":{"default":0},"type":"feat","system":{"description":{"value":"In your study of occult lore, you have unearthed eldritch invocations, fragments of forbidden knowledge that imbue you with an abiding magical ability.\nAt 2nd level, you gain two eldritch invocations of your choice. When you gain certain warlock levels, you gain additional invocations of your choice, as shown in the Invocations Known column in the class table.\nAdditionally, when you gain a level in this class, you can choose one of the invocations you know and replace it with another invocation that you could learn at that level.\nEldritch Invocations\nIf an eldritch invocation has prerequisites, you must meet them to learn it. You can learn the invocation at the same time that you meet its prerequisites. A level prerequisite refers to your level in this class.\nEldritch Invocations\n\n\nPrerequisites\nInvocation\n\n\nClass Level\nOther\n\n\n\n\n2nd\n@Compendium[dnd5e.spells.Z9p1vezIn95jw1Yw]{Eldritch Blast}\n@Compendium[dnd5e.classfeatures.2fyuw7MiCnocDeAU]{Agonizing Blast}\n\n\n \n@Compendium[dnd5e.classfeatures.alUqO6c6OEKFQJdb]{Armor of Shadows}\n\n\n \n@Compendium[dnd5e.classfeatures.61kXR1sniXHjvN17]{Beast Speech}\n\n\n \n@Compendium[dnd5e.classfeatures.eNvpIaSnJUdF8fHl]{Beguiling Influence}\n\n\n@Compendium[dnd5e.classfeatures.MYM908WLZ1lVvA1u]{Pact of the Tome}\n@Compendium[dnd5e.classfeatures.CFIYXDmbmSP8BXjN]{Book of Ancient Secrets}\n\n\n \n@Compendium[dnd5e.classfeatures.3sN91lT1R3oxcDKd]{Devil's Sight}\n\n\n \n@Compendium[dnd5e.classfeatures.bbUEsCPTLzbbwK6o]{Eldritch Sight}\n\n\n@Compendium[dnd5e.spells.Z9p1vezIn95jw1Yw]{Eldritch Blast}\n@Compendium[dnd5e.classfeatures.r01WtcxTg4yTHm9m]{Eldritch Spear}\n\n\n \n@Compendium[dnd5e.classfeatures.lEZKbWaVrSljRa9n]{Eyes of the Rune Keeper}\n\n\n \n@Compendium[dnd5e.classfeatures.id0gmGvzNZBEdzbx]{Fiendish Vigor}\n\n\n \n@Compendium[dnd5e.classfeatures.65ReXU4ZWqcSs3Cm]{Gaze of Two Minds}\n\n\n \n@Compendium[dnd5e.classfeatures.MhJfdBl1B7PdU4oZ]{Mask of Many Faces}\n\n\n \n@Compendium[dnd5e.classfeatures.k5DU0mMuYVHejiqz]{Misty Visions}\n\n\n@Compendium[dnd5e.spells.Z9p1vezIn95jw1Yw]{Eldritch Blast}\n@Compendium[dnd5e.classfeatures.rdBPd6CwqXT64iJM]{Repelling Blast}\n\n\n \n@Compendium[dnd5e.classfeatures.rhbwDZ9XNTmdkX2u]{Thief of Five Fates}\n\n\n@Compendium[dnd5e.classfeatures.Ic1CSjvbWKudVUv9]{Pact of the Chain}\n@Compendium[dnd5e.classfeatures.k5M8gsl7MMcdjOjs]{Voice of the Chain Master}\n\n\n5th\n \n@Compendium[dnd5e.classfeatures.DjXi0IkCTbJx1gsp]{Mire the Mind}\n\n\n \n@Compendium[dnd5e.classfeatures.KfnUyjUWAk0bAAus]{One With Shadows}\n\n\n \n@Compendium[dnd5e.classfeatures.dTSV0xZMpY5CxkRk]{Sign of Ill Omen}\n\n\n@Compendium[dnd5e.classfeatures.9dSSa68mIPoX2ezA]{Pact of the Blade}\n@Compendium[dnd5e.classfeatures.pJADgAxxefgcATWr]{Thirsting Blade}\n\n\n7th\n \n@Compendium[dnd5e.classfeatures.KygHql3cTj4IRrvZ]{Bewitching Whispers}\n\n\n \n@Compendium[dnd5e.classfeatures.QBk1RsuTIEF4GEBC]{Dreadful Word}\n\n\n \n@Compendium[dnd5e.classfeatures.Xa2MLUJGCReJ28B7]{Sculptor of Flesh}\n\n\n9th\n \n@Compendium[dnd5e.classfeatures.QEuH5TeBN4PPYT2g]{Ascendant Step}\n\n\n \n@Compendium[dnd5e.classfeatures.QnRKYXb2bXpnNd2k]{Minions of Chaos}\n\n\n \n@Compendium[dnd5e.classfeatures.8zciiglzEOZo7DDN]{Otherwordly Leap}\n\n\n \n@Compendium[dnd5e.classfeatures.gFjxo01hAN4c9hDG]{Whispers of the Grave}\n\n\n12th\n@Compendium[dnd5e.classfeatures.9dSSa68mIPoX2ezA]{Pact of the Blade}\n@Compendium[dnd5e.classfeatures.zUIAzBnyt0NDvVXb]{Life Drinker}\n\n\n15th\n@Compendium[dnd5e.classfeatures.Ic1CSjvbWKudVUv9]{Pact of the Chain}\n@Compendium[dnd5e.classfeatures.Phy02H5x0TKHd7T3]{Chains of Carceri}\n\n\n \n@Compendium[dnd5e.classfeatures.lxfdjLer3uKjyZqU]{Master of Myriad Forms}\n\n\n \n@Compendium[dnd5e.classfeatures.zYIdNAjqRyhS6qWs]{Visions of Distant Realms}\n\n\n \n@Compendium[dnd5e.classfeatures.snsjxGfmzWfZR5Nh]{Witch Sight}\n\n\n\n\nFoundry Note\nYou can drag your choices onto your character sheet and it will automatically update.\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"folder":null,"sort":0,"flags":{},"img":"icons/magic/unholy/strike-hand-glow-pink.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234340,"modifiedTime":1672334479180,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8YwPFv3UAPjWVDNf","name":"Fighting Style: Archery","type":"feat","img":"icons/weapons/bows/shortbow-recurve-yellow.webp","system":{"description":{"value":"You gain a +2 bonus to attack rolls you make with ranged weapons","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"fightingStyle"},"requirements":"Fighter 1, Champion 10, Ranger 2","recharge":{"value":null,"charged":false}},"effects":[{"_id":"F0Bh4n8Tu1ZZnwSr","flags":{},"changes":[{"key":"system.bonuses.rwak.attack","mode":2,"value":"+2","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/weapons/bows/shortbow-recurve-yellow.webp","label":"Fighting Style: Archery","origin":"Item.SDsWYh0xtS6nWuH8","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234341,"modifiedTime":1672334637061,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8fbZt2Qh7ZttwIan","name":"Natural Explorer","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You are particularly familiar with one type of natural environment and are adept at traveling and surviving in such regions. Choose one type of favored terrain: arctic, coast, desert, forest, grassland, mountain, or swamp. When you make an Intelligence or Wisdom check related to your favored terrain, your proficiency bonus is doubled if you are using a skill that you're proficient in.While traveling for an hour or more in your favored terrain, you gain the following benefits:Difficult terrain doesn't slow your group's travel.Your group can't become lost except by magical means.Even when you are engaged in another activity while traveling (such as foraging, navigating, or tracking), you remain alert to danger.If you are traveling alone, you can move stealthily at a normal pace.When you forage, you find twice as much food as you normally would.While tracking other creatures, you also learn their exact number, their sizes, and how long ago they passed through the area.You choose additional favored terrain types at 6th and 10th level.Foundry NoteIf it would be helpful, manually edit this entry and make a note of your choices here:1st level6th level10th level","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/tree-roots-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234342,"modifiedTime":1672335023411,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8zciiglzEOZo7DDN","name":"Invocation: Otherworldly Leap","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.ZrTc23tToJ0JpH2h]{Jump} on yourself at will, without expending a spell slot or material components.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 9","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/beam-strike-orange-gold.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234342,"modifiedTime":1672334718289,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9UZ2WjUF2k58CQug","name":"Fiendish Resilience","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 10th level, you can choose one damage type when you finish a short or long rest. You gain resistance to that damage type until you choose a different one with this feature. Damage from magical weapons or silver weapons ignores this resistance.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"The Fiend 10","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/armor-stone-skin.webp","effects":[{"_id":"reg3sjReHspgkd0I","flags":{},"changes":[{"key":"system.traits.dr.custom","value":"Fiendish Resilience","mode":2,"priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null,"combat":null},"icon":"icons/magic/defensive/armor-stone-skin.webp","label":"Fiendish Resilience","origin":"Item.C2lYHOGH2UpEifk7","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234343,"modifiedTime":1672334524883,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9Uh7uTDNZ04oTJsL","name":"Metamagic","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 3rd level, you gain the ability to twist your spells to suit your needs. You gain two of the following Metamagic options of your choice. You gain another one at 10th and 17th level. You can use only one Metamagic option on a spell when you cast it, unless otherwise noted.\n@UUID[Compendium.dnd5e.classfeatures.zElYrOcCFFMhB6Xl]{Careful Spell}\n@UUID[Compendium.dnd5e.classfeatures.DZpAa3LzMNBexbmX]{Distant Spell}\n@UUID[Compendium.dnd5e.classfeatures.IWpe0Y9uAStHGiH1]{Empowered Spell}\n@UUID[Compendium.dnd5e.classfeatures.tQxlKyAx9sgPrbgj]{Extended Spell}\n@UUID[Compendium.dnd5e.classfeatures.tNG2qi9zhmXEkecA]{Heightened Spell}\n@UUID[Compendium.dnd5e.classfeatures.nViGf6bZ6DQAJhkw]{Quickened Spell}\n@UUID[Compendium.dnd5e.classfeatures.fXa0DMhoVLtbBu9l]{Subtle Spell}\n@UUID[Compendium.dnd5e.classfeatures.Qb391hakCfmH4w8p]{Twinned Spell}\n\nFoundry Note\nYou can drag your choices from the above onto your character sheet and it will automatically update.\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"folder":null,"sort":0,"flags":{},"img":"icons/magic/unholy/orb-colllecting-energy-green.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234343,"modifiedTime":1672334976301,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9dSSa68mIPoX2ezA","name":"Pact of the Blade","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can use your action to create a pact weapon in your empty hand. You can choose the form that this melee weapon takes each time you create it. You are proficient with it while you wield it. This weapon counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.Your pact weapon disappears if it is more than 5 feet away from you for 1 minute or more. It also disappears if you use this feature again, if you dismiss the weapon (no action required), or if you die.You can transform one magic weapon into your pact weapon by performing a special ritual while you hold the weapon. You perform the ritual over the course of 1 hour, which can be done during a short rest. You can then dismiss the weapon, shunting it into an extradimensional space, and it appears whenever you create your pact weapon thereafter. You can't affect an artifact or a sentient weapon in this way. The weapon ceases being your pact weapon if you die, if you perform the 1-hour ritual on a different weapon, or if you use a 1-hour ritual to break your bond to it. The weapon appears at your feet if it is in the extradimensional space when the bond breaks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"pact"},"requirements":"Warlock 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234344,"modifiedTime":1672335380640,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"AEWr9EMxy5gj4ZFT","name":"Arcane Tradition","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you reach 2nd level, you choose an arcane tradition, shaping your practice of magic through one of eight schools, such as Evocation.Your choice grants you features at 2nd level and again at 6th, 10th, and 14th level.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Wizard 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/orb-ice-glow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234344,"modifiedTime":1672334289832,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ANE5gjojvhNEagzz","name":"Holy Nimbus","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 20th level, as an action, you can emanate an aura of sunlight. For 1 minute, bright light shines from you in a 30-foot radius, and dim light shines 30 feet beyond that. Whenever an enemy creature starts its turn in the bright light, the creature takes 10 radiant damage.In addition, for the duration, you have advantage on saving throws against spells cast by fiends or undead.Once you use this feature, you can't use it again until you finish a long rest.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":30,"long":60,"units":"ft"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Oath of Devotion 20","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-star-glow-blue-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234345,"modifiedTime":1672334581365,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"C5fzaOBc6HxyOWRn","name":"Land's Stride (Ranger)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 8th level, moving through nonmagical difficult terrain costs you no extra movement. You can also pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard.In addition, you have advantage on saving throws against plants that are magically created or manipulated to impede movement, such those created by the @Compendium[dnd5e.spells.gMrWeG8fMDPRFiVe]{Entangle} spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 8","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/root-vine-entangle-foot-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234345,"modifiedTime":1672334858318,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"C6sHdDGmCMo0cYHd","name":"Hunter's Prey: Horde Breaker","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Once on each of your turns when you make a weapon attack, you can make another attack with the same weapon against a different creature that is within 5 feet of the original target and within range of your weapon.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"huntersPrey"},"requirements":"Hunter 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/explosion-embers-evade-silhouette.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234347,"modifiedTime":1672334566530,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"CFIYXDmbmSP8BXjN","name":"Invocation: Book of Ancient Secrets","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can now inscribe magical rituals in your Book of Shadows. Choose two 1st-level spells that have the ritual tag from any class's spell list (the two needn't be from the same list). The spells appear in the book and don't count against the number of spells you know. With your Book of Shadows in hand, you can cast the chosen spells as rituals. You can't cast the spells except as rituals, unless you've learned them by some other means. You can also cast a warlock spell you know as a ritual if it has the ritual tag.On your adventures, you can add other ritual spells to your Book of Shadows. When you find such a spell, you can add it to the book if the spell's level is equal to or less than half your warlock level (rounded up) and if you can spare the time to transcribe the spell. For each level of the spell, the transcription process takes 2 hours and costs 50 gp for the rare inks needed to inscribe it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 3, Pact of the Tome","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/sundries/books/book-embossed-clasp-gold-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234347,"modifiedTime":1672334793588,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"CkbbAckeCtyHXEnL","name":"Frenzy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting when you choose this path at 3rd level, you can go into a frenzy when you @Compendium[dnd5e.classfeatures.VoR0SUrNX5EJVPIO]{Rage}. If you do so, for the duration of your rage you can make a single melee weapon attack as a bonus action on each of your turns after this one. When your rage ends, you suffer one level of exhaustion (as described in appendix A).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Path of the Berserker 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/wounds/anatomy-organ-heart-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234348,"modifiedTime":1672334589172,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"DPN2Gfk8yi1Z5wp7","name":"Sneak Attack","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 1st level, you know how to strike subtly and exploit a foe's distraction. Once per turn, you can deal an extra 1d6 damage to one creature you hit with an attack if you have advantage on the attack roll. The attack must use a finesse or a ranged weapon.You don't need advantage on the attack roll if another enemy of the target is within 5 feet of it, that enemy isn't incapacitated, and you don't have disadvantage on the attack roll.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@scale.rogue.sneak-attack",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/strike-dagger-arcane-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234348,"modifiedTime":1672335213304,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"DZpAa3LzMNBexbmX","name":"Metamagic: Distant Spell","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you cast a spell that has a range of 5 feet or greater, you can spend 1 sorcery point to double the range of the spell.When you cast a spell that has a range of touch, you can spend 1 sorcery point to make the range of the spell 30 feet.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"metamagic"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/targeting/target-strike-triple-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234349,"modifiedTime":1672334970101,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"DhU2dWCNnX78TstR","name":"Vanish","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 14th level, you can use the Hide action as a bonus action on your turn. Also, you can't be tracked by nonmagical means, unless you choose to leave a trail.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 14","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/silhouette-stealth-shadow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234349,"modifiedTime":1672335361732,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"DjXi0IkCTbJx1gsp","name":"Invocation: Mire the Mind","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.yqUDoxk4x0NWG5Bz]{Slow} once using a warlock spell slot. You can't do so again until you finish a long rest.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":40,"width":null,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"cha"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 5","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/time/clock-stopwatch-white-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234350,"modifiedTime":1672334733729,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Dop1RcU5UdhSVLYS","name":"Grappler","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Prerequisite: Strength 13 or higher You've developed the skills necessary to hold your own in close-quarters grappling.You gain the following benefits:\n\nYou have advantage on attack rolls against a creature you are grappling.\nYou can use your action to try to pin a creature grappled by you. To do so, make another grapple check. If you succeed, you and the creature are both restrained until the grapple ends.\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"feat","subtype":""},"requirements":"STR 13 or higher","recharge":{"value":null,"charged":false}},"sort":0,"flags":{},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234351,"modifiedTime":1672334596059,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"E8ozg8avUVOX9N7u","name":"Divine Sense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The presence of strong evil registers on your senses like a noxious odor, and powerful good rings like heavenly music in your ears. As an action, you can open your awareness to detect such forces. Until the end of your next turn, you know the location of any celestial, fiend, or undead within 60 feet of you that is not behind total cover. You know the type (celestial, fiend, or undead) of any being whose presence you sense, but not its identity (the vampire Count Strahd von Zarovich, for instance). Within the same radius, you also detect the presence of any place or object that has been consecrated or desecrated, as with the @Compendium[dnd5e.spells.SLxA9QhrggTz0taU]{Hallow} spell.You can use this feature a number of times equal to 1 + your Charisma modifier. When you finish a long rest, you regain all expended uses.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1 + @abilities.cha.mod","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/eyes/human-single-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234352,"modifiedTime":1672334396363,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"EZsonMThTNLZq35j","name":"Dragon Ancestor","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 1st level, you choose one type of dragon as your ancestor. The damage type associated with each dragon is used by features you gain later.DragonDamage TypeBlackAcidBlueLightningBrassFireBronzeLightningCopperAcidGoldFireGreenPoisonRedFireSilverColdWhiteColdYou can speak, read, and write Draconic. Additionally, whenever you make a Charisma check when interacting with dragons, your proficiency bonus is doubled if it applies to the check.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Draconic Bloodline 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","effects":[{"_id":"xI5jjbA2Dlj7L0cd","changes":[{"key":"system.traits.languages.value","mode":2,"value":"draconic","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/abilities/dragon-fire-breath-orange.webp","label":"Dragon Ancestor","origin":"Item.EZsonMThTNLZq35j","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234352,"modifiedTime":1672334489889,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Ei1Oh4UAA2E30jcD","name":"Supreme Sneak","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 9th level, you have advantage on a Dexterity (Stealth) check if you move no more than half your speed on the same turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Thief 9","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/silhouette-stealth-shadow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234353,"modifiedTime":1672335342178,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"EuX1kJNIw1F68yus","name":"Nature's Sanctuary","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you reach 14th level, creatures of the natural world sense your connection to nature and become hesitant to attack you.When a beast or plant creature attacks you, that creature must make a Wisdom saving throw against your druid spell save DC. On a failed save, the creature must choose a different target, or the attack automatically misses. On a successful save, the creature is immune to this effect for 24 hours.The creature is aware of this effect before it makes its attack against you.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"wis"},"type":{"value":"class","subtype":""},"requirements":"Circle of the Land 14","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/encase-creature-humanoid-hold.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234353,"modifiedTime":1672335017811,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"F2lEKSmOY0NUruzY","name":"Sorcerous Restoration","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 20th level, you regain 4 expended sorcery points whenever you finish a short rest.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Sorcerer 20","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/orb-water-ice-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234354,"modifiedTime":1672335205435,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FAk41RPCTcvCk6KI","name":"Improved Divine Smite","ownership":{"default":0},"type":"feat","system":{"description":{"value":"By 11th level, you are so suffused with righteous might that all your melee weapon strikes carry divine power with them.Whenever you hit a creature with a melee weapon, the creature takes an extra 1d8 radiant damage. If you also use your @Compendium[dnd5e.classfeatures.ySMPQ6zNSlvkrl2f]{Divine Smite} with an attack, you add this damage to the extra damage of your Divine Smite.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 11","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/symbols/cog-shield-white-blue.webp","effects":[{"_id":"yvLL91omI6kHMHau","changes":[{"key":"system.bonuses.mwak.damage","mode":2,"value":"+1d8[Radiant]","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/symbols/cog-shield-white-blue.webp","label":"Improved Divine Smite","origin":"Item.FAk41RPCTcvCk6KI","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234354,"modifiedTime":1672334830939,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FGrbXs6Ku5qxFK5G","name":"Second-Story Work","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you choose this archetype at 3rd level, you gain the ability to climb faster than normal; climbing no longer costs you extra movement.In addition, when you make a running jump, the distance you cover increases by a number of feet equal to your Dexterity modifier.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Thief 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/environment/settlement/stone-stairs.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234355,"modifiedTime":1672335225716,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FqfmbPgxiyrWzhYk","name":"Relentless Rage","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 11th level, your rage can keep you fighting despite grievous wounds.If you drop to 0 hit points while you're raging and don't die outright, you can make a DC 10 Constitution saving throw. If you succeed, you drop to 1 hit point instead.Each time you use this feature after the first, the DC increases by 5. When you finish a short or long rest, the DC resets to 10.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":10,"scaling":"flat"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 11","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/social/intimidation-impressing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234355,"modifiedTime":1672335059193,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"GBYN5rH4nh1ocRlY","name":"Superior Inspiration","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 20th level, when you roll initiative and have no uses of @Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiraton} left, you regain one use.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 20","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/earth/explosion-lava-stone-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234356,"modifiedTime":1672335255120,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Gsha4bl0apxqspFy","name":"Draconic Presence","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 18th level, you can channel the dread presence of your dragon ancestor, causing those around you to become awestruck or frightened. As an action, you can spend 5 sorcery points to draw on this power and exude an aura of awe or fear (your choice) to a distance of 60 feet. For 1 minute or until you lose your concentration (as if you were casting a concentration spell), each hostile creature that starts its turn in this aura must succeed on a Wisdom saving throw or be charmed (if you chose awe) or frightened (if you chose fear) until the aura ends. A creature that succeeds on this saving throw is immune to your aura for 24 hours.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":"Also requires 5 sorcery points."},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"cha"},"type":{"value":"class","subtype":""},"requirements":"Draconic Bloodline 18","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/acid/projectile-smoke-glowing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234356,"modifiedTime":1672334494844,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Fighting Style (Paladin)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You adopt a particular style of fighting as your specialty. Choose one of the following options from the appropriate class list. You can't take a Fighting Style option more than once, even if you later get to choose again.\n@Compendium[dnd5e.classfeatures.zSlV0O2rQMdoq6pB]{Defense}\n@Compendium[dnd5e.classfeatures.hCop9uJrWhF1QPb4]{Dueling}\n@Compendium[dnd5e.classfeatures.3Nc6u9pyStByuJsm]{Great Weapon Fighting}\n@Compendium[dnd5e.classfeatures.06NVMYf58Z76O85O]{Protection}","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-daggers-orange.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661275426430,"modifiedTime":1672334519140,"lastModifiedBy":"dnd5ebuilder0000"},"folder":null,"sort":0,"_id":"Ho7dVxBlOYFlfBHk"} -{"_id":"ILhzFHiRrqgQ9dFJ","name":"Bard College","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 3rd level, you delve into the advanced techniques of a bard college of your choice, such as the College of Lore. Your choice grants you features at 3rd level and again at 6th and 14th level.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/hand-sparks-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234357,"modifiedTime":1672334274947,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"IWpe0Y9uAStHGiH1","name":"Metamagic: Empowered Spell","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you roll damage for a spell, you can spend 1 sorcery point to reroll a number of the damage dice up to your Charisma modifier (minimum of one). You must use the new rolls.You can use Empowered Spell even if you have already used a different Metamagic option during the casting of the spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"metamagic"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-tornado-wall-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234358,"modifiedTime":1672334966310,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Ic1CSjvbWKudVUv9","name":"Pact of the Chain","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You learn the @Compendium[dnd5e.spells.JGT5bNqu9REL7Fuz]{Find Familiar} spell and can cast it as a ritual. The spell doesn't count against your number of spells known. When you cast the spell, you can choose one of the normal forms for your familiar or one of the following special forms: @Compendium[dnd5e.monsters.dLQiESMsfsXijD5c]{Imp}, pseudodragon, @Compendium[dnd5e.monsters.bwtkdzavdNHISgp4]{Quasit}, or @Compendium[dnd5e.monsters.MUpBNDoJEr09bLaO]{Sprite}.Additionally, when you take the Attack action, you can forgo one of your own attacks to allow your familiar to make one attack of its own with its reaction.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"pact"},"requirements":"Warlock 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/debuff-chains-shackle-movement-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234359,"modifiedTime":1672335384062,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"JfFfHTeIszx1hNRx","name":"Spell Mastery","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 18th level, you have achieved such mastery over certain spells that you can cast them at will. Choose a 1st-level wizard spell and a 2nd-level wizard spell that are in your spellbook. You can cast those spells at their lowest level without expending a spell slot when you have them prepared. If you want to cast either spell at a higher level, you must expend a spell slot as normal.By spending 8 hours in study, you can exchange one or both of the spells you chose for different spells of the same levels.Foundry NoteIf you wish, manually edit this entry and make a note of your choices here:1st level spell2nd level spell","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Wizard 18","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/beam-impact-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234359,"modifiedTime":1672335202641,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Jv0zu4BtUi8bFCqJ","name":"Dark One's Blessing","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 1st level, when you reduce a hostile creature to 0 hit points, you gain temporary hit points equal to your Charisma modifier + your warlock level (minimum of 1).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["max(1, @mod + @classes.warlock.levels)","temphp"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"The Fiend 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/wounds/blood-cells-disease-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234360,"modifiedTime":1672334433343,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KQz9bqxVkXjDl8gK","name":"Slow Fall","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 4th level, you can use your reaction when you fall to reduce any falling damage you take by an amount equal to five times your monk level.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"5* @classes.monk.levels","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 4","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/pseudopod-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234360,"modifiedTime":1672335215581,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KfnUyjUWAk0bAAus","name":"Invocation: One With Shadows","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you are in an area of dim light or darkness, you can use your action to become invisible until you move or take an action or a reaction.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 5","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/silhouette-robe-evil-power.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234361,"modifiedTime":1672334722931,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Kl6zifJ5OmdHlOi2","name":"Fast Movement","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your speed increases by 10 feet while you aren't wearing heavy armor.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 5","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[{"_id":"TIBmPKKnAAiWYuN4","changes":[{"key":"system.attributes.movement.walk","mode":2,"value":"10","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/skills/movement/feet-winged-boots-brown.webp","label":"Fast Movement","origin":"Item.Kl6zifJ5OmdHlOi2","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234361,"modifiedTime":1672334533843,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KygHql3cTj4IRrvZ","name":"Invocation: Bewitching Whispers","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.P6f1PPKPd9BCb742]{Compulsion} once using a warlock spell slot. You can't do so again until you finish a long rest.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"cha"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-vortex-swirl-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234362,"modifiedTime":1672334800107,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"L7nJSRosos8sHJH9","name":"Elusive","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 18th level, you are so evasive that attackers rarely gain the upper hand against you. No attack roll has advantage against you while you aren't incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 18","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/slimes/slime-movement-swirling-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234362,"modifiedTime":1672334469051,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"L94gyvNpUhUe0rwh","name":"Brutal Critical","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 9th level, you can roll one additional weapon damage die when determining the extra damage for a critical hit with a melee attack. This increases to two additional dice at 13th level and three additional dice at 17th level.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 9","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/strike-axe-blood-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234363,"modifiedTime":1672334366181,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LBKChJY5n02Afhnq","name":"Font of Magic","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 2nd level, you tap into a deep wellspring of magic within yourself. This wellspring is represented by sorcery points, which allow you to create a variety of magical effects.Sorcery PointsYou have 2 sorcery points, and you gain more as you reach higher levels. Your sorcerer level equals the number of sorcery points you have, so a 4th level sorcerer has 4 sorcery points, a 16th level sorcerer has 16. You can never have more sorcery points than your level dictates. You regain all spent sorcery points when you finish a long rest.Flexible CastingYou can use your sorcery points to gain additional spell slots, or sacrifice spell slots to gain additional sorcery points. You learn other ways to use your sorcery points as you reach higher levels.Creating Spell Slots.You can transform unexpended sorcery points into one spell slot as a bonus action on your turn. The Creating Spell Slots table shows the cost of creating a spell slot of a given level. You can create spell slots no higher in level than 5th.Any spell slot you create with this feature vanishes when you finish a long rest.Creating Spell SlotsSpell Slot LevelSorcery Point Cost1st22nd33rd54th65th7Converting a Spell Slot to Sorcery Points. As a bonus action on your turn, you can expend one spell slot and gain a number of sorcery points equal to the slot's level.Foundry NoteUse this to track all the various uses of sorcery points for the sorcerer.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":2,"max":"@classes.sorcerer.levels","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Sorcerer 2","recharge":{"value":null,"charged":false}},"sort":0,"flags":{},"img":"icons/magic/control/silhouette-hold-change-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234363,"modifiedTime":1672334604066,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LhRm1EeUMvp2EWhV","name":"Thief's Reflexes","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you reach 17th level, you have become adept at laying ambushes and quickly escaping danger. You can take two turns during the first round of any combat. You take your first turn at your normal initiative and your second turn at your initiative minus 10. You can't use this feature when you are surprised.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Thief 17","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/lightning/bolt-strike-beam-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234364,"modifiedTime":1672335337792,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LzJ5ayHt0OlSVGxi","name":"Druidic","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You know Druidic, the secret language of druids. You can speak the language and use it to leave hidden messages. You and others who know this language automatically spot such a message. Others spot the message's presence with a successful DC 15 Wisdom (Perception) check but can't decipher it without magic.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Druid 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/sundries/documents/document-torn-diagram-tan.webp","effects":[{"_id":"iIQXR8VezkvbkFoS","changes":[{"key":"system.traits.languages.value","mode":2,"value":"druidic","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/sundries/documents/document-torn-diagram-tan.webp","label":"Druidic","origin":"Item.LzJ5ayHt0OlSVGxi","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234364,"modifiedTime":1672334482154,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"M2DxVsgLeZgXOznT","name":"Aura of Devotion","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 7th level, you and friendly creatures within 10 feet of you can't be charmed while you are conscious.At 18th level, the range of this aura increases to 30 feet.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":10,"long":30,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Oath of Devotion 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/life/heart-glowing-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234365,"modifiedTime":1672334280488,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"M6VSMzVtKPhh8B0i","name":"Intimidating Presence","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 10th level, you can use your action to frighten someone with your menacing presence.When you do so, choose one creature that you can see within 30 feet of you. If the creature can see or hear you, it must succeed on a Wisdom saving throw (DC equal to 8 + your proficiency bonus + your Charisma modifier) or be frightened of you until the end of your next turn. On subsequent turns, you can use your action to extend the duration of this effect on the frightened creature until the end of your next turn. This effect ends if the creature ends its turn out of line of sight or more than 60 feet away from you.If the creature succeeds on its saving throw, you can't use this feature on that creature again for 24 hours.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"cha"},"type":{"value":"class","subtype":""},"requirements":"Path of the Berserker 10","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/magical/construct-iron-stomping-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234365,"modifiedTime":1672334822316,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MW1ExvBLm8Hg82aA","name":"Draconic Resilience","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As magic flows through your body, it causes physical traits of your dragon ancestors to emerge. At 1st level, your hit point maximum increases by 1 and increases by 1 again whenever you gain a level in this class.Additionally, parts of your skin are covered by a thin sheen of dragon-like scales. When you aren't wearing armor, your AC equals 13 + your Dexterity modifier.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Draconic Bloodline 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/claws/claw-scaled-red.webp","effects":[{"_id":"Pu89Tsgy2FJjYPQi","changes":[{"key":"system.attributes.ac.calc","mode":5,"value":"draconic","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/claws/claw-scaled-red.webp","label":"Draconic Resilience","origin":"Item.MW1ExvBLm8Hg82aA","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234366,"modifiedTime":1672334491854,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MYM908WLZ1lVvA1u","name":"Pact of the Tome","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your patron gives you a grimoire called a Book of Shadows. When you gain this feature, choose three cantrips from any class's spell list (the three needn't be from the same list). While the book is on your person, you can cast those cantrips at will. They don't count against your number of cantrips known. If they don't appear on the warlock spell list, they are nonetheless warlock spells for you.If you lose your Book of Shadows, you can perform a 1-hour ceremony to receive a replacement from your patron. This ceremony can be performed during a short or long rest, and it destroys the previous book. The book turns to ash when you die.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"pact"},"requirements":"Warlock 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/sundries/books/book-embossed-jewel-gold-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234366,"modifiedTime":1672335387316,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MhJfdBl1B7PdU4oZ","name":"Invocation: Mask of Many Faces","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.A3q2gTNqG6fvNGrv]{Disguise Self} at will, without expending a spell slot.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/magical/spirit-undead-masked-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234367,"modifiedTime":1672334746734,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Mm64SKAHJWYecgXS","name":"Uncanny Dodge","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 5th level, when an attacker that you can see hits you with an attack, you can use your reaction to halve the attack's damage against you.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 5","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234368,"modifiedTime":1672335313472,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NMy4piwXIpLjYbRE","name":"Destroy Undead","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 5th level, when an undead fails its saving throw against your @Compendium[dnd5e.classfeatures.r91UIgwFdHwkXdia]{Turn Undead} feature, the creature is instantly destroyed if its challenge rating is at or below a certain threshold, as shown in the table below.\n\n\n\nCleric Level\nDestroys Undead of CR...\n\n\n5th\n1/2 or lower\n\n\n8th\n1 or lower\n\n\n11th\n2 or lower\n\n\n14th\n3 or lower\n\n\n17th\n4 or lower\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Cleric 5","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/skull-horned-worn-fire-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234368,"modifiedTime":1672334409107,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NlXslw4yAqmKZWtN","name":"Feral Instinct","ownership":{"default":0},"type":"feat","system":{"description":{"value":"By 7th level, your instincts are so honed that you have advantage on initiative rolls.Additionally, if you are surprised at the beginning of combat and aren't incapacitated, you can act normally on your first turn, but only if you enter your rage before doing anything else on that turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","effects":[{"_id":"q7TkJQX7PeVOzTQH","changes":[{"key":"flags.dnd5e.initiativeAdv","mode":5,"value":"true","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","label":"Feral Instinct","origin":"Item.o1i0LwvZQPm0Bxpa","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234369,"modifiedTime":1672334529716,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NqWyHE7Rpw9lyKWu","name":"Use Magic Device","ownership":{"default":0},"type":"feat","system":{"description":{"value":"By 13th level, you have learned enough about the workings of magic that you can improvise the use of items even when they are not intended for you. You ignore all class, race, and level requirements on the use of magic items.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Thief 13","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/flame-burning-chain.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234369,"modifiedTime":1672335311225,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"OQSb0bO1yDI4aiMx","name":"Dark One's Own Luck","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 6th level, you can call on your patron to alter fate in your favor. When you make an ability check or a saving throw, you can use this feature to add a d10 to your roll. You can do so after seeing the initial roll but before any of the roll's effects occur.Once you use this feature, you can't use it again until you finish a short or long rest.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d10","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"The Fiend 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/unholy/demon-fanged-horned-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234370,"modifiedTime":1672334430325,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"OTvrJSJSUgAwXrWX","name":"Nature's Ward","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you reach 10th level, you can't be charmed or frightened by elementals or fey, and you are immune to poison and disease.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Circle of the Land 10","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/commodities/flowers/lotus-pink.webp","effects":[{"_id":"Jxpz4MZmgTy7z7cm","changes":[{"key":"system.traits.ci.value","mode":2,"value":"diseased","priority":null},{"key":"system.traits.ci.value","mode":2,"value":"poisoned","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/commodities/flowers/lotus-pink.webp","label":"Nature's Ward","origin":"Item.OTvrJSJSUgAwXrWX","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234370,"modifiedTime":1672335015060,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"OdrvL3afwLOPeuYZ","name":"Lay on Hands","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your blessed touch can heal wounds. You have a pool of healing power that replenishes when you take a long rest. With that pool, you can restore a total number of hit points equal to your paladin level × 5.As an action, you can touch a creature and draw power from the pool to restore a number of hit points to that creature, up to the maximum amount remaining in your pool.Alternatively, you can expend 5 hit points from your pool of healing to cure the target of one disease or neutralize one poison affecting it. You can cure multiple diseases and neutralize multiple poisons with a single use of Lay on Hands, expending hit points separately for each one.This feature has no effect on undead and constructs.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":"Target cannot be Undead or a Construct."},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":5,"max":"5 * @classes.paladin.levels","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/orbs-hand-gray.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234371,"modifiedTime":1672334855885,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Phy02H5x0TKHd7T3","name":"Invocation: Chains of Carceri","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.l9Ju5KE7bbn3WpTm]{Hold Monster} at will - targeting a celestial, fiend, or elemental - without expending a spell slot or material components. You must finish a long rest before you can use this invocation on the same creature again.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"cha"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 15, Pact of the Chain","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/strike-flail-spiked-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234371,"modifiedTime":1672334786402,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Q1exex5ALteprrPo","name":"Indomitable Might","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 18th level, if your total for a Strength check is less than your Strength score, you can use that score in place of the total.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 18","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234372,"modifiedTime":1672334825900,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Q7mOdk4b1lgjcptF","name":"Wholeness of Body","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 6th level, you gain the ability to heal yourself. As an action, you can regain hit points equal to three times your monk level. You must finish a long rest before you can use this feature again.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3 * @classes.monk.levels","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Way of the Open Hand 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/life/heart-glowing-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234372,"modifiedTime":1674436155963,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"QBVmY56RMQuh6C8h","name":"Feral Senses","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 18th level, you gain preternatural senses that help you fight creatures you can't see. When you attack a creature you can't see, your inability to see it doesn't impose disadvantage on your attack rolls against it.You are also aware of the location of any invisible creature within 30 feet of you, provided that the creature isn't hidden from you and you aren't blinded or deafened.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 18","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/life/heart-shadow-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234373,"modifiedTime":1672334526998,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"QBk1RsuTIEF4GEBC","name":"Invocation: Dreadful Word","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.9hQXdMSmerkTsHDe]{Confusion} once using a warlock spell slot. You can't do so again until you finish a long rest.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"sphere"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"cha"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-vortex-swirl-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234374,"modifiedTime":1672334777594,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"QEuH5TeBN4PPYT2g","name":"Invocation: Ascendant Step","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.MRxldJd6C4bsBo3O]{Levitate} on yourself at will, without expending a spell slot or material components.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 9","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-beam-impact-silhouette.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234375,"modifiedTime":1672334811257,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Qb391hakCfmH4w8p","name":"Metamagic: Twinned Spell","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you cast a spell that targets only one creature and doesn't have a range of self, you can spend a number of sorcery points equal to the spell's level to target a second creature in range with the same spell (1 sorcery point if the spell is a cantrip).To be eligible, a spell must be incapable of targeting more than one creature at the spell's current level. For example, @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile} and @Compendium[dnd5e.spells.7u2obDvuvtZBkTfq]{Scorching Ray} aren't eligible, but @Compendium[dnd5e.spells.ctW81uiX56xZR2c5]{Ray of Frost} is.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"metamagic"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/lightning/bolt-strike-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234375,"modifiedTime":1672334943805,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"QnRKYXb2bXpnNd2k","name":"Invocation: Minions of Chaos","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} once using a warlock spell slot. You can't do so again until you finish a long rest.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"space"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 9","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/magical/humanoid-giant-forest-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234376,"modifiedTime":1672334738227,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"QwgfIpCN8VWfoUtX","name":"Pact Boon","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 3rd level, your otherworldly patron bestows a gift upon you for your loyal service. You gain one of the following features of your choice.@UUID[Compendium.dnd5e.classfeatures.9dSSa68mIPoX2ezA]{Pact of the Blade}@UUID[Compendium.dnd5e.classfeatures.Ic1CSjvbWKudVUv9]{Pact of the Chain}@UUID[Compendium.dnd5e.classfeatures.MYM908WLZ1lVvA1u]{Pact of the Tome}","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Warlock 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-vortex-swirl-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234376,"modifiedTime":1674435984779,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SCVjqRdlZ9cvHVSR","name":"Reckless Attack","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 2nd level, you can throw aside all concern for defense to attack with fierce desperation.When you make your first attack on your turn, you can decide to attack recklessly. Doing so gives you advantage on melee weapon attack rolls using Strength during this turn, but attack rolls against you have advantage until your next turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/blade-tips-triple-bent-white.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234377,"modifiedTime":1672335061227,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SEJmsjkEhdAZ90ki","name":"Countercharm","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 6th level, you gain the ability to use musical notes or words of power to disrupt mind-influencing effects. As an action, you can start a performance that lasts until the end of your next turn. During that time, you and any friendly creatures within 30 feet of you have advantage on saving throws against being frightened or charmed. A creature must be able to hear you to gain this benefit. The performance ends early if you are incapacitated or silenced or if you voluntarily end it (no action required).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":"Creatures must be able to hear you to benefit."},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/sonic/scream-wail-shout-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234378,"modifiedTime":1672334334533,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SZbsNbaxFFGwBpNK","name":"Unarmored Defense (Barbarian)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While you are not wearing any armor, your Armor Class equals 10 + your Dexterity modifier + your Constitution modifier. You can use a shield and still gain this benefit.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/silhouette-hold-change-blue.webp","effects":[{"_id":"hEgUnQNVxtBo2zkK","changes":[{"key":"system.attributes.ac.calc","mode":5,"value":"unarmoredBarb","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/control/silhouette-hold-change-blue.webp","label":"Unarmored Defense","origin":"Item.aIMXb43ACIxMItbh","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234378,"modifiedTime":1672335319673,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"StfmqK1twVfukpa0","name":"Hunter's Prey: Giant Killer","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When a Large or larger creature within 5 feet of you hits or misses you with an attack, you can use your reaction to attack that creature immediately after its attack, provided that you can see the creature.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":"Creature must be Large or larger and visible."},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"huntersPrey"},"requirements":"Hunter 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/social/intimidation-impressing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234379,"modifiedTime":1672334570644,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"T6u5z8ZTX6UftXqE","name":"Divine Strike","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 8th level, you gain the ability to infuse your weapon strikes with divine energy.Once on each of your turns when you hit a creature with a weapon attack, you can cause the attack to deal an extra 1d8 radiant damage to the target. When you reach 14th level, the extra damage increases to 2d8.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@scale.life-domain.divine-strike","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Life Domain 8","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234380,"modifiedTime":1672334497269,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"TDglPcxIVEzvVSgK","name":"Ki: Patient Defense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can spend 1 ki point to take the Dodge action as a bonus action on your turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"ki"},"requirements":"Monk 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234380,"modifiedTime":1672334887274,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"TH1QAf6YNGSeBVjT","name":"Primal Path","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 3rd level, you choose a path that shapes the nature of your rage, such as the Path of the Berserker. Your choice grants you features at 3rd level and again at 6th, 10th, and 14th levels.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/projectile-wave-arrow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234381,"modifiedTime":1672335076711,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"U7BIPVPsptBmwsnV","name":"Cleansing Touch","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 14th level, you can use your action to end one spell on yourself or on one willing creature that you touch.You can use this feature a number of times equal to your Charisma modifier (a minimum of once). You regain expended uses when you finish a long rest.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":"Target must be willing."},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"max(1, @abilities.cha.mod)","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 14","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/hand-sparks-smoke-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234381,"modifiedTime":1672334336758,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"UAvV7N7T4zJhxdfI","name":"Unarmored Defense (Monk)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 1st Level, while you are wearing no armor and not wielding a Shield, your AC equals 10 + your Dexterity modifier + your Wisdom modifier.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/silhouette-hold-change-blue.webp","effects":[{"_id":"R5ro4AuNjcdWD56O","changes":[{"key":"system.attributes.ac.calc","mode":5,"value":"unarmoredMonk","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/control/silhouette-hold-change-blue.webp","label":"Unarmored Defense","origin":"Item.cOdcNWy4hII029DT","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234382,"modifiedTime":1672335317672,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"V4pwFxlwHtNeB4w9","name":"Slippery Mind","ownership":{"default":0},"type":"feat","system":{"description":{"value":"By 15th level, you have acquired greater mental strength. You gain proficiency in Wisdom saving throws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","effects":[{"_id":"hNWumbfvMxXQI21x","changes":[{"key":"system.abilities.wis.proficient","mode":5,"value":"1","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/illusion-evasion-echo-purple.webp","label":"Slippery Mind","origin":"Item.V4pwFxlwHtNeB4w9","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234382,"modifiedTime":1672335217923,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VUtSLeCzFubGXmGx","name":"Overchannel","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 14th level, you can increase the power of your simpler spells. When you cast a wizard spell of 1st through 5th level that deals damage, you can deal maximum damage with that spell.The first time you do so, you suffer no adverse effect. If you use this feature again before you finish a long rest, you take 2d12 necrotic damage for each level of the spell, immediately after you cast it. Each time you use this feature again before finishing a long rest, the necrotic damage per spell level increases by 1d12. This damage ignores resistance and immunity.Foundry NoteLimited use is to track the first, safe instance of Overchanneling. The damage formula is set to the base default of 2d12. The Versatile roll is set to 1d12 to add any additional damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d12","necrotic"]],"versatile":"1d12"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"School of Evocation 14","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/acid/projectile-faceted-glob.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234383,"modifiedTime":1672335007320,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VoR0SUrNX5EJVPIO","name":"Rage","type":"feat","img":"icons/creatures/abilities/mouth-teeth-human.webp","system":{"description":{"value":"In battle, you fight with primal ferocity. On your turn, you can enter a rage as a bonus action. While raging, you gain the following benefits if you aren't wearing heavy armor:\n\n\nYou have advantage on Strength checks and Strength saving throws.\n\n\nWhen you make a melee weapon attack using Strength, you gain a bonus to the damage roll that increases as you gain levels as a barbarian, as shown in the Rage Damage column of the Barbarian table.\n\n\nYou have resistance to bludgeoning, piercing, and slashing damage.\n\n\nIf you are able to cast spells, you can't cast them or concentrate on them while raging. \nYour rage lasts for 1 minute. It ends early if you are knocked unconscious or if your turn ends and you haven't attacked a hostile creature since your last turn or taken damage since then. You can also end your rage on your turn as a bonus action. \nOnce you have raged the number of times shown for your barbarian level in the Rages column of the Barbarian table, you must finish a long rest before you can rage again.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":2,"max":"@scale.barbarian.rages","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 1","recharge":{"value":null,"charged":false}},"effects":[{"_id":"eWhL8hUr0c2ujDUm","flags":{},"changes":[{"key":"system.bonuses.mwak.damage","mode":2,"value":"+@scale.barbarian.rage-damage","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"slashing","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"piercing","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"bludgeoning","priority":null}],"disabled":true,"duration":{"startTime":null,"rounds":10,"seconds":null,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/abilities/mouth-teeth-human.webp","label":"Rage","origin":"Item.bdfYHJstcltQC7SZ","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234384,"modifiedTime":1672335067284,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WgQrqjmeyMqDzVt3","name":"Defensive Tactics","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 7th level, you gain on of the following features of your choice.@Compendium[dnd5e.classfeatures.pAQMJU5R9SGUmzHU]{Escape the Horde}@Compendium[dnd5e.classfeatures.slelvrm83v9UAKZU]{Multiattack Defense}@Compendium[dnd5e.classfeatures.zbHu0NvHuII8lR7W]{Steel Will}","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Hunter 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/leaf-rune-glow-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234384,"modifiedTime":1674435878567,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Xa2MLUJGCReJ28B7","name":"Invocation: Sculptor of Flesh","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.04nMsTWkIFvkbXlY]{Polymorph} once using a warlock spell slot. You can't do so again until you finish a long rest.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"cha"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234385,"modifiedTime":1672334708523,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Xf763cJoDHPPWSGG","name":"Superior Hunter's Defense: Stand Against the Tide","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When a hostile creature misses you with a melee attack, you can use your reaction to force that creature to repeat the same attack against another creature (other than itself) of your choice.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"superiorHuntersDefense"},"requirements":"Hunter 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/pseudopod-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234385,"modifiedTime":1672335266344,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XjuGBeB8Y0C3A5D4","name":"Tongue of the Sun and Moon","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 13th level, you learn to touch the ki of other minds so that you understand all spoken languages. Moreover, any creature that can understand a language can understand what you say.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 13","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/time/day-night-sunset-sunrise.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234386,"modifiedTime":1672335328721,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XogoBnFWmCAHXppo","name":"Extra Attack","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can attack twice, instead of once, whenever you take the Attack action on your turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 5, Monk 5, Paladin 5, Ranger 5","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/spear-tips-triple-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234386,"modifiedTime":1672334542377,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YN9xm6MCvse4Y60u","name":"Reliable Talent","ownership":{"default":0},"type":"feat","system":{"description":{"value":"By 11th level, you have refined your chosen skills until they approach perfection. Whenever you make an ability check that lets you add your proficiency bonus, you can treat a d20 roll of 9 or lower as a 10.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 11","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/ranged/target-bullseye-arrow-glowing.webp","effects":[{"_id":"vMMZHZQ0qT7MT4I4","changes":[{"key":"flags.dnd5e.reliableTalent","mode":5,"value":"true","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/skills/ranged/target-bullseye-arrow-glowing.webp","label":"Reliable Talent","origin":"Item.YN9xm6MCvse4Y60u","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234387,"modifiedTime":1672335056263,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YgLQV1O849wE5TgM","name":"Improved Critical","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your weapon attacks score a critical hit on a roll of 19 or 20.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Champion 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/blade-tip-chipped-blood-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234387,"modifiedTime":1672334832856,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YiK59gWSlcQ6Mbdz","name":"Circle Spells","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your mystical connection to the land infuses you with the ability to cast certain spells. At 3rd, 5th, 7th, and 9th level you gain access to circle spells connected to the land where you became a druid. Choose that land—arctic, coast, desert, forest, grassland, mountain, or swamp—and consult the associated list of spells.\nOnce you gain access to a circle spell, you always have it prepared, and it doesn't count against the number of spells you can prepare each day. If you gain access to a spell that doesn't appear on the druid spell list, the spell is nonetheless a druid spell for you.\nArctic\n\n\nDruid Level\nCircle Spells\n\n\n\n\n3rd\n@Compendium[dnd5e.spells.3Lo9boi7P2ro6QV4]{Hold Person}, @Compendium[dnd5e.spells.9gYGkrL6qFTsE6fw]{Spike Growth}\n\n\n5th\n@Compendium[dnd5e.spells.dhqBY4TvVjxVmOZd]{Sleet Storm}, @Compendium[dnd5e.spells.yqUDoxk4x0NWG5Bz]{Slow}\n\n\n7th\n@Compendium[dnd5e.spells.da0a1t2FqaTjRZGT]{Freedom of Movement}, @Compendium[dnd5e.spells.WN2LWEljYU6QqnRH]{Ice Storm}\n\n\n9th\n@Compendium[dnd5e.spells.d54VDyFulD9xxY7J]{Commune}, @Compendium[dnd5e.spells.RpKjTlYASrfqUPVA]{Cone of Cold}\n\n\n\nCoast\n\n\nDruid Level\nCircle Spells\n\n\n\n\n3rd\n@Compendium[dnd5e.spells.X4c8xCkmF8U9HUMz]{Mirror Image}, @Compendium[dnd5e.spells.wqfAVANuQonNBgnL]{Misty Step}\n\n\n5th\n@Compendium[dnd5e.spells.13uVuBQP6VaiSPvC]{Water Breathing}, @Compendium[dnd5e.spells.YBda6nLKjxdT1LbS]{Water Walk}\n\n\n7th\n@Compendium[dnd5e.spells.7fFHlBk3UNX8gPKL]{Control Water}, @Compendium[dnd5e.spells.da0a1t2FqaTjRZGT]{Freedom of Movement}\n\n\n9th\n@Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental}, @Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying}\n\n\n\nDesert\n\n\nDruid Level\nCircle Spells\n\n\n\n\n3rd\n@Compendium[dnd5e.spells.UDUnlfPsOAbq2RSE]{Blur}, @Compendium[dnd5e.spells.5VhqFROQYjr1P9lp]{Silence}\n\n\n5th\n@Compendium[dnd5e.spells.BV0mpbHh29IbbIj5]{Create Food and Water}, @Compendium[dnd5e.spells.j8NtLXOOJ3GAKF8I]{Protection from Energy}\n\n\n7th\n@Compendium[dnd5e.spells.pybg5MNc3lkerH4Y]{Blight}, @Compendium[dnd5e.spells.sTIkQK7KuQNOyY0C]{Hallucinatory Terrain}\n\n\n9th\n@Compendium[dnd5e.spells.OVikYmSdHliAG2YD]{Insect Plague}, @Compendium[dnd5e.spells.NmoRmM1mhuM3pqnY]{Wall of Stone}\n\n\n\nForest\n\n\nDruid Level\nCircle Spells\n\n\n\n\n3rd\n@Compendium[dnd5e.spells.JPwIEfgUPVebr5AH]{Barkskin}, @Compendium[dnd5e.spells.KJRVzeMQXPj8Gtyx]{Spider Climb}\n\n\n5th\n@Compendium[dnd5e.spells.ehvmg9U9fcMEhE4z]{Call Lightning}, @Compendium[dnd5e.spells.YWtwzp6ZnQJMEmVW]{Plant Growth}\n\n\n7th\n@Compendium[dnd5e.spells.XqzXSKNR75ZdYTA9]{Divination}, @Compendium[dnd5e.spells.da0a1t2FqaTjRZGT]{Freedom of Movement}\n\n\n9th\n@Compendium[dnd5e.spells.dp6xny4v8PDoIGjh]{Commune with Nature}, @Compendium[dnd5e.spells.DUBgwHPakcLDkB6W]{Tree Stride}\n\n\n\nGrassland\n\n\nDruid Level\nCircle Spells\n\n\n\n\n3rd\n@Compendium[dnd5e.spells.1N8dDMMgZ1h1YJ3B]{Invisibility}, @Compendium[dnd5e.spells.pRMvmknwLf2tdMTj]{Pass without Trace}\n\n\n5th\n@Compendium[dnd5e.spells.BP3GCwa66IAw1yTG]{Daylight}, @Compendium[dnd5e.spells.Szvk5FEVQW3uhJi5]{Haste}\n\n\n7th\n@Compendium[dnd5e.spells.XqzXSKNR75ZdYTA9]{Divination}, @Compendium[dnd5e.spells.da0a1t2FqaTjRZGT]{Freedom of Movement}\n\n\n9th\n@Compendium[dnd5e.spells.kSPRpeIx3w3nihrF]{Dream}, @Compendium[dnd5e.spells.OVikYmSdHliAG2YD]{Insect Plague}\n\n\n\nMountain\n\n\nDruid Level\nCircle Spells\n\n\n\n\n3rd\n@Compendium[dnd5e.spells.KJRVzeMQXPj8Gtyx]{Spider Climb}, @Compendium[dnd5e.spells.9gYGkrL6qFTsE6fw]{Spike Growth}\n\n\n5th\n@Compendium[dnd5e.spells.IyikgTEOTv701jgQ]{Lightning Bolt}, @Compendium[dnd5e.spells.64uo4fHriHLjRUrX]{Meld into Stone}\n\n\n7th\n@Compendium[dnd5e.spells.QvGcdRUSNRKEQJlK]{Stone Shape}, @Compendium[dnd5e.spells.ReMbjfeOKoSj3O79]{Stoneskin}\n\n\n9th\n@Compendium[dnd5e.spells.d9MwcXi7Il3HROXd]{Passwall}, @Compendium[dnd5e.spells.NmoRmM1mhuM3pqnY]{Wall of Stone}\n\n\n\nSwamp\n\n\nDruid Level\nCircle Spells\n\n\n\n\n3rd\n@Compendium[dnd5e.spells.4H6YgYdKgnX6ZQ8M]{Acid Arrow}, @Compendium[dnd5e.spells.S7VbUetIfVT7B6Eq]{Darkness}\n\n\n5th\n@Compendium[dnd5e.spells.YBda6nLKjxdT1LbS]{Water Walk}, @Compendium[dnd5e.spells.TwlD4PLcltv7Xh7j]{Stinking Cloud}\n\n\n7th\n@Compendium[dnd5e.spells.da0a1t2FqaTjRZGT]{Freedom of Movement}, @Compendium[dnd5e.spells.gXtzz9t1DTzJeLr4]{Locate Creature}\n\n\n9th\n@Compendium[dnd5e.spells.OVikYmSdHliAG2YD]{Insect Plague}, @Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying}\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Circle of the Land 3","recharge":{"value":null,"charged":false}},"sort":0,"flags":{},"img":"icons/magic/water/projectile-ice-teardrop.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234388,"modifiedTime":1672334339276,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YpiLQEKGalROn7iJ","name":"Channel Divinity (Cleric)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 2nd level, you gain the ability to channel divine energy directly from your deity, using that energy to fuel magical effects. You start with two such effects: Turn Undead and an effect determined by your domain. Some domains grant you additional effects as you advance in levels, as noted in the domain description.When you use your Channel Divinity, you choose which effect to create. You must then finish a short or long rest to use your Channel Divinity again. Some Channel Divinity effects require saving throws. When you use such an effect from this class, the DC equals your cleric spell save DC.Beginning at 6th level, you can use your Channel Divinity twice between rests, and beginning at 18th level, you can use it three times between rests. When you finish a short or long rest, you regain your expended uses.Foundry NoteUse this to track all the various uses of Channel Divinity for the cleric.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"@scale.cleric.channel-divinity","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Cleric 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/lightning/bolt-strike-smoke-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234388,"modifiedTime":1672334363709,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZHJyYrqMYSLub4RY","name":"Purity of Spirit","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 15th level, you are always under the effects of a @Compendium[dnd5e.spells.xmDBqZhRVrtLP8h2]{Protection from Evil and Good} spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Oath of Devotion 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/toxins/poison-bottle-corked-fire-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234389,"modifiedTime":1672335069710,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZdwGlsJNtc7pGFCd","name":"Channel Divinity: Turn the Unholy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As an action, you present your holy symbol and speak a prayer censuring fiends and undead, using your Channel Divinity. Each fiend or undead that can see or hear you within 30 feet of you must make a Wisdom saving throw. If the creature fails its saving throw, it is turned for 1 minute or until it takes damage.A turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"cha"},"type":{"value":"class","subtype":"channelDivinity"},"requirements":"Oath of Devotion 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/explosion-embers-evade-silhouette.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234389,"modifiedTime":1672334348742,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZmC31XKS4YNENnoc","name":"Stillness of Mind","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 7th level, you can use your action to end one effect on yourself that is causing you to be charmed or frightened.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/orb-water-transparent.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234391,"modifiedTime":1672335279984,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"a0Sq88dgnREcIMfl","name":"Superior Hunter's Defense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 15th level, you gain one of the following features of your choice.@Compendium[dnd5e.classfeatures.laVHAIOKIsUeezWd]{Evasion}@Compendium[dnd5e.classfeatures.Xf763cJoDHPPWSGG]{Stand Against the Tide}@Compendium[dnd5e.classfeatures.7pyZjz5vlUWV01qQ]{Uncanny Dodge}","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Hunter 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/reptiles/serpent-horned-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234391,"modifiedTime":1674435873389,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"a4P4DNMmH8CqSNkC","name":"Evasion","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 7th level, your instinctive agility lets you dodge out of the way of certain area effects, such as a blue dragon's lightning breath or a fireball spell. When you are subjected to an effect that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 7, Rogue 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/beam-red-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234392,"modifiedTime":1672334462947,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"aCUmlnHlUPHS0rdu","name":"Hurl Through Hell","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 14th level, when you hit a creature with an attack, you can use this feature to instantly transport the target through the lower planes. The creature disappears and hurtles through a nightmare landscape.At the end of your next turn, the target returns to the space it previously occupied, or the nearest unoccupied space. If the target is not a fiend, it takes 10d10 psychic damage as it reels from its horrific experience.Once you use this feature, you can't use it again until you finish a long rest.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d10","psychic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"The Fiend 14","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/mouth-teeth-fire-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234392,"modifiedTime":1672334835479,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"aQLg7BWdRnm4Hr9S","name":"Expertise (Bard)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 3rd level, choose two of your skill proficiencies. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies. At 10th level, you can choose another two skill proficiencies to gain this benefit.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/commodities/tech/cog-bronze.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234393,"modifiedTime":1672334546632,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"aVKH6TLn1AG9hPSA","name":"Superior Critical","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your weapon attacks score a critical hit on a roll of 18–20.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Champion 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/strike-axe-blood-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234393,"modifiedTime":1672335275284,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"alUqO6c6OEKFQJdb","name":"Invocation: Armor of Shadows","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.CKZTpZlxj7hjjo2H]{Mage Armor} on yourself at will, without expending a spell slot or material components.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/control-influence-rally-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234394,"modifiedTime":1672334815380,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"aonJ2YjkqkYB9WYB","name":"Magical Secrets","ownership":{"default":0},"type":"feat","system":{"description":{"value":"By 10th level, you have plundered magical knowledge from a wide spectrum of disciplines.Choose two spells from any class, including this one. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip.The chosen spells count as bard spells for you and are included in the number in the Spells Known column of the Bard table.You learn two additional spells from any class at 14th level and again at 18th level.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 10","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/sundries/documents/document-torn-diagram-tan.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234394,"modifiedTime":1672334853577,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ax8M0X0q1GGWM26j","name":"Martial Archetype","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 3rd level, you choose an archetype that you strive to emulate in your combat styles and techniques, such as Champion. The archetype you choose grants you features at 3rd level and again at 7th, 10th, 15th, and 18th level.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Fighter 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234395,"modifiedTime":1672334851229,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"bbUEsCPTLzbbwK6o","name":"Invocation: Eldritch Sight","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic} at will, without expending a spell slot.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/hand-eye-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234395,"modifiedTime":1672334772895,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"bqWA7t9pDELbNRkp","name":"Purity of Body","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 10th level, your mastery of the ki flowing through you makes you immune to disease and poison.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 10","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/encase-creature-humanoid-hold.webp","effects":[{"_id":"JjH64T4YkNP1VTt4","changes":[{"key":"system.traits.ci.value","mode":2,"value":"diseased","priority":null},{"key":"system.traits.ci.value","mode":2,"value":"poisoned","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/control/encase-creature-humanoid-hold.webp","label":"Purity of Body","origin":"Item.dvtlIzR4gvdfb7Od","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234396,"modifiedTime":1672335071933,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"cVDEQo0ow1WJT7Wl","name":"Timeless Body (Druid)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 18th level, the primal magic that you wield causes you to age more slowly. For every 10 years that pass, your body ages only 1 year.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Druid 18","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/time/clock-stopwatch-white-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234396,"modifiedTime":1672335333141,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"carGDhkIdoduTC0I","name":"Aura of Protection","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 6th level, whenever you or a friendly creature within 10 feet of you must make a saving throw, the creature gains a bonus to the saving throw equal to your Charisma modifier (with a minimum bonus of +1). You must be conscious to grant this bonus. At 18th level, the range of this aura increases to 30 feet.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":10,"long":30,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-tornado-wall-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234397,"modifiedTime":1672334278049,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"cmRCL9T9UgRYOj1c","name":"Sorcerous Origins","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Choose a sorcerous origin, which describes the source of your innate magical power, such as Draconic Bloodline.Your choice grants you features when you choose it at 1st level and again at 6th, 14th, and 18th level.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Sorcerer 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-vortex-swirl-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234397,"modifiedTime":1672335208050,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dHu1yzIjD38BvGGd","name":"Remarkable Athlete","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can add half your proficiency bonus (round up) to any Strength, Dexterity, or Constitution check you make that doesn't already use your proficiency bonus.In addition, when you make a running long jump, the distance you can cover increases by a number of feet equal to your Strength modifier.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Champion 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234397,"modifiedTime":1672335184269,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dTSV0xZMpY5CxkRk","name":"Invocation: Sign of Ill Omen","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.pO4zGe5LmFIYqJiL]{Bestow Curse} once using a warlock spell slot. You can't do so again until you finish a long rest.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"cha"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 5","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/symbols/rune-sigil-black-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234398,"modifiedTime":1672334704449,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dY9yrqkyEDuF0CG2","name":"Divine Health","ownership":{"default":0},"type":"feat","system":{"description":{"value":"By 3rd level, the divine magic flowing through you makes you immune to disease.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/life/cross-worn-green.webp","effects":[{"_id":"RjX1etQhr8M2TBgv","changes":[{"key":"system.traits.ci.value","mode":2,"value":"diseased","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/life/cross-worn-green.webp","label":"Divine Health","origin":"Item.dY9yrqkyEDuF0CG2","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234398,"modifiedTime":1672334401345,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"e0uTcFPpgxjIyUW9","name":"Arcane Recovery","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have learned to regain some of your magical energy by studying your spellbook. Once per day when you finish a short rest, you can choose expended spell slots to recover. The spell slots can have a combined level that is equal to or less than half your wizard level (rounded up), and none of the slots can be 6th level or higher.For example, if you're a 4th-level wizard, you can recover up to two levels worth of spell slots. You can recover either a 2nd-level spell slot or two 1st-level spell slots.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"The wizard can recover this number worth of spells slots (of 5th-level or lower):","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"ceil(@classes.wizard.levels/2)","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Wizard 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/earth/explosion-lava-stone-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234399,"modifiedTime":1672334292429,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"e9ytGikyLFgwZ5wi","name":"Bonus Proficiencies (College of Lore)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you join the College of Lore at 3rd level, you gain proficiency with three skills of your choice.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"College of Lore 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/trades/academics-investigation-puzzles.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234399,"modifiedTime":1672334370815,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eGxoNmSMWKNzChCO","name":"Unarmed Strike (Monk)","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1@scale.monk.die + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"ada":false,"amm":false,"fin":true,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"mgc":false,"rch":false,"rel":false,"ret":false,"sil":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234400,"modifiedTime":1671220976154,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eNvpIaSnJUdF8fHl","name":"Invocation: Beguiling Influence","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You gain proficiency in the Deception and Persuasion skills.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234401,"modifiedTime":1672334803925,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eVXqHn0ojWrEuYGU","name":"Divine Intervention","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 10th level, you can call on your deity to intervene on your behalf when your need is great.Imploring your deity's aid requires you to use your action. Describe the assistance you seek, and roll percentile dice. If you roll a number equal to or lower than your cleric level, your deity intervenes. The GM chooses the nature of the intervention; the effect of any cleric spell or cleric domain spell would be appropriate.If your deity intervenes, you can't use this feature again for 7 days. Otherwise, you can use it again after you finish a long rest.At 20th level, your call for intervention succeeds automatically, no roll required.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":"Your need must be great..."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d100","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Cleric 10","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-star-glow-blue-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234401,"modifiedTime":1672334398751,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"evEWCpE5MYgr5RRW","name":"Potent Cantrip","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 6th level, your damaging cantrips affect even creatures that avoid the brunt of the effect. When a creature succeeds on a saving throw against your cantrip, the creature takes half the cantrip's damage (if any) but suffers no additional effect from the cantrip.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"School of Evocation 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/earth/projectiles-fire-stone-salvo.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234402,"modifiedTime":1672335081053,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ezWijmCnlnQ9ZRX2","name":"Jack of All Trades","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 2nd level, you can add half your proficiency bonus, rounded down, to any ability check you make that doesn't already include your proficiency bonus.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/commodities/tech/cog-steel.webp","effects":[{"_id":"K4xQzXl1Z4zMnyOa","changes":[{"key":"flags.dnd5e.jackOfAllTrades","mode":5,"value":"true","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/commodities/tech/cog-steel.webp","label":"Jack of All Trades","origin":"Item.LaQuQ37mInXH6TiR","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234402,"modifiedTime":1672334906819,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fXa0DMhoVLtbBu9l","name":"Metamagic: Subtle Spell","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you cast a spell, you can spend 1 sorcery point to cast it without any somatic or verbal components.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"metamagic"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/slimes/slime-movement-swirling-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234403,"modifiedTime":1672334948232,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fbExzwNwEAl2kW9c","name":"Fighting Style (Fighter)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You adopt a particular style of fighting as your specialty. Choose one of the following options from the appropriate class list. You can't take a Fighting Style option more than once, even if you later get to choose again.\n@Compendium[dnd5e.classfeatures.8YwPFv3UAPjWVDNf]{Archery}\n@Compendium[dnd5e.classfeatures.zSlV0O2rQMdoq6pB]{Defense}\n@Compendium[dnd5e.classfeatures.hCop9uJrWhF1QPb4]{Dueling}\n@Compendium[dnd5e.classfeatures.3Nc6u9pyStByuJsm]{Great Weapon Fighting}\n@Compendium[dnd5e.classfeatures.06NVMYf58Z76O85O]{Protection}\n@Compendium[dnd5e.classfeatures.mHcSjcHJ8oZu3hkb]{Two Weapon Fighting}","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Fighter 1","recharge":{"value":null,"charged":false}},"sort":0,"flags":{},"img":"icons/skills/melee/weapons-crossed-daggers-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234404,"modifiedTime":1672334522548,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fjsBk7zxoAbLf8ZI","name":"Blindsense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 14th level, if you are able to hear, you are aware of the location of any hidden or invisible creature within 10 feet of you.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 14","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234404,"modifiedTime":1672334376458,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gDH8PMrKvLHaNmEI","name":"Timeless Body (Monk)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 15th level, your ki sustains you so that you suffer none of the frailty of old age, and you can't be aged magically. You can still die of old age, however. In addition, you no longer need food or water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/time/clock-stopwatch-white-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234405,"modifiedTime":1672335330808,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gFjxo01hAN4c9hDG","name":"Invocation: Whispers of the Grave","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.I2LUSF5ogc7Bj62e]{Speak with Dead} at will, without expending a spell slot.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 9","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/undead-ghost-scream-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234405,"modifiedTime":1672334681694,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ga3dt2zrCn2MHK8R","name":"Fast Hands","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 3rd level, you can use the bonus action granted by your @Compendium[dnd5e.classfeatures.01pcLg6PRu5zGrsb]{Cunning Action} to make a Dexterity (Sleight of Hand) check, use your thieves' tools to disarm a trap or open a lock, or take the Use an Object action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Thief 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/social/theft-pickpocket-bribery-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234406,"modifiedTime":1672334536534,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gbNo5eVPaqr8IVKL","name":"Spellcasting (Wizard)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As a student of arcane magic, you have a spellbook containing spells that show the first glimmerings of your true power.\nCantrips\nAt 1st level, you know three cantrips of your choice from the wizard spell list. You learn additional wizard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Wizard table.\nSpellbook\nAt 1st level, you have a spellbook containing six 1stlevel wizard spells of your choice. Your spellbook is the repository of the wizard spells you know, except your cantrips, which are fixed in your mind.\nPreparing and Casting Spells\nThe Wizard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nYou prepare the list of wizard spells that are available for you to cast. To do so, choose a number of wizard spells from your spellbook equal to your Intelligence modifier + your wizard level (minimum of one spell). The spells must be of a level for which you have spell slots.\nFor example, if you're a 3rd-level wizard, you have four 1st-level and two 2nd-level spell slots. With an Intelligence of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination, chosen from your spellbook. If you prepare the 1st-level spell magic missile, you can cast it using a 1st-level or a 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of wizard spells requires time spent studying your spellbook and memorizing the incantations and gestures you must make to cast the spell: at least 1 minute per spell level for each spell on your list.\nSpellcasting Ability\nIntelligence is your spellcasting ability for your wizard spells, since you learn your spells through dedicated study and memorization. You use your Intelligence whenever a spell refers to your spellcasting ability. In addition, you use your Intelligence modifier when setting the saving throw DC for a wizard spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Intelligence modifier\nSpell attack modifier = your proficiency bonus + your Intelligence modifier\nRitual Casting\nYou can cast a wizard spell as a ritual if that spell has the ritual tag and you have the spell in your spellbook. You don't need to have the spell prepared.\nSpellcasting Focus\nYou can use an arcane focus as a spellcasting focus for your wizard spells.\nLearning Spells of 1st Level and Higher\nEach time you gain a wizard level, you can add two wizard spells of your choice to your spellbook for free. Each of these spells must be of a level for which you have spell slots, as shown on the Wizard table. On your adventures, you might find other spells that you can add to your spellbook (see the \"Your Spellbook\" sidebar).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Wizard 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/explosion-embers-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234406,"modifiedTime":1672335281839,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"h1gM8SH3BNRtFevE","name":"Ki: Quivering Palm","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 17th level, you gain the ability to set up lethal vibrations in someone's body. When you hit a creature with an unarmed strike, you can spend 3 ki points to start these imperceptible vibrations, which last for a number of days equal to your monk level. The vibrations are harmless unless you use your action to end them. To do so, you and the target must be on the same plane of existence. When you use this action, the creature must make a Constitution saving throw. If it fails, it is reduced to 0 hit points. If it succeeds, it takes 10d10 necrotic damage.You can have only one creature under the effect of this feature at a time. You can choose to end the vibrations harmlessly without using an action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":"Only ending the vibrations harmfully requires an action."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d10","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"wis"},"type":{"value":"class","subtype":"ki"},"requirements":"Way of the Open Hand 17","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/symbols/rune-sigil-black-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234407,"modifiedTime":1672334882527,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hCop9uJrWhF1QPb4","name":"Fighting Style: Dueling","type":"feat","img":"icons/skills/melee/hand-grip-sword-orange.webp","system":{"description":{"value":"When you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"fightingStyle"},"requirements":"Fighter 1, Champion 10, Paladin 2, Ranger 2","recharge":{"value":null,"charged":false}},"effects":[{"_id":"B5KM6oYsKC7vRMgG","flags":{},"changes":[{"key":"system.bonuses.mwak.damage","mode":2,"value":"+2","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/skills/melee/hand-grip-sword-orange.webp","label":"Fighting Style: Dueling","origin":"Item.UOgk9fNed1qugAqH","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234407,"modifiedTime":1672334629389,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hEymt45rICi4f9eL","name":"Channel Divinity: Preserve Life","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 2nd level, you can use your Channel Divinity to heal the badly injured.As an action, you present your holy symbol and evoke healing energy that can restore a number of hit points equal to five times your cleric level.Choose any creatures within 30 feet of you, and divide those hit points among them. This feature can restore a creature to no more than half of its hit point maximum. You can't use this feature on an undead or a construct.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":"The target cannot be Undead or a Construct"},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5* @classes.cleric.levels","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"channelDivinity"},"requirements":"Life Domain 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-star-glow-blue-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234408,"modifiedTime":1672334357483,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"he8RpPXwSl2lVSIk","name":"Song of Rest","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 2nd level, you can use soothing music or oration to help revitalize your wounded allies during a short rest.\nIf you or any friendly creatures who can hear your performance regain hit points at the end of the short rest by spending one or more Hit Dice, each of those creatures regains an extra 1d6 hit points.\nThe extra hit points increase when you reach certain levels in this class: to 1d8 at 9th level, to 1d10 at 13th level, and to 1d12 at 17th level.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1@scale.bard.song-of-rest","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/life/cross-worn-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234408,"modifiedTime":1672335210523,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hpLNiGq7y67d2EHA","name":"Bardic Inspiration","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can inspire others through stirring words or music. To do so, you use a bonus action on your turn to choose one creature other than yourself within 60 feet of you who can hear you. That creature gains one Bardic Inspiration die, a d6. Once within the next 10 minutes, the creature can roll the die and add the number rolled to one ability check, attack roll, or saving throw it makes. The creature can wait until after it rolls the d20 before deciding to use the Bardic Inspiration die, but must decide before the GM says whether the roll succeeds or fails. Once the Bardic Inspiration die is rolled, it is lost. A creature can have only one Bardic Inspiration die at a time.You can use this feature a number of times equal to your Charisma modifier (a minimum of once).You regain any expended uses when you finish a long rest.Your Bardic Inspiration die changes when you reach certain levels in this class. The die becomes a d8 at 5th level, a d10 at 10th level, and a d12 at 15th level.Foundry NoteRecovery is set to long rest (for levels before @Compendium[dnd5e.classfeatures.3VDZGs5Ug3hIE322]{Font of Inspiration} is gained). Please manually adjust as required.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"max(1, @abilities.cha.mod)","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1@scale.bard.inspiration","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234409,"modifiedTime":1672334270998,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"i6tPm3FNK13Ftc9v","name":"Spellcasting (Druid)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Drawing on the divine essence of nature itself, you can cast spells to shape that essence to your will.\nCantrips\nAt 1st level, you know two cantrips of your choice from the druid spell list. You learn additional druid cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Druid table.\nPreparing and Casting Spells\nThe Druid table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these druid spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nYou prepare the list of druid spells that are available for you to cast, choosing from the druid spell list. When you do so, choose a number of druid spells equal to your Wisdom modifier + your druid level (minimum of one spell). The spells must be of a level for which you have spell slots.\nFor example, if you are a 3rd-level druid, you have four 1st-level and two 2nd-level spell slots. With a Wisdom of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\nYou can also change your list of prepared spells when you finish a long rest. Preparing a new list of druid spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\nSpellcasting Ability\nWisdom is your spellcasting ability for your druid spells, since your magic draws upon your devotion and attunement to nature. You use your Wisdom whenever a spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a druid spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Wisdom modifier\nSpell attack modifier = your proficiency bonus + your Wisdom modifier\nRitual Casting\nYou can cast a druid spell as a ritual if that spell has the ritual tag and you have the spell prepared.\nSpellcasting Focus\nYou can use a druidic focus (see @UUID[Compendium.dnd5e.rules.BYFd9hiJGo9L5aOM.JournalEntryPage.AjavRU4yPfI9hfaI]{Adventuring Gear}) as a spellcasting focus for your druid spells.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Druid 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/orb-beams-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234409,"modifiedTime":1672335292173,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"iQxLNydNLlCHNKbp","name":"Open Hand Technique","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting when you choose this tradition at 3rd level, you can manipulate your enemy's ki when you harness your own.Whenever you hit a creature with one of the attacks granted by your @Compendium[dnd5e.classfeatures.5MwNlVZK7m6VolOH]{Flurry of Blows}, you can impose one of the following effects on that target:It must succeed on a Dexterity saving throw or be knocked prone.It must make a Strength saving throw. If it fails, you can push it up to 15 feet away from you.It can't take reactions until the end of your next turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Way of the Open Hand 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/strike-hand-glow-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234410,"modifiedTime":1672335012724,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"id0gmGvzNZBEdzbx","name":"Invocation: Fiendish Vigor","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.7e3QXF10hLNDEdr6]{False Life} on yourself at will as a 1st-level spell, without expending a spell slot or material components.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 +4","temphp"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/undead-zombie-grave-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234410,"modifiedTime":1672334758806,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ihoQHsmVZlyDbPhX","name":"Spellcasting (Paladin)","type":"feat","img":"icons/magic/symbols/cog-shield-white-blue.webp","system":{"description":{"value":"By 2nd level, you have learned to draw on divine magic through meditation and prayer to cast spells as a cleric does.\nPreparing and Casting Spells\nThe Paladin table shows how many spell slots you have to cast your spells. To cast one of your paladin spells of 1st level or higher, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nYou prepare the list of paladin spells that are available for you to cast, choosing from the paladin spell list. When you do so, choose a number of paladin spells equal to your Charisma modifier + half your paladin level, rounded down (minimum of one spell). The spells must be of a level for which you have spell slots.\nFor example, if you are a 5th-level paladin, you have four 1st-level and two 2nd-level spell slots. With a Charisma of 14, your list of prepared spells can include four spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or a 2ndlevel slot. Casting the spell doesn't remove it from your list of prepared spells.\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of paladin spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\nSpellcasting Ability\nCharisma is your spellcasting ability for your paladin spells, since their power derives from the strength of your convictions. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a paladin spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Charisma modifier\nSpell attack modifier = your proficiency bonus + your Charisma modifier\nSpellcasting Focus\nYou can use a holy symbol as a spellcasting focus for your paladin spells.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 2","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234411,"modifiedTime":1672335288887,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ip4bvmGoz3qkoqes","name":"Archdruid","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 20th level, you can use your @Compendium[dnd5e.classfeatures.swK0r5TOIxredxWS]{Wild Shape} an unlimited number of times.Additionally, you can ignore the verbal and somatic components of your druid spells, as well as any material components that lack a cost and aren't consumed by a spell.You gain this benefit in both your normal shape and your beast shape from Wild Shape.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Druid 20","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/beam-hand-leaves-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234411,"modifiedTime":1672334287073,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ipG5yx1tRNmeJfSH","name":"Survivor","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You attain the pinnacle of resilience in battle.At the start of each of your turns, you regain hit points equal to 5 + your Constitution modifier if you have no more than half of your hit points left.You don't gain this benefit if you have 0 hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Champion 18","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/life/heart-glowing-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234412,"modifiedTime":1672335339891,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"jF8AFfEMICIJnAkR","name":"Disciple of Life","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 1st level, your healing spells are more effective.Whenever you use a spell of 1st level or higher to restore hit points to a creature, the creature regains additional hit points equal to 2 + the spell's level.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Life Domain 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/hand-sparks-smoke-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234412,"modifiedTime":1672334406300,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"jTXHaK0vvT5DV3uO","name":"Otherworldly Patron","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 1st level, you have struck a bargain with an otherworldly being, such as the Fiend. Your choice grants you features at 1st level and again at 6th, 10th, and 14th level.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Warlock 1","recharge":{"value":null,"charged":false}},"sort":0,"flags":{},"img":"icons/sundries/lights/candles-lit-red-evil.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234413,"modifiedTime":1672335010110,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"jVU4AgqfrFaqgXns","name":"Primal Champion","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 20th level, you embody the power of the wilds. Your Strength and Constitution scores increase by 4. Your maximum for those scores is now 24.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 20","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/sihouette-hold-beam-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234413,"modifiedTime":1672335078815,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"k5DU0mMuYVHejiqz","name":"Invocation: Misty Visions","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.BrBZdCCrJRIVg7YX]{Silent Image} at will, without expending a spell slot or material components.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cube"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/webs/web-spider-glowing-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234414,"modifiedTime":1672334728348,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"k5M8gsl7MMcdjOjs","name":"Invocation: Voice of the Chain Master","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can communicate telepathically with your familiar and perceive through your familiar's senses as long as you are on the same plane of existence. Additionally, while perceiving through your familiar's senses, you can also speak through your familiar in your own voice, even if your familiar is normally incapable of speech.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 3, Pact of the Chain","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/humanoid-cat-skulking-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234414,"modifiedTime":1672334686373,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kYJsED0rqqqUcgKz","name":"Additional Fighting Style","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Choose a second fighting style class feature from the following:@Compendium[dnd5e.classfeatures.8YwPFv3UAPjWVDNf]{Archery}@Compendium[dnd5e.classfeatures.zSlV0O2rQMdoq6pB]{Defense}@Compendium[dnd5e.classfeatures.hCop9uJrWhF1QPb4]{Dueling}@Compendium[dnd5e.classfeatures.3Nc6u9pyStByuJsm]{Great Weapon Fighting}@Compendium[dnd5e.classfeatures.06NVMYf58Z76O85O]{Protection}@Compendium[dnd5e.classfeatures.mHcSjcHJ8oZu3hkb]{Two Weapon Fighting}The choice must be different to the one made at level 1.You can drag your choice from the above onto your character sheet and it will automatically update.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Champion 10","recharge":{"value":null,"charged":false}},"folder":null,"sort":0,"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-purple.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234414,"modifiedTime":1672334305801,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kaHcUGiwi8AtfZIm","name":"Primeval Awareness","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 3rd level, you can use your action and expend one ranger spell slot to focus your awareness on the region around you. For 1 minute per level of the spell slot you expend, you can sense whether the following types of creatures are present within 1 mile of you (or within up to 6 miles if you are in your favored terrain): aberrations, celestials, dragons, elementals, fey, fiends, and undead. This feature doesn't reveal the creatures' location or number.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":"It also expends a spell slot; the slot level dictates duration."},"duration":{"value":"","units":"spec"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":1,"long":6,"units":"mi"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/eye-slit-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234415,"modifiedTime":1672335074128,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"l50hjTxO2r0iecKw","name":"Martial Arts","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 1st level, your practice of martial arts gives you mastery of combat styles that use and monk weapons, which are shortswords and any simple melee weapons that don't have the two-handed or heavy property. You gain the following benefits while you are unarmed or wielding only monk weapons and you aren't wearing armor or wielding a shield:\n\n\nYou can use Dexterity instead of Strength for the attack and damage rolls of your unarmed strikes and monk weapons.\n\n\nYou can roll a d4 in place of the normal damage of your unarmed strike or monk weapon. This die changes as you gain monk levels, as shown in the Martial Arts column of the Monk table.\n\n\nWhen you use the Attack action with an unarmed strike or a monk weapon on your turn, you can make one unarmed strike as a bonus action. For example, if you take the Attack action and attack with a quarterstaff, you can also make an unarmed strike as a bonus action, assuming you haven't already taken a bonus action this turn.\n\n\nCertain monasteries use specialized forms of the monk weapons. For example, you might use a club that is two lengths of wood connected by a short chain (called a nunchaku) or a sickle with a shorter, straighter blade (called a kama). Whatever name you use for a monk weapon, you can use the game statistics provided for the weapon.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234416,"modifiedTime":1672334978195,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"l7W6JB9yWLLLtQKP","name":"Multiattack: Volley","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can use your action to make a ranged attack against any number of creatures within 10 feet of a point you can see within your weapon's range. You must have ammunition for each target, as normal, and you make a separate attack roll for each target.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"square"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"multiattack"},"requirements":"Hunter 11","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/ranged/target-bullseye-arrow-white.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234416,"modifiedTime":1672334932638,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"l8tUhZ5Pecm9wz7I","name":"Persistent Rage","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 15th level, your @Compendium[dnd5e.classfeatures.VoR0SUrNX5EJVPIO]{Rage} is so fierce that it ends early only if you fall unconscious or if you choose to end it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/social/intimidation-impressing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234417,"modifiedTime":1672335083236,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lEZKbWaVrSljRa9n","name":"Invocation: Eyes of the Rune Keeper","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can read all writing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/sundries/documents/document-torn-diagram-tan.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234417,"modifiedTime":1672334764690,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lT8GsPOPgRzDC3QJ","name":"Bonus Cantrip (Druid)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you choose this circle at 2nd level, you learn one additional druid cantrip of your choice.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Circle of the Land 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/vines-thorned-glow-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234418,"modifiedTime":1672334373750,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"laVHAIOKIsUeezWd","name":"Superior Hunter's Defense: Evasion","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you are subjected to an effect, such as a red dragon's fiery breath or a lightning bolt spell, that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"superiorHuntersDefense"},"requirements":"Hunter 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/air-wave-gust-smoke-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234418,"modifiedTime":1672335270358,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lxfdjLer3uKjyZqU","name":"Invocation: Master of Myriad Forms","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.8RTDOt80u8aBv9qx]{Alter Self} at will, without expending a spell slot.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/cougar-pounce-stalk-black.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234419,"modifiedTime":1672334743046,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"mHcSjcHJ8oZu3hkb","name":"Fighting Style: Two-Weapon Fighting","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you engage in two-weapon fighting, you can add your ability modifier to the damage of the second attack.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"fightingStyle"},"requirements":"Fighter 1, Champion 10, Ranger 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-white-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234419,"modifiedTime":1672334614676,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"mQNPg89YIs7g5tG4","name":"Perfect Self","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 20th level, when you roll for initiative and have no ki points remaining, you regain 4 ki points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 20","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234420,"modifiedTime":1672335085553,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"myBu3zi5eYvQIcuy","name":"Additional Magical Secrets","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 6th level, you learn two spells of your choice from any class. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip. The chosen spells count as bard spells for you but don't count against the number of bard spells you know.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"College of Lore 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/sundries/documents/document-torn-diagram-tan.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234420,"modifiedTime":1672334297286,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"mzweVbnsJPQiVkAe","name":"Deflect Missiles","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 3rd level, you can use your reaction to deflect or catch the missile when you are hit by a ranged weapon attack. When you do so, the damage you take from the attack is reduced by 1d10 + your Dexterity modifier + your monk level.If you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in one hand and you have at least one hand free. If you catch a missile in this way, you can spend 1 @Compendium[dnd5e.classfeatures.10b6z2W1txNkrGP7]{Ki} point to make a ranged attack with the weapon or piece of ammunition you just caught, as part of the same reaction. You make this attack with proficiency, regardless of your weapon proficiencies, and the missile counts as a monk weapon for the attack, which has a normal range of 20 feet and a long range of 60 feet.Foundry NoteThe reduce damage roll is calculated by the Other Formula.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":"Can be thrown back using 1 ki point"},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1@scale.monk.die + @mod",""]],"versatile":""},"formula":"1d10 + @mod + @classes.monk.levels","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/ranged/arrow-flying-white-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234421,"modifiedTime":1672334411490,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Fighting Style (Ranger)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You adopt a particular style of fighting as your specialty. Choose one of the following options from the appropriate class list. You can't take a Fighting Style option more than once, even if you later get to choose again.\n@Compendium[dnd5e.classfeatures.8YwPFv3UAPjWVDNf]{Archery}\n@Compendium[dnd5e.classfeatures.zSlV0O2rQMdoq6pB]{Defense}\n@Compendium[dnd5e.classfeatures.hCop9uJrWhF1QPb4]{Dueling}\n@Compendium[dnd5e.classfeatures.mHcSjcHJ8oZu3hkb]{Two Weapon Fighting}","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-daggers-orange.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661275427926,"modifiedTime":1672334517268,"lastModifiedBy":"dnd5ebuilder0000"},"folder":null,"sort":0,"_id":"nJA3ISVmyj3uPRVM"} -{"_id":"nTjmWbyHweXuIqwc","name":"Second Wind","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have a limited well of stamina that you can draw on to protect yourself from harm. On your turn, you can use a bonus action to regain hit points equal to 1d10 + your fighter level.Once you use this feature, you must finish a short or long rest before you can use it again.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @classes.fighter.levels","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Fighter 1","recharge":{"value":null,"charged":false}},"folder":null,"sort":0,"flags":{},"img":"icons/magic/life/heart-glowing-red.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234421,"modifiedTime":1674424670055,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nUrZDi6QN1YjwAr6","name":"Signature Spells","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you reach 20th level, you gain mastery over two powerful spells and can cast them with little effort. Choose two 3rd-level wizard spells in your spellbook as your signature spells. You always have these spells prepared, they don't count against the number of spells you have prepared, and you can cast each of them once at 3rd level without expending a spell slot. When you do so, you can't do so again until you finish a short or long rest.If you want to cast either spell at a higher level, you must expend a spell slot as normal.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":"","recovery":""},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Wizard 20","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/projectile-wave-arrow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234422,"modifiedTime":1674436105597,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nViGf6bZ6DQAJhkw","name":"Metamagic: Quickened Spell","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you cast a spell that has a casting time of 1 action, you can spend 2 sorcery points to change the casting time to 1 bonus action for this casting.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"metamagic"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/time/clock-stopwatch-white-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234422,"modifiedTime":1672334953649,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nahSkBO6LH4HkpaT","name":"Aura of Courage","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 10th level, you and friendly creatures within 10 feet of you can't be frightened while you are conscious.At 18th level, the range of this aura increases to 30 feet.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":10,"long":30,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 10","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-beam-impact-silhouette.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234423,"modifiedTime":1672334284774,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ohwfuwnvuoBWlSQr","name":"Thieves' Cant","ownership":{"default":0},"type":"feat","system":{"description":{"value":"During your rogue training you learned thieves' cant, a secret mix of dialect, jargon, and code that allows you to hide messages in seemingly normal conversation. Only another creature that knows thieves' cant understands such messages. It takes four times longer to convey such a message than it does to speak the same idea plainly.In addition, you understand a set of secret signs and symbols used to convey short, simple messages, such as whether an area is dangerous or the territory of a thieves' guild, whether loot is nearby, or whether the people in an area are easy marks or will provide a safe house for thieves on the run.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/sundries/documents/document-torn-diagram-tan.webp","effects":[{"_id":"VN7GnGzVwmBM7YCU","changes":[{"key":"system.traits.languages.value","mode":2,"value":"cant","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/sundries/documents/document-torn-diagram-tan.webp","label":"Thieves' Cant","origin":"Item.ohwfuwnvuoBWlSQr","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234423,"modifiedTime":1672335335751,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"olAqNsUTIef9x8xC","name":"Sacred Oath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you reach 3rd level, you swear the oath that binds you as a paladin forever. Up to this time you have been in a preparatory stage, committed to the path but not yet sworn to it. Now you choose an oath, such as the Oath of Devotion.\nYour choice grants you features at 3rd level and again at 7th, 15th, and 20th level. Those features include oath spells and the Channel Divinity feature.\nOath Spells\nEach oath has a list of associated spells. You gain access to these spells at the levels specified in the oath description. Once you gain access to an oath spell, you always have it prepared. Oath spells don't count against the number of spells you can prepare each day.\nIf you gain an oath spell that doesn't appear on the paladin spell list, the spell is nonetheless a paladin spell for you.\nChannel Divinity\nSee @Compendium[dnd5e.classfeatures.8M7uOPhbTxoxxJSo]{Channel Divinity}.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 3","recharge":{"value":null,"charged":false}},"sort":0,"flags":{},"img":"icons/sundries/documents/document-sealed-red-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234424,"modifiedTime":1672335234911,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"oygRF3ZjTv2T7z0Y","name":"Spellcasting (Sorcerer)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"An event in your past, or in the life of a parent or ancestor, left an indelible mark on you, infusing you with arcane magic. This font of magic, whatever its origin, fuels your spells.\nCantrips\nAt 1st level, you know four cantrips of your choice from the sorcerer spell list. You learn additional sorcerer cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Sorcerer table.\nSpell Slots\nThe Sorcerer table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these sorcerer spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nFor example, if you know the 1st-level spell burning hands and have a 1st-level and a 2nd-level spell slot available, you can cast burning hands using either slot.\nSpells Known of 1st Level and Higher\nYou know two 1st-level spells of your choice from the sorcerer spell list.\nThe Spells Known column of the Sorcerer table shows when you learn more sorcerer spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.\nAdditionally, when you gain a level in this class, you can choose one of the sorcerer spells you know and replace it with another spell from the sorcerer spell list, which also must be of a level for which you have spell slots.\nSpellcasting Ability\nCharisma is your spellcasting ability for your sorcerer spells, since the power of your magic relies on your ability to project your will into the world. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a sorcerer spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Charisma modifier\nSpell attack modifier = your proficiency bonus + your Charisma modifier\nSpellcasting Focus\nYou can use an arcane focus as a spellcasting focus for your sorcerer spells.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Sorcerer 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/strike-hand-glow-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234424,"modifiedTime":1672335283911,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"pAQMJU5R9SGUmzHU","name":"Defensive Tactics: Escape the Horde","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Opportunity attacks against you are made with disadvantage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"defensiveTactic"},"requirements":"Hunter 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/bats-movement-flying-black.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234425,"modifiedTime":1672334425615,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"pJADgAxxefgcATWr","name":"Invocation: Thirsting Blade","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can attack with your pact weapon twice, instead of once, whenever you take the Attack action on your turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 5, Pact of the Blade","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/blade-tip-chipped-blood-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234426,"modifiedTime":1672334695379,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"pquwueEMweRhiWaq","name":"Peerless Skill","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 14th level, when you make an ability check, you can expend one use of @Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiraton}.Roll a Bardic Inspiration die and add the number rolled to your ability check.You can choose to do so after you roll the die for the ability check, but before the GM tells you whether you succeed or fail.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"College of Lore 14","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/hand-sparks-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234426,"modifiedTime":1672335087679,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"pvRc6GAu1ok6zihC","name":"Ki: Stunning Strike","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 5th level, you can interfere with the flow of ki in an opponent's body. When you hit another creature with a melee weapon attack, you can spend 1 ki point to attempt a stunning strike. The target must succeed on a Constitution saving throw or be stunned until the end of your next turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"wis"},"type":{"value":"class","subtype":"ki"},"requirements":"Monk 5","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/unarmed-punch-fist-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234427,"modifiedTime":1672334873112,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"q9g1MLXuLZyxjQMg","name":"Extra Attack (Fighter)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can attack twice, instead of once, whenever you take the Attack action on your turn.The number of attacks increases to three when you reach 11th level in this class and to four when you reach 20th level in this class.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Fighter 5","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/spear-tips-triple-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234427,"modifiedTime":1672334539181,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"r01WtcxTg4yTHm9m","name":"Invocation: Eldritch Spear","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you cast @Compendium[dnd5e.spells.Z9p1vezIn95jw1Yw]{Eldritch Blast}, its range is 300 feet.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2, Eldritch Blast","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/weapons/ammunition/arrowhead-glowing-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234427,"modifiedTime":1672334768328,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"r0unvWK0lPsDthDx","name":"Hide in Plain Sight","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 10th level, you can spend 1 minute creating camouflage for yourself. You must have access to fresh mud, dirt, plants, soot, and other naturally occurring materials with which to create your camouflage.Once you are camouflaged in this way, you can try to hide by pressing yourself up against a solid surface, such as a tree or wall, that is at least as tall and wide as you are. You gain a +10 bonus to Dexterity (Stealth) checks as long as you remain there without moving or taking actions. Once you move or take an action or a reaction, you must camouflage yourself again to gain this benefit.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 10","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/stealth-hide-eyes-green.webp","effects":[{"_id":"7if4vIkT84Sw2zFm","changes":[{"key":"system.skills.ste.bonuses.check","mode":2,"value":"+10","priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/nature/stealth-hide-eyes-green.webp","label":"Hide in Plain Sight","origin":"Item.r0unvWK0lPsDthDx","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234428,"modifiedTime":1672334583742,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"r91UIgwFdHwkXdia","name":"Channel Divinity: Turn Undead","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As an action, you present your holy symbol and speak a prayer censuring the undead.Each undead that can see or hear you within 30 feet of you must make a Wisdom saving throw. If the creature fails its saving throw, it is turned for 1 minute or until it takes any damage.A turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions.For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":"Targets must be able to see or hear you."},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"wis"},"type":{"value":"class","subtype":"channelDivinity"},"requirements":"Cleric 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/flame-burning-creature-skeleton.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234428,"modifiedTime":1672334343227,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rBDZLatuoolT2FUW","name":"Tranquility","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 11th level, you can enter a special meditation that surrounds you with an aura of peace. At the end of a long rest, you gain the effect of a @Compendium[dnd5e.spells.gvdA9nPuWLck4tBl]{Sanctuary} spell that lasts until the start of your next long rest (the spell can end early as normal). The saving throw DC for the spell equals 8 + your Wisdom modifier + your proficiency bonus.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"wis"},"type":{"value":"class","subtype":""},"requirements":"Way of the Open Hand 11","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/tree-spirit-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234429,"modifiedTime":1672335326164,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rQhWDaMHMn7iU4f2","name":"Stroke of Luck","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 20th level, you have an uncanny knack for succeeding when you need to. If your attack misses a target within range, you can turn the miss into a hit. Alternatively, if you fail an ability check, you can treat the d20 roll as a 20.Once you use this feature, you can't use it again until you finish a short or long rest.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 20","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/hand-sparks-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234429,"modifiedTime":1672335277704,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rdBPd6CwqXT64iJM","name":"Invocation: Repelling Blast","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you hit a creature with @Compendium[dnd5e.spells.Z9p1vezIn95jw1Yw]{Eldritch Blast}, you can push the creature up to 10 feet away from you in a straight line.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2, Eldritch Blast","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/explosion-embers-evade-silhouette.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234430,"modifiedTime":1672334714365,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rhbwDZ9XNTmdkX2u","name":"Invocation: Thief of Five Fates","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.95K2aUhAGV9qXjnf]{Bane} once using a warlock spell slot. You can't do so again until you finish a long rest.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":3,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"cha"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/earth/orb-stone-smoke-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234430,"modifiedTime":1672334699386,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rtpQdX77dYWbDIOH","name":"Monastic Tradition","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you reach 3rd level, you commit yourself to a monastic tradition, such as the Way of the Open Hand. Your tradition grants you features at 3rd level and again at 6th, 11th, and 17th level.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/tree-roots-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234430,"modifiedTime":1672334937534,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"s0Cc2zcX0JzIgam5","name":"Ability Score Improvement","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 4, Bard 4, Cleric 4, Druid 4, Monk 4, Paladin 4, Ranger 4, Sorcerer 4, Warlock 4, Wizard 4","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-white-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234431,"modifiedTime":1672334317018,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"sPy2OLoN7JaAcMl4","name":"Ability Score Improvement (Fighter)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you reach 4th level, and again at 6th, 8th, 12th, 14th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Fighter 4","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234431,"modifiedTime":1672334314469,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"slelvrm83v9UAKZU","name":"Defensive Tactics: Multiattack Defense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When a creature hits you with an attack, you gain a +4 bonus to AC against all subsequent attacks made by that creature for the rest of the turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"defensiveTactic"},"requirements":"Hunter 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-white-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234432,"modifiedTime":1672334422021,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"snsjxGfmzWfZR5Nh","name":"Invocation: Witch Sight","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can see the true form of any shapechanger or creature concealed by illusion or transmutation magic while the creature is within 30 feet of you and within line of sight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/eye-tendrils-web-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234432,"modifiedTime":1672334675903,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"swK0r5TOIxredxWS","name":"Wild Shape","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 2nd level, you can use your action to magically assume the shape of a beast that you have seen before. You can use this feature twice. You regain expended uses when you finish a short or long rest.\nYour druid level determines the beasts you can transform into, as shown in the Beast Shapes table. At 2nd level, for example, you can transform into any beast that has a challenge rating of 1/4 or lower that doesn't have a flying or swimming speed.\nBeast Shapes\n\n\nLevel\nMax. CR\nLimitations\nExample\n\n\n\n\n2nd\n1/4\nNo flying or swimming speed\n@Compendium[dnd5e.monsters.yawTeS8u2FCfzzZH]{Wolf}\n\n\n4th\n1/2\nNo flying speed\n@Compendium[dnd5e.monsters.8aCTKP5qaBPFOqxM]{Crocodile}\n\n\n8th\n1\n—\n@Compendium[dnd5e.monsters.9bHoR8k5D2DKHaF3]{Giant Eagle}\n\n\n\nYou can stay in a beast shape for a number of hours equal to half your druid level (rounded down). You then revert to your normal form unless you expend another use of this feature. You can revert to your normal form earlier by using a bonus action on your turn. You automatically revert if you fall unconscious, drop to 0 hit points, or die.\nWhile you are transformed, the following rules apply:\n\n\nYour game statistics are replaced by the statistics of the beast, but you retain your alignment, personality, and Intelligence, Wisdom, and Charisma scores. You also retain all of your skill and saving throw proficiencies, in addition to gaining those of the creature. If the creature has the same proficiency as you and the bonus in its stat block is higher than yours, use the creature's bonus instead of yours. If the creature has any legendary or lair actions, you can't use them.\n\n\nWhen you transform, you assume the beast's hit points and Hit Dice. When you revert to your normal form, you return to the number of hit points you had before you transformed. However, if you revert as a result of dropping to 0 hit points, any excess damage carries over to your normal form. For example, if you take 10 damage in animal form and have only 1 hit point left, you revert and take 9 damage. As long as the excess damage doesn't reduce your normal form to 0 hit points, you aren't knocked unconscious.\n\n\nYou can't cast spells, and your ability to speak or take any action that requires hands is limited to the capabilities of your beast form. Transforming doesn't break your concentration on a spell you've already cast, however, or prevent you from taking actions that are part of a spell, such as call lightning, that you've already cast.\n\n\nYou retain the benefit of any features from your class, race, or other source and can use them if the new form is physically capable of doing so. However, you can't use any of your special senses, such as darkvision, unless your new form also has that sense.\n\n\nYou choose whether your equipment falls to the ground in your space, merges into your new form, or is worn by it. Worn equipment functions as normal, but the GM decides whether it is practical for the new form to wear a piece of equipment, based on the creature's shape and size. Your equipment doesn't change size or shape to match the new form, and any equipment that the new form can't wear must either fall to the ground or merge with it. Equipment that merges with the form has no effect until you leave the form.\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"floor(@classes.druid.levels / 2)","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":2,"max":"@classes.druid.levels > 19 ? 99 : 2","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Druid 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/elk-moose-marked-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234433,"modifiedTime":1672335351472,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"tNG2qi9zhmXEkecA","name":"Metamagic: Heightened Spell","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you cast a spell that forces a creature to make a saving throw to resist its effects, you can spend 3 sorcery points to give one target of the spell disadvantage on its first saving throw made against the spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"metamagic"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/explosion-mushroom-nuke-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234433,"modifiedTime":1672334958321,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"tQxlKyAx9sgPrbgj","name":"Metamagic: Extended Spell","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you cast a spell that has a duration of 1 minute or longer, you can spend 1 sorcery point to double its duration, to a maximum duration of 24 hours.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"metamagic"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/time/hourglass-yellow-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234434,"modifiedTime":1672334962661,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"u4NLajXETJhJU31v","name":"Spellcasting (Bard)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have learned to untangle and reshape the fabric of reality in harmony with your wishes and music. Your spells are part of your vast repertoire, magic that you can tune to different situations.\nCantrips\nYou know two cantrips of your choice from the bard spell list. You learn additional bard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Bard table.\nSpell Slots\nThe Bard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nFor example, if you know the 1st-level spell cure wounds and have a 1st-level and a 2nd-level spell slot available, you can cast cure wounds using either slot.\nSpells Known of 1st Level and Higher\nYou know four 1st-level spells of your choice from the bard spell list.\nThe Spells Known column of the Bard table shows when you learn more bard spells of your choice. Each of these spells must be of a level for which you have spell slots, as shown on the table. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.\nAdditionally, when you gain a level in this class, you can choose one of the bard spells you know and replace it with another spell from the bard spell list, which also must be of a level for which you have spell slots.\nSpellcasting Ability\nCharisma is your spellcasting ability for your bard spells. Your magic comes from the heart and soul you pour into the performance of your music or oration. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a bard spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Charisma modifier\nSpell attack modifier = your proficiency bonus + your Charisma modifier\nRitual Casting\nYou can cast any bard spell you know as a ritual if that spell has the ritual tag.\nSpellcasting Focus\nYou can use a musical instrument (see @UUID[Compendium.dnd5e.rules.BYFd9hiJGo9L5aOM.JournalEntryPage.AjavRU4yPfI9hfaI]{Adventuring Gear})) as a spellcasting focus for your bard spells.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/symbols/runes-carved-stone-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234434,"modifiedTime":1672335296102,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"u6Du2P9s81SWuGbi","name":"Druid Circle","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 2nd level, you choose to identify with a circle of druids, such as the Circle of the Land.Your choice grants you features at 2nd level and again at 6th, 10th, and 14th level.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Druid 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/tree-roots-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234435,"modifiedTime":1672334485072,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"u6xV3Ki3TXRrD7zg","name":"Spellcasting (Ranger)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"By the time you reach 2nd level, you have learned to use the magical essence of nature to cast spells, much as a druid does.\nSpell Slots\nThe Ranger table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nFor example, if you know the 1st-level spell animal friendship and have a 1st-level and a 2nd-level spell slot available, you can cast animal friendship using either slot.\nSpells Known of 1st Level and Higher\nYou know two 1st-level spells of your choice from the ranger spell list.\nThe Spells Known column of the Ranger table shows when you learn more ranger spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 5th level in this class, you can learn one new spell of 1st or 2nd level.\nAdditionally, when you gain a level in this class, you can choose one of the ranger spells you know and replace it with another spell from the ranger spell list, which also must be of a level for which you have spell slots.\nSpellcasting Ability\nWisdom is your spellcasting ability for your ranger spells, since your magic draws on your attunement to nature. You use your Wisdom whenever a spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a ranger spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Wisdom modifier\nSpell attack modifier = your proficiency bonus + your Wisdom modifier","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/trap-spikes-thorns-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234435,"modifiedTime":1672335286932,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"v4gKwLhAq9vuqza7","name":"Spellcasting (Cleric)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As a conduit for divine power, you can cast cleric spells.\nCantrips\nAt 1st level, you know three cantrips of your choice from the cleric spell list. You learn additional cleric cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Cleric table.\nPreparing and Casting Spells\nThe Cleric table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nYou prepare the list of cleric spells that are available for you to cast, choosing from the cleric spell list. When you do so, choose a number of cleric spells equal to your Wisdom modifier + your cleric level (minimum of one spell). The spells must be of a level for which you have spell slots.\nFor example, if you are a 3rd-level cleric, you have four 1st-level and two 2nd-level spell slots. With a Wisdom of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of cleric spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\nSpellcasting Ability\nWisdom is your spellcasting ability for your cleric spells. The power of your spells comes from your devotion to your deity. You use your Wisdom whenever a cleric spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a cleric spell you cast and when making an attack roll with one.\nSpell save DC= 8 + your proficiency bonus + your Wisdom modifier\nSpell attack modifier = your proficiency bonus + your Wisdom modifier\nRitual Casting\nYou can cast a cleric spell as a ritual if that spell has the ritual tag and you have the spell prepared.\nSpellcasting Focus\nYou can use a holy symbol (see @UUID[Compendium.dnd5e.rules.BYFd9hiJGo9L5aOM.JournalEntryPage.AjavRU4yPfI9hfaI]{Adventuring Gear}) as a spellcasting focus for your cleric spells.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Cleric 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/life/ankh-gold-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234436,"modifiedTime":1672335293963,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"v7MxFuTAgOsmxZCD","name":"Ability Score Improvement (Rogue)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you reach 4th level, and again at 8th, 10th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 4","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/silhouette-robe-evil-power.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234436,"modifiedTime":1672334311777,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"vt31lWAULygEl7yk","name":"Danger Sense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 2nd level, you gain an uncanny sense of when things nearby aren't as they should be, giving you an edge when you dodge away from danger.You have advantage on Dexterity saving throws against effects that you can see, such as traps and spells. To gain this benefit, you can't be blinded, deafened, or incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/wounds/injury-face-impact-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234437,"modifiedTime":1672334435989,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"wKdRtFsvGfMKQHLY","name":"Natural Recovery","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 2nd level, you can regain some of your magical energy by sitting in meditation and communing with nature.During a short rest, you choose expended spell slots to recover. The spell slots can have a combined level that is equal to or less than half your druid level (rounded up), and none of the slots can be 6th level or higher. You can't use this feature again until you finish a long rest.For example, when you are a 4th-level druid, you can recover up to two levels worth of spell slots. You can recover either a 2nd-level slot or two 1st-level slots.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"The druid can recover this number worth of spell slots (of 5th level or lower):","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"ceil(@classes.druid.levels/2)","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Circle of the Land 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/sihouette-hold-beam-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234438,"modifiedTime":1672335020386,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"wrxIW5sDfmGr3u5s","name":"Hunter's Prey","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 3rd level, you gain one of the following features of your choice.@Compendium[dnd5e.classfeatures.5gx1O0sxK08awEO9]{Colossus Slayer}@Compendium[dnd5e.classfeatures.StfmqK1twVfukpa0]{Giant Killer}@Compendium[dnd5e.classfeatures.C6sHdDGmCMo0cYHd]{Horde Breaker}","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Hunter 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/acid/dissolve-bone-skull.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234439,"modifiedTime":1674435889165,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"x637K2Icp2ZFM1TB","name":"Divine Domain","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Choose one domain related to your deity, such as Life. Your choice grants you domain spells and other features when you choose it at 1st level. It also grants you additional ways to use Channel Divinity when you gain that feature at 2nd level, and additional benefits at 6th, 8th, and 17th levels.\nDomain Spells\nEach domain has a list of spells—its domain spells—that you gain at the cleric levels noted in the domain description. Once you gain a domain spell, you always have it prepared, and it doesn't count against the number of spells you can prepare each day.\nIf you have a domain spell that doesn't appear on the cleric spell list, the spell is nonetheless a cleric spell for you.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Cleric 1","recharge":{"value":null,"charged":false}},"sort":0,"flags":{},"img":"icons/magic/nature/tree-spirit-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234439,"modifiedTime":1672334403896,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"x6IJZwr6f0SGral7","name":"Pact Magic","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your arcane research and the magic bestowed on you by your patron have given you facility with spells.\nCantrips\nYou know two cantrips of your choice from the warlock spell list. You learn additional warlock cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Warlock table.\nSpell Slots\nThe Warlock table shows how many spell slots you have. The table also shows what the level of those slots is; all of your spell slots are the same level. To cast one of your warlock spells of 1st level or higher, you must expend a spell slot. You regain all expended spell slots when you finish a short or long rest.\nFor example, when you are 5th level, you have two 3rd-level spell slots. To cast the 1st-level spell thunderwave, you must spend one of those slots, and you cast it as a 3rd-level spell.\nSpells Known of 1st Level and Higher\nAt 1st level, you know two 1st-level spells of your choice from the warlock spell list.\nThe Spells Known column of the Warlock table shows when you learn more warlock spells of your choice of 1st level and higher. A spell you choose must be of a level no higher than what's shown in the table's Slot Level column for your level. When you reach 6th level, for example, you learn a new warlock spell, which can be 1st, 2nd, or 3rd level.\nAdditionally, when you gain a level in this class, you can choose one of the warlock spells you know and replace it with another spell from the warlock spell list, which also must be of a level for which you have spell slots.\nSpellcasting Ability\nCharisma is your spellcasting ability for your warlock spells, so you use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a warlock spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Charisma modifier\nSpell attack modifier = your proficiency bonus + your Charisma modifier\nSpellcasting Focus\nYou can use an arcane focus as a spellcasting focus for your warlock spells.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Warlock 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/wounds/blood-spurt-spray-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234440,"modifiedTime":1672335002163,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"x6eEZ9GUsuOcEa3G","name":"Elemental Affinity","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 6th level, when you cast a spell that deals damage of the type associated with your draconic ancestry, you can add your Charisma modifier to one damage roll of that spell. At the same time, you can spend 1 sorcery point to gain resistance to that damage type for 1 hour.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":"1 sorcery point is also required if the resistance is desired."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@mod",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Draconic Bloodline 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/projectile-icecicles-salvo.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234440,"modifiedTime":1672334472794,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xF1VTcJ3AdkbTsdQ","name":"Action Surge","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 2nd level, you can push yourself beyond your normal limits for a moment. On your turn, you can take one additional action on top of your regular action and a possible Bonus Action.Once you use this feature, you must finish a short or long rest before you can use it again. Starting at 17th level, you can use it twice before a rest, but only once on the same turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"@scale.fighter.action-surge","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Fighter 2","recharge":{"value":null,"charged":false}},"folder":null,"sort":0,"flags":{},"img":"icons/skills/social/intimidation-impressing.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234440,"modifiedTime":1674424657568,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xNN0JMKqlG4hKVYu","name":"Channel Divinity: Sacred Weapon","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As an action, you can imbue one weapon that you are holding with positive energy, using your Channel Divinity.For 1 minute, you add your Charisma modifier to attack rolls made with that weapon (with a minimum bonus of +1). The weapon also emits bright light in a 20-foot radius and dim light 20 feet beyond that. If the weapon is not already magical, it becomes magical for the duration.You can end this effect on your turn as part of any other action. If you are no longer holding or carrying this weapon, or if you fall unconscious, this effect ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":40,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"channelDivinity"},"requirements":"Oath of Devotion 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234441,"modifiedTime":1672334353069,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xvgPu1O57DgXCM86","name":"Beast Spells","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 18th level, you can cast many of your druid spells in any shape you assume using @Compendium[dnd5e.classfeatures.swK0r5TOIxredxWS]{Wild Shape}. You can perform the somatic and verbal components of a druid spell while in a beast shape, but you aren't able to provide material components.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Druid 18","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/stinger-poison-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234441,"modifiedTime":1672334266521,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xzD9zlRP6dUxCtCl","name":"Retaliation","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 14th level, when you take damage from a creature that is within 5 feet of you, you can use your reaction to make a melee weapon attack against that creature.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Path of the Berserker 14","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234442,"modifiedTime":1672335239999,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ySMPQ6zNSlvkrl2f","name":"Divine Smite","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 2nd level, when you hit a creature with a melee weapon attack, you can expend one spell slot to deal radiant damage to the target, in addition to the weapon's damage.The extra damage is 2d8 for a 1st-level spell slot, plus 1d8 for each spell level higher than 1st, to a maximum of 5d8. The damage increases by 1d8 if the target is an undead or a fiend.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","radiant"]],"versatile":"1d8"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234442,"modifiedTime":1672334500311,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"yrSFIGTaQOH2PFRI","name":"Ki: Step of the Wind","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can spend 1 ki point to take the Disengage or Dash action as a bonus action on your turn, and your jump distance is doubled for the turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"ki"},"requirements":"Monk 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/air-wave-gust-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234443,"modifiedTime":1672334877769,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"yv49QN6Bzqs0ecCs","name":"Blessed Healer","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 6th level, the healing spells you cast on others heal you as well.When you cast a spell of 1st level or higher that restores hit points to a creature other than you, you regain hit points equal to 2 + the spell's level.Foundry NoteThe healing formula is set to 2. Please add the additional from the spell level manually.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Life Domain 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/orbs-hand-gray.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234443,"modifiedTime":1672334380243,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zB77V8BcCJvWVxck","name":"Mystic Arcanum","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 11th level, your patron bestows upon you a magical secret called an arcanum. Choose one 6th-level spell from the warlock spell list as this arcanum.You can cast your arcanum spell once without expending a spell slot. You must finish a long rest before you can do so again.At higher levels, you gain more warlock spells of your choice that can be cast in this way: one 7th-level spell at 13th level, one 8th-level spell at 15th level, and one 9th-level spell at 17th level. You regain all uses of your Mystic Arcanum when you finish a long rest.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":"","recovery":""},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Warlock 11","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/sundries/books/book-black-grey.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234444,"modifiedTime":1674435967316,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zCeqyQ8uIPNdYJSW","name":"Unarmored Movement","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 2nd level, your speed increases by 10 feet while you are not wearing armor or wielding a shield. This bonus increases when you reach certain monk levels, as shown in the Monk table.\nAt 9th level, you gain the ability to move along vertical surfaces and across liquids on your turn without falling during the move.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/root-vine-entangle-foot-green.webp","effects":[{"_id":"Veg0vXI93A0qlxZn","flags":{},"changes":[{"key":"system.attributes.movement.walk","value":"10","mode":2,"priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null,"combat":null},"icon":"icons/magic/nature/root-vine-entangle-foot-green.webp","label":"Unarmored Movement","origin":"Item.zCeqyQ8uIPNdYJSW","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234338,"modifiedTime":1672335315431,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zElYrOcCFFMhB6Xl","name":"Metamagic: Careful Spell","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you cast a spell that forces other creatures to make a saving throw, you can protect some of those creatures from the spell's full force. To do so, you spend 1 sorcery point and choose a number of those creatures up to your Charisma modifier (minimum of one creature). A chosen creature automatically succeeds on its saving throw against the spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"metamagic"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/beam-hand-leaves-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234445,"modifiedTime":1672334973777,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zSlV0O2rQMdoq6pB","name":"Fighting Style: Defense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While you are wearing armor, you gain a +1 bonus to AC","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"fightingStyle"},"requirements":"Fighter 1, Champion 10, Paladin 2, Ranger 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/equipment/shield/heater-stone-orange.webp","effects":[{"_id":"U3so0zDcVt4sIBRz","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"+1","mode":2,"priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/equipment/shield/heater-stone-orange.webp","label":"Fighting Style: Defense","origin":"Item.4mQUDmiDBePkQD6Y","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234445,"modifiedTime":1672334633452,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zUIAzBnyt0NDvVXb","name":"Invocation: Lifedrinker","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you hit a creature with your pact weapon, the creature takes extra necrotic damage equal to your Charisma modifier (minimum 1).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 12, Pact of the Blade","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/strike-sword-blood-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234446,"modifiedTime":1672334750254,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zYIdNAjqRyhS6qWs","name":"Invocation: Visions of Distant Realms","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.ImlCJQwR1VL40Qem]{Arcane Eye} at will, without expending a spell slot.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234446,"modifiedTime":1672334691507,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zbHu0NvHuII8lR7W","name":"Defensive Tactics: Steel Will","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have advantage on saving throws against being frightened.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"defensiveTactic"},"requirements":"Hunter 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/control-influence-rally-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234447,"modifiedTime":1672334416660,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"01pcLg6PRu5zGrsb","name":"Cunning Action","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 2nd level, your quick thinking and agility allow you to move and act quickly. You can take a bonus action on each of your turns in combat. This action can be used only to take the Dash, Disengage, or Hide action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/hypnosis-mesmerism-watch.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234318,"modifiedTime":1672334332370,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"06NVMYf58Z76O85O","name":"Fighting Style: Protection","type":"feat","img":"icons/magic/defensive/shield-barrier-deflect-gold.webp","system":{"description":{"value":"When a creature you can see attacks a target other than you that is within 5 feet of you, you can use your reaction to impose disadvantage on the attack roll. You must be wielding a shield.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":"Must be wearing a shield."},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"fightingStyle"},"requirements":"Fighter 1, Champion 10, Paladin 2","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234319,"modifiedTime":1672334618877,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"0C04rwyvoknvFYiy","name":"Eldritch Master","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 20th level, you can draw on your inner reserve of mystical power while entreating your patron to regain expended spell slots. You can spend 1 minute entreating your patron for aid to regain all your expended spell slots from your Pact Magic feature. Once you regain spell slots with this feature, you must finish a long rest before you can do so again.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Warlock 20","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/lightning/orb-ball-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234320,"modifiedTime":1672334475616,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"0Jgf8fYY2ExwgQpN","name":"Mindless Rage","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 6th level, you can't be charmed or frightened while raging. If you are charmed or frightened when you enter your @Compendium[dnd5e.classfeatures.VoR0SUrNX5EJVPIO]{Rage}, the effect is suspended for the duration of the rage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Path of the Berserker 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/toxins/cup-goblet-poisoned-spilled.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234321,"modifiedTime":1672334939494,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"10b6z2W1txNkrGP7","name":"Ki","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 2nd level, your training allows you to harness the mystic energy of ki. Your access to this energy is represented by a number of ki points. Your monk level equals the number of ki points you have, so a 2nd level monk has 2 ki points, a 16th level monk has 16.You can spend these points to fuel various ki features. You start knowing three such features: @Compendium[dnd5e.classfeatures.5MwNlVZK7m6VolOH]{Flurry of Blows}, @Compendium[dnd5e.classfeatures.TDglPcxIVEzvVSgK]{Patient Defense}, and @Compendium[dnd5e.classfeatures.yrSFIGTaQOH2PFRI]{Step of the Wind}. You learn more ki features as you gain levels in this class.When you spend a ki point, it is unavailable until you finish a short or long rest, at the end of which you draw all of your expended ki back into yourself. You must spend at least 30 minutes of the rest meditating to regain your ki points.Some of your ki features require your target to make a saving throw to resist the feature's effects. The saving throw DC is calculated as follows:Ki save DC = 8 + your proficiency bonus + your Wisdom modifierFoundry NoteUse this to track all the various uses of ki for the monk.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":2,"max":"@classes.monk.levels","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 2","recharge":{"value":null,"charged":false}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-beam-impact-silhouette.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234321,"modifiedTime":1672334904331,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"1DY8w3CXeD7PHDXF","name":"Multiattack: Whirlwind Attack","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can use your action to make a melee attack against any number of creatures within 5 feet of you, with a separate attack roll for each target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"multiattack"},"requirements":"Hunter 11","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/spear-tips-quintuple-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234322,"modifiedTime":1672334926871,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"1dJHU48yNqn3lcfx","name":"Ranger Archetype","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 3rd level, you choose an archetype that you strive to emulate, such as the Hunter. Your choice grants you features at 3rd level and again at 7th, 11th, and 15th level.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/root-vine-hand-strike.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234322,"modifiedTime":1672335063369,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"2fyuw7MiCnocDeAU","name":"Invocation: Agonizing Blast","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you cast @Compendium[dnd5e.spells.Z9p1vezIn95jw1Yw]{Eldritch Blast}, add your Charisma modifier to the damage it deals on a hit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2, Eldritch Blast","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/acid/projectile-stream-bubbles.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234323,"modifiedTime":1672334819802,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3647zjKSE9zFwOXc","name":"Dragon Wings","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 14th level, you gain the ability to sprout a pair of dragon wings from your back, gaining a flying speed equal to your current speed. You can create these wings as a bonus action on your turn. They last until you dismiss them as a bonus action on your turn.You can't manifest your wings while wearing armor unless the armor is made to accommodate them, and clothing not made to accommodate your wings might be destroyed when you manifest them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Draconic Bloodline 14","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/wing-batlike-white-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234324,"modifiedTime":1672334487367,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3CaP1vFHVR8LgHjx","name":"Foe Slayer","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 20th level, you become an unparalleled hunter of your enemies. Once on each of your turns, you can add your Wisdom modifier to the attack roll or the damage roll of an attack you make against one of your favored enemies. You can choose to use this feature before or after the roll, but before any effects of the roll are applied.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@mod",""]],"versatile":""},"formula":"@mod","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 20","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/projectile-arrow-fire-red-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234324,"modifiedTime":1672334609382,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3FB25qKxmkmxcxuC","name":"Land's Stride (Circle of the Land)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 6th level, moving through nonmagical difficult terrain costs you no extra movement. You can also pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard.In addition, you have advantage on saving throws against plants that are magically created or manipulated to impede movement, such those created by the @Compendium[dnd5e.spells.gMrWeG8fMDPRFiVe]{Entangle} spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Circle of the Land 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/root-vine-entangle-foot-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234325,"modifiedTime":1672334865588,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3Nc6u9pyStByuJsm","name":"Fighting Style: Great Weapon Fighting","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you roll a 1 or 2 on a damage die for an attack you make with a melee weapon that you are wielding with two hands, you can reroll the die and must use the new roll, even if the new roll is a 1 or a 2. The weapon must have the two-handed or versatile property for you to gain this benefit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"fightingStyle"},"requirements":"Fighter 1, Champion 10, Paladin 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/strike-sword-steel-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234325,"modifiedTime":1672334623705,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3VDZGs5Ug3hIE322","name":"Font of Inspiration","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning when you reach 5th level, you regain all of your expended uses of @Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiraton} when you finish a short or long rest.Foundry NoteBardic Inspiration is set to long rest recovery by default. Please edit to short rest upon reaching this level.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 5","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/sihouette-hold-beam-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234326,"modifiedTime":1672334606443,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3jwFt3hSqDswBlOH","name":"Ki: Empty Body","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 18th level, you can use your action to spend 4 ki points to become invisible for 1 minute. During that time, you also have resistance to all damage but force damage.\nAdditionally, you can spend 8 ki points to cast the @Compendium[dnd5e.spells.TIoadMIsUKD4edXi]{Astral Projection} spell, without needing material components. When you do so, you can't take any other creatures with you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":"Also requires 4 ki points (or 8 for Astral Projection)."},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"ki"},"requirements":"Monk 18","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/silhouette-stealth-shadow.webp","effects":[{"_id":"4dvYtqvbQGDsVi51","flags":{},"changes":[{"key":"system.traits.dr.value","value":"fire","mode":2,"priority":null},{"key":"system.traits.dr.value","value":"cold","mode":2,"priority":null},{"key":"system.traits.dr.value","value":"acid","mode":2,"priority":null},{"key":"system.traits.dr.value","value":"bludgeoning","mode":2,"priority":null},{"key":"system.traits.dr.value","value":"lightning","mode":2,"priority":null},{"key":"system.traits.dr.value","value":"necrotic","mode":2,"priority":null},{"key":"system.traits.dr.value","value":"piercing","mode":2,"priority":null},{"key":"system.traits.dr.value","value":"psychic","mode":2,"priority":null},{"key":"system.traits.dr.value","value":"radiant","mode":2,"priority":null},{"key":"system.traits.dr.value","value":"slashing","mode":2,"priority":null},{"key":"system.traits.dr.value","value":"thunder","mode":2,"priority":null},{"key":"system.traits.dr.value","value":"poison","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":60,"rounds":10,"turns":null,"startRound":null,"startTurn":null,"combat":null},"icon":"icons/magic/perception/silhouette-stealth-shadow.webp","label":"Ki: Empty Body","origin":"Item.xqRleciuHDZlYCl6","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234326,"modifiedTime":1672334894583,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3sN91lT1R3oxcDKd","name":"Invocation: Devil's Sight","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can see normally in darkness, both magical and nonmagical, to a distance of 120 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/silhouette-stealth-shadow.webp","effects":[{"_id":"3JYlSTG0olbm1FQC","changes":[{"key":"system.attributes.senses.darkvision","mode":4,"value":"120","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/perception/silhouette-stealth-shadow.webp","label":"Devil's Sight","origin":"Item.3sN91lT1R3oxcDKd","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234327,"modifiedTime":1672334781645,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3sYPftQKnbbVnHrh","name":"Expertise (Rogue)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 1st level, choose two of your skill proficiencies, or one of your skill proficiencies and your proficiency with thieves' tools. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies.At 6th level, you can choose two more of your proficiencies (in skills or with thieves' tools) to gain this benefit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/targeting/target-glowing-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234328,"modifiedTime":1672334544722,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"4IHsIcBhAVDt8QjY","name":"Expanded Spell List","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The Fiend lets you choose from an expanded list of spells when you learn a warlock spell. The following spells are added to the warlock spell list for you.\nFiend Expanded Spells\n\n\nSpell Level\nSpells\n\n\n\n\n1st\n@Compendium[dnd5e.spells.5SuJewoa1CRWaj1F]{Burning Hands}, @Compendium[dnd5e.spells.arzCrMRgcNiQuh43]{Command}\n\n\n2nd\n@Compendium[dnd5e.spells.zwGsAv6kmwzYGhh3]{Blindness/Deafness}, @Compendium[dnd5e.spells.7u2obDvuvtZBkTfq]{Scorching Ray}\n\n\n3rd\n@Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball}, @Compendium[dnd5e.spells.TwlD4PLcltv7Xh7j]{Stinking Cloud}\n\n\n4th\n@Compendium[dnd5e.spells.avD5XUtkBPQQR97c]{Fire Shield}, @Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire}\n\n\n5th\n@Compendium[dnd5e.spells.5e1xTohkzqFqbYH4]{Flame Strike}, @Compendium[dnd5e.spells.SLxA9QhrggTz0taU]{Hallow}\n\n\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"The Fiend 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/encase-creature-monster-hold.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234328,"modifiedTime":1672334457290,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"4UOgxzr83vFuUash","name":"Supreme Healing","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 17th level, when you would normally roll one or more dice to restore hit points with a spell, you instead use the highest number possible for each die. For example, instead of restoring 2d6 hit points to a creature, you restore 12.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Life Domain 17","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/life/cross-worn-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234330,"modifiedTime":1672335344375,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"4Vpj9vCOB37GtXk6","name":"Favored Enemy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 1st level, you have significant experience studying, tracking, hunting, and even talking to a certain type of enemy.Choose a type of favored enemy: aberrations, beasts, celestials, constructs, dragons, elementals, fey, fiends, giants, monstrosities, oozes, plants, or undead. Alternatively, you can select two races of humanoid (such as gnolls and orcs) as favored enemies.You have advantage on Wisdom (Survival) checks to track your favored enemies, as well as on Intelligence checks to recall information about them.When you gain this feature, you also learn one language of your choice that is spoken by your favored enemies, if they speak one at all.You choose one additional favored enemy, as well as an associated language, at 6th and 14th level. As you gain levels, your choices should reflect the types of monsters you have encountered on your adventures.Foundry NoteIf you wish, manually edit this entry and make a note of your choices here:1st level6th level14th level","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/dragon-breath-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234330,"modifiedTime":1672334531486,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5MwNlVZK7m6VolOH","name":"Ki: Flurry of Blows","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Immediately after you take the Attack action on your turn, you can spend 1 ki point to make two unarmed strikes as a bonus action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":"Comes immediately after taking the Attack action."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"ki"},"requirements":"Monk 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234331,"modifiedTime":1672334890974,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5gx1O0sxK08awEO9","name":"Hunter's Prey: Colossus Slayer","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your tenacity can wear down the most potent foes. When you hit a creature with a weapon attack, the creature takes an extra 1d8 damage if it's below its hit point maximum. You can deal this extra damage only once per turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"huntersPrey"},"requirements":"Hunter 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/magical/construct-iron-stomping-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234332,"modifiedTime":1672334575837,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5zPmHPQUne7RDfaU","name":"Cutting Words","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Also at 3rd level, you learn how to use your wit to distract, confuse, and otherwise sap the confidence and competence of others.When a creature that you can see within 60 feet of you makes an attack roll, an ability check, or a damage roll, you can use your reaction to expend one of your uses of @Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiraton}, rolling a Bardic Inspiration die and subtracting the number rolled from the creature's roll.You can choose to use this feature after the creature makes its roll, but before the GM determines whether the attack roll or ability check succeeds or fails, or before the creature deals its damage. The creature is immune if it can't hear you or if it's immune to being charmed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":"Target must be able to hear you and not be immune to being Charmed."},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"College of Lore 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/wounds/injury-face-impact-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234332,"modifiedTime":1672334438915,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"61kXR1sniXHjvN17","name":"Invocation: Beast Speech","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.aL1F8fvYLtNzUbKu]{Speak with Animals} at will, without expending a spell slot.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/elk-moose-marked-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234333,"modifiedTime":1672334807910,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"653ZHbNcmm7ZGXbw","name":"Indomitable","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can reroll a saving throw that you fail. If you do so, you must use the new roll, and you can't use this feature again until you finish a long rest.You can use this feature twice between long rests starting at 13th level and three times between long rests starting at 17th level.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"@scale.fighter.indomitable","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Fighter 9","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/flame-burning-fist-strike.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234333,"modifiedTime":1672334829021,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"65ReXU4ZWqcSs3Cm","name":"Invocation: Gaze of Two Minds","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can use your action to touch a willing humanoid and perceive through its senses until the end of your next turn. As long as the creature is on the same plane of existence as you, you can use your action on subsequent turns to maintain this connection, extending the duration until the end of your next turn. While perceiving through the other creature's senses, you benefit from any special senses possessed by that creature, and you are blinded and deafened to your own surroundings.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":"Target must be a willing humanoid."},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/third-eye-blue-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234334,"modifiedTime":1672334753800,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"68bYIOvx6rIqnlOW","name":"Bonus Proficiency (Life Domain)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you choose this domain at 1st level, you gain proficiency with heavy armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Life Domain 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/equipment/chest/breastplate-layered-steel.webp","effects":[{"_id":"Dk95lqbXXCUlefZW","changes":[{"key":"system.traits.armorProf.value","mode":2,"value":"hvy","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/equipment/chest/breastplate-layered-steel.webp","label":"Heavy Armor Proficiency","origin":"Item.68bYIOvx6rIqnlOW","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234335,"modifiedTime":1672334368160,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"6VBXkjjBgjSpNElh","name":"Sculpt Spells","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 2nd level, you can create pockets of relative safety within the effects of your evocation spells. When you cast an evocation spell that affects other creatures that you can see, you can choose a number of them equal to 1 + the spell's level. The chosen creatures automatically succeed on their saving throws against the spell, and they take no damage if they would normally take half damage on a successful save.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"School of Evocation 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/slimes/slime-movement-dripping-pseudopods-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234335,"modifiedTime":1672335231938,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7D2EkLdISwShEDlN","name":"Ki: Diamond Soul","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 14th level, your mastery of ki grants you proficiency in all saving throws. Additionally, whenever you make a saving throw and fail, you can spend 1 ki point to reroll it and take the second result.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"ki"},"requirements":"Monk 14","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/projectile-icecicle.webp","effects":[{"_id":"v6jhyPoAYRIIXBG1","changes":[{"key":"flags.dnd5e.diamondSoul","mode":5,"value":"true","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/water/projectile-icecicle.webp","label":"Diamond Soul","origin":"Item.PRME1bZBvnc2E0iH","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234336,"modifiedTime":1672334898763,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7O85kj6uDEG5NzUE","name":"Empowered Evocation","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 10th level, you can add your Intelligence modifier to one damage roll of any wizard evocation spell you cast.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"int","actionType":"other","attackBonus":"","chatFlavor":"The bonus to one damage roll:","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@mod",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"School of Evocation 10","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/explosion-mushroom-nuke-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234336,"modifiedTime":1672334465953,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7flZKruSSu6dHg6D","name":"Ki-Empowered Strikes","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 6th level, your unarmed strikes count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/flame-burning-fist-strike.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234337,"modifiedTime":1672334901681,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7pyZjz5vlUWV01qQ","name":"Superior Hunter's Defense: Uncanny Dodge","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When an attacker that you can see hits you with an attack, you can use your reaction to halve the attack's damage against you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":"Attacker must be visible."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"superiorHuntersDefense"},"requirements":"Hunter 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/air-wave-gust-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234337,"modifiedTime":1672335261810,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7uzJ2JkmsdRGLra3","name":"Evocation Savant","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning when you select this school at 2nd level, the gold and time you must spend to copy an evocation spell into your spellbook is halved.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"School of Evocation 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/barrier-wall-explosion-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234338,"modifiedTime":1672334460025,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7zlTRRXT1vWSBGjX","name":"Multiattack","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 11th level, you gain one of the following features of your choice.@UUID[Compendium.dnd5e.classfeatures.l7W6JB9yWLLLtQKP]{Volley}@UUID[Compendium.dnd5e.classfeatures.1DY8w3CXeD7PHDXF]{Whirlwind Attack}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Hunter 11","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/skull-trio-badge-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234339,"modifiedTime":1674435899644,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"80USV8ZFPIahpLd0","name":"Roguish Archetype","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 3rd level, you choose an archetype that you emulate in the exercise of your rogue abilities, such as Thief. Your archetype choice grants you features at 3rd level and then again at 9th, 13th, and 17th level.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/silhouette-robe-evil-power.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234339,"modifiedTime":1672335237536,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8M7uOPhbTxoxxJSo","name":"Channel Divinity (Paladin)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your oath allows you to channel divine energy to fuel magical effects. Each Channel Divinity option provided by your oath explains how to use it.When you use your Channel Divinity, you choose which option to use. You must then finish a short or long rest to use your Channel Divinity again.Some Channel Divinity effects require saving throws. When you use such an effect from this class, the DC equals your paladin spell save DC.Foundry NoteUse this to track all the various uses of Channel Divinity for the paladin.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/projectile-wave-arrow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234340,"modifiedTime":1672334361044,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8MlxM2nEfE3Q0EVk","name":"Eldritch Invocations","ownership":{"default":0},"type":"feat","system":{"description":{"value":"In your study of occult lore, you have unearthed eldritch invocations, fragments of forbidden knowledge that imbue you with an abiding magical ability.\nAt 2nd level, you gain two eldritch invocations of your choice. When you gain certain warlock levels, you gain additional invocations of your choice, as shown in the Invocations Known column in the class table.\nAdditionally, when you gain a level in this class, you can choose one of the invocations you know and replace it with another invocation that you could learn at that level.\nEldritch Invocations\nIf an eldritch invocation has prerequisites, you must meet them to learn it. You can learn the invocation at the same time that you meet its prerequisites. A level prerequisite refers to your level in this class.\nEldritch Invocations\n\n\nPrerequisites\nInvocation\n\n\nClass Level\nOther\n\n\n\n\n2nd\n@Compendium[dnd5e.spells.Z9p1vezIn95jw1Yw]{Eldritch Blast}\n@Compendium[dnd5e.classfeatures.2fyuw7MiCnocDeAU]{Agonizing Blast}\n\n\n \n@Compendium[dnd5e.classfeatures.alUqO6c6OEKFQJdb]{Armor of Shadows}\n\n\n \n@Compendium[dnd5e.classfeatures.61kXR1sniXHjvN17]{Beast Speech}\n\n\n \n@Compendium[dnd5e.classfeatures.eNvpIaSnJUdF8fHl]{Beguiling Influence}\n\n\n@Compendium[dnd5e.classfeatures.MYM908WLZ1lVvA1u]{Pact of the Tome}\n@Compendium[dnd5e.classfeatures.CFIYXDmbmSP8BXjN]{Book of Ancient Secrets}\n\n\n \n@Compendium[dnd5e.classfeatures.3sN91lT1R3oxcDKd]{Devil's Sight}\n\n\n \n@Compendium[dnd5e.classfeatures.bbUEsCPTLzbbwK6o]{Eldritch Sight}\n\n\n@Compendium[dnd5e.spells.Z9p1vezIn95jw1Yw]{Eldritch Blast}\n@Compendium[dnd5e.classfeatures.r01WtcxTg4yTHm9m]{Eldritch Spear}\n\n\n \n@Compendium[dnd5e.classfeatures.lEZKbWaVrSljRa9n]{Eyes of the Rune Keeper}\n\n\n \n@Compendium[dnd5e.classfeatures.id0gmGvzNZBEdzbx]{Fiendish Vigor}\n\n\n \n@Compendium[dnd5e.classfeatures.65ReXU4ZWqcSs3Cm]{Gaze of Two Minds}\n\n\n \n@Compendium[dnd5e.classfeatures.MhJfdBl1B7PdU4oZ]{Mask of Many Faces}\n\n\n \n@Compendium[dnd5e.classfeatures.k5DU0mMuYVHejiqz]{Misty Visions}\n\n\n@Compendium[dnd5e.spells.Z9p1vezIn95jw1Yw]{Eldritch Blast}\n@Compendium[dnd5e.classfeatures.rdBPd6CwqXT64iJM]{Repelling Blast}\n\n\n \n@Compendium[dnd5e.classfeatures.rhbwDZ9XNTmdkX2u]{Thief of Five Fates}\n\n\n@Compendium[dnd5e.classfeatures.Ic1CSjvbWKudVUv9]{Pact of the Chain}\n@Compendium[dnd5e.classfeatures.k5M8gsl7MMcdjOjs]{Voice of the Chain Master}\n\n\n5th\n \n@Compendium[dnd5e.classfeatures.DjXi0IkCTbJx1gsp]{Mire the Mind}\n\n\n \n@Compendium[dnd5e.classfeatures.KfnUyjUWAk0bAAus]{One With Shadows}\n\n\n \n@Compendium[dnd5e.classfeatures.dTSV0xZMpY5CxkRk]{Sign of Ill Omen}\n\n\n@Compendium[dnd5e.classfeatures.9dSSa68mIPoX2ezA]{Pact of the Blade}\n@Compendium[dnd5e.classfeatures.pJADgAxxefgcATWr]{Thirsting Blade}\n\n\n7th\n \n@Compendium[dnd5e.classfeatures.KygHql3cTj4IRrvZ]{Bewitching Whispers}\n\n\n \n@Compendium[dnd5e.classfeatures.QBk1RsuTIEF4GEBC]{Dreadful Word}\n\n\n \n@Compendium[dnd5e.classfeatures.Xa2MLUJGCReJ28B7]{Sculptor of Flesh}\n\n\n9th\n \n@Compendium[dnd5e.classfeatures.QEuH5TeBN4PPYT2g]{Ascendant Step}\n\n\n \n@Compendium[dnd5e.classfeatures.QnRKYXb2bXpnNd2k]{Minions of Chaos}\n\n\n \n@Compendium[dnd5e.classfeatures.8zciiglzEOZo7DDN]{Otherwordly Leap}\n\n\n \n@Compendium[dnd5e.classfeatures.gFjxo01hAN4c9hDG]{Whispers of the Grave}\n\n\n12th\n@Compendium[dnd5e.classfeatures.9dSSa68mIPoX2ezA]{Pact of the Blade}\n@Compendium[dnd5e.classfeatures.zUIAzBnyt0NDvVXb]{Life Drinker}\n\n\n15th\n@Compendium[dnd5e.classfeatures.Ic1CSjvbWKudVUv9]{Pact of the Chain}\n@Compendium[dnd5e.classfeatures.Phy02H5x0TKHd7T3]{Chains of Carceri}\n\n\n \n@Compendium[dnd5e.classfeatures.lxfdjLer3uKjyZqU]{Master of Myriad Forms}\n\n\n \n@Compendium[dnd5e.classfeatures.zYIdNAjqRyhS6qWs]{Visions of Distant Realms}\n\n\n \n@Compendium[dnd5e.classfeatures.snsjxGfmzWfZR5Nh]{Witch Sight}\n\n\n\n\nFoundry Note\nYou can drag your choices onto your character sheet and it will automatically update.\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"folder":null,"sort":0,"flags":{},"img":"icons/magic/unholy/strike-hand-glow-pink.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234340,"modifiedTime":1672334479180,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8YwPFv3UAPjWVDNf","name":"Fighting Style: Archery","type":"feat","img":"icons/weapons/bows/shortbow-recurve-yellow.webp","system":{"description":{"value":"You gain a +2 bonus to attack rolls you make with ranged weapons","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"fightingStyle"},"requirements":"Fighter 1, Champion 10, Ranger 2","recharge":{"value":null,"charged":false}},"effects":[{"_id":"F0Bh4n8Tu1ZZnwSr","flags":{},"changes":[{"key":"system.bonuses.rwak.attack","mode":2,"value":"+2","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/weapons/bows/shortbow-recurve-yellow.webp","label":"Fighting Style: Archery","origin":"Item.SDsWYh0xtS6nWuH8","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234341,"modifiedTime":1672334637061,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8fbZt2Qh7ZttwIan","name":"Natural Explorer","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You are particularly familiar with one type of natural environment and are adept at traveling and surviving in such regions. Choose one type of favored terrain: arctic, coast, desert, forest, grassland, mountain, or swamp. When you make an Intelligence or Wisdom check related to your favored terrain, your proficiency bonus is doubled if you are using a skill that you're proficient in.While traveling for an hour or more in your favored terrain, you gain the following benefits:Difficult terrain doesn't slow your group's travel.Your group can't become lost except by magical means.Even when you are engaged in another activity while traveling (such as foraging, navigating, or tracking), you remain alert to danger.If you are traveling alone, you can move stealthily at a normal pace.When you forage, you find twice as much food as you normally would.While tracking other creatures, you also learn their exact number, their sizes, and how long ago they passed through the area.You choose additional favored terrain types at 6th and 10th level.Foundry NoteIf it would be helpful, manually edit this entry and make a note of your choices here:1st level6th level10th level","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/tree-roots-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234342,"modifiedTime":1672335023411,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8zciiglzEOZo7DDN","name":"Invocation: Otherworldly Leap","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.ZrTc23tToJ0JpH2h]{Jump} on yourself at will, without expending a spell slot or material components.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 9","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/beam-strike-orange-gold.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234342,"modifiedTime":1672334718289,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9UZ2WjUF2k58CQug","name":"Fiendish Resilience","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 10th level, you can choose one damage type when you finish a short or long rest. You gain resistance to that damage type until you choose a different one with this feature. Damage from magical weapons or silver weapons ignores this resistance.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"The Fiend 10","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/armor-stone-skin.webp","effects":[{"_id":"reg3sjReHspgkd0I","flags":{},"changes":[{"key":"system.traits.dr.custom","value":"Fiendish Resilience","mode":2,"priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null,"combat":null},"icon":"icons/magic/defensive/armor-stone-skin.webp","label":"Fiendish Resilience","origin":"Item.C2lYHOGH2UpEifk7","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234343,"modifiedTime":1672334524883,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9Uh7uTDNZ04oTJsL","name":"Metamagic","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 3rd level, you gain the ability to twist your spells to suit your needs. You gain two of the following Metamagic options of your choice. You gain another one at 10th and 17th level. You can use only one Metamagic option on a spell when you cast it, unless otherwise noted.\n@UUID[Compendium.dnd5e.classfeatures.zElYrOcCFFMhB6Xl]{Careful Spell}\n@UUID[Compendium.dnd5e.classfeatures.DZpAa3LzMNBexbmX]{Distant Spell}\n@UUID[Compendium.dnd5e.classfeatures.IWpe0Y9uAStHGiH1]{Empowered Spell}\n@UUID[Compendium.dnd5e.classfeatures.tQxlKyAx9sgPrbgj]{Extended Spell}\n@UUID[Compendium.dnd5e.classfeatures.tNG2qi9zhmXEkecA]{Heightened Spell}\n@UUID[Compendium.dnd5e.classfeatures.nViGf6bZ6DQAJhkw]{Quickened Spell}\n@UUID[Compendium.dnd5e.classfeatures.fXa0DMhoVLtbBu9l]{Subtle Spell}\n@UUID[Compendium.dnd5e.classfeatures.Qb391hakCfmH4w8p]{Twinned Spell}\n\nFoundry Note\nYou can drag your choices from the above onto your character sheet and it will automatically update.\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"folder":null,"sort":0,"flags":{},"img":"icons/magic/unholy/orb-colllecting-energy-green.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234343,"modifiedTime":1672334976301,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9dSSa68mIPoX2ezA","name":"Pact of the Blade","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can use your action to create a pact weapon in your empty hand. You can choose the form that this melee weapon takes each time you create it. You are proficient with it while you wield it. This weapon counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.Your pact weapon disappears if it is more than 5 feet away from you for 1 minute or more. It also disappears if you use this feature again, if you dismiss the weapon (no action required), or if you die.You can transform one magic weapon into your pact weapon by performing a special ritual while you hold the weapon. You perform the ritual over the course of 1 hour, which can be done during a short rest. You can then dismiss the weapon, shunting it into an extradimensional space, and it appears whenever you create your pact weapon thereafter. You can't affect an artifact or a sentient weapon in this way. The weapon ceases being your pact weapon if you die, if you perform the 1-hour ritual on a different weapon, or if you use a 1-hour ritual to break your bond to it. The weapon appears at your feet if it is in the extradimensional space when the bond breaks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"pact"},"requirements":"Warlock 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234344,"modifiedTime":1672335380640,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"AEWr9EMxy5gj4ZFT","name":"Arcane Tradition","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you reach 2nd level, you choose an arcane tradition, shaping your practice of magic through one of eight schools, such as Evocation.Your choice grants you features at 2nd level and again at 6th, 10th, and 14th level.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Wizard 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/orb-ice-glow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234344,"modifiedTime":1672334289832,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ANE5gjojvhNEagzz","name":"Holy Nimbus","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 20th level, as an action, you can emanate an aura of sunlight. For 1 minute, bright light shines from you in a 30-foot radius, and dim light shines 30 feet beyond that. Whenever an enemy creature starts its turn in the bright light, the creature takes 10 radiant damage.In addition, for the duration, you have advantage on saving throws against spells cast by fiends or undead.Once you use this feature, you can't use it again until you finish a long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":30,"long":60,"units":"ft"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Oath of Devotion 20","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-star-glow-blue-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234345,"modifiedTime":1672334581365,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"C5fzaOBc6HxyOWRn","name":"Land's Stride (Ranger)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 8th level, moving through nonmagical difficult terrain costs you no extra movement. You can also pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard.In addition, you have advantage on saving throws against plants that are magically created or manipulated to impede movement, such those created by the @Compendium[dnd5e.spells.gMrWeG8fMDPRFiVe]{Entangle} spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 8","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/root-vine-entangle-foot-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234345,"modifiedTime":1672334858318,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"C6sHdDGmCMo0cYHd","name":"Hunter's Prey: Horde Breaker","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Once on each of your turns when you make a weapon attack, you can make another attack with the same weapon against a different creature that is within 5 feet of the original target and within range of your weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"huntersPrey"},"requirements":"Hunter 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/explosion-embers-evade-silhouette.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234347,"modifiedTime":1672334566530,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"CFIYXDmbmSP8BXjN","name":"Invocation: Book of Ancient Secrets","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can now inscribe magical rituals in your Book of Shadows. Choose two 1st-level spells that have the ritual tag from any class's spell list (the two needn't be from the same list). The spells appear in the book and don't count against the number of spells you know. With your Book of Shadows in hand, you can cast the chosen spells as rituals. You can't cast the spells except as rituals, unless you've learned them by some other means. You can also cast a warlock spell you know as a ritual if it has the ritual tag.On your adventures, you can add other ritual spells to your Book of Shadows. When you find such a spell, you can add it to the book if the spell's level is equal to or less than half your warlock level (rounded up) and if you can spare the time to transcribe the spell. For each level of the spell, the transcription process takes 2 hours and costs 50 gp for the rare inks needed to inscribe it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 3, Pact of the Tome","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/sundries/books/book-embossed-clasp-gold-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234347,"modifiedTime":1672334793588,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"CkbbAckeCtyHXEnL","name":"Frenzy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting when you choose this path at 3rd level, you can go into a frenzy when you @Compendium[dnd5e.classfeatures.VoR0SUrNX5EJVPIO]{Rage}. If you do so, for the duration of your rage you can make a single melee weapon attack as a bonus action on each of your turns after this one. When your rage ends, you suffer one level of exhaustion (as described in appendix A).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Path of the Berserker 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/wounds/anatomy-organ-heart-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234348,"modifiedTime":1672334589172,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"DPN2Gfk8yi1Z5wp7","name":"Sneak Attack","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 1st level, you know how to strike subtly and exploit a foe's distraction. Once per turn, you can deal an extra 1d6 damage to one creature you hit with an attack if you have advantage on the attack roll. The attack must use a finesse or a ranged weapon.You don't need advantage on the attack roll if another enemy of the target is within 5 feet of it, that enemy isn't incapacitated, and you don't have disadvantage on the attack roll.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@scale.rogue.sneak-attack",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/strike-dagger-arcane-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234348,"modifiedTime":1672335213304,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"DZpAa3LzMNBexbmX","name":"Metamagic: Distant Spell","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you cast a spell that has a range of 5 feet or greater, you can spend 1 sorcery point to double the range of the spell.When you cast a spell that has a range of touch, you can spend 1 sorcery point to make the range of the spell 30 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"metamagic"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/targeting/target-strike-triple-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234349,"modifiedTime":1672334970101,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"DhU2dWCNnX78TstR","name":"Vanish","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 14th level, you can use the Hide action as a bonus action on your turn. Also, you can't be tracked by nonmagical means, unless you choose to leave a trail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 14","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/silhouette-stealth-shadow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234349,"modifiedTime":1672335361732,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"DjXi0IkCTbJx1gsp","name":"Invocation: Mire the Mind","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.yqUDoxk4x0NWG5Bz]{Slow} once using a warlock spell slot. You can't do so again until you finish a long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":40,"width":null,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"cha"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 5","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/time/clock-stopwatch-white-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234350,"modifiedTime":1672334733729,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Dop1RcU5UdhSVLYS","name":"Grappler","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Prerequisite: Strength 13 or higher You've developed the skills necessary to hold your own in close-quarters grappling.You gain the following benefits:\n\nYou have advantage on attack rolls against a creature you are grappling.\nYou can use your action to try to pin a creature grappled by you. To do so, make another grapple check. If you succeed, you and the creature are both restrained until the grapple ends.\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"feat","subtype":""},"requirements":"STR 13 or higher","recharge":{"value":null,"charged":false}},"sort":0,"flags":{},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234351,"modifiedTime":1672334596059,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"E8ozg8avUVOX9N7u","name":"Divine Sense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The presence of strong evil registers on your senses like a noxious odor, and powerful good rings like heavenly music in your ears. As an action, you can open your awareness to detect such forces. Until the end of your next turn, you know the location of any celestial, fiend, or undead within 60 feet of you that is not behind total cover. You know the type (celestial, fiend, or undead) of any being whose presence you sense, but not its identity (the vampire Count Strahd von Zarovich, for instance). Within the same radius, you also detect the presence of any place or object that has been consecrated or desecrated, as with the @Compendium[dnd5e.spells.SLxA9QhrggTz0taU]{Hallow} spell.You can use this feature a number of times equal to 1 + your Charisma modifier. When you finish a long rest, you regain all expended uses.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1 + @abilities.cha.mod","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/eyes/human-single-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234352,"modifiedTime":1672334396363,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"EZsonMThTNLZq35j","name":"Dragon Ancestor","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 1st level, you choose one type of dragon as your ancestor. The damage type associated with each dragon is used by features you gain later.DragonDamage TypeBlackAcidBlueLightningBrassFireBronzeLightningCopperAcidGoldFireGreenPoisonRedFireSilverColdWhiteColdYou can speak, read, and write Draconic. Additionally, whenever you make a Charisma check when interacting with dragons, your proficiency bonus is doubled if it applies to the check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Draconic Bloodline 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","effects":[{"_id":"xI5jjbA2Dlj7L0cd","changes":[{"key":"system.traits.languages.value","mode":2,"value":"draconic","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/abilities/dragon-fire-breath-orange.webp","label":"Dragon Ancestor","origin":"Item.EZsonMThTNLZq35j","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234352,"modifiedTime":1672334489889,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Ei1Oh4UAA2E30jcD","name":"Supreme Sneak","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 9th level, you have advantage on a Dexterity (Stealth) check if you move no more than half your speed on the same turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Thief 9","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/silhouette-stealth-shadow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234353,"modifiedTime":1672335342178,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"EuX1kJNIw1F68yus","name":"Nature's Sanctuary","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you reach 14th level, creatures of the natural world sense your connection to nature and become hesitant to attack you.When a beast or plant creature attacks you, that creature must make a Wisdom saving throw against your druid spell save DC. On a failed save, the creature must choose a different target, or the attack automatically misses. On a successful save, the creature is immune to this effect for 24 hours.The creature is aware of this effect before it makes its attack against you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"wis"},"type":{"value":"class","subtype":""},"requirements":"Circle of the Land 14","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/encase-creature-humanoid-hold.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234353,"modifiedTime":1672335017811,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"F2lEKSmOY0NUruzY","name":"Sorcerous Restoration","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 20th level, you regain 4 expended sorcery points whenever you finish a short rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Sorcerer 20","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/orb-water-ice-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234354,"modifiedTime":1672335205435,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FAk41RPCTcvCk6KI","name":"Improved Divine Smite","ownership":{"default":0},"type":"feat","system":{"description":{"value":"By 11th level, you are so suffused with righteous might that all your melee weapon strikes carry divine power with them.Whenever you hit a creature with a melee weapon, the creature takes an extra 1d8 radiant damage. If you also use your @Compendium[dnd5e.classfeatures.ySMPQ6zNSlvkrl2f]{Divine Smite} with an attack, you add this damage to the extra damage of your Divine Smite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 11","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/symbols/cog-shield-white-blue.webp","effects":[{"_id":"yvLL91omI6kHMHau","changes":[{"key":"system.bonuses.mwak.damage","mode":2,"value":"+1d8[Radiant]","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/symbols/cog-shield-white-blue.webp","label":"Improved Divine Smite","origin":"Item.FAk41RPCTcvCk6KI","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234354,"modifiedTime":1672334830939,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FGrbXs6Ku5qxFK5G","name":"Second-Story Work","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you choose this archetype at 3rd level, you gain the ability to climb faster than normal; climbing no longer costs you extra movement.In addition, when you make a running jump, the distance you cover increases by a number of feet equal to your Dexterity modifier.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Thief 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/environment/settlement/stone-stairs.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234355,"modifiedTime":1672335225716,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FqfmbPgxiyrWzhYk","name":"Relentless Rage","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 11th level, your rage can keep you fighting despite grievous wounds.If you drop to 0 hit points while you're raging and don't die outright, you can make a DC 10 Constitution saving throw. If you succeed, you drop to 1 hit point instead.Each time you use this feature after the first, the DC increases by 5. When you finish a short or long rest, the DC resets to 10.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":10,"scaling":"flat"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 11","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/social/intimidation-impressing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234355,"modifiedTime":1672335059193,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"GBYN5rH4nh1ocRlY","name":"Superior Inspiration","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 20th level, when you roll initiative and have no uses of @Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiraton} left, you regain one use.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 20","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/earth/explosion-lava-stone-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234356,"modifiedTime":1672335255120,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Gsha4bl0apxqspFy","name":"Draconic Presence","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 18th level, you can channel the dread presence of your dragon ancestor, causing those around you to become awestruck or frightened. As an action, you can spend 5 sorcery points to draw on this power and exude an aura of awe or fear (your choice) to a distance of 60 feet. For 1 minute or until you lose your concentration (as if you were casting a concentration spell), each hostile creature that starts its turn in this aura must succeed on a Wisdom saving throw or be charmed (if you chose awe) or frightened (if you chose fear) until the aura ends. A creature that succeeds on this saving throw is immune to your aura for 24 hours.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":"Also requires 5 sorcery points."},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"cha"},"type":{"value":"class","subtype":""},"requirements":"Draconic Bloodline 18","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/acid/projectile-smoke-glowing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234356,"modifiedTime":1672334494844,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Fighting Style (Paladin)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You adopt a particular style of fighting as your specialty. Choose one of the following options from the appropriate class list. You can't take a Fighting Style option more than once, even if you later get to choose again.\n@Compendium[dnd5e.classfeatures.zSlV0O2rQMdoq6pB]{Defense}\n@Compendium[dnd5e.classfeatures.hCop9uJrWhF1QPb4]{Dueling}\n@Compendium[dnd5e.classfeatures.3Nc6u9pyStByuJsm]{Great Weapon Fighting}\n@Compendium[dnd5e.classfeatures.06NVMYf58Z76O85O]{Protection}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-daggers-orange.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661275426430,"modifiedTime":1672334519140,"lastModifiedBy":"dnd5ebuilder0000"},"folder":null,"sort":0,"_id":"Ho7dVxBlOYFlfBHk"} +{"_id":"ILhzFHiRrqgQ9dFJ","name":"Bard College","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 3rd level, you delve into the advanced techniques of a bard college of your choice, such as the College of Lore. Your choice grants you features at 3rd level and again at 6th and 14th level.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/hand-sparks-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234357,"modifiedTime":1672334274947,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"IWpe0Y9uAStHGiH1","name":"Metamagic: Empowered Spell","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you roll damage for a spell, you can spend 1 sorcery point to reroll a number of the damage dice up to your Charisma modifier (minimum of one). You must use the new rolls.You can use Empowered Spell even if you have already used a different Metamagic option during the casting of the spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"metamagic"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-tornado-wall-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234358,"modifiedTime":1672334966310,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Ic1CSjvbWKudVUv9","name":"Pact of the Chain","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You learn the @Compendium[dnd5e.spells.JGT5bNqu9REL7Fuz]{Find Familiar} spell and can cast it as a ritual. The spell doesn't count against your number of spells known. When you cast the spell, you can choose one of the normal forms for your familiar or one of the following special forms: @Compendium[dnd5e.monsters.dLQiESMsfsXijD5c]{Imp}, pseudodragon, @Compendium[dnd5e.monsters.bwtkdzavdNHISgp4]{Quasit}, or @Compendium[dnd5e.monsters.MUpBNDoJEr09bLaO]{Sprite}.Additionally, when you take the Attack action, you can forgo one of your own attacks to allow your familiar to make one attack of its own with its reaction.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"pact"},"requirements":"Warlock 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/debuff-chains-shackle-movement-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234359,"modifiedTime":1672335384062,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"JfFfHTeIszx1hNRx","name":"Spell Mastery","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 18th level, you have achieved such mastery over certain spells that you can cast them at will. Choose a 1st-level wizard spell and a 2nd-level wizard spell that are in your spellbook. You can cast those spells at their lowest level without expending a spell slot when you have them prepared. If you want to cast either spell at a higher level, you must expend a spell slot as normal.By spending 8 hours in study, you can exchange one or both of the spells you chose for different spells of the same levels.Foundry NoteIf you wish, manually edit this entry and make a note of your choices here:1st level spell2nd level spell","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Wizard 18","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/beam-impact-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234359,"modifiedTime":1672335202641,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Jv0zu4BtUi8bFCqJ","name":"Dark One's Blessing","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 1st level, when you reduce a hostile creature to 0 hit points, you gain temporary hit points equal to your Charisma modifier + your warlock level (minimum of 1).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["max(1, @mod + @classes.warlock.levels)","temphp"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"The Fiend 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/wounds/blood-cells-disease-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234360,"modifiedTime":1672334433343,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KQz9bqxVkXjDl8gK","name":"Slow Fall","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 4th level, you can use your reaction when you fall to reduce any falling damage you take by an amount equal to five times your monk level.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"5* @classes.monk.levels","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 4","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/pseudopod-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234360,"modifiedTime":1672335215581,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KfnUyjUWAk0bAAus","name":"Invocation: One With Shadows","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you are in an area of dim light or darkness, you can use your action to become invisible until you move or take an action or a reaction.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 5","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/silhouette-robe-evil-power.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234361,"modifiedTime":1672334722931,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Kl6zifJ5OmdHlOi2","name":"Fast Movement","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your speed increases by 10 feet while you aren't wearing heavy armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 5","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[{"_id":"TIBmPKKnAAiWYuN4","changes":[{"key":"system.attributes.movement.walk","mode":2,"value":"10","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/skills/movement/feet-winged-boots-brown.webp","label":"Fast Movement","origin":"Item.Kl6zifJ5OmdHlOi2","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234361,"modifiedTime":1672334533843,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KygHql3cTj4IRrvZ","name":"Invocation: Bewitching Whispers","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.P6f1PPKPd9BCb742]{Compulsion} once using a warlock spell slot. You can't do so again until you finish a long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"cha"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-vortex-swirl-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234362,"modifiedTime":1672334800107,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"L7nJSRosos8sHJH9","name":"Elusive","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 18th level, you are so evasive that attackers rarely gain the upper hand against you. No attack roll has advantage against you while you aren't incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 18","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/slimes/slime-movement-swirling-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234362,"modifiedTime":1672334469051,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"L94gyvNpUhUe0rwh","name":"Brutal Critical","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 9th level, you can roll one additional weapon damage die when determining the extra damage for a critical hit with a melee attack. This increases to two additional dice at 13th level and three additional dice at 17th level.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 9","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/strike-axe-blood-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234363,"modifiedTime":1672334366181,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LBKChJY5n02Afhnq","name":"Font of Magic","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 2nd level, you tap into a deep wellspring of magic within yourself. This wellspring is represented by sorcery points, which allow you to create a variety of magical effects.Sorcery PointsYou have 2 sorcery points, and you gain more as you reach higher levels. Your sorcerer level equals the number of sorcery points you have, so a 4th level sorcerer has 4 sorcery points, a 16th level sorcerer has 16. You can never have more sorcery points than your level dictates. You regain all spent sorcery points when you finish a long rest.Flexible CastingYou can use your sorcery points to gain additional spell slots, or sacrifice spell slots to gain additional sorcery points. You learn other ways to use your sorcery points as you reach higher levels.Creating Spell Slots.You can transform unexpended sorcery points into one spell slot as a bonus action on your turn. The Creating Spell Slots table shows the cost of creating a spell slot of a given level. You can create spell slots no higher in level than 5th.Any spell slot you create with this feature vanishes when you finish a long rest.Creating Spell SlotsSpell Slot LevelSorcery Point Cost1st22nd33rd54th65th7Converting a Spell Slot to Sorcery Points. As a bonus action on your turn, you can expend one spell slot and gain a number of sorcery points equal to the slot's level.Foundry NoteUse this to track all the various uses of sorcery points for the sorcerer.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":2,"max":"@classes.sorcerer.levels","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Sorcerer 2","recharge":{"value":null,"charged":false}},"sort":0,"flags":{},"img":"icons/magic/control/silhouette-hold-change-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234363,"modifiedTime":1672334604066,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LhRm1EeUMvp2EWhV","name":"Thief's Reflexes","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you reach 17th level, you have become adept at laying ambushes and quickly escaping danger. You can take two turns during the first round of any combat. You take your first turn at your normal initiative and your second turn at your initiative minus 10. You can't use this feature when you are surprised.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Thief 17","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/lightning/bolt-strike-beam-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234364,"modifiedTime":1672335337792,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LzJ5ayHt0OlSVGxi","name":"Druidic","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You know Druidic, the secret language of druids. You can speak the language and use it to leave hidden messages. You and others who know this language automatically spot such a message. Others spot the message's presence with a successful DC 15 Wisdom (Perception) check but can't decipher it without magic.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Druid 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/sundries/documents/document-torn-diagram-tan.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234364,"modifiedTime":1699988234529,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"M2DxVsgLeZgXOznT","name":"Aura of Devotion","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 7th level, you and friendly creatures within 10 feet of you can't be charmed while you are conscious.At 18th level, the range of this aura increases to 30 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":10,"long":30,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Oath of Devotion 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/life/heart-glowing-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234365,"modifiedTime":1672334280488,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"M6VSMzVtKPhh8B0i","name":"Intimidating Presence","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 10th level, you can use your action to frighten someone with your menacing presence.When you do so, choose one creature that you can see within 30 feet of you. If the creature can see or hear you, it must succeed on a Wisdom saving throw (DC equal to 8 + your proficiency bonus + your Charisma modifier) or be frightened of you until the end of your next turn. On subsequent turns, you can use your action to extend the duration of this effect on the frightened creature until the end of your next turn. This effect ends if the creature ends its turn out of line of sight or more than 60 feet away from you.If the creature succeeds on its saving throw, you can't use this feature on that creature again for 24 hours.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"cha"},"type":{"value":"class","subtype":""},"requirements":"Path of the Berserker 10","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/magical/construct-iron-stomping-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234365,"modifiedTime":1672334822316,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MW1ExvBLm8Hg82aA","name":"Draconic Resilience","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As magic flows through your body, it causes physical traits of your dragon ancestors to emerge. At 1st level, your hit point maximum increases by 1 and increases by 1 again whenever you gain a level in this class.Additionally, parts of your skin are covered by a thin sheen of dragon-like scales. When you aren't wearing armor, your AC equals 13 + your Dexterity modifier.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Draconic Bloodline 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/claws/claw-scaled-red.webp","effects":[{"_id":"Pu89Tsgy2FJjYPQi","changes":[{"key":"system.attributes.ac.calc","mode":5,"value":"draconic","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/claws/claw-scaled-red.webp","label":"Draconic Resilience","origin":"Item.MW1ExvBLm8Hg82aA","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234366,"modifiedTime":1672334491854,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MYM908WLZ1lVvA1u","name":"Pact of the Tome","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your patron gives you a grimoire called a Book of Shadows. When you gain this feature, choose three cantrips from any class's spell list (the three needn't be from the same list). While the book is on your person, you can cast those cantrips at will. They don't count against your number of cantrips known. If they don't appear on the warlock spell list, they are nonetheless warlock spells for you.If you lose your Book of Shadows, you can perform a 1-hour ceremony to receive a replacement from your patron. This ceremony can be performed during a short or long rest, and it destroys the previous book. The book turns to ash when you die.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"pact"},"requirements":"Warlock 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/sundries/books/book-embossed-jewel-gold-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234366,"modifiedTime":1672335387316,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MhJfdBl1B7PdU4oZ","name":"Invocation: Mask of Many Faces","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.A3q2gTNqG6fvNGrv]{Disguise Self} at will, without expending a spell slot.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/magical/spirit-undead-masked-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234367,"modifiedTime":1672334746734,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Mm64SKAHJWYecgXS","name":"Uncanny Dodge","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 5th level, when an attacker that you can see hits you with an attack, you can use your reaction to halve the attack's damage against you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 5","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234368,"modifiedTime":1672335313472,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NMy4piwXIpLjYbRE","name":"Destroy Undead","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 5th level, when an undead fails its saving throw against your @Compendium[dnd5e.classfeatures.r91UIgwFdHwkXdia]{Turn Undead} feature, the creature is instantly destroyed if its challenge rating is at or below a certain threshold, as shown in the table below.\n\n\n\nCleric Level\nDestroys Undead of CR...\n\n\n5th\n1/2 or lower\n\n\n8th\n1 or lower\n\n\n11th\n2 or lower\n\n\n14th\n3 or lower\n\n\n17th\n4 or lower\n\n\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Cleric 5","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/skull-horned-worn-fire-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234368,"modifiedTime":1672334409107,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NlXslw4yAqmKZWtN","name":"Feral Instinct","ownership":{"default":0},"type":"feat","system":{"description":{"value":"By 7th level, your instincts are so honed that you have advantage on initiative rolls.Additionally, if you are surprised at the beginning of combat and aren't incapacitated, you can act normally on your first turn, but only if you enter your rage before doing anything else on that turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","effects":[{"_id":"q7TkJQX7PeVOzTQH","changes":[{"key":"flags.dnd5e.initiativeAdv","mode":5,"value":"true","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","label":"Feral Instinct","origin":"Item.o1i0LwvZQPm0Bxpa","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234369,"modifiedTime":1672334529716,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NqWyHE7Rpw9lyKWu","name":"Use Magic Device","ownership":{"default":0},"type":"feat","system":{"description":{"value":"By 13th level, you have learned enough about the workings of magic that you can improvise the use of items even when they are not intended for you. You ignore all class, race, and level requirements on the use of magic items.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Thief 13","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/flame-burning-chain.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234369,"modifiedTime":1672335311225,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"OQSb0bO1yDI4aiMx","name":"Dark One's Own Luck","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 6th level, you can call on your patron to alter fate in your favor. When you make an ability check or a saving throw, you can use this feature to add a d10 to your roll. You can do so after seeing the initial roll but before any of the roll's effects occur.Once you use this feature, you can't use it again until you finish a short or long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d10","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"The Fiend 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/unholy/demon-fanged-horned-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234370,"modifiedTime":1672334430325,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"OTvrJSJSUgAwXrWX","name":"Nature's Ward","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you reach 10th level, you can't be charmed or frightened by elementals or fey, and you are immune to poison and disease.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Circle of the Land 10","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/commodities/flowers/lotus-pink.webp","effects":[{"_id":"Jxpz4MZmgTy7z7cm","changes":[{"key":"system.traits.ci.value","mode":2,"value":"diseased","priority":null},{"key":"system.traits.ci.value","mode":2,"value":"poisoned","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/commodities/flowers/lotus-pink.webp","label":"Nature's Ward","origin":"Item.OTvrJSJSUgAwXrWX","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234370,"modifiedTime":1672335015060,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"OdrvL3afwLOPeuYZ","name":"Lay on Hands","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your blessed touch can heal wounds. You have a pool of healing power that replenishes when you take a long rest. With that pool, you can restore a total number of hit points equal to your paladin level × 5.As an action, you can touch a creature and draw power from the pool to restore a number of hit points to that creature, up to the maximum amount remaining in your pool.Alternatively, you can expend 5 hit points from your pool of healing to cure the target of one disease or neutralize one poison affecting it. You can cure multiple diseases and neutralize multiple poisons with a single use of Lay on Hands, expending hit points separately for each one.This feature has no effect on undead and constructs.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":"Target cannot be Undead or a Construct."},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":5,"max":"5 * @classes.paladin.levels","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/orbs-hand-gray.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234371,"modifiedTime":1672334855885,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Phy02H5x0TKHd7T3","name":"Invocation: Chains of Carceri","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.l9Ju5KE7bbn3WpTm]{Hold Monster} at will - targeting a celestial, fiend, or elemental - without expending a spell slot or material components. You must finish a long rest before you can use this invocation on the same creature again.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"cha"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 15, Pact of the Chain","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/strike-flail-spiked-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234371,"modifiedTime":1672334786402,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Q1exex5ALteprrPo","name":"Indomitable Might","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 18th level, if your total for a Strength check is less than your Strength score, you can use that score in place of the total.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 18","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234372,"modifiedTime":1672334825900,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Q7mOdk4b1lgjcptF","name":"Wholeness of Body","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 6th level, you gain the ability to heal yourself. As an action, you can regain hit points equal to three times your monk level. You must finish a long rest before you can use this feature again.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3 * @classes.monk.levels","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Way of the Open Hand 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/life/heart-glowing-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234372,"modifiedTime":1674436155963,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"QBVmY56RMQuh6C8h","name":"Feral Senses","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 18th level, you gain preternatural senses that help you fight creatures you can't see. When you attack a creature you can't see, your inability to see it doesn't impose disadvantage on your attack rolls against it.You are also aware of the location of any invisible creature within 30 feet of you, provided that the creature isn't hidden from you and you aren't blinded or deafened.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 18","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/life/heart-shadow-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234373,"modifiedTime":1672334526998,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"QBk1RsuTIEF4GEBC","name":"Invocation: Dreadful Word","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.9hQXdMSmerkTsHDe]{Confusion} once using a warlock spell slot. You can't do so again until you finish a long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"sphere"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"cha"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-vortex-swirl-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234374,"modifiedTime":1672334777594,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"QEuH5TeBN4PPYT2g","name":"Invocation: Ascendant Step","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.MRxldJd6C4bsBo3O]{Levitate} on yourself at will, without expending a spell slot or material components.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 9","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-beam-impact-silhouette.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234375,"modifiedTime":1672334811257,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Qb391hakCfmH4w8p","name":"Metamagic: Twinned Spell","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you cast a spell that targets only one creature and doesn't have a range of self, you can spend a number of sorcery points equal to the spell's level to target a second creature in range with the same spell (1 sorcery point if the spell is a cantrip).To be eligible, a spell must be incapable of targeting more than one creature at the spell's current level. For example, @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile} and @Compendium[dnd5e.spells.7u2obDvuvtZBkTfq]{Scorching Ray} aren't eligible, but @Compendium[dnd5e.spells.ctW81uiX56xZR2c5]{Ray of Frost} is.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"metamagic"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/lightning/bolt-strike-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234375,"modifiedTime":1672334943805,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"QnRKYXb2bXpnNd2k","name":"Invocation: Minions of Chaos","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} once using a warlock spell slot. You can't do so again until you finish a long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"space"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 9","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/magical/humanoid-giant-forest-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234376,"modifiedTime":1672334738227,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"QwgfIpCN8VWfoUtX","name":"Pact Boon","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 3rd level, your otherworldly patron bestows a gift upon you for your loyal service. You gain one of the following features of your choice.@UUID[Compendium.dnd5e.classfeatures.9dSSa68mIPoX2ezA]{Pact of the Blade}@UUID[Compendium.dnd5e.classfeatures.Ic1CSjvbWKudVUv9]{Pact of the Chain}@UUID[Compendium.dnd5e.classfeatures.MYM908WLZ1lVvA1u]{Pact of the Tome}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Warlock 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-vortex-swirl-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234376,"modifiedTime":1674435984779,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SCVjqRdlZ9cvHVSR","name":"Reckless Attack","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 2nd level, you can throw aside all concern for defense to attack with fierce desperation.When you make your first attack on your turn, you can decide to attack recklessly. Doing so gives you advantage on melee weapon attack rolls using Strength during this turn, but attack rolls against you have advantage until your next turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/blade-tips-triple-bent-white.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234377,"modifiedTime":1672335061227,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SEJmsjkEhdAZ90ki","name":"Countercharm","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 6th level, you gain the ability to use musical notes or words of power to disrupt mind-influencing effects. As an action, you can start a performance that lasts until the end of your next turn. During that time, you and any friendly creatures within 30 feet of you have advantage on saving throws against being frightened or charmed. A creature must be able to hear you to gain this benefit. The performance ends early if you are incapacitated or silenced or if you voluntarily end it (no action required).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":"Creatures must be able to hear you to benefit."},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/sonic/scream-wail-shout-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234378,"modifiedTime":1672334334533,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SZbsNbaxFFGwBpNK","name":"Unarmored Defense (Barbarian)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While you are not wearing any armor, your Armor Class equals 10 + your Dexterity modifier + your Constitution modifier. You can use a shield and still gain this benefit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/silhouette-hold-change-blue.webp","effects":[{"_id":"hEgUnQNVxtBo2zkK","changes":[{"key":"system.attributes.ac.calc","mode":5,"value":"unarmoredBarb","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/control/silhouette-hold-change-blue.webp","label":"Unarmored Defense","origin":"Item.aIMXb43ACIxMItbh","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234378,"modifiedTime":1672335319673,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"StfmqK1twVfukpa0","name":"Hunter's Prey: Giant Killer","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When a Large or larger creature within 5 feet of you hits or misses you with an attack, you can use your reaction to attack that creature immediately after its attack, provided that you can see the creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":"Creature must be Large or larger and visible."},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"huntersPrey"},"requirements":"Hunter 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/social/intimidation-impressing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234379,"modifiedTime":1672334570644,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"T6u5z8ZTX6UftXqE","name":"Divine Strike","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 8th level, you gain the ability to infuse your weapon strikes with divine energy.Once on each of your turns when you hit a creature with a weapon attack, you can cause the attack to deal an extra 1d8 radiant damage to the target. When you reach 14th level, the extra damage increases to 2d8.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@scale.life-domain.divine-strike","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Life Domain 8","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234380,"modifiedTime":1672334497269,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"TDglPcxIVEzvVSgK","name":"Ki: Patient Defense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can spend 1 ki point to take the Dodge action as a bonus action on your turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"ki"},"requirements":"Monk 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234380,"modifiedTime":1672334887274,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"TH1QAf6YNGSeBVjT","name":"Primal Path","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 3rd level, you choose a path that shapes the nature of your rage, such as the Path of the Berserker. Your choice grants you features at 3rd level and again at 6th, 10th, and 14th levels.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/projectile-wave-arrow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234381,"modifiedTime":1672335076711,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"U7BIPVPsptBmwsnV","name":"Cleansing Touch","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 14th level, you can use your action to end one spell on yourself or on one willing creature that you touch.You can use this feature a number of times equal to your Charisma modifier (a minimum of once). You regain expended uses when you finish a long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":"Target must be willing."},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"max(1, @abilities.cha.mod)","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 14","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/hand-sparks-smoke-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234381,"modifiedTime":1672334336758,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"UAvV7N7T4zJhxdfI","name":"Unarmored Defense (Monk)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 1st Level, while you are wearing no armor and not wielding a Shield, your AC equals 10 + your Dexterity modifier + your Wisdom modifier.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/silhouette-hold-change-blue.webp","effects":[{"_id":"R5ro4AuNjcdWD56O","changes":[{"key":"system.attributes.ac.calc","mode":5,"value":"unarmoredMonk","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/control/silhouette-hold-change-blue.webp","label":"Unarmored Defense","origin":"Item.cOdcNWy4hII029DT","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234382,"modifiedTime":1672335317672,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"V4pwFxlwHtNeB4w9","name":"Slippery Mind","ownership":{"default":0},"type":"feat","system":{"description":{"value":"By 15th level, you have acquired greater mental strength. You gain proficiency in Wisdom saving throws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","effects":[{"_id":"hNWumbfvMxXQI21x","changes":[{"key":"system.abilities.wis.proficient","mode":5,"value":"1","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/illusion-evasion-echo-purple.webp","label":"Slippery Mind","origin":"Item.V4pwFxlwHtNeB4w9","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234382,"modifiedTime":1672335217923,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VUtSLeCzFubGXmGx","name":"Overchannel","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 14th level, you can increase the power of your simpler spells. When you cast a wizard spell of 1st through 5th level that deals damage, you can deal maximum damage with that spell.The first time you do so, you suffer no adverse effect. If you use this feature again before you finish a long rest, you take 2d12 necrotic damage for each level of the spell, immediately after you cast it. Each time you use this feature again before finishing a long rest, the necrotic damage per spell level increases by 1d12. This damage ignores resistance and immunity.Foundry NoteLimited use is to track the first, safe instance of Overchanneling. The damage formula is set to the base default of 2d12. The Versatile roll is set to 1d12 to add any additional damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d12","necrotic"]],"versatile":"1d12"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"School of Evocation 14","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/acid/projectile-faceted-glob.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234383,"modifiedTime":1672335007320,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VoR0SUrNX5EJVPIO","name":"Rage","type":"feat","img":"icons/creatures/abilities/mouth-teeth-human.webp","system":{"description":{"value":"In battle, you fight with primal ferocity. On your turn, you can enter a rage as a bonus action. While raging, you gain the following benefits if you aren't wearing heavy armor:\n\n\nYou have advantage on Strength checks and Strength saving throws.\n\n\nWhen you make a melee weapon attack using Strength, you gain a bonus to the damage roll that increases as you gain levels as a barbarian, as shown in the Rage Damage column of the Barbarian table.\n\n\nYou have resistance to bludgeoning, piercing, and slashing damage.\n\n\nIf you are able to cast spells, you can't cast them or concentrate on them while raging. \nYour rage lasts for 1 minute. It ends early if you are knocked unconscious or if your turn ends and you haven't attacked a hostile creature since your last turn or taken damage since then. You can also end your rage on your turn as a bonus action. \nOnce you have raged the number of times shown for your barbarian level in the Rages column of the Barbarian table, you must finish a long rest before you can rage again.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":2,"max":"@scale.barbarian.rages","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 1","recharge":{"value":null,"charged":false}},"effects":[{"_id":"eWhL8hUr0c2ujDUm","flags":{},"changes":[{"key":"system.bonuses.mwak.damage","mode":2,"value":"+@scale.barbarian.rage-damage","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"slashing","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"piercing","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"bludgeoning","priority":null}],"disabled":true,"duration":{"startTime":null,"rounds":10,"seconds":null,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/abilities/mouth-teeth-human.webp","label":"Rage","origin":"Item.bdfYHJstcltQC7SZ","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234384,"modifiedTime":1672335067284,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WgQrqjmeyMqDzVt3","name":"Defensive Tactics","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 7th level, you gain on of the following features of your choice.@Compendium[dnd5e.classfeatures.pAQMJU5R9SGUmzHU]{Escape the Horde}@Compendium[dnd5e.classfeatures.slelvrm83v9UAKZU]{Multiattack Defense}@Compendium[dnd5e.classfeatures.zbHu0NvHuII8lR7W]{Steel Will}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Hunter 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/leaf-rune-glow-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234384,"modifiedTime":1674435878567,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Xa2MLUJGCReJ28B7","name":"Invocation: Sculptor of Flesh","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.04nMsTWkIFvkbXlY]{Polymorph} once using a warlock spell slot. You can't do so again until you finish a long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"cha"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234385,"modifiedTime":1672334708523,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Xf763cJoDHPPWSGG","name":"Superior Hunter's Defense: Stand Against the Tide","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When a hostile creature misses you with a melee attack, you can use your reaction to force that creature to repeat the same attack against another creature (other than itself) of your choice.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"superiorHuntersDefense"},"requirements":"Hunter 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/pseudopod-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234385,"modifiedTime":1672335266344,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XjuGBeB8Y0C3A5D4","name":"Tongue of the Sun and Moon","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 13th level, you learn to touch the ki of other minds so that you understand all spoken languages. Moreover, any creature that can understand a language can understand what you say.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 13","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/time/day-night-sunset-sunrise.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234386,"modifiedTime":1672335328721,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XogoBnFWmCAHXppo","name":"Extra Attack","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can attack twice, instead of once, whenever you take the Attack action on your turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 5, Monk 5, Paladin 5, Ranger 5","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/spear-tips-triple-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234386,"modifiedTime":1672334542377,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YN9xm6MCvse4Y60u","name":"Reliable Talent","ownership":{"default":0},"type":"feat","system":{"description":{"value":"By 11th level, you have refined your chosen skills until they approach perfection. Whenever you make an ability check that lets you add your proficiency bonus, you can treat a d20 roll of 9 or lower as a 10.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 11","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/ranged/target-bullseye-arrow-glowing.webp","effects":[{"_id":"vMMZHZQ0qT7MT4I4","changes":[{"key":"flags.dnd5e.reliableTalent","mode":5,"value":"true","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/skills/ranged/target-bullseye-arrow-glowing.webp","label":"Reliable Talent","origin":"Item.YN9xm6MCvse4Y60u","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234387,"modifiedTime":1672335056263,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YgLQV1O849wE5TgM","name":"Improved Critical","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your weapon attacks score a critical hit on a roll of 19 or 20.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Champion 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/blade-tip-chipped-blood-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234387,"modifiedTime":1672334832856,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YiK59gWSlcQ6Mbdz","name":"Circle Spells","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your mystical connection to the land infuses you with the ability to cast certain spells. At 3rd, 5th, 7th, and 9th level you gain access to circle spells connected to the land where you became a druid. Choose that land—arctic, coast, desert, forest, grassland, mountain, or swamp—and consult the associated list of spells.\nOnce you gain access to a circle spell, you always have it prepared, and it doesn't count against the number of spells you can prepare each day. If you gain access to a spell that doesn't appear on the druid spell list, the spell is nonetheless a druid spell for you.\nArctic\n\n\nDruid Level\nCircle Spells\n\n\n\n\n3rd\n@Compendium[dnd5e.spells.3Lo9boi7P2ro6QV4]{Hold Person}, @Compendium[dnd5e.spells.9gYGkrL6qFTsE6fw]{Spike Growth}\n\n\n5th\n@Compendium[dnd5e.spells.dhqBY4TvVjxVmOZd]{Sleet Storm}, @Compendium[dnd5e.spells.yqUDoxk4x0NWG5Bz]{Slow}\n\n\n7th\n@Compendium[dnd5e.spells.da0a1t2FqaTjRZGT]{Freedom of Movement}, @Compendium[dnd5e.spells.WN2LWEljYU6QqnRH]{Ice Storm}\n\n\n9th\n@Compendium[dnd5e.spells.d54VDyFulD9xxY7J]{Commune}, @Compendium[dnd5e.spells.RpKjTlYASrfqUPVA]{Cone of Cold}\n\n\n\nCoast\n\n\nDruid Level\nCircle Spells\n\n\n\n\n3rd\n@Compendium[dnd5e.spells.X4c8xCkmF8U9HUMz]{Mirror Image}, @Compendium[dnd5e.spells.wqfAVANuQonNBgnL]{Misty Step}\n\n\n5th\n@Compendium[dnd5e.spells.13uVuBQP6VaiSPvC]{Water Breathing}, @Compendium[dnd5e.spells.YBda6nLKjxdT1LbS]{Water Walk}\n\n\n7th\n@Compendium[dnd5e.spells.7fFHlBk3UNX8gPKL]{Control Water}, @Compendium[dnd5e.spells.da0a1t2FqaTjRZGT]{Freedom of Movement}\n\n\n9th\n@Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental}, @Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying}\n\n\n\nDesert\n\n\nDruid Level\nCircle Spells\n\n\n\n\n3rd\n@Compendium[dnd5e.spells.UDUnlfPsOAbq2RSE]{Blur}, @Compendium[dnd5e.spells.5VhqFROQYjr1P9lp]{Silence}\n\n\n5th\n@Compendium[dnd5e.spells.BV0mpbHh29IbbIj5]{Create Food and Water}, @Compendium[dnd5e.spells.j8NtLXOOJ3GAKF8I]{Protection from Energy}\n\n\n7th\n@Compendium[dnd5e.spells.pybg5MNc3lkerH4Y]{Blight}, @Compendium[dnd5e.spells.sTIkQK7KuQNOyY0C]{Hallucinatory Terrain}\n\n\n9th\n@Compendium[dnd5e.spells.OVikYmSdHliAG2YD]{Insect Plague}, @Compendium[dnd5e.spells.NmoRmM1mhuM3pqnY]{Wall of Stone}\n\n\n\nForest\n\n\nDruid Level\nCircle Spells\n\n\n\n\n3rd\n@Compendium[dnd5e.spells.JPwIEfgUPVebr5AH]{Barkskin}, @Compendium[dnd5e.spells.KJRVzeMQXPj8Gtyx]{Spider Climb}\n\n\n5th\n@Compendium[dnd5e.spells.ehvmg9U9fcMEhE4z]{Call Lightning}, @Compendium[dnd5e.spells.YWtwzp6ZnQJMEmVW]{Plant Growth}\n\n\n7th\n@Compendium[dnd5e.spells.XqzXSKNR75ZdYTA9]{Divination}, @Compendium[dnd5e.spells.da0a1t2FqaTjRZGT]{Freedom of Movement}\n\n\n9th\n@Compendium[dnd5e.spells.dp6xny4v8PDoIGjh]{Commune with Nature}, @Compendium[dnd5e.spells.DUBgwHPakcLDkB6W]{Tree Stride}\n\n\n\nGrassland\n\n\nDruid Level\nCircle Spells\n\n\n\n\n3rd\n@Compendium[dnd5e.spells.1N8dDMMgZ1h1YJ3B]{Invisibility}, @Compendium[dnd5e.spells.pRMvmknwLf2tdMTj]{Pass without Trace}\n\n\n5th\n@Compendium[dnd5e.spells.BP3GCwa66IAw1yTG]{Daylight}, @Compendium[dnd5e.spells.Szvk5FEVQW3uhJi5]{Haste}\n\n\n7th\n@Compendium[dnd5e.spells.XqzXSKNR75ZdYTA9]{Divination}, @Compendium[dnd5e.spells.da0a1t2FqaTjRZGT]{Freedom of Movement}\n\n\n9th\n@Compendium[dnd5e.spells.kSPRpeIx3w3nihrF]{Dream}, @Compendium[dnd5e.spells.OVikYmSdHliAG2YD]{Insect Plague}\n\n\n\nMountain\n\n\nDruid Level\nCircle Spells\n\n\n\n\n3rd\n@Compendium[dnd5e.spells.KJRVzeMQXPj8Gtyx]{Spider Climb}, @Compendium[dnd5e.spells.9gYGkrL6qFTsE6fw]{Spike Growth}\n\n\n5th\n@Compendium[dnd5e.spells.IyikgTEOTv701jgQ]{Lightning Bolt}, @Compendium[dnd5e.spells.64uo4fHriHLjRUrX]{Meld into Stone}\n\n\n7th\n@Compendium[dnd5e.spells.QvGcdRUSNRKEQJlK]{Stone Shape}, @Compendium[dnd5e.spells.ReMbjfeOKoSj3O79]{Stoneskin}\n\n\n9th\n@Compendium[dnd5e.spells.d9MwcXi7Il3HROXd]{Passwall}, @Compendium[dnd5e.spells.NmoRmM1mhuM3pqnY]{Wall of Stone}\n\n\n\nSwamp\n\n\nDruid Level\nCircle Spells\n\n\n\n\n3rd\n@Compendium[dnd5e.spells.4H6YgYdKgnX6ZQ8M]{Acid Arrow}, @Compendium[dnd5e.spells.S7VbUetIfVT7B6Eq]{Darkness}\n\n\n5th\n@Compendium[dnd5e.spells.YBda6nLKjxdT1LbS]{Water Walk}, @Compendium[dnd5e.spells.TwlD4PLcltv7Xh7j]{Stinking Cloud}\n\n\n7th\n@Compendium[dnd5e.spells.da0a1t2FqaTjRZGT]{Freedom of Movement}, @Compendium[dnd5e.spells.gXtzz9t1DTzJeLr4]{Locate Creature}\n\n\n9th\n@Compendium[dnd5e.spells.OVikYmSdHliAG2YD]{Insect Plague}, @Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying}\n\n\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Circle of the Land 3","recharge":{"value":null,"charged":false}},"sort":0,"flags":{},"img":"icons/magic/water/projectile-ice-teardrop.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234388,"modifiedTime":1672334339276,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YpiLQEKGalROn7iJ","name":"Channel Divinity (Cleric)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 2nd level, you gain the ability to channel divine energy directly from your deity, using that energy to fuel magical effects. You start with two such effects: Turn Undead and an effect determined by your domain. Some domains grant you additional effects as you advance in levels, as noted in the domain description.When you use your Channel Divinity, you choose which effect to create. You must then finish a short or long rest to use your Channel Divinity again. Some Channel Divinity effects require saving throws. When you use such an effect from this class, the DC equals your cleric spell save DC.Beginning at 6th level, you can use your Channel Divinity twice between rests, and beginning at 18th level, you can use it three times between rests. When you finish a short or long rest, you regain your expended uses.Foundry NoteUse this to track all the various uses of Channel Divinity for the cleric.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"@scale.cleric.channel-divinity","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Cleric 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/lightning/bolt-strike-smoke-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234388,"modifiedTime":1672334363709,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZHJyYrqMYSLub4RY","name":"Purity of Spirit","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 15th level, you are always under the effects of a @Compendium[dnd5e.spells.xmDBqZhRVrtLP8h2]{Protection from Evil and Good} spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Oath of Devotion 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/toxins/poison-bottle-corked-fire-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234389,"modifiedTime":1672335069710,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZdwGlsJNtc7pGFCd","name":"Channel Divinity: Turn the Unholy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As an action, you present your holy symbol and speak a prayer censuring fiends and undead, using your Channel Divinity. Each fiend or undead that can see or hear you within 30 feet of you must make a Wisdom saving throw. If the creature fails its saving throw, it is turned for 1 minute or until it takes damage.A turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"cha"},"type":{"value":"class","subtype":"channelDivinity"},"requirements":"Oath of Devotion 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/explosion-embers-evade-silhouette.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234389,"modifiedTime":1672334348742,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZmC31XKS4YNENnoc","name":"Stillness of Mind","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 7th level, you can use your action to end one effect on yourself that is causing you to be charmed or frightened.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/orb-water-transparent.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234391,"modifiedTime":1672335279984,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"a0Sq88dgnREcIMfl","name":"Superior Hunter's Defense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 15th level, you gain one of the following features of your choice.@Compendium[dnd5e.classfeatures.laVHAIOKIsUeezWd]{Evasion}@Compendium[dnd5e.classfeatures.Xf763cJoDHPPWSGG]{Stand Against the Tide}@Compendium[dnd5e.classfeatures.7pyZjz5vlUWV01qQ]{Uncanny Dodge}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Hunter 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/reptiles/serpent-horned-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234391,"modifiedTime":1674435873389,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"a4P4DNMmH8CqSNkC","name":"Evasion","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 7th level, your instinctive agility lets you dodge out of the way of certain area effects, such as a blue dragon's lightning breath or a fireball spell. When you are subjected to an effect that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 7, Rogue 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/beam-red-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234392,"modifiedTime":1672334462947,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"aCUmlnHlUPHS0rdu","name":"Hurl Through Hell","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 14th level, when you hit a creature with an attack, you can use this feature to instantly transport the target through the lower planes. The creature disappears and hurtles through a nightmare landscape.At the end of your next turn, the target returns to the space it previously occupied, or the nearest unoccupied space. If the target is not a fiend, it takes 10d10 psychic damage as it reels from its horrific experience.Once you use this feature, you can't use it again until you finish a long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d10","psychic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"The Fiend 14","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/mouth-teeth-fire-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234392,"modifiedTime":1672334835479,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"aQLg7BWdRnm4Hr9S","name":"Expertise (Bard)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 3rd level, choose two of your skill proficiencies. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies. At 10th level, you can choose another two skill proficiencies to gain this benefit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/commodities/tech/cog-bronze.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234393,"modifiedTime":1672334546632,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"aVKH6TLn1AG9hPSA","name":"Superior Critical","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your weapon attacks score a critical hit on a roll of 18–20.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Champion 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/strike-axe-blood-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234393,"modifiedTime":1672335275284,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"alUqO6c6OEKFQJdb","name":"Invocation: Armor of Shadows","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.CKZTpZlxj7hjjo2H]{Mage Armor} on yourself at will, without expending a spell slot or material components.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/control-influence-rally-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234394,"modifiedTime":1672334815380,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"aonJ2YjkqkYB9WYB","name":"Magical Secrets","ownership":{"default":0},"type":"feat","system":{"description":{"value":"By 10th level, you have plundered magical knowledge from a wide spectrum of disciplines.Choose two spells from any class, including this one. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip.The chosen spells count as bard spells for you and are included in the number in the Spells Known column of the Bard table.You learn two additional spells from any class at 14th level and again at 18th level.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 10","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/sundries/documents/document-torn-diagram-tan.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234394,"modifiedTime":1672334853577,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ax8M0X0q1GGWM26j","name":"Martial Archetype","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 3rd level, you choose an archetype that you strive to emulate in your combat styles and techniques, such as Champion. The archetype you choose grants you features at 3rd level and again at 7th, 10th, 15th, and 18th level.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Fighter 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234395,"modifiedTime":1672334851229,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"bbUEsCPTLzbbwK6o","name":"Invocation: Eldritch Sight","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic} at will, without expending a spell slot.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/hand-eye-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234395,"modifiedTime":1672334772895,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"bqWA7t9pDELbNRkp","name":"Purity of Body","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 10th level, your mastery of the ki flowing through you makes you immune to disease and poison.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 10","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/encase-creature-humanoid-hold.webp","effects":[{"_id":"JjH64T4YkNP1VTt4","changes":[{"key":"system.traits.ci.value","mode":2,"value":"diseased","priority":null},{"key":"system.traits.ci.value","mode":2,"value":"poisoned","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/control/encase-creature-humanoid-hold.webp","label":"Purity of Body","origin":"Item.dvtlIzR4gvdfb7Od","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234396,"modifiedTime":1672335071933,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"cVDEQo0ow1WJT7Wl","name":"Timeless Body (Druid)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 18th level, the primal magic that you wield causes you to age more slowly. For every 10 years that pass, your body ages only 1 year.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Druid 18","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/time/clock-stopwatch-white-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234396,"modifiedTime":1672335333141,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"carGDhkIdoduTC0I","name":"Aura of Protection","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 6th level, whenever you or a friendly creature within 10 feet of you must make a saving throw, the creature gains a bonus to the saving throw equal to your Charisma modifier (with a minimum bonus of +1). You must be conscious to grant this bonus. At 18th level, the range of this aura increases to 30 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":10,"long":30,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-tornado-wall-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234397,"modifiedTime":1672334278049,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"cmRCL9T9UgRYOj1c","name":"Sorcerous Origins","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Choose a sorcerous origin, which describes the source of your innate magical power, such as Draconic Bloodline.Your choice grants you features when you choose it at 1st level and again at 6th, 14th, and 18th level.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Sorcerer 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-vortex-swirl-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234397,"modifiedTime":1672335208050,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dHu1yzIjD38BvGGd","name":"Remarkable Athlete","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can add half your proficiency bonus (round up) to any Strength, Dexterity, or Constitution check you make that doesn't already use your proficiency bonus.In addition, when you make a running long jump, the distance you can cover increases by a number of feet equal to your Strength modifier.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Champion 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234397,"modifiedTime":1672335184269,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dTSV0xZMpY5CxkRk","name":"Invocation: Sign of Ill Omen","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.pO4zGe5LmFIYqJiL]{Bestow Curse} once using a warlock spell slot. You can't do so again until you finish a long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"cha"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 5","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/symbols/rune-sigil-black-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234398,"modifiedTime":1672334704449,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dY9yrqkyEDuF0CG2","name":"Divine Health","ownership":{"default":0},"type":"feat","system":{"description":{"value":"By 3rd level, the divine magic flowing through you makes you immune to disease.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/life/cross-worn-green.webp","effects":[{"_id":"RjX1etQhr8M2TBgv","changes":[{"key":"system.traits.ci.value","mode":2,"value":"diseased","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/life/cross-worn-green.webp","label":"Divine Health","origin":"Item.dY9yrqkyEDuF0CG2","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234398,"modifiedTime":1672334401345,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"e0uTcFPpgxjIyUW9","name":"Arcane Recovery","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have learned to regain some of your magical energy by studying your spellbook. Once per day when you finish a short rest, you can choose expended spell slots to recover. The spell slots can have a combined level that is equal to or less than half your wizard level (rounded up), and none of the slots can be 6th level or higher.For example, if you're a 4th-level wizard, you can recover up to two levels worth of spell slots. You can recover either a 2nd-level spell slot or two 1st-level spell slots.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"The wizard can recover this number worth of spells slots (of 5th-level or lower):","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"ceil(@classes.wizard.levels/2)","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Wizard 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/earth/explosion-lava-stone-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234399,"modifiedTime":1672334292429,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"e9ytGikyLFgwZ5wi","name":"Bonus Proficiencies (College of Lore)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you join the College of Lore at 3rd level, you gain proficiency with three skills of your choice.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"College of Lore 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/trades/academics-investigation-puzzles.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234399,"modifiedTime":1672334370815,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eGxoNmSMWKNzChCO","name":"Unarmed Strike (Monk)","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1@scale.monk.die + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"ada":false,"amm":false,"fin":true,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"mgc":false,"rch":false,"rel":false,"ret":false,"sil":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234400,"modifiedTime":1671220976154,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eNvpIaSnJUdF8fHl","name":"Invocation: Beguiling Influence","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You gain proficiency in the Deception and Persuasion skills.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234401,"modifiedTime":1672334803925,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eVXqHn0ojWrEuYGU","name":"Divine Intervention","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 10th level, you can call on your deity to intervene on your behalf when your need is great.Imploring your deity's aid requires you to use your action. Describe the assistance you seek, and roll percentile dice. If you roll a number equal to or lower than your cleric level, your deity intervenes. The GM chooses the nature of the intervention; the effect of any cleric spell or cleric domain spell would be appropriate.If your deity intervenes, you can't use this feature again for 7 days. Otherwise, you can use it again after you finish a long rest.At 20th level, your call for intervention succeeds automatically, no roll required.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":"Your need must be great..."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d100","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Cleric 10","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-star-glow-blue-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234401,"modifiedTime":1672334398751,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"evEWCpE5MYgr5RRW","name":"Potent Cantrip","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 6th level, your damaging cantrips affect even creatures that avoid the brunt of the effect. When a creature succeeds on a saving throw against your cantrip, the creature takes half the cantrip's damage (if any) but suffers no additional effect from the cantrip.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"School of Evocation 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/earth/projectiles-fire-stone-salvo.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234402,"modifiedTime":1672335081053,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ezWijmCnlnQ9ZRX2","name":"Jack of All Trades","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 2nd level, you can add half your proficiency bonus, rounded down, to any ability check you make that doesn't already include your proficiency bonus.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/commodities/tech/cog-steel.webp","effects":[{"_id":"K4xQzXl1Z4zMnyOa","changes":[{"key":"flags.dnd5e.jackOfAllTrades","mode":5,"value":"true","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/commodities/tech/cog-steel.webp","label":"Jack of All Trades","origin":"Item.LaQuQ37mInXH6TiR","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234402,"modifiedTime":1672334906819,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fXa0DMhoVLtbBu9l","name":"Metamagic: Subtle Spell","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you cast a spell, you can spend 1 sorcery point to cast it without any somatic or verbal components.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"metamagic"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/slimes/slime-movement-swirling-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234403,"modifiedTime":1672334948232,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fbExzwNwEAl2kW9c","name":"Fighting Style (Fighter)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You adopt a particular style of fighting as your specialty. Choose one of the following options from the appropriate class list. You can't take a Fighting Style option more than once, even if you later get to choose again.\n@Compendium[dnd5e.classfeatures.8YwPFv3UAPjWVDNf]{Archery}\n@Compendium[dnd5e.classfeatures.zSlV0O2rQMdoq6pB]{Defense}\n@Compendium[dnd5e.classfeatures.hCop9uJrWhF1QPb4]{Dueling}\n@Compendium[dnd5e.classfeatures.3Nc6u9pyStByuJsm]{Great Weapon Fighting}\n@Compendium[dnd5e.classfeatures.06NVMYf58Z76O85O]{Protection}\n@Compendium[dnd5e.classfeatures.mHcSjcHJ8oZu3hkb]{Two Weapon Fighting}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Fighter 1","recharge":{"value":null,"charged":false}},"sort":0,"flags":{},"img":"icons/skills/melee/weapons-crossed-daggers-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234404,"modifiedTime":1672334522548,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fjsBk7zxoAbLf8ZI","name":"Blindsense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 14th level, if you are able to hear, you are aware of the location of any hidden or invisible creature within 10 feet of you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 14","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234404,"modifiedTime":1672334376458,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gDH8PMrKvLHaNmEI","name":"Timeless Body (Monk)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 15th level, your ki sustains you so that you suffer none of the frailty of old age, and you can't be aged magically. You can still die of old age, however. In addition, you no longer need food or water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/time/clock-stopwatch-white-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234405,"modifiedTime":1672335330808,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gFjxo01hAN4c9hDG","name":"Invocation: Whispers of the Grave","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.I2LUSF5ogc7Bj62e]{Speak with Dead} at will, without expending a spell slot.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 9","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/undead-ghost-scream-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234405,"modifiedTime":1672334681694,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ga3dt2zrCn2MHK8R","name":"Fast Hands","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 3rd level, you can use the bonus action granted by your @Compendium[dnd5e.classfeatures.01pcLg6PRu5zGrsb]{Cunning Action} to make a Dexterity (Sleight of Hand) check, use your thieves' tools to disarm a trap or open a lock, or take the Use an Object action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Thief 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/social/theft-pickpocket-bribery-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234406,"modifiedTime":1672334536534,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gbNo5eVPaqr8IVKL","name":"Spellcasting (Wizard)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As a student of arcane magic, you have a spellbook containing spells that show the first glimmerings of your true power.\nCantrips\nAt 1st level, you know three cantrips of your choice from the wizard spell list. You learn additional wizard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Wizard table.\nSpellbook\nAt 1st level, you have a spellbook containing six 1stlevel wizard spells of your choice. Your spellbook is the repository of the wizard spells you know, except your cantrips, which are fixed in your mind.\nPreparing and Casting Spells\nThe Wizard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nYou prepare the list of wizard spells that are available for you to cast. To do so, choose a number of wizard spells from your spellbook equal to your Intelligence modifier + your wizard level (minimum of one spell). The spells must be of a level for which you have spell slots.\nFor example, if you're a 3rd-level wizard, you have four 1st-level and two 2nd-level spell slots. With an Intelligence of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination, chosen from your spellbook. If you prepare the 1st-level spell magic missile, you can cast it using a 1st-level or a 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of wizard spells requires time spent studying your spellbook and memorizing the incantations and gestures you must make to cast the spell: at least 1 minute per spell level for each spell on your list.\nSpellcasting Ability\nIntelligence is your spellcasting ability for your wizard spells, since you learn your spells through dedicated study and memorization. You use your Intelligence whenever a spell refers to your spellcasting ability. In addition, you use your Intelligence modifier when setting the saving throw DC for a wizard spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Intelligence modifier\nSpell attack modifier = your proficiency bonus + your Intelligence modifier\nRitual Casting\nYou can cast a wizard spell as a ritual if that spell has the ritual tag and you have the spell in your spellbook. You don't need to have the spell prepared.\nSpellcasting Focus\nYou can use an arcane focus as a spellcasting focus for your wizard spells.\nLearning Spells of 1st Level and Higher\nEach time you gain a wizard level, you can add two wizard spells of your choice to your spellbook for free. Each of these spells must be of a level for which you have spell slots, as shown on the Wizard table. On your adventures, you might find other spells that you can add to your spellbook (see the \"Your Spellbook\" sidebar).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Wizard 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/explosion-embers-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234406,"modifiedTime":1672335281839,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"h1gM8SH3BNRtFevE","name":"Ki: Quivering Palm","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 17th level, you gain the ability to set up lethal vibrations in someone's body. When you hit a creature with an unarmed strike, you can spend 3 ki points to start these imperceptible vibrations, which last for a number of days equal to your monk level. The vibrations are harmless unless you use your action to end them. To do so, you and the target must be on the same plane of existence. When you use this action, the creature must make a Constitution saving throw. If it fails, it is reduced to 0 hit points. If it succeeds, it takes 10d10 necrotic damage.You can have only one creature under the effect of this feature at a time. You can choose to end the vibrations harmlessly without using an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":"Only ending the vibrations harmfully requires an action."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d10","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"wis"},"type":{"value":"class","subtype":"ki"},"requirements":"Way of the Open Hand 17","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/symbols/rune-sigil-black-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234407,"modifiedTime":1672334882527,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hCop9uJrWhF1QPb4","name":"Fighting Style: Dueling","type":"feat","img":"icons/skills/melee/hand-grip-sword-orange.webp","system":{"description":{"value":"When you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"fightingStyle"},"requirements":"Fighter 1, Champion 10, Paladin 2, Ranger 2","recharge":{"value":null,"charged":false}},"effects":[{"_id":"B5KM6oYsKC7vRMgG","flags":{},"changes":[{"key":"system.bonuses.mwak.damage","mode":2,"value":"+2","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/skills/melee/hand-grip-sword-orange.webp","label":"Fighting Style: Dueling","origin":"Item.UOgk9fNed1qugAqH","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234407,"modifiedTime":1672334629389,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hEymt45rICi4f9eL","name":"Channel Divinity: Preserve Life","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 2nd level, you can use your Channel Divinity to heal the badly injured.As an action, you present your holy symbol and evoke healing energy that can restore a number of hit points equal to five times your cleric level.Choose any creatures within 30 feet of you, and divide those hit points among them. This feature can restore a creature to no more than half of its hit point maximum. You can't use this feature on an undead or a construct.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":"The target cannot be Undead or a Construct"},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5* @classes.cleric.levels","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"channelDivinity"},"requirements":"Life Domain 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-star-glow-blue-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234408,"modifiedTime":1672334357483,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"he8RpPXwSl2lVSIk","name":"Song of Rest","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 2nd level, you can use soothing music or oration to help revitalize your wounded allies during a short rest.\nIf you or any friendly creatures who can hear your performance regain hit points at the end of the short rest by spending one or more Hit Dice, each of those creatures regains an extra 1d6 hit points.\nThe extra hit points increase when you reach certain levels in this class: to 1d8 at 9th level, to 1d10 at 13th level, and to 1d12 at 17th level.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1@scale.bard.song-of-rest","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/life/cross-worn-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234408,"modifiedTime":1672335210523,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hpLNiGq7y67d2EHA","name":"Bardic Inspiration","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can inspire others through stirring words or music. To do so, you use a bonus action on your turn to choose one creature other than yourself within 60 feet of you who can hear you. That creature gains one Bardic Inspiration die, a d6. Once within the next 10 minutes, the creature can roll the die and add the number rolled to one ability check, attack roll, or saving throw it makes. The creature can wait until after it rolls the d20 before deciding to use the Bardic Inspiration die, but must decide before the GM says whether the roll succeeds or fails. Once the Bardic Inspiration die is rolled, it is lost. A creature can have only one Bardic Inspiration die at a time.You can use this feature a number of times equal to your Charisma modifier (a minimum of once).You regain any expended uses when you finish a long rest.Your Bardic Inspiration die changes when you reach certain levels in this class. The die becomes a d8 at 5th level, a d10 at 10th level, and a d12 at 15th level.Foundry NoteRecovery is set to long rest (for levels before @Compendium[dnd5e.classfeatures.3VDZGs5Ug3hIE322]{Font of Inspiration} is gained). Please manually adjust as required.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"max(1, @abilities.cha.mod)","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1@scale.bard.inspiration","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234409,"modifiedTime":1672334270998,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"i6tPm3FNK13Ftc9v","name":"Spellcasting (Druid)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Drawing on the divine essence of nature itself, you can cast spells to shape that essence to your will.\nCantrips\nAt 1st level, you know two cantrips of your choice from the druid spell list. You learn additional druid cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Druid table.\nPreparing and Casting Spells\nThe Druid table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these druid spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nYou prepare the list of druid spells that are available for you to cast, choosing from the druid spell list. When you do so, choose a number of druid spells equal to your Wisdom modifier + your druid level (minimum of one spell). The spells must be of a level for which you have spell slots.\nFor example, if you are a 3rd-level druid, you have four 1st-level and two 2nd-level spell slots. With a Wisdom of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\nYou can also change your list of prepared spells when you finish a long rest. Preparing a new list of druid spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\nSpellcasting Ability\nWisdom is your spellcasting ability for your druid spells, since your magic draws upon your devotion and attunement to nature. You use your Wisdom whenever a spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a druid spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Wisdom modifier\nSpell attack modifier = your proficiency bonus + your Wisdom modifier\nRitual Casting\nYou can cast a druid spell as a ritual if that spell has the ritual tag and you have the spell prepared.\nSpellcasting Focus\nYou can use a druidic focus (see @UUID[Compendium.dnd5e.rules.BYFd9hiJGo9L5aOM.JournalEntryPage.AjavRU4yPfI9hfaI]{Adventuring Gear}) as a spellcasting focus for your druid spells.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Druid 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/orb-beams-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234409,"modifiedTime":1672335292173,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"iQxLNydNLlCHNKbp","name":"Open Hand Technique","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting when you choose this tradition at 3rd level, you can manipulate your enemy's ki when you harness your own.Whenever you hit a creature with one of the attacks granted by your @Compendium[dnd5e.classfeatures.5MwNlVZK7m6VolOH]{Flurry of Blows}, you can impose one of the following effects on that target:It must succeed on a Dexterity saving throw or be knocked prone.It must make a Strength saving throw. If it fails, you can push it up to 15 feet away from you.It can't take reactions until the end of your next turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Way of the Open Hand 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/strike-hand-glow-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234410,"modifiedTime":1672335012724,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"id0gmGvzNZBEdzbx","name":"Invocation: Fiendish Vigor","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.7e3QXF10hLNDEdr6]{False Life} on yourself at will as a 1st-level spell, without expending a spell slot or material components.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 +4","temphp"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/undead-zombie-grave-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234410,"modifiedTime":1672334758806,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ihoQHsmVZlyDbPhX","name":"Spellcasting (Paladin)","type":"feat","img":"icons/magic/symbols/cog-shield-white-blue.webp","system":{"description":{"value":"By 2nd level, you have learned to draw on divine magic through meditation and prayer to cast spells as a cleric does.\nPreparing and Casting Spells\nThe Paladin table shows how many spell slots you have to cast your spells. To cast one of your paladin spells of 1st level or higher, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nYou prepare the list of paladin spells that are available for you to cast, choosing from the paladin spell list. When you do so, choose a number of paladin spells equal to your Charisma modifier + half your paladin level, rounded down (minimum of one spell). The spells must be of a level for which you have spell slots.\nFor example, if you are a 5th-level paladin, you have four 1st-level and two 2nd-level spell slots. With a Charisma of 14, your list of prepared spells can include four spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or a 2ndlevel slot. Casting the spell doesn't remove it from your list of prepared spells.\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of paladin spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\nSpellcasting Ability\nCharisma is your spellcasting ability for your paladin spells, since their power derives from the strength of your convictions. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a paladin spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Charisma modifier\nSpell attack modifier = your proficiency bonus + your Charisma modifier\nSpellcasting Focus\nYou can use a holy symbol as a spellcasting focus for your paladin spells.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 2","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234411,"modifiedTime":1672335288887,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ip4bvmGoz3qkoqes","name":"Archdruid","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 20th level, you can use your @Compendium[dnd5e.classfeatures.swK0r5TOIxredxWS]{Wild Shape} an unlimited number of times.Additionally, you can ignore the verbal and somatic components of your druid spells, as well as any material components that lack a cost and aren't consumed by a spell.You gain this benefit in both your normal shape and your beast shape from Wild Shape.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Druid 20","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/beam-hand-leaves-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234411,"modifiedTime":1672334287073,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ipG5yx1tRNmeJfSH","name":"Survivor","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You attain the pinnacle of resilience in battle.At the start of each of your turns, you regain hit points equal to 5 + your Constitution modifier if you have no more than half of your hit points left.You don't gain this benefit if you have 0 hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Champion 18","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/life/heart-glowing-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234412,"modifiedTime":1672335339891,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"jF8AFfEMICIJnAkR","name":"Disciple of Life","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 1st level, your healing spells are more effective.Whenever you use a spell of 1st level or higher to restore hit points to a creature, the creature regains additional hit points equal to 2 + the spell's level.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Life Domain 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/hand-sparks-smoke-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234412,"modifiedTime":1672334406300,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"jTXHaK0vvT5DV3uO","name":"Otherworldly Patron","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 1st level, you have struck a bargain with an otherworldly being, such as the Fiend. Your choice grants you features at 1st level and again at 6th, 10th, and 14th level.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Warlock 1","recharge":{"value":null,"charged":false}},"sort":0,"flags":{},"img":"icons/sundries/lights/candles-lit-red-evil.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234413,"modifiedTime":1672335010110,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"jVU4AgqfrFaqgXns","name":"Primal Champion","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 20th level, you embody the power of the wilds. Your Strength and Constitution scores increase by 4. Your maximum for those scores is now 24.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 20","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/sihouette-hold-beam-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234413,"modifiedTime":1672335078815,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"k5DU0mMuYVHejiqz","name":"Invocation: Misty Visions","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.BrBZdCCrJRIVg7YX]{Silent Image} at will, without expending a spell slot or material components.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cube"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/webs/web-spider-glowing-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234414,"modifiedTime":1672334728348,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"k5M8gsl7MMcdjOjs","name":"Invocation: Voice of the Chain Master","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can communicate telepathically with your familiar and perceive through your familiar's senses as long as you are on the same plane of existence. Additionally, while perceiving through your familiar's senses, you can also speak through your familiar in your own voice, even if your familiar is normally incapable of speech.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 3, Pact of the Chain","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/humanoid-cat-skulking-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234414,"modifiedTime":1672334686373,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kYJsED0rqqqUcgKz","name":"Additional Fighting Style","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Choose a second fighting style class feature from the following:@Compendium[dnd5e.classfeatures.8YwPFv3UAPjWVDNf]{Archery}@Compendium[dnd5e.classfeatures.zSlV0O2rQMdoq6pB]{Defense}@Compendium[dnd5e.classfeatures.hCop9uJrWhF1QPb4]{Dueling}@Compendium[dnd5e.classfeatures.3Nc6u9pyStByuJsm]{Great Weapon Fighting}@Compendium[dnd5e.classfeatures.06NVMYf58Z76O85O]{Protection}@Compendium[dnd5e.classfeatures.mHcSjcHJ8oZu3hkb]{Two Weapon Fighting}The choice must be different to the one made at level 1.You can drag your choice from the above onto your character sheet and it will automatically update.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Champion 10","recharge":{"value":null,"charged":false}},"folder":null,"sort":0,"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-purple.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234414,"modifiedTime":1672334305801,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kaHcUGiwi8AtfZIm","name":"Primeval Awareness","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 3rd level, you can use your action and expend one ranger spell slot to focus your awareness on the region around you. For 1 minute per level of the spell slot you expend, you can sense whether the following types of creatures are present within 1 mile of you (or within up to 6 miles if you are in your favored terrain): aberrations, celestials, dragons, elementals, fey, fiends, and undead. This feature doesn't reveal the creatures' location or number.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":"It also expends a spell slot; the slot level dictates duration."},"duration":{"value":"","units":"spec"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":1,"long":6,"units":"mi"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/eye-slit-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234415,"modifiedTime":1672335074128,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"l50hjTxO2r0iecKw","name":"Martial Arts","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 1st level, your practice of martial arts gives you mastery of combat styles that use and monk weapons, which are shortswords and any simple melee weapons that don't have the two-handed or heavy property. You gain the following benefits while you are unarmed or wielding only monk weapons and you aren't wearing armor or wielding a shield:\n\n\nYou can use Dexterity instead of Strength for the attack and damage rolls of your unarmed strikes and monk weapons.\n\n\nYou can roll a d4 in place of the normal damage of your unarmed strike or monk weapon. This die changes as you gain monk levels, as shown in the Martial Arts column of the Monk table.\n\n\nWhen you use the Attack action with an unarmed strike or a monk weapon on your turn, you can make one unarmed strike as a bonus action. For example, if you take the Attack action and attack with a quarterstaff, you can also make an unarmed strike as a bonus action, assuming you haven't already taken a bonus action this turn.\n\n\nCertain monasteries use specialized forms of the monk weapons. For example, you might use a club that is two lengths of wood connected by a short chain (called a nunchaku) or a sickle with a shorter, straighter blade (called a kama). Whatever name you use for a monk weapon, you can use the game statistics provided for the weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234416,"modifiedTime":1672334978195,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"l7W6JB9yWLLLtQKP","name":"Multiattack: Volley","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can use your action to make a ranged attack against any number of creatures within 10 feet of a point you can see within your weapon's range. You must have ammunition for each target, as normal, and you make a separate attack roll for each target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"square"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"multiattack"},"requirements":"Hunter 11","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/ranged/target-bullseye-arrow-white.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234416,"modifiedTime":1672334932638,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"l8tUhZ5Pecm9wz7I","name":"Persistent Rage","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 15th level, your @Compendium[dnd5e.classfeatures.VoR0SUrNX5EJVPIO]{Rage} is so fierce that it ends early only if you fall unconscious or if you choose to end it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/social/intimidation-impressing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234417,"modifiedTime":1672335083236,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lEZKbWaVrSljRa9n","name":"Invocation: Eyes of the Rune Keeper","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can read all writing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/sundries/documents/document-torn-diagram-tan.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234417,"modifiedTime":1672334764690,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lT8GsPOPgRzDC3QJ","name":"Bonus Cantrip (Druid)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you choose this circle at 2nd level, you learn one additional druid cantrip of your choice.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Circle of the Land 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/vines-thorned-glow-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234418,"modifiedTime":1672334373750,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"laVHAIOKIsUeezWd","name":"Superior Hunter's Defense: Evasion","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you are subjected to an effect, such as a red dragon's fiery breath or a lightning bolt spell, that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"superiorHuntersDefense"},"requirements":"Hunter 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/air-wave-gust-smoke-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234418,"modifiedTime":1672335270358,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lxfdjLer3uKjyZqU","name":"Invocation: Master of Myriad Forms","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.8RTDOt80u8aBv9qx]{Alter Self} at will, without expending a spell slot.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/cougar-pounce-stalk-black.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234419,"modifiedTime":1672334743046,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"mHcSjcHJ8oZu3hkb","name":"Fighting Style: Two-Weapon Fighting","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you engage in two-weapon fighting, you can add your ability modifier to the damage of the second attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"fightingStyle"},"requirements":"Fighter 1, Champion 10, Ranger 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-white-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234419,"modifiedTime":1672334614676,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"mQNPg89YIs7g5tG4","name":"Perfect Self","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 20th level, when you roll for initiative and have no ki points remaining, you regain 4 ki points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 20","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234420,"modifiedTime":1672335085553,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"myBu3zi5eYvQIcuy","name":"Additional Magical Secrets","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 6th level, you learn two spells of your choice from any class. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip. The chosen spells count as bard spells for you but don't count against the number of bard spells you know.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"College of Lore 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/sundries/documents/document-torn-diagram-tan.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234420,"modifiedTime":1672334297286,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"mzweVbnsJPQiVkAe","name":"Deflect Missiles","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 3rd level, you can use your reaction to deflect or catch the missile when you are hit by a ranged weapon attack. When you do so, the damage you take from the attack is reduced by 1d10 + your Dexterity modifier + your monk level.If you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in one hand and you have at least one hand free. If you catch a missile in this way, you can spend 1 @Compendium[dnd5e.classfeatures.10b6z2W1txNkrGP7]{Ki} point to make a ranged attack with the weapon or piece of ammunition you just caught, as part of the same reaction. You make this attack with proficiency, regardless of your weapon proficiencies, and the missile counts as a monk weapon for the attack, which has a normal range of 20 feet and a long range of 60 feet.Foundry NoteThe reduce damage roll is calculated by the Other Formula.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":"Can be thrown back using 1 ki point"},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1@scale.monk.die + @mod",""]],"versatile":""},"formula":"1d10 + @mod + @classes.monk.levels","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/ranged/arrow-flying-white-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234421,"modifiedTime":1672334411490,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Fighting Style (Ranger)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You adopt a particular style of fighting as your specialty. Choose one of the following options from the appropriate class list. You can't take a Fighting Style option more than once, even if you later get to choose again.\n@Compendium[dnd5e.classfeatures.8YwPFv3UAPjWVDNf]{Archery}\n@Compendium[dnd5e.classfeatures.zSlV0O2rQMdoq6pB]{Defense}\n@Compendium[dnd5e.classfeatures.hCop9uJrWhF1QPb4]{Dueling}\n@Compendium[dnd5e.classfeatures.mHcSjcHJ8oZu3hkb]{Two Weapon Fighting}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-daggers-orange.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661275427926,"modifiedTime":1672334517268,"lastModifiedBy":"dnd5ebuilder0000"},"folder":null,"sort":0,"_id":"nJA3ISVmyj3uPRVM"} +{"_id":"nTjmWbyHweXuIqwc","name":"Second Wind","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have a limited well of stamina that you can draw on to protect yourself from harm. On your turn, you can use a bonus action to regain hit points equal to 1d10 + your fighter level.Once you use this feature, you must finish a short or long rest before you can use it again.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @classes.fighter.levels","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Fighter 1","recharge":{"value":null,"charged":false}},"folder":null,"sort":0,"flags":{},"img":"icons/magic/life/heart-glowing-red.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234421,"modifiedTime":1674424670055,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nUrZDi6QN1YjwAr6","name":"Signature Spells","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you reach 20th level, you gain mastery over two powerful spells and can cast them with little effort. Choose two 3rd-level wizard spells in your spellbook as your signature spells. You always have these spells prepared, they don't count against the number of spells you have prepared, and you can cast each of them once at 3rd level without expending a spell slot. When you do so, you can't do so again until you finish a short or long rest.If you want to cast either spell at a higher level, you must expend a spell slot as normal.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":"","recovery":""},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Wizard 20","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/projectile-wave-arrow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234422,"modifiedTime":1674436105597,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nViGf6bZ6DQAJhkw","name":"Metamagic: Quickened Spell","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you cast a spell that has a casting time of 1 action, you can spend 2 sorcery points to change the casting time to 1 bonus action for this casting.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"metamagic"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/time/clock-stopwatch-white-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234422,"modifiedTime":1672334953649,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nahSkBO6LH4HkpaT","name":"Aura of Courage","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 10th level, you and friendly creatures within 10 feet of you can't be frightened while you are conscious.At 18th level, the range of this aura increases to 30 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":10,"long":30,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 10","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-beam-impact-silhouette.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234423,"modifiedTime":1672334284774,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ohwfuwnvuoBWlSQr","name":"Thieves' Cant","ownership":{"default":0},"type":"feat","system":{"description":{"value":"During your rogue training you learned thieves' cant, a secret mix of dialect, jargon, and code that allows you to hide messages in seemingly normal conversation. Only another creature that knows thieves' cant understands such messages. It takes four times longer to convey such a message than it does to speak the same idea plainly.In addition, you understand a set of secret signs and symbols used to convey short, simple messages, such as whether an area is dangerous or the territory of a thieves' guild, whether loot is nearby, or whether the people in an area are easy marks or will provide a safe house for thieves on the run.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/sundries/documents/document-torn-diagram-tan.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234423,"modifiedTime":1699988266779,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"olAqNsUTIef9x8xC","name":"Sacred Oath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you reach 3rd level, you swear the oath that binds you as a paladin forever. Up to this time you have been in a preparatory stage, committed to the path but not yet sworn to it. Now you choose an oath, such as the Oath of Devotion.\nYour choice grants you features at 3rd level and again at 7th, 15th, and 20th level. Those features include oath spells and the Channel Divinity feature.\nOath Spells\nEach oath has a list of associated spells. You gain access to these spells at the levels specified in the oath description. Once you gain access to an oath spell, you always have it prepared. Oath spells don't count against the number of spells you can prepare each day.\nIf you gain an oath spell that doesn't appear on the paladin spell list, the spell is nonetheless a paladin spell for you.\nChannel Divinity\nSee @Compendium[dnd5e.classfeatures.8M7uOPhbTxoxxJSo]{Channel Divinity}.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 3","recharge":{"value":null,"charged":false}},"sort":0,"flags":{},"img":"icons/sundries/documents/document-sealed-red-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234424,"modifiedTime":1672335234911,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"oygRF3ZjTv2T7z0Y","name":"Spellcasting (Sorcerer)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"An event in your past, or in the life of a parent or ancestor, left an indelible mark on you, infusing you with arcane magic. This font of magic, whatever its origin, fuels your spells.\nCantrips\nAt 1st level, you know four cantrips of your choice from the sorcerer spell list. You learn additional sorcerer cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Sorcerer table.\nSpell Slots\nThe Sorcerer table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these sorcerer spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nFor example, if you know the 1st-level spell burning hands and have a 1st-level and a 2nd-level spell slot available, you can cast burning hands using either slot.\nSpells Known of 1st Level and Higher\nYou know two 1st-level spells of your choice from the sorcerer spell list.\nThe Spells Known column of the Sorcerer table shows when you learn more sorcerer spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.\nAdditionally, when you gain a level in this class, you can choose one of the sorcerer spells you know and replace it with another spell from the sorcerer spell list, which also must be of a level for which you have spell slots.\nSpellcasting Ability\nCharisma is your spellcasting ability for your sorcerer spells, since the power of your magic relies on your ability to project your will into the world. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a sorcerer spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Charisma modifier\nSpell attack modifier = your proficiency bonus + your Charisma modifier\nSpellcasting Focus\nYou can use an arcane focus as a spellcasting focus for your sorcerer spells.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Sorcerer 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/strike-hand-glow-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234424,"modifiedTime":1672335283911,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"pAQMJU5R9SGUmzHU","name":"Defensive Tactics: Escape the Horde","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Opportunity attacks against you are made with disadvantage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"defensiveTactic"},"requirements":"Hunter 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/bats-movement-flying-black.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234425,"modifiedTime":1672334425615,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"pJADgAxxefgcATWr","name":"Invocation: Thirsting Blade","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can attack with your pact weapon twice, instead of once, whenever you take the Attack action on your turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 5, Pact of the Blade","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/blade-tip-chipped-blood-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234426,"modifiedTime":1672334695379,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"pquwueEMweRhiWaq","name":"Peerless Skill","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 14th level, when you make an ability check, you can expend one use of @Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiraton}.Roll a Bardic Inspiration die and add the number rolled to your ability check.You can choose to do so after you roll the die for the ability check, but before the GM tells you whether you succeed or fail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"College of Lore 14","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/hand-sparks-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234426,"modifiedTime":1672335087679,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"pvRc6GAu1ok6zihC","name":"Ki: Stunning Strike","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 5th level, you can interfere with the flow of ki in an opponent's body. When you hit another creature with a melee weapon attack, you can spend 1 ki point to attempt a stunning strike. The target must succeed on a Constitution saving throw or be stunned until the end of your next turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"wis"},"type":{"value":"class","subtype":"ki"},"requirements":"Monk 5","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/unarmed-punch-fist-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234427,"modifiedTime":1672334873112,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"q9g1MLXuLZyxjQMg","name":"Extra Attack (Fighter)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can attack twice, instead of once, whenever you take the Attack action on your turn.The number of attacks increases to three when you reach 11th level in this class and to four when you reach 20th level in this class.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Fighter 5","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/spear-tips-triple-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234427,"modifiedTime":1672334539181,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"r01WtcxTg4yTHm9m","name":"Invocation: Eldritch Spear","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you cast @Compendium[dnd5e.spells.Z9p1vezIn95jw1Yw]{Eldritch Blast}, its range is 300 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2, Eldritch Blast","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/weapons/ammunition/arrowhead-glowing-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234427,"modifiedTime":1672334768328,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"r0unvWK0lPsDthDx","name":"Hide in Plain Sight","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 10th level, you can spend 1 minute creating camouflage for yourself. You must have access to fresh mud, dirt, plants, soot, and other naturally occurring materials with which to create your camouflage.Once you are camouflaged in this way, you can try to hide by pressing yourself up against a solid surface, such as a tree or wall, that is at least as tall and wide as you are. You gain a +10 bonus to Dexterity (Stealth) checks as long as you remain there without moving or taking actions. Once you move or take an action or a reaction, you must camouflage yourself again to gain this benefit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 10","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/stealth-hide-eyes-green.webp","effects":[{"_id":"7if4vIkT84Sw2zFm","changes":[{"key":"system.skills.ste.bonuses.check","mode":2,"value":"+10","priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/nature/stealth-hide-eyes-green.webp","label":"Hide in Plain Sight","origin":"Item.r0unvWK0lPsDthDx","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234428,"modifiedTime":1672334583742,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"r91UIgwFdHwkXdia","name":"Channel Divinity: Turn Undead","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As an action, you present your holy symbol and speak a prayer censuring the undead.Each undead that can see or hear you within 30 feet of you must make a Wisdom saving throw. If the creature fails its saving throw, it is turned for 1 minute or until it takes any damage.A turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions.For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":"Targets must be able to see or hear you."},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"wis"},"type":{"value":"class","subtype":"channelDivinity"},"requirements":"Cleric 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/flame-burning-creature-skeleton.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234428,"modifiedTime":1672334343227,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rBDZLatuoolT2FUW","name":"Tranquility","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 11th level, you can enter a special meditation that surrounds you with an aura of peace. At the end of a long rest, you gain the effect of a @Compendium[dnd5e.spells.gvdA9nPuWLck4tBl]{Sanctuary} spell that lasts until the start of your next long rest (the spell can end early as normal). The saving throw DC for the spell equals 8 + your Wisdom modifier + your proficiency bonus.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"wis"},"type":{"value":"class","subtype":""},"requirements":"Way of the Open Hand 11","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/tree-spirit-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234429,"modifiedTime":1672335326164,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rQhWDaMHMn7iU4f2","name":"Stroke of Luck","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 20th level, you have an uncanny knack for succeeding when you need to. If your attack misses a target within range, you can turn the miss into a hit. Alternatively, if you fail an ability check, you can treat the d20 roll as a 20.Once you use this feature, you can't use it again until you finish a short or long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 20","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/hand-sparks-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234429,"modifiedTime":1672335277704,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rdBPd6CwqXT64iJM","name":"Invocation: Repelling Blast","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you hit a creature with @Compendium[dnd5e.spells.Z9p1vezIn95jw1Yw]{Eldritch Blast}, you can push the creature up to 10 feet away from you in a straight line.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2, Eldritch Blast","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/explosion-embers-evade-silhouette.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234430,"modifiedTime":1672334714365,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rhbwDZ9XNTmdkX2u","name":"Invocation: Thief of Five Fates","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.95K2aUhAGV9qXjnf]{Bane} once using a warlock spell slot. You can't do so again until you finish a long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":3,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"cha"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/earth/orb-stone-smoke-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234430,"modifiedTime":1672334699386,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rtpQdX77dYWbDIOH","name":"Monastic Tradition","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you reach 3rd level, you commit yourself to a monastic tradition, such as the Way of the Open Hand. Your tradition grants you features at 3rd level and again at 6th, 11th, and 17th level.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/tree-roots-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234430,"modifiedTime":1672334937534,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"s0Cc2zcX0JzIgam5","name":"Ability Score Improvement","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 4, Bard 4, Cleric 4, Druid 4, Monk 4, Paladin 4, Ranger 4, Sorcerer 4, Warlock 4, Wizard 4","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-white-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234431,"modifiedTime":1672334317018,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"sPy2OLoN7JaAcMl4","name":"Ability Score Improvement (Fighter)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you reach 4th level, and again at 6th, 8th, 12th, 14th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Fighter 4","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234431,"modifiedTime":1672334314469,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"slelvrm83v9UAKZU","name":"Defensive Tactics: Multiattack Defense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When a creature hits you with an attack, you gain a +4 bonus to AC against all subsequent attacks made by that creature for the rest of the turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"defensiveTactic"},"requirements":"Hunter 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-white-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234432,"modifiedTime":1672334422021,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"snsjxGfmzWfZR5Nh","name":"Invocation: Witch Sight","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can see the true form of any shapechanger or creature concealed by illusion or transmutation magic while the creature is within 30 feet of you and within line of sight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/eye-tendrils-web-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234432,"modifiedTime":1672334675903,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"swK0r5TOIxredxWS","name":"Wild Shape","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 2nd level, you can use your action to magically assume the shape of a beast that you have seen before. You can use this feature twice. You regain expended uses when you finish a short or long rest.\nYour druid level determines the beasts you can transform into, as shown in the Beast Shapes table. At 2nd level, for example, you can transform into any beast that has a challenge rating of 1/4 or lower that doesn't have a flying or swimming speed.\nBeast Shapes\n\n\nLevel\nMax. CR\nLimitations\nExample\n\n\n\n\n2nd\n1/4\nNo flying or swimming speed\n@Compendium[dnd5e.monsters.yawTeS8u2FCfzzZH]{Wolf}\n\n\n4th\n1/2\nNo flying speed\n@Compendium[dnd5e.monsters.8aCTKP5qaBPFOqxM]{Crocodile}\n\n\n8th\n1\n—\n@Compendium[dnd5e.monsters.9bHoR8k5D2DKHaF3]{Giant Eagle}\n\n\n\nYou can stay in a beast shape for a number of hours equal to half your druid level (rounded down). You then revert to your normal form unless you expend another use of this feature. You can revert to your normal form earlier by using a bonus action on your turn. You automatically revert if you fall unconscious, drop to 0 hit points, or die.\nWhile you are transformed, the following rules apply:\n\n\nYour game statistics are replaced by the statistics of the beast, but you retain your alignment, personality, and Intelligence, Wisdom, and Charisma scores. You also retain all of your skill and saving throw proficiencies, in addition to gaining those of the creature. If the creature has the same proficiency as you and the bonus in its stat block is higher than yours, use the creature's bonus instead of yours. If the creature has any legendary or lair actions, you can't use them.\n\n\nWhen you transform, you assume the beast's hit points and Hit Dice. When you revert to your normal form, you return to the number of hit points you had before you transformed. However, if you revert as a result of dropping to 0 hit points, any excess damage carries over to your normal form. For example, if you take 10 damage in animal form and have only 1 hit point left, you revert and take 9 damage. As long as the excess damage doesn't reduce your normal form to 0 hit points, you aren't knocked unconscious.\n\n\nYou can't cast spells, and your ability to speak or take any action that requires hands is limited to the capabilities of your beast form. Transforming doesn't break your concentration on a spell you've already cast, however, or prevent you from taking actions that are part of a spell, such as call lightning, that you've already cast.\n\n\nYou retain the benefit of any features from your class, race, or other source and can use them if the new form is physically capable of doing so. However, you can't use any of your special senses, such as darkvision, unless your new form also has that sense.\n\n\nYou choose whether your equipment falls to the ground in your space, merges into your new form, or is worn by it. Worn equipment functions as normal, but the GM decides whether it is practical for the new form to wear a piece of equipment, based on the creature's shape and size. Your equipment doesn't change size or shape to match the new form, and any equipment that the new form can't wear must either fall to the ground or merge with it. Equipment that merges with the form has no effect until you leave the form.\n\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"floor(@classes.druid.levels / 2)","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":2,"max":"@classes.druid.levels > 19 ? 99 : 2","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Druid 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/elk-moose-marked-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234433,"modifiedTime":1672335351472,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"tNG2qi9zhmXEkecA","name":"Metamagic: Heightened Spell","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you cast a spell that forces a creature to make a saving throw to resist its effects, you can spend 3 sorcery points to give one target of the spell disadvantage on its first saving throw made against the spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"metamagic"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/explosion-mushroom-nuke-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234433,"modifiedTime":1672334958321,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"tQxlKyAx9sgPrbgj","name":"Metamagic: Extended Spell","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you cast a spell that has a duration of 1 minute or longer, you can spend 1 sorcery point to double its duration, to a maximum duration of 24 hours.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"metamagic"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/time/hourglass-yellow-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234434,"modifiedTime":1672334962661,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"u4NLajXETJhJU31v","name":"Spellcasting (Bard)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have learned to untangle and reshape the fabric of reality in harmony with your wishes and music. Your spells are part of your vast repertoire, magic that you can tune to different situations.\nCantrips\nYou know two cantrips of your choice from the bard spell list. You learn additional bard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Bard table.\nSpell Slots\nThe Bard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nFor example, if you know the 1st-level spell cure wounds and have a 1st-level and a 2nd-level spell slot available, you can cast cure wounds using either slot.\nSpells Known of 1st Level and Higher\nYou know four 1st-level spells of your choice from the bard spell list.\nThe Spells Known column of the Bard table shows when you learn more bard spells of your choice. Each of these spells must be of a level for which you have spell slots, as shown on the table. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.\nAdditionally, when you gain a level in this class, you can choose one of the bard spells you know and replace it with another spell from the bard spell list, which also must be of a level for which you have spell slots.\nSpellcasting Ability\nCharisma is your spellcasting ability for your bard spells. Your magic comes from the heart and soul you pour into the performance of your music or oration. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a bard spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Charisma modifier\nSpell attack modifier = your proficiency bonus + your Charisma modifier\nRitual Casting\nYou can cast any bard spell you know as a ritual if that spell has the ritual tag.\nSpellcasting Focus\nYou can use a musical instrument (see @UUID[Compendium.dnd5e.rules.BYFd9hiJGo9L5aOM.JournalEntryPage.AjavRU4yPfI9hfaI]{Adventuring Gear})) as a spellcasting focus for your bard spells.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/symbols/runes-carved-stone-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234434,"modifiedTime":1672335296102,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"u6Du2P9s81SWuGbi","name":"Druid Circle","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 2nd level, you choose to identify with a circle of druids, such as the Circle of the Land.Your choice grants you features at 2nd level and again at 6th, 10th, and 14th level.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Druid 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/tree-roots-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234435,"modifiedTime":1672334485072,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"u6xV3Ki3TXRrD7zg","name":"Spellcasting (Ranger)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"By the time you reach 2nd level, you have learned to use the magical essence of nature to cast spells, much as a druid does.\nSpell Slots\nThe Ranger table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nFor example, if you know the 1st-level spell animal friendship and have a 1st-level and a 2nd-level spell slot available, you can cast animal friendship using either slot.\nSpells Known of 1st Level and Higher\nYou know two 1st-level spells of your choice from the ranger spell list.\nThe Spells Known column of the Ranger table shows when you learn more ranger spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 5th level in this class, you can learn one new spell of 1st or 2nd level.\nAdditionally, when you gain a level in this class, you can choose one of the ranger spells you know and replace it with another spell from the ranger spell list, which also must be of a level for which you have spell slots.\nSpellcasting Ability\nWisdom is your spellcasting ability for your ranger spells, since your magic draws on your attunement to nature. You use your Wisdom whenever a spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a ranger spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Wisdom modifier\nSpell attack modifier = your proficiency bonus + your Wisdom modifier","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/trap-spikes-thorns-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234435,"modifiedTime":1672335286932,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"v4gKwLhAq9vuqza7","name":"Spellcasting (Cleric)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As a conduit for divine power, you can cast cleric spells.\nCantrips\nAt 1st level, you know three cantrips of your choice from the cleric spell list. You learn additional cleric cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Cleric table.\nPreparing and Casting Spells\nThe Cleric table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nYou prepare the list of cleric spells that are available for you to cast, choosing from the cleric spell list. When you do so, choose a number of cleric spells equal to your Wisdom modifier + your cleric level (minimum of one spell). The spells must be of a level for which you have spell slots.\nFor example, if you are a 3rd-level cleric, you have four 1st-level and two 2nd-level spell slots. With a Wisdom of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of cleric spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\nSpellcasting Ability\nWisdom is your spellcasting ability for your cleric spells. The power of your spells comes from your devotion to your deity. You use your Wisdom whenever a cleric spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a cleric spell you cast and when making an attack roll with one.\nSpell save DC= 8 + your proficiency bonus + your Wisdom modifier\nSpell attack modifier = your proficiency bonus + your Wisdom modifier\nRitual Casting\nYou can cast a cleric spell as a ritual if that spell has the ritual tag and you have the spell prepared.\nSpellcasting Focus\nYou can use a holy symbol (see @UUID[Compendium.dnd5e.rules.BYFd9hiJGo9L5aOM.JournalEntryPage.AjavRU4yPfI9hfaI]{Adventuring Gear}) as a spellcasting focus for your cleric spells.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Cleric 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/life/ankh-gold-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234436,"modifiedTime":1672335293963,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"v7MxFuTAgOsmxZCD","name":"Ability Score Improvement (Rogue)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you reach 4th level, and again at 8th, 10th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 4","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/silhouette-robe-evil-power.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234436,"modifiedTime":1672334311777,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"vt31lWAULygEl7yk","name":"Danger Sense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 2nd level, you gain an uncanny sense of when things nearby aren't as they should be, giving you an edge when you dodge away from danger.You have advantage on Dexterity saving throws against effects that you can see, such as traps and spells. To gain this benefit, you can't be blinded, deafened, or incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/wounds/injury-face-impact-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234437,"modifiedTime":1672334435989,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"wKdRtFsvGfMKQHLY","name":"Natural Recovery","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 2nd level, you can regain some of your magical energy by sitting in meditation and communing with nature.During a short rest, you choose expended spell slots to recover. The spell slots can have a combined level that is equal to or less than half your druid level (rounded up), and none of the slots can be 6th level or higher. You can't use this feature again until you finish a long rest.For example, when you are a 4th-level druid, you can recover up to two levels worth of spell slots. You can recover either a 2nd-level slot or two 1st-level slots.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"The druid can recover this number worth of spell slots (of 5th level or lower):","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"ceil(@classes.druid.levels/2)","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Circle of the Land 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/sihouette-hold-beam-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234438,"modifiedTime":1672335020386,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"wrxIW5sDfmGr3u5s","name":"Hunter's Prey","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 3rd level, you gain one of the following features of your choice.@Compendium[dnd5e.classfeatures.5gx1O0sxK08awEO9]{Colossus Slayer}@Compendium[dnd5e.classfeatures.StfmqK1twVfukpa0]{Giant Killer}@Compendium[dnd5e.classfeatures.C6sHdDGmCMo0cYHd]{Horde Breaker}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Hunter 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/acid/dissolve-bone-skull.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234439,"modifiedTime":1674435889165,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"x637K2Icp2ZFM1TB","name":"Divine Domain","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Choose one domain related to your deity, such as Life. Your choice grants you domain spells and other features when you choose it at 1st level. It also grants you additional ways to use Channel Divinity when you gain that feature at 2nd level, and additional benefits at 6th, 8th, and 17th levels.\nDomain Spells\nEach domain has a list of spells—its domain spells—that you gain at the cleric levels noted in the domain description. Once you gain a domain spell, you always have it prepared, and it doesn't count against the number of spells you can prepare each day.\nIf you have a domain spell that doesn't appear on the cleric spell list, the spell is nonetheless a cleric spell for you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Cleric 1","recharge":{"value":null,"charged":false}},"sort":0,"flags":{},"img":"icons/magic/nature/tree-spirit-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234439,"modifiedTime":1672334403896,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"x6IJZwr6f0SGral7","name":"Pact Magic","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your arcane research and the magic bestowed on you by your patron have given you facility with spells.\nCantrips\nYou know two cantrips of your choice from the warlock spell list. You learn additional warlock cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Warlock table.\nSpell Slots\nThe Warlock table shows how many spell slots you have. The table also shows what the level of those slots is; all of your spell slots are the same level. To cast one of your warlock spells of 1st level or higher, you must expend a spell slot. You regain all expended spell slots when you finish a short or long rest.\nFor example, when you are 5th level, you have two 3rd-level spell slots. To cast the 1st-level spell thunderwave, you must spend one of those slots, and you cast it as a 3rd-level spell.\nSpells Known of 1st Level and Higher\nAt 1st level, you know two 1st-level spells of your choice from the warlock spell list.\nThe Spells Known column of the Warlock table shows when you learn more warlock spells of your choice of 1st level and higher. A spell you choose must be of a level no higher than what's shown in the table's Slot Level column for your level. When you reach 6th level, for example, you learn a new warlock spell, which can be 1st, 2nd, or 3rd level.\nAdditionally, when you gain a level in this class, you can choose one of the warlock spells you know and replace it with another spell from the warlock spell list, which also must be of a level for which you have spell slots.\nSpellcasting Ability\nCharisma is your spellcasting ability for your warlock spells, so you use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a warlock spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Charisma modifier\nSpell attack modifier = your proficiency bonus + your Charisma modifier\nSpellcasting Focus\nYou can use an arcane focus as a spellcasting focus for your warlock spells.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Warlock 1","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/wounds/blood-spurt-spray-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234440,"modifiedTime":1672335002163,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"x6eEZ9GUsuOcEa3G","name":"Elemental Affinity","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 6th level, when you cast a spell that deals damage of the type associated with your draconic ancestry, you can add your Charisma modifier to one damage roll of that spell. At the same time, you can spend 1 sorcery point to gain resistance to that damage type for 1 hour.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":"1 sorcery point is also required if the resistance is desired."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@mod",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Draconic Bloodline 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/projectile-icecicles-salvo.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234440,"modifiedTime":1672334472794,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xF1VTcJ3AdkbTsdQ","name":"Action Surge","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 2nd level, you can push yourself beyond your normal limits for a moment. On your turn, you can take one additional action on top of your regular action and a possible Bonus Action.Once you use this feature, you must finish a short or long rest before you can use it again. Starting at 17th level, you can use it twice before a rest, but only once on the same turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"@scale.fighter.action-surge","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Fighter 2","recharge":{"value":null,"charged":false}},"folder":null,"sort":0,"flags":{},"img":"icons/skills/social/intimidation-impressing.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234440,"modifiedTime":1674424657568,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xNN0JMKqlG4hKVYu","name":"Channel Divinity: Sacred Weapon","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As an action, you can imbue one weapon that you are holding with positive energy, using your Channel Divinity.For 1 minute, you add your Charisma modifier to attack rolls made with that weapon (with a minimum bonus of +1). The weapon also emits bright light in a 20-foot radius and dim light 20 feet beyond that. If the weapon is not already magical, it becomes magical for the duration.You can end this effect on your turn as part of any other action. If you are no longer holding or carrying this weapon, or if you fall unconscious, this effect ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":40,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"channelDivinity"},"requirements":"Oath of Devotion 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234441,"modifiedTime":1672334353069,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xvgPu1O57DgXCM86","name":"Beast Spells","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 18th level, you can cast many of your druid spells in any shape you assume using @Compendium[dnd5e.classfeatures.swK0r5TOIxredxWS]{Wild Shape}. You can perform the somatic and verbal components of a druid spell while in a beast shape, but you aren't able to provide material components.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Druid 18","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/stinger-poison-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234441,"modifiedTime":1672334266521,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xzD9zlRP6dUxCtCl","name":"Retaliation","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 14th level, when you take damage from a creature that is within 5 feet of you, you can use your reaction to make a melee weapon attack against that creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Path of the Berserker 14","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234442,"modifiedTime":1672335239999,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ySMPQ6zNSlvkrl2f","name":"Divine Smite","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 2nd level, when you hit a creature with a melee weapon attack, you can expend one spell slot to deal radiant damage to the target, in addition to the weapon's damage.The extra damage is 2d8 for a 1st-level spell slot, plus 1d8 for each spell level higher than 1st, to a maximum of 5d8. The damage increases by 1d8 if the target is an undead or a fiend.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","radiant"]],"versatile":"1d8"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234442,"modifiedTime":1672334500311,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"yrSFIGTaQOH2PFRI","name":"Ki: Step of the Wind","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can spend 1 ki point to take the Disengage or Dash action as a bonus action on your turn, and your jump distance is doubled for the turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"ki"},"requirements":"Monk 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/air-wave-gust-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234443,"modifiedTime":1672334877769,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"yv49QN6Bzqs0ecCs","name":"Blessed Healer","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 6th level, the healing spells you cast on others heal you as well.When you cast a spell of 1st level or higher that restores hit points to a creature other than you, you regain hit points equal to 2 + the spell's level.Foundry NoteThe healing formula is set to 2. Please add the additional from the spell level manually.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Life Domain 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/orbs-hand-gray.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234443,"modifiedTime":1672334380243,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zB77V8BcCJvWVxck","name":"Mystic Arcanum","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 11th level, your patron bestows upon you a magical secret called an arcanum. Choose one 6th-level spell from the warlock spell list as this arcanum.You can cast your arcanum spell once without expending a spell slot. You must finish a long rest before you can do so again.At higher levels, you gain more warlock spells of your choice that can be cast in this way: one 7th-level spell at 13th level, one 8th-level spell at 15th level, and one 9th-level spell at 17th level. You regain all uses of your Mystic Arcanum when you finish a long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":"","recovery":""},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Warlock 11","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/sundries/books/book-black-grey.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234444,"modifiedTime":1674435967316,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zCeqyQ8uIPNdYJSW","name":"Unarmored Movement","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 2nd level, your speed increases by 10 feet while you are not wearing armor or wielding a shield. This bonus increases when you reach certain monk levels, as shown in the Monk table.\nAt 9th level, you gain the ability to move along vertical surfaces and across liquids on your turn without falling during the move.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/root-vine-entangle-foot-green.webp","effects":[{"_id":"Veg0vXI93A0qlxZn","flags":{},"changes":[{"key":"system.attributes.movement.walk","value":"10","mode":2,"priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null,"combat":null},"icon":"icons/magic/nature/root-vine-entangle-foot-green.webp","label":"Unarmored Movement","origin":"Item.zCeqyQ8uIPNdYJSW","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234338,"modifiedTime":1672335315431,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zElYrOcCFFMhB6Xl","name":"Metamagic: Careful Spell","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you cast a spell that forces other creatures to make a saving throw, you can protect some of those creatures from the spell's full force. To do so, you spend 1 sorcery point and choose a number of those creatures up to your Charisma modifier (minimum of one creature). A chosen creature automatically succeeds on its saving throw against the spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"metamagic"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/beam-hand-leaves-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234445,"modifiedTime":1672334973777,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zSlV0O2rQMdoq6pB","name":"Fighting Style: Defense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While you are wearing armor, you gain a +1 bonus to AC","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"fightingStyle"},"requirements":"Fighter 1, Champion 10, Paladin 2, Ranger 2","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/equipment/shield/heater-stone-orange.webp","effects":[{"_id":"U3so0zDcVt4sIBRz","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"+1","mode":2,"priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/equipment/shield/heater-stone-orange.webp","label":"Fighting Style: Defense","origin":"Item.4mQUDmiDBePkQD6Y","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234445,"modifiedTime":1672334633452,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zUIAzBnyt0NDvVXb","name":"Invocation: Lifedrinker","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you hit a creature with your pact weapon, the creature takes extra necrotic damage equal to your Charisma modifier (minimum 1).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 12, Pact of the Blade","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/strike-sword-blood-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234446,"modifiedTime":1672334750254,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zYIdNAjqRyhS6qWs","name":"Invocation: Visions of Distant Realms","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can cast @Compendium[dnd5e.spells.ImlCJQwR1VL40Qem]{Arcane Eye} at will, without expending a spell slot.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"eldritchInvocation"},"requirements":"Warlock 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234446,"modifiedTime":1672334691507,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zbHu0NvHuII8lR7W","name":"Defensive Tactics: Steel Will","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have advantage on saving throws against being frightened.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"defensiveTactic"},"requirements":"Hunter 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/control-influence-rally-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234447,"modifiedTime":1672334416660,"lastModifiedBy":"dnd5ebuilder0000"}} diff --git a/packs/heroes.db b/packs/heroes.db index f259182ef3..3e035f1d63 100644 --- a/packs/heroes.db +++ b/packs/heroes.db @@ -1,12 +1,12 @@ -{"name":"Perrin (Halfling Monk)","type":"character","img":"","system":{"abilities":{"str":{"value":8,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"unarmoredMonk","formula":""},"hp":{"value":9,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""},"min":0},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":25,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"int","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"A devoted student of his local monastery, Perrin has been tasked with bringing balance to the surrounding lands.","public":""},"alignment":"True Neutral","race":"Lightfoot Halfling","background":"","originalClass":"ckabMZ0IHcAMt16f","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":"Advantage against being frightenned"},"languages":{"value":["common","celestial","draconic","halfling"],"custom":""},"weaponProf":{"value":["sim","shortsword"],"custom":""},"armorProf":{"value":[],"custom":""},"toolProf":{"value":["art"],"custom":""}},"currency":{"pp":0,"gp":15,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":true,"lr":true,"label":"Ki"},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Perrin","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":5,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"T46tnnPLPLqZD4y6","name":"Shortsword","type":"weapon","system":{"description":{"value":"A medium sized blade with a firm crossguard and a leather-wrapped handle. A versatile weapon which makes up in versatility what it lacks in reach.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.osLzOwQdPtrK3rQH"}},"img":"icons/weapons/swords/sword-guard-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CGrcakEeW3p91uA3","name":"Dart","type":"weapon","system":{"description":{"value":"A small thrown implement crafted with a short wooden shaft and crossed feathres with a sharp wooden or metal tip. Darts can be thrown with sufficient force to puncture the skin.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"fin":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3rCO8MTIdPGSW6IJ"}},"img":"icons/weapons/ammunition/arrows-war-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647459,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"tk47HuZ9KhhG6oyE","name":"Darts","type":"consumable","system":{"description":{"value":"A small thrown implement crafted with a short wooden shaft and crossed feathres with a sharp wooden or metal tip. Darts can be thrown with sufficient force to puncture the skin.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":0.25,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"sort":0,"flags":{},"img":"icons/weapons/ammunition/arrows-war-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647467,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"yGOuEfl6dj9SEEnz","name":"Reliquary","type":"equipment","system":{"description":{"value":"A tiny box or other container holding a fragment of a precious relic, saint, or other historical figure that dedicated their life to walk the path of a true believer. A deity imbues the bearer of this artifact with the ability to call forth their power and in doing so spread the faith once more.Spellcasting Focus. A cleric or paladin can use a holy symbol as a spellcasting focus. To use the symbol in this way, the caster must hold it in hand, wear it visibly, or bear it on a shield.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"special","cost":null,"condition":"Holy symbol must be clearly visible."},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"trinket","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.gP1URGq3kVIIFHJ7"}},"img":"icons/containers/chest/chest-reinforced-steel-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kv2sjsn0DjC73m10","name":"Common Clothes","type":"equipment","system":{"description":{"value":"Clothes worn by most commoners.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.8RXjiddJ6VGyE7vB"}},"img":"icons/equipment/chest/shirt-collared-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640220,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"l0vkpRTijWpKpchS","name":"Vestments","type":"equipment","system":{"description":{"value":"Simple or ostentacious wear, often used by priests and other religious figures for use in rituals and ceremonies.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.irtqrzaUCeshmTZp"}},"img":"icons/equipment/back/mantle-collared-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BZHvYtMOT8o79DUP","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xF9FAqgCFIgs9uYh","name":"Pouch","type":"backpack","system":{"description":{"value":"A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":6,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.9bWTRRDym06PzSAf"}},"img":"icons/containers/bags/coinpouch-simple-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640234,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"meouv7TcVXCuHTzN","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640246,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"QMrV3LGEMAq9rbrk","name":"Waterskin","type":"consumable","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Uv0ilmzbWvqmlCVH"}},"img":"icons/sundries/survival/wetskin-leather-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640253,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"83igOLLYFTQt2l2h","name":"Prayer Book","type":"loot","system":{"description":{"value":"A book containing prayers and incantations dedicated to a specific power for the faithful to follow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.odV5cq2HSLSCH69k"}},"img":"icons/sundries/books/book-backed-silver-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"cOYjvBsIwGnv4yTR","name":"Stick of Incense","type":"loot","system":{"description":{"value":"When blocks of incense cannot be used or a cheaper alternative is required, people often use these to perfume the air, whether for pleasurable or religious purposes.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":5,"weight":0,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3b0RvGi0TnTYpIxn"}},"img":"icons/commodities/wood/bamboo-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640262,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"tphiFNpeptbQBjm5","name":"Crowbar","type":"loot","system":{"description":{"value":"Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.V5UAjT3ed6sDNtgm"}},"img":"icons/tools/hand/pickaxe-steel-white.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"w6feWChZCGt6ZolS","name":"Hammer","type":"loot","system":{"description":{"value":"A tool with heavy metal head mounted ar the right angles at the end of a handle, used for job such as breaking things and driving in nails. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.14pNRT4sZy9rgvhb"}},"img":"icons/tools/smithing/hammer-sledge-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Tk7cT2wr9WlVBPLT","name":"Piton","type":"consumable","system":{"description":{"value":"A metal spike that is drive into a seam in a climbing surface with a climbing hammer. It can also be used like iron spikes to block doors in a pinch.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":0.25,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.TqyvIglHDj5kfohR"}},"img":"icons/sundries/survival/stake-rough-simple-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647473,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Xa8diQyGckThAtTL","name":"Torch","type":"consumable","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":40,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.BnOCLuNWhVvzHLjl"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647480,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"v8UvDhKdwqShRnX7","name":"Tinderbox","type":"loot","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DNOSEAvF4Oh1DlWy"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640283,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"D7cvC9lq7qUdvoUr","name":"Hempen Rope (50 ft.)","type":"consumable","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QXmaarJ4X8P0C1HV"}},"img":"icons/sundries/survival/rope-wrapped-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YdZrV1HM7x0q7t99","name":"Brave","type":"feat","system":{"description":{"value":"You have advantage on saving throws against being frightened.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"You have advantage on saving throws against being frightened.","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Halfling","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.108q5fJnnBRoLKfe"}},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LIB9TNHLEmuohMLn","name":"Lucky","type":"feat","system":{"description":{"value":"When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.Foundry Note: Enable this feature in the Special Traits section of the character sheet.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Halfling","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.LOMdcNAGWh5xpfm4"}},"img":"icons/sundries/gaming/dice-runed-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MEbwGBWDnCYWAcKu","name":"Naturally Stealthy","type":"feat","system":{"description":{"value":"You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Lightfoot","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.GWPjKFeIthBBeCFJ"}},"img":"icons/magic/perception/silhouette-stealth-shadow.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1wrJ898tmYcUUj5C","name":"Halfling Nimbleness","type":"feat","system":{"description":{"value":"You can move through the space of any creature that is of a size larger than yours.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Halfling","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.PqxZgcJzp1VVgP8t"}},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"f2nWYA1kRgCTcTtR","name":"Lightfoot","type":"feat","system":{"description":{"value":"\n\n\nAs a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others. \n \nLightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life. Ability Score Increase. Your Charisma score increases by 1.Naturally Stealthy. @Compendium[dnd5e.races.GWPjKFeIthBBeCFJ]{Naturally Stealthy} You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Halfling","recharge":{"value":null,"charged":false}},"sort":0,"flags":{},"img":"icons/magic/lightning/bolt-forked-teal.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KROifaAhldMdTVyB","name":"Halfling","type":"feat","system":{"description":{"value":"\n\n\nYour halfling character has a number of traits in common with all other halflings. Ability Score Increase. Your Dexterity score increases by 2.Age. A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.Alignment. Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.Size. Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.Speed. Your base walking speed is 25 feet.Lucky. @Compendium[dnd5e.races.LOMdcNAGWh5xpfm4]{Lucky} When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.Brave. @Compendium[dnd5e.races.7Yoo9hG0hfPSmBoC]{Brave} You have advantage on saving throws against being frightened.\n\n\n\n\n\n\nHalfling Nimbleness. @Compendium[dnd5e.races.PqxZgcJzp1VVgP8t]{Halfling Nimbleness} You can move through the space of any creature that is of a size larger than yours.Languages. You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.GH2dNne2bt1NjcJk"}},"img":"icons/magic/lightning/bolt-forked-large-teal.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"name":"Priest","type":"background","system":{"description":{"value":"Skill Proficiencies: Insight, ReligionLanguages: Two of your choiceEquipment: A holy symbol, 5 sticks of incense, prayer book, vestments, a set of common clothes, and a pouch containing 15 gp.","chat":"","unidentified":""},"source":"","advancement":[]},"img":"icons/sundries/documents/document-torn-diagram-tan.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040726622,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"q4tr1vTU8RxtU1UZ"},{"_id":"ckabMZ0IHcAMt16f","name":"Monk","type":"class","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"As a monk, you gain the following class features.\nHit Points\nHit Dice: 1d8 per monk levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per monk level after 1st\nProficiencies\nArmor: NoneWeapons: Simple weapons, shortswordsTools: Choose one type of artisan's tools or one musical instrumentSaving Throws: Strength, DexteritySkills: Choose two from Acrobatics, Athletics, History, Insight, Religion, and Stealth\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a shortsword or (b) any simple weapon\n(a) a dungeoneer's pack or (b) an explorer's pack\n10 darts\n\nMonk Advancement\n\n\n\nLevel\nProficiency Bonus\nMartial Arts\nKi Points\nUnarmored Movement\nFeatures\n\n\n\n\n1st\n+2\n1d4\n—\n—\n@Compendium[dnd5e.classfeatures.UAvV7N7T4zJhxdfI]{Unarmored Defense}, @Compendium[dnd5e.classfeatures.l50hjTxO2r0iecKw]{Martial Arts}\n\n\n2nd\n+2\n1d4\n2\n+10 ft.\n@Compendium[dnd5e.classfeatures.10b6z2W1txNkrGP7]{Ki}, @Compendium[dnd5e.classfeatures.zCeqyQ8uIPNdYJSW]{Unarmored Movement}\n\n\n3rd\n+2\n1d4\n3\n+10 ft.\n@Compendium[dnd5e.classfeatures.rtpQdX77dYWbDIOH]{Monastic Tradition}, @Compendium[dnd5e.classfeatures.mzweVbnsJPQiVkAe]{Deflect Missiles}\n\n\n4th\n+2\n1d4\n4\n+10 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}, @Compendium[dnd5e.classfeatures.KQz9bqxVkXjDl8gK]{Slow Fall}\n\n\n5th\n+3\n1d6\n5\n+10 ft.\n@Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}, @Compendium[dnd5e.classfeatures.pvRc6GAu1ok6zihC]{Stunning Strike}\n\n\n6th\n+3\n1d6\n6\n+15 ft.\n\n@Compendium[dnd5e.classfeatures.7flZKruSSu6dHg6D]{Ki-Empowered Strikes},\nMonastic Tradition feature\n\n\n\n7th\n+3\n1d6\n7\n+15 ft.\n@Compendium[dnd5e.classfeatures.a4P4DNMmH8CqSNkC]{Evasion}, @Compendium[dnd5e.classfeatures.ZmC31XKS4YNENnoc]{Stillness of Mind}\n\n\n8th\n+3\n1d6\n8\n+15 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n9th\n+4\n1d6\n9\n+15 ft.\nUnarmored Movement improvement\n\n\n10th\n+4\n1d6\n10\n+20 ft.\n@Compendium[dnd5e.classfeatures.bqWA7t9pDELbNRkp]{Purity of Body}\n\n\n11th\n+4\n1d8\n11\n+20 ft.\nMonastic Tradition feature\n\n\n12th\n+4\n1d8\n12\n+20 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n1d8\n13\n+20 ft.\n@Compendium[dnd5e.classfeatures.XjuGBeB8Y0C3A5D4]{Tongue of the Sun and Moon}\n\n\n14th\n+5\n1d8\n14\n+25 ft.\n@Compendium[dnd5e.classfeatures.7D2EkLdISwShEDlN]{Diamond Soul}\n\n\n15th\n+5\n1d8\n15\n+25 ft.\n@Compendium[dnd5e.classfeatures.gDH8PMrKvLHaNmEI]{Timeless Body}\n\n\n16th\n+5\n1d8\n16\n+25 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n1d10\n17\n+25 ft.\nMonastic Tradition feature\n\n\n18th\n+6\n1d10\n18\n+30 ft.\n@Compendium[dnd5e.classfeatures.3jwFt3hSqDswBlOH]{Empty Body}\n\n\n19th\n+6\n1d10\n19\n+30 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\n1d10\n20\n+30 ft.\n@Compendium[dnd5e.classfeatures.mQNPg89YIs7g5tG4]{Perfect Self}\n\n\n\nMonastic Traditions\nThree traditions of monastic pursuit are common in the monasteries scattered across the multiverse. Most monasteries practice one tradition exclusively, but a few honor the three traditions and instruct each monk according to his or her aptitude and interest. All three traditions rely on the same basic techniques, diverging as the student grows more adept. Thus, a monk need choose a tradition only upon reaching 3rd level.\n@Compendium[dnd5e.subclasses.IvlpKMXX3PmW1NY2]{Way of the Open Hand}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"monk","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"Gzb0vnxyoeTilka6"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.UAvV7N7T4zJhxdfI","Compendium.dnd5e.classfeatures.l50hjTxO2r0iecKw","Compendium.dnd5e.classfeatures.eGxoNmSMWKNzChCO"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"lVsKpEajeU5R83a5":"Compendium.dnd5e.classfeatures.UAvV7N7T4zJhxdfI","rppGdpjLLaRF9F2G":"Compendium.dnd5e.classfeatures.l50hjTxO2r0iecKw","jVIh24qThOvMskfW":"Compendium.dnd5e.classfeatures.eGxoNmSMWKNzChCO"}},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"x8WwDkBverY8pdNE"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.10b6z2W1txNkrGP7","Compendium.dnd5e.classfeatures.5MwNlVZK7m6VolOH","Compendium.dnd5e.classfeatures.TDglPcxIVEzvVSgK","Compendium.dnd5e.classfeatures.yrSFIGTaQOH2PFRI","Compendium.dnd5e.classfeatures.zCeqyQ8uIPNdYJSW"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"RGOU7EI3z5B21nv1"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.rtpQdX77dYWbDIOH","Compendium.dnd5e.classfeatures.mzweVbnsJPQiVkAe"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"dXaSgH4gjvuObsSy"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.KQz9bqxVkXjDl8gK"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":4,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"evtuIHfgZmld8cxb"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo","Compendium.dnd5e.classfeatures.pvRc6GAu1ok6zihC"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"hcrr9lpBUip0YYOP"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.7flZKruSSu6dHg6D"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"ywRxBFcCRj6dEolT"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.a4P4DNMmH8CqSNkC","Compendium.dnd5e.classfeatures.ZmC31XKS4YNENnoc"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":7,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"KMBXQNFCRN4zLyuL"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.bqWA7t9pDELbNRkp"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"XsBddz6R4GyzhMbG"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.XjuGBeB8Y0C3A5D4"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":13,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"ZtPXCH3ZjndhY1Ht"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.7D2EkLdISwShEDlN"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"F8R7R38lWmOJpzUh"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.gDH8PMrKvLHaNmEI"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":15,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"eQVrdHPAJo9pvQUz"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.3jwFt3hSqDswBlOH"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"N6146UOqxUZbD4kY"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.mQNPg89YIs7g5tG4"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"7eLazNU7i2X6HmnN"},{"type":"ScaleValue","configuration":{"identifier":"die","type":"dice","distance":{"units":""},"scale":{"1":{"number":null,"faces":4},"5":{"number":null,"faces":6},"11":{"number":null,"faces":8},"17":{"number":null,"faces":10}}},"value":{},"title":"Martial Arts Die","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"HC3Vfbq48VlD7axp"},{"type":"ScaleValue","configuration":{"identifier":"unarmored-movement","type":"distance","distance":{"units":"ft"},"scale":{"2":{"value":10},"6":{"value":15},"10":{"value":20},"14":{"value":25},"18":{"value":30}}},"value":{},"title":"Unarmored Movement","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"t6SOqiBtpw0OG5z2"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"9Xe0WAjYctJkKvPJ"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"HQCl6JtoovumbpGT"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"EujtBfzqpRexJo2t"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"4xT99qK8dYQG95qn"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["str","dex"],"skills":{"number":2,"choices":["acr","ath","his","ins","rel","ste"],"value":[]},"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.6VoZrWxhOEKGYhnq"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234277,"modifiedTime":1691519134474,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"lVsKpEajeU5R83a5","name":"Unarmored Defense (Monk)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 1st Level, while you are wearing no armor and not wielding a Shield, your AC equals 10 + your Dexterity modifier + your Wisdom modifier.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.UAvV7N7T4zJhxdfI","advancementOrigin":"ckabMZ0IHcAMt16f.x8WwDkBverY8pdNE"}},"img":"icons/magic/control/silhouette-hold-change-blue.webp","effects":[{"_id":"R5ro4AuNjcdWD56O","changes":[{"key":"system.attributes.ac.calc","mode":5,"value":"unarmoredMonk","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/control/silhouette-hold-change-blue.webp","label":"Unarmored Defense","origin":"Item.cOdcNWy4hII029DT","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234382,"modifiedTime":1691519134476,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"rppGdpjLLaRF9F2G","name":"Martial Arts","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 1st level, your practice of martial arts gives you mastery of combat styles that use and monk weapons, which are shortswords and any simple melee weapons that don't have the two-handed or heavy property. You gain the following benefits while you are unarmed or wielding only monk weapons and you aren't wearing armor or wielding a shield:\n\n\nYou can use Dexterity instead of Strength for the attack and damage rolls of your unarmed strikes and monk weapons.\n\n\nYou can roll a d4 in place of the normal damage of your unarmed strike or monk weapon. This die changes as you gain monk levels, as shown in the Martial Arts column of the Monk table.\n\n\nWhen you use the Attack action with an unarmed strike or a monk weapon on your turn, you can make one unarmed strike as a bonus action. For example, if you take the Attack action and attack with a quarterstaff, you can also make an unarmed strike as a bonus action, assuming you haven't already taken a bonus action this turn.\n\n\nCertain monasteries use specialized forms of the monk weapons. For example, you might use a club that is two lengths of wood connected by a short chain (called a nunchaku) or a sickle with a shorter, straighter blade (called a kama). Whatever name you use for a monk weapon, you can use the game statistics provided for the weapon.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":5,"width":null,"units":"ft","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.l50hjTxO2r0iecKw","advancementOrigin":"ckabMZ0IHcAMt16f.x8WwDkBverY8pdNE"}},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234416,"modifiedTime":1691519134477,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"jVIh24qThOvMskfW","name":"Unarmed Strike (Monk)","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1@scale.monk.die + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"ada":false,"amm":false,"fin":true,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"mgc":false,"rch":false,"rel":false,"ret":false,"sil":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":1},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.eGxoNmSMWKNzChCO","advancementOrigin":"ckabMZ0IHcAMt16f.x8WwDkBverY8pdNE"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234400,"modifiedTime":1691519134478,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"R5ro4AuNjcdWD56O","changes":[{"key":"system.attributes.ac.calc","mode":5,"value":"unarmoredMonk","priority":null}],"disabled":false,"duration":{"startTime":0,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/control/silhouette-hold-change-blue.webp","label":"Unarmored Defense","origin":"Compendium.dnd5e.heroes.125qFnXvT9z0iOic.Item.lVsKpEajeU5R83a5","transfer":false,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"dnd5e":{"halflingLucky":true}},"_id":"125qFnXvT9z0iOic","_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787232144,"modifiedTime":1691519134517,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Randal (Human Fighter)","type":"character","img":"","system":{"abilities":{"str":{"value":16,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":9,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":12,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""},"min":0},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"int","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"Randal worked his way through the ranks of his hometown's guard, ultimately growing restless with city life and wandering off in search of adventure.\n","public":""},"alignment":"Neutral Good","race":"Variant Human","background":"","originalClass":"TixRV4Wr5ruxXRpf","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","dwarvish","elvish","goblin"],"custom":""},"weaponProf":{"value":["sim","mar"],"custom":""},"armorProf":{"value":["lgt","med","hvy","shl"],"custom":""},"toolProf":{"value":[],"custom":""}},"currency":{"pp":0,"gp":10,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Randal","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":5,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"qy0pVLQWv8tjWJPR","name":"Horn","type":"tool","system":{"description":{"value":"A horn, used to sound the alarm and call upon reinforcements in times of need.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"","ability":"cha","chatFlavor":"","proficient":1,"bonus":""},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.aa9KuBy4dst7WIW9"}},"img":"icons/tools/instruments/flute-simple-wood.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xhSq81g4w9vTE0nK","name":"Fighting Style: Defense","type":"feat","system":{"description":{"value":"While you are wearing armor, you gain a +1 bonus to AC","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Fighter 1, Champion 10, Paladin 2, Ranger 2","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.classfeatures.zSlV0O2rQMdoq6pB"}},"img":"icons/equipment/shield/heater-stone-orange.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"r7UallZJjcIFsz8i","name":"Grappler","type":"feat","system":{"description":{"value":"Prerequisite: Strength 13 or higher You've developed the skills necessary to hold your own in close-quarters grappling.You gain the following benefits:\n\nYou have advantage on attack rolls against a creature you are grappling.\nYou can use your action to try to pin a creature grappled by you. To do so, make another grapple check. If you succeed, you and the creature are both restrained until the grapple ends.\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"STR 13 or higher","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kP9t6MAeUvBBmoM3"}},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6kg0dYblyeGcoclF","name":"Arrows","type":"consumable","system":{"description":{"value":"Standard ammunition used for bows of all varieties. These mundane arrows are made of smooth wooden shafts with goose feather fletching and hammer metal bodkins.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":20,"weight":0.05,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"sort":0,"flags":{},"img":"icons/containers/ammunition/arrows-quiver-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647487,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"HW10iFMNN5JaJBFf","name":"Longbow","type":"weapon","system":{"description":{"value":"A thick shaft of laminated wood is bowed by a taut string capable of launching deadly arrows at long distances.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"ammo","target":"6kg0dYblyeGcoclF","amount":1},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3cymOVja8jXbzrdT"}},"img":"icons/weapons/bows/longbow-leather-green.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3d2b3iqnC0t116JB","name":"Longsword","type":"weapon","system":{"description":{"value":"A lengthy stright blade designed for slashing foes, the longsword is a highly versatile weapon that may also be wielded with two hands for more punishing strikes.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"img":"icons/weapons/swords/greatsword-crossguard-steel.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9vMrpjx6tZQVKCrF","name":"Handaxe (offhand)","type":"weapon","system":{"description":{"value":"This one-handed axe is light and balanced for throwing while remaining useful in hand combat.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":true},"sort":0,"flags":{},"img":"icons/weapons/axes/axe-broad-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZC11cflszLu1zXBL","name":"City Guard Chain Mail","type":"equipment","system":{"description":{"value":"Made of interlocking metal rings, chain mail includes a layer of quilted fabric worn underneath the mail to prevent chafing and to cushion the impact of blows. The suit includes gauntlets.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":55,"price":{"value":75,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":13,"stealth":true,"proficient":true},"sort":0,"flags":{},"img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UwH6scwUXajH9jCh","name":"Shield","type":"equipment","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"img":"icons/equipment/shield/oval-wooden-boss-steel.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bq6RL40FQY52C7YE","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Z4bdbM4ROqwPcSli","name":"Pouch","type":"backpack","system":{"description":{"value":"A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":6,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.9bWTRRDym06PzSAf"}},"img":"icons/containers/bags/coinpouch-simple-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640341,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"RtMzLZEMAVyFwhLo","name":"Hammer","type":"loot","system":{"description":{"value":"A tool with heavy metal head mounted ar the right angles at the end of a handle, used for job such as breaking things and driving in nails. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.14pNRT4sZy9rgvhb"}},"img":"icons/tools/smithing/hammer-sledge-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BQIFmKZfFgM3XQPq","name":"Tinderbox","type":"loot","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DNOSEAvF4Oh1DlWy"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640351,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ASK21hDnn53hojQo","name":"Waterskin","type":"consumable","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Uv0ilmzbWvqmlCVH"}},"img":"icons/sundries/survival/wetskin-leather-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640358,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pueZRmygDueiEPES","name":"Hempen Rope (50 ft.)","type":"consumable","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QXmaarJ4X8P0C1HV"}},"img":"icons/sundries/survival/rope-wrapped-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ph8RkMxLvWBSgIt3","name":"Quiver","type":"backpack","system":{"description":{"value":"A quiver can hold up to 20 arrows.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"capacity":{"type":"items","value":20,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.4MtQKPn9qMWCFjDA"}},"img":"icons/containers/ammunition/arrows-quiver-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GUsTVResLLnqzu20","name":"Bedroll","type":"loot","system":{"description":{"value":"Roll of cloth used by traveller to sleep in.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DVXmyetZuvxbzAwW"}},"img":"icons/sundries/flags/banner-worn-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"C47RdG1DyqBhG1aB","name":"Mess Kit","type":"loot","system":{"description":{"value":"This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.V13fjV5oSmvbRdgP"}},"img":"icons/tools/cooking/fork-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640365,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"NcqTt0GXqkHxybfP","name":"Handaxe","type":"weapon","system":{"description":{"value":"This one-handed axe is light and balanced for throwing while remaining useful in hand combat.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.eO7Fbv5WBk5zvGOc"}},"img":"icons/weapons/axes/axe-broad-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XlBuqgctFFNNx8Xn","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640371,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"rRBxjDaj0KZoEySZ","name":"Piton","type":"consumable","system":{"description":{"value":"A metal spike that is drive into a seam in a climbing surface with a climbing hammer. It can also be used like iron spikes to block doors in a pinch.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":0.25,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.TqyvIglHDj5kfohR"}},"img":"icons/sundries/survival/stake-rough-simple-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647493,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"puS6D5ZXmiKePl1F","name":"Torch","type":"consumable","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":40,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.BnOCLuNWhVvzHLjl"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647502,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"gxGtzolLrAw1A3or","name":"Crowbar","type":"loot","system":{"description":{"value":"Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.V5UAjT3ed6sDNtgm"}},"img":"icons/tools/hand/pickaxe-steel-white.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FZMxHGzQLRylEPyZ","name":"Human","type":"feat","system":{"description":{"value":"\n\n\nIt’s hard to make generalizations about humans, but your human character has these traits. Ability Score Increase. Your ability scores each increase by 1.Age. Humans reach adulthood in their late teens and live less than a century.Alignment. Humans tend toward no particular alignment. The best and the worst are found among them.Size. Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.Speed. Your base walking speed is 30 feet.Languages. You can speak, read, and write Common and one extra language of your choice. Humans typically learn the languages of other peoples they deal with, including obscure dialects. They are fond of sprinkling their speech with words borrowed from other tongues: Orc curses, Elvish musical expressions, Dwarvish military phrases, and so on.\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.ydP3QzCmur55mtY2"}},"img":"icons/magic/light/explosion-star-large-orange.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"name":"Watchman","type":"background","system":{"description":{"value":"Skill Proficiencies: Athletics, InsightLanguages: Two of your choiceEquipment: A guard's uniform, a horn with which to summon help, and a pouch containing 10 gp","chat":"","unidentified":""},"source":"","advancement":[]},"img":"icons/environment/settlement/watchtower-stone.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040617213,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"iODPoFlvprdu59Ga"},{"_id":"TixRV4Wr5ruxXRpf","name":"Fighter","type":"class","img":"icons/skills/melee/hand-grip-sword-red.webp","system":{"description":{"value":"As a fighter, you gain the following class features.\nHit Points\nHit Dice: 1d10 per fighter levelHit Points at 1st Level: 10 + your Constitution modifierHit Points at Higher Levels: 1d10 (or 6) + your Constitution modifier per fighter level after 1st\nProficiencies\nArmor: All armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, ConstitutionSkills: Choose two skills from Acrobatics, Animal Handling, Athletics, History, Insight, Intimidation, Perception, and Survival\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) chain mail or (b) leather armor, longbow, and 20 arrows\n(a) a martial weapon and a shield or (b) two martial weapons\n(a) a light crossbow and 20 bolts or (b) two handaxes\n(a) a dungeoneer's pack or (b) an explorer's pack\n\nFighter Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.fbExzwNwEAl2kW9c]{Fighting Style}, @Compendium[dnd5e.classfeatures.nTjmWbyHweXuIqwc]{Second Wind}\n\n\n2nd\n+2\n@Compendium[dnd5e.classfeatures.xF1VTcJ3AdkbTsdQ]{Action Surge}\n\n\n3rd\n+2\n@Compendium[dnd5e.classfeatures.ax8M0X0q1GGWM26j]{Martial Archetype}\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n5th\n+3\n@Compendium[dnd5e.classfeatures.q9g1MLXuLZyxjQMg]{Extra Attack}\n\n\n6th\n+3\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n7th\n+3\nMartial Archetype feature\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n9th\n+4\n@Compendium[dnd5e.classfeatures.653ZHbNcmm7ZGXbw]{Indomitable}\n\n\n10th\n+4\nMartial Archetype feature\n\n\n11th\n+4\n@Compendium[dnd5e.classfeatures.q9g1MLXuLZyxjQMg]{Extra Attack (2)}\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n13th\n+5\n@Compendium[dnd5e.classfeatures.653ZHbNcmm7ZGXbw]{Indomitable (2 uses)}\n\n\n14th\n+5\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n15th\n+5\nMartial Archetype feature\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n17th\n+6\n@Compendium[dnd5e.classfeatures.xF1VTcJ3AdkbTsdQ]{Action Surge (2 uses)}, @Compendium[dnd5e.classfeatures.653ZHbNcmm7ZGXbw]{Indomitable (3 uses)}\n\n\n18th\n+6\nMartial Archetype feature\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n20th\n+6\n@Compendium[dnd5e.classfeatures.q9g1MLXuLZyxjQMg]{Extra Attack (3)}\n\n\n\nMartial Archetypes\nDifferent fighters choose different approaches to perfecting their fighting prowess. The martial archetype you choose to emulate reflects your approach.\n@Compendium[dnd5e.subclasses.sprHbe7cRg9osTzf]{Champion}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"fighter","levels":1,"hitDice":"d10","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"yhZd0KJPJERAWGgA"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.fbExzwNwEAl2kW9c","Compendium.dnd5e.classfeatures.nTjmWbyHweXuIqwc"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"xBoN1auJaGal3hva":"Compendium.dnd5e.classfeatures.fbExzwNwEAl2kW9c","QYbinNgLV2ZYxX2c":"Compendium.dnd5e.classfeatures.nTjmWbyHweXuIqwc"}},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"PwWJCRoUIftcpy47"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.xF1VTcJ3AdkbTsdQ"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"pxHWfZrwT5tdCH61"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ax8M0X0q1GGWM26j"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"tdk8Hj5vUKl7Uz2a"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.q9g1MLXuLZyxjQMg"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"1UqvFqvQRr0Mzk3K"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.653ZHbNcmm7ZGXbw"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":9,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"hu99eLBFUHiOOKdl"},{"type":"ItemChoice","configuration":{"hint":"You adopt a particular style of fighting as your specialty. Choose one of the following options. You can’t take a Fighting Style option more than once, even if you later get to choose again.","choices":{"1":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.8YwPFv3UAPjWVDNf","Compendium.dnd5e.classfeatures.zSlV0O2rQMdoq6pB","Compendium.dnd5e.classfeatures.hCop9uJrWhF1QPb4","Compendium.dnd5e.classfeatures.3Nc6u9pyStByuJsm","Compendium.dnd5e.classfeatures.06NVMYf58Z76O85O","Compendium.dnd5e.classfeatures.mHcSjcHJ8oZu3hkb"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"fightingStyle","level":""}},"value":{"added":{"1":{"dpXCnkmf6mF4qivf":"Compendium.dnd5e.classfeatures.zSlV0O2rQMdoq6pB"}}},"title":"Fighting Style","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"3hmYTgl5rz8Y5Z0I"},{"type":"ScaleValue","configuration":{"identifier":"indomitable","type":"number","distance":{"units":""},"scale":{"9":{"value":1},"13":{"value":2},"17":{"value":3}}},"value":{},"title":"Indomitable Uses","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"B7YpSu4cVsEbHbrv"},{"type":"ScaleValue","configuration":{"identifier":"action-surge","type":"number","distance":{"units":""},"scale":{"2":{"value":1},"17":{"value":2}}},"value":{},"title":"Action Surge Uses","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"kxiasN1v8KFm9nse"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"rvfuW71lYEeJW7HS"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"g49SXigwmpaZW0Hm"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"gXVE2mfohi6iErff"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"GdBOLIPXmNSWRSmO"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""},{"_id":"ZvTgE4hnO4clYc0z","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":6,"title":""},{"_id":"zw1ftiHmlUeHRTdc","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":14,"title":""}],"saves":["str","con"],"skills":{"number":2,"choices":["acr","ani","ath","his","ins","itm","prc","sur"],"value":[]},"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.ABEBgWyRhVlDUIfq"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234279,"modifiedTime":1691519178768,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"xBoN1auJaGal3hva","name":"Fighting Style (Fighter)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You adopt a particular style of fighting as your specialty. Choose one of the following options from the appropriate class list. You can't take a Fighting Style option more than once, even if you later get to choose again.\n@Compendium[dnd5e.classfeatures.8YwPFv3UAPjWVDNf]{Archery}\n@Compendium[dnd5e.classfeatures.zSlV0O2rQMdoq6pB]{Defense}\n@Compendium[dnd5e.classfeatures.hCop9uJrWhF1QPb4]{Dueling}\n@Compendium[dnd5e.classfeatures.3Nc6u9pyStByuJsm]{Great Weapon Fighting}\n@Compendium[dnd5e.classfeatures.06NVMYf58Z76O85O]{Protection}\n@Compendium[dnd5e.classfeatures.mHcSjcHJ8oZu3hkb]{Two Weapon Fighting}","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Fighter 1","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.fbExzwNwEAl2kW9c","advancementOrigin":"TixRV4Wr5ruxXRpf.PwWJCRoUIftcpy47"}},"img":"icons/skills/melee/weapons-crossed-daggers-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234404,"modifiedTime":1691519178770,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"QYbinNgLV2ZYxX2c","name":"Second Wind","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have a limited well of stamina that you can draw on to protect yourself from harm. On your turn, you can use a bonus action to regain hit points equal to 1d10 + your fighter level.Once you use this feature, you must finish a short or long rest before you can use it again.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @classes.fighter.levels","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Fighter 1","recharge":{"value":null,"charged":false}},"folder":null,"sort":0,"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.nTjmWbyHweXuIqwc","advancementOrigin":"TixRV4Wr5ruxXRpf.PwWJCRoUIftcpy47"}},"img":"icons/magic/life/heart-glowing-red.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234421,"modifiedTime":1691519178770,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"dpXCnkmf6mF4qivf","name":"Fighting Style: Defense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While you are wearing armor, you gain a +1 bonus to AC","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"fightingStyle"},"requirements":"Fighter 1, Champion 10, Paladin 2, Ranger 2","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.zSlV0O2rQMdoq6pB","advancementOrigin":"TixRV4Wr5ruxXRpf.3hmYTgl5rz8Y5Z0I"}},"img":"icons/equipment/shield/heater-stone-orange.webp","effects":[{"_id":"U3so0zDcVt4sIBRz","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"+1","mode":2,"priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/equipment/shield/heater-stone-orange.webp","label":"Fighting Style: Defense","origin":"Item.4mQUDmiDBePkQD6Y","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234445,"modifiedTime":1691519178770,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"U3so0zDcVt4sIBRz","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"+1","mode":2,"priority":null}],"disabled":false,"duration":{"startTime":0,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/equipment/shield/heater-stone-orange.webp","label":"Fighting Style: Defense","origin":"Compendium.dnd5e.heroes.2Pdtnswo8Nj2nafY.Item.dpXCnkmf6mF4qivf","tint":null,"transfer":false,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"2Pdtnswo8Nj2nafY","_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787232150,"modifiedTime":1691519178818,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Zanna (Gnome Wizard)","type":"character","img":"","system":{"abilities":{"str":{"value":8,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":17,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":8,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""},"min":0},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":25,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"int","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"Always interested in tinkering, Zanna set out for adventure in order to find more spells for her spellbook, and perhaps one day create some of her own.\n","public":""},"alignment":"Chaotic Good","race":"Rock Gnome","background":"","originalClass":"N4bhi6usK8wuNEnh","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","dwarvish","giant","gnomish"],"custom":""},"weaponProf":{"value":["dagger","dart","sling","quarterstaff","lightcrossbow"],"custom":""},"armorProf":{"value":[],"custom":""},"toolProf":{"value":[],"custom":"Tinkerer's Tools"}},"currency":{"pp":0,"gp":10,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{},"spells":{"spell1":{"value":2,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Zanna","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ZTaGDK3lSy8a5T1l","name":"Component Pouch","type":"consumable","system":{"description":{"value":"A component pouch is a small, watertight leather belt pouch that has compartments to hold all the material components and other special items you need to cast your spells, except for those components that have a specific cost (as indicated in a spell's description).","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.eZGmdOhaTWMicXPW"}},"img":"icons/containers/bags/pack-simple-leather-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EPiw1vnn3pDOdO1m","name":"Quarterstaff","type":"weapon","system":{"description":{"value":"A thick shaft of wood wrapped with a sturdy grip makes a highly functional weapon in addition to a stout walking stick.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.g2dWN7PQiMRYWzyk"}},"img":"icons/weapons/staves/staff-simple-gold.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640403,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"aJZGeP8AiFrEwgWX","name":"Robes","type":"equipment","system":{"description":{"value":"Simple or ceremonial wear, often used by priests and other religious figures.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.8GCEodUsTEEpBlO6"}},"img":"icons/equipment/back/mantle-collared-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wIPWkO6CHUrTw13Y","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4rrQYmSFohtbkBwH","name":"Pouch","type":"backpack","system":{"description":{"value":"A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":6,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.9bWTRRDym06PzSAf"}},"img":"icons/containers/bags/coinpouch-simple-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640411,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"eYEelIdlbOvIRDkK","name":"Bedroll","type":"loot","system":{"description":{"value":"Roll of cloth used by traveller to sleep in.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":6}},"core":{"sourceId":"Compendium.dnd5e.items.DVXmyetZuvxbzAwW"}},"img":"icons/sundries/flags/banner-worn-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ps3a8zDFtNoUfJDZ","name":"Hempen Rope (50 ft.)","type":"consumable","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket"},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":8}},"core":{"sourceId":"Compendium.dnd5e.items.QXmaarJ4X8P0C1HV"}},"img":"icons/sundries/survival/rope-wrapped-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rsSr1FRdaAKl6fpc","name":"Mess Kit","type":"loot","system":{"description":{"value":"This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":4}},"core":{"sourceId":"Compendium.dnd5e.items.V13fjV5oSmvbRdgP"}},"img":"icons/tools/cooking/fork-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640426,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"FQpJpWjX9bsPZvDo","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640437,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"zthIyDRa8OLDoBId","name":"Tinderbox","type":"loot","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DNOSEAvF4Oh1DlWy"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640445,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"rTQEtliS3CqxnBPg","name":"Torch","type":"consumable","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":40,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":7}},"core":{"sourceId":"Compendium.dnd5e.items.BnOCLuNWhVvzHLjl"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647511,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"xxVyo2I5EYUi3cla","name":"Waterskin","type":"consumable","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Uv0ilmzbWvqmlCVH"}},"img":"icons/sundries/survival/wetskin-leather-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640466,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"gIJ6Vm16khwtSS0q","name":"Ink Bottle","type":"loot","system":{"description":{"value":"A small bottle of ink for writing upon parchment.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.06,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.dP7jMKyHTTgVb3ii"}},"img":"icons/consumables/potions/bottle-bulb-empty-glass.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EuWal2U6WQwbDmAL","name":"Ink Pen","type":"loot","system":{"description":{"value":"A deviced used in combination with ink to write or draw on a sheet of paper.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.uVm7MiB71QblfnoY"}},"img":"icons/commodities/materials/feather-red-.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647522,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MNtWDpVTu3jHk8be","name":"Parchment","type":"loot","system":{"description":{"value":"A single sheet of heavier parchment paper.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WFQS2vT8ddrFjTJg"}},"img":"icons/sundries/documents/document-symbol-circle-gold-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640482,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"i3YAIUu7sNkJUPTU","name":"Book of Lore","type":"loot","system":{"description":{"value":"A book containing historical accounts, information pertaining to a particular field of lore, myth, or legend.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.l794iywHk8Wc6Uvi"}},"img":"icons/sundries/books/book-plain-orange.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"23NorZLPXATDYptB","name":"Spellbook","type":"loot","system":{"description":{"value":"Essential for wizards, a spellbook is a leather-bound tome with 100 blank vellum pages suitable for recording spells.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.LBajgahniRJbAgDr"}},"img":"icons/sundries/books/book-embossed-jewel-gold-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rjlTBnXJGxoodrM3","name":"Small Knife","type":"loot","system":{"description":{"value":"A blunt knife used by the scholarly to open letters and correspondence.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.5,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3nVvaHVfHsgwGlkL"}},"img":"icons/weapons/daggers/dagger-jeweled-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640492,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"hAOdlcKJP3W7zD0p","name":"Artificer's Lore","type":"feat","system":{"description":{"value":"Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Rock Gnome","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.OQA1sHxKnSJq01dL"}},"img":"icons/magic/fire/flame-burning-chain.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"z0AzZRlDE0RiB0Vp","name":"Gnome Cunning","type":"feat","system":{"description":{"value":"You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Gnome","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.0gl43AC57cvJaW7D"}},"img":"icons/magic/light/hand-sparks-glow-yellow.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5hEbhdZm1ozQ3B2g","name":"Tinker","type":"feat","system":{"description":{"value":"You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time. When you create a device, choose one of the following options:Clockwork Toy: This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.Fire Starter: The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.Music Box: When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"hour","cost":1,"condition":"Expend 10 gp worth of materials"},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Rock Gnome","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.koRPOLtj8XAFMwnW"}},"img":"icons/commodities/tech/cog-steel.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zb2ggSgTNtBj8HWl","name":"Gnome","type":"feat","system":{"description":{"value":"\n\n\nYour gnome character has certain characteristics in common with all other gnomes. Ability Score Increase. Your Intelligence score increases by 2.Age. Gnomes mature at the same rate humans do, and most are expected to settle down into an adult life by around age 40. They can live 350 to almost 500 years.Alignment. Gnomes are most often good. Those who tend toward law are sages, engineers, researchers, scholars, investigators, or inventors. Those who tend toward chaos are minstrels, tricksters, wanderers, or fanciful jewelers. Gnomes are good-‐‑hearted, and even the tricksters among them are more playful than vicious.Size. Gnomes are between 3 and 4 feet tall and average about 40 pounds. Your size is Small. Speed. Your base walking speed is 25 feet.Darkvision. Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Gnome Cunning. @Compendium[dnd5e.races.EHhr9umJ5kxJFCQH]{Gnome Cunning} You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.Languages. You can speak, read, and write Common and Gnomish. The Gnomish language, which uses the Dwarvish script, is renowned for its technical treatises and its catalogs of knowledge about the natural world.\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.kmRnMETG5hB9Bmwu"}},"img":"icons/magic/fire/projectile-meteor-salvo-strong-purple-yellow.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PaLpYN8wbP0MyP2w","name":"Rock Gnome","type":"feat","system":{"description":{"value":"\n\nAs a rock gnome, you have a natural inventiveness and hardiness beyond that of other gnomes.\n\n\n\n\n\nAbility Score Increase. Your Constitution score increases by 1.Artificer's Lore. @Compendium[dnd5e.races.OQA1sHxKnSJq01dL]{Artificer's Lore} Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.Tinker. @Compendium[dnd5e.races.koRPOLtj8XAFMwnW]{Tinker} You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time.When you create a device, choose one of the following options:Clockwork Toy. This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.Fire Starter. The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.Music Box. When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Gnome","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.TZtarkKs6cgGD7z2"}},"img":"icons/magic/fire/projectile-meteor-salvo-light-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EOmsUcFQJTfG2oio","name":"Fire Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You hurl a mote of fire at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried.This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.EOmsUcFQJTfG2oio"}},"img":"icons/magic/fire/projectile-fireball-smoke-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486020,"modifiedTime":1661603486020,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Bnn9Nzajixvow9xi","name":"Light","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A firefly or phosphorescent moss.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Bnn9Nzajixvow9xi"}},"img":"icons/magic/light/explosion-star-small-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486021,"modifiedTime":1661603486021,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Utk1OQRwYkMkFRD3","name":"Mage Hand","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.The hand can't attack, activate magic items, or carry more than 10 pounds.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Utk1OQRwYkMkFRD3"}},"img":"icons/magic/water/water-hand.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486021,"modifiedTime":1661603486021,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"7p9IuWrSWFgfyQo2","name":"Alarm","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You set an alarm against unwanted intrusion. Choose a door, a window, or an area within range that is no larger than a 20-foot cube. Until the spell ends, an alarm alerts you whenever a Tiny or larger creature touches or enters the warded area. When you cast the spell, you can designate creatures that won't set off the alarm. You also choose whether the alarm is mental or audible.A mental alarm alerts you with a ping in your mind if you are within 1 mile of the warded area. This ping awakens you if you are sleeping.An audible alarm produces the sound of a hand bell for 10 seconds within 60 feet.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"crewed":false,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A tiny bell and a piece of fine silver wire.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.7p9IuWrSWFgfyQo2"}},"img":"icons/magic/symbols/runes-triangle-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486022,"modifiedTime":1661603486022,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"z1mx84ONwkXKUZd7","name":"Shield","type":"spell","img":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","system":{"description":{"value":"An invisible barrier of magical force appears and protects you. Until the start of your next turn, you have a +5 bonus to AC, including against the triggering attack, and you take no damage from magic missile.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":"Which you take when you are hit by an attack or targeted by the magic missile spell"},"duration":{"value":"1","units":"round"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"6pbotGIvqQkraPva","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"5","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"rounds":1,"seconds":null,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","label":"Shield","origin":"Item.FlLKKv7bQBlIAs11","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.z1mx84ONwkXKUZd7"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486022,"modifiedTime":1661603486022,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"JGT5bNqu9REL7Fuz","name":"Find Familiar","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your familiar acts independently of you, but it always obeys your commands. In combat, it rolls its own initiative and acts on its own turn. A familiar can't attack, but it can take other actions as normal.When the familiar drops to 0 hit points, it disappears, leaving behind no physical form. It reappears after you cast this spell again.While your familiar is within 100 feet of you, you can communicate with it telepathically. Additionally, as an action, you can see through your familiar's eyes and hear what it hears until the start of your next turn, gaining the benefits of any special senses that the familiar has. During this time, you are deaf and blind with regard to your own senses.As an action, you can temporarily dismiss your familiar. It disappears into a pocket dimension where it awaits your summons. Alternatively, you can dismiss it forever. As an action while it is temporarily dismissed, you can cause it to reappear in any unoccupied space within 30 feet of you.You can't have more than one familiar at a time. If you cast this spell while you already have a familiar, you instead cause it to adopt a new form. Choose one of the forms from the above list. Your familiar transforms into the chosen creature.Finally, when you cast a spell with a range of touch, your familiar can deliver the spell as if it had cast the spell. Your familiar must be within 100 feet of you, and it must use its reaction to deliver the spell when you cast it. If the spell requires an attack roll, you use your action modifier for the roll.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"10 gp worth of charcoal, incense, and herbs that must be consumed by fire in a brass brazier","consumed":true,"cost":10,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.JGT5bNqu9REL7Fuz"}},"img":"icons/magic/nature/wolf-paw-glow-purple-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486025,"modifiedTime":1661603486025,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"CKZTpZlxj7hjjo2H","name":"Mage Armor","type":"spell","img":"icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp","system":{"description":{"value":"You touch a willing creature who isn't wearing armor, and a protective magical force surrounds it until the spell ends. The target's base AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor or if you dismiss the spell as an action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A piece of cured leather","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"cfwMU7LuOJ619Lny","changes":[{"key":"system.attributes.ac.calc","value":"mage","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp","label":"Mage Armor","origin":"Compendium.dnd5e.spells.CKZTpZlxj7hjjo2H","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.CKZTpZlxj7hjjo2H"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486026,"modifiedTime":1661603486026,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"KhwiSi9fwVfUPtku","name":"Sleep","type":"spell","img":"icons/magic/light/explosion-star-small-pink.webp","system":{"description":{"value":"This spell sends creatures into a magical slumber. Roll 5d8; the total is how many hit points of creatures this spell can affect. Creatures within 20 feet of a point you choose within range are affected in ascending order of their current hit points (ignoring unconscious creatures).Starting with the creature that has the lowest current hit points, each creature affected by this spell falls unconscious until the spell ends, the sleeper takes damage, or someone uses an action to shake or slap the sleeper awake. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.Undead and creatures immune to being charmed aren't affected by this spell.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d8 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of fine sand, rose petals, or a cricket.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"2d8"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.KhwiSi9fwVfUPtku"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486027,"modifiedTime":1661603486027,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"41JIhpDyM9Anm7cs","name":"Magic Missile","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create three glowing darts of magical force. Each dart hits a creature of your choice that you can see within range. A dart deals 1d4 + 1 force damage to its target. The darts all strike simultaneously, and you can direct them to hit one creature or several.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the spell creates one more dart for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + 1","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.41JIhpDyM9Anm7cs"}},"img":"icons/magic/fire/projectile-meteor-salvo-light-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486027,"modifiedTime":1661603486027,"lastModifiedBy":"dnd5ebuilder0000"}},{"name":"Scholar","type":"background","system":{"description":{"value":"Skill Proficiencies: History, plus your choice of one from among Arcana, Nature, and ReligionLanguages: Two of your choiceEquipment: Scholar's robes, a writing kit, a book of lore, and a pouch containing 10 gp","chat":"","unidentified":""},"source":"","advancement":[]},"img":"icons/magic/light/hand-sparks-smoke-teal.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040326437,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"Nt4QsuSYvhIwSoO5"},{"_id":"N4bhi6usK8wuNEnh","name":"Wizard","type":"class","img":"icons/magic/air/wind-tornado-wall-blue.webp","system":{"description":{"value":"As a wizard, you gain the following class features.Hit PointsHit Dice: 1d6 per wizard levelHit Points at 1st Level: 6 + your Constitution modifierHit Points at Higher Levels: 1d6 (or 4) + your Constitution modifier per wizard level after 1stProficienciesArmor: NoneWeapons: Daggers, darts, slings, quarterstaffs, light crossbowsTools: NoneSaving Throws: Intelligence, WisdomSkills: Choose two from Arcana, History, Insight, Investigation, Medicine, and ReligionEquipmentYou start with the following equipment, in addition to the equipment granted by your background:(a) a quarterstaff or (b) a dagger(a) a component pouch or (b) an arcane focus(a) a scholar's pack or (b) an explorer's packA spellbookWizard AdvancementLevelProficiency BonusFeatures1st+2@Compendium[dnd5e.classfeatures.gbNo5eVPaqr8IVKL]{Spellcasting}, @Compendium[dnd5e.classfeatures.e0uTcFPpgxjIyUW9]{Arcane Recovery}2nd+2@Compendium[dnd5e.classfeatures.AEWr9EMxy5gj4ZFT]{Arcane Tradition}3rd+22nd Level Spell Slot4th+2@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}5th+33rd Level Spell Slot6th+3Arcane Tradition feature7th+34th Level Spell Slot8th+3@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}9th+45th Level Spell Slot10th+4Arcane Tradition feature11th+46 Level Spell Slot12th+4@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}13th+57th Level Spell Slot14th+5Arcane Tradition feature15th+58th Level Spell Slot16th+5@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}17th+69 Level Spell Slot18th+6@Compendium[dnd5e.classfeatures.JfFfHTeIszx1hNRx]{Spell Mastery}19th+6@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}20th+6@Compendium[dnd5e.classfeatures.nUrZDi6QN1YjwAr6]{Signature Spells}Your SpellbookThe spells that you add to your spellbook as you gain levels reflect the arcane research you conduct on your own, as well as intellectual breakthroughs you have had about the nature of the multiverse. You might find other spells during your adventures. You could discover a spell recorded on a scroll in an evil wizard's chest, for example, or in a dusty tome in an ancient library.Copying a Spell into the Book. When you find a wizard spell of 1st level or higher, you can add it to your spellbook if it is of a spell level you can prepare and if you can spare the time to decipher and copy it.Copying that spell into your spellbook involves reproducing the basic form of the spell, then deciphering the unique system of notation used by the wizard who wrote it. You must practice the spell until you understand the sounds or gestures required, then transcribe it into your spellbook using your own notation.For each level of the spell, the process takes 2 hours and costs 50 gp. The cost represents material components you expend as you experiment with the spell to master it, as well as the fine inks you need to record it. Once you have spent this time and money, you can prepare the spell just like your other spells.Replacing the Book. You can copy a spell from your own spellbook into another book—for example, if you want to make a backup copy of your spellbook. This is just like copying a new spell into your spellbook, but faster and easier, since you understand your own notation and already know how to cast the spell. You need spend only 1 hour and 10 gp for each level of the copied spell.If you lose your spellbook, you can use the same procedure to transcribe the spells that you have prepared into a new spellbook. Filling out the remainder of your spellbook requires you to find new spells to do so, as normal. For this reason, many wizards keep backup spellbooks in a safe place.The Book's Appearance. Your spellbook is a unique compilation of spells, with its own decorative flourishes and margin notes. It might be a plain, functional leather volume that you received as a gift from your master, a finely bound gilt-edged tome you found in an ancient library, or even a loose collection of notes scrounged together after you lost your previous spellbook in a mishap.Arcane TraditionsThe study of wizardry is ancient, stretching back to the earliest mortal discoveries of magic. It is firmly established in fantasy gaming worlds, with various traditions dedicated to its complex study.The most common arcane traditions in the multiverse revolve around the schools of magic. Wizards through the ages have cataloged thousands of spells, grouping them into eight categories called schools. In some places, these traditions are literally schools. In other institutions, the schools are more like academic departments, with rival faculties competing for students and funding. Even wizards who train apprentices in the solitude of their own towers use the division of magic into schools as a learning device, since the spells of each school require mastery of different techniques.@Compendium[dnd5e.subclasses.Ye5f3FReEnuXfi0y]{School of Evocation}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"wizard","levels":1,"hitDice":"d6","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"o1lOLgOTi4SFT675"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.gbNo5eVPaqr8IVKL","Compendium.dnd5e.classfeatures.e0uTcFPpgxjIyUW9"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"ZCH7glEObWbjFGHB":"Compendium.dnd5e.classfeatures.gbNo5eVPaqr8IVKL","fnxa7jBxIHkDyZuU":"Compendium.dnd5e.classfeatures.e0uTcFPpgxjIyUW9"}},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"NhwTsEnDKEFARuzC"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.AEWr9EMxy5gj4ZFT"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"0uOmTQCuBt5Uamzq"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.JfFfHTeIszx1hNRx"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"3mW9054CUxI1C7aO"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.nUrZDi6QN1YjwAr6"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"Eb7ydpaIxiGHB08g"},{"type":"ItemChoice","configuration":{"hint":"Choose two 3rd-level wizard spells in your spellbook as your signature spells.","choices":{"20":2},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"atwill","uses":{"max":"1","per":"sr"}},"restriction":{"type":"","subtype":"","level":"3"}},"value":{},"title":"Signature Spells","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"tD8OooHM6soXzVTR"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":3},"4":{"value":4},"10":{"value":5}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"tLCuM1cHSnmr1VEu"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"EFPSW4WIEveFjZL0"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"uytL1QdWhsGgRAGk"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"OC4KaX8DSQVZFqli"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"tNdNUznXfjAyXGGQ"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["int","wis"],"skills":{"number":2,"choices":["arc","his","ins","inv","med","rel"],"value":[]},"spellcasting":{"progression":"full","ability":"int"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.wZK2Q0rXB0AQo8h3"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234283,"modifiedTime":1691519218867,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ZCH7glEObWbjFGHB","name":"Spellcasting (Wizard)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As a student of arcane magic, you have a spellbook containing spells that show the first glimmerings of your true power.\nCantrips\nAt 1st level, you know three cantrips of your choice from the wizard spell list. You learn additional wizard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Wizard table.\nSpellbook\nAt 1st level, you have a spellbook containing six 1stlevel wizard spells of your choice. Your spellbook is the repository of the wizard spells you know, except your cantrips, which are fixed in your mind.\nPreparing and Casting Spells\nThe Wizard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nYou prepare the list of wizard spells that are available for you to cast. To do so, choose a number of wizard spells from your spellbook equal to your Intelligence modifier + your wizard level (minimum of one spell). The spells must be of a level for which you have spell slots.\nFor example, if you're a 3rd-level wizard, you have four 1st-level and two 2nd-level spell slots. With an Intelligence of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination, chosen from your spellbook. If you prepare the 1st-level spell magic missile, you can cast it using a 1st-level or a 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of wizard spells requires time spent studying your spellbook and memorizing the incantations and gestures you must make to cast the spell: at least 1 minute per spell level for each spell on your list.\nSpellcasting Ability\nIntelligence is your spellcasting ability for your wizard spells, since you learn your spells through dedicated study and memorization. You use your Intelligence whenever a spell refers to your spellcasting ability. In addition, you use your Intelligence modifier when setting the saving throw DC for a wizard spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Intelligence modifier\nSpell attack modifier = your proficiency bonus + your Intelligence modifier\nRitual Casting\nYou can cast a wizard spell as a ritual if that spell has the ritual tag and you have the spell in your spellbook. You don't need to have the spell prepared.\nSpellcasting Focus\nYou can use an arcane focus as a spellcasting focus for your wizard spells.\nLearning Spells of 1st Level and Higher\nEach time you gain a wizard level, you can add two wizard spells of your choice to your spellbook for free. Each of these spells must be of a level for which you have spell slots, as shown on the Wizard table. On your adventures, you might find other spells that you can add to your spellbook (see the \"Your Spellbook\" sidebar).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Wizard 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.gbNo5eVPaqr8IVKL","advancementOrigin":"N4bhi6usK8wuNEnh.NhwTsEnDKEFARuzC"}},"img":"icons/magic/fire/explosion-embers-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234406,"modifiedTime":1691519218869,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"fnxa7jBxIHkDyZuU","name":"Arcane Recovery","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have learned to regain some of your magical energy by studying your spellbook. Once per day when you finish a short rest, you can choose expended spell slots to recover. The spell slots can have a combined level that is equal to or less than half your wizard level (rounded up), and none of the slots can be 6th level or higher.For example, if you're a 4th-level wizard, you can recover up to two levels worth of spell slots. You can recover either a 2nd-level spell slot or two 1st-level spell slots.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"The wizard can recover this number worth of spells slots (of 5th-level or lower):","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"ceil(@classes.wizard.levels/2)","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Wizard 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.e0uTcFPpgxjIyUW9","advancementOrigin":"N4bhi6usK8wuNEnh.NhwTsEnDKEFARuzC"}},"img":"icons/magic/earth/explosion-lava-stone-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234399,"modifiedTime":1691519218869,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"6pbotGIvqQkraPva","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"5","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":648,"rounds":1,"seconds":null,"combat":null,"turns":null,"startRound":0,"startTurn":0},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","label":"Shield","origin":"Compendium.dnd5e.heroes.4Jsv5vYaJ1atUEDV.Item.z1mx84ONwkXKUZd7","tint":null,"transfer":false,"sort":0},{"_id":"cfwMU7LuOJ619Lny","changes":[{"key":"system.attributes.ac.calc","value":"mage","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":648,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":0,"startTurn":0},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp","label":"Mage Armor","origin":"Compendium.dnd5e.heroes.4Jsv5vYaJ1atUEDV.Item.CKZTpZlxj7hjjo2H","transfer":false,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"4Jsv5vYaJ1atUEDV","_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787232155,"modifiedTime":1691519218885,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Krusk (Half-Orc Paladin)","type":"character","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":1,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":12,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""},"min":0},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"Roaming the land brigning justice to all, Krusk has just one goal: the destruction of evil wherever it lies.\n","public":""},"alignment":"Lawful Good","race":"Half Orc","background":"","originalClass":"xogb503g0jZcBEyb","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","orc"],"custom":""},"weaponProf":{"value":["sim","mar"],"custom":""},"armorProf":{"value":["lgt","med","hvy","shl"],"custom":""},"toolProf":{"value":["vehicle"],"custom":"Smith's Tools"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":5,"max":5,"sr":false,"lr":true,"label":"Lay on Hands"},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Krusk","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"mmNOUJeTSbhakKbO","name":"Amulet (Holy Symbol)","type":"equipment","system":{"description":{"value":"An amulet depicting a symbol representing a deity through which a true believer can call forth their power and in doing so spread the faith.Spellcasting Focus. A cleric or paladin can use a holy symbol as a spellcasting focus. To use the symbol in this way, the caster must hold it in hand, wear it visibly, or bear it on a shield.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"special","cost":null,"condition":"Holy symbol must be clearly visible."},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"trinket","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"sort":0,"flags":{},"img":"icons/equipment/neck/pendant-bronze-gem-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wKzMNfJSgCUaqpHG","name":"Javelin (melee)","type":"weapon","system":{"description":{"value":"This light and flexible spear is designed for throwing, but is versatile enough to be used in melee combat as well.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false},"proficient":true},"sort":0,"flags":{},"img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640500,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"PzYFkgoa8KpZwUWe","name":"Javelin (thrown)","type":"weapon","system":{"description":{"value":"This light and flexible spear is designed for throwing, but is versatile enough to be used in melee combat as well.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"ammo","target":"REOAERyAiCBpCA7V","amount":1},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false},"proficient":true},"sort":0,"flags":{},"img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640507,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"REOAERyAiCBpCA7V","name":"Javelin","type":"consumable","system":{"description":{"value":"This light and flexible spear is designed for throwing, but is versatile enough to be used in melee combat as well.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":5,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DWLMnODrnHn8IbAG"}},"img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640514,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"h9ta6MMHygQtSvhd","name":"Love Letter","type":"loot","system":{"description":{"value":"A love letter sent by an admirer.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/sundries/scrolls/scroll-plain-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7GbdWRRe8GyKGVYk","name":"Chain Mail","type":"equipment","system":{"description":{"value":"Made of interlocking metal rings, chain mail includes a layer of quilted fabric worn underneath the mail to prevent chafing and to cushion the impact of blows. The suit includes gauntlets.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":55,"price":{"value":75,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":13,"stealth":true,"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.rLMflzmxpe8JGTOA"}},"img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jAp8oEZymuFqMEME","name":"Shield","type":"equipment","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"img":"icons/equipment/shield/oval-wooden-boss-steel.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JVygpNYgNviQlQDL","name":"Longsword","type":"weapon","system":{"description":{"value":"A lengthy stright blade designed for slashing foes, the longsword is a highly versatile weapon that may also be wielded with two hands for more punishing strikes.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"img":"icons/weapons/swords/greatsword-crossguard-steel.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QDJj8gNDG3fapNIZ","name":"Hempen Rope (50 ft.)","type":"consumable","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket"},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":8}},"core":{"sourceId":"Compendium.dnd5e.items.QXmaarJ4X8P0C1HV"}},"img":"icons/sundries/survival/rope-wrapped-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"E0S0CJRUih4rZUTx","name":"Mess Kit","type":"loot","system":{"description":{"value":"This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":4}},"core":{"sourceId":"Compendium.dnd5e.items.V13fjV5oSmvbRdgP"}},"img":"icons/tools/cooking/fork-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640519,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"XDOhevGrWTwftiiM","name":"Bedroll","type":"loot","system":{"description":{"value":"Roll of cloth used by traveller to sleep in.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":6}},"core":{"sourceId":"Compendium.dnd5e.items.DVXmyetZuvxbzAwW"}},"img":"icons/sundries/flags/banner-worn-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eIMlGbeDuYjjEGRH","name":"Waterskin","type":"consumable","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Uv0ilmzbWvqmlCVH"}},"img":"icons/sundries/survival/wetskin-leather-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640526,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"XeDU0JtxGcNBjXer","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"IPeL1J71CbP6s5y5","name":"Smith's Tools","type":"tool","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in smithing.Proficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":8,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"","ability":"str","chatFlavor":"","proficient":1,"bonus":""},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.KndVe2insuctjIaj"}},"img":"icons/tools/smithing/hammer-sledge-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zk8hxPzKFTDZWVED","name":"Tinderbox","type":"loot","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DNOSEAvF4Oh1DlWy"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640532,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"grGg87yIxTTxoPTA","name":"Torch","type":"consumable","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":40,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":7}},"core":{"sourceId":"Compendium.dnd5e.items.BnOCLuNWhVvzHLjl"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647529,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WuNY7UdTCjUEpGlU","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640583,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"JdhpBDti3h3tNZai","name":"Relentless Endurance","type":"feat","system":{"description":{"value":"When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":"When you are reduced to 0 hit points"},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Half-Orc","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.97c8i9Z28thvZuA8"}},"img":"icons/magic/control/control-influence-rally-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Md0yW4QscE770F7W","name":"Savage Attacks","type":"feat","system":{"description":{"value":"When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.Foundry Note: Enable this feature in the Special Traits section of the character sheet.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Half-Orc","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.0kUsT4sMUOr5FcoX"}},"img":"icons/skills/melee/weapons-crossed-swords-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QX131bK0iuunr5uE","name":"Half-Orc","type":"feat","system":{"description":{"value":"\n\n\nYour half-orc character has certain traits deriving from your orc ancestry. Ability Score Increase. Your Strength score increases by 2, and your Constitution score increases by 1.Age. Half-orcs mature a little faster than humans, reaching adulthood around age 14. They age noticeably faster and rarely live longer than 75 years.Alignment. Half-orcs inherit a tendency toward chaos from their orc parents and are not strongly inclined toward good. Half-orcs raised among orcs and willing to live out their lives among them are usually evil.Size. Half-orcs are somewhat larger and bulkier than humans, and they range from 5 to well over 6 feet tall. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Thanks to your orc blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Menacing. You gain proficiency in the Intimidation skill.Relentless Endurance. @Compendium[dnd5e.races.97c8i9Z28thvZuA8]{Relentless Endurance} When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.\n\n\n\nSavage Attacks. @Compendium[dnd5e.races.0kUsT4sMUOr5FcoX]{Savage Attacks} When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.Languages. You can speak, read, and write Common and Orc. Orc is a harsh, grating language with hard consonants. It has no script of its own but is written in the Dwarvish script.\n\n\n\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.n5L000DkNBU6h2oJ"}},"img":"icons/magic/unholy/orb-smoking-green.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"name":"Local Champion","type":"background","system":{"description":{"value":"Skill Proficiencies: Animal Handling, SurvivalTool Proficiencies: Artisan's tools, vehicles (land)Equipment: A set of artisan's tools, common clothes, and a pouch containing 10 gp","chat":"","unidentified":""},"source":"","advancement":[]},"img":"icons/environment/people/infantry-armored.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040912446,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"gfQ9BWSZtm6WJyZr"},{"_id":"xogb503g0jZcBEyb","name":"Paladin","type":"class","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"As a paladin, you gain the following class features.\nHit Points\nHit Dice: 1d10 per paladin levelHit Points at 1st Level: 10 + your Constitution modifierHit Points at Higher Levels: 1d10 (or 6) + your Constitution modifier per paladin level after 1st\nProficiencies\nArmor: All armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two from Athletics, Insight, Intimidation, Medicine, Persuasion, and Religion\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a martial weapon and a shield or (b) two martial weapons\n(a) five javelins or (b) any simple melee weapon\n(a) a priest's pack or (b) an explorer's pack\nChain mail and a holy symbol\n\nPaladin Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.E8ozg8avUVOX9N7u]{Divine Sense}, @Compendium[dnd5e.classfeatures.OdrvL3afwLOPeuYZ]{Lay on Hands}\n\n\n2nd\n+2\n@UUID[Compendium.dnd5e.classfeatures.Ho7dVxBlOYFlfBHk]{Fighting Style}, @Compendium[dnd5e.classfeatures.ihoQHsmVZlyDbPhX]{Spellcasting}, @Compendium[dnd5e.classfeatures.ySMPQ6zNSlvkrl2f]{Divine Smite}\n\n\n3rd\n+2\n@Compendium[dnd5e.classfeatures.dY9yrqkyEDuF0CG2]{Divine Health}, @Compendium[dnd5e.classfeatures.olAqNsUTIef9x8xC]{Sacred Oath}, @UUID[Compendium.dnd5e.classfeatures.8M7uOPhbTxoxxJSo]{Channel Divinity}\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n5th\n+3\n2nd Level Spell Slot, @Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}\n\n\n6th\n+3\n@Compendium[dnd5e.classfeatures.carGDhkIdoduTC0I]{Aura of Protection}\n\n\n7th\n+3\nSacred Oath feature\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n9th\n+4\n3rd Level Spell Slot\n\n\n10th\n+4\n@Compendium[dnd5e.classfeatures.nahSkBO6LH4HkpaT]{Aura of Courage}\n\n\n11th\n+4\n@Compendium[dnd5e.classfeatures.FAk41RPCTcvCk6KI]{Improved Divine Smite}\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n4th Level Spell Slot\n\n\n14th\n+5\n@Compendium[dnd5e.classfeatures.U7BIPVPsptBmwsnV]{Cleansing Touch}\n\n\n15th\n+5\nSacred Oath feature\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n5th Level Spell Slot\n\n\n18th\n+6\nAura improvements\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\nSacred Oath feature\n\n\n\nSacred Oaths\nBecoming a paladin involves taking vows that commit the paladin to the cause of righteousness, an active path of fighting wickedness. The final oath, taken when he or she reaches 3rd level, is the culmination of all the paladin's training. Some characters with this class don't consider themselves true paladins until they have reached 3rd level and made this oath. For others, the actual swearing of the oath is a formality, an official stamp on what has always been true in the paladin's heart.\n@Compendium[dnd5e.subclasses.sZ86mbX8D5PfYuhl]{Oath of Devotion}\nBreaking Your Oath\nA paladin tries to hold to the highest standards of conduct, but even the most virtuous paladin is fallible. Sometimes the right path proves too demanding, sometimes a situation calls for the lesser of two evils, and sometimes the heat of emotion causes a paladin to transgress his or her oath.\nA paladin who has broken a vow typically seeks absolution from a cleric who shares his or her faith or from another paladin of the same order. The paladin might spend an allnight vigil in prayer as a sign of penitence, or undertake a fast or similar act of self-denial. After a rite of confession and forgiveness, the paladin starts fresh.\nIf a paladin willfully violates his or her oath and shows no sign of repentance, the consequences can be more serious. At the GM's discretion, an impenitent paladin might be forced to abandon this class and adopt another.","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"paladin","levels":1,"hitDice":"d10","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"FiGiRPSjIr96LxZo"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.E8ozg8avUVOX9N7u","Compendium.dnd5e.classfeatures.OdrvL3afwLOPeuYZ"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"BudM4uxDSnRehek7":"Compendium.dnd5e.classfeatures.E8ozg8avUVOX9N7u","2zb2FwOFtktH9JHF":"Compendium.dnd5e.classfeatures.OdrvL3afwLOPeuYZ"}},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"RFgaDXztbtJFtTZ1"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Ho7dVxBlOYFlfBHk","Compendium.dnd5e.classfeatures.ihoQHsmVZlyDbPhX","Compendium.dnd5e.classfeatures.ySMPQ6zNSlvkrl2f"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"JP26UvG5IiFmEBbH"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.dY9yrqkyEDuF0CG2","Compendium.dnd5e.classfeatures.olAqNsUTIef9x8xC","Compendium.dnd5e.classfeatures.8M7uOPhbTxoxxJSo"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"H7qZzx7uWwpFp4BO"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"143iuO07gsV0GF3t"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.carGDhkIdoduTC0I"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"NB5hjQasB1g8zM4U"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.nahSkBO6LH4HkpaT"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"CQvgRRVuvnszH9nK"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.FAk41RPCTcvCk6KI"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":11,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"EdDaJR59eAVkAssZ"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.U7BIPVPsptBmwsnV"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"sD79rzcMobOKOeCN"},{"type":"ItemChoice","configuration":{"hint":"Choose one of the following options. You can’t take a Fighting Style option more than once, even if you later get to choose again.","choices":{"2":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.zSlV0O2rQMdoq6pB","Compendium.dnd5e.classfeatures.hCop9uJrWhF1QPb4","Compendium.dnd5e.classfeatures.3Nc6u9pyStByuJsm","Compendium.dnd5e.classfeatures.06NVMYf58Z76O85O"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"fightingStyle","level":""}},"value":{},"title":"Fighting Style","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"PVp6xmz2oY03kKzD"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"BkgGiRIfeGzmeGmm"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"901TAV4Ee61mIfcE"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"9chByJPN7zbZVAtt"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"uPourLT0DP2QTtHk"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["wis","cha"],"skills":{"number":2,"choices":["ath","ins","itm","med","per","rel"],"value":[]},"spellcasting":{"progression":"half","ability":"cha"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.gZiUvbXWLs0pOp0c"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234280,"modifiedTime":1691519075009,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"BudM4uxDSnRehek7","name":"Divine Sense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The presence of strong evil registers on your senses like a noxious odor, and powerful good rings like heavenly music in your ears. As an action, you can open your awareness to detect such forces. Until the end of your next turn, you know the location of any celestial, fiend, or undead within 60 feet of you that is not behind total cover. You know the type (celestial, fiend, or undead) of any being whose presence you sense, but not its identity (the vampire Count Strahd von Zarovich, for instance). Within the same radius, you also detect the presence of any place or object that has been consecrated or desecrated, as with the @Compendium[dnd5e.spells.SLxA9QhrggTz0taU]{Hallow} spell.You can use this feature a number of times equal to 1 + your Charisma modifier. When you finish a long rest, you regain all expended uses.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1 + @abilities.cha.mod","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.E8ozg8avUVOX9N7u","advancementOrigin":"xogb503g0jZcBEyb.RFgaDXztbtJFtTZ1"}},"img":"icons/creatures/eyes/human-single-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234352,"modifiedTime":1691519075010,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"2zb2FwOFtktH9JHF","name":"Lay on Hands","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your blessed touch can heal wounds. You have a pool of healing power that replenishes when you take a long rest. With that pool, you can restore a total number of hit points equal to your paladin level × 5.As an action, you can touch a creature and draw power from the pool to restore a number of hit points to that creature, up to the maximum amount remaining in your pool.Alternatively, you can expend 5 hit points from your pool of healing to cure the target of one disease or neutralize one poison affecting it. You can cure multiple diseases and neutralize multiple poisons with a single use of Lay on Hands, expending hit points separately for each one.This feature has no effect on undead and constructs.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":"Target cannot be Undead or a Construct."},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":5,"max":"5 * @classes.paladin.levels","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.OdrvL3afwLOPeuYZ","advancementOrigin":"xogb503g0jZcBEyb.RFgaDXztbtJFtTZ1"}},"img":"icons/magic/light/orbs-hand-gray.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234371,"modifiedTime":1691519075010,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"dnd5e":{"savageAttacks":true}},"_id":"Dh1AA6w104V17V6w","_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787232161,"modifiedTime":1691519075025,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Jw8DeuPjt1qpusdB","name":"Sefris (Half-Elf Warlock)","type":"character","img":"","system":{"abilities":{"str":{"value":12,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":17,"proficient":1,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":10,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""},"min":0},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"Sefris's pickpocketing as a child grew into small burglaries and eventually complex heists, using the dark bond with his fiend to aid his exploits. He'll work for anyone who can throw some coin his way.\n","public":""},"alignment":"Chaotic Neutral","race":"Half-elf","background":"","originalClass":"MuaNnEZkswuhixJP","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":"Magical Sleep; Advantage on saving throws against charms"},"languages":{"value":["common","deep","elvish"],"custom":""},"weaponProf":{"value":["sim"],"custom":""},"armorProf":{"value":["lgt"],"custom":""},"toolProf":{"value":["game","thief"],"custom":""}},"currency":{"pp":0,"gp":15,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":1,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Sefris","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"s6ksFNAiSR2Wy20f","name":"Expanded Spell List","type":"feat","system":{"description":{"value":"The Fiend lets you choose from an expanded list of spells when you learn a warlock spell. The following spells are added to the warlock spell list for you.\nFiend Expanded Spells\n\n\nSpell Level\nSpells\n\n\n\n\n1st\n@Compendium[dnd5e.spells.5SuJewoa1CRWaj1F]{Burning Hands}, @Compendium[dnd5e.spells.arzCrMRgcNiQuh43]{Command}\n\n\n2nd\n@Compendium[dnd5e.spells.zwGsAv6kmwzYGhh3]{Blindness/Deafness}, @Compendium[dnd5e.spells.7u2obDvuvtZBkTfq]{Scorching Ray}\n\n\n3rd\n@Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball}, @Compendium[dnd5e.spells.TwlD4PLcltv7Xh7j]{Stinking Cloud}\n\n\n4th\n@Compendium[dnd5e.spells.avD5XUtkBPQQR97c]{Fire Shield}, @Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire}\n\n\n5th\n@Compendium[dnd5e.spells.5e1xTohkzqFqbYH4]{Flame Strike}, @Compendium[dnd5e.spells.SLxA9QhrggTz0taU]{Hallow}\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"The Fiend 1","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.classfeatures.4IHsIcBhAVDt8QjY"}},"img":"icons/magic/control/encase-creature-monster-hold.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tFWyqoQOTGy2tjVQ","name":"Dagger","type":"weapon","system":{"description":{"value":"A short metal blade mounted to a small hilt and crossguard. The dagger makes an effective side armament for hardened warriors or a hidden blade for assassins and thieves.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.0E565kQUBmndJ1a2"}},"img":"icons/weapons/daggers/dagger-jeweled-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gWG0z1fZ1Wh5v4ox","name":"Component Pouch","type":"consumable","system":{"description":{"value":"A component pouch is a small, watertight leather belt pouch that has compartments to hold all the material components and other special items you need to cast your spells, except for those components that have a specific cost (as indicated in a spell's description).","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.eZGmdOhaTWMicXPW"}},"img":"icons/containers/bags/pack-simple-leather-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PWzpA5cBPJN2ObHr","name":"Light Crossbow","type":"weapon","system":{"description":{"value":"A small crossbow with a wooden haft and a tense cord which is capable of firing a single bolt which can puncture even heavy armor at close range.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"ammo","target":"YhC9uJKyuxTPMNGB","amount":1},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"lgt":false,"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.ddWvQRLmnnIS0eLF"}},"img":"icons/weapons/crossbows/crossbow-simple-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EJBzJl2NdChAdgPp","name":"Leather Armor","type":"equipment","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"img":"icons/equipment/chest/breastplate-quilted-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CFNsSpQESXydoWIT","name":"Common Clothes","type":"equipment","system":{"description":{"value":"Clothes worn by most commoners.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.8RXjiddJ6VGyE7vB"}},"img":"icons/equipment/chest/shirt-collared-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640605,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"YhC9uJKyuxTPMNGB","name":"Crossbow Bolt","type":"consumable","system":{"description":{"value":"This ammunition is used for all varieties of crossbow and is typically a short metal shaft with a narrow piercing tip.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":20,"weight":0.075,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.SItCnYBqhzqBoaWG"}},"img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647536,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"cGloc8QtriPCqkot","name":"Quiver","type":"backpack","system":{"description":{"value":"A quiver can hold up to 20 arrows.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"capacity":{"type":"items","value":20,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.4MtQKPn9qMWCFjDA"}},"img":"icons/containers/ammunition/arrows-quiver-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AunuAQWZl4OW6XhY","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RbVPCEnvRQRNgalQ","name":"Pouch","type":"backpack","system":{"description":{"value":"A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":6,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.9bWTRRDym06PzSAf"}},"img":"icons/containers/bags/coinpouch-simple-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640620,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Jh3ztSfsO2aMdRCh","name":"Mess Kit","type":"loot","system":{"description":{"value":"This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.V13fjV5oSmvbRdgP"}},"img":"icons/tools/cooking/fork-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640627,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"khqYCCRBDGI6hyPp","name":"Hempen Rope (50 ft.)","type":"consumable","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QXmaarJ4X8P0C1HV"}},"img":"icons/sundries/survival/rope-wrapped-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VPbIxZbUa0Yu83OH","name":"Bedroll","type":"loot","system":{"description":{"value":"Roll of cloth used by traveller to sleep in.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DVXmyetZuvxbzAwW"}},"img":"icons/sundries/flags/banner-worn-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jWmSizyaQYCgP2q6","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640633,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"QMOVCtfUZ45nbquO","name":"Tinderbox","type":"loot","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DNOSEAvF4Oh1DlWy"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640639,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Kcl8IOHaqoKSvw5O","name":"Torch","type":"consumable","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":40,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.BnOCLuNWhVvzHLjl"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647547,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MtiO1knQLL5GNGlA","name":"Waterskin","type":"consumable","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Uv0ilmzbWvqmlCVH"}},"img":"icons/sundries/survival/wetskin-leather-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640652,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"jCesM4Kt02PWF6W5","name":"Thieves' Tools","type":"tool","system":{"description":{"value":"This set of tools includes a small file, a set of lock picks, a small mirror mounted on a metal handle, a set of narrow-bladed scissors, and a pair of pliers. Proficiency with these tools lets you add your proficiency bonus to any ability checks you make to disarm traps or open locks.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"","ability":"dex","chatFlavor":"","proficient":1,"bonus":""},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.woWZ1sO5IUVGzo58"}},"img":"icons/tools/hand/lockpicks-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"n4y54n9b3KkJdhLL","name":"Crowbar","type":"loot","system":{"description":{"value":"Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.V5UAjT3ed6sDNtgm"}},"img":"icons/tools/hand/pickaxe-steel-white.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"IBBEAAhVb5tWL0sz","name":"Fey Ancestry","type":"feat","system":{"description":{"value":"You have advantage on saving throws against being charmed, and magic can't put you to sleep.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Elf, Half-Elf","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LvSBjRKoCAKaAnQy"}},"img":"icons/creatures/mammals/elk-moose-marked-green.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"N86N6wcMkknG99ZF","name":"Half-Elf","type":"feat","system":{"description":{"value":"\n\n\nYour half-elf character has some qualities in common with elves and some that are unique to half-elves. Ability Score Increase. Your Charisma score increases by 2, and two other ability scores of your choice increase by 1.Age. Half-elves mature at the same rate humans do and reach adulthood around the age of 20. They live much longer than humans, however, often exceeding 180 years.Alignment. Half-elves share the chaotic bent of their elven heritage. They value both personal freedom and creative expression, demonstrating neither love of leaders nor desire for followers. They chafe at rules, resent others' demands, and sometimes prove unreliable, or at least unpredictable.\n\n\n\nSize. Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Thanks to your elf blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Fey Ancestry. @Compendium[dnd5e.races.cnTbpPPeGW7vGjOV]{Fey Ancestry} You have advantage on saving throws against being charmed, and magic can't put you to sleep.Skill Versatility. You gain proficiency in two skills of your choice.Languages. You can speak, read, and write Common, Elvish, and one extra language of your choice.\n\n\n\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.Hye5IZwPOSwV0qRR"}},"img":"icons/magic/nature/leaf-glow-triple-teal.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"r4vy8utsxo9my9r0","name":"The Fiend","type":"subclass","img":"icons/creatures/unholy/demon-fire-horned-winged-roar.webp","system":{"description":{"value":"You have made a pact with a fiend from the lower planes of existence, a being whose aims are evil, even if you strive against those aims. Such beings desire the corruption or destruction of all things, ultimately including you. Fiends powerful enough to forge a pact include demon lords such as Demogorgon, Orcus, Fraz'Urb-luu, and Baphomet; archdevils such as Asmodeus, Dispater, Mephistopheles, and Belial; pit fiends and balors that are especially mighty; and ultroloths and other lords of the yugoloths.\nExpanded Spell List\nThe Fiend lets you choose from an expanded list of spells when you learn a warlock spell. The following spells are added to the warlock spell list for you.\n\n\n\nSpell Level\nSpells\n\n\n\n\n1st\n@Compendium[dnd5e.spells.5SuJewoa1CRWaj1F]{Burning Hands}, @Compendium[dnd5e.spells.arzCrMRgcNiQuh43]{Command}\n\n\n2nd\n@Compendium[dnd5e.spells.zwGsAv6kmwzYGhh3]{Blindness/Deafness}, @Compendium[dnd5e.spells.7u2obDvuvtZBkTfq]{Scorching Ray}\n\n\n3rd\n@Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball}, @Compendium[dnd5e.spells.TwlD4PLcltv7Xh7j]{Stinking Cloud}\n\n\n4th\n@Compendium[dnd5e.spells.avD5XUtkBPQQR97c]{Fire Shield}, @Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire}\n\n\n5th\n@Compendium[dnd5e.spells.5e1xTohkzqFqbYH4]{Flame Strike}, @Compendium[dnd5e.spells.SLxA9QhrggTz0taU]{Hallow}\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"the-fiend","classIdentifier":"warlock","advancement":[{"_id":"mwpiq5ybhynszxgq","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Jv0zu4BtUi8bFCqJ"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"mbXQrn8QAMAtSSUc":"Compendium.dnd5e.classfeatures.Jv0zu4BtUi8bFCqJ"}},"level":1,"title":"Features"},{"_id":"icxswdpvqj9o89nz","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.OQSb0bO1yDI4aiMx"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features"},{"_id":"5ymsjeikr4pdu6u7","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.9UZ2WjUF2k58CQug"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features"},{"_id":"swdh8yx47ilzgur2","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.aCUmlnHlUPHS0rdu"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.subclasses.WPFVBg589uI8iOMH"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":null,"modifiedTime":1691519206746,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Z9p1vezIn95jw1Yw","name":"Eldritch Blast","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A beam of crackling energy streaks toward a creature within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 force damage.The spell creates more than one beam when you reach higher levels: two beams at 5th level, three beams at 11th level, and four beams at 17th level. You can direct the beams at the same target or at different ones. Make a separate attack roll for each beam.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Z9p1vezIn95jw1Yw"}},"img":"icons/magic/fire/projectile-fireball-smoke-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486083,"modifiedTime":1661603486083,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"vrN18tbTw7io5MWd","name":"Chill Touch","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a ghostly, skeletal hand in the space of a creature within range. Make a ranged spell attack against the creature to assail it with the chill of the grave. On a hit, the target takes 1d8 Necrotic damage, and it can't regain hit points until the start of your next turn. Until then, the hand clings to the target.If you hit an undead target, it also has disadvantage on attack rolls against you until the end of your next turn.This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.vrN18tbTw7io5MWd"}},"img":"icons/magic/water/projectile-ice-faceted-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486083,"modifiedTime":1661603486083,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"5SuJewoa1CRWaj1F","name":"Burning Hands","ownership":{"default":0},"type":"spell","system":{"description":{"value":"As you hold your hands with thumbs touching and fingers spread, a thin sheet of flames shoots forth from your outstretched fingertips. Each creature in a 15-foot cone must make a Dexterity saving throw. A creature takes 3d6 fire damage on a failed save, or half as much damage on a successful one.The fire ignites any flammable objects in the area that aren't being worn or carried.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"pact","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.5SuJewoa1CRWaj1F"}},"img":"icons/magic/air/fog-gas-smoke-dense-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486085,"modifiedTime":1661603486085,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"arzCrMRgcNiQuh43","name":"Command","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You speak a one-word command to a creature you can see within range. The target must succeed on a Wisdom saving throw or follow the command on its next turn. The spell has no effect if the target is undead, if it doesn't understand your language, or if your command is directly harmful to it.Some typical commands and their effects follow. You might issue a command other than one described here. If you do so, the DM determines how the target behaves. If the target can't follow your command, the spell ends.Approach. The target moves toward you by the shortest and most direct route, ending its turn if it moves within 5 feet of you.Drop. The target drops whatever it is holding and then ends its turn.Flee. The target spends its turn moving away from you by the fastest available means.Grovel. The target falls prone and then ends its turn.Halt. The target doesn't move and takes no actions. A flying creature stays aloft, provided that it is able to do so. If it must move to stay aloft, it flies the minimum distance needed to remain in the air.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"pact","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.arzCrMRgcNiQuh43"}},"img":"icons/magic/fire/explosion-fireball-small-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486086,"modifiedTime":1661603486086,"lastModifiedBy":"dnd5ebuilder0000"}},{"name":"Burglar","type":"background","system":{"description":{"value":"Skill Proficiencies: Deception, StealthTool Proficiencies: One type of gaming set, thieves' toolsEquipment: A crowbar, hooded common clothes, thieves' tools, and a belt pouch containing 15 gp","chat":"","unidentified":""},"source":"","advancement":[]},"img":"icons/magic/perception/silhouette-stealth-shadow.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040964521,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"8uFLMKLwRO7Y5Xl2"},{"_id":"MuaNnEZkswuhixJP","name":"Warlock","type":"class","img":"icons/creatures/mammals/bat-giant-tattered-purple.webp","system":{"description":{"value":"As a warlock, you gain the following class features.Hit PointsHit Dice: 1d8 per warlock levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per warlock level after 1stProficienciesArmor: Light armorWeapons: Simple weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two skills from Arcana, Deception, History, Intimidation, Investigation, Nature, and ReligionEquipmentYou start with the following equipment, in addition to the equipment granted by your background:(a) a light crossbow and 20 bolts or (b) any simple weapon(a) a component pouch or (b) an arcane focus(a) a scholar's pack or (b) a dungeoneer's packLeather armor, any simple weapon, and two daggersWarlock AdvancementLevelProficiency BonusFeaturesInvocations Known1st+2@Compendium[dnd5e.classfeatures.jTXHaK0vvT5DV3uO]{Otherworldly Patron}, @Compendium[dnd5e.classfeatures.x6IJZwr6f0SGral7]{Pact Magic}̶2nd+2@Compendium[dnd5e.classfeatures.8MlxM2nEfE3Q0EVk]{Eldritch Invocations}23rd+2@Compendium[dnd5e.classfeatures.QwgfIpCN8VWfoUtX]{Pact Boon}24th+2@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}25th+33rd Level Spells, +1 Invocation36th+3Otherworldly Patron feature37th+34th Level Spells, +1 Invocation48th+3@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}49th+45th Level Spells, +1 Invocation510th+4Otherworldly Patron feature511th+4@Compendium[dnd5e.classfeatures.zB77V8BcCJvWVxck]{Mystic Arcanum (6th-Level Spell)}512th+4@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}, +1 Invocation613th+5@Compendium[dnd5e.classfeatures.zB77V8BcCJvWVxck]{Mystic Arcanum (7th-Level Spell)}614th+5Otherworldly Patron feature615th+5@Compendium[dnd5e.classfeatures.zB77V8BcCJvWVxck]{Mystic Arcanum (8th-Level Spell)}, +1 Invocation716th+5@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}717th+6@Compendium[dnd5e.classfeatures.zB77V8BcCJvWVxck]{Mystic Arcanum (9th-Level Spell)}718th+6+1 Invocation819th+6@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}820th+6@Compendium[dnd5e.classfeatures.0C04rwyvoknvFYiy]{Eldritch Master}8Your Pact BoonEach Pact Boon option produces a special creature or an object that reflects your patron's nature.Pact of the Chain. Your familiar is more cunning than a typical familiar. Its default form can be a reflection of your patron, with imps and quasits tied to the Fiend.Pact of the Blade. If you serve the Fiend, your weapon could be an axe made of black metal and adorned with decorative flames.Pact of the Tome. Your Book of Shadows could be a weighty tome bound in demon hide studded with iron, holding spells of conjuration and a wealth of forbidden lore about the sinister regions of the cosmos, a gift of the Fiend.Otherworldly PatronsThe beings that serve as patrons for warlocks are mighty inhabitants of other planes of existence—not gods, but almost godlike in their power. Various patrons give their warlocks access to different powers and invocations, and expect significant favors in return.Some patrons collect warlocks, doling out mystic knowledge relatively freely or boasting of their ability to bind mortals to their will. Other patrons bestow their power only grudgingly, and might make a pact with only one warlock. Warlocks who serve the same patron might view each other as allies, siblings, or rivals.@Compendium[dnd5e.subclasses.WPFVBg589uI8iOMH]{The Fiend}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"warlock","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"m04qS9GheCqdni2h"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.jTXHaK0vvT5DV3uO","Compendium.dnd5e.classfeatures.x6IJZwr6f0SGral7"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"O5nhueIb5HIil0eh":"Compendium.dnd5e.classfeatures.jTXHaK0vvT5DV3uO","uf6mKJJICzDHiWly":"Compendium.dnd5e.classfeatures.x6IJZwr6f0SGral7"}},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"AXY5iebZXk6dv5cn"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.8MlxM2nEfE3Q0EVk"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"5FXyMXNNqax59haT"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.QwgfIpCN8VWfoUtX"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"OuBVlt2PDTT7vBoB"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.zB77V8BcCJvWVxck"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":11,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"Ah54Qpu2mLCMZNay"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.0C04rwyvoknvFYiy"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"sKx7KLPkzjGf2sA1"},{"type":"ItemChoice","configuration":{"hint":"If an eldritch invocation has prerequisites, you must meet them to learn it. You can learn the invocation at the same time that you meet its prerequisites. A level prerequisite refers to your level in this class.","choices":{"2":2,"5":1,"7":1,"9":1,"12":1,"15":1,"18":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.2fyuw7MiCnocDeAU","Compendium.dnd5e.classfeatures.alUqO6c6OEKFQJdb","Compendium.dnd5e.classfeatures.QEuH5TeBN4PPYT2g","Compendium.dnd5e.classfeatures.61kXR1sniXHjvN17","Compendium.dnd5e.classfeatures.eNvpIaSnJUdF8fHl","Compendium.dnd5e.classfeatures.KygHql3cTj4IRrvZ","Compendium.dnd5e.classfeatures.CFIYXDmbmSP8BXjN","Compendium.dnd5e.classfeatures.Phy02H5x0TKHd7T3","Compendium.dnd5e.classfeatures.3sN91lT1R3oxcDKd","Compendium.dnd5e.classfeatures.QBk1RsuTIEF4GEBC","Compendium.dnd5e.classfeatures.bbUEsCPTLzbbwK6o","Compendium.dnd5e.classfeatures.r01WtcxTg4yTHm9m","Compendium.dnd5e.classfeatures.lEZKbWaVrSljRa9n","Compendium.dnd5e.classfeatures.id0gmGvzNZBEdzbx","Compendium.dnd5e.classfeatures.65ReXU4ZWqcSs3Cm","Compendium.dnd5e.classfeatures.zUIAzBnyt0NDvVXb","Compendium.dnd5e.classfeatures.MhJfdBl1B7PdU4oZ","Compendium.dnd5e.classfeatures.lxfdjLer3uKjyZqU","Compendium.dnd5e.classfeatures.QnRKYXb2bXpnNd2k","Compendium.dnd5e.classfeatures.DjXi0IkCTbJx1gsp","Compendium.dnd5e.classfeatures.k5DU0mMuYVHejiqz","Compendium.dnd5e.classfeatures.KfnUyjUWAk0bAAus","Compendium.dnd5e.classfeatures.8zciiglzEOZo7DDN","Compendium.dnd5e.classfeatures.rdBPd6CwqXT64iJM","Compendium.dnd5e.classfeatures.Xa2MLUJGCReJ28B7","Compendium.dnd5e.classfeatures.dTSV0xZMpY5CxkRk","Compendium.dnd5e.classfeatures.rhbwDZ9XNTmdkX2u","Compendium.dnd5e.classfeatures.pJADgAxxefgcATWr","Compendium.dnd5e.classfeatures.zYIdNAjqRyhS6qWs","Compendium.dnd5e.classfeatures.k5M8gsl7MMcdjOjs","Compendium.dnd5e.classfeatures.gFjxo01hAN4c9hDG","Compendium.dnd5e.classfeatures.snsjxGfmzWfZR5Nh"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"eldritchInvocation","level":""}},"value":{},"title":"Eldritch Invocations","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"SQoedRgBg4CZ2Twb"},{"type":"ItemChoice","configuration":{"hint":"","choices":{"3":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.9dSSa68mIPoX2ezA","Compendium.dnd5e.classfeatures.Ic1CSjvbWKudVUv9","Compendium.dnd5e.classfeatures.MYM908WLZ1lVvA1u"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"pact","level":""}},"value":{},"title":"Pact Boon","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"iKtAzqSlqwkihQn0"},{"type":"ItemChoice","configuration":{"hint":"Choose one 6th-level spell from the warlock spell list as this arcanum.","choices":{"11":1},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"atwill","uses":{"max":"1","per":"lr"}},"restriction":{"type":"","subtype":"","level":"6"}},"value":{},"title":"Mystic Arcanum (6th level)","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"a5VTIGe3lNEp2OYv"},{"type":"ItemChoice","configuration":{"hint":"Choose one 7th-level spell from the warlock spell list as this arcanum.","choices":{"13":1},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"atwill","uses":{"max":"1","per":"lr"}},"restriction":{"type":"","subtype":"","level":"7"}},"value":{},"title":"Mystic Arcanum (7th level)","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"hJxRoMZ5YaI2Y9F2"},{"type":"ItemChoice","configuration":{"hint":"Choose one 8th-level spell from the warlock spell list as this arcanum.","choices":{"15":1},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"atwill","uses":{"max":"1","per":"lr"}},"restriction":{"type":"","subtype":"","level":"8"}},"value":{},"title":"Mystic Arcanum (8th level)","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"Q3rKUfFElP8Z7cFI"},{"type":"ItemChoice","configuration":{"hint":"Choose one 9th-level spell from the warlock spell list as this arcanum.","choices":{"17":1},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"atwill","uses":{"max":"1","per":"lr"}},"restriction":{"type":"","subtype":"","level":"9"}},"value":{},"title":"Mystic Arcanum (9th level)","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"wJntS4cUC6RaV7ie"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":2},"4":{"value":3},"10":{"value":4}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"OcM7blwWM7CgNbMS"},{"type":"ScaleValue","configuration":{"identifier":"spells-known","type":"number","distance":{"units":""},"scale":{"1":{"value":2},"2":{"value":3},"3":{"value":4},"4":{"value":5},"5":{"value":6},"6":{"value":7},"7":{"value":8},"8":{"value":9},"9":{"value":10},"11":{"value":11},"13":{"value":12},"15":{"value":13},"17":{"value":14},"19":{"value":15}}},"value":{},"title":"Spells Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"rdzbe2Dv8SaD3YUS"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"X6UIWFe7JZzFry7f"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"C4uqRD1mSOxKF11n"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"unXUZVn2otlBmtvI"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"EZfVebBnXF8yILKN"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["wis","cha"],"skills":{"number":2,"choices":["arc","dec","his","itm","inv","nat","rel"],"value":[]},"spellcasting":{"progression":"pact","ability":"cha"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.7WJp9vhi6F6SlAFa"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234278,"modifiedTime":1691519206763,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"O5nhueIb5HIil0eh","name":"Otherworldly Patron","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 1st level, you have struck a bargain with an otherworldly being, such as the Fiend. Your choice grants you features at 1st level and again at 6th, 10th, and 14th level.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Warlock 1","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.jTXHaK0vvT5DV3uO","advancementOrigin":"MuaNnEZkswuhixJP.AXY5iebZXk6dv5cn"}},"img":"icons/sundries/lights/candles-lit-red-evil.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234413,"modifiedTime":1691519206764,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"uf6mKJJICzDHiWly","name":"Pact Magic","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your arcane research and the magic bestowed on you by your patron have given you facility with spells.\nCantrips\nYou know two cantrips of your choice from the warlock spell list. You learn additional warlock cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Warlock table.\nSpell Slots\nThe Warlock table shows how many spell slots you have. The table also shows what the level of those slots is; all of your spell slots are the same level. To cast one of your warlock spells of 1st level or higher, you must expend a spell slot. You regain all expended spell slots when you finish a short or long rest.\nFor example, when you are 5th level, you have two 3rd-level spell slots. To cast the 1st-level spell thunderwave, you must spend one of those slots, and you cast it as a 3rd-level spell.\nSpells Known of 1st Level and Higher\nAt 1st level, you know two 1st-level spells of your choice from the warlock spell list.\nThe Spells Known column of the Warlock table shows when you learn more warlock spells of your choice of 1st level and higher. A spell you choose must be of a level no higher than what's shown in the table's Slot Level column for your level. When you reach 6th level, for example, you learn a new warlock spell, which can be 1st, 2nd, or 3rd level.\nAdditionally, when you gain a level in this class, you can choose one of the warlock spells you know and replace it with another spell from the warlock spell list, which also must be of a level for which you have spell slots.\nSpellcasting Ability\nCharisma is your spellcasting ability for your warlock spells, so you use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a warlock spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Charisma modifier\nSpell attack modifier = your proficiency bonus + your Charisma modifier\nSpellcasting Focus\nYou can use an arcane focus as a spellcasting focus for your warlock spells.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Warlock 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.x6IJZwr6f0SGral7","advancementOrigin":"MuaNnEZkswuhixJP.AXY5iebZXk6dv5cn"}},"img":"icons/skills/wounds/blood-spurt-spray-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234440,"modifiedTime":1691519206766,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"mbXQrn8QAMAtSSUc","name":"Dark One's Blessing","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 1st level, when you reduce a hostile creature to 0 hit points, you gain temporary hit points equal to your Charisma modifier + your warlock level (minimum of 1).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["max(1, @mod + @classes.warlock.levels)","temphp"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"The Fiend 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.Jv0zu4BtUi8bFCqJ","advancementOrigin":"r4vy8utsxo9my9r0.mwpiq5ybhynszxgq"}},"img":"icons/skills/wounds/blood-cells-disease-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234360,"modifiedTime":1691519206767,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787232167,"modifiedTime":1691519206781,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Aoth (Human Druid)","type":"character","img":"","system":{"abilities":{"str":{"value":9,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":10,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""},"min":0},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"wis","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"Aoth lived among animals for so long that he now has difficulty speaking Common. His natural habitat in danger, he decided to join an adventuring group to return balance to his land.\n","public":""},"alignment":"True Neutral","race":"HUMAN","background":"","originalClass":"mwtiHpkH8Gglxr3u","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","druidic","gnomish"],"custom":""},"weaponProf":{"value":["club","dagger","dart","javelin","mace","quarterstaff","scimitar","sickle","sling","spear"],"custom":""},"armorProf":{"value":["lgt","med","shl"],"custom":"(No metal)"},"toolProf":{"value":["herb"],"custom":""}},"currency":{"pp":0,"gp":5,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{},"spells":{"spell1":{"value":2,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Aoth","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"yZ0HzuMNz4aMWPYH","name":"Druidic Focus: Cowbell","type":"loot","system":{"description":{"value":"A small bell for you to ring.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/tools/instruments/bell-brass-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DPlMjhbZkmNVJrdZ","name":"Blanket","type":"loot","system":{"description":{"value":"A sheet of blanket to keep you warm at night.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.419eNv7xp2p7Xlo5"}},"img":"icons/sundries/flags/banner-worn-green.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640659,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"VaSicu4OB2Rb5IiV","name":"Scroll Case","type":"backpack","system":{"description":{"value":"This cylindrical leather case can hold up to ten rolled-up sheets of paper or five rolled-up sheets of parchment.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"items","value":10,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{},"img":"icons/containers/bags/case-leather-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"J0Xm66dc67W3H40l","name":"Common Clothes","type":"equipment","system":{"description":{"value":"Clothes worn by most commoners.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.8RXjiddJ6VGyE7vB"}},"img":"icons/equipment/chest/shirt-collared-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640674,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"FX6PgZoih5lbqGur","name":"Herbalism Kit","type":"tool","system":{"description":{"value":"This kit contains a variety of instruments such as clippers, mortar and pestle, and pouches and vials used by herbalists to create remedies and potions. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to identify or apply herbs. Also, proficiency with this kit is required to create antitoxin and potions of healing.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":3,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"","ability":"wis","chatFlavor":"","proficient":1,"bonus":""},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.i89okN7GFTWHsvPy"}},"img":"icons/containers/bags/pouch-leather-green.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EkVpvgSVXUJJd8sz","name":"Leather Armor","type":"equipment","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"img":"icons/equipment/chest/breastplate-quilted-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wQlDyAuPxNVwsaeL","name":"Quarterstaff","type":"weapon","system":{"description":{"value":"A thick shaft of wood wrapped with a sturdy grip makes a highly functional weapon in addition to a stout walking stick.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.g2dWN7PQiMRYWzyk"}},"img":"icons/weapons/staves/staff-simple-gold.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640689,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"efIjMSXJeGHp7JJ2","name":"Club","type":"weapon","system":{"description":{"value":"A stout knob of wood forms a simple, but effective, cudgel. These weapons are used to bludgeon foes, bruising flesh and breaking bones.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.nfIRTECQIG81CvM4"}},"img":"icons/weapons/clubs/club-simple-barbed.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640698,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"xJflRtfyMlGqXJ46","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Hp6fcWigyhEDAvdY","name":"Bedroll","type":"loot","system":{"description":{"value":"Roll of cloth used by traveller to sleep in.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DVXmyetZuvxbzAwW"}},"img":"icons/sundries/flags/banner-worn-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"aS5auFMrz8JmQHHd","name":"Mess Kit","type":"loot","system":{"description":{"value":"This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.V13fjV5oSmvbRdgP"}},"img":"icons/tools/cooking/fork-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640705,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"zCMTkV6VLX6SvAKM","name":"Tinderbox","type":"loot","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DNOSEAvF4Oh1DlWy"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640713,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"HIHSYXIcwD6EC0un","name":"Hempen Rope (50 ft.)","type":"consumable","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QXmaarJ4X8P0C1HV"}},"img":"icons/sundries/survival/rope-wrapped-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XY4wR1kxV1nFNLE4","name":"Waterskin","type":"consumable","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Uv0ilmzbWvqmlCVH"}},"img":"icons/sundries/survival/wetskin-leather-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640727,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"p3oldMqy5WWQCmuB","name":"Torch","type":"consumable","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":40,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.BnOCLuNWhVvzHLjl"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647558,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"u900dGnBWSbjqrjP","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640749,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"s9TjQ4VjDzht25O3","name":"Human","type":"feat","system":{"description":{"value":"\n\n\nIt’s hard to make generalizations about humans, but your human character has these traits. Ability Score Increase. Your ability scores each increase by 1.Age. Humans reach adulthood in their late teens and live less than a century.Alignment. Humans tend toward no particular alignment. The best and the worst are found among them.Size. Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.Speed. Your base walking speed is 30 feet.Languages. You can speak, read, and write Common and one extra language of your choice. Humans typically learn the languages of other peoples they deal with, including obscure dialects. They are fond of sprinkling their speech with words borrowed from other tongues: Orc curses, Elvish musical expressions, Dwarvish military phrases, and so on.\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.ydP3QzCmur55mtY2"}},"img":"icons/magic/light/explosion-star-large-orange.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SbSvZKkJASyk8jKo","name":"Druidcraft","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Whispering to the spirits of Nature, you create one of the following Effects within range:\n\nYou create a tiny, harmless sensory effect that predicts what the weather will be at your location for the next 24 hours. The effect might manifest as a golden orb for clear skies, a cloud for rain, Falling snowflakes for snow, and so on. This effect persists for 1 round.\nYou instantly make a flower blossom, a seed pod open, or a leaf bud bloom.\nYou create an Instantaneous, harmless sensory effect, such as Falling leaves, a puff of wind, the sound of a small animal, or the faint odor of skunk. The effect must fit in a 5-foot cube.\nYou instantly light or snuff out a Candle, a torch, or a small campfire.\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.SbSvZKkJASyk8jKo"}},"img":"icons/magic/nature/vines-thorned-glow-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486122,"modifiedTime":1661603486122,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"VzgFzcmocr1X1cp4","name":"Shillelagh","ownership":{"default":0},"type":"spell","system":{"description":{"value":"The wood of a club or quarterstaff you are holding is imbued with nature's power. For the duration, you can use your spellcasting ability instead of Strength for the attack and damage rolls of melee attacks using that weapon, and the weapon's damage die becomes a d8. The weapon also becomes magical, if it isn't already. The spell ends if you cast it again or if you let go of the weapon.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"spec","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A shamrock leaf, and a club or quarterstaff","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.VzgFzcmocr1X1cp4"}},"img":"icons/magic/fire/dagger-rune-enchant-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486123,"modifiedTime":1661603486123,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"hDOENzjuj5WpLq7B","name":"Animal Friendship","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell lets you convince a beast that you mean it no harm. Choose a beast that you can see within range. It must see and hear you. If the beast's Intelligence is 4 or higher, the spell fails. Otherwise, the beast must succeed on a Wisdom saving throw or be charmed by you for the spell's duration. If you or one of your companions harms the target, the spell ends.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional beast for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A morsel of food.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.hDOENzjuj5WpLq7B"}},"img":"icons/magic/nature/wolf-paw-glow-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486123,"modifiedTime":1661603486123,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"eS7XnnApoxRxYXPs","name":"Charm Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to charm a humanoid you can see within range. It must make a Wisdom saving throw, and does so with advantage if you or your companions are fighting it. If it fails the saving throw, it is charmed by you until the spell ends or until you or your companions do anything harmful to it. The charmed creature regards you as a friendly acquaintance. When the spell ends, the creature knows it was charmed by you.\n At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.eS7XnnApoxRxYXPs"}},"img":"icons/magic/fire/explosion-fireball-medium-purple-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486124,"modifiedTime":1661603486124,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"a3XtAO5n2GrqiAh5","name":"Create or Destroy Water","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You either create or destroy water.Create Water. You create up to 10 gallons of clean water within range in an open container. Alternatively, the water falls as rain in a 30-foot cube within range.Destroy Water. You destroy up to 10 gallons of water in an open container within range. Alternatively, you destroy fog in a 30-foot cube within range.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you create or destroy 10 additional gallons of water, or the size of the cube increases by 5 feet, for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":30,"width":null,"units":"ft","type":"cube"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A drop of water if creating water or a few grains of sand if destroying it.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.a3XtAO5n2GrqiAh5"}},"img":"icons/magic/air/wind-swirl-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486124,"modifiedTime":1661603486124,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"uUWb1wZgtMou0TVP","name":"Cure Wounds","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch regains a number of hit points equal to 1d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.uUWb1wZgtMou0TVP"}},"img":"icons/magic/life/heart-cross-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486124,"modifiedTime":1661603486124,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"crewed":false,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486125,"modifiedTime":1661603486125,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"2skfDtglk1mGrb3l","name":"Detect Poison and Disease","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you can sense the presence and location of poisons, poisonous creatures, and diseases within 30 feet of you. You also identify the kind of poison, poisonous creature, or disease in each case.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"crewed":false,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A yew leaf","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.2skfDtglk1mGrb3l"}},"img":"icons/magic/air/air-burst-spiral-teal-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486125,"modifiedTime":1661603486125,"lastModifiedBy":"dnd5ebuilder0000"}},{"name":"Entangle","type":"spell","img":"icons/magic/nature/vines-thorned-curled-glow-green.webp","system":{"description":{"value":"Grasping weeds and vines sprout from the ground in a 20-foot square starting from a point within range. For the Duration, these Plants turn the ground in the area into difficult terrain.A creature in the area when you cast the spell must succeed on a Strength saving throw or be Restrained by the entangling Plants until the spell ends. A creature restrained by the plants can use its action to make a Strength check against your spell save DC. On a success, it frees itself.When the spell ends, the conjured Plants wilt away.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":20,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":null,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"effects":[],"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gMrWeG8fMDPRFiVe"}},"_id":"gMrWeG8fMDPRFiVe","folder":null,"sort":0,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486126,"modifiedTime":1661603486126,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"nqBDWkVOfcGZt4YU","name":"Faerie Fire","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Each object in a 20-foot cube within range is outlined in blue, green, or violet light (your choice). Any creature in the area when the spell is cast is also outlined in light if it fails a Dexterity saving throw. For the duration, objects and affected creatures shed dim light in a 10-foot radius.Any attack roll against an affected creature or object has advantage if the attacker can see it, and the affected creature or object can't benefit from being invisible.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.nqBDWkVOfcGZt4YU"}},"img":"icons/magic/fire/projectile-meteor-salvo-strong-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486127,"modifiedTime":1661603486127,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"IBJmWjzbQGu7M4UX","name":"Fog Cloud","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a 20-foot-radius Sphere of fog centered on a point within range. The sphere spreads around corners, and its area is heavily obscured. It lasts for the Duration or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the radius of the fog increases by 20 feet for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.IBJmWjzbQGu7M4UX"}},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486128,"modifiedTime":1661603486128,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Qf6CAZkc7ms4ZY3e","name":"Goodberry","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Up to ten berries appear in your hand and are infused with magic for the duration. A creature can use its action to eat one berry. Eating a berry restores 1 hit point, and the berry provides enough nourishment to sustain a creature for one day.The berries lose their potency if they have not been consumed within 24 hours of the casting of this spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A spring of mistletoe","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Qf6CAZkc7ms4ZY3e"}},"img":"icons/magic/nature/leaf-glow-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486128,"modifiedTime":1661603486128,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"o8Dh7fblk1d16tnO","name":"Healing Word","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature of your choice that you can see within range regains hit points equal to 1d4 + your spellcasting ability modifier. This spell has no effect on undead or constructs.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d4 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d4"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.o8Dh7fblk1d16tnO"}},"img":"icons/magic/life/heart-cross-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486129,"modifiedTime":1661603486129,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ZrTc23tToJ0JpH2h","name":"Jump","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature. The creature's jump distance is tripled until the spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A grasshopper's hind leg","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ZrTc23tToJ0JpH2h"}},"img":"icons/magic/control/debuff-energy-hold-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486129,"modifiedTime":1661603486129,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"B0pnIcc52O6G8hi8","name":"Longstrider","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature. The target's speed increases by 10 feet until the spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of dirt","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.B0pnIcc52O6G8hi8"}},"img":"icons/magic/air/wind-stream-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486130,"modifiedTime":1661603486130,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Kn7K5PtYUJAKZTTp","name":"Purify Food and Drink","ownership":{"default":0},"type":"spell","system":{"description":{"value":"All nonmagical food and drink within a 5-foot-radius sphere centered on a point of your choice within range is purified and rendered free of poison and disease.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":5,"width":null,"units":"ft","type":"sphere"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Kn7K5PtYUJAKZTTp"}},"img":"icons/magic/light/explosion-star-small-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486130,"modifiedTime":1661603486130,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"aL1F8fvYLtNzUbKu","name":"Speak with Animals","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You gain the ability to comprehend and verbally communicate with beasts for the duration. The knowledge and awareness of many beasts is limited by their intelligence, but at minimum, beasts can give you information about nearby locations and monsters, including whatever they can perceive or have perceived within the past day. You might be able to persuade a beast to perform a small favor for you, at the DM's discretion.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.aL1F8fvYLtNzUbKu"}},"img":"icons/magic/nature/wolf-paw-glow-small-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486131,"modifiedTime":1661603486131,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WTbOQBsarsL1LuXJ","name":"Thunderwave","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A wave of thunderous force sweeps out from you. Each creature in a 15-foot cube originating from you must make a Constitution saving throw. On a failed save, a creature takes 2d8 thunder damage and is pushed 10 feet away from you. On a successful save, the creature takes half as much damage and isn't pushed.In addition, unsecured objects that are completely within the area of effect are automatically pushed 10 feet away from you by the spell's effect, and the spell emits a thunderous boom audible out to 300 feet.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":15,"width":null,"units":"ft","type":"cube"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","thunder"]],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.WTbOQBsarsL1LuXJ"}},"img":"icons/magic/lightning/bolt-forked-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486131,"modifiedTime":1661603486131,"lastModifiedBy":"dnd5ebuilder0000"}},{"name":"Recluse","type":"background","system":{"description":{"value":"Skill Proficiencies: Medicine, ReligionTool Proficiencies: Herbalism kitLanguages: One of your choiceEquipment: A scroll case, a blanket, common clothes, an herbalism kit, and 5 gp","chat":"","unidentified":""},"source":"","advancement":[]},"img":"icons/magic/light/explosion-beam-impact-silhouette.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040344468,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"lMobFB5hSFEGtkrq"},{"_id":"mwtiHpkH8Gglxr3u","name":"Druid","type":"class","img":"icons/creatures/mammals/elk-moose-marked-green.webp","system":{"description":{"value":"As a druid, you gain the following class features.Hit PointsHit Dice: 1d8 per druid levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per druid level after 1stProficienciesArmor: Light armor, medium armor, shields (druids will not wear armor or use shields made of metal)Weapons: Clubs, daggers, darts, javelins, maces, quarterstaffs, scimitars, sickles, slings, spearsTools: Herbalism kitSaving Throws: Intelligence, WisdomSkills: Choose two from Arcana, Animal Handling, Insight, Medicine, Nature, Perception, Religion, and SurvivalEquipmentYou start with the following equipment, in addition to the equipment granted by your background:(a) a wooden shield or (b) any simple weapon(a) a scimitar or (b) any simple melee weaponLeather armor, an explorer's pack, and a druidic focusDruid AdvancementLevelProficiency BonusFeatures1st+2@Compendium[dnd5e.classfeatures.LzJ5ayHt0OlSVGxi]{Druidic}, @Compendium[dnd5e.classfeatures.i6tPm3FNK13Ftc9v]{Spellcasting}2nd+2@Compendium[dnd5e.classfeatures.swK0r5TOIxredxWS]{Wild Shape (Max CR ¼)}, @Compendium[dnd5e.classfeatures.u6Du2P9s81SWuGbi]{Druid Circle}3rd+22nd Level Spell Slot4th+2@Compendium[dnd5e.classfeatures.swK0r5TOIxredxWS]{Wild Shape (Max CR ½)}, @Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}5th+33rd Level Spell Slot6th+3Druid Circle feature7th+34th Level Spell Slot8th+3@Compendium[dnd5e.classfeatures.swK0r5TOIxredxWS]{Wild Shape (Max CR 1)}, @Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}9th+45th Level Spell Slot10th+4Druid Circle feature11th+46th Level Spell Slot12th+4@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}13th+57th Level Spell Slot14th+5Druid Circle feature15th+58th Level Spell Slot16th+5@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}17th+69th Level Spell Slot18th+6@Compendium[dnd5e.classfeatures.cVDEQo0ow1WJT7Wl]{Timeless Body}, @Compendium[dnd5e.classfeatures.xvgPu1O57DgXCM86]{Beast Spells}19th+6@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}20th+6@Compendium[dnd5e.classfeatures.ip4bvmGoz3qkoqes]{Archdruid}Sacred Plants and WoodA druid holds certain plants to be sacred, particularly alder, ash, birch, elder, hazel, holly, juniper, mistletoe, oak, rowan, willow, and yew. Druids often use such plants as part of a spellcasting focus, incorporating lengths of oak or yew or sprigs of mistletoe.Similarly, a druid uses such woods to make other objects, such as weapons and shields. Yew is associated with death and rebirth, so weapon handles for scimitars or sickles might be fashioned from it. Ash is associated with life and oak with strength. These woods make excellent hafts or whole weapons, such as clubs or quarterstaffs, as well as shields. Alder is associated with air, and it might be used for thrown weapons, such as darts or javelins.Druids from regions that lack the plants described here have chosen other plants to take on similar uses. For instance, a druid of a desert region might value the yucca tree and cactus plants.Druids and the GodsSome druids venerate the forces of nature themselves, but most druids are devoted to one of the many nature deities worshiped in the multiverse (the lists of gods in @UUID[Compendium.dnd5e.rules.udVPA9JW5wy5t3G5]{Appendix B} include many such deities). The worship of these deities is often considered a more ancient tradition than the faiths of clerics and urbanized peoples.Druid Circles@Compendium[dnd5e.subclasses.4Ae2SPZRXEVbVs0M]{Circle of the Land}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"druid","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"glnpiCnJqBlpeVjK"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.LzJ5ayHt0OlSVGxi","Compendium.dnd5e.classfeatures.i6tPm3FNK13Ftc9v"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"njUMNaCbBHpZswoL":"Compendium.dnd5e.classfeatures.LzJ5ayHt0OlSVGxi","HK6uFl7S3Mahvw9o":"Compendium.dnd5e.classfeatures.i6tPm3FNK13Ftc9v"}},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"0b5DhiMraHtwZOfm"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.swK0r5TOIxredxWS","Compendium.dnd5e.classfeatures.u6Du2P9s81SWuGbi"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"OgcwihJstGxObCq8"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.cVDEQo0ow1WJT7Wl","Compendium.dnd5e.classfeatures.xvgPu1O57DgXCM86"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"tYyQIKryvBsrDttD"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ip4bvmGoz3qkoqes"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"gorwFugiM0SbVBp3"},{"type":"ScaleValue","configuration":{"identifier":"wild-shape","type":"cr","distance":{"units":""},"scale":{"2":{"value":0.25},"4":{"value":0.5},"8":{"value":1}}},"value":{},"title":"Wild Shape CR","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"1QhHZI6jSvld160r"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":2},"4":{"value":3},"10":{"value":4}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"YNXUUmku0b96ssgn"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"IpPkoQHqKQLHlUU3"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"rJFXsnndXMZWrHvk"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"qNTlxRMRAOdeUFJs"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"9NliZ0Lrp32zOjQc"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["int","wis"],"skills":{"number":2,"choices":["arc","ani","ins","med","nat","prc","rel","sur"],"value":[]},"spellcasting":{"progression":"full","ability":"wis"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.ygVYgPbJkaH0tH1N"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234284,"modifiedTime":1691519042381,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"njUMNaCbBHpZswoL","name":"Druidic","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You know Druidic, the secret language of druids. You can speak the language and use it to leave hidden messages. You and others who know this language automatically spot such a message. Others spot the message's presence with a successful DC 15 Wisdom (Perception) check but can't decipher it without magic.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Druid 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.LzJ5ayHt0OlSVGxi","advancementOrigin":"mwtiHpkH8Gglxr3u.0b5DhiMraHtwZOfm"}},"img":"icons/sundries/documents/document-torn-diagram-tan.webp","effects":[{"_id":"iIQXR8VezkvbkFoS","changes":[{"key":"system.traits.languages.value","mode":2,"value":"druidic","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/sundries/documents/document-torn-diagram-tan.webp","label":"Druidic","origin":"Item.LzJ5ayHt0OlSVGxi","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234364,"modifiedTime":1691519042382,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"HK6uFl7S3Mahvw9o","name":"Spellcasting (Druid)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Drawing on the divine essence of nature itself, you can cast spells to shape that essence to your will.\nCantrips\nAt 1st level, you know two cantrips of your choice from the druid spell list. You learn additional druid cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Druid table.\nPreparing and Casting Spells\nThe Druid table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these druid spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nYou prepare the list of druid spells that are available for you to cast, choosing from the druid spell list. When you do so, choose a number of druid spells equal to your Wisdom modifier + your druid level (minimum of one spell). The spells must be of a level for which you have spell slots.\nFor example, if you are a 3rd-level druid, you have four 1st-level and two 2nd-level spell slots. With a Wisdom of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\nYou can also change your list of prepared spells when you finish a long rest. Preparing a new list of druid spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\nSpellcasting Ability\nWisdom is your spellcasting ability for your druid spells, since your magic draws upon your devotion and attunement to nature. You use your Wisdom whenever a spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a druid spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Wisdom modifier\nSpell attack modifier = your proficiency bonus + your Wisdom modifier\nRitual Casting\nYou can cast a druid spell as a ritual if that spell has the ritual tag and you have the spell prepared.\nSpellcasting Focus\nYou can use a druidic focus (see @UUID[Compendium.dnd5e.rules.BYFd9hiJGo9L5aOM.JournalEntryPage.AjavRU4yPfI9hfaI]{Adventuring Gear}) as a spellcasting focus for your druid spells.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Druid 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.i6tPm3FNK13Ftc9v","advancementOrigin":"mwtiHpkH8Gglxr3u.0b5DhiMraHtwZOfm"}},"img":"icons/magic/light/orb-beams-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234409,"modifiedTime":1691519042388,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"iIQXR8VezkvbkFoS","changes":[{"key":"system.traits.languages.value","mode":2,"value":"druidic","priority":null}],"disabled":false,"duration":{"startTime":0,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/sundries/documents/document-torn-diagram-tan.webp","label":"Druidic","origin":"Compendium.dnd5e.heroes.ZGDys30OS76uYaIO.Item.njUMNaCbBHpZswoL","transfer":false,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"ZGDys30OS76uYaIO","_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787232171,"modifiedTime":1691519042425,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Riswynn (Dwarf Rogue)","type":"character","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":11,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""},"min":0},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":25,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"int","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"Once a well-respected bureaucrat at the dwarven halls, Riswynn dabbled in intruigue, picked up a few tricks, and ran intro trouble with some nobles. She looks to make a name for herself and regain her social status.\n","public":""},"alignment":"True neutral","race":"Hill Dwarf","background":"","originalClass":"POlGoMp1xwT02K3S","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["poison"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","dwarvish","elvish","halfling","cant"],"custom":""},"weaponProf":{"value":["sim","battleaxe","warhammer","handcrossbow","longsword","rapier","shortsword"],"custom":""},"armorProf":{"value":["lgt"],"custom":""},"toolProf":{"value":["thief"],"custom":"Smith Tools"}},"currency":{"pp":0,"gp":5,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Riswynn","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"zyNiKfTqZLSjX1Kc","name":"Fine Clothes","type":"equipment","system":{"description":{"value":"Set of clothes designed specifically to be expensive and show it.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3OXueEpvDDCVfGFA"}},"img":"icons/equipment/back/cloak-heavy-fur-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6xgRF9EHlkdx74gp","name":"Rapier","type":"weapon","system":{"description":{"value":"A thin tensile metal blade, light in weight but long in reach designed for quick darting attacks to target weak points in enemy defenses with lightning swiftness.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"ada":false,"mgc":false,"sil":false},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Tobce1hexTnDk4sV"}},"img":"icons/weapons/swords/sword-guard-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"13NzavzIfxLtAbjF","name":"Arrows","type":"consumable","system":{"description":{"value":"Standard ammunition used for bows of all varieties. These mundane arrows are made of smooth wooden shafts with goose feather fletching and hammer metal bodkins.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":20,"weight":0.05,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"sort":0,"flags":{},"img":"icons/containers/ammunition/arrows-quiver-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647567,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"tJDTxUqcvlxbZCdo","name":"Shortbow","type":"weapon","system":{"description":{"value":"This two handed bow is somewhat smaller than the traditional longbow variant, making it well suited for rapid attacks while on the move or mounted from horseback.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"ammo","target":"13NzavzIfxLtAbjF","amount":1},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.GJv6WkD7D2J6rP6M"}},"img":"icons/weapons/bows/shortbow-recurve.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NkdFTTiYWTcQykxt","name":"Dagger","type":"weapon","system":{"description":{"value":"A short metal blade mounted to a small hilt and crossguard. The dagger makes an effective side armament for hardened warriors or a hidden blade for assassins and thieves.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.0E565kQUBmndJ1a2"}},"img":"icons/weapons/daggers/dagger-jeweled-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0K1HkL7YtDkM04gh","name":"Leather Armor","type":"equipment","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"img":"icons/equipment/chest/breastplate-quilted-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qg7r4WqCCRRBoI7k","name":"Thieves' Tools","type":"tool","system":{"description":{"value":"This set of tools includes a small file, a set of lock picks, a small mirror mounted on a metal handle, a set of narrow-bladed scissors, and a pair of pliers. Proficiency with these tools lets you add your proficiency bonus to any ability checks you make to disarm traps or open locks.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"","ability":"dex","chatFlavor":"","proficient":1,"bonus":""},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.woWZ1sO5IUVGzo58"}},"img":"icons/tools/hand/lockpicks-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EKdk3lhxqgPtqHwu","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Mf7KLdBXylgqsICW","name":"Pouch","type":"backpack","system":{"description":{"value":"A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":6,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.9bWTRRDym06PzSAf"}},"img":"icons/containers/bags/coinpouch-simple-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640763,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"PHLBlkV7IoS51P5v","name":"Quiver","type":"backpack","system":{"description":{"value":"A quiver can hold up to 20 arrows.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"capacity":{"type":"items","value":20,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.4MtQKPn9qMWCFjDA"}},"img":"icons/containers/ammunition/arrows-quiver-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CHrFwjEiZTbIgkvr","name":"Hammer","type":"loot","system":{"description":{"value":"A tool with heavy metal head mounted ar the right angles at the end of a handle, used for job such as breaking things and driving in nails. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.14pNRT4sZy9rgvhb"}},"img":"icons/tools/smithing/hammer-sledge-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"h4ihDUI7MQVznkxm","name":"Hempen Rope (50 ft.)","type":"consumable","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QXmaarJ4X8P0C1HV"}},"img":"icons/sundries/survival/rope-wrapped-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rpmyWiGevjk354b5","name":"Piton","type":"consumable","system":{"description":{"value":"A metal spike that is drive into a seam in a climbing surface with a climbing hammer. It can also be used like iron spikes to block doors in a pinch.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":0.25,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.TqyvIglHDj5kfohR"}},"img":"icons/sundries/survival/stake-rough-simple-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647573,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"kHtYigIcUQ4IL9PR","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640777,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"SbWMxygkEp4AlSMl","name":"Tinderbox","type":"loot","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DNOSEAvF4Oh1DlWy"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640783,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"8XJJXl8CvQDsNqQo","name":"Torch","type":"consumable","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":40,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.BnOCLuNWhVvzHLjl"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647579,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"sKonGCDJxc4cwpuS","name":"Waterskin","type":"consumable","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Uv0ilmzbWvqmlCVH"}},"img":"icons/sundries/survival/wetskin-leather-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640803,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"w1ICCmvrQzvkNA5T","name":"Mess Kit","type":"loot","system":{"description":{"value":"This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.V13fjV5oSmvbRdgP"}},"img":"icons/tools/cooking/fork-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640809,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"OPIqh46EdTrNRiZp","name":"Bedroll","type":"loot","system":{"description":{"value":"Roll of cloth used by traveller to sleep in.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DVXmyetZuvxbzAwW"}},"img":"icons/sundries/flags/banner-worn-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kRWtiPib9MRx9JmN","name":"Dagger (offhand)","type":"weapon","system":{"description":{"value":"A short metal blade mounted to a small hilt and crossguard. The dagger makes an effective side armament for hardened warriors or a hidden blade for assassins and thieves.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":true},"sort":0,"flags":{},"img":"icons/weapons/daggers/dagger-jeweled-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OpfHMuWyqcO7LmSt","name":"Crowbar","type":"loot","system":{"description":{"value":"Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.V5UAjT3ed6sDNtgm"}},"img":"icons/tools/hand/pickaxe-steel-white.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VlHHit2a50YCKKTm","name":"Dwarven Resilience","type":"feat","system":{"description":{"value":"You have advantage on saving throws against poison, and you have resistance against poison damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Dwarf","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.ufysTkqet2Ctmtyi"}},"img":"icons/creatures/abilities/stinger-poison-green.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0Db7KX5wxDYwiem3","name":"Stonecunning","type":"feat","system":{"description":{"value":"Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Dwarf","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.mQPZDRbUhgYTbXKa"}},"img":"icons/commodities/tech/cog-bronze.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"loauVqu6iAKv70b7","name":"Hill Dwarf","type":"feat","system":{"description":{"value":"\n\n\nAs a hill dwarf, you have keen senses, deep intuition, and remarkable resilience. Ability Score Increase. Your Wisdom score increases by 1.Dwarven Toughness. Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Dwarf","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.UQiRQUTBcsz8gZU1"}},"img":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HXOtd9EqzXbB3e2c","name":"Dwarf","type":"feat","system":{"description":{"value":"\nYour dwarf character has an assortment of inborn abilities, part and parcel of dwarven nature.Ability Score Increase. Your Constitution score increases by 2.Age. Dwarves mature at the same rate as humans, but they're considered young until they reach the age of 50. On average, they live about 350 years.Alignment. Most dwarves are lawful, believing firmly in the benefits of a well-ordered society. They tend toward good as well, with a strong sense of fair play and a belief that everyone deserves to share in the benefits of a just order.Size. Dwarves stand between 4 and 5 feet tall and average about 150 pounds. Your size is Medium.Speed. Your base walking speed is 25 feet. Your speed is not reduced by wearing heavy armor.Darkvision. Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Dwarven Resilience. @Compendium[dnd5e.races.ufysTkqet2Ctmtyi]{Dwarven Resilience} You have advantage on saving throws against poison, and you have resistance against poison damage.Dwarven Combat Training. You have proficiency with the battleaxe, handaxe, light hammer, and warhammer.Tool Proficiency. You gain proficiency with the artisan's tools of your choice: smith's tools, brewer's supplies, or mason's tools.\n\n\n\nStonecunning. @Compendium[dnd5e.races.mQPZDRbUhgYTbXKa]{Stonecunning} Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.\n\n\n\n\nLanguages. You can speak, read, and write Common and Dwarvish. Dwarvish is full of hard consonants and guttural sounds, and those characteristics spill over into whatever other language a dwarf might speak.\n\n\n\n\n\n \n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.6N31WSez2szqQcIQ"}},"img":"icons/magic/defensive/shield-barrier-glowing-triangle-teal-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"name":"Bureaucrat","type":"background","system":{"description":{"value":"Skill Proficiencies: Insight, PersuasionLanguages: Two of your choiceEquipment: A set of fine clothes and a pouch containing 5 gp","chat":"","unidentified":""},"source":"","advancement":[]},"img":"icons/skills/social/theft-pickpocket-bribery-brown.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040521187,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"kLWeji1tfubIJvfT"},{"_id":"POlGoMp1xwT02K3S","name":"Rogue","type":"class","img":"icons/skills/melee/strike-sword-stabbed-brown.webp","system":{"description":{"value":"As a rogue, you have the following class features.\nHit Points\nHit Dice: 1d8 per rogue levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per rogue level after 1st\nProficiencies\nArmor: Light armorWeapons: Simple weapons, hand crossbows, longswords, rapiers, shortswordsTools: Thieves' toolsSaving Throws: Dexterity, IntelligenceSkills: Choose four from Acrobatics, Athletics, Deception, Insight, Intimidation, Investigation, Perception, Performance, Persuasion, Sleight of Hand, and Stealth\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a rapier or (b) a shortsword\n(a) a shortbow and quiver of 20 arrows or (b) a shortsword\n(a) a burglar's pack, (b) a dungeoneer's pack, or (c) an explorer's pack\n(a) Leather armor, two daggers, and thieves' tools\n\nRogue Advancement\n\n\n\nLevel\nProficiency Bonus\nSneak Attack\nFeatures\n\n\n\n\n1st\n+2\n1d6\n@Compendium[dnd5e.classfeatures.3sYPftQKnbbVnHrh]{Expertise}, @Compendium[dnd5e.classfeatures.DPN2Gfk8yi1Z5wp7]{Sneak Attack}, @Compendium[dnd5e.classfeatures.ohwfuwnvuoBWlSQr]{Thieves' Cant}\n\n\n2nd\n+2\n1d6\n@Compendium[dnd5e.classfeatures.01pcLg6PRu5zGrsb]{Cunning Action}\n\n\n3rd\n+2\n2d6\n@Compendium[dnd5e.classfeatures.80USV8ZFPIahpLd0]{Roguish Archetype}\n\n\n4th\n+2\n2d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n5th\n+3\n3d6\n@Compendium[dnd5e.classfeatures.Mm64SKAHJWYecgXS]{Uncanny Dodge}\n\n\n6th\n+3\n3d6\n@Compendium[dnd5e.classfeatures.3sYPftQKnbbVnHrh]{Expertise improvement}\n\n\n7th\n+3\n4d6\n@Compendium[dnd5e.classfeatures.a4P4DNMmH8CqSNkC]{Evasion}\n\n\n8th\n+3\n4d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n9th\n+4\n5d6\nRoguish Archetype feature\n\n\n10th\n+4\n5d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n11th\n+4\n6d6\n@Compendium[dnd5e.classfeatures.YN9xm6MCvse4Y60u]{Reliable Talent}\n\n\n12th\n+4\n6d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n13th\n+5\n7d6\nRoguish Archetype feature\n\n\n14th\n+5\n7d6\n@Compendium[dnd5e.classfeatures.fjsBk7zxoAbLf8ZI]{Blindsense}\n\n\n15th\n+5\n8d6\n@Compendium[dnd5e.classfeatures.V4pwFxlwHtNeB4w9]{Slippery Mind}\n\n\n16th\n+5\n8d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n17th\n+6\n9d6\nRoguish Archetype feature\n\n\n18th\n+6\n9d6\n@Compendium[dnd5e.classfeatures.L7nJSRosos8sHJH9]{Elusive}\n\n\n19th\n+6\n10d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n20th\n+6\n10d6\n@Compendium[dnd5e.classfeatures.rQhWDaMHMn7iU4f2]{Stroke of Luck}\n\n\n\nRoguish Archetypes\nRogues have many features in common, including their emphasis on perfecting their skills, their precise and deadly approach to combat, and their increasingly quick reflexes. But different rogues steer those talents in varying directions, embodied by the rogue archetypes. Your choice of archetype is a reflection of your focus—not necessarily an indication of your chosen profession, but a description of your preferred techniques.\n@Compendium[dnd5e.subclasses.k8iuefRorWOjb9gR]{Thief}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"rogue","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"WMbkpELkLBvDaEsL"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.3sYPftQKnbbVnHrh","Compendium.dnd5e.classfeatures.DPN2Gfk8yi1Z5wp7","Compendium.dnd5e.classfeatures.ohwfuwnvuoBWlSQr"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"GcRC4ZItJPqsIrsm":"Compendium.dnd5e.classfeatures.3sYPftQKnbbVnHrh","vRhjcnnlifZYB4dy":"Compendium.dnd5e.classfeatures.DPN2Gfk8yi1Z5wp7","eHh5dHiq9wss2Vq0":"Compendium.dnd5e.classfeatures.ohwfuwnvuoBWlSQr"}},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"13XHsx4Z3vQ2XYkJ"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.01pcLg6PRu5zGrsb"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"5crdJzGJRQIVhbyr"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.80USV8ZFPIahpLd0"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"9F1ZUcRqNsBCOFNX"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Mm64SKAHJWYecgXS"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"PvQXh3OhvuLhjVoo"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.a4P4DNMmH8CqSNkC"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":7,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"X8G2PrPxOrfWQevi"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.YN9xm6MCvse4Y60u"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":11,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"MqV3BlQkAZycZ4Ue"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.fjsBk7zxoAbLf8ZI"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"sI4nacIwT4B8Y7mb"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.V4pwFxlwHtNeB4w9"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":15,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"mugszpD8eVZ2jybU"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.L7nJSRosos8sHJH9"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"EOVFTUpweDErdpSz"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.rQhWDaMHMn7iU4f2"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"GVuwdOHDEDfQX9cl"},{"type":"ScaleValue","configuration":{"identifier":"sneak-attack","type":"dice","distance":{"units":""},"scale":{"1":{"number":1,"faces":6},"3":{"number":2,"faces":6},"5":{"number":3,"faces":6},"7":{"number":4,"faces":6},"9":{"number":5,"faces":6},"11":{"number":6,"faces":6},"13":{"number":7,"faces":6},"15":{"number":8,"faces":6},"17":{"number":9,"faces":6},"19":{"number":10,"faces":6}}},"value":{},"title":"Sneak Attack","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"81nHtANt6Ffg9M4V"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"smghqQkObY4OOg30"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"WFAAUfKJA9QR46Bw"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"ahuQ3gMqz6sCza0m"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"iVq9vmwTow7KielM"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""},{"_id":"WhAioX7KT2ZULDHU","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":10,"title":""}],"saves":["dex","int"],"skills":{"number":4,"choices":["acr","ath","dec","ins","itm","inv","per","prf","prc","slt","ste"],"value":[]},"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.xEb8jmA5HlNs7xTF"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234284,"modifiedTime":1691519191232,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"GcRC4ZItJPqsIrsm","name":"Expertise (Rogue)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 1st level, choose two of your skill proficiencies, or one of your skill proficiencies and your proficiency with thieves' tools. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies.At 6th level, you can choose two more of your proficiencies (in skills or with thieves' tools) to gain this benefit.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.3sYPftQKnbbVnHrh","advancementOrigin":"POlGoMp1xwT02K3S.13XHsx4Z3vQ2XYkJ"}},"img":"icons/skills/targeting/target-glowing-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234328,"modifiedTime":1691519191233,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"vRhjcnnlifZYB4dy","name":"Sneak Attack","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 1st level, you know how to strike subtly and exploit a foe's distraction. Once per turn, you can deal an extra 1d6 damage to one creature you hit with an attack if you have advantage on the attack roll. The attack must use a finesse or a ranged weapon.You don't need advantage on the attack roll if another enemy of the target is within 5 feet of it, that enemy isn't incapacitated, and you don't have disadvantage on the attack roll.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@scale.rogue.sneak-attack",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.DPN2Gfk8yi1Z5wp7","advancementOrigin":"POlGoMp1xwT02K3S.13XHsx4Z3vQ2XYkJ"}},"img":"icons/skills/melee/strike-dagger-arcane-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234348,"modifiedTime":1691519191234,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"eHh5dHiq9wss2Vq0","name":"Thieves' Cant","ownership":{"default":0},"type":"feat","system":{"description":{"value":"During your rogue training you learned thieves' cant, a secret mix of dialect, jargon, and code that allows you to hide messages in seemingly normal conversation. Only another creature that knows thieves' cant understands such messages. It takes four times longer to convey such a message than it does to speak the same idea plainly.In addition, you understand a set of secret signs and symbols used to convey short, simple messages, such as whether an area is dangerous or the territory of a thieves' guild, whether loot is nearby, or whether the people in an area are easy marks or will provide a safe house for thieves on the run.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.ohwfuwnvuoBWlSQr","advancementOrigin":"POlGoMp1xwT02K3S.13XHsx4Z3vQ2XYkJ"}},"img":"icons/sundries/documents/document-torn-diagram-tan.webp","effects":[{"_id":"VN7GnGzVwmBM7YCU","changes":[{"key":"system.traits.languages.value","mode":2,"value":"cant","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/sundries/documents/document-torn-diagram-tan.webp","label":"Thieves' Cant","origin":"Item.ohwfuwnvuoBWlSQr","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234423,"modifiedTime":1691519191235,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"VN7GnGzVwmBM7YCU","changes":[{"key":"system.traits.languages.value","mode":2,"value":"cant","priority":null}],"disabled":false,"duration":{"startTime":0,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/sundries/documents/document-torn-diagram-tan.webp","label":"Thieves' Cant","origin":"Compendium.dnd5e.heroes.bzlxBO5km3zCQA8G.Item.eHh5dHiq9wss2Vq0","transfer":false,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"bzlxBO5km3zCQA8G","_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787232177,"modifiedTime":1691519191272,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Quillathe (Elf Ranger)","type":"character","img":"","system":{"abilities":{"str":{"value":8,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":12,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""},"min":0},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"wis","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"Quillathe cleanses monsters from her woods as a hobby, but now a new force menaces her land and she must band with adventurers to defeat it.\n","public":""},"alignment":"Chaotic Neutral","race":"High Elf","background":"","originalClass":"Apx6i4A5a7JKqaGi","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":"Magical Sleep; Advantage on saving throws against being charmed"},"languages":{"value":["common","elvish","gnomish"],"custom":""},"weaponProf":{"value":["sim","mar"],"custom":""},"armorProf":{"value":["lgt","med","shl"],"custom":""},"toolProf":{"value":["navg"],"custom":""}},"currency":{"pp":0,"gp":5,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Quillathe","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"8bLvluzgMJZEeJHi","name":"Tinderbox","type":"loot","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DNOSEAvF4Oh1DlWy"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640816,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"gO2Dz4cALMnDMHQi","name":"Hempen Rope (50 ft.)","type":"consumable","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QXmaarJ4X8P0C1HV"}},"img":"icons/sundries/survival/rope-wrapped-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gewb6wFlCK7GB6bB","name":"Mess Kit","type":"loot","system":{"description":{"value":"This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.V13fjV5oSmvbRdgP"}},"img":"icons/tools/cooking/fork-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640821,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Cp2SKVYUXCVD1oHX","name":"Bedroll","type":"loot","system":{"description":{"value":"Roll of cloth used by traveller to sleep in.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DVXmyetZuvxbzAwW"}},"img":"icons/sundries/flags/banner-worn-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FWLXlxd0ukipZhm9","name":"Waterskin","type":"consumable","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Uv0ilmzbWvqmlCVH"}},"img":"icons/sundries/survival/wetskin-leather-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640826,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"GqfDVqVqyUh1Gquv","name":"Arrows","type":"consumable","system":{"description":{"value":"Standard ammunition used for bows of all varieties. These mundane arrows are made of smooth wooden shafts with goose feather fletching and hammer metal bodkins.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":20,"weight":0.05,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"sort":0,"flags":{},"img":"icons/containers/ammunition/arrows-quiver-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647589,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"2SADpLv8xKIB670L","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jcUcMlzyQ2U071dZ","name":"Quiver","type":"backpack","system":{"description":{"value":"A quiver can hold up to 20 arrows.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"items","value":20,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.4MtQKPn9qMWCFjDA"}},"img":"icons/containers/ammunition/arrows-quiver-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qKjB82iZnzgQTRHr","name":"Leather Armor","type":"equipment","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"img":"icons/equipment/chest/breastplate-quilted-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lbeVmFOH3ZzSRn7V","name":"Longbow","type":"weapon","system":{"description":{"value":"A thick shaft of laminated wood is bowed by a taut string capable of launching deadly arrows at long distances.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"ammo","target":"GqfDVqVqyUh1Gquv","amount":1},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3cymOVja8jXbzrdT"}},"img":"icons/weapons/bows/longbow-leather-green.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"I8rPY9dlB3bLYldj","name":"Shortsword","type":"weapon","system":{"description":{"value":"A medium sized blade with a firm crossguard and a leather-wrapped handle. A versatile weapon which makes up in versatility what it lacks in reach.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.osLzOwQdPtrK3rQH"}},"img":"icons/weapons/swords/sword-guard-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"b3UyJrq6b1ZBfEoC","name":"Shortsword (offhand)","type":"weapon","system":{"description":{"value":"A medium sized blade with a firm crossguard and a leather-wrapped handle. A versatile weapon which makes up in versatility what it lacks in reach.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"sort":0,"flags":{},"img":"icons/weapons/swords/sword-guard-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BsxUzxVoE4A4Yajo","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640842,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WhXl1O0JMkPKi6hz","name":"Torch","type":"consumable","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":40,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.BnOCLuNWhVvzHLjl"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647596,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"9RMRzjKqbGDsSXtO","name":"Fey Ancestry","type":"feat","system":{"description":{"value":"You have advantage on saving throws against being charmed, and magic can't put you to sleep.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Elf, Half-Elf","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LvSBjRKoCAKaAnQy"}},"img":"icons/creatures/mammals/elk-moose-marked-green.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZrMuDdfHM9ZkKc24","name":"Elf","type":"feat","system":{"description":{"value":"\n\n\nYour elf character has a variety of natural abilities, the result of thousands of years of elven refinement. Ability Score Increase. Your Dexterity score increases by 2.Age. Although elves reach physical maturity at about the same age as humans, the elven understanding of adulthood goes beyond physical growth to encompass worldly experience. An elf typically claims adulthood and an adult name around the age of 100 and can live to be 750 years old.Alignment. Elves love freedom, variety, and self-expression, so they lean strongly toward the gentler aspects of chaos. They value and protect others' freedom as well as their own, and they are more often good than not.Size. Elves range from under 5 to over 6 feet tall and have slender builds. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Accustomed to twilit forests and the night sky, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Keen Senses. You have proficiency in the Perception skill.Fey Ancestry. @Compendium[dnd5e.races.cnTbpPPeGW7vGjOV]{Fey Ancestry} You have advantage on saving throws against being charmed, and magic can't put you to sleep.Trance. Elves don't need to sleep. Instead, they meditate deeply, remaining semiconscious, for 4 hours a day. (The Common word for such meditation is \"trance.\") While meditating, you can dream after a fashion; such dreams are actually mental exercises that have become reflexive through years of practice. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.\n\n\n\nLanguages. You can speak, read, and write Common and Elvish. Elvish is fluid, with subtle intonations and intricate grammar. Elven literature is rich and varied, and their songs and poems are famous among other races. Many bards learn their language so they can add Elvish ballads to their repertoires.\n\n\n\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.rAGnsfgw3ZqAme1v"}},"img":"icons/magic/nature/leaf-glow-maple-teal.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BswrpoIHKoj3T2o7","name":"High Elf","type":"feat","system":{"description":{"value":"\n\n\nAs a high elf, you have a keen mind and a mastery of at least the basics of magic. In many fantasy gaming worlds, there are two kinds of high elves. One type is haughty and reclusive, believing themselves to be superior to non-elves and even other elves. The other type is more common and more friendly, and often encountered among humans and other races. Ability Score Increase. Your Intelligence score increases by 1.Elf Weapon Training. You have proficiency with the longsword, shortsword, shortbow, and longbow.Cantrip. You know one cantrip of your choice from the wizard spell list. Intelligence is your spellcasting ability for it.Extra Language. You can speak, read, and write one extra language of your choice.\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Elf","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.A69KxdH1renVPrQV"}},"img":"icons/magic/nature/leaf-glow-maple-green.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"udsLtG0BugXHR2JQ","name":"Prestidigitation","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell is a minor magical trick that novice spellcasters use for practice. You create one of the following magical effects within range:\n\nYou create an instantaneous, harmless sensory effect, such as a shower of sparks, a puff of wind, faint musical notes, or an odd odor.\nYou instantaneously light or snuff out a candle, a torch, or a small campfire.\nYou instantaneously clean or soil an object no larger than 1 cubic foot.\nYou chill, warm, or flavor up to 1 cubic foot of nonliving material for 1 hour.\nYou make a color, a small mark, or a symbol appear on an object or a surface for 1 hour.\nYou create a nonmagical trinket or an illusory image that can fit in your hand and that lasts until the end of your next turn.\n\nIf you cast this spell multiple times, you can have up to three of its non-instantaneous effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.udsLtG0BugXHR2JQ"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486171,"modifiedTime":1661603486171,"lastModifiedBy":"dnd5ebuilder0000"}},{"name":"Monster Hunter","type":"background","system":{"description":{"value":"Skill Proficiencies: Acrobatics, Nature, InvestigationTool Proficiencies: Navigator's ToolsEquipment: An Explorer's Pack, and 5gp","chat":"","unidentified":""},"source":"","advancement":[]},"img":"icons/magic/light/explosion-beam-impact-silhouette.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040678183,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"I5EK9j7jV6mrXt7K"},{"_id":"Apx6i4A5a7JKqaGi","name":"Ranger","type":"class","img":"icons/weapons/bows/shortbow-recurve-yellow.webp","system":{"description":{"value":"As a ranger, you gain the following class features.\nHit Points\nHit Dice: 1d10 per ranger levelHit Points at 1st Level: 10 + your Constitution modifierHit Points at Higher Levels: 1d10 (or 6) + your Constitution modifier per ranger level after 1st\nProficiencies\nArmor: Light armor, medium armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, DexteritySkills: Choose three from Animal Handling, Athletics, Insight, Investigation, Nature, Perception, Stealth, and Survival\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) scale mail or (b) leather armor\n(a) two shortswords or (b) two simple melee weapons\n(a) a dungeoneer's pack or (b) an explorer's pack\nA longbow and a quiver of 20 arrows\n\nRanger Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.4Vpj9vCOB37GtXk6]{Favored Enemy}, @Compendium[dnd5e.classfeatures.8fbZt2Qh7ZttwIan]{Natural Explorer}\n\n\n2nd\n+2\n@Compendium[dnd5e.classfeatures.nJA3ISVmyj3uPRVM]{Fighting Style}, @Compendium[dnd5e.classfeatures.u6xV3Ki3TXRrD7zg]{Spellcasting}\n\n\n3rd\n+2\n@Compendium[dnd5e.classfeatures.1dJHU48yNqn3lcfx]{Ranger Archetype}, @Compendium[dnd5e.classfeatures.kaHcUGiwi8AtfZIm]{Primeval Awareness}\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n5th\n+3\n2nd Level Spell Slot, @Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}\n\n\n6th\n+3\n@Compendium[dnd5e.classfeatures.4Vpj9vCOB37GtXk6]{Favored Enemy +1}, @Compendium[dnd5e.classfeatures.8fbZt2Qh7ZttwIan]{Natural Explorer improvements}\n\n\n7th\n+3\nRanger Archetype feature\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}, @Compendium[dnd5e.classfeatures.C5fzaOBc6HxyOWRn]{Land's Stride}\n\n\n9th\n+4\n3rd Level Spell Slot\n\n\n10th\n+4\n@Compendium[dnd5e.classfeatures.8fbZt2Qh7ZttwIan]{Natural Explorer improvement}, @Compendium[dnd5e.classfeatures.r0unvWK0lPsDthDx]{Hide in Plain Sight}\n\n\n11th\n+4\nRanger Archetype feature\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n4th Level Spell Slot\n\n\n14th\n+5\n@Compendium[dnd5e.classfeatures.4Vpj9vCOB37GtXk6]{Favored Enemy +1}, @Compendium[dnd5e.classfeatures.DhU2dWCNnX78TstR]{Vanish}\n\n\n15th\n+5\nRanger Archetype feature\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n5th Level Spell Slot\n\n\n18th\n+6\n@Compendium[dnd5e.classfeatures.QBVmY56RMQuh6C8h]{Feral Senses}\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\n@Compendium[dnd5e.classfeatures.3CaP1vFHVR8LgHjx]{Foe Slayer}\n\n\n\nRanger Archetypes\nA classic expression of the ranger ideal is the Hunter.\n@Compendium[dnd5e.subclasses.uqd2q6WjVfcsaaGb]{Hunter}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"ranger","levels":1,"hitDice":"d10","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"SkYbfsObK8qAoAjy"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.4Vpj9vCOB37GtXk6","Compendium.dnd5e.classfeatures.8fbZt2Qh7ZttwIan"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"btJCgsHp9d6BKOdE":"Compendium.dnd5e.classfeatures.4Vpj9vCOB37GtXk6","UAmLNoN2LQpPR7ok":"Compendium.dnd5e.classfeatures.8fbZt2Qh7ZttwIan"}},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"M6VVuuAZuUXtx626"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.nJA3ISVmyj3uPRVM","Compendium.dnd5e.classfeatures.u6xV3Ki3TXRrD7zg"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"PQHnGY7M3A3HSAEN"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.1dJHU48yNqn3lcfx","Compendium.dnd5e.classfeatures.kaHcUGiwi8AtfZIm"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"E3Fu31GhXZXLCKHa"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"DDK9RajTrB0Lw94p"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.C5fzaOBc6HxyOWRn"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":8,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"H9oKoc0pdFEUSZFR"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.r0unvWK0lPsDthDx"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"XsbIXKY5i8zcuXC5"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.DhU2dWCNnX78TstR"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"EFRAOwx7zVkuNqbp"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.QBVmY56RMQuh6C8h"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"8s9JkKlFgFVnhXSp"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.3CaP1vFHVR8LgHjx"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"rbJWoILhV02P07jx"},{"type":"ItemChoice","configuration":{"hint":"Choose one of the following options. You can’t take a Fighting Style option more than once, even if you later get to choose again.","choices":{"2":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.8YwPFv3UAPjWVDNf","Compendium.dnd5e.classfeatures.zSlV0O2rQMdoq6pB","Compendium.dnd5e.classfeatures.hCop9uJrWhF1QPb4","Compendium.dnd5e.classfeatures.mHcSjcHJ8oZu3hkb"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"fightingStyle","level":""}},"value":{},"title":"Fighting Style","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"hpZ8GPheWy74OSxM"},{"type":"ScaleValue","configuration":{"identifier":"spells-known","type":"number","distance":{"units":""},"scale":{"2":{"value":2},"3":{"value":3},"5":{"value":4},"7":{"value":5},"9":{"value":6},"11":{"value":7},"13":{"value":8},"15":{"value":9},"17":{"value":10},"19":{"value":11}}},"value":{},"title":"Spells Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"ICcYTdeBoPcYsSTb"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"EH25FmaNCnf9jK9c"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"ugN9LCjVqQJaHfoq"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"5OzCatRi7tbcXdeX"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"ddOTz5cri6De4Vqa"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["str","dex"],"skills":{"number":3,"choices":["ani","ath","ins","inv","nat","prc","ste","sur"],"value":[]},"spellcasting":{"progression":"half","ability":"wis"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.VkRQ7glQvTWWiOCS"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234280,"modifiedTime":1691519160853,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"btJCgsHp9d6BKOdE","name":"Favored Enemy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 1st level, you have significant experience studying, tracking, hunting, and even talking to a certain type of enemy.Choose a type of favored enemy: aberrations, beasts, celestials, constructs, dragons, elementals, fey, fiends, giants, monstrosities, oozes, plants, or undead. Alternatively, you can select two races of humanoid (such as gnolls and orcs) as favored enemies.You have advantage on Wisdom (Survival) checks to track your favored enemies, as well as on Intelligence checks to recall information about them.When you gain this feature, you also learn one language of your choice that is spoken by your favored enemies, if they speak one at all.You choose one additional favored enemy, as well as an associated language, at 6th and 14th level. As you gain levels, your choices should reflect the types of monsters you have encountered on your adventures.Foundry NoteIf you wish, manually edit this entry and make a note of your choices here:1st level6th level14th level","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.4Vpj9vCOB37GtXk6","advancementOrigin":"Apx6i4A5a7JKqaGi.M6VVuuAZuUXtx626"}},"img":"icons/creatures/abilities/dragon-breath-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234330,"modifiedTime":1691519160854,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"UAmLNoN2LQpPR7ok","name":"Natural Explorer","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You are particularly familiar with one type of natural environment and are adept at traveling and surviving in such regions. Choose one type of favored terrain: arctic, coast, desert, forest, grassland, mountain, or swamp. When you make an Intelligence or Wisdom check related to your favored terrain, your proficiency bonus is doubled if you are using a skill that you're proficient in.While traveling for an hour or more in your favored terrain, you gain the following benefits:Difficult terrain doesn't slow your group's travel.Your group can't become lost except by magical means.Even when you are engaged in another activity while traveling (such as foraging, navigating, or tracking), you remain alert to danger.If you are traveling alone, you can move stealthily at a normal pace.When you forage, you find twice as much food as you normally would.While tracking other creatures, you also learn their exact number, their sizes, and how long ago they passed through the area.You choose additional favored terrain types at 6th and 10th level.Foundry NoteIf it would be helpful, manually edit this entry and make a note of your choices here:1st level6th level10th level","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.8fbZt2Qh7ZttwIan","advancementOrigin":"Apx6i4A5a7JKqaGi.M6VVuuAZuUXtx626"}},"img":"icons/magic/nature/tree-roots-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234342,"modifiedTime":1691519160855,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"cYD0wRXLW4B17aoY","_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787232181,"modifiedTime":1691519160867,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Merric (Halfling Barbarian)","type":"character","img":"","system":{"abilities":{"str":{"value":14,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":8,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":0,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"unarmoredBarb","formula":""},"hp":{"value":14,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""},"min":0},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":25,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"int","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"Merric was once a vigilante, due to her innate sense of street justice. Though her small size may not seem like much in combat, she more than makes up for it with her violent outbursts of anger.\n","public":""},"alignment":"Chaotic Good","race":"Lightfoot Halfling","background":"","originalClass":"LX25nsSy2bvul2dp","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":"Advantage against being frightened"},"languages":{"value":["common","halfling"],"custom":""},"weaponProf":{"value":["sim","mar"],"custom":""},"armorProf":{"value":["lgt","med","shl"],"custom":""},"toolProf":{"value":[],"custom":""}},"currency":{"pp":0,"gp":2,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Merric","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":5,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"l87HKTUcZRp0PohR","name":"Javelin (melee)","type":"weapon","system":{"description":{"value":"This light and flexible spear is designed for throwing, but is versatile enough to be used in melee combat as well.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false},"proficient":true},"sort":0,"flags":{},"img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640852,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"bvHyCpcudXZ2bN7i","name":"Javelin (thrown)","type":"weapon","system":{"description":{"value":"This light and flexible spear is designed for throwing, but is versatile enough to be used in melee combat as well.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"ammo","target":"acFqo6BnGivxj5lE","amount":1},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false},"proficient":true},"sort":0,"flags":{},"img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640858,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"acFqo6BnGivxj5lE","name":"Javelin","type":"consumable","system":{"description":{"value":"This light and flexible spear is designed for throwing, but is versatile enough to be used in melee combat as well.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":5,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DWLMnODrnHn8IbAG"}},"img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640874,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"kccU0cngRTiFlfLu","name":"Greataxe","type":"weapon","system":{"description":{"value":"This enormous axe features two twin crescent blades mounted on either side of a tall spiked shaft. Designed to be wielded with two hands and cleave foes in twain.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":30,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.1Lxk6kmoRhG8qQ0u"}},"img":"icons/weapons/axes/axe-double.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9hY5bOuPFqGubCEw","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"86aiVMgc7XPJ1z8C","name":"Bedroll","type":"loot","system":{"description":{"value":"Roll of cloth used by traveller to sleep in.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DVXmyetZuvxbzAwW"}},"img":"icons/sundries/flags/banner-worn-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SHXoXJMWZywkU7aV","name":"Hempen Rope (50 ft.)","type":"consumable","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QXmaarJ4X8P0C1HV"}},"img":"icons/sundries/survival/rope-wrapped-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pIYHCVrKJLq0D2Jc","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640909,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"j8eiLPd8bbBYNyC1","name":"Mess Kit","type":"loot","system":{"description":{"value":"This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.V13fjV5oSmvbRdgP"}},"img":"icons/tools/cooking/fork-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640919,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"bHPIk24Cq3Z5FO86","name":"Tinderbox","type":"loot","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DNOSEAvF4Oh1DlWy"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640925,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"YyXrE0aRDWy4AtwB","name":"Torch","type":"consumable","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":40,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.BnOCLuNWhVvzHLjl"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647601,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"YvaZVAmilJd26Bfq","name":"Waterskin","type":"consumable","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Uv0ilmzbWvqmlCVH"}},"img":"icons/sundries/survival/wetskin-leather-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640938,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"3hJ5vLP7E424pEo4","name":"Handaxe","type":"weapon","system":{"description":{"value":"This one-handed axe is light and balanced for throwing while remaining useful in hand combat.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.eO7Fbv5WBk5zvGOc"}},"img":"icons/weapons/axes/axe-broad-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uWLF3Gr976X8vd7n","name":"Handaxe (offhand)","type":"weapon","system":{"description":{"value":"This one-handed axe is light and balanced for throwing while remaining useful in hand combat.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":true},"sort":0,"flags":{},"img":"icons/weapons/axes/axe-broad-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vb4ylO4gijpYubVK","name":"Brave","type":"feat","system":{"description":{"value":"You have advantage on saving throws against being frightened.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"You have advantage on saving throws against being frightened.","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Halfling","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.108q5fJnnBRoLKfe"}},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EEbqVNmOskEeXbAn","name":"Lucky","type":"feat","system":{"description":{"value":"When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.Foundry Note: Enable this feature in the Special Traits section of the character sheet.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Halfling","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.LOMdcNAGWh5xpfm4"}},"img":"icons/sundries/gaming/dice-runed-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mdahmK0Ttr26qhV7","name":"Naturally Stealthy","type":"feat","system":{"description":{"value":"You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Lightfoot","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.GWPjKFeIthBBeCFJ"}},"img":"icons/magic/perception/silhouette-stealth-shadow.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XUuKHz75EISEhNjB","name":"Halfling Nimbleness","type":"feat","system":{"description":{"value":"You can move through the space of any creature that is of a size larger than yours.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Halfling","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.PqxZgcJzp1VVgP8t"}},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DPsowmMZwV6S2dpt","name":"Halfling","type":"feat","system":{"description":{"value":"\n\n\nYour halfling character has a number of traits in common with all other halflings. Ability Score Increase. Your Dexterity score increases by 2.Age. A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.Alignment. Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.Size. Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.Speed. Your base walking speed is 25 feet.Lucky. @Compendium[dnd5e.races.LOMdcNAGWh5xpfm4]{Lucky} When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.Brave. @Compendium[dnd5e.races.7Yoo9hG0hfPSmBoC]{Brave} You have advantage on saving throws against being frightened.\n\n\n\n\n\n\nHalfling Nimbleness. @Compendium[dnd5e.races.PqxZgcJzp1VVgP8t]{Halfling Nimbleness} You can move through the space of any creature that is of a size larger than yours.Languages. You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.GH2dNne2bt1NjcJk"}},"img":"icons/magic/lightning/bolt-forked-large-teal.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1Vk6iVodEGrj12vH","name":"Lightfoot","type":"feat","system":{"description":{"value":"\n\n\nAs a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others. \n \nLightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life. Ability Score Increase. Your Charisma score increases by 1.Naturally Stealthy. @Compendium[dnd5e.races.GWPjKFeIthBBeCFJ]{Naturally Stealthy} You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Halfling","recharge":{"value":null,"charged":false}},"sort":0,"flags":{},"img":"icons/magic/lightning/bolt-forked-teal.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"name":"Vigilante","type":"background","system":{"description":{"value":"Skill Proficiencies: Insight, Investigation, PerceptionEquipment: Explorer's Pack, 2 gp","chat":"","unidentified":""},"source":"","advancement":[]},"img":"icons/magic/fire/flame-burning-fist-strike.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040848723,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"XIVdS0HZI5lOG5bx"},{"_id":"LX25nsSy2bvul2dp","name":"Barbarian","type":"class","img":"icons/skills/melee/hand-grip-sword-orange.webp","system":{"description":{"value":"As a barbarian, you gain the following class features.\nHit Points\nHit Dice: 1d12 per barbarian levelHit Points at 1st Level: 12 + your Constitution modifierHit Points at Higher Levels: 1d12 (or 7) + your Constitution modifier per barbarian level after 1st\nProficiencies\nArmor: Light armor, medium armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, ConstitutionSkills: Choose two from Animal Handling, Athletics, Intimidation, Nature, Perception, and Survival\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a greataxe or (b) any martial melee weapon\n(a) two handaxes or (b) any simple weapon\nAn explorer's pack and four javelins\n\nBarbarian Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\nRages\nRage Damage\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.VoR0SUrNX5EJVPIO]{Rage}, @Compendium[dnd5e.classfeatures.SZbsNbaxFFGwBpNK]{Unarmored Defense}\n2\n+2\n\n\n2nd\n+2\n@Compendium[dnd5e.classfeatures.SCVjqRdlZ9cvHVSR]{Reckless Attack}, @Compendium[dnd5e.classfeatures.vt31lWAULygEl7yk]{Danger Sense}\n2\n+2\n\n\n3rd\n+2\n@Compendium[dnd5e.classfeatures.TH1QAf6YNGSeBVjT]{Primal Path}\n3\n+2\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n3\n+2\n\n\n5th\n+3\n@Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}, @Compendium[dnd5e.classfeatures.Kl6zifJ5OmdHlOi2]{Fast Movement}\n3\n+2\n\n\n6th\n+3\nPath feature\n4\n+2\n\n\n7th\n+3\n@Compendium[dnd5e.classfeatures.NlXslw4yAqmKZWtN]{Feral Instinct}\n4\n+2\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n4\n+2\n\n\n9th\n+4\n@Compendium[dnd5e.classfeatures.L94gyvNpUhUe0rwh]{Brutal Critical (1 die)}\n4\n+3\n\n\n10th\n+4\nPath feature\n4\n+3\n\n\n11th\n+4\n@Compendium[dnd5e.classfeatures.FqfmbPgxiyrWzhYk]{Relentless Rage}\n4\n+3\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n5\n+3\n\n\n13th\n+5\n@Compendium[dnd5e.classfeatures.L94gyvNpUhUe0rwh]{Brutal Critical (2 dice)}\n5\n+3\n\n\n14th\n+5\nPath feature\n5\n+3\n\n\n15th\n+5\n@Compendium[dnd5e.classfeatures.l8tUhZ5Pecm9wz7I]{Persistent Rage}\n5\n+3\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n5\n+4\n\n\n17th\n+6\n@Compendium[dnd5e.classfeatures.L94gyvNpUhUe0rwh]{Brutal Critical (3 dice)}\n6\n+4\n\n\n18th\n+6\n@Compendium[dnd5e.classfeatures.Q1exex5ALteprrPo]{Indomitable Might}\n6\n+4\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n6\n+4\n\n\n20th\n+6\n@Compendium[dnd5e.classfeatures.jVU4AgqfrFaqgXns]{Primal Champion}\nUnlimited\n+4\n\n\n\nPrimal Paths\n@Compendium[dnd5e.subclasses.uGuDQX9Mz3oHNHkU]{Path of the Berserker}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"barbarian","levels":1,"hitDice":"d12","hitDiceUsed":0,"advancement":[{"_id":"5jn0ekktgccyvvpw","type":"HitPoints","configuration":{},"value":{"1":"max"},"title":""},{"_id":"amez6rlose3eoigo","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.VoR0SUrNX5EJVPIO","Compendium.dnd5e.classfeatures.SZbsNbaxFFGwBpNK"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"t9n1JlIt64USZcYm":"Compendium.dnd5e.classfeatures.VoR0SUrNX5EJVPIO","jq7HHcrrGB4hc9dp":"Compendium.dnd5e.classfeatures.SZbsNbaxFFGwBpNK"}},"level":1,"title":"Features"},{"_id":"udl318k61boq0rnn","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.SCVjqRdlZ9cvHVSR","Compendium.dnd5e.classfeatures.vt31lWAULygEl7yk"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features"},{"_id":"8y2ey740kizr4jb6","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.TH1QAf6YNGSeBVjT"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features"},{"_id":"uoexdq8totskritb","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo","Compendium.dnd5e.classfeatures.Kl6zifJ5OmdHlOi2"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features"},{"_id":"w6ceiqibcmzpcuy8","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.NlXslw4yAqmKZWtN"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":7,"title":"Features"},{"_id":"ty9si22p6pfwb3ow","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.L94gyvNpUhUe0rwh"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":9,"title":"Features"},{"_id":"802xi5l50le3ntk8","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.FqfmbPgxiyrWzhYk"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":11,"title":"Features"},{"_id":"g9ut0x1ugm31gbhk","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.l8tUhZ5Pecm9wz7I"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":15,"title":"Features"},{"_id":"so18afasiyobkpxy","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Q1exex5ALteprrPo"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features"},{"_id":"9hvtrqbg7d7zwg07","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.jVU4AgqfrFaqgXns"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features"},{"_id":"62svnflxsuad7oar","type":"ScaleValue","configuration":{"identifier":"rages","type":"number","scale":{"1":{"value":2},"3":{"value":3},"6":{"value":4},"12":{"value":5},"17":{"value":6},"20":{"value":999}},"distance":{"units":""}},"value":{},"title":"Rages"},{"_id":"t42incolsbuqn2ec","type":"ScaleValue","configuration":{"identifier":"rage-damage","type":"number","scale":{"1":{"value":2},"9":{"value":3},"16":{"value":4}},"distance":{"units":""}},"value":{},"title":"Rage Damage"},{"_id":"y0kr48pnq5doebeb","type":"ScaleValue","configuration":{"identifier":"brutal-critical","type":"number","scale":{"9":{"value":1},"13":{"value":2},"17":{"value":3}},"distance":{"units":""}},"value":{},"title":"Brutal Critical Dice"},{"_id":"dZHMy3530RPCjzvD","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":""},{"_id":"dBMWU3h8MBO4PcEm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":""},{"_id":"nROeTbeO8vrGjqAp","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":""},{"_id":"prZMkvcCNoLvF4yB","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":""},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["str","con"],"skills":{"number":2,"choices":["ani","ath","itm","nat","prc","sur"],"value":[]},"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.pvEzGSv71zBhaolc"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234281,"modifiedTime":1691519103295,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"t9n1JlIt64USZcYm","name":"Rage","type":"feat","img":"icons/creatures/abilities/mouth-teeth-human.webp","system":{"description":{"value":"In battle, you fight with primal ferocity. On your turn, you can enter a rage as a bonus action. While raging, you gain the following benefits if you aren't wearing heavy armor:\n\n\nYou have advantage on Strength checks and Strength saving throws.\n\n\nWhen you make a melee weapon attack using Strength, you gain a bonus to the damage roll that increases as you gain levels as a barbarian, as shown in the Rage Damage column of the Barbarian table.\n\n\nYou have resistance to bludgeoning, piercing, and slashing damage.\n\n\nIf you are able to cast spells, you can't cast them or concentrate on them while raging. \nYour rage lasts for 1 minute. It ends early if you are knocked unconscious or if your turn ends and you haven't attacked a hostile creature since your last turn or taken damage since then. You can also end your rage on your turn as a bonus action. \nOnce you have raged the number of times shown for your barbarian level in the Rages column of the Barbarian table, you must finish a long rest before you can rage again.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":2,"max":"@scale.barbarian.rages","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 1","recharge":{"value":null,"charged":false}},"effects":[{"_id":"eWhL8hUr0c2ujDUm","flags":{},"changes":[{"key":"system.bonuses.mwak.damage","mode":2,"value":"+@scale.barbarian.rage-damage","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"slashing","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"piercing","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"bludgeoning","priority":null}],"disabled":true,"duration":{"startTime":null,"rounds":10,"seconds":null,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/abilities/mouth-teeth-human.webp","label":"Rage","origin":"Item.bdfYHJstcltQC7SZ","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.VoR0SUrNX5EJVPIO","advancementOrigin":"LX25nsSy2bvul2dp.amez6rlose3eoigo"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234384,"modifiedTime":1691519103297,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"jq7HHcrrGB4hc9dp","name":"Unarmored Defense (Barbarian)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While you are not wearing any armor, your Armor Class equals 10 + your Dexterity modifier + your Constitution modifier. You can use a shield and still gain this benefit.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.SZbsNbaxFFGwBpNK","advancementOrigin":"LX25nsSy2bvul2dp.amez6rlose3eoigo"}},"img":"icons/magic/control/silhouette-hold-change-blue.webp","effects":[{"_id":"hEgUnQNVxtBo2zkK","changes":[{"key":"system.attributes.ac.calc","mode":5,"value":"unarmoredBarb","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/control/silhouette-hold-change-blue.webp","label":"Unarmored Defense","origin":"Item.aIMXb43ACIxMItbh","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234378,"modifiedTime":1691519103298,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"eWhL8hUr0c2ujDUm","flags":{},"changes":[{"key":"system.bonuses.mwak.damage","mode":2,"value":"+@scale.barbarian.rage-damage","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"slashing","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"piercing","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"bludgeoning","priority":null}],"disabled":true,"duration":{"startTime":0,"rounds":10,"seconds":null,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/abilities/mouth-teeth-human.webp","label":"Rage","origin":"Compendium.dnd5e.heroes.irWonyO6ZLh47sN7.Item.t9n1JlIt64USZcYm","tint":null,"transfer":false,"sort":0},{"_id":"hEgUnQNVxtBo2zkK","changes":[{"key":"system.attributes.ac.calc","mode":5,"value":"unarmoredBarb","priority":null}],"disabled":false,"duration":{"startTime":0,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/control/silhouette-hold-change-blue.webp","label":"Unarmored Defense","origin":"Compendium.dnd5e.heroes.irWonyO6ZLh47sN7.Item.jq7HHcrrGB4hc9dp","transfer":false,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"dnd5e":{"halflingLucky":true}},"_id":"irWonyO6ZLh47sN7","_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787232184,"modifiedTime":1691519103346,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kfzBL0q1Y7LgGs2x","name":"Akra (Dragonborn Cleric)","type":"character","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":8,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":1,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":9,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""},"min":0},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"wis","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"A devout follower of her deity and of her society's customs, Akra feels somewhat out of place adventuring in foreign lands. But she feels bound to do everything in her power to bring peace to the region.\n","public":""},"alignment":"Lawful Good","race":"Dragonborn","background":"","originalClass":"Zo7sWdchHDF6d0nn","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["cold"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic","giant","halfling"],"custom":""},"weaponProf":{"value":["sim"],"custom":""},"armorProf":{"value":["lgt","med","hvy","shl"],"custom":""},"toolProf":{"value":[],"custom":""}},"currency":{"pp":0,"gp":15,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{},"spells":{"spell1":{"value":2,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Akra","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":5,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Ra2Z1ujre76weR0i","name":"Holy Symbol","type":"loot","system":{"description":{"value":"This talisman serves as a spellcasting focus, helping the practitioner to channel arcane, primal, or divine energies.Spellcasting Focus. An arcane focus is a special item designed to channel the power of arcane spells. A sorcerer, warlock, or wizard can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/treasure/broach-jewel-gold-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"74K6TAuSg2xzd209","name":"Stick of Incense","type":"loot","system":{"description":{"value":"When blocks of incense cannot be used or a cheaper alternative is required, people often use these to perfume the air, whether for pleasurable or religious purposes.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":5,"weight":0,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3b0RvGi0TnTYpIxn"}},"img":"icons/commodities/wood/bamboo-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640945,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"mRxDz7yEtvJgpJsO","name":"Bedroll","type":"loot","system":{"description":{"value":"Roll of cloth used by traveller to sleep in.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":6}},"core":{"sourceId":"Compendium.dnd5e.items.DVXmyetZuvxbzAwW"}},"img":"icons/sundries/flags/banner-worn-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4FozMXUzyFXaB3Ps","name":"Hempen Rope (50 ft.)","type":"consumable","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket"},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":8}},"core":{"sourceId":"Compendium.dnd5e.items.QXmaarJ4X8P0C1HV"}},"img":"icons/sundries/survival/rope-wrapped-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QBmv3SSCaae2xxzT","name":"Tinderbox","type":"loot","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DNOSEAvF4Oh1DlWy"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640955,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ehYoem9Oas5sgRUK","name":"Mess Kit","type":"loot","system":{"description":{"value":"This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":4}},"core":{"sourceId":"Compendium.dnd5e.items.V13fjV5oSmvbRdgP"}},"img":"icons/tools/cooking/fork-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640965,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"p9MqgEEsODUHJebP","name":"Waterskin","type":"consumable","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Uv0ilmzbWvqmlCVH"}},"img":"icons/sundries/survival/wetskin-leather-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640975,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"3pLaAsrIUSbFeFDh","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PzCcpWNIKilXJXMG","name":"Pouch","type":"backpack","system":{"description":{"value":"A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"capacity":{"type":"weight","value":6,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.9bWTRRDym06PzSAf"}},"img":"icons/containers/bags/coinpouch-simple-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640984,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"njMyrs5IpKrRqvI9","name":"Quiver","type":"backpack","system":{"description":{"value":"A quiver can hold up to 20 arrows.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"capacity":{"type":"items","value":20,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.4MtQKPn9qMWCFjDA"}},"img":"icons/containers/ammunition/arrows-quiver-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"l46uaz805Fr9lZvU","name":"Scale Mail","type":"equipment","system":{"description":{"value":"This armor consists of a coat and leggings (and perhaps a separate skirt) of leather covered with overlapping pieces of metal, much like the scales of a fish. The suit includes gauntlets.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":45,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.XmnlF5fgIO3tg6TG"}},"img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"k2WyjZI9mN5jclTd","name":"Common Clothes","type":"equipment","system":{"description":{"value":"Clothes worn by most commoners.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.8RXjiddJ6VGyE7vB"}},"img":"icons/equipment/chest/shirt-collared-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640996,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"DNmD3z2JYmCQ203g","name":"Vestments","type":"equipment","system":{"description":{"value":"Simple or ostentacious wear, often used by priests and other religious figures for use in rituals and ceremonies.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.irtqrzaUCeshmTZp"}},"img":"icons/equipment/back/mantle-collared-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uuucgo72s3ZdzGqs","name":"Shield","type":"equipment","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"img":"icons/equipment/shield/oval-wooden-boss-steel.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eT4j7mNbZGHIUOtT","name":"Mace","type":"weapon","system":{"description":{"value":"A heavy bludgeoning weapon mounted to the end of a metal club. The head features spikes and blades designed to puncture armor and shatter the bones below.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Ajyq6nGwF7FtLhDQ"}},"img":"icons/weapons/maces/mace-round-spiked-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Yb4Gsfcswu3pZnoR","name":"Crossbow Bolt","type":"consumable","system":{"description":{"value":"This ammunition is used for all varieties of crossbow and is typically a short metal shaft with a narrow piercing tip.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":19,"weight":0.075,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.SItCnYBqhzqBoaWG"}},"img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647610,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"dRVZvSq4EXz8u5sk","name":"Light Crossbow","type":"weapon","system":{"description":{"value":"A small crossbow with a wooden haft and a tense cord which is capable of firing a single bolt which can puncture even heavy armor at close range.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"ammo","target":"Yb4Gsfcswu3pZnoR","amount":1},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"lgt":false,"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.ddWvQRLmnnIS0eLF"}},"img":"icons/weapons/crossbows/crossbow-simple-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ngTZ5FkHGxsYo2Ie","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641017,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"sa2Az2SjUNScdr5T","name":"Torch","type":"consumable","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":40,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":7}},"core":{"sourceId":"Compendium.dnd5e.items.BnOCLuNWhVvzHLjl"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647619,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"1qgVPt1uOptTVby1","name":"Prayer Book","type":"loot","system":{"description":{"value":"A book containing prayers and incantations dedicated to a specific power for the faithful to follow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.odV5cq2HSLSCH69k"}},"img":"icons/sundries/books/book-backed-silver-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0geQXeMWTg6cbDvQ","name":"Breath Weapon","type":"feat","system":{"description":{"value":"\nYou can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.\n\n\n\nAfter you use your breath weapon, you can't use it again until you complete a short or long rest.Foundry Note: Edit the Details for this feat, so that the damage type, saving throw, and area of effect match those of your Draconic Ancestry.\n\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["(ceil((@details.level/5) + 1))d6","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":11,"scaling":"con"},"type":{"value":"","subtype":""},"requirements":"Dragonborn","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.KL7wx9Q8XNJQir0k"}},"img":"icons/magic/acid/projectile-smoke-glowing.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DPYl8D5QtcRVH5XX","name":"Damage Resistance","type":"feat","system":{"description":{"value":"\n\n\nYou have resistance to the damage type associated with your draconic ancestry.\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Dragonborn","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.XxCuhIk6hAu6rNB0"}},"img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kJbsSe2Dht2Tc7ux","name":"Dragonborn","type":"feat","system":{"description":{"value":"\n\n\nYour draconic heritage manifests in a variety of traits you share with other dragonborn. Ability Score Increase. Your Strength score increases by 2, and your Charisma score increases by 1.Age. Young dragonborn grow quickly. They walk hours after hatching, attain the size and development of a 10-year-old human child by the age of 3, and reach adulthood by 15. They live to be around 80.Alignment. Dragonborn tend to extremes, making a conscious choice for one side or the other in the cosmic war between good and evil. Most dragonborn are good, but those who side with evil can be terrible villains.Size. Dragonborn are taller and heavier than humans, standing well over 6 feet tall and averaging almost 250 pounds. Your size is Medium.Speed. Your base walking speed is 30 feet.Draconic Ancestry. You have draconic ancestry. Choose one type of dragon from the Draconic Ancestry table. Your breath weapon and damage resistance are determined by the dragon type, as shown in the table.\n\n\n\n\n\n\nDragon\nDamage Type\nBreath Weapon\n\n\n\n\nBlack\nAcid\n5 by 30 ft. line (Dex. save)\n\n\nBlue\nLightning\n5 by 30 ft. line (Dex. save)\n\n\nBrass\nFire\n5 by 30 ft. line (Dex. save)\n\n\nBronze\nLightning\n5 by 30 ft. line (Dex. save)\n\n\nCopper\nAcid\n5 by 30 ft. line (Dex. save)\n\n\nGold\nFire\n15 ft. cone (Dex. save)\n\n\nGreen\nPoison\n15 ft. cone (Con. save)\n\n\nRed\nFire\n15 ft. cone (Dex. save)\n\n\nSilver\nCold\n15 ft. cone (Con. save)\n\n\nWhite\nCold\n15 ft. cone (Con. save)\n\n\n\n\n\n\n\nBreath Weapon. @Compendium[dnd5e.races.KL7wx9Q8XNJQir0k]{Breath Weapon} You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.\n\n\n\nAfter you use your breath weapon, you can't use it again until you complete a short or long rest.Damage Resistance. @Compendium[dnd5e.races.XxCuhIk6hAu6rNB0]{Damage Resistance} You have resistance to the damage type associated with your draconic ancestry.Languages. You can speak, read, and write Common and Draconic. Draconic is thought to be one of the oldest languages and is often used in the study of magic. The language sounds harsh to most other creatures and includes numerous hard consonants and sibilants. \n\n\n\n\n\n\n\n\n \n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.K4DNDcR6vngbp0pf"}},"img":"icons/magic/perception/eye-ringed-glow-angry-small-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6srkb2hvbgbrjzi3","name":"Life Domain","type":"subclass","img":"icons/magic/holy/barrier-shield-winged-cross.webp","system":{"description":{"value":"The Life domain focuses on the vibrant positive energy—one of the fundamental forces of the universe—that sustains all life. The gods of life promote vitality and health through healing the sick and wounded, caring for those in need, and driving away the forces of death and undeath. Almost any non-evil deity can claim influence over this domain, particularly agricultural deities (such as Chauntea, Arawai, and Demeter), sun gods (such as Lathander, Pelor, and Re-Horakhty), gods of healing or endurance (such as Ilmater, Mishakal, Apollo, and Diancecht), and gods of home and community (such as Hestia, Hathor, and Boldrei).\nLife Domain Spells\n\n\n\nCleric Level\nSpells\n\n\n\n\n1st\n@Compendium[dnd5e.spells.8dzaICjGy6mTUaUr]{Bless}, @Compendium[dnd5e.spells.uUWb1wZgtMou0TVP]{Cure Wounds}\n\n\n3rd\n@Compendium[dnd5e.spells.F0GsG0SJzsIOacwV]{Lesser Restoration}, @Compendium[dnd5e.spells.JbxsYXxSOTZbf9I0]{Spiritual Weapon}\n\n\n5th\n@Compendium[dnd5e.spells.ZU9d6woBdUP8pIPt]{Beacon of Hope}, @Compendium[dnd5e.spells.LmRHHMtplpxr9fX6]{Revivify}\n\n\n7th\n@Compendium[dnd5e.spells.VtCXMdyM6mAdIJZb]{Death Ward}, @Compendium[dnd5e.spells.TgHsuhNasPbhu8MO]{Guardian of Faith}\n\n\n9th\n@Compendium[dnd5e.spells.Pyzmm8R7rVsNAPsd]{Mass Cure Wounds}, @Compendium[dnd5e.spells.AGFMPAmuzwWO6Dfz]{Raise Dead}\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"life-domain","classIdentifier":"cleric","advancement":[{"_id":"9fyr5t01nhdg0u8n","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.68bYIOvx6rIqnlOW","Compendium.dnd5e.classfeatures.jF8AFfEMICIJnAkR"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"nc5IaPb64YH0AT8L":"Compendium.dnd5e.classfeatures.68bYIOvx6rIqnlOW","A7qWZHa1wRp3NRgK":"Compendium.dnd5e.classfeatures.jF8AFfEMICIJnAkR"}},"level":1,"title":"Features"},{"_id":"4qh4ejxpwugva6ma","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.hEymt45rICi4f9eL"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features"},{"_id":"ihquu4r80mxr07qt","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.yv49QN6Bzqs0ecCs"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features"},{"_id":"ayh4gqp9vxjo9yd3","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.T6u5z8ZTX6UftXqE"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":8,"title":"Features"},{"_id":"m4m8xp6cabt71mdq","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.4UOgxzr83vFuUash"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":17,"title":"Features"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.subclasses.H3RYLGqCiqm8BP3q"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":null,"modifiedTime":1691519023020,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"P7mF2MxSuVJwHRRY","name":"Guidance","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one willing creature. Once before the spell ends, the target can roll a d4 and add the number rolled to one ability check of its choice. It can roll the die before or after making the ability check. The spell then ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.P7mF2MxSuVJwHRRY"}},"img":"icons/magic/control/buff-flight-wings-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486203,"modifiedTime":1661603486203,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"n9pJzTDsAwQxJVRl","name":"Sacred Flame","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Flame-like radiance descends on a creature that you can see within range. The target must succeed on a Dexterity saving throw or take 1d8 radiant damage. The target gains no benefit from cover for this saving throw.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":12,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.n9pJzTDsAwQxJVRl"}},"img":"icons/magic/light/beam-rays-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486203,"modifiedTime":1661603486203,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MUO1uYN7JR1hm4dR","name":"Thaumaturgy","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create one of the following magical effects within range:\n\nYour voice booms up to three times as loud as normal for 1 minute.\nYou cause flames to flicker, brighten, dim, or change color for 1 minute.\nYou cause harmless tremors in the ground for 1 minute.\nYou create a sound that originates from a point of your choice within range.\nYou cause an unlocked door or window to fly open or slam shut.\nYou alter the appearance of your eyes for 1 minute.\n\nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486205,"modifiedTime":1661603486205,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"8dzaICjGy6mTUaUr","name":"Bless","type":"spell","img":"icons/magic/control/buff-flight-wings-blue.webp","system":{"description":{"value":"You bless up to three creatures of your choice within range. Whenever a target makes an attack roll or a saving throw before the spell ends, the target can roll 1d4 and add the number rolled to the attack roll or saving throw.\nHigher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":3,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A sprinkling of holy water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"always","prepared":true},"scaling":{"mode":"level","formula":""}},"effects":[{"_id":"8rP3gwmXVTgZqYZE","flags":{},"changes":[{"key":"system.bonuses.abilities.save","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.mwak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.msak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rsak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rwak.attack","mode":2,"value":"+1d4","priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":60,"rounds":10,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/control/buff-flight-wings-blue.webp","label":"Bless","origin":"Item.kZZAZ6kp9YzgPQEe","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.8dzaICjGy6mTUaUr"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486205,"modifiedTime":1661603486205,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"uUWb1wZgtMou0TVP","name":"Cure Wounds","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch regains a number of hit points equal to 1d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"always","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.uUWb1wZgtMou0TVP"}},"img":"icons/magic/life/heart-cross-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486206,"modifiedTime":1661603486206,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"gvdA9nPuWLck4tBl","name":"Sanctuary","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You ward a creature within range against attack. Until the spell ends, any creature who targets the warded creature with an attack or a harmful spell must first make a Wisdom saving throw. On a failed save, the creature must choose a new target or lose the attack or spell. This spell doesn't protect the warded creature from area effects, such as the explosion of a Fireball.If the warded creature makes an attack or casts a spell that affects an enemy creature, this spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":12,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small silver mirror","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gvdA9nPuWLck4tBl"}},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486206,"modifiedTime":1661603486206,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"arzCrMRgcNiQuh43","name":"Command","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You speak a one-word command to a creature you can see within range. The target must succeed on a Wisdom saving throw or follow the command on its next turn. The spell has no effect if the target is undead, if it doesn't understand your language, or if your command is directly harmful to it.Some typical commands and their effects follow. You might issue a command other than one described here. If you do so, the DM determines how the target behaves. If the target can't follow your command, the spell ends.Approach. The target moves toward you by the shortest and most direct route, ending its turn if it moves within 5 feet of you.Drop. The target drops whatever it is holding and then ends its turn.Flee. The target spends its turn moving away from you by the fastest available means.Grovel. The target falls prone and then ends its turn.Halt. The target doesn't move and takes no actions. A flying creature stays aloft, provided that it is able to do so. If it must move to stay aloft, it flies the minimum distance needed to remain in the air.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":12,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.arzCrMRgcNiQuh43"}},"img":"icons/magic/fire/explosion-fireball-small-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486207,"modifiedTime":1661603486207,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"a3XtAO5n2GrqiAh5","name":"Create or Destroy Water","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You either create or destroy water.Create Water. You create up to 10 gallons of clean water within range in an open container. Alternatively, the water falls as rain in a 30-foot cube within range.Destroy Water. You destroy up to 10 gallons of water in an open container within range. Alternatively, you destroy fog in a 30-foot cube within range.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you create or destroy 10 additional gallons of water, or the size of the cube increases by 5 feet, for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":30,"width":null,"units":"ft","type":"cube"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A drop of water if creating water or a few grains of sand if destroying it.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.a3XtAO5n2GrqiAh5"}},"img":"icons/magic/air/wind-swirl-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486207,"modifiedTime":1661603486207,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"95K2aUhAGV9qXjnf","name":"Bane","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Up to three creatures of your choice that you can see within range must make Charisma saving throws. Whenever a target that fails this saving throw makes an attack roll or a saving throw before the spell ends, the target must roll a d4 and subtract the number rolled from the attack roll or saving throw.\nHigher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":3,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":12,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A drop of blood","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.95K2aUhAGV9qXjnf"}},"img":"icons/magic/unholy/strike-beam-blood-red-purple.webp","effects":[{"_id":"potjmpJPeUA1U4oe","flags":{},"changes":[{"key":"system.bonuses.abilities.save","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.mwak.attack","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.msak.attack","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.rsak.attack","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.rwak.attack","value":"-1d4","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":60,"rounds":10,"turns":null,"startRound":null,"startTurn":null,"combat":null},"icon":"icons/magic/unholy/strike-beam-blood-red-purple.webp","label":"Bane","origin":"Item.KkaQm4OQJxc6z3to","tint":null,"transfer":true,"sort":0}],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486208,"modifiedTime":1661603486208,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Mzh95utKDPIrjiH8","name":"Detect Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"crewed":false,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Mzh95utKDPIrjiH8"}},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486209,"modifiedTime":1661603486209,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"crewed":false,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486210,"modifiedTime":1661603486210,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"2skfDtglk1mGrb3l","name":"Detect Poison and Disease","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you can sense the presence and location of poisons, poisonous creatures, and diseases within 30 feet of you. You also identify the kind of poison, poisonous creature, or disease in each case.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"crewed":false,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A yew leaf","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.2skfDtglk1mGrb3l"}},"img":"icons/magic/air/air-burst-spiral-teal-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486210,"modifiedTime":1661603486210,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"7buEm5KhI5lP8m1z","name":"Guiding Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A flash of light streaks toward a creature of your choice within range. Make a ranged spell attack against the target. On a hit, the target takes 4d6 radiant damage, and the next attack roll made against this target before the end of your next turn has advantage, thanks to the mystical dim light glittering on the target until then.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.7buEm5KhI5lP8m1z"}},"img":"icons/magic/fire/projectile-fireball-smoke-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486210,"modifiedTime":1661603486210,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"o8Dh7fblk1d16tnO","name":"Healing Word","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature of your choice that you can see within range regains hit points equal to 1d4 + your spellcasting ability modifier. This spell has no effect on undead or constructs.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d4 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d4"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.o8Dh7fblk1d16tnO"}},"img":"icons/magic/life/heart-cross-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486211,"modifiedTime":1661603486211,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ksaaTxIbKx2sJfia","name":"Inflict Wounds","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Make a melee spell Attack against a creature you can reach. On a hit, the target takes 3d10 necrotic damage.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d10 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d10"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ksaaTxIbKx2sJfia"}},"img":"icons/magic/unholy/strike-beam-blood-red-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486211,"modifiedTime":1661603486211,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"xmDBqZhRVrtLP8h2","name":"Protection from Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Until the spell ends, one willing creature you touch is protected against certain types of creatures: aberrations, celestials, elementals, fey, fiends, and undead.The protection grants several benefits. Creatures of those types have disadvantage on attack rolls against the target. The target also can't be charmed, frightened, or possessed by them. If the target is already charmed, frightened, or possessed by such a creature, the target has advantage on any new saving throw against the relevant effect.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Holy water or powdered silver and iron, which the spell consumes","consumed":true,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.xmDBqZhRVrtLP8h2"}},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486212,"modifiedTime":1661603486212,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Kn7K5PtYUJAKZTTp","name":"Purify Food and Drink","ownership":{"default":0},"type":"spell","system":{"description":{"value":"All nonmagical food and drink within a 5-foot-radius sphere centered on a point of your choice within range is purified and rendered free of poison and disease.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":5,"width":null,"units":"ft","type":"sphere"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Kn7K5PtYUJAKZTTp"}},"img":"icons/magic/light/explosion-star-small-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486212,"modifiedTime":1661603486212,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"jZ6JNykRtdQ90MOo","name":"Shield of Faith","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A shimmering field appears and surrounds a creature of your choice within range, granting it a +2 bonus to AC for the duration.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small parchment with a bit of holy text written on it.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.jZ6JNykRtdQ90MOo"}},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486213,"modifiedTime":1661603486213,"lastModifiedBy":"dnd5ebuilder0000"}},{"name":"Priest","type":"background","system":{"description":{"value":"Skill Proficiencies: Insight, ReligionLanguages: Two of your choiceEquipment: A holy symbol, 5 sticks of incense, prayer book, vestments, a set of common clothes, and a pouch containing 15 gp.","chat":"","unidentified":""},"source":"","advancement":[]},"img":"icons/sundries/documents/document-torn-diagram-tan.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040357495,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"UXJw0wVE7GCx6yzv"},{"_id":"Zo7sWdchHDF6d0nn","name":"Cleric","type":"class","img":"icons/magic/life/ankh-gold-blue.webp","system":{"description":{"value":"As a cleric, you gain the following class features.\nHit Points\nHit Dice: 1d8 per cleric levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per cleric level after 1st\nProficiencies\nArmor: Light armor, medium armor, shieldsWeapons: Simple weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two from History, Insight, Medicine, Persuasion, and Religion\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a mace or (b) a warhammer (if proficient)\n(a) scale mail, (b) leather armor, or (c) chain mail (if proficient)\n(a) a light crossbow and 20 bolts or (b) any simple weapon\n(a) a priest's pack or (b) an explorer's pack\nA shield and a holy symbol\n\nCleric Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.v4gKwLhAq9vuqza7]{Spellcasting} , @Compendium[dnd5e.classfeatures.x637K2Icp2ZFM1TB]{Divine Domain}\n\n\n2nd\n+2\n@Compendium[dnd5e.classfeatures.YpiLQEKGalROn7iJ]{Channel Divinity (1/rest)}, Divine Domain feature\n\n\n3rd\n+2\n2nd Level Spell Slot\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n5th\n+3\n3rd Level Spell Slot, @Compendium[dnd5e.classfeatures.NMy4piwXIpLjYbRE]{Destroy Undead (CR 1/2)}\n\n\n6th\n+3\n@Compendium[dnd5e.classfeatures.YpiLQEKGalROn7iJ]{Channel Divinity (2/rest)}, Divine Domain feature\n\n\n7th\n+3\n4th Level Spell Slot\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{ASI}, @Compendium[dnd5e.classfeatures.NMy4piwXIpLjYbRE]{Destroy Undead (CR 1)}, Divine Domain feature\n\n\n9th\n+4\n5th Level Spell Slot\n\n\n10th\n+4\n@Compendium[dnd5e.classfeatures.eVXqHn0ojWrEuYGU]{Divine Intervention}\n\n\n11th\n+4\n6th Level Spell Slot, @Compendium[dnd5e.classfeatures.NMy4piwXIpLjYbRE]{Destroy Undead (CR 2)}\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n7th Level Spell Slot\n\n\n14th\n+5\n@Compendium[dnd5e.classfeatures.NMy4piwXIpLjYbRE]{Destroy Undead (CR 3)}\n\n\n15th\n+5\n8th Level Spell Slot\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n9th Level Spell Slot, @Compendium[dnd5e.classfeatures.NMy4piwXIpLjYbRE]{Destroy Undead (CR 4)}, Divine Domain feature\n\n\n18th\n+6\n@Compendium[dnd5e.classfeatures.YpiLQEKGalROn7iJ]{Channel Divinity (3/rest)}\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\n@Compendium[dnd5e.classfeatures.eVXqHn0ojWrEuYGU]{Divine Intervention (Automatic Success)}\n\n\n\nDivine Domains\n@Compendium[dnd5e.subclasses.H3RYLGqCiqm8BP3q]{Life Domain}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"cleric","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"3kVv5eybwZql4LDY"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.v4gKwLhAq9vuqza7","Compendium.dnd5e.classfeatures.x637K2Icp2ZFM1TB"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"QC8NPpGVE4sAQA4Y":"Compendium.dnd5e.classfeatures.v4gKwLhAq9vuqza7","GQ656cfZYrH361kV":"Compendium.dnd5e.classfeatures.x637K2Icp2ZFM1TB"}},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"87Jib8HC9IkBgdSg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.YpiLQEKGalROn7iJ","Compendium.dnd5e.classfeatures.r91UIgwFdHwkXdia"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"nfyW60OZnItbbGL6"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.NMy4piwXIpLjYbRE"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"w8COj56hwo4L75Er"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.eVXqHn0ojWrEuYGU"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"3Gljp7TuxV4iwOxs"},{"type":"ScaleValue","configuration":{"identifier":"channel-divinity","type":"number","distance":{"units":""},"scale":{"2":{"value":1},"6":{"value":2},"18":{"value":3}}},"value":{},"title":"Channel Divinity Uses","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"oP3vRPEVl4dirav7"},{"type":"ScaleValue","configuration":{"identifier":"destroy-undead","type":"cr","distance":{"units":""},"scale":{"5":{"value":0.5},"8":{"value":1},"11":{"value":2},"14":{"value":3},"17":{"value":4}}},"value":{},"title":"Destroy Undead CR","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"hPf0ds98CQX40MXV"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":3},"4":{"value":4},"10":{"value":5}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"xh6rfAUPRt6XpPw5"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"EzCBypwpeyzy6ZvT"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"CI1mqwkI5bbFu9cU"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"tQRur0s1v19kA0va"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"C2T1oSCDApFPx15B"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["wis","cha"],"skills":{"number":2,"choices":["his","ins","med","per","rel"],"value":[]},"spellcasting":{"progression":"full","ability":"wis"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.tlwBnN8GmqJcTgub"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234282,"modifiedTime":1691519023054,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"QC8NPpGVE4sAQA4Y","name":"Spellcasting (Cleric)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As a conduit for divine power, you can cast cleric spells.\nCantrips\nAt 1st level, you know three cantrips of your choice from the cleric spell list. You learn additional cleric cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Cleric table.\nPreparing and Casting Spells\nThe Cleric table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nYou prepare the list of cleric spells that are available for you to cast, choosing from the cleric spell list. When you do so, choose a number of cleric spells equal to your Wisdom modifier + your cleric level (minimum of one spell). The spells must be of a level for which you have spell slots.\nFor example, if you are a 3rd-level cleric, you have four 1st-level and two 2nd-level spell slots. With a Wisdom of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of cleric spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\nSpellcasting Ability\nWisdom is your spellcasting ability for your cleric spells. The power of your spells comes from your devotion to your deity. You use your Wisdom whenever a cleric spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a cleric spell you cast and when making an attack roll with one.\nSpell save DC= 8 + your proficiency bonus + your Wisdom modifier\nSpell attack modifier = your proficiency bonus + your Wisdom modifier\nRitual Casting\nYou can cast a cleric spell as a ritual if that spell has the ritual tag and you have the spell prepared.\nSpellcasting Focus\nYou can use a holy symbol (see @UUID[Compendium.dnd5e.rules.BYFd9hiJGo9L5aOM.JournalEntryPage.AjavRU4yPfI9hfaI]{Adventuring Gear}) as a spellcasting focus for your cleric spells.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Cleric 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.v4gKwLhAq9vuqza7","advancementOrigin":"Zo7sWdchHDF6d0nn.87Jib8HC9IkBgdSg"}},"img":"icons/magic/life/ankh-gold-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234436,"modifiedTime":1691519023057,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"GQ656cfZYrH361kV","name":"Divine Domain","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Choose one domain related to your deity, such as Life. Your choice grants you domain spells and other features when you choose it at 1st level. It also grants you additional ways to use Channel Divinity when you gain that feature at 2nd level, and additional benefits at 6th, 8th, and 17th levels.\nDomain Spells\nEach domain has a list of spells—its domain spells—that you gain at the cleric levels noted in the domain description. Once you gain a domain spell, you always have it prepared, and it doesn't count against the number of spells you can prepare each day.\nIf you have a domain spell that doesn't appear on the cleric spell list, the spell is nonetheless a cleric spell for you.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Cleric 1","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.x637K2Icp2ZFM1TB","advancementOrigin":"Zo7sWdchHDF6d0nn.87Jib8HC9IkBgdSg"}},"img":"icons/magic/nature/tree-spirit-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234439,"modifiedTime":1691519023058,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"nc5IaPb64YH0AT8L","name":"Bonus Proficiency (Life Domain)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you choose this domain at 1st level, you gain proficiency with heavy armor.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Life Domain 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.68bYIOvx6rIqnlOW","advancementOrigin":"6srkb2hvbgbrjzi3.9fyr5t01nhdg0u8n"}},"img":"icons/equipment/chest/breastplate-layered-steel.webp","effects":[{"_id":"Dk95lqbXXCUlefZW","changes":[{"key":"system.traits.armorProf.value","mode":2,"value":"hvy","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/equipment/chest/breastplate-layered-steel.webp","label":"Heavy Armor Proficiency","origin":"Item.68bYIOvx6rIqnlOW","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234335,"modifiedTime":1691519023059,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"A7qWZHa1wRp3NRgK","name":"Disciple of Life","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 1st level, your healing spells are more effective.Whenever you use a spell of 1st level or higher to restore hit points to a creature, the creature regains additional hit points equal to 2 + the spell's level.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Life Domain 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.jF8AFfEMICIJnAkR","advancementOrigin":"6srkb2hvbgbrjzi3.9fyr5t01nhdg0u8n"}},"img":"icons/magic/light/hand-sparks-smoke-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234412,"modifiedTime":1691519023060,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"8rP3gwmXVTgZqYZE","flags":{},"changes":[{"key":"system.bonuses.abilities.save","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.mwak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.msak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rsak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rwak.attack","mode":2,"value":"+1d4","priority":null}],"disabled":true,"duration":{"startTime":648,"seconds":60,"rounds":10,"combat":null,"turns":null,"startRound":0,"startTurn":0},"icon":"icons/magic/control/buff-flight-wings-blue.webp","label":"Bless","origin":"Compendium.dnd5e.heroes.kfzBL0q1Y7LgGs2x.Item.8dzaICjGy6mTUaUr","tint":null,"transfer":false,"sort":0},{"_id":"potjmpJPeUA1U4oe","flags":{},"changes":[{"key":"system.bonuses.abilities.save","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.mwak.attack","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.msak.attack","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.rsak.attack","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.rwak.attack","value":"-1d4","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":648,"seconds":60,"rounds":10,"turns":null,"startRound":0,"startTurn":0,"combat":null},"icon":"icons/magic/unholy/strike-beam-blood-red-purple.webp","label":"Bane","origin":"Compendium.dnd5e.heroes.kfzBL0q1Y7LgGs2x.Item.95K2aUhAGV9qXjnf","tint":null,"transfer":false,"sort":0},{"_id":"Dk95lqbXXCUlefZW","changes":[{"key":"system.traits.armorProf.value","mode":2,"value":"hvy","priority":null}],"disabled":false,"duration":{"startTime":0,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/equipment/chest/breastplate-layered-steel.webp","label":"Heavy Armor Proficiency","origin":"Compendium.dnd5e.heroes.kfzBL0q1Y7LgGs2x.Item.nc5IaPb64YH0AT8L","transfer":false,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787232189,"modifiedTime":1691519023120,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xT2C2Itv2XambDYp","name":"Morthos (Tiefling Sorcerer)","type":"character","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":17,"proficient":1,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"draconic","formula":""},"hp":{"value":8,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""},"min":0},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"Morthos's investigation into her complex draconic-infernal ancestry led her to an academic life, but it soon became apparent that the fools in charge were keeping many secrets from her.\n","public":""},"alignment":"Neutral Evil","race":"Tiefling","background":"","originalClass":"Ig5YOxEOabGaTjG5","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["fire"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic","infernal"],"custom":""},"weaponProf":{"value":["dagger","dart","sling","quarterstaff","lightcrossbow"],"custom":""},"armorProf":{"value":[],"custom":""},"toolProf":{"value":[],"custom":""}},"currency":{"pp":0,"gp":10,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{},"spells":{"spell1":{"value":2,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Morthos","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"4oZOGoQdZ0qipEn9","name":"Orb","type":"weapon","system":{"description":{"value":"This spherical talisman serves as a spellcasting focus, helping the practitioner to channel arcane, primal, or divine energies.Spellcasting Focus. An arcane focus is a special item designed to channel the power of arcane spells. A sorcerer, warlock, or wizard can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"foc":true,"amm":false,"hvy":false,"fin":false,"fir":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":false},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.tH5Rn0JVRG1zdmPa"}},"img":"icons/commodities/gems/pearl-natural.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tQKD6fqsb4Aiyy5j","name":"Dagger","type":"weapon","system":{"description":{"value":"A short metal blade mounted to a small hilt and crossguard. The dagger makes an effective side armament for hardened warriors or a hidden blade for assassins and thieves.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":2,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.0E565kQUBmndJ1a2"}},"img":"icons/weapons/daggers/dagger-jeweled-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GDbpIHMQgxUgPLdu","name":"Quarterstaff","type":"weapon","system":{"description":{"value":"A thick shaft of wood wrapped with a sturdy grip makes a highly functional weapon in addition to a stout walking stick.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.g2dWN7PQiMRYWzyk"}},"img":"icons/weapons/staves/staff-simple-gold.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641046,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"xX4gm1T19sVEeJv0","name":"Robes","type":"equipment","system":{"description":{"value":"Simple or ceremonial wear, often used by priests and other religious figures.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.8GCEodUsTEEpBlO6"}},"img":"icons/equipment/back/mantle-collared-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LivxabPcA6A9nstM","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SeeeXZHOsXqMfaF4","name":"Pouch","type":"backpack","system":{"description":{"value":"A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":6,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.9bWTRRDym06PzSAf"}},"img":"icons/containers/bags/coinpouch-simple-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641060,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ZchHJk0yJtegcnoD","name":"Component Pouch","type":"consumable","system":{"description":{"value":"A component pouch is a small, watertight leather belt pouch that has compartments to hold all the material components and other special items you need to cast your spells, except for those components that have a specific cost (as indicated in a spell's description).","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.eZGmdOhaTWMicXPW"}},"img":"icons/containers/bags/pack-simple-leather-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tprVjkdD07yET7Dn","name":"Hempen Rope (50 ft.)","type":"consumable","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QXmaarJ4X8P0C1HV"}},"img":"icons/sundries/survival/rope-wrapped-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hSWX55GkqzCy2q83","name":"Bedroll","type":"loot","system":{"description":{"value":"Roll of cloth used by traveller to sleep in.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DVXmyetZuvxbzAwW"}},"img":"icons/sundries/flags/banner-worn-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WHdV6NGJLWgf9SXW","name":"Mess Kit","type":"loot","system":{"description":{"value":"This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.V13fjV5oSmvbRdgP"}},"img":"icons/tools/cooking/fork-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641068,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ayGuhKBGDrEn7R3b","name":"Tinderbox","type":"loot","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DNOSEAvF4Oh1DlWy"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641079,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"js5p955d3giWX0oH","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641089,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"aPzu0l5X4uxqLor9","name":"Torch","type":"consumable","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":40,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.BnOCLuNWhVvzHLjl"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647627,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"stBwmLr8AL6ZTUYM","name":"Waterskin","type":"consumable","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Uv0ilmzbWvqmlCVH"}},"img":"icons/sundries/survival/wetskin-leather-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641109,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"6xhnm29N1HYahYOO","name":"Ink Bottle","type":"loot","system":{"description":{"value":"A small bottle of ink for writing upon parchment.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.06,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.dP7jMKyHTTgVb3ii"}},"img":"icons/consumables/potions/bottle-bulb-empty-glass.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NF7GrOufGmSBsfGU","name":"Ink Pen","type":"loot","system":{"description":{"value":"A deviced used in combination with ink to write or draw on a sheet of paper.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.uVm7MiB71QblfnoY"}},"img":"icons/commodities/materials/feather-red-.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647646,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"mh4WBhTpy8fBSjg0","name":"Parchment","type":"loot","system":{"description":{"value":"A single sheet of heavier parchment paper.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WFQS2vT8ddrFjTJg"}},"img":"icons/sundries/documents/document-symbol-circle-gold-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641126,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"TkeAIaa70wEfYooB","name":"Book of Lore","type":"loot","system":{"description":{"value":"A book containing historical accounts, information pertaining to a particular field of lore, myth, or legend.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.l794iywHk8Wc6Uvi"}},"img":"icons/sundries/books/book-plain-orange.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VXfJOqA5hOKDCVf1","name":"Small Knife","type":"loot","system":{"description":{"value":"A blunt knife used by the scholarly to open letters and correspondence.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.5,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3nVvaHVfHsgwGlkL"}},"img":"icons/weapons/daggers/dagger-jeweled-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641137,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Xfag5A38nhLBUfkr","name":"Hellish Resistance","type":"feat","system":{"description":{"value":"You have resistance to fire damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Tiefling","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.q71Pe1F8RRtEJt8Q"}},"img":"icons/magic/air/fog-gas-smoke-swirling-orange.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xQyybuzUPke5Owuf","name":"Infernal Legacy","type":"feat","system":{"description":{"value":"You know the @Compendium[dnd5e.spells.MUO1uYN7JR1hm4dR]{Thaumaturgy} cantrip.When you reach 3rd level, you can cast the @Compendium[dnd5e.spells.22dPoeXfaaAv4K3h]{Hellish Rebuke} spell as a 2nd-level spell once with this trait and regain the ability to do so when you finish a long rest.When you reach 5th level, you can cast the @Compendium[dnd5e.spells.S7VbUetIfVT7B6Eq]{Darkness} spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Tiefling","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.wJc88B8OP1y1xzMw"}},"img":"icons/creatures/unholy/demon-fanged-horned-yellow.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pTwtACItEzLveouu","name":"Tiefling","type":"feat","system":{"description":{"value":"\n\n\nTieflings share certain racial traits as a result of their infernal descent. Ability Score Increase. Your Intelligence score increases by 1, and your Charisma score increases by 2.Age. Tieflings mature at the same rate as humans but live a few years longer.Alignment. Tieflings might not have an innate tendency toward evil, but many of them end up there. Evil or not, an independent nature inclines many tieflings toward a chaotic alignment.Size. Tieflings are about the same size and build as humans. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Thanks to your infernal heritage, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Hellish Resistance. @Compendium[dnd5e.races.q71Pe1F8RRtEJt8Q]{Hellish Resistance} You have resistance to fire damage.Infernal Legacy. @Compendium[dnd5e.races.wJc88B8OP1y1xzMw]{Infernal Legacy} You know the @Compendium[dnd5e.spells.MUO1uYN7JR1hm4dR]{Thaumaturgy} cantrip. When you reach 3rd level, you can cast the @Compendium[dnd5e.spells.22dPoeXfaaAv4K3h]{Hellish Rebuke} spell as a 2nd‑level spell once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the @Compendium[dnd5e.spells.S7VbUetIfVT7B6Eq]{Darkness} spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.Languages. You can speak, read, and write Common and Infernal.\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.aHTokZ151W0ASSmo"}},"img":"icons/magic/air/wind-tornado-cyclone-red-orange.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"f3p50jjvtk2ao61n","name":"Draconic Bloodline","type":"subclass","img":"icons/creatures/reptiles/dragon-horned-blue.webp","system":{"description":{"value":"Your innate magic comes from draconic magic that was mingled with your blood or that of your ancestors. Most often, sorcerers with this origin trace their descent back to a mighty sorcerer of ancient times who made a bargain with a dragon or who might even have claimed a dragon parent. Some of these bloodlines are well established in the world, but most are obscure. Any given sorcerer could be the first of a new bloodline, as a result of a pact or some other exceptional circumstance.","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"draconic-bloodline","classIdentifier":"sorcerer","advancement":[{"_id":"bjbipb2oydq3zsuy","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.EZsonMThTNLZq35j","Compendium.dnd5e.classfeatures.MW1ExvBLm8Hg82aA"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"oO4FCdIDwsr4VTb3":"Compendium.dnd5e.classfeatures.EZsonMThTNLZq35j","o0wsV8JAuT6FUDAt":"Compendium.dnd5e.classfeatures.MW1ExvBLm8Hg82aA"}},"level":1,"title":"Features"},{"_id":"cq0cwgss39pkvjox","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.x6eEZ9GUsuOcEa3G"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features"},{"_id":"rfd6o6858pl8k7fl","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.3647zjKSE9zFwOXc"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features"},{"_id":"4xrl7vjblpn8zl5t","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Gsha4bl0apxqspFy"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.subclasses.2nadB2MBSHTQ0kcl"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":null,"modifiedTime":1691519120854,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MUO1uYN7JR1hm4dR","name":"Thaumaturgy","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create one of the following magical effects within range:\n\nYour voice booms up to three times as loud as normal for 1 minute.\nYou cause flames to flicker, brighten, dim, or change color for 1 minute.\nYou cause harmless tremors in the ground for 1 minute.\nYou create a sound that originates from a point of your choice within range.\nYou cause an unlocked door or window to fly open or slam shut.\nYou alter the appearance of your eyes for 1 minute.\n\nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486272,"modifiedTime":1661603486272,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"kjmjY0zlE6IEiQVL","name":"Mending","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell repairs a single break or tear in an object you touch, such as a broken chain link, two halves of a broken key, a torn cloak, or a leaking wineskin. As long as the break or tear is no larger than 1 foot in any dimension, you mend it, leaving no trace of the former damage.This spell can physically repair a magic item or construct, but the spell can't restore magic to such an object.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Two lodestones","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.kjmjY0zlE6IEiQVL"}},"img":"icons/magic/air/wind-stream-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486272,"modifiedTime":1661603486272,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"EOmsUcFQJTfG2oio","name":"Fire Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You hurl a mote of fire at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried.This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.EOmsUcFQJTfG2oio"}},"img":"icons/magic/fire/projectile-fireball-smoke-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486272,"modifiedTime":1661603486272,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"oIzA2MEHwxhtQneU","name":"Minor Illusion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a sound or an image of an object within range that lasts for the duration. The illusion also ends if you dismiss it as an action or cast this spell again.If you create a sound, its volume can range from a whisper to a scream. It can be your voice, someone else's voice, a lion's roar, a beating of drums, or any other sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends.If you create an image of an object—such as a chair, muddy footprints, or a small chest—it must be no larger than a 5-foot cube. The image can't create sound, light, smell, or any other sensory effect. Physical interaction with the image reveals it to be an illusion, because things can pass through it.If a creature uses its action to examine the sound or image, the creature can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the illusion becomes faint to the creature.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":5,"width":null,"units":"ft","type":"cube"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"ill","components":{"vocal":false,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of fleece.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.oIzA2MEHwxhtQneU"}},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486273,"modifiedTime":1661603486273,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"icZokbgV1jIMpNCv","name":"Message","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You point your finger toward a creature within range and whisper a message. The target (and only the target) hears the message and can reply in a whisper that only you can hear.You can cast this spell through solid Objects if you are familiar with the target and know it is beyond the barrier. Magical silence, 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood blocks the spell. The spell doesn't have to follow a straight line and can travel freely around corners or through openings.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A short piece of copper wire","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.icZokbgV1jIMpNCv"}},"img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486273,"modifiedTime":1661603486273,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"5SuJewoa1CRWaj1F","name":"Burning Hands","ownership":{"default":0},"type":"spell","system":{"description":{"value":"As you hold your hands with thumbs touching and fingers spread, a thin sheet of flames shoots forth from your outstretched fingertips. Each creature in a 15-foot cone must make a Dexterity saving throw. A creature takes 3d6 fire damage on a failed save, or half as much damage on a successful one.The fire ignites any flammable objects in the area that aren't being worn or carried.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.5SuJewoa1CRWaj1F"}},"img":"icons/magic/air/fog-gas-smoke-dense-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486273,"modifiedTime":1661603486273,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"A3q2gTNqG6fvNGrv","name":"Disguise Self","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You make yourself—including your clothing, armor, weapons, and other belongings on your person—look different until the spell ends or until you use your action to dismiss it. You can seem 1 foot shorter or taller and can appear thin, fat, or in between. You can't change your body type, so you must adopt a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you.The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to your outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel your head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair.To discern that you are disguised, a creature can use its action to inspect your appearance and must succeed on an Intelligence (Investigation) check against your spell save DC.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.A3q2gTNqG6fvNGrv"}},"img":"icons/magic/control/debuff-energy-hold-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486274,"modifiedTime":1661603486274,"lastModifiedBy":"dnd5ebuilder0000"}},{"name":"Scholar","type":"background","system":{"description":{"value":"Skill Proficiencies: History, plus your choice of one from among Arcana, Nature, and ReligionLanguages: Two of your choiceEquipment: Scholar's robes, a writing kit, a book of lore, and a pouch containing 10 gp","chat":"","unidentified":""},"source":"","advancement":[]},"img":"icons/sundries/documents/blueprint-recipe-alchemical.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040768566,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"38phJIpUGf6pPv1e"},{"_id":"Ig5YOxEOabGaTjG5","name":"Sorcerer","type":"class","img":"icons/magic/earth/projectiles-magma-stone-orange.webp","system":{"description":{"value":"As a sorcerer, you gain the following class features.\nHit Points\nHit Dice: 1d6 per sorcerer levelHit Points at 1st Level: 6 + your Constitution modifierHit Points at Higher Levels: 1d6 (or 4) + your Constitution modifier per sorcerer level after 1st\nProficiencies\nArmor: NoneWeapons: Daggers, darts, slings, quarterstaffs, light crossbowsTools: NoneSaving Throws: Constitution, CharismaSkills: Choose two from Arcana, Deception, Insight, Intimidation, Persuasion, and Religion\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a light crossbow and 20 bolts or (b) any simple weapon\n(a) a component pouch or (b) an arcane focus\n(a) a dungeoneer's pack or (b) an explorer's pack\nTwo daggers\n\nSorcerer Advancement\n\n\n\nLevel\nProficiency Bonus\nSorcery Points\nFeatures\n\n\n\n\n1st\n+2\n̶\n@Compendium[dnd5e.classfeatures.oygRF3ZjTv2T7z0Y]{Spellcasting}, @Compendium[dnd5e.classfeatures.cmRCL9T9UgRYOj1c]{Sorcerous Origins}\n\n\n2nd\n+2\n2\n@Compendium[dnd5e.classfeatures.LBKChJY5n02Afhnq]{Font of Magic}\n\n\n3rd\n+2\n3\n2nd Level Spell Slot, @Compendium[dnd5e.classfeatures.9Uh7uTDNZ04oTJsL]{Metamagic}\n\n\n4th\n+2\n4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n5th\n+3\n5\n3rd Level Spell Slot\n\n\n6th\n+3\n6\nSorcerous Origin feature\n\n\n7th\n+3\n7\n4th Level Spell Slot\n\n\n8th\n+3\n8\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n9th\n+4\n9\n5th Level Spell Slot\n\n\n10th\n+4\n10\n@Compendium[dnd5e.classfeatures.9Uh7uTDNZ04oTJsL]{Metamagic improvement}\n\n\n11th\n+4\n11\n6th Level Spell Slot\n\n\n12th\n+4\n12\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n13\n7th Level Spell Slot\n\n\n14th\n+5\n14\nSorcerous Origin feature\n\n\n15th\n+5\n15\n8th Level Spell Slot\n\n\n16th\n+5\n16\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n17\n9th Level Spell Slot, @Compendium[dnd5e.classfeatures.9Uh7uTDNZ04oTJsL]{Metamagic improvement}\n\n\n18th\n+6\n18\nSorcerous Origin feature\n\n\n19th\n+6\n19\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\n20\n@Compendium[dnd5e.classfeatures.F2lEKSmOY0NUruzY]{Sorcerous Restoration}\n\n\n\nSorcerous Origins\nDifferent sorcerers claim different origins for their innate magic, such as a draconic bloodline.\n@Compendium[dnd5e.subclasses.2nadB2MBSHTQ0kcl]{Draconic Bloodline}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"sorcerer","levels":1,"hitDice":"d6","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"DApymaBEK5mRxfNB"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.oygRF3ZjTv2T7z0Y","Compendium.dnd5e.classfeatures.cmRCL9T9UgRYOj1c"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"I6RIW8FArEkBLA3G":"Compendium.dnd5e.classfeatures.oygRF3ZjTv2T7z0Y","PnwXvKH6tQ3n7iIo":"Compendium.dnd5e.classfeatures.cmRCL9T9UgRYOj1c"}},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"OBdl50eixXnMFiLx"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.LBKChJY5n02Afhnq"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"wdT9gICkh5C1dvRf"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.9Uh7uTDNZ04oTJsL"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"debnsoWaePGMFTsP"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.F2lEKSmOY0NUruzY"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"E63M77FOFglremIz"},{"type":"ItemChoice","configuration":{"hint":"","choices":{"3":2,"10":1,"17":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.zElYrOcCFFMhB6Xl","Compendium.dnd5e.classfeatures.DZpAa3LzMNBexbmX","Compendium.dnd5e.classfeatures.IWpe0Y9uAStHGiH1","Compendium.dnd5e.classfeatures.tQxlKyAx9sgPrbgj","Compendium.dnd5e.classfeatures.tNG2qi9zhmXEkecA","Compendium.dnd5e.classfeatures.nViGf6bZ6DQAJhkw","Compendium.dnd5e.classfeatures.fXa0DMhoVLtbBu9l","Compendium.dnd5e.classfeatures.Qb391hakCfmH4w8p"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"metamagic","level":""}},"value":{},"title":"Metamagic","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"qyEuGrV1iPQx2Vxp"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":4},"4":{"value":5},"10":{"value":6}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"msOSJINvKQaCLmfM"},{"type":"ScaleValue","configuration":{"identifier":"spells-known","type":"number","distance":{"units":""},"scale":{"1":{"value":2},"2":{"value":3},"3":{"value":4},"4":{"value":5},"5":{"value":6},"6":{"value":7},"7":{"value":8},"8":{"value":9},"9":{"value":10},"10":{"value":11},"11":{"value":12},"13":{"value":13},"15":{"value":14},"17":{"value":15}}},"value":{},"title":"Spells Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"PhRvVmP2BpNCBfUy"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"BPdfOtpBTKQcxJCl"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"mVm5NO21p7Le9XRQ"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"oQc3e4xSTKM3LJfr"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"idqBSjclkmTGLcoH"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["con","cha"],"skills":{"number":2,"choices":["arc","dec","ins","itm","per","rel"],"value":[]},"spellcasting":{"progression":"full","ability":"cha"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.6T08zzKtmmpVwlXU"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234275,"modifiedTime":1691519120869,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"I6RIW8FArEkBLA3G","name":"Spellcasting (Sorcerer)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"An event in your past, or in the life of a parent or ancestor, left an indelible mark on you, infusing you with arcane magic. This font of magic, whatever its origin, fuels your spells.\nCantrips\nAt 1st level, you know four cantrips of your choice from the sorcerer spell list. You learn additional sorcerer cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Sorcerer table.\nSpell Slots\nThe Sorcerer table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these sorcerer spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nFor example, if you know the 1st-level spell burning hands and have a 1st-level and a 2nd-level spell slot available, you can cast burning hands using either slot.\nSpells Known of 1st Level and Higher\nYou know two 1st-level spells of your choice from the sorcerer spell list.\nThe Spells Known column of the Sorcerer table shows when you learn more sorcerer spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.\nAdditionally, when you gain a level in this class, you can choose one of the sorcerer spells you know and replace it with another spell from the sorcerer spell list, which also must be of a level for which you have spell slots.\nSpellcasting Ability\nCharisma is your spellcasting ability for your sorcerer spells, since the power of your magic relies on your ability to project your will into the world. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a sorcerer spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Charisma modifier\nSpell attack modifier = your proficiency bonus + your Charisma modifier\nSpellcasting Focus\nYou can use an arcane focus as a spellcasting focus for your sorcerer spells.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Sorcerer 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.oygRF3ZjTv2T7z0Y","advancementOrigin":"Ig5YOxEOabGaTjG5.OBdl50eixXnMFiLx"}},"img":"icons/magic/unholy/strike-hand-glow-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234424,"modifiedTime":1691519120870,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"PnwXvKH6tQ3n7iIo","name":"Sorcerous Origins","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Choose a sorcerous origin, which describes the source of your innate magical power, such as Draconic Bloodline.Your choice grants you features when you choose it at 1st level and again at 6th, 14th, and 18th level.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Sorcerer 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.cmRCL9T9UgRYOj1c","advancementOrigin":"Ig5YOxEOabGaTjG5.OBdl50eixXnMFiLx"}},"img":"icons/magic/air/wind-vortex-swirl-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234397,"modifiedTime":1691519120870,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"oO4FCdIDwsr4VTb3","name":"Dragon Ancestor","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 1st level, you choose one type of dragon as your ancestor. The damage type associated with each dragon is used by features you gain later.DragonDamage TypeBlackAcidBlueLightningBrassFireBronzeLightningCopperAcidGoldFireGreenPoisonRedFireSilverColdWhiteColdYou can speak, read, and write Draconic. Additionally, whenever you make a Charisma check when interacting with dragons, your proficiency bonus is doubled if it applies to the check.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Draconic Bloodline 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.EZsonMThTNLZq35j","advancementOrigin":"f3p50jjvtk2ao61n.bjbipb2oydq3zsuy"}},"img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","effects":[{"_id":"xI5jjbA2Dlj7L0cd","changes":[{"key":"system.traits.languages.value","mode":2,"value":"draconic","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/abilities/dragon-fire-breath-orange.webp","label":"Dragon Ancestor","origin":"Item.EZsonMThTNLZq35j","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234352,"modifiedTime":1691519120871,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"o0wsV8JAuT6FUDAt","name":"Draconic Resilience","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As magic flows through your body, it causes physical traits of your dragon ancestors to emerge. At 1st level, your hit point maximum increases by 1 and increases by 1 again whenever you gain a level in this class.Additionally, parts of your skin are covered by a thin sheen of dragon-like scales. When you aren't wearing armor, your AC equals 13 + your Dexterity modifier.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Draconic Bloodline 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.MW1ExvBLm8Hg82aA","advancementOrigin":"f3p50jjvtk2ao61n.bjbipb2oydq3zsuy"}},"img":"icons/creatures/claws/claw-scaled-red.webp","effects":[{"_id":"Pu89Tsgy2FJjYPQi","changes":[{"key":"system.attributes.ac.calc","mode":5,"value":"draconic","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/claws/claw-scaled-red.webp","label":"Draconic Resilience","origin":"Item.MW1ExvBLm8Hg82aA","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234366,"modifiedTime":1691519120872,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"xI5jjbA2Dlj7L0cd","changes":[{"key":"system.traits.languages.value","mode":2,"value":"draconic","priority":null}],"disabled":false,"duration":{"startTime":0,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/abilities/dragon-fire-breath-orange.webp","label":"Dragon Ancestor","origin":"Compendium.dnd5e.heroes.xT2C2Itv2XambDYp.Item.oO4FCdIDwsr4VTb3","transfer":false,"flags":{},"tint":null,"sort":0},{"_id":"Pu89Tsgy2FJjYPQi","changes":[{"key":"system.attributes.ac.calc","mode":5,"value":"draconic","priority":null}],"disabled":false,"duration":{"startTime":0,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/claws/claw-scaled-red.webp","label":"Draconic Resilience","origin":"Compendium.dnd5e.heroes.xT2C2Itv2XambDYp.Item.o0wsV8JAuT6FUDAt","transfer":false,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787232194,"modifiedTime":1691519120928,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Beiro (Half-Elf Bard)","type":"character","img":"","system":{"abilities":{"str":{"value":8,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":1,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":10,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""},"min":0},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"Beiro was a famed entertainer at his local tavern, when he one day ran out of stories to tell. To solve this, he set out to make his own stories, so as to one day tell them again at his tavern.\n","public":""},"alignment":"Chaotic Neutral","race":"Half Elf","background":"","originalClass":"jRCTm0gBRZHs1hc7","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":"Magic can't put you to sleep; Advantage on saving throws against being charmed"},"languages":{"value":["common","elvish","gnomish"],"custom":""},"weaponProf":{"value":["sim","handcrossbow","longsword","rapier","shortsword"],"custom":""},"armorProf":{"value":["lgt"],"custom":""},"toolProf":{"value":[],"custom":"Flute; Lyre; Drums; Lute"}},"currency":{"pp":0,"gp":15,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{},"spells":{"spell1":{"value":2,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Beiro","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"iWdMYgNBkGiajzc4","name":"Musical Instrument: Lute","type":"tool","system":{"description":{"value":"A lute to evoke awe, wonder, or fear in your audience.If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":35,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"","ability":"cha","chatFlavor":"","proficient":1,"bonus":""},"sort":0,"flags":{},"img":"icons/tools/instruments/lute-gold-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2Ejl2ovEUJg7swzL","name":"Musical Instrument: Flute","type":"tool","system":{"description":{"value":"A lute to evoke awe, wonder, or fear in your audience.If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"","ability":"cha","chatFlavor":"","proficient":1,"bonus":""},"sort":0,"flags":{},"img":"icons/tools/instruments/flute-simple-wood.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TM6CyNpWtV8f0KAw","name":"Chest","type":"backpack","system":{"description":{"value":"A chest holds 12 cubic feet or 300 pounds of gear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":25,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":300,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.2YbuclKfhDL0bU4u"}},"img":"icons/containers/chest/chest-reinforced-steel-walnut-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Cj6MP46nIu5amhsZ","name":"Map or Scroll Case","type":"backpack","system":{"description":{"value":"This cylindrical leather case can hold up to ten rolled-up sheets of paper or five rolled-up sheets of parchment.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":2,"weight":1,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"items","value":10,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.5mIeX824uMklU3xq"}},"img":"icons/containers/bags/case-leather-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jNOSoW0La7Bk4vXk","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NjSGXfLGqF3ZRlGk","name":"Pouch","type":"backpack","system":{"description":{"value":"A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":6,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.9bWTRRDym06PzSAf"}},"img":"icons/containers/bags/coinpouch-simple-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641146,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"mTNjAEl1w1zwR5BT","name":"Disguise Kit","type":"tool","system":{"description":{"value":"This pouch of cosmetics, hair dye, and small props lets you create disguises that change your physical appearance. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a visual disguise.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"","ability":"int","chatFlavor":"","proficient":1,"bonus":""},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.IBhDAr7WkhWPYLVn"}},"img":"icons/equipment/back/cloak-hooded-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DPTz84c6sWcBSuQg","name":"Dagger","type":"weapon","system":{"description":{"value":"A short metal blade mounted to a small hilt and crossguard. The dagger makes an effective side armament for hardened warriors or a hidden blade for assassins and thieves.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.0E565kQUBmndJ1a2"}},"img":"icons/weapons/daggers/dagger-jeweled-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vRbfWjO0wkfi2EUS","name":"Rapier","type":"weapon","system":{"description":{"value":"A thin tensile metal blade, light in weight but long in reach designed for quick darting attacks to target weak points in enemy defenses with lightning swiftness.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Tobce1hexTnDk4sV"}},"img":"icons/weapons/swords/sword-guard-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QeJyd2v24zGDwXbq","name":"Leather Armor","type":"equipment","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"img":"icons/equipment/chest/breastplate-quilted-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"N3Ya1Qmpj8fmK8eU","name":"Costume Clothes","type":"equipment","system":{"description":{"value":"A complete costume usually used by performers and artists in all manner of entertainment halls or for those that simply refuse to get out of character.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.E2h6sEe6FU2tnU96"}},"img":"icons/equipment/back/cloak-hooded-pink.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OoQ9lTEooaOlQQaV","name":"Fine Clothes","type":"equipment","system":{"description":{"value":"Set of clothes designed specifically to be expensive and show it.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3OXueEpvDDCVfGFA"}},"img":"icons/equipment/back/cloak-heavy-fur-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wvxh8eOWg3RAJFoH","name":"Oil Flask","type":"consumable","system":{"description":{"value":"Oil usually comes in a clay flask that holds 1 pint. As an action, you can splash the oil in this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact. Make a ranged attack against a target creature or object, treating the oil as an improvised weapon.On a hit, the target is covered in oil. If the target takes any fire damage before the oil dries (after 1 minute), the target takes an additional 5 fire damage from the burning oil. You can also pour a flask of oil on the ground to cover a 5-foot-square area, provided that the surface is level.If lit, the oil burns for 2 rounds and deals 5 fire damage to any creature that enters the area or ends its turn in the area. A creature can take this damage only once per turn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":2,"weight":1,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":20,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.psoZaItkOScMVaHL"}},"img":"icons/consumables/potions/bottle-bulb-empty-glass.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641154,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"RXlNK5wqC22ZojbN","name":"Lamp","type":"consumable","system":{"description":{"value":"A lamp casts bright light in a 15-foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"6","units":"hour"},"cover":null,"crewed":false,"target":{"value":45,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.qMzHmlmha8qMDnEF"}},"img":"icons/commodities/treasure/lantern-stone-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641163,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"6JFzrzKtJyhU12xi","name":"Musical Instrument: Drum","type":"tool","system":{"description":{"value":"A drum, of any variety, to evoke awe, wonder, or fear in your audience.If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":6,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"","ability":"cha","chatFlavor":"","proficient":1,"bonus":""},"sort":0,"flags":{},"img":"icons/tools/instruments/drum-brown-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8pii9UucawKvfDsM","name":"Ink Pen","type":"loot","system":{"description":{"value":"A deviced used in combination with ink to write or draw on a sheet of paper.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.uVm7MiB71QblfnoY"}},"img":"icons/commodities/materials/feather-red-.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647682,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"9vSJX7VXZLXkXLVs","name":"Ink Bottle","type":"loot","system":{"description":{"value":"A small bottle of ink for writing upon parchment.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.06,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.dP7jMKyHTTgVb3ii"}},"img":"icons/consumables/potions/bottle-bulb-empty-glass.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VWdmspSsWBrQ85hx","name":"Paper","type":"loot","system":{"description":{"value":"A single sheet of paper.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":5,"weight":0,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.fNMkFCOvMiW2Rh3t"}},"img":"icons/sundries/documents/document-bound-white.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641180,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MgZvqEEt5jUtHG5d","name":"Perfume","type":"loot","system":{"description":{"value":"A vial of aromatic perfume.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.uuh4UH3Jx5CsFjdA"}},"img":"icons/consumables/potions/bottle-bulb-corked-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"833SKFj28K9Jzhzf","name":"Soap","type":"loot","system":{"description":{"value":"Used to clean and wash.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.REBWkTKe6lJaIkpn"}},"img":"icons/sundries/survival/soap.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647692,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"80Gaz3MRLsMImA2r","name":"Sealing Wax","type":"loot","system":{"description":{"value":"A wax material of a seal which, after melting, hardens quickly forming a bond that is difficult to separate without noticeable tampering.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3uEyuCfnAzGkwAn5"}},"img":"icons/sundries/lights/candle-unlit-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641233,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pEDdh0i2HBhReeuU","name":"Love Letter","type":"loot","system":{"description":{"value":"A love letter sent by an admirer.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/sundries/scrolls/scroll-plain-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"IUsB73tFTMjgMbFv","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641244,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"AtTEyddbePRRDUtT","name":"Fey Ancestry","type":"feat","system":{"description":{"value":"You have advantage on saving throws against being charmed, and magic can't put you to sleep.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Elf, Half-Elf","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LvSBjRKoCAKaAnQy"}},"img":"icons/creatures/mammals/elk-moose-marked-green.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qK44BbnaFcoZMhDn","name":"Half-Elf","type":"feat","system":{"description":{"value":"\n\n\nYour half-elf character has some qualities in common with elves and some that are unique to half-elves. Ability Score Increase. Your Charisma score increases by 2, and two other ability scores of your choice increase by 1.Age. Half-elves mature at the same rate humans do and reach adulthood around the age of 20. They live much longer than humans, however, often exceeding 180 years.Alignment. Half-elves share the chaotic bent of their elven heritage. They value both personal freedom and creative expression, demonstrating neither love of leaders nor desire for followers. They chafe at rules, resent others' demands, and sometimes prove unreliable, or at least unpredictable.\n\n\n\nSize. Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Thanks to your elf blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Fey Ancestry. @Compendium[dnd5e.races.cnTbpPPeGW7vGjOV]{Fey Ancestry} You have advantage on saving throws against being charmed, and magic can't put you to sleep.Skill Versatility. You gain proficiency in two skills of your choice.Languages. You can speak, read, and write Common, Elvish, and one extra language of your choice.\n\n\n\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.Hye5IZwPOSwV0qRR"}},"img":"icons/magic/nature/leaf-glow-triple-teal.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Bnn9Nzajixvow9xi","name":"Light","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A firefly or phosphorescent moss.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Bnn9Nzajixvow9xi"}},"img":"icons/magic/light/explosion-star-small-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486304,"modifiedTime":1661603486304,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Utk1OQRwYkMkFRD3","name":"Mage Hand","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.The hand can't attack, activate magic items, or carry more than 10 pounds.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Utk1OQRwYkMkFRD3"}},"img":"icons/magic/water/water-hand.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486305,"modifiedTime":1661603486305,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"eS7XnnApoxRxYXPs","name":"Charm Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to charm a humanoid you can see within range. It must make a Wisdom saving throw, and does so with advantage if you or your companions are fighting it. If it fails the saving throw, it is charmed by you until the spell ends or until you or your companions do anything harmful to it. The charmed creature regards you as a friendly acquaintance. When the spell ends, the creature knows it was charmed by you.\n At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.eS7XnnApoxRxYXPs"}},"img":"icons/magic/fire/explosion-fireball-medium-purple-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486305,"modifiedTime":1661603486305,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"A3q2gTNqG6fvNGrv","name":"Disguise Self","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You make yourself—including your clothing, armor, weapons, and other belongings on your person—look different until the spell ends or until you use your action to dismiss it. You can seem 1 foot shorter or taller and can appear thin, fat, or in between. You can't change your body type, so you must adopt a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you.The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to your outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel your head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair.To discern that you are disguised, a creature can use its action to inspect your appearance and must succeed on an Intelligence (Investigation) check against your spell save DC.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.A3q2gTNqG6fvNGrv"}},"img":"icons/magic/control/debuff-energy-hold-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486305,"modifiedTime":1661603486305,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ge3Saet9zPTDyaoL","name":"Heroism","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A willing creature you touch is imbued with bravery. Until the spell ends, the creature is immune to being Frightened and gains Temporary Hit Points equal to your Spellcasting ability modifier at the start of each of its turns. When the spell ends, the target loses any remaining temporary hit points from this spell.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@mod","temphp"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ge3Saet9zPTDyaoL"}},"img":"icons/magic/life/heart-cross-strong-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486306,"modifiedTime":1661603486306,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"BQk5Row4NymMnUQl","name":"Hideous Laughter","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature of your choice that you can see within range perceives everything as hilariously funny and falls into fits of laughter if this spell affects it. The target must succeed on a Wisdom saving throw or fall prone, becoming Incapacitated and unable to stand up for the Duration. A creature with an Intelligence score of 4 or less isn't affected.At the end of each of its turns, and each time it takes damage, the target can make another Wisdom saving throw. The target has advantage on the saving throw if it's triggered by damage. On a success, the spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Tiny tarts and a feather that is waved in the air","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.BQk5Row4NymMnUQl"}},"img":"icons/magic/fire/explosion-fireball-medium-purple-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486306,"modifiedTime":1661603486306,"lastModifiedBy":"dnd5ebuilder0000"}},{"name":"Musician","type":"background","system":{"description":{"value":"Skill Proficiencies: Acrobatics, PerformanceTool Proficiencies: Disguise kit, one type of musical instrumentEquipment: A musical instrument, a note from an admirer, and a pouch containing 15 gp","chat":"","unidentified":""},"source":"","advancement":[]},"img":"icons/tools/instruments/harp-gold-glowing.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040818193,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"VgrH5nkz2SER0YhR"},{"_id":"jRCTm0gBRZHs1hc7","name":"Bard","type":"class","img":"icons/skills/toxins/cup-goblet-poisoned-spilled.webp","system":{"description":{"value":"As a bard, you gain the following class features.Hit PointsHit Dice: 1d8 per bard levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per bard level after 1stProficienciesArmor: Light armorWeapons: Simple weapons, hand crossbows, longswords, rapiers, shortswordsTools: Three musical instruments of your choiceSaving Throws: Dexterity, CharismaSkills: Choose any threeEquipmentYou start with the following equipment, in addition to the equipment granted by your background:(a) a rapier, (b) a longsword, or (c) any simple weapon(a) a diplomat's pack or (b) an entertainer's pack(a) a lute or (b) any other musical instrumentLeather armor and a daggerBard AdvancementLevelProficiency BonusFeatures1st+2@Compendium[dnd5e.classfeatures.u4NLajXETJhJU31v]{Spellcasting}, @Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiration (d6)}2nd+2@Compendium[dnd5e.classfeatures.ezWijmCnlnQ9ZRX2]{Jack of All Trades}, @Compendium[dnd5e.classfeatures.he8RpPXwSl2lVSIk]{Song of Rest (d6)}3rd+2@Compendium[dnd5e.classfeatures.ILhzFHiRrqgQ9dFJ]{Bard College} @Compendium[dnd5e.classfeatures.aQLg7BWdRnm4Hr9S]{Expertise}4th+2@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}5th+3@Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiration (d8)}, @Compendium[dnd5e.classfeatures.3VDZGs5Ug3hIE322]{Font of Inspiration}6th+3@Compendium[dnd5e.classfeatures.SEJmsjkEhdAZ90ki]{Countercharm}, Bard College feature7th+34th Level Spell Slot8th+3@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}9th+45th Level Spell Slot @Compendium[dnd5e.classfeatures.he8RpPXwSl2lVSIk]{Song of Rest (d8)}10th+4@Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiration (d10)}, @Compendium[dnd5e.classfeatures.aQLg7BWdRnm4Hr9S]{Expertise}, @Compendium[dnd5e.classfeatures.aonJ2YjkqkYB9WYB]{Magical Secrets}11th+46th Level Spell Slot12th+4@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}13th+57th Level Spell Slot, @Compendium[dnd5e.classfeatures.he8RpPXwSl2lVSIk]{Song of Rest (d10)}14th+5@Compendium[dnd5e.classfeatures.aonJ2YjkqkYB9WYB]{Magical Secrets}, Bard College feature15th+58th Level Spell Slot, @Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiration (d12)}16th+5@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}17th+69th Level Spell Slot, @Compendium[dnd5e.classfeatures.he8RpPXwSl2lVSIk]{Song of Rest (d12)}18th+6@Compendium[dnd5e.classfeatures.aonJ2YjkqkYB9WYB]{Magical Secrets}19th+6@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}20th+6@Compendium[dnd5e.classfeatures.GBYN5rH4nh1ocRlY]{Superior Inspiration}Bard Colleges@Compendium[dnd5e.subclasses.MNvsEc4D2ccX7dQT]{College of Lore}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"bard","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"EKTLkOHo2TCW7XIf"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.u4NLajXETJhJU31v","Compendium.dnd5e.classfeatures.hpLNiGq7y67d2EHA"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"68Ddyvt01lMQMzxs":"Compendium.dnd5e.classfeatures.u4NLajXETJhJU31v","YbNSECwaQYGzHnfL":"Compendium.dnd5e.classfeatures.hpLNiGq7y67d2EHA"}},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"DAnM5n0F9nUkY15I"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ezWijmCnlnQ9ZRX2","Compendium.dnd5e.classfeatures.he8RpPXwSl2lVSIk"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"sMIJRB5FeIM1OsMt"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ILhzFHiRrqgQ9dFJ","Compendium.dnd5e.classfeatures.aQLg7BWdRnm4Hr9S"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"UxQ9cTOrazRMUpV0"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.3VDZGs5Ug3hIE322"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"DNqlO4gPAhwh1FEN"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.SEJmsjkEhdAZ90ki"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"WfrWYWix0JbCl6OP"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.aonJ2YjkqkYB9WYB"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"JKqujV3gQ79K1PM8"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.GBYN5rH4nh1ocRlY"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"Z1lpPlUMZns8euiD"},{"type":"ItemChoice","configuration":{"hint":"Choose two spells from any classes, including this one. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip.","choices":{"10":2,"14":2,"18":2},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"","subtype":"","level":"available"}},"value":{},"title":"Magical Secrets","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"MhSKzQVlKtFtH3xB"},{"type":"ScaleValue","configuration":{"identifier":"inspiration","type":"dice","distance":{"units":""},"scale":{"1":{"number":null,"faces":6},"5":{"number":null,"faces":8},"10":{"number":null,"faces":10},"15":{"number":null,"faces":12}}},"value":{},"title":"Bardic Inspiration Die","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"kyjFphgByFS4mPlw"},{"type":"ScaleValue","configuration":{"identifier":"song-of-rest","type":"dice","distance":{"units":""},"scale":{"2":{"number":null,"faces":6},"9":{"number":null,"faces":8},"13":{"number":null,"faces":10},"17":{"number":null,"faces":12}}},"value":{},"title":"Song of Rest Die","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"gdwtEVYkO44OCABo"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":2},"4":{"value":3},"10":{"value":4}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"Nz0ud8hOAINqJKZ1"},{"type":"ScaleValue","configuration":{"identifier":"spells-known","type":"number","distance":{"units":""},"scale":{"1":{"value":4},"2":{"value":5},"3":{"value":6},"4":{"value":7},"5":{"value":8},"6":{"value":9},"7":{"value":10},"8":{"value":11},"9":{"value":12},"10":{"value":14},"11":{"value":15},"13":{"value":16},"14":{"value":18},"15":{"value":19},"17":{"value":20},"18":{"value":22}}},"value":{},"title":"Spells Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"aJhQOoccPAza9Cuq"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"Jy2URg8R3ETmmoFv"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"j8sWjSvQ4Gpq0nX0"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"VLxmhsFQAlTL0B8S"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"z2Caf1jETQT5k0WL"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0}},"value":{"type":"asi"},"level":19,"title":""}],"saves":["dex","cha"],"skills":{"number":3,"choices":["acr","ani","arc","ath","dec","his","ins","itm","inv","med","nat","prc","per","prf","rel","slt","ste","sur"],"value":[]},"spellcasting":{"progression":"full","ability":"cha"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.ILvRZGEx3aXqSVUt"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234279,"modifiedTime":1691519060054,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"68Ddyvt01lMQMzxs","name":"Spellcasting (Bard)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have learned to untangle and reshape the fabric of reality in harmony with your wishes and music. Your spells are part of your vast repertoire, magic that you can tune to different situations.\nCantrips\nYou know two cantrips of your choice from the bard spell list. You learn additional bard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Bard table.\nSpell Slots\nThe Bard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nFor example, if you know the 1st-level spell cure wounds and have a 1st-level and a 2nd-level spell slot available, you can cast cure wounds using either slot.\nSpells Known of 1st Level and Higher\nYou know four 1st-level spells of your choice from the bard spell list.\nThe Spells Known column of the Bard table shows when you learn more bard spells of your choice. Each of these spells must be of a level for which you have spell slots, as shown on the table. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.\nAdditionally, when you gain a level in this class, you can choose one of the bard spells you know and replace it with another spell from the bard spell list, which also must be of a level for which you have spell slots.\nSpellcasting Ability\nCharisma is your spellcasting ability for your bard spells. Your magic comes from the heart and soul you pour into the performance of your music or oration. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a bard spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Charisma modifier\nSpell attack modifier = your proficiency bonus + your Charisma modifier\nRitual Casting\nYou can cast any bard spell you know as a ritual if that spell has the ritual tag.\nSpellcasting Focus\nYou can use a musical instrument (see @UUID[Compendium.dnd5e.rules.BYFd9hiJGo9L5aOM.JournalEntryPage.AjavRU4yPfI9hfaI]{Adventuring Gear})) as a spellcasting focus for your bard spells.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.u4NLajXETJhJU31v","advancementOrigin":"jRCTm0gBRZHs1hc7.DAnM5n0F9nUkY15I"}},"img":"icons/magic/symbols/runes-carved-stone-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234434,"modifiedTime":1691519060056,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"YbNSECwaQYGzHnfL","name":"Bardic Inspiration","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can inspire others through stirring words or music. To do so, you use a bonus action on your turn to choose one creature other than yourself within 60 feet of you who can hear you. That creature gains one Bardic Inspiration die, a d6. Once within the next 10 minutes, the creature can roll the die and add the number rolled to one ability check, attack roll, or saving throw it makes. The creature can wait until after it rolls the d20 before deciding to use the Bardic Inspiration die, but must decide before the GM says whether the roll succeeds or fails. Once the Bardic Inspiration die is rolled, it is lost. A creature can have only one Bardic Inspiration die at a time.You can use this feature a number of times equal to your Charisma modifier (a minimum of once).You regain any expended uses when you finish a long rest.Your Bardic Inspiration die changes when you reach certain levels in this class. The die becomes a d8 at 5th level, a d10 at 10th level, and a d12 at 15th level.Foundry NoteRecovery is set to long rest (for levels before @Compendium[dnd5e.classfeatures.3VDZGs5Ug3hIE322]{Font of Inspiration} is gained). Please manually adjust as required.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"max(1, @abilities.cha.mod)","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1@scale.bard.inspiration","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.hpLNiGq7y67d2EHA","advancementOrigin":"jRCTm0gBRZHs1hc7.DAnM5n0F9nUkY15I"}},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234409,"modifiedTime":1691519060057,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"xVmbM44RXyI2Eqq3","_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787232198,"modifiedTime":1691519060073,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Perrin (Halfling Monk)","type":"character","img":"","system":{"abilities":{"str":{"value":8,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"unarmoredMonk","formula":""},"hp":{"value":9,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""}},"init":{"ability":"","bonus":"0"},"movement":{"burrow":null,"climb":null,"fly":null,"swim":null,"walk":null,"units":null,"hover":false},"attunement":{"max":3},"senses":{"darkvision":null,"blindsight":null,"tremorsense":null,"truesight":null,"units":null,"special":""},"spellcasting":"int","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"A devoted student of his local monastery, Perrin has been tasked with bringing balance to the surrounding lands.","public":""},"alignment":"True Neutral","race":"6JOg9xYjafGcdHnY","background":null,"originalClass":"ckabMZ0IHcAMt16f","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":"Advantage against being frightenned"},"languages":{"value":["celestial","draconic","common","halfling"],"custom":""},"weaponProf":{"value":["sim","shortsword"],"custom":""},"armorProf":{"value":[],"custom":""},"toolProf":{"value":[],"custom":""}},"currency":{"pp":0,"gp":15,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{"art":{"value":1,"ability":"int","bonuses":{"check":""}},"brewer":{"value":1,"ability":"int","bonuses":{"check":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":true,"lr":true,"label":"Ki"},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Perrin","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":5,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"T46tnnPLPLqZD4y6","name":"Shortsword","type":"weapon","system":{"description":{"value":"A medium sized blade with a firm crossguard and a leather-wrapped handle. A versatile weapon which makes up in versatility what it lacks in reach.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.osLzOwQdPtrK3rQH"}},"img":"icons/weapons/swords/sword-guard-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CGrcakEeW3p91uA3","name":"Dart","type":"weapon","system":{"description":{"value":"A small thrown implement crafted with a short wooden shaft and crossed feathres with a sharp wooden or metal tip. Darts can be thrown with sufficient force to puncture the skin.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"fin":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3rCO8MTIdPGSW6IJ"}},"img":"icons/weapons/ammunition/arrows-war-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647459,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"tk47HuZ9KhhG6oyE","name":"Darts","type":"consumable","system":{"description":{"value":"A small thrown implement crafted with a short wooden shaft and crossed feathres with a sharp wooden or metal tip. Darts can be thrown with sufficient force to puncture the skin.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":0.25,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo","properties":{}},"sort":0,"flags":{},"img":"icons/weapons/ammunition/arrows-war-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647467,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"yGOuEfl6dj9SEEnz","name":"Reliquary","type":"equipment","system":{"description":{"value":"A tiny box or other container holding a fragment of a precious relic, saint, or other historical figure that dedicated their life to walk the path of a true believer. A deity imbues the bearer of this artifact with the ability to call forth their power and in doing so spread the faith once more.Spellcasting Focus. A cleric or paladin can use a holy symbol as a spellcasting focus. To use the symbol in this way, the caster must hold it in hand, wear it visibly, or bear it on a shield.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"special","cost":null,"condition":"Holy symbol must be clearly visible."},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"trinket","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.gP1URGq3kVIIFHJ7"}},"img":"icons/containers/chest/chest-reinforced-steel-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kv2sjsn0DjC73m10","name":"Common Clothes","type":"equipment","system":{"description":{"value":"Clothes worn by most commoners.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.8RXjiddJ6VGyE7vB"}},"img":"icons/equipment/chest/shirt-collared-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640220,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"l0vkpRTijWpKpchS","name":"Vestments","type":"equipment","system":{"description":{"value":"Simple or ostentacious wear, often used by priests and other religious figures for use in rituals and ceremonies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.irtqrzaUCeshmTZp"}},"img":"icons/equipment/back/mantle-collared-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BZHvYtMOT8o79DUP","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xF9FAqgCFIgs9uYh","name":"Pouch","type":"backpack","system":{"description":{"value":"A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":6,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.9bWTRRDym06PzSAf"}},"img":"icons/containers/bags/coinpouch-simple-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640234,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"meouv7TcVXCuHTzN","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640246,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"QMrV3LGEMAq9rbrk","name":"Waterskin","type":"consumable","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Uv0ilmzbWvqmlCVH"}},"img":"icons/sundries/survival/wetskin-leather-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640253,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"83igOLLYFTQt2l2h","name":"Prayer Book","type":"loot","system":{"description":{"value":"A book containing prayers and incantations dedicated to a specific power for the faithful to follow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.odV5cq2HSLSCH69k"}},"img":"icons/sundries/books/book-backed-silver-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"cOYjvBsIwGnv4yTR","name":"Stick of Incense","type":"loot","system":{"description":{"value":"When blocks of incense cannot be used or a cheaper alternative is required, people often use these to perfume the air, whether for pleasurable or religious purposes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":5,"weight":0,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3b0RvGi0TnTYpIxn"}},"img":"icons/commodities/wood/bamboo-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640262,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"tphiFNpeptbQBjm5","name":"Crowbar","type":"loot","system":{"description":{"value":"Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.V5UAjT3ed6sDNtgm"}},"img":"icons/tools/hand/pickaxe-steel-white.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"w6feWChZCGt6ZolS","name":"Hammer","type":"loot","system":{"description":{"value":"A tool with heavy metal head mounted ar the right angles at the end of a handle, used for job such as breaking things and driving in nails. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.14pNRT4sZy9rgvhb"}},"img":"icons/tools/smithing/hammer-sledge-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Tk7cT2wr9WlVBPLT","name":"Piton","type":"consumable","system":{"description":{"value":"A metal spike that is drive into a seam in a climbing surface with a climbing hammer. It can also be used like iron spikes to block doors in a pinch.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":0.25,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.TqyvIglHDj5kfohR"}},"img":"icons/sundries/survival/stake-rough-simple-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647473,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Xa8diQyGckThAtTL","name":"Torch","type":"consumable","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":40,"width":null,"units":"ft","type":"radius","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.BnOCLuNWhVvzHLjl"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647480,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"v8UvDhKdwqShRnX7","name":"Tinderbox","type":"loot","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DNOSEAvF4Oh1DlWy"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640283,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"D7cvC9lq7qUdvoUr","name":"Hempen Rope (50 ft.)","type":"consumable","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QXmaarJ4X8P0C1HV"}},"img":"icons/sundries/survival/rope-wrapped-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"name":"Priest","type":"background","system":{"description":{"value":"Skill Proficiencies: Insight, ReligionLanguages: Two of your choiceEquipment: A holy symbol, 5 sticks of incense, prayer book, vestments, a set of common clothes, and a pouch containing 15 gp.","chat":"","unidentified":""},"source":{"custom":"","book":"","page":"","license":"CC-BY-4.0"},"advancement":[]},"img":"icons/sundries/documents/document-torn-diagram-tan.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040726622,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"q4tr1vTU8RxtU1UZ"},{"_id":"ckabMZ0IHcAMt16f","name":"Monk","type":"class","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"As a monk, you gain the following class features.\nHit Points\nHit Dice: 1d8 per monk levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per monk level after 1st\nProficiencies\nArmor: NoneWeapons: Simple weapons, shortswordsTools: Choose one type of artisan's tools or one musical instrumentSaving Throws: Strength, DexteritySkills: Choose two from Acrobatics, Athletics, History, Insight, Religion, and Stealth\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a shortsword or (b) any simple weapon\n(a) a dungeoneer's pack or (b) an explorer's pack\n10 darts\n\nMonk Advancement\n\n\n\nLevel\nProficiency Bonus\nMartial Arts\nKi Points\nUnarmored Movement\nFeatures\n\n\n\n\n1st\n+2\n1d4\n—\n—\n@Compendium[dnd5e.classfeatures.UAvV7N7T4zJhxdfI]{Unarmored Defense}, @Compendium[dnd5e.classfeatures.l50hjTxO2r0iecKw]{Martial Arts}\n\n\n2nd\n+2\n1d4\n2\n+10 ft.\n@Compendium[dnd5e.classfeatures.10b6z2W1txNkrGP7]{Ki}, @Compendium[dnd5e.classfeatures.zCeqyQ8uIPNdYJSW]{Unarmored Movement}\n\n\n3rd\n+2\n1d4\n3\n+10 ft.\n@Compendium[dnd5e.classfeatures.rtpQdX77dYWbDIOH]{Monastic Tradition}, @Compendium[dnd5e.classfeatures.mzweVbnsJPQiVkAe]{Deflect Missiles}\n\n\n4th\n+2\n1d4\n4\n+10 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}, @Compendium[dnd5e.classfeatures.KQz9bqxVkXjDl8gK]{Slow Fall}\n\n\n5th\n+3\n1d6\n5\n+10 ft.\n@Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}, @Compendium[dnd5e.classfeatures.pvRc6GAu1ok6zihC]{Stunning Strike}\n\n\n6th\n+3\n1d6\n6\n+15 ft.\n\n@Compendium[dnd5e.classfeatures.7flZKruSSu6dHg6D]{Ki-Empowered Strikes},\nMonastic Tradition feature\n\n\n\n7th\n+3\n1d6\n7\n+15 ft.\n@Compendium[dnd5e.classfeatures.a4P4DNMmH8CqSNkC]{Evasion}, @Compendium[dnd5e.classfeatures.ZmC31XKS4YNENnoc]{Stillness of Mind}\n\n\n8th\n+3\n1d6\n8\n+15 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n9th\n+4\n1d6\n9\n+15 ft.\nUnarmored Movement improvement\n\n\n10th\n+4\n1d6\n10\n+20 ft.\n@Compendium[dnd5e.classfeatures.bqWA7t9pDELbNRkp]{Purity of Body}\n\n\n11th\n+4\n1d8\n11\n+20 ft.\nMonastic Tradition feature\n\n\n12th\n+4\n1d8\n12\n+20 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n1d8\n13\n+20 ft.\n@Compendium[dnd5e.classfeatures.XjuGBeB8Y0C3A5D4]{Tongue of the Sun and Moon}\n\n\n14th\n+5\n1d8\n14\n+25 ft.\n@Compendium[dnd5e.classfeatures.7D2EkLdISwShEDlN]{Diamond Soul}\n\n\n15th\n+5\n1d8\n15\n+25 ft.\n@Compendium[dnd5e.classfeatures.gDH8PMrKvLHaNmEI]{Timeless Body}\n\n\n16th\n+5\n1d8\n16\n+25 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n1d10\n17\n+25 ft.\nMonastic Tradition feature\n\n\n18th\n+6\n1d10\n18\n+30 ft.\n@Compendium[dnd5e.classfeatures.3jwFt3hSqDswBlOH]{Empty Body}\n\n\n19th\n+6\n1d10\n19\n+30 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\n1d10\n20\n+30 ft.\n@Compendium[dnd5e.classfeatures.mQNPg89YIs7g5tG4]{Perfect Self}\n\n\n\nMonastic Traditions\nThree traditions of monastic pursuit are common in the monasteries scattered across the multiverse. Most monasteries practice one tradition exclusively, but a few honor the three traditions and instruct each monk according to his or her aptitude and interest. All three traditions rely on the same basic techniques, diverging as the student grows more adept. Thus, a monk need choose a tradition only upon reaching 3rd level.\n@Compendium[dnd5e.subclasses.IvlpKMXX3PmW1NY2]{Way of the Open Hand}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"monk","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"Gzb0vnxyoeTilka6"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.UAvV7N7T4zJhxdfI","Compendium.dnd5e.classfeatures.l50hjTxO2r0iecKw","Compendium.dnd5e.classfeatures.eGxoNmSMWKNzChCO"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"lVsKpEajeU5R83a5":"Compendium.dnd5e.classfeatures.UAvV7N7T4zJhxdfI","rppGdpjLLaRF9F2G":"Compendium.dnd5e.classfeatures.l50hjTxO2r0iecKw","jVIh24qThOvMskfW":"Compendium.dnd5e.classfeatures.eGxoNmSMWKNzChCO"}},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"x8WwDkBverY8pdNE"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.10b6z2W1txNkrGP7","Compendium.dnd5e.classfeatures.5MwNlVZK7m6VolOH","Compendium.dnd5e.classfeatures.TDglPcxIVEzvVSgK","Compendium.dnd5e.classfeatures.yrSFIGTaQOH2PFRI","Compendium.dnd5e.classfeatures.zCeqyQ8uIPNdYJSW"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"RGOU7EI3z5B21nv1"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.rtpQdX77dYWbDIOH","Compendium.dnd5e.classfeatures.mzweVbnsJPQiVkAe"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"dXaSgH4gjvuObsSy"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.KQz9bqxVkXjDl8gK"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":4,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"evtuIHfgZmld8cxb"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo","Compendium.dnd5e.classfeatures.pvRc6GAu1ok6zihC"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"hcrr9lpBUip0YYOP"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.7flZKruSSu6dHg6D"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"ywRxBFcCRj6dEolT"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.a4P4DNMmH8CqSNkC","Compendium.dnd5e.classfeatures.ZmC31XKS4YNENnoc"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":7,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"KMBXQNFCRN4zLyuL"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.bqWA7t9pDELbNRkp"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"XsBddz6R4GyzhMbG"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.XjuGBeB8Y0C3A5D4"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":13,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"ZtPXCH3ZjndhY1Ht"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.7D2EkLdISwShEDlN"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"F8R7R38lWmOJpzUh"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.gDH8PMrKvLHaNmEI"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":15,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"eQVrdHPAJo9pvQUz"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.3jwFt3hSqDswBlOH"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"N6146UOqxUZbD4kY"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.mQNPg89YIs7g5tG4"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"7eLazNU7i2X6HmnN"},{"type":"ScaleValue","configuration":{"identifier":"die","type":"dice","distance":{"units":""},"scale":{"1":{"number":null,"faces":4},"5":{"number":null,"faces":6},"11":{"number":null,"faces":8},"17":{"number":null,"faces":10}}},"value":{},"title":"Martial Arts Die","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"HC3Vfbq48VlD7axp"},{"type":"ScaleValue","configuration":{"identifier":"unarmored-movement","type":"distance","distance":{"units":"ft"},"scale":{"2":{"value":10},"6":{"value":15},"10":{"value":20},"14":{"value":25},"18":{"value":30}}},"value":{},"title":"Unarmored Movement","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"t6SOqiBtpw0OG5z2"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"9Xe0WAjYctJkKvPJ"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"HQCl6JtoovumbpGT"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"EujtBfzqpRexJo2t"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"4xT99qK8dYQG95qn"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":19,"title":""},{"_id":"mmAxx3U7FvXNAcKc","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim","weapon:mar:shortsword"],"choices":[]},"level":1,"title":"","value":{"chosen":["weapon:sim","weapon:mar:shortsword"]}},{"_id":"QPXy59CQGY9HB0c3","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":1,"pool":["tool:art:*","tool:music:*"]}]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["tool:art:brewer"]}},{"_id":"4M8MQ1E64zbcRg6B","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:str","saves:dex"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["saves:str","saves:dex"]}},{"_id":"7HRRCPk80Ng2Evdx","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:acr","skills:ath","skills:his","skills:ins","skills:rel","skills:ste"]}]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["skills:acr","skills:ath"]}},{"_id":"BQWHr3mt5flvkfIj","type":"Trait","configuration":{"hint":"Your mastery of the ki flowing through you makes you immune to disease and poison.","mode":"default","allowReplacements":false,"grants":["di:poison","ci:diseased","ci:poisoned"],"choices":[]},"level":10,"title":"Purity of Body","value":{}}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.6VoZrWxhOEKGYhnq"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234277,"modifiedTime":1699993223540,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"lVsKpEajeU5R83a5","name":"Unarmored Defense (Monk)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 1st Level, while you are wearing no armor and not wielding a Shield, your AC equals 10 + your Dexterity modifier + your Wisdom modifier.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.UAvV7N7T4zJhxdfI","advancementOrigin":"ckabMZ0IHcAMt16f.x8WwDkBverY8pdNE"}},"img":"icons/magic/control/silhouette-hold-change-blue.webp","effects":[{"_id":"R5ro4AuNjcdWD56O","changes":[{"key":"system.attributes.ac.calc","mode":5,"value":"unarmoredMonk","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/control/silhouette-hold-change-blue.webp","label":"Unarmored Defense","origin":"Item.cOdcNWy4hII029DT","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234382,"modifiedTime":1699987416952,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"rppGdpjLLaRF9F2G","name":"Martial Arts","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 1st level, your practice of martial arts gives you mastery of combat styles that use and monk weapons, which are shortswords and any simple melee weapons that don't have the two-handed or heavy property. You gain the following benefits while you are unarmed or wielding only monk weapons and you aren't wearing armor or wielding a shield:\n\n\nYou can use Dexterity instead of Strength for the attack and damage rolls of your unarmed strikes and monk weapons.\n\n\nYou can roll a d4 in place of the normal damage of your unarmed strike or monk weapon. This die changes as you gain monk levels, as shown in the Martial Arts column of the Monk table.\n\n\nWhen you use the Attack action with an unarmed strike or a monk weapon on your turn, you can make one unarmed strike as a bonus action. For example, if you take the Attack action and attack with a quarterstaff, you can also make an unarmed strike as a bonus action, assuming you haven't already taken a bonus action this turn.\n\n\nCertain monasteries use specialized forms of the monk weapons. For example, you might use a club that is two lengths of wood connected by a short chain (called a nunchaku) or a sickle with a shorter, straighter blade (called a kama). Whatever name you use for a monk weapon, you can use the game statistics provided for the weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":5,"width":null,"units":"ft","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"dex","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Monk 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.l50hjTxO2r0iecKw","advancementOrigin":"ckabMZ0IHcAMt16f.x8WwDkBverY8pdNE"}},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234416,"modifiedTime":1699987416952,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"jVIh24qThOvMskfW","name":"Unarmed Strike (Monk)","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1@scale.monk.die + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"ada":false,"amm":false,"fin":true,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"mgc":false,"rch":false,"rel":false,"ret":false,"sil":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.eGxoNmSMWKNzChCO","advancementOrigin":"ckabMZ0IHcAMt16f.x8WwDkBverY8pdNE"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234400,"modifiedTime":1691519134478,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"6JOg9xYjafGcdHnY","name":"Lightfoot Halfling","type":"race","img":"icons/equipment/feet/shoes-leather-simple-brown.webp","system":{"description":{"value":"Your halfling character has a number of traits in common with all other halflings.Ability Score Increase. Your Dexterity score increases by 2.Age. A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.Alignment. Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.Size. Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.Speed. Your base walking speed is 25 feet.Lucky. When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.Brave. You have advantage on saving throws against being frightened.Halfling Nimbleness. You can move through the space of any creature that is of a size larger than yours.Languages. You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.LightfootAs a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others.Lightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life.Ability Score Increase. Your Charisma score increases by 1.Naturally Stealthy. You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"lightfoot-halfling","advancement":[{"_id":"nInhIgkbzzJTdm8F","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.races.LOMdcNAGWh5xpfm4","Compendium.dnd5e.races.7Yoo9hG0hfPSmBoC","Compendium.dnd5e.races.PqxZgcJzp1VVgP8t","Compendium.dnd5e.races.GWPjKFeIthBBeCFJ"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"tUz8GlMnsZW70sFM":"Compendium.dnd5e.races.LOMdcNAGWh5xpfm4","CAVO88Jxjnm928MR":"Compendium.dnd5e.races.7Yoo9hG0hfPSmBoC","4Q1Mlm3NtMlhLMF9":"Compendium.dnd5e.races.PqxZgcJzp1VVgP8t","ddEW1gRmYuvAkrU2":"Compendium.dnd5e.races.GWPjKFeIthBBeCFJ"}},"level":0,"title":""},{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":0,"fixed":{"str":0,"dex":2,"con":0,"int":0,"wis":0,"cha":1},"cap":2},"value":{"type":"asi","assignments":{"dex":2,"cha":1}},"level":0,"title":""},{"_id":"hv2bcANK5jEJZaAb","type":"Size","configuration":{"hint":"Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.","sizes":["sm"]},"value":{"size":"sm"},"level":1,"title":""},{"_id":"nGwMjsfNU6CXHk3A","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:standard:common","languages:standard:halfling"],"choices":[]},"level":0,"title":"","value":{"chosen":["languages:standard:common","languages:standard:halfling"]}}],"movement":{"walk":25,"burrow":0,"climb":0,"fly":0,"swim":0,"units":"ft","hover":false},"type":{"subtype":"halfling","value":"humanoid","custom":""},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""}},"effects":[],"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.races.ZgYBjYYfiUstQD6f"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1677178323356,"modifiedTime":1699993223540,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null},{"_id":"tUz8GlMnsZW70sFM","name":"Lucky","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.Foundry NoteThis property can be enabled on your character sheet in the Special Traits configuration on the Attributes tab.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Halfling","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.LOMdcNAGWh5xpfm4","advancementOrigin":"6JOg9xYjafGcdHnY.nInhIgkbzzJTdm8F"}},"img":"icons/sundries/gaming/dice-runed-brown.webp","effects":[{"_id":"3ZXTUDl62zDpvpai","changes":[{"key":"flags.dnd5e.halflingLucky","mode":5,"value":"true","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/sundries/gaming/dice-runed-brown.webp","label":"Lucky","origin":"Item.LOMdcNAGWh5xpfm4","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234467,"modifiedTime":1699987416952,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"CAVO88Jxjnm928MR","name":"Brave","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have advantage on saving throws against being frightened.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"You have advantage on saving throws against being frightened.","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Halfling","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.7Yoo9hG0hfPSmBoC","advancementOrigin":"6JOg9xYjafGcdHnY.nInhIgkbzzJTdm8F"}},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234462,"modifiedTime":1699987417890,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"4Q1Mlm3NtMlhLMF9","name":"Halfling Nimbleness","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can move through the space of any creature that is of a size larger than yours.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Halfling","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.PqxZgcJzp1VVgP8t","advancementOrigin":"6JOg9xYjafGcdHnY.nInhIgkbzzJTdm8F"}},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234468,"modifiedTime":1699987418714,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ddEW1gRmYuvAkrU2","name":"Naturally Stealthy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Lightfoot Halfling","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.GWPjKFeIthBBeCFJ","advancementOrigin":"6JOg9xYjafGcdHnY.nInhIgkbzzJTdm8F"}},"img":"icons/magic/perception/silhouette-stealth-shadow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234465,"modifiedTime":1699987419669,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"R5ro4AuNjcdWD56O","changes":[{"key":"system.attributes.ac.calc","mode":5,"value":"unarmoredMonk","priority":null}],"disabled":false,"duration":{"startTime":0,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/control/silhouette-hold-change-blue.webp","label":"Unarmored Defense","origin":"Compendium.dnd5e.heroes.125qFnXvT9z0iOic.Item.lVsKpEajeU5R83a5","transfer":false,"flags":{},"tint":null,"sort":0},{"_id":"3ZXTUDl62zDpvpai","changes":[{"key":"flags.dnd5e.halflingLucky","mode":5,"value":"true","priority":null}],"disabled":false,"duration":{"startTime":0,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/sundries/gaming/dice-runed-brown.webp","label":"Lucky","origin":"Compendium.dnd5e.heroes.125qFnXvT9z0iOic.Item.tUz8GlMnsZW70sFM","transfer":false,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"dnd5e":{"halflingLucky":true}},"_id":"125qFnXvT9z0iOic","_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787232144,"modifiedTime":1699993223554,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Randal (Human Fighter)","type":"character","img":"","system":{"abilities":{"str":{"value":16,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":9,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":12,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""}},"init":{"ability":"","bonus":"0"},"movement":{"burrow":null,"climb":null,"fly":null,"swim":null,"walk":null,"units":null,"hover":false},"attunement":{"max":3},"senses":{"darkvision":null,"blindsight":null,"tremorsense":null,"truesight":null,"units":null,"special":""},"spellcasting":"int","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"Randal worked his way through the ranks of his hometown's guard, ultimately growing restless with city life and wandering off in search of adventure.","public":""},"alignment":"Neutral Good","race":"VFOCTtbEvjeUHo6B","background":null,"originalClass":"TixRV4Wr5ruxXRpf","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","dwarvish","elvish","goblin"],"custom":""},"weaponProf":{"value":["sim","mar"],"custom":""},"armorProf":{"value":["lgt","med","hvy","shl"],"custom":""},"toolProf":{"value":[],"custom":""}},"currency":{"pp":0,"gp":10,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Randal","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":5,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"qy0pVLQWv8tjWJPR","name":"Horn","type":"tool","system":{"description":{"value":"A horn, used to sound the alarm and call upon reinforcements in times of need.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"","ability":"cha","chatFlavor":"","proficient":null,"bonus":""},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.aa9KuBy4dst7WIW9"}},"img":"icons/tools/instruments/flute-simple-wood.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xhSq81g4w9vTE0nK","name":"Fighting Style: Defense","type":"feat","system":{"description":{"value":"While you are wearing armor, you gain a +1 bonus to AC","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Fighter 1, Champion 10, Paladin 2, Ranger 2","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.classfeatures.zSlV0O2rQMdoq6pB"}},"img":"icons/equipment/shield/heater-stone-orange.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":null,"modifiedTime":1699987492174,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"r7UallZJjcIFsz8i","name":"Grappler","type":"feat","system":{"description":{"value":"Prerequisite: Strength 13 or higher You've developed the skills necessary to hold your own in close-quarters grappling.You gain the following benefits:\n\nYou have advantage on attack rolls against a creature you are grappling.\nYou can use your action to try to pin a creature grappled by you. To do so, make another grapple check. If you succeed, you and the creature are both restrained until the grapple ends.\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"STR 13 or higher","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kP9t6MAeUvBBmoM3"}},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":null,"modifiedTime":1699987492173,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"6kg0dYblyeGcoclF","name":"Arrows","type":"consumable","system":{"description":{"value":"Standard ammunition used for bows of all varieties. These mundane arrows are made of smooth wooden shafts with goose feather fletching and hammer metal bodkins.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":20,"weight":0.05,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo","properties":{}},"sort":0,"flags":{},"img":"icons/containers/ammunition/arrows-quiver-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647487,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"HW10iFMNN5JaJBFf","name":"Longbow","type":"weapon","system":{"description":{"value":"A thick shaft of laminated wood is bowed by a taut string capable of launching deadly arrows at long distances.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"ammo","target":"6kg0dYblyeGcoclF","amount":1,"scale":false},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3cymOVja8jXbzrdT"}},"img":"icons/weapons/bows/longbow-leather-green.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3d2b3iqnC0t116JB","name":"Longsword","type":"weapon","system":{"description":{"value":"A lengthy stright blade designed for slashing foes, the longsword is a highly versatile weapon that may also be wielded with two hands for more punishing strikes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"img":"icons/weapons/swords/greatsword-crossguard-steel.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9vMrpjx6tZQVKCrF","name":"Handaxe (offhand)","type":"weapon","system":{"description":{"value":"This one-handed axe is light and balanced for throwing while remaining useful in hand combat.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":null},"sort":0,"flags":{},"img":"icons/weapons/axes/axe-broad-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZC11cflszLu1zXBL","name":"City Guard Chain Mail","type":"equipment","system":{"description":{"value":"Made of interlocking metal rings, chain mail includes a layer of quilted fabric worn underneath the mail to prevent chafing and to cushion the impact of blows. The suit includes gauntlets.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":55,"price":{"value":75,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":13,"stealth":true,"proficient":null},"sort":0,"flags":{},"img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UwH6scwUXajH9jCh","name":"Shield","type":"equipment","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"img":"icons/equipment/shield/oval-wooden-boss-steel.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bq6RL40FQY52C7YE","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Z4bdbM4ROqwPcSli","name":"Pouch","type":"backpack","system":{"description":{"value":"A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":6,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.9bWTRRDym06PzSAf"}},"img":"icons/containers/bags/coinpouch-simple-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640341,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"RtMzLZEMAVyFwhLo","name":"Hammer","type":"loot","system":{"description":{"value":"A tool with heavy metal head mounted ar the right angles at the end of a handle, used for job such as breaking things and driving in nails. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.14pNRT4sZy9rgvhb"}},"img":"icons/tools/smithing/hammer-sledge-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BQIFmKZfFgM3XQPq","name":"Tinderbox","type":"loot","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DNOSEAvF4Oh1DlWy"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640351,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ASK21hDnn53hojQo","name":"Waterskin","type":"consumable","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Uv0ilmzbWvqmlCVH"}},"img":"icons/sundries/survival/wetskin-leather-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640358,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pueZRmygDueiEPES","name":"Hempen Rope (50 ft.)","type":"consumable","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QXmaarJ4X8P0C1HV"}},"img":"icons/sundries/survival/rope-wrapped-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ph8RkMxLvWBSgIt3","name":"Quiver","type":"backpack","system":{"description":{"value":"A quiver can hold up to 20 arrows.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"capacity":{"type":"items","value":20,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.4MtQKPn9qMWCFjDA"}},"img":"icons/containers/ammunition/arrows-quiver-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GUsTVResLLnqzu20","name":"Bedroll","type":"loot","system":{"description":{"value":"Roll of cloth used by traveller to sleep in.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DVXmyetZuvxbzAwW"}},"img":"icons/sundries/flags/banner-worn-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"C47RdG1DyqBhG1aB","name":"Mess Kit","type":"loot","system":{"description":{"value":"This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.V13fjV5oSmvbRdgP"}},"img":"icons/tools/cooking/fork-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640365,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"NcqTt0GXqkHxybfP","name":"Handaxe","type":"weapon","system":{"description":{"value":"This one-handed axe is light and balanced for throwing while remaining useful in hand combat.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.eO7Fbv5WBk5zvGOc"}},"img":"icons/weapons/axes/axe-broad-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XlBuqgctFFNNx8Xn","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640371,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"rRBxjDaj0KZoEySZ","name":"Piton","type":"consumable","system":{"description":{"value":"A metal spike that is drive into a seam in a climbing surface with a climbing hammer. It can also be used like iron spikes to block doors in a pinch.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":0.25,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.TqyvIglHDj5kfohR"}},"img":"icons/sundries/survival/stake-rough-simple-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647493,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"puS6D5ZXmiKePl1F","name":"Torch","type":"consumable","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":40,"width":null,"units":"ft","type":"radius","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.BnOCLuNWhVvzHLjl"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647502,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"gxGtzolLrAw1A3or","name":"Crowbar","type":"loot","system":{"description":{"value":"Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.V5UAjT3ed6sDNtgm"}},"img":"icons/tools/hand/pickaxe-steel-white.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"name":"Watchman","type":"background","system":{"description":{"value":"Skill Proficiencies: Athletics, InsightLanguages: Two of your choiceEquipment: A guard's uniform, a horn with which to summon help, and a pouch containing 10 gp","chat":"","unidentified":""},"source":{"custom":"","book":"","page":"","license":"CC-BY-4.0"},"advancement":[]},"img":"icons/environment/settlement/watchtower-stone.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040617213,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"iODPoFlvprdu59Ga"},{"_id":"TixRV4Wr5ruxXRpf","name":"Fighter","type":"class","img":"icons/skills/melee/hand-grip-sword-red.webp","system":{"description":{"value":"As a fighter, you gain the following class features.\nHit Points\nHit Dice: 1d10 per fighter levelHit Points at 1st Level: 10 + your Constitution modifierHit Points at Higher Levels: 1d10 (or 6) + your Constitution modifier per fighter level after 1st\nProficiencies\nArmor: All armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, ConstitutionSkills: Choose two skills from Acrobatics, Animal Handling, Athletics, History, Insight, Intimidation, Perception, and Survival\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) chain mail or (b) leather armor, longbow, and 20 arrows\n(a) a martial weapon and a shield or (b) two martial weapons\n(a) a light crossbow and 20 bolts or (b) two handaxes\n(a) a dungeoneer's pack or (b) an explorer's pack\n\nFighter Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.fbExzwNwEAl2kW9c]{Fighting Style}, @Compendium[dnd5e.classfeatures.nTjmWbyHweXuIqwc]{Second Wind}\n\n\n2nd\n+2\n@Compendium[dnd5e.classfeatures.xF1VTcJ3AdkbTsdQ]{Action Surge}\n\n\n3rd\n+2\n@Compendium[dnd5e.classfeatures.ax8M0X0q1GGWM26j]{Martial Archetype}\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n5th\n+3\n@Compendium[dnd5e.classfeatures.q9g1MLXuLZyxjQMg]{Extra Attack}\n\n\n6th\n+3\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n7th\n+3\nMartial Archetype feature\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n9th\n+4\n@Compendium[dnd5e.classfeatures.653ZHbNcmm7ZGXbw]{Indomitable}\n\n\n10th\n+4\nMartial Archetype feature\n\n\n11th\n+4\n@Compendium[dnd5e.classfeatures.q9g1MLXuLZyxjQMg]{Extra Attack (2)}\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n13th\n+5\n@Compendium[dnd5e.classfeatures.653ZHbNcmm7ZGXbw]{Indomitable (2 uses)}\n\n\n14th\n+5\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n15th\n+5\nMartial Archetype feature\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n17th\n+6\n@Compendium[dnd5e.classfeatures.xF1VTcJ3AdkbTsdQ]{Action Surge (2 uses)}, @Compendium[dnd5e.classfeatures.653ZHbNcmm7ZGXbw]{Indomitable (3 uses)}\n\n\n18th\n+6\nMartial Archetype feature\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.sPy2OLoN7JaAcMl4]{Ability Score Improvement}\n\n\n20th\n+6\n@Compendium[dnd5e.classfeatures.q9g1MLXuLZyxjQMg]{Extra Attack (3)}\n\n\n\nMartial Archetypes\nDifferent fighters choose different approaches to perfecting their fighting prowess. The martial archetype you choose to emulate reflects your approach.\n@Compendium[dnd5e.subclasses.sprHbe7cRg9osTzf]{Champion}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"fighter","levels":1,"hitDice":"d10","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"yhZd0KJPJERAWGgA"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.fbExzwNwEAl2kW9c","Compendium.dnd5e.classfeatures.nTjmWbyHweXuIqwc"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"xBoN1auJaGal3hva":"Compendium.dnd5e.classfeatures.fbExzwNwEAl2kW9c","QYbinNgLV2ZYxX2c":"Compendium.dnd5e.classfeatures.nTjmWbyHweXuIqwc"}},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"PwWJCRoUIftcpy47"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.xF1VTcJ3AdkbTsdQ"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"pxHWfZrwT5tdCH61"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ax8M0X0q1GGWM26j"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"tdk8Hj5vUKl7Uz2a"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.q9g1MLXuLZyxjQMg"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"1UqvFqvQRr0Mzk3K"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.653ZHbNcmm7ZGXbw"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":9,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"hu99eLBFUHiOOKdl"},{"type":"ItemChoice","configuration":{"hint":"You adopt a particular style of fighting as your specialty. Choose one of the following options. You can’t take a Fighting Style option more than once, even if you later get to choose again.","choices":{"1":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.8YwPFv3UAPjWVDNf","Compendium.dnd5e.classfeatures.zSlV0O2rQMdoq6pB","Compendium.dnd5e.classfeatures.hCop9uJrWhF1QPb4","Compendium.dnd5e.classfeatures.3Nc6u9pyStByuJsm","Compendium.dnd5e.classfeatures.06NVMYf58Z76O85O","Compendium.dnd5e.classfeatures.mHcSjcHJ8oZu3hkb"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"fightingStyle","level":""}},"value":{"added":{"1":{"dpXCnkmf6mF4qivf":"Compendium.dnd5e.classfeatures.zSlV0O2rQMdoq6pB"}}},"title":"Fighting Style","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"3hmYTgl5rz8Y5Z0I"},{"type":"ScaleValue","configuration":{"identifier":"indomitable","type":"number","distance":{"units":""},"scale":{"9":{"value":1},"13":{"value":2},"17":{"value":3}}},"value":{},"title":"Indomitable Uses","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"B7YpSu4cVsEbHbrv"},{"type":"ScaleValue","configuration":{"identifier":"action-surge","type":"number","distance":{"units":""},"scale":{"2":{"value":1},"17":{"value":2}}},"value":{},"title":"Action Surge Uses","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"kxiasN1v8KFm9nse"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"rvfuW71lYEeJW7HS"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"g49SXigwmpaZW0Hm"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"gXVE2mfohi6iErff"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"GdBOLIPXmNSWRSmO"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":19,"title":""},{"_id":"ZvTgE4hnO4clYc0z","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":6,"title":""},{"_id":"zw1ftiHmlUeHRTdc","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":14,"title":""},{"_id":"mA50Kay0ZDA2jX9p","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:lgt","armor:med","armor:hvy","armor:shl"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["armor:lgt","armor:med","armor:hvy","armor:shl"]}},{"_id":"nmUrDORkeK0uZm0p","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim","weapon:mar"],"choices":[]},"level":1,"title":"","value":{"chosen":["weapon:sim","weapon:mar"]}},{"_id":"3o2s8ZVAyJd74CrP","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:str","saves:con"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["saves:str","saves:con"]}},{"_id":"JEZnz3P7ydbNAdwN","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:acr","skills:ani","skills:ath","skills:his","skills:ins","skills:itm","skills:prc","skills:sur"]}]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["skills:acr","skills:itm"]}},{"type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:lgt","armor:med","armor:shl"],"choices":[]},"level":1,"title":"","_id":"dB3KhImYQRemI4mr","classRestriction":"secondary","value":{}}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.ABEBgWyRhVlDUIfq"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234279,"modifiedTime":1699993381263,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"xBoN1auJaGal3hva","name":"Fighting Style (Fighter)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You adopt a particular style of fighting as your specialty. Choose one of the following options from the appropriate class list. You can't take a Fighting Style option more than once, even if you later get to choose again.\n@Compendium[dnd5e.classfeatures.8YwPFv3UAPjWVDNf]{Archery}\n@Compendium[dnd5e.classfeatures.zSlV0O2rQMdoq6pB]{Defense}\n@Compendium[dnd5e.classfeatures.hCop9uJrWhF1QPb4]{Dueling}\n@Compendium[dnd5e.classfeatures.3Nc6u9pyStByuJsm]{Great Weapon Fighting}\n@Compendium[dnd5e.classfeatures.06NVMYf58Z76O85O]{Protection}\n@Compendium[dnd5e.classfeatures.mHcSjcHJ8oZu3hkb]{Two Weapon Fighting}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Fighter 1","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.fbExzwNwEAl2kW9c","advancementOrigin":"TixRV4Wr5ruxXRpf.PwWJCRoUIftcpy47"}},"img":"icons/skills/melee/weapons-crossed-daggers-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234404,"modifiedTime":1699987492174,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"QYbinNgLV2ZYxX2c","name":"Second Wind","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have a limited well of stamina that you can draw on to protect yourself from harm. On your turn, you can use a bonus action to regain hit points equal to 1d10 + your fighter level.Once you use this feature, you must finish a short or long rest before you can use it again.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self","prompt":true},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"sr","recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @classes.fighter.levels","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Fighter 1","recharge":{"value":null,"charged":false}},"folder":null,"sort":0,"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.nTjmWbyHweXuIqwc","advancementOrigin":"TixRV4Wr5ruxXRpf.PwWJCRoUIftcpy47"}},"img":"icons/magic/life/heart-glowing-red.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234421,"modifiedTime":1691519178770,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"dpXCnkmf6mF4qivf","name":"Fighting Style: Defense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While you are wearing armor, you gain a +1 bonus to AC","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":"fightingStyle"},"requirements":"Fighter 1, Champion 10, Paladin 2, Ranger 2","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.zSlV0O2rQMdoq6pB","advancementOrigin":"TixRV4Wr5ruxXRpf.3hmYTgl5rz8Y5Z0I"}},"img":"icons/equipment/shield/heater-stone-orange.webp","effects":[{"_id":"U3so0zDcVt4sIBRz","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"+1","mode":2,"priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/equipment/shield/heater-stone-orange.webp","label":"Fighting Style: Defense","origin":"Item.4mQUDmiDBePkQD6Y","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234445,"modifiedTime":1699987492174,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"VFOCTtbEvjeUHo6B","name":"Variant Human","type":"race","img":"icons/environment/people/commoner.webp","system":{"description":{"value":"It's hard to make generalizations about humans, but your human character has these traits.Ability Score Increase. Your ability scores each increase by 1.Age. Humans reach adulthood in their late teens and live less than a century.Alignment. Humans tend toward no particular alignment. The best and the worst are found among them.Size. Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.Speed. Your base walking speed is 30 feet.Languages. You can speak, read, and write Common and one extra language of your choice. Humans typically learn the languages of other peoples they deal with, including obscure dialects. They are fond of sprinkling their speech with words borrowed from other tongues: Orc curses, Elvish musical expressions, Dwarvish military phrases, and so on.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"human","advancement":[{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":0,"fixed":{"str":1,"dex":1,"con":1,"int":1,"wis":1,"cha":1},"cap":2},"value":{"type":"asi"},"level":0,"title":""},{"_id":"dNSrZePZHz2qwVpi","type":"Size","configuration":{"hint":"Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.","sizes":["med"]},"value":{"size":""},"level":1,"title":""},{"_id":"HI6r4Y6KjHND0i53","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:standard:common"],"choices":[{"count":1,"pool":["languages:*"]}]},"level":0,"title":"","value":{}}],"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"type":{"value":"humanoid","subtype":"","custom":""}},"effects":[],"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.races.ydP3QzCmur55mtY2"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1677180079259,"modifiedTime":1699993381263,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null}],"effects":[{"_id":"U3so0zDcVt4sIBRz","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"+1","mode":2,"priority":null}],"disabled":false,"duration":{"startTime":0,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/equipment/shield/heater-stone-orange.webp","label":"Fighting Style: Defense","origin":"Compendium.dnd5e.heroes.2Pdtnswo8Nj2nafY.Item.dpXCnkmf6mF4qivf","tint":null,"transfer":false,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"2Pdtnswo8Nj2nafY","_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787232150,"modifiedTime":1699993381280,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Zanna (Gnome Wizard)","type":"character","img":"","system":{"abilities":{"str":{"value":8,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":17,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":8,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""}},"init":{"ability":"","bonus":"0"},"movement":{"burrow":null,"climb":null,"fly":null,"swim":null,"walk":null,"units":null,"hover":false},"attunement":{"max":3},"senses":{"darkvision":null,"blindsight":null,"tremorsense":null,"truesight":null,"units":null,"special":""},"spellcasting":"int","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"Always interested in tinkering, Zanna set out for adventure in order to find more spells for her spellbook, and perhaps one day create some of her own.","public":""},"alignment":"Chaotic Good","race":"ur4Pjajcd3IlxKlZ","background":null,"originalClass":"N4bhi6usK8wuNEnh","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["dwarvish","giant","common","gnomish"],"custom":""},"weaponProf":{"value":["dagger","dart","sling","quarterstaff","lightcrossbow"],"custom":""},"armorProf":{"value":[],"custom":""},"toolProf":{"value":[],"custom":""}},"currency":{"pp":0,"gp":10,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{},"spells":{"spell1":{"value":2,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Zanna","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ZTaGDK3lSy8a5T1l","name":"Component Pouch","type":"consumable","system":{"description":{"value":"A component pouch is a small, watertight leather belt pouch that has compartments to hold all the material components and other special items you need to cast your spells, except for those components that have a specific cost (as indicated in a spell's description).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.eZGmdOhaTWMicXPW"}},"img":"icons/containers/bags/pack-simple-leather-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EPiw1vnn3pDOdO1m","name":"Quarterstaff","type":"weapon","system":{"description":{"value":"A thick shaft of wood wrapped with a sturdy grip makes a highly functional weapon in addition to a stout walking stick.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.g2dWN7PQiMRYWzyk"}},"img":"icons/weapons/staves/staff-simple-gold.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640403,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"aJZGeP8AiFrEwgWX","name":"Robes","type":"equipment","system":{"description":{"value":"Simple or ceremonial wear, often used by priests and other religious figures.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.8GCEodUsTEEpBlO6"}},"img":"icons/equipment/back/mantle-collared-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wIPWkO6CHUrTw13Y","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4rrQYmSFohtbkBwH","name":"Pouch","type":"backpack","system":{"description":{"value":"A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":6,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.9bWTRRDym06PzSAf"}},"img":"icons/containers/bags/coinpouch-simple-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640411,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"eYEelIdlbOvIRDkK","name":"Bedroll","type":"loot","system":{"description":{"value":"Roll of cloth used by traveller to sleep in.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":6}},"core":{"sourceId":"Compendium.dnd5e.items.DVXmyetZuvxbzAwW"}},"img":"icons/sundries/flags/banner-worn-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ps3a8zDFtNoUfJDZ","name":"Hempen Rope (50 ft.)","type":"consumable","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":8}},"core":{"sourceId":"Compendium.dnd5e.items.QXmaarJ4X8P0C1HV"}},"img":"icons/sundries/survival/rope-wrapped-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rsSr1FRdaAKl6fpc","name":"Mess Kit","type":"loot","system":{"description":{"value":"This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":4}},"core":{"sourceId":"Compendium.dnd5e.items.V13fjV5oSmvbRdgP"}},"img":"icons/tools/cooking/fork-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640426,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"FQpJpWjX9bsPZvDo","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640437,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"zthIyDRa8OLDoBId","name":"Tinderbox","type":"loot","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DNOSEAvF4Oh1DlWy"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640445,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"rTQEtliS3CqxnBPg","name":"Torch","type":"consumable","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":40,"width":null,"units":"ft","type":"radius","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":7}},"core":{"sourceId":"Compendium.dnd5e.items.BnOCLuNWhVvzHLjl"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647511,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"xxVyo2I5EYUi3cla","name":"Waterskin","type":"consumable","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Uv0ilmzbWvqmlCVH"}},"img":"icons/sundries/survival/wetskin-leather-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640466,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"gIJ6Vm16khwtSS0q","name":"Ink Bottle","type":"loot","system":{"description":{"value":"A small bottle of ink for writing upon parchment.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.06,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.dP7jMKyHTTgVb3ii"}},"img":"icons/consumables/potions/bottle-bulb-empty-glass.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EuWal2U6WQwbDmAL","name":"Ink Pen","type":"loot","system":{"description":{"value":"A deviced used in combination with ink to write or draw on a sheet of paper.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.uVm7MiB71QblfnoY"}},"img":"icons/commodities/materials/feather-red-.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647522,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MNtWDpVTu3jHk8be","name":"Parchment","type":"loot","system":{"description":{"value":"A single sheet of heavier parchment paper.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WFQS2vT8ddrFjTJg"}},"img":"icons/sundries/documents/document-symbol-circle-gold-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640482,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"i3YAIUu7sNkJUPTU","name":"Book of Lore","type":"loot","system":{"description":{"value":"A book containing historical accounts, information pertaining to a particular field of lore, myth, or legend.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.l794iywHk8Wc6Uvi"}},"img":"icons/sundries/books/book-plain-orange.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"23NorZLPXATDYptB","name":"Spellbook","type":"loot","system":{"description":{"value":"Essential for wizards, a spellbook is a leather-bound tome with 100 blank vellum pages suitable for recording spells.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.LBajgahniRJbAgDr"}},"img":"icons/sundries/books/book-embossed-jewel-gold-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rjlTBnXJGxoodrM3","name":"Small Knife","type":"loot","system":{"description":{"value":"A blunt knife used by the scholarly to open letters and correspondence.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.5,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3nVvaHVfHsgwGlkL"}},"img":"icons/weapons/daggers/dagger-jeweled-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640492,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"5hEbhdZm1ozQ3B2g","name":"Tinker","type":"feat","system":{"description":{"value":"You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time. When you create a device, choose one of the following options:Clockwork Toy: This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.Fire Starter: The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.Music Box: When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"hour","cost":1,"condition":"Expend 10 gp worth of materials"},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Rock Gnome","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.races.koRPOLtj8XAFMwnW"}},"img":"icons/commodities/tech/cog-steel.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EOmsUcFQJTfG2oio","name":"Fire Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You hurl a mote of fire at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried.This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.EOmsUcFQJTfG2oio"}},"img":"icons/magic/fire/projectile-fireball-smoke-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486020,"modifiedTime":1661603486020,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Bnn9Nzajixvow9xi","name":"Light","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"object","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A firefly or phosphorescent moss.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Bnn9Nzajixvow9xi"}},"img":"icons/magic/light/explosion-star-small-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486021,"modifiedTime":1661603486021,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Utk1OQRwYkMkFRD3","name":"Mage Hand","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.The hand can't attack, activate magic items, or carry more than 10 pounds.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"space","prompt":true},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Utk1OQRwYkMkFRD3"}},"img":"icons/magic/water/water-hand.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486021,"modifiedTime":1661603486021,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"7p9IuWrSWFgfyQo2","name":"Alarm","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You set an alarm against unwanted intrusion. Choose a door, a window, or an area within range that is no larger than a 20-foot cube. Until the spell ends, an alarm alerts you whenever a Tiny or larger creature touches or enters the warded area. When you cast the spell, you can designate creatures that won't set off the alarm. You also choose whether the alarm is mental or audible.A mental alarm alerts you with a ping in your mind if you are within 1 mile of the warded area. This ping awakens you if you are sleeping.An audible alarm produces the sound of a hand bell for 10 seconds within 60 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"crewed":false,"target":{"value":20,"width":null,"units":"ft","type":"cube","prompt":true},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A tiny bell and a piece of fine silver wire.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.7p9IuWrSWFgfyQo2"}},"img":"icons/magic/symbols/runes-triangle-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486022,"modifiedTime":1661603486022,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"z1mx84ONwkXKUZd7","name":"Shield","type":"spell","img":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","system":{"description":{"value":"An invisible barrier of magical force appears and protects you. Until the start of your next turn, you have a +5 bonus to AC, including against the triggering attack, and you take no damage from magic missile.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":"Which you take when you are hit by an attack or targeted by the magic missile spell"},"duration":{"value":"1","units":"round"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self","prompt":true},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"6pbotGIvqQkraPva","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"5","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"rounds":1,"seconds":null,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","label":"Shield","origin":"Item.FlLKKv7bQBlIAs11","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.z1mx84ONwkXKUZd7"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486022,"modifiedTime":1661603486022,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"JGT5bNqu9REL7Fuz","name":"Find Familiar","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your familiar acts independently of you, but it always obeys your commands. In combat, it rolls its own initiative and acts on its own turn. A familiar can't attack, but it can take other actions as normal.When the familiar drops to 0 hit points, it disappears, leaving behind no physical form. It reappears after you cast this spell again.While your familiar is within 100 feet of you, you can communicate with it telepathically. Additionally, as an action, you can see through your familiar's eyes and hear what it hears until the start of your next turn, gaining the benefits of any special senses that the familiar has. During this time, you are deaf and blind with regard to your own senses.As an action, you can temporarily dismiss your familiar. It disappears into a pocket dimension where it awaits your summons. Alternatively, you can dismiss it forever. As an action while it is temporarily dismissed, you can cause it to reappear in any unoccupied space within 30 feet of you.You can't have more than one familiar at a time. If you cast this spell while you already have a familiar, you instead cause it to adopt a new form. Choose one of the forms from the above list. Your familiar transforms into the chosen creature.Finally, when you cast a spell with a range of touch, your familiar can deliver the spell as if it had cast the spell. Your familiar must be within 100 feet of you, and it must use its reaction to deliver the spell when you cast it. If the spell requires an attack roll, you use your action modifier for the roll.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"any","type":"space","prompt":true},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"10 gp worth of charcoal, incense, and herbs that must be consumed by fire in a brass brazier","consumed":true,"cost":10,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.JGT5bNqu9REL7Fuz"}},"img":"icons/magic/nature/wolf-paw-glow-purple-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486025,"modifiedTime":1661603486025,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"CKZTpZlxj7hjjo2H","name":"Mage Armor","type":"spell","img":"icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp","system":{"description":{"value":"You touch a willing creature who isn't wearing armor, and a protective magical force surrounds it until the spell ends. The target's base AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor or if you dismiss the spell as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A piece of cured leather","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"cfwMU7LuOJ619Lny","changes":[{"key":"system.attributes.ac.calc","value":"mage","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp","label":"Mage Armor","origin":"Compendium.dnd5e.spells.CKZTpZlxj7hjjo2H","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.CKZTpZlxj7hjjo2H"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486026,"modifiedTime":1661603486026,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"KhwiSi9fwVfUPtku","name":"Sleep","type":"spell","img":"icons/magic/light/explosion-star-small-pink.webp","system":{"description":{"value":"This spell sends creatures into a magical slumber. Roll 5d8; the total is how many hit points of creatures this spell can affect. Creatures within 20 feet of a point you choose within range are affected in ascending order of their current hit points (ignoring unconscious creatures).Starting with the creature that has the lowest current hit points, each creature affected by this spell falls unconscious until the spell ends, the sleeper takes damage, or someone uses an action to shake or slap the sleeper awake. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.Undead and creatures immune to being charmed aren't affected by this spell.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d8 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":20,"width":null,"units":"ft","type":"sphere","prompt":true},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of fine sand, rose petals, or a cricket.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"2d8"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.KhwiSi9fwVfUPtku"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486027,"modifiedTime":1661603486027,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"41JIhpDyM9Anm7cs","name":"Magic Missile","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create three glowing darts of magical force. Each dart hits a creature of your choice that you can see within range. A dart deals 1d4 + 1 force damage to its target. The darts all strike simultaneously, and you can direct them to hit one creature or several.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the spell creates one more dart for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + 1","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.41JIhpDyM9Anm7cs"}},"img":"icons/magic/fire/projectile-meteor-salvo-light-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486027,"modifiedTime":1661603486027,"lastModifiedBy":"dnd5ebuilder0000"}},{"name":"Scholar","type":"background","system":{"description":{"value":"Skill Proficiencies: History, plus your choice of one from among Arcana, Nature, and ReligionLanguages: Two of your choiceEquipment: Scholar's robes, a writing kit, a book of lore, and a pouch containing 10 gp","chat":"","unidentified":""},"source":{"custom":"","book":"","page":"","license":"CC-BY-4.0"},"advancement":[]},"img":"icons/magic/light/hand-sparks-smoke-teal.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040326437,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"Nt4QsuSYvhIwSoO5"},{"_id":"N4bhi6usK8wuNEnh","name":"Wizard","type":"class","img":"icons/magic/air/wind-tornado-wall-blue.webp","system":{"description":{"value":"As a wizard, you gain the following class features.Hit PointsHit Dice: 1d6 per wizard levelHit Points at 1st Level: 6 + your Constitution modifierHit Points at Higher Levels: 1d6 (or 4) + your Constitution modifier per wizard level after 1stProficienciesArmor: NoneWeapons: Daggers, darts, slings, quarterstaffs, light crossbowsTools: NoneSaving Throws: Intelligence, WisdomSkills: Choose two from Arcana, History, Insight, Investigation, Medicine, and ReligionEquipmentYou start with the following equipment, in addition to the equipment granted by your background:(a) a quarterstaff or (b) a dagger(a) a component pouch or (b) an arcane focus(a) a scholar's pack or (b) an explorer's packA spellbookWizard AdvancementLevelProficiency BonusFeatures1st+2@Compendium[dnd5e.classfeatures.gbNo5eVPaqr8IVKL]{Spellcasting}, @Compendium[dnd5e.classfeatures.e0uTcFPpgxjIyUW9]{Arcane Recovery}2nd+2@Compendium[dnd5e.classfeatures.AEWr9EMxy5gj4ZFT]{Arcane Tradition}3rd+22nd Level Spell Slot4th+2@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}5th+33rd Level Spell Slot6th+3Arcane Tradition feature7th+34th Level Spell Slot8th+3@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}9th+45th Level Spell Slot10th+4Arcane Tradition feature11th+46 Level Spell Slot12th+4@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}13th+57th Level Spell Slot14th+5Arcane Tradition feature15th+58th Level Spell Slot16th+5@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}17th+69 Level Spell Slot18th+6@Compendium[dnd5e.classfeatures.JfFfHTeIszx1hNRx]{Spell Mastery}19th+6@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}20th+6@Compendium[dnd5e.classfeatures.nUrZDi6QN1YjwAr6]{Signature Spells}Your SpellbookThe spells that you add to your spellbook as you gain levels reflect the arcane research you conduct on your own, as well as intellectual breakthroughs you have had about the nature of the multiverse. You might find other spells during your adventures. You could discover a spell recorded on a scroll in an evil wizard's chest, for example, or in a dusty tome in an ancient library.Copying a Spell into the Book. When you find a wizard spell of 1st level or higher, you can add it to your spellbook if it is of a spell level you can prepare and if you can spare the time to decipher and copy it.Copying that spell into your spellbook involves reproducing the basic form of the spell, then deciphering the unique system of notation used by the wizard who wrote it. You must practice the spell until you understand the sounds or gestures required, then transcribe it into your spellbook using your own notation.For each level of the spell, the process takes 2 hours and costs 50 gp. The cost represents material components you expend as you experiment with the spell to master it, as well as the fine inks you need to record it. Once you have spent this time and money, you can prepare the spell just like your other spells.Replacing the Book. You can copy a spell from your own spellbook into another book—for example, if you want to make a backup copy of your spellbook. This is just like copying a new spell into your spellbook, but faster and easier, since you understand your own notation and already know how to cast the spell. You need spend only 1 hour and 10 gp for each level of the copied spell.If you lose your spellbook, you can use the same procedure to transcribe the spells that you have prepared into a new spellbook. Filling out the remainder of your spellbook requires you to find new spells to do so, as normal. For this reason, many wizards keep backup spellbooks in a safe place.The Book's Appearance. Your spellbook is a unique compilation of spells, with its own decorative flourishes and margin notes. It might be a plain, functional leather volume that you received as a gift from your master, a finely bound gilt-edged tome you found in an ancient library, or even a loose collection of notes scrounged together after you lost your previous spellbook in a mishap.Arcane TraditionsThe study of wizardry is ancient, stretching back to the earliest mortal discoveries of magic. It is firmly established in fantasy gaming worlds, with various traditions dedicated to its complex study.The most common arcane traditions in the multiverse revolve around the schools of magic. Wizards through the ages have cataloged thousands of spells, grouping them into eight categories called schools. In some places, these traditions are literally schools. In other institutions, the schools are more like academic departments, with rival faculties competing for students and funding. Even wizards who train apprentices in the solitude of their own towers use the division of magic into schools as a learning device, since the spells of each school require mastery of different techniques.@Compendium[dnd5e.subclasses.Ye5f3FReEnuXfi0y]{School of Evocation}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"wizard","levels":1,"hitDice":"d6","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"o1lOLgOTi4SFT675"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.gbNo5eVPaqr8IVKL","Compendium.dnd5e.classfeatures.e0uTcFPpgxjIyUW9"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"ZCH7glEObWbjFGHB":"Compendium.dnd5e.classfeatures.gbNo5eVPaqr8IVKL","fnxa7jBxIHkDyZuU":"Compendium.dnd5e.classfeatures.e0uTcFPpgxjIyUW9"}},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"NhwTsEnDKEFARuzC"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.AEWr9EMxy5gj4ZFT"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"0uOmTQCuBt5Uamzq"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.JfFfHTeIszx1hNRx"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"3mW9054CUxI1C7aO"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.nUrZDi6QN1YjwAr6"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"Eb7ydpaIxiGHB08g"},{"type":"ItemChoice","configuration":{"hint":"Choose two 3rd-level wizard spells in your spellbook as your signature spells.","choices":{"20":2},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"atwill","uses":{"max":"1","per":"sr"}},"restriction":{"type":"","subtype":"","level":"3"}},"value":{},"title":"Signature Spells","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"tD8OooHM6soXzVTR"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":3},"4":{"value":4},"10":{"value":5}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"tLCuM1cHSnmr1VEu"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"EFPSW4WIEveFjZL0"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"uytL1QdWhsGgRAGk"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"OC4KaX8DSQVZFqli"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"tNdNUznXfjAyXGGQ"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":19,"title":""},{"_id":"JXcSQmjdfaJeSjZ7","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim:dagger","weapon:sim:dart","weapon:sim:lightcrossbow","weapon:sim:quarterstaff","weapon:sim:sling"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["weapon:sim:dagger","weapon:sim:dart","weapon:sim:lightcrossbow","weapon:sim:quarterstaff","weapon:sim:sling"]}},{"_id":"r1DG0GF8L6SkLNvq","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:int","saves:wis"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["saves:int","saves:wis"]}},{"_id":"6blzmKC4EON0KM2e","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:arc","skills:his","skills:ins","skills:inv","skills:med","skills:rel"]}]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["skills:med","skills:inv"]}}],"spellcasting":{"progression":"full","ability":"int"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.wZK2Q0rXB0AQo8h3"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234283,"modifiedTime":1699993725827,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ZCH7glEObWbjFGHB","name":"Spellcasting (Wizard)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As a student of arcane magic, you have a spellbook containing spells that show the first glimmerings of your true power.\nCantrips\nAt 1st level, you know three cantrips of your choice from the wizard spell list. You learn additional wizard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Wizard table.\nSpellbook\nAt 1st level, you have a spellbook containing six 1stlevel wizard spells of your choice. Your spellbook is the repository of the wizard spells you know, except your cantrips, which are fixed in your mind.\nPreparing and Casting Spells\nThe Wizard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nYou prepare the list of wizard spells that are available for you to cast. To do so, choose a number of wizard spells from your spellbook equal to your Intelligence modifier + your wizard level (minimum of one spell). The spells must be of a level for which you have spell slots.\nFor example, if you're a 3rd-level wizard, you have four 1st-level and two 2nd-level spell slots. With an Intelligence of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination, chosen from your spellbook. If you prepare the 1st-level spell magic missile, you can cast it using a 1st-level or a 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of wizard spells requires time spent studying your spellbook and memorizing the incantations and gestures you must make to cast the spell: at least 1 minute per spell level for each spell on your list.\nSpellcasting Ability\nIntelligence is your spellcasting ability for your wizard spells, since you learn your spells through dedicated study and memorization. You use your Intelligence whenever a spell refers to your spellcasting ability. In addition, you use your Intelligence modifier when setting the saving throw DC for a wizard spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Intelligence modifier\nSpell attack modifier = your proficiency bonus + your Intelligence modifier\nRitual Casting\nYou can cast a wizard spell as a ritual if that spell has the ritual tag and you have the spell in your spellbook. You don't need to have the spell prepared.\nSpellcasting Focus\nYou can use an arcane focus as a spellcasting focus for your wizard spells.\nLearning Spells of 1st Level and Higher\nEach time you gain a wizard level, you can add two wizard spells of your choice to your spellbook for free. Each of these spells must be of a level for which you have spell slots, as shown on the Wizard table. On your adventures, you might find other spells that you can add to your spellbook (see the \"Your Spellbook\" sidebar).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Wizard 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.gbNo5eVPaqr8IVKL","advancementOrigin":"N4bhi6usK8wuNEnh.NhwTsEnDKEFARuzC"}},"img":"icons/magic/fire/explosion-embers-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234406,"modifiedTime":1699987548856,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"fnxa7jBxIHkDyZuU","name":"Arcane Recovery","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have learned to regain some of your magical energy by studying your spellbook. Once per day when you finish a short rest, you can choose expended spell slots to recover. The spell slots can have a combined level that is equal to or less than half your wizard level (rounded up), and none of the slots can be 6th level or higher.For example, if you're a 4th-level wizard, you can recover up to two levels worth of spell slots. You can recover either a 2nd-level spell slot or two 1st-level spell slots.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self","prompt":true},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"lr","recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"The wizard can recover this number worth of spells slots (of 5th-level or lower):","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"ceil(@classes.wizard.levels/2)","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Wizard 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.e0uTcFPpgxjIyUW9","advancementOrigin":"N4bhi6usK8wuNEnh.NhwTsEnDKEFARuzC"}},"img":"icons/magic/earth/explosion-lava-stone-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234399,"modifiedTime":1691519218869,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ur4Pjajcd3IlxKlZ","name":"Rock Gnome","type":"race","img":"icons/environment/wilderness/terrain-rocks-brown.webp","system":{"description":{"value":"Your gnome character has certain characteristics in common with all other gnomes.Ability Score Increase. Your Intelligence score increases by 2.Age. Gnomes mature at the same rate humans do, and most are expected to settle down into an adult life by around age 40. They can live 350 to almost 500 years.Alignment. Gnomes are most often good. Those who tend toward law are sages, engineers, researchers, scholars, investigators, or inventors. Those who tend toward chaos are minstrels, tricksters, wanderers, or fanciful jewelers. Gnomes are good‑hearted, and even the tricksters among them are more playful than vicious.Size. Gnomes are between 3 and 4 feet tall and average about 40 pounds. Your size is Small.Speed. Your base walking speed is 25 feet.Darkvision. Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Gnome Cunning. You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.Languages. You can speak, read, and write Common and Gnomish. The Gnomish language, which uses the Dwarvish script, is renowned for its technical treatises and its catalogs of knowledge about the natural world.Rock GnomeAs a rock gnome, you have a natural inventiveness and hardiness beyond that of other gnomes.Ability Score Increase. Your Constitution score increases by 1.Artificer's Lore. Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.Tinker. You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time.When you create a device, choose one of the following options:Clockwork Toy. This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.Fire Starter. The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.Music Box. When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"rock-gnome","advancement":[{"_id":"oHASjkY2yexn8nAv","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.races.EHhr9umJ5kxJFCQH","Compendium.dnd5e.races.OQA1sHxKnSJq01dL","Compendium.dnd5e.races.koRPOLtj8XAFMwnW"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"PZFiXV29QKKu02BE":"Compendium.dnd5e.races.EHhr9umJ5kxJFCQH","H5IsMCJRETbzQF6T":"Compendium.dnd5e.races.OQA1sHxKnSJq01dL","ylzIab4YKbPPyvj0":"Compendium.dnd5e.races.koRPOLtj8XAFMwnW"}},"level":0,"title":""},{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":0,"fixed":{"str":0,"dex":0,"con":1,"int":2,"wis":0,"cha":0},"cap":2},"value":{"type":"asi","assignments":{"con":1,"int":2}},"level":0,"title":""},{"_id":"1qwH1s1GrEC8T8Qp","type":"Size","configuration":{"hint":"Gnomes are between 3 and 4 feet tall and average about 40 pounds. Your size is Small.","sizes":["sm"]},"value":{"size":"sm"},"level":1,"title":""},{"_id":"lQjgBd250F2JZeo2","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:standard:common","languages:standard:gnomish"],"choices":[]},"level":1,"title":"","value":{"chosen":["languages:standard:common","languages:standard:gnomish"]}}],"movement":{"walk":25,"burrow":0,"climb":0,"fly":0,"swim":0,"units":"ft","hover":false},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"type":{"subtype":"gnome","value":"humanoid","custom":""}},"effects":[],"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.races.TZtarkKs6cgGD7z2"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1677181053374,"modifiedTime":1699993725827,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null},{"_id":"PZFiXV29QKKu02BE","name":"Gnome Cunning","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Gnome","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.EHhr9umJ5kxJFCQH","advancementOrigin":"ur4Pjajcd3IlxKlZ.oHASjkY2yexn8nAv"}},"img":"icons/magic/light/hand-sparks-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234464,"modifiedTime":1699987548856,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"H5IsMCJRETbzQF6T","name":"Artificer's Lore","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Rock Gnome","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.OQA1sHxKnSJq01dL","advancementOrigin":"ur4Pjajcd3IlxKlZ.oHASjkY2yexn8nAv"}},"img":"icons/magic/fire/flame-burning-chain.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234468,"modifiedTime":1699987550173,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ylzIab4YKbPPyvj0","name":"Tinker","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time. When you create a device, choose one of the following options:\nClockwork Toy: This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.\nFire Starter: The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.\nMusic Box: When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"hour","cost":1,"condition":"Expend 10 gp worth of materials"},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Rock Gnome","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.koRPOLtj8XAFMwnW","advancementOrigin":"ur4Pjajcd3IlxKlZ.oHASjkY2yexn8nAv"}},"img":"icons/commodities/tech/cog-steel.webp","effects":[{"_id":"CkQlNsLyTZGVbnKM","changes":[{"key":"system.traits.toolProf.value","mode":2,"value":"tinker","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/commodities/tech/cog-steel.webp","label":"Tinker","origin":"Item.koRPOLtj8XAFMwnW","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234472,"modifiedTime":1699986898969,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"6pbotGIvqQkraPva","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"5","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":648,"rounds":1,"seconds":null,"combat":null,"turns":null,"startRound":0,"startTurn":0},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","label":"Shield","origin":"Compendium.dnd5e.heroes.4Jsv5vYaJ1atUEDV.Item.z1mx84ONwkXKUZd7","tint":null,"transfer":false,"sort":0},{"_id":"cfwMU7LuOJ619Lny","changes":[{"key":"system.attributes.ac.calc","value":"mage","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":648,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":0,"startTurn":0},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp","label":"Mage Armor","origin":"Compendium.dnd5e.heroes.4Jsv5vYaJ1atUEDV.Item.CKZTpZlxj7hjjo2H","transfer":false,"flags":{},"tint":null,"sort":0},{"_id":"CkQlNsLyTZGVbnKM","changes":[{"key":"system.traits.toolProf.value","mode":2,"value":"tinker","priority":null}],"disabled":false,"duration":{"startTime":0,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/commodities/tech/cog-steel.webp","label":"Tinker","origin":"Compendium.dnd5e.heroes.4Jsv5vYaJ1atUEDV.Item.ylzIab4YKbPPyvj0","transfer":false,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"4Jsv5vYaJ1atUEDV","_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787232155,"modifiedTime":1699993725854,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Krusk (Half-Orc Paladin)","type":"character","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":1,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":12,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""}},"init":{"ability":"","bonus":"0"},"movement":{"burrow":null,"climb":null,"fly":null,"swim":null,"walk":null,"units":null,"hover":false},"attunement":{"max":3},"senses":{"darkvision":null,"blindsight":null,"tremorsense":null,"truesight":null,"units":null,"special":""},"spellcasting":"cha","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"Roaming the land brigning justice to all, Krusk has just one goal: the destruction of evil wherever it lies.","public":""},"alignment":"Lawful Good","race":"PIvfnfQVQ98MdCmQ","background":null,"originalClass":"xogb503g0jZcBEyb","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","orc"],"custom":""},"weaponProf":{"value":["sim","mar"],"custom":""},"armorProf":{"value":["lgt","med","hvy","shl"],"custom":""},"toolProf":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{"vehicle":{"value":1,"ability":"int","bonuses":{"check":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":5,"max":5,"sr":false,"lr":true,"label":"Lay on Hands"},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Krusk","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"mmNOUJeTSbhakKbO","name":"Amulet (Holy Symbol)","type":"equipment","system":{"description":{"value":"An amulet depicting a symbol representing a deity through which a true believer can call forth their power and in doing so spread the faith.Spellcasting Focus. A cleric or paladin can use a holy symbol as a spellcasting focus. To use the symbol in this way, the caster must hold it in hand, wear it visibly, or bear it on a shield.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"special","cost":null,"condition":"Holy symbol must be clearly visible."},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"trinket","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"sort":0,"flags":{},"img":"icons/equipment/neck/pendant-bronze-gem-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wKzMNfJSgCUaqpHG","name":"Javelin (melee)","type":"weapon","system":{"description":{"value":"This light and flexible spear is designed for throwing, but is versatile enough to be used in melee combat as well.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false},"proficient":null},"sort":0,"flags":{},"img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640500,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"PzYFkgoa8KpZwUWe","name":"Javelin (thrown)","type":"weapon","system":{"description":{"value":"This light and flexible spear is designed for throwing, but is versatile enough to be used in melee combat as well.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"ammo","target":"REOAERyAiCBpCA7V","amount":1,"scale":false},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false},"proficient":null},"sort":0,"flags":{},"img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640507,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"REOAERyAiCBpCA7V","name":"Javelin","type":"consumable","system":{"description":{"value":"This light and flexible spear is designed for throwing, but is versatile enough to be used in melee combat as well.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":5,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DWLMnODrnHn8IbAG"}},"img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640514,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"h9ta6MMHygQtSvhd","name":"Love Letter","type":"loot","system":{"description":{"value":"A love letter sent by an admirer.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{},"img":"icons/sundries/scrolls/scroll-plain-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7GbdWRRe8GyKGVYk","name":"Chain Mail","type":"equipment","system":{"description":{"value":"Made of interlocking metal rings, chain mail includes a layer of quilted fabric worn underneath the mail to prevent chafing and to cushion the impact of blows. The suit includes gauntlets.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":55,"price":{"value":75,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":13,"stealth":true,"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.rLMflzmxpe8JGTOA"}},"img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jAp8oEZymuFqMEME","name":"Shield","type":"equipment","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"img":"icons/equipment/shield/oval-wooden-boss-steel.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JVygpNYgNviQlQDL","name":"Longsword","type":"weapon","system":{"description":{"value":"A lengthy stright blade designed for slashing foes, the longsword is a highly versatile weapon that may also be wielded with two hands for more punishing strikes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"img":"icons/weapons/swords/greatsword-crossguard-steel.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QDJj8gNDG3fapNIZ","name":"Hempen Rope (50 ft.)","type":"consumable","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":8}},"core":{"sourceId":"Compendium.dnd5e.items.QXmaarJ4X8P0C1HV"}},"img":"icons/sundries/survival/rope-wrapped-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"E0S0CJRUih4rZUTx","name":"Mess Kit","type":"loot","system":{"description":{"value":"This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":4}},"core":{"sourceId":"Compendium.dnd5e.items.V13fjV5oSmvbRdgP"}},"img":"icons/tools/cooking/fork-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640519,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"XDOhevGrWTwftiiM","name":"Bedroll","type":"loot","system":{"description":{"value":"Roll of cloth used by traveller to sleep in.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":6}},"core":{"sourceId":"Compendium.dnd5e.items.DVXmyetZuvxbzAwW"}},"img":"icons/sundries/flags/banner-worn-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eIMlGbeDuYjjEGRH","name":"Waterskin","type":"consumable","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Uv0ilmzbWvqmlCVH"}},"img":"icons/sundries/survival/wetskin-leather-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640526,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"XeDU0JtxGcNBjXer","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"IPeL1J71CbP6s5y5","name":"Smith's Tools","type":"tool","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in smithing.Proficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":8,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"","ability":"str","chatFlavor":"","proficient":null,"bonus":""},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.KndVe2insuctjIaj"}},"img":"icons/tools/smithing/hammer-sledge-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zk8hxPzKFTDZWVED","name":"Tinderbox","type":"loot","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DNOSEAvF4Oh1DlWy"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640532,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"grGg87yIxTTxoPTA","name":"Torch","type":"consumable","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":40,"width":null,"units":"ft","type":"radius","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":7}},"core":{"sourceId":"Compendium.dnd5e.items.BnOCLuNWhVvzHLjl"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647529,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WuNY7UdTCjUEpGlU","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640583,"lastModifiedBy":"dnd5ebuilder0000"}},{"name":"Local Champion","type":"background","system":{"description":{"value":"Skill Proficiencies: Animal Handling, SurvivalTool Proficiencies: Artisan's tools, vehicles (land)Equipment: A set of artisan's tools, common clothes, and a pouch containing 10 gp","chat":"","unidentified":""},"source":{"custom":"","book":"","page":"","license":"CC-BY-4.0"},"advancement":[]},"img":"icons/environment/people/infantry-armored.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040912446,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"gfQ9BWSZtm6WJyZr"},{"_id":"xogb503g0jZcBEyb","name":"Paladin","type":"class","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"As a paladin, you gain the following class features.\nHit Points\nHit Dice: 1d10 per paladin levelHit Points at 1st Level: 10 + your Constitution modifierHit Points at Higher Levels: 1d10 (or 6) + your Constitution modifier per paladin level after 1st\nProficiencies\nArmor: All armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two from Athletics, Insight, Intimidation, Medicine, Persuasion, and Religion\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a martial weapon and a shield or (b) two martial weapons\n(a) five javelins or (b) any simple melee weapon\n(a) a priest's pack or (b) an explorer's pack\nChain mail and a holy symbol\n\nPaladin Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.E8ozg8avUVOX9N7u]{Divine Sense}, @Compendium[dnd5e.classfeatures.OdrvL3afwLOPeuYZ]{Lay on Hands}\n\n\n2nd\n+2\n@UUID[Compendium.dnd5e.classfeatures.Ho7dVxBlOYFlfBHk]{Fighting Style}, @Compendium[dnd5e.classfeatures.ihoQHsmVZlyDbPhX]{Spellcasting}, @Compendium[dnd5e.classfeatures.ySMPQ6zNSlvkrl2f]{Divine Smite}\n\n\n3rd\n+2\n@Compendium[dnd5e.classfeatures.dY9yrqkyEDuF0CG2]{Divine Health}, @Compendium[dnd5e.classfeatures.olAqNsUTIef9x8xC]{Sacred Oath}, @UUID[Compendium.dnd5e.classfeatures.8M7uOPhbTxoxxJSo]{Channel Divinity}\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n5th\n+3\n2nd Level Spell Slot, @Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}\n\n\n6th\n+3\n@Compendium[dnd5e.classfeatures.carGDhkIdoduTC0I]{Aura of Protection}\n\n\n7th\n+3\nSacred Oath feature\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n9th\n+4\n3rd Level Spell Slot\n\n\n10th\n+4\n@Compendium[dnd5e.classfeatures.nahSkBO6LH4HkpaT]{Aura of Courage}\n\n\n11th\n+4\n@Compendium[dnd5e.classfeatures.FAk41RPCTcvCk6KI]{Improved Divine Smite}\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n4th Level Spell Slot\n\n\n14th\n+5\n@Compendium[dnd5e.classfeatures.U7BIPVPsptBmwsnV]{Cleansing Touch}\n\n\n15th\n+5\nSacred Oath feature\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n5th Level Spell Slot\n\n\n18th\n+6\nAura improvements\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\nSacred Oath feature\n\n\n\nSacred Oaths\nBecoming a paladin involves taking vows that commit the paladin to the cause of righteousness, an active path of fighting wickedness. The final oath, taken when he or she reaches 3rd level, is the culmination of all the paladin's training. Some characters with this class don't consider themselves true paladins until they have reached 3rd level and made this oath. For others, the actual swearing of the oath is a formality, an official stamp on what has always been true in the paladin's heart.\n@Compendium[dnd5e.subclasses.sZ86mbX8D5PfYuhl]{Oath of Devotion}\nBreaking Your Oath\nA paladin tries to hold to the highest standards of conduct, but even the most virtuous paladin is fallible. Sometimes the right path proves too demanding, sometimes a situation calls for the lesser of two evils, and sometimes the heat of emotion causes a paladin to transgress his or her oath.\nA paladin who has broken a vow typically seeks absolution from a cleric who shares his or her faith or from another paladin of the same order. The paladin might spend an allnight vigil in prayer as a sign of penitence, or undertake a fast or similar act of self-denial. After a rite of confession and forgiveness, the paladin starts fresh.\nIf a paladin willfully violates his or her oath and shows no sign of repentance, the consequences can be more serious. At the GM's discretion, an impenitent paladin might be forced to abandon this class and adopt another.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"paladin","levels":1,"hitDice":"d10","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"FiGiRPSjIr96LxZo"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.E8ozg8avUVOX9N7u","Compendium.dnd5e.classfeatures.OdrvL3afwLOPeuYZ"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"BudM4uxDSnRehek7":"Compendium.dnd5e.classfeatures.E8ozg8avUVOX9N7u","2zb2FwOFtktH9JHF":"Compendium.dnd5e.classfeatures.OdrvL3afwLOPeuYZ"}},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"RFgaDXztbtJFtTZ1"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Ho7dVxBlOYFlfBHk","Compendium.dnd5e.classfeatures.ihoQHsmVZlyDbPhX","Compendium.dnd5e.classfeatures.ySMPQ6zNSlvkrl2f"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"JP26UvG5IiFmEBbH"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.dY9yrqkyEDuF0CG2","Compendium.dnd5e.classfeatures.olAqNsUTIef9x8xC","Compendium.dnd5e.classfeatures.8M7uOPhbTxoxxJSo"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"H7qZzx7uWwpFp4BO"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"143iuO07gsV0GF3t"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.carGDhkIdoduTC0I"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"NB5hjQasB1g8zM4U"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.nahSkBO6LH4HkpaT"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"CQvgRRVuvnszH9nK"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.FAk41RPCTcvCk6KI"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":11,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"EdDaJR59eAVkAssZ"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.U7BIPVPsptBmwsnV"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"sD79rzcMobOKOeCN"},{"type":"ItemChoice","configuration":{"hint":"Choose one of the following options. You can’t take a Fighting Style option more than once, even if you later get to choose again.","choices":{"2":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.zSlV0O2rQMdoq6pB","Compendium.dnd5e.classfeatures.hCop9uJrWhF1QPb4","Compendium.dnd5e.classfeatures.3Nc6u9pyStByuJsm","Compendium.dnd5e.classfeatures.06NVMYf58Z76O85O"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"fightingStyle","level":""}},"value":{},"title":"Fighting Style","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"PVp6xmz2oY03kKzD"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"BkgGiRIfeGzmeGmm"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"901TAV4Ee61mIfcE"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"9chByJPN7zbZVAtt"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"uPourLT0DP2QTtHk"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":19,"title":""},{"_id":"qfbfR422hrwjwWyd","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:lgt","armor:med","armor:hvy","armor:shl"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["armor:lgt","armor:med","armor:hvy","armor:shl"]}},{"_id":"2pEp37GeIGCBdiqU","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim","weapon:mar"],"choices":[]},"level":1,"title":"","value":{"chosen":["weapon:sim","weapon:mar"]}},{"_id":"aIeuTIJdiKMaChi8","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:wis","saves:cha"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["saves:wis","saves:cha"]}},{"_id":"ZZIWxV7EaHl6GVcu","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:ath","skills:ins","skills:itm","skills:med","skills:per","skills:rel"]}]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["skills:ins","skills:rel"]}},{"type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:lgt","armor:med","armor:shl"],"choices":[]},"level":1,"title":"","_id":"qd6RxOGs50LR5Lea","classRestriction":"secondary","value":{}},{"_id":"LYiiMtwvVVXZs8yE","type":"Trait","configuration":{"hint":"The divine magic flowing through you makes you immune to disease.","mode":"default","allowReplacements":false,"grants":["ci:diseased"],"choices":[]},"level":3,"title":"Divine Health","value":{}}],"spellcasting":{"progression":"half","ability":"cha"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.gZiUvbXWLs0pOp0c"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234280,"modifiedTime":1699992948012,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"BudM4uxDSnRehek7","name":"Divine Sense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The presence of strong evil registers on your senses like a noxious odor, and powerful good rings like heavenly music in your ears. As an action, you can open your awareness to detect such forces. Until the end of your next turn, you know the location of any celestial, fiend, or undead within 60 feet of you that is not behind total cover. You know the type (celestial, fiend, or undead) of any being whose presence you sense, but not its identity (the vampire Count Strahd von Zarovich, for instance). Within the same radius, you also detect the presence of any place or object that has been consecrated or desecrated, as with the @Compendium[dnd5e.spells.SLxA9QhrggTz0taU]{Hallow} spell.You can use this feature a number of times equal to 1 + your Charisma modifier. When you finish a long rest, you regain all expended uses.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1 + @abilities.cha.mod","per":"lr","recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.E8ozg8avUVOX9N7u","advancementOrigin":"xogb503g0jZcBEyb.RFgaDXztbtJFtTZ1"}},"img":"icons/creatures/eyes/human-single-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234352,"modifiedTime":1699987355946,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"2zb2FwOFtktH9JHF","name":"Lay on Hands","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your blessed touch can heal wounds. You have a pool of healing power that replenishes when you take a long rest. With that pool, you can restore a total number of hit points equal to your paladin level × 5.As an action, you can touch a creature and draw power from the pool to restore a number of hit points to that creature, up to the maximum amount remaining in your pool.Alternatively, you can expend 5 hit points from your pool of healing to cure the target of one disease or neutralize one poison affecting it. You can cure multiple diseases and neutralize multiple poisons with a single use of Lay on Hands, expending hit points separately for each one.This feature has no effect on undead and constructs.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":"Target cannot be Undead or a Construct."},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":5,"max":"5 * @classes.paladin.levels","per":"lr","recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Paladin 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.OdrvL3afwLOPeuYZ","advancementOrigin":"xogb503g0jZcBEyb.RFgaDXztbtJFtTZ1"}},"img":"icons/magic/light/orbs-hand-gray.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234371,"modifiedTime":1699987355947,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"PIvfnfQVQ98MdCmQ","name":"Half-Orc","type":"race","img":"icons/commodities/bones/skull-tusked-grey.webp","system":{"description":{"value":"Your half-orc character has certain traits deriving from your orc ancestry.Ability Score Increase. Your Strength score increases by 2, and your Constitution score increases by 1.Age. Half-orcs mature a little faster than humans, reaching adulthood around age 14. They age noticeably faster and rarely live longer than 75 years.Alignment. Half-orcs inherit a tendency toward chaos from their orc parents and are not strongly inclined toward good. Half-orcs raised among orcs and willing to live out their lives among them are usually evil.Size. Half‑orcs are somewhat larger and bulkier than humans, and they range from 5 to well over 6 feet tall. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Thanks to your orc blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Menacing. You gain proficiency in the Intimidation skill.Relentless Endurance. When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.Savage Attacks. When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.Languages. You can speak, read, and write Common and Orc. Orc is a harsh, grating language with hard consonants. It has no script of its own but is written in the Dwarvish script.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"half-orc","advancement":[{"_id":"Nj1VOKOTjxKU15J8","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.races.97c8i9Z28thvZuA8","Compendium.dnd5e.races.0kUsT4sMUOr5FcoX"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"qLsxqVkevc8LivRC":"Compendium.dnd5e.races.97c8i9Z28thvZuA8","3EbsalzpbmnJxgU2":"Compendium.dnd5e.races.0kUsT4sMUOr5FcoX"}},"level":0,"title":""},{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":0,"fixed":{"str":2,"dex":0,"con":1,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi","assignments":{"str":2,"con":1}},"level":0,"title":""},{"_id":"jdak6D1rjScJSK8i","type":"Size","configuration":{"hint":"Half-‐‑orcs are somewhat larger and bulkier than humans, and they range from 5 to well over 6 feet tall. Your size is Medium.","sizes":["med"]},"value":{"size":"med"},"level":1,"title":""},{"_id":"aRv9Ec4xJCyrFMpY","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["skills:itm"],"choices":[]},"level":0,"title":"Menacing","value":{"chosen":["skills:itm"]}},{"_id":"4cI2nhWNr0D1hOnx","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:standard:common","languages:standard:orc"],"choices":[]},"level":0,"title":"","value":{"chosen":["languages:standard:common","languages:standard:orc"]}}],"type":{"subtype":"orc","value":"humanoid","custom":""},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false}},"effects":[],"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.races.n5L000DkNBU6h2oJ"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1677181067463,"modifiedTime":1699992948013,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null},{"_id":"qLsxqVkevc8LivRC","name":"Relentless Endurance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":"When you are reduced to 0 hit points"},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"lr","recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Half-Orc","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.97c8i9Z28thvZuA8","advancementOrigin":"PIvfnfQVQ98MdCmQ.Nj1VOKOTjxKU15J8"}},"img":"icons/magic/control/control-influence-rally-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234463,"modifiedTime":1699987355942,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"3EbsalzpbmnJxgU2","name":"Savage Attacks","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.Foundry NoteEnable this feature in the Special Traits section of the character sheet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Half-Orc","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.0kUsT4sMUOr5FcoX","advancementOrigin":"PIvfnfQVQ98MdCmQ.Nj1VOKOTjxKU15J8"}},"img":"icons/skills/melee/weapons-crossed-swords-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234460,"modifiedTime":1699987177874,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"dnd5e":{"savageAttacks":true}},"_id":"Dh1AA6w104V17V6w","_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787232161,"modifiedTime":1699992954619,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Jw8DeuPjt1qpusdB","name":"Sefris (Half-Elf Warlock)","type":"character","img":"","system":{"abilities":{"str":{"value":12,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":19,"proficient":1,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":10,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""}},"init":{"ability":"","bonus":"0"},"movement":{"burrow":null,"climb":null,"fly":null,"swim":null,"walk":null,"units":null,"hover":false},"attunement":{"max":3},"senses":{"darkvision":null,"blindsight":null,"tremorsense":null,"truesight":null,"units":null,"special":""},"spellcasting":"cha","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"Sefris's pickpocketing as a child grew into small burglaries and eventually complex heists, using the dark bond with his fiend to aid his exploits. He'll work for anyone who can throw some coin his way.","public":""},"alignment":"Chaotic Neutral","race":"wLvV5awPEy6FHkvg","background":null,"originalClass":"MuaNnEZkswuhixJP","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":"Magical Sleep; Advantage on saving throws against charms"},"languages":{"value":["common","elvish","deep"],"custom":""},"weaponProf":{"value":["sim"],"custom":""},"armorProf":{"value":["lgt"],"custom":""},"toolProf":{"value":[],"custom":""}},"currency":{"pp":0,"gp":15,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{"game":{"value":1,"ability":"int","bonuses":{"check":""}},"thief":{"value":1,"ability":"int","bonuses":{"check":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":1,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Sefris","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"s6ksFNAiSR2Wy20f","name":"Expanded Spell List","type":"feat","system":{"description":{"value":"The Fiend lets you choose from an expanded list of spells when you learn a warlock spell. The following spells are added to the warlock spell list for you.\nFiend Expanded Spells\n\n\nSpell Level\nSpells\n\n\n\n\n1st\n@Compendium[dnd5e.spells.5SuJewoa1CRWaj1F]{Burning Hands}, @Compendium[dnd5e.spells.arzCrMRgcNiQuh43]{Command}\n\n\n2nd\n@Compendium[dnd5e.spells.zwGsAv6kmwzYGhh3]{Blindness/Deafness}, @Compendium[dnd5e.spells.7u2obDvuvtZBkTfq]{Scorching Ray}\n\n\n3rd\n@Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball}, @Compendium[dnd5e.spells.TwlD4PLcltv7Xh7j]{Stinking Cloud}\n\n\n4th\n@Compendium[dnd5e.spells.avD5XUtkBPQQR97c]{Fire Shield}, @Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire}\n\n\n5th\n@Compendium[dnd5e.spells.5e1xTohkzqFqbYH4]{Flame Strike}, @Compendium[dnd5e.spells.SLxA9QhrggTz0taU]{Hallow}\n\n\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"The Fiend 1","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.classfeatures.4IHsIcBhAVDt8QjY"}},"img":"icons/magic/control/encase-creature-monster-hold.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":null,"modifiedTime":1699987213588,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"tFWyqoQOTGy2tjVQ","name":"Dagger","type":"weapon","system":{"description":{"value":"A short metal blade mounted to a small hilt and crossguard. The dagger makes an effective side armament for hardened warriors or a hidden blade for assassins and thieves.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.0E565kQUBmndJ1a2"}},"img":"icons/weapons/daggers/dagger-jeweled-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gWG0z1fZ1Wh5v4ox","name":"Component Pouch","type":"consumable","system":{"description":{"value":"A component pouch is a small, watertight leather belt pouch that has compartments to hold all the material components and other special items you need to cast your spells, except for those components that have a specific cost (as indicated in a spell's description).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.eZGmdOhaTWMicXPW"}},"img":"icons/containers/bags/pack-simple-leather-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PWzpA5cBPJN2ObHr","name":"Light Crossbow","type":"weapon","system":{"description":{"value":"A small crossbow with a wooden haft and a tense cord which is capable of firing a single bolt which can puncture even heavy armor at close range.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"ammo","target":"YhC9uJKyuxTPMNGB","amount":1,"scale":false},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"lgt":false,"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.ddWvQRLmnnIS0eLF"}},"img":"icons/weapons/crossbows/crossbow-simple-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EJBzJl2NdChAdgPp","name":"Leather Armor","type":"equipment","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"img":"icons/equipment/chest/breastplate-quilted-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CFNsSpQESXydoWIT","name":"Common Clothes","type":"equipment","system":{"description":{"value":"Clothes worn by most commoners.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.8RXjiddJ6VGyE7vB"}},"img":"icons/equipment/chest/shirt-collared-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640605,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"YhC9uJKyuxTPMNGB","name":"Crossbow Bolt","type":"consumable","system":{"description":{"value":"This ammunition is used for all varieties of crossbow and is typically a short metal shaft with a narrow piercing tip.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":20,"weight":0.075,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.SItCnYBqhzqBoaWG"}},"img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647536,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"cGloc8QtriPCqkot","name":"Quiver","type":"backpack","system":{"description":{"value":"A quiver can hold up to 20 arrows.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"capacity":{"type":"items","value":20,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.4MtQKPn9qMWCFjDA"}},"img":"icons/containers/ammunition/arrows-quiver-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AunuAQWZl4OW6XhY","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RbVPCEnvRQRNgalQ","name":"Pouch","type":"backpack","system":{"description":{"value":"A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":6,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.9bWTRRDym06PzSAf"}},"img":"icons/containers/bags/coinpouch-simple-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640620,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Jh3ztSfsO2aMdRCh","name":"Mess Kit","type":"loot","system":{"description":{"value":"This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.V13fjV5oSmvbRdgP"}},"img":"icons/tools/cooking/fork-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640627,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"khqYCCRBDGI6hyPp","name":"Hempen Rope (50 ft.)","type":"consumable","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QXmaarJ4X8P0C1HV"}},"img":"icons/sundries/survival/rope-wrapped-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VPbIxZbUa0Yu83OH","name":"Bedroll","type":"loot","system":{"description":{"value":"Roll of cloth used by traveller to sleep in.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DVXmyetZuvxbzAwW"}},"img":"icons/sundries/flags/banner-worn-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jWmSizyaQYCgP2q6","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640633,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"QMOVCtfUZ45nbquO","name":"Tinderbox","type":"loot","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DNOSEAvF4Oh1DlWy"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640639,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Kcl8IOHaqoKSvw5O","name":"Torch","type":"consumable","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":40,"width":null,"units":"ft","type":"radius","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.BnOCLuNWhVvzHLjl"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647547,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MtiO1knQLL5GNGlA","name":"Waterskin","type":"consumable","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Uv0ilmzbWvqmlCVH"}},"img":"icons/sundries/survival/wetskin-leather-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640652,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"jCesM4Kt02PWF6W5","name":"Thieves' Tools","type":"tool","system":{"description":{"value":"This set of tools includes a small file, a set of lock picks, a small mirror mounted on a metal handle, a set of narrow-bladed scissors, and a pair of pliers. Proficiency with these tools lets you add your proficiency bonus to any ability checks you make to disarm traps or open locks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"","ability":"dex","chatFlavor":"","proficient":null,"bonus":""},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.woWZ1sO5IUVGzo58"}},"img":"icons/tools/hand/lockpicks-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"n4y54n9b3KkJdhLL","name":"Crowbar","type":"loot","system":{"description":{"value":"Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.V5UAjT3ed6sDNtgm"}},"img":"icons/tools/hand/pickaxe-steel-white.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"r4vy8utsxo9my9r0","name":"The Fiend","type":"subclass","img":"icons/creatures/unholy/demon-fire-horned-winged-roar.webp","system":{"description":{"value":"You have made a pact with a fiend from the lower planes of existence, a being whose aims are evil, even if you strive against those aims. Such beings desire the corruption or destruction of all things, ultimately including you. Fiends powerful enough to forge a pact include demon lords such as Demogorgon, Orcus, Fraz'Urb-luu, and Baphomet; archdevils such as Asmodeus, Dispater, Mephistopheles, and Belial; pit fiends and balors that are especially mighty; and ultroloths and other lords of the yugoloths.\nExpanded Spell List\nThe Fiend lets you choose from an expanded list of spells when you learn a warlock spell. The following spells are added to the warlock spell list for you.\n\n\n\nSpell Level\nSpells\n\n\n\n\n1st\n@Compendium[dnd5e.spells.5SuJewoa1CRWaj1F]{Burning Hands}, @Compendium[dnd5e.spells.arzCrMRgcNiQuh43]{Command}\n\n\n2nd\n@Compendium[dnd5e.spells.zwGsAv6kmwzYGhh3]{Blindness/Deafness}, @Compendium[dnd5e.spells.7u2obDvuvtZBkTfq]{Scorching Ray}\n\n\n3rd\n@Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball}, @Compendium[dnd5e.spells.TwlD4PLcltv7Xh7j]{Stinking Cloud}\n\n\n4th\n@Compendium[dnd5e.spells.avD5XUtkBPQQR97c]{Fire Shield}, @Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire}\n\n\n5th\n@Compendium[dnd5e.spells.5e1xTohkzqFqbYH4]{Flame Strike}, @Compendium[dnd5e.spells.SLxA9QhrggTz0taU]{Hallow}\n\n\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"the-fiend","classIdentifier":"warlock","advancement":[{"_id":"mwpiq5ybhynszxgq","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Jv0zu4BtUi8bFCqJ"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"mbXQrn8QAMAtSSUc":"Compendium.dnd5e.classfeatures.Jv0zu4BtUi8bFCqJ"}},"level":1,"title":"Features"},{"_id":"icxswdpvqj9o89nz","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.OQSb0bO1yDI4aiMx"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features"},{"_id":"5ymsjeikr4pdu6u7","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.9UZ2WjUF2k58CQug"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features"},{"_id":"swdh8yx47ilzgur2","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.aCUmlnHlUPHS0rdu"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.subclasses.WPFVBg589uI8iOMH"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":null,"modifiedTime":1699993640223,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Z9p1vezIn95jw1Yw","name":"Eldritch Blast","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A beam of crackling energy streaks toward a creature within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 force damage.The spell creates more than one beam when you reach higher levels: two beams at 5th level, three beams at 11th level, and four beams at 17th level. You can direct the beams at the same target or at different ones. Make a separate attack roll for each beam.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Z9p1vezIn95jw1Yw"}},"img":"icons/magic/fire/projectile-fireball-smoke-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486083,"modifiedTime":1661603486083,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"vrN18tbTw7io5MWd","name":"Chill Touch","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a ghostly, skeletal hand in the space of a creature within range. Make a ranged spell attack against the creature to assail it with the chill of the grave. On a hit, the target takes 1d8 Necrotic damage, and it can't regain hit points until the start of your next turn. Until then, the hand clings to the target.If you hit an undead target, it also has disadvantage on attack rolls against you until the end of your next turn.This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.vrN18tbTw7io5MWd"}},"img":"icons/magic/water/projectile-ice-faceted-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486083,"modifiedTime":1661603486083,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"5SuJewoa1CRWaj1F","name":"Burning Hands","ownership":{"default":0},"type":"spell","system":{"description":{"value":"As you hold your hands with thumbs touching and fingers spread, a thin sheet of flames shoots forth from your outstretched fingertips. Each creature in a 15-foot cone must make a Dexterity saving throw. A creature takes 3d6 fire damage on a failed save, or half as much damage on a successful one.The fire ignites any flammable objects in the area that aren't being worn or carried.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":15,"width":null,"units":"ft","type":"cone","prompt":true},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"pact","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.5SuJewoa1CRWaj1F"}},"img":"icons/magic/air/fog-gas-smoke-dense-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486085,"modifiedTime":1661603486085,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"arzCrMRgcNiQuh43","name":"Command","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You speak a one-word command to a creature you can see within range. The target must succeed on a Wisdom saving throw or follow the command on its next turn. The spell has no effect if the target is undead, if it doesn't understand your language, or if your command is directly harmful to it.Some typical commands and their effects follow. You might issue a command other than one described here. If you do so, the DM determines how the target behaves. If the target can't follow your command, the spell ends.Approach. The target moves toward you by the shortest and most direct route, ending its turn if it moves within 5 feet of you.Drop. The target drops whatever it is holding and then ends its turn.Flee. The target spends its turn moving away from you by the fastest available means.Grovel. The target falls prone and then ends its turn.Halt. The target doesn't move and takes no actions. A flying creature stays aloft, provided that it is able to do so. If it must move to stay aloft, it flies the minimum distance needed to remain in the air.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"pact","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.arzCrMRgcNiQuh43"}},"img":"icons/magic/fire/explosion-fireball-small-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486086,"modifiedTime":1661603486086,"lastModifiedBy":"dnd5ebuilder0000"}},{"name":"Burglar","type":"background","system":{"description":{"value":"Skill Proficiencies: Deception, StealthTool Proficiencies: One type of gaming set, thieves' toolsEquipment: A crowbar, hooded common clothes, thieves' tools, and a belt pouch containing 15 gp","chat":"","unidentified":""},"source":{"custom":"","book":"","page":"","license":"CC-BY-4.0"},"advancement":[]},"img":"icons/magic/perception/silhouette-stealth-shadow.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040964521,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"8uFLMKLwRO7Y5Xl2"},{"_id":"MuaNnEZkswuhixJP","name":"Warlock","type":"class","img":"icons/creatures/mammals/bat-giant-tattered-purple.webp","system":{"description":{"value":"As a warlock, you gain the following class features.Hit PointsHit Dice: 1d8 per warlock levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per warlock level after 1stProficienciesArmor: Light armorWeapons: Simple weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two skills from Arcana, Deception, History, Intimidation, Investigation, Nature, and ReligionEquipmentYou start with the following equipment, in addition to the equipment granted by your background:(a) a light crossbow and 20 bolts or (b) any simple weapon(a) a component pouch or (b) an arcane focus(a) a scholar's pack or (b) a dungeoneer's packLeather armor, any simple weapon, and two daggersWarlock AdvancementLevelProficiency BonusFeaturesInvocations Known1st+2@Compendium[dnd5e.classfeatures.jTXHaK0vvT5DV3uO]{Otherworldly Patron}, @Compendium[dnd5e.classfeatures.x6IJZwr6f0SGral7]{Pact Magic}̶2nd+2@Compendium[dnd5e.classfeatures.8MlxM2nEfE3Q0EVk]{Eldritch Invocations}23rd+2@Compendium[dnd5e.classfeatures.QwgfIpCN8VWfoUtX]{Pact Boon}24th+2@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}25th+33rd Level Spells, +1 Invocation36th+3Otherworldly Patron feature37th+34th Level Spells, +1 Invocation48th+3@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}49th+45th Level Spells, +1 Invocation510th+4Otherworldly Patron feature511th+4@Compendium[dnd5e.classfeatures.zB77V8BcCJvWVxck]{Mystic Arcanum (6th-Level Spell)}512th+4@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}, +1 Invocation613th+5@Compendium[dnd5e.classfeatures.zB77V8BcCJvWVxck]{Mystic Arcanum (7th-Level Spell)}614th+5Otherworldly Patron feature615th+5@Compendium[dnd5e.classfeatures.zB77V8BcCJvWVxck]{Mystic Arcanum (8th-Level Spell)}, +1 Invocation716th+5@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}717th+6@Compendium[dnd5e.classfeatures.zB77V8BcCJvWVxck]{Mystic Arcanum (9th-Level Spell)}718th+6+1 Invocation819th+6@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}820th+6@Compendium[dnd5e.classfeatures.0C04rwyvoknvFYiy]{Eldritch Master}8Your Pact BoonEach Pact Boon option produces a special creature or an object that reflects your patron's nature.Pact of the Chain. Your familiar is more cunning than a typical familiar. Its default form can be a reflection of your patron, with imps and quasits tied to the Fiend.Pact of the Blade. If you serve the Fiend, your weapon could be an axe made of black metal and adorned with decorative flames.Pact of the Tome. Your Book of Shadows could be a weighty tome bound in demon hide studded with iron, holding spells of conjuration and a wealth of forbidden lore about the sinister regions of the cosmos, a gift of the Fiend.Otherworldly PatronsThe beings that serve as patrons for warlocks are mighty inhabitants of other planes of existence—not gods, but almost godlike in their power. Various patrons give their warlocks access to different powers and invocations, and expect significant favors in return.Some patrons collect warlocks, doling out mystic knowledge relatively freely or boasting of their ability to bind mortals to their will. Other patrons bestow their power only grudgingly, and might make a pact with only one warlock. Warlocks who serve the same patron might view each other as allies, siblings, or rivals.@Compendium[dnd5e.subclasses.WPFVBg589uI8iOMH]{The Fiend}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"warlock","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"m04qS9GheCqdni2h"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.jTXHaK0vvT5DV3uO","Compendium.dnd5e.classfeatures.x6IJZwr6f0SGral7"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"O5nhueIb5HIil0eh":"Compendium.dnd5e.classfeatures.jTXHaK0vvT5DV3uO","uf6mKJJICzDHiWly":"Compendium.dnd5e.classfeatures.x6IJZwr6f0SGral7"}},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"AXY5iebZXk6dv5cn"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.8MlxM2nEfE3Q0EVk"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"5FXyMXNNqax59haT"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.QwgfIpCN8VWfoUtX"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"OuBVlt2PDTT7vBoB"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.zB77V8BcCJvWVxck"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":11,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"Ah54Qpu2mLCMZNay"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.0C04rwyvoknvFYiy"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"sKx7KLPkzjGf2sA1"},{"type":"ItemChoice","configuration":{"hint":"If an eldritch invocation has prerequisites, you must meet them to learn it. You can learn the invocation at the same time that you meet its prerequisites. A level prerequisite refers to your level in this class.","choices":{"2":2,"5":1,"7":1,"9":1,"12":1,"15":1,"18":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.2fyuw7MiCnocDeAU","Compendium.dnd5e.classfeatures.alUqO6c6OEKFQJdb","Compendium.dnd5e.classfeatures.QEuH5TeBN4PPYT2g","Compendium.dnd5e.classfeatures.61kXR1sniXHjvN17","Compendium.dnd5e.classfeatures.eNvpIaSnJUdF8fHl","Compendium.dnd5e.classfeatures.KygHql3cTj4IRrvZ","Compendium.dnd5e.classfeatures.CFIYXDmbmSP8BXjN","Compendium.dnd5e.classfeatures.Phy02H5x0TKHd7T3","Compendium.dnd5e.classfeatures.3sN91lT1R3oxcDKd","Compendium.dnd5e.classfeatures.QBk1RsuTIEF4GEBC","Compendium.dnd5e.classfeatures.bbUEsCPTLzbbwK6o","Compendium.dnd5e.classfeatures.r01WtcxTg4yTHm9m","Compendium.dnd5e.classfeatures.lEZKbWaVrSljRa9n","Compendium.dnd5e.classfeatures.id0gmGvzNZBEdzbx","Compendium.dnd5e.classfeatures.65ReXU4ZWqcSs3Cm","Compendium.dnd5e.classfeatures.zUIAzBnyt0NDvVXb","Compendium.dnd5e.classfeatures.MhJfdBl1B7PdU4oZ","Compendium.dnd5e.classfeatures.lxfdjLer3uKjyZqU","Compendium.dnd5e.classfeatures.QnRKYXb2bXpnNd2k","Compendium.dnd5e.classfeatures.DjXi0IkCTbJx1gsp","Compendium.dnd5e.classfeatures.k5DU0mMuYVHejiqz","Compendium.dnd5e.classfeatures.KfnUyjUWAk0bAAus","Compendium.dnd5e.classfeatures.8zciiglzEOZo7DDN","Compendium.dnd5e.classfeatures.rdBPd6CwqXT64iJM","Compendium.dnd5e.classfeatures.Xa2MLUJGCReJ28B7","Compendium.dnd5e.classfeatures.dTSV0xZMpY5CxkRk","Compendium.dnd5e.classfeatures.rhbwDZ9XNTmdkX2u","Compendium.dnd5e.classfeatures.pJADgAxxefgcATWr","Compendium.dnd5e.classfeatures.zYIdNAjqRyhS6qWs","Compendium.dnd5e.classfeatures.k5M8gsl7MMcdjOjs","Compendium.dnd5e.classfeatures.gFjxo01hAN4c9hDG","Compendium.dnd5e.classfeatures.snsjxGfmzWfZR5Nh"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"eldritchInvocation","level":""}},"value":{},"title":"Eldritch Invocations","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"SQoedRgBg4CZ2Twb"},{"type":"ItemChoice","configuration":{"hint":"","choices":{"3":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.9dSSa68mIPoX2ezA","Compendium.dnd5e.classfeatures.Ic1CSjvbWKudVUv9","Compendium.dnd5e.classfeatures.MYM908WLZ1lVvA1u"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"pact","level":""}},"value":{},"title":"Pact Boon","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"iKtAzqSlqwkihQn0"},{"type":"ItemChoice","configuration":{"hint":"Choose one 6th-level spell from the warlock spell list as this arcanum.","choices":{"11":1},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"atwill","uses":{"max":"1","per":"lr"}},"restriction":{"type":"","subtype":"","level":"6"}},"value":{},"title":"Mystic Arcanum (6th level)","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"a5VTIGe3lNEp2OYv"},{"type":"ItemChoice","configuration":{"hint":"Choose one 7th-level spell from the warlock spell list as this arcanum.","choices":{"13":1},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"atwill","uses":{"max":"1","per":"lr"}},"restriction":{"type":"","subtype":"","level":"7"}},"value":{},"title":"Mystic Arcanum (7th level)","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"hJxRoMZ5YaI2Y9F2"},{"type":"ItemChoice","configuration":{"hint":"Choose one 8th-level spell from the warlock spell list as this arcanum.","choices":{"15":1},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"atwill","uses":{"max":"1","per":"lr"}},"restriction":{"type":"","subtype":"","level":"8"}},"value":{},"title":"Mystic Arcanum (8th level)","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"Q3rKUfFElP8Z7cFI"},{"type":"ItemChoice","configuration":{"hint":"Choose one 9th-level spell from the warlock spell list as this arcanum.","choices":{"17":1},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"atwill","uses":{"max":"1","per":"lr"}},"restriction":{"type":"","subtype":"","level":"9"}},"value":{},"title":"Mystic Arcanum (9th level)","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"wJntS4cUC6RaV7ie"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":2},"4":{"value":3},"10":{"value":4}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"OcM7blwWM7CgNbMS"},{"type":"ScaleValue","configuration":{"identifier":"spells-known","type":"number","distance":{"units":""},"scale":{"1":{"value":2},"2":{"value":3},"3":{"value":4},"4":{"value":5},"5":{"value":6},"6":{"value":7},"7":{"value":8},"8":{"value":9},"9":{"value":10},"11":{"value":11},"13":{"value":12},"15":{"value":13},"17":{"value":14},"19":{"value":15}}},"value":{},"title":"Spells Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"rdzbe2Dv8SaD3YUS"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"X6UIWFe7JZzFry7f"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"C4uqRD1mSOxKF11n"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"unXUZVn2otlBmtvI"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"EZfVebBnXF8yILKN"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":19,"title":""},{"_id":"BTAE9XqCBbyv4O8P","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:lgt"],"choices":[]},"level":1,"title":"","value":{"chosen":["armor:lgt"]}},{"_id":"25XLH7yn1R41rKlk","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim"],"choices":[]},"level":1,"title":"","value":{"chosen":["weapon:sim"]}},{"_id":"H0U9QH2KQj0lIrDK","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:wis","saves:cha"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["saves:wis","saves:cha"]}},{"_id":"4DBaeL7SR77vUp6F","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:arc","skills:dec","skills:his","skills:itm","skills:inv","skills:nat","skills:rel"]}]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["skills:arc","skills:inv"]}}],"spellcasting":{"progression":"pact","ability":"cha"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.7WJp9vhi6F6SlAFa"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234278,"modifiedTime":1699993640223,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"O5nhueIb5HIil0eh","name":"Otherworldly Patron","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 1st level, you have struck a bargain with an otherworldly being, such as the Fiend. Your choice grants you features at 1st level and again at 6th, 10th, and 14th level.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Warlock 1","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.jTXHaK0vvT5DV3uO","advancementOrigin":"MuaNnEZkswuhixJP.AXY5iebZXk6dv5cn"}},"img":"icons/sundries/lights/candles-lit-red-evil.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234413,"modifiedTime":1699987213588,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"uf6mKJJICzDHiWly","name":"Pact Magic","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your arcane research and the magic bestowed on you by your patron have given you facility with spells.\nCantrips\nYou know two cantrips of your choice from the warlock spell list. You learn additional warlock cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Warlock table.\nSpell Slots\nThe Warlock table shows how many spell slots you have. The table also shows what the level of those slots is; all of your spell slots are the same level. To cast one of your warlock spells of 1st level or higher, you must expend a spell slot. You regain all expended spell slots when you finish a short or long rest.\nFor example, when you are 5th level, you have two 3rd-level spell slots. To cast the 1st-level spell thunderwave, you must spend one of those slots, and you cast it as a 3rd-level spell.\nSpells Known of 1st Level and Higher\nAt 1st level, you know two 1st-level spells of your choice from the warlock spell list.\nThe Spells Known column of the Warlock table shows when you learn more warlock spells of your choice of 1st level and higher. A spell you choose must be of a level no higher than what's shown in the table's Slot Level column for your level. When you reach 6th level, for example, you learn a new warlock spell, which can be 1st, 2nd, or 3rd level.\nAdditionally, when you gain a level in this class, you can choose one of the warlock spells you know and replace it with another spell from the warlock spell list, which also must be of a level for which you have spell slots.\nSpellcasting Ability\nCharisma is your spellcasting ability for your warlock spells, so you use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a warlock spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Charisma modifier\nSpell attack modifier = your proficiency bonus + your Charisma modifier\nSpellcasting Focus\nYou can use an arcane focus as a spellcasting focus for your warlock spells.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Warlock 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.x6IJZwr6f0SGral7","advancementOrigin":"MuaNnEZkswuhixJP.AXY5iebZXk6dv5cn"}},"img":"icons/skills/wounds/blood-spurt-spray-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234440,"modifiedTime":1699987213588,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"mbXQrn8QAMAtSSUc","name":"Dark One's Blessing","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 1st level, when you reduce a hostile creature to 0 hit points, you gain temporary hit points equal to your Charisma modifier + your warlock level (minimum of 1).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self","prompt":true},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"cha","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["max(1, @mod + @classes.warlock.levels)","temphp"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"The Fiend 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.Jv0zu4BtUi8bFCqJ","advancementOrigin":"r4vy8utsxo9my9r0.mwpiq5ybhynszxgq"}},"img":"icons/skills/wounds/blood-cells-disease-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234360,"modifiedTime":1699987213589,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"wLvV5awPEy6FHkvg","name":"Half-Elf","type":"race","img":"icons/magic/nature/leaf-glow-triple-green.webp","system":{"description":{"value":"Your half‑elf character has some qualities in common with elves and some that are unique to half-elves.Ability Score Increase. Your Charisma score increases by 2, and two other ability scores of your choice increase by 1.Age. Half-elves mature at the same rate humans do and reach adulthood around the age of 20. They live much longer than humans, however, often exceeding 180 years.Alignment. Half-elves share the chaotic bent of their elven heritage. They value both personal freedom and creative expression, demonstrating neither love of leaders nor desire for followers. They chafe at rules, resent others' demands, and sometimes prove unreliable, or at least unpredictable.Size. Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Thanks to your elf blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Fey Ancestry. You have advantage on saving throws against being charmed, and magic can't put you to sleep.Skill Versatility. You gain proficiency in two skills of your choice.Languages. You can speak, read, and write Common, Elvish, and one extra language of your choice.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"half-elf","advancement":[{"_id":"rXyxzoqxdxlspMi5","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.races.cnTbpPPeGW7vGjOV"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"pZ76fyelg2iQaqUA":"Compendium.dnd5e.races.cnTbpPPeGW7vGjOV"}},"level":0,"title":""},{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":2},"cap":1},"value":{"type":"asi","assignments":{"cha":2}},"level":0,"title":""},{"_id":"r3PSgtQO6Eim49LU","type":"Size","configuration":{"hint":"Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.","sizes":["med"]},"value":{"size":"med"},"level":1,"title":""},{"_id":"CormRQZ5momyvS2I","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:*"]}]},"level":0,"title":"Skill Versatility","value":{"chosen":["skills:rel","skills:per"]}},{"_id":"U3OO7jLU0nm0Z7zw","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:standard:common","languages:standard:elvish"],"choices":[{"count":1,"pool":["languages:*"]}]},"level":0,"title":"","value":{"chosen":["languages:standard:common","languages:standard:elvish","languages:exotic:deep"]}}],"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"type":{"subtype":"elf","value":"humanoid","custom":""},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false}},"effects":[],"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.races.Hye5IZwPOSwV0qRR"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1677181061205,"modifiedTime":1699993640223,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null},{"_id":"pZ76fyelg2iQaqUA","name":"Fey Ancestry","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have advantage on saving throws against being charmed, and magic can't put you to sleep.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Elf, Half-Elf","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.cnTbpPPeGW7vGjOV","advancementOrigin":"wLvV5awPEy6FHkvg.rXyxzoqxdxlspMi5"}},"img":"icons/creatures/mammals/elk-moose-marked-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234471,"modifiedTime":1699987213587,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787232167,"modifiedTime":1699993640237,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Aoth (Human Druid)","type":"character","img":"","system":{"abilities":{"str":{"value":9,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":10,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""}},"init":{"ability":"","bonus":"0"},"movement":{"burrow":null,"climb":null,"fly":null,"swim":null,"walk":null,"units":null,"hover":false},"attunement":{"max":3},"senses":{"darkvision":null,"blindsight":null,"tremorsense":null,"truesight":null,"units":null,"special":""},"spellcasting":"wis","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"Aoth lived among animals for so long that he now has difficulty speaking Common. His natural habitat in danger, he decided to join an adventuring group to return balance to his land.","public":""},"alignment":"True Neutral","race":"FZiSrcZmUUelVbNW","background":null,"originalClass":"mwtiHpkH8Gglxr3u","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","gnomish","druidic"],"custom":""},"weaponProf":{"value":["club","dagger","dart","javelin","mace","quarterstaff","sickle","spear","sling","scimitar"],"custom":""},"armorProf":{"value":["lgt","med","shl"],"custom":"(No metal)"},"toolProf":{"value":[],"custom":""}},"currency":{"pp":0,"gp":5,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{"herb":{"value":1,"ability":"int","bonuses":{"check":""}}},"spells":{"spell1":{"value":2,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Aoth","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"yZ0HzuMNz4aMWPYH","name":"Druidic Focus: Cowbell","type":"loot","system":{"description":{"value":"A small bell for you to ring.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{},"img":"icons/tools/instruments/bell-brass-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DPlMjhbZkmNVJrdZ","name":"Blanket","type":"loot","system":{"description":{"value":"A sheet of blanket to keep you warm at night.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.419eNv7xp2p7Xlo5"}},"img":"icons/sundries/flags/banner-worn-green.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640659,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"VaSicu4OB2Rb5IiV","name":"Scroll Case","type":"backpack","system":{"description":{"value":"This cylindrical leather case can hold up to ten rolled-up sheets of paper or five rolled-up sheets of parchment.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"items","value":10,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{},"img":"icons/containers/bags/case-leather-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"J0Xm66dc67W3H40l","name":"Common Clothes","type":"equipment","system":{"description":{"value":"Clothes worn by most commoners.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.8RXjiddJ6VGyE7vB"}},"img":"icons/equipment/chest/shirt-collared-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640674,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"FX6PgZoih5lbqGur","name":"Herbalism Kit","type":"tool","system":{"description":{"value":"This kit contains a variety of instruments such as clippers, mortar and pestle, and pouches and vials used by herbalists to create remedies and potions. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to identify or apply herbs. Also, proficiency with this kit is required to create antitoxin and potions of healing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":3,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"","ability":"wis","chatFlavor":"","proficient":null,"bonus":""},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.i89okN7GFTWHsvPy"}},"img":"icons/containers/bags/pouch-leather-green.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EkVpvgSVXUJJd8sz","name":"Leather Armor","type":"equipment","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"img":"icons/equipment/chest/breastplate-quilted-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wQlDyAuPxNVwsaeL","name":"Quarterstaff","type":"weapon","system":{"description":{"value":"A thick shaft of wood wrapped with a sturdy grip makes a highly functional weapon in addition to a stout walking stick.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.g2dWN7PQiMRYWzyk"}},"img":"icons/weapons/staves/staff-simple-gold.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640689,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"efIjMSXJeGHp7JJ2","name":"Club","type":"weapon","system":{"description":{"value":"A stout knob of wood forms a simple, but effective, cudgel. These weapons are used to bludgeon foes, bruising flesh and breaking bones.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.nfIRTECQIG81CvM4"}},"img":"icons/weapons/clubs/club-simple-barbed.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640698,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"xJflRtfyMlGqXJ46","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Hp6fcWigyhEDAvdY","name":"Bedroll","type":"loot","system":{"description":{"value":"Roll of cloth used by traveller to sleep in.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DVXmyetZuvxbzAwW"}},"img":"icons/sundries/flags/banner-worn-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"aS5auFMrz8JmQHHd","name":"Mess Kit","type":"loot","system":{"description":{"value":"This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.V13fjV5oSmvbRdgP"}},"img":"icons/tools/cooking/fork-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640705,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"zCMTkV6VLX6SvAKM","name":"Tinderbox","type":"loot","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DNOSEAvF4Oh1DlWy"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640713,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"HIHSYXIcwD6EC0un","name":"Hempen Rope (50 ft.)","type":"consumable","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QXmaarJ4X8P0C1HV"}},"img":"icons/sundries/survival/rope-wrapped-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XY4wR1kxV1nFNLE4","name":"Waterskin","type":"consumable","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Uv0ilmzbWvqmlCVH"}},"img":"icons/sundries/survival/wetskin-leather-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640727,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"p3oldMqy5WWQCmuB","name":"Torch","type":"consumable","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":40,"width":null,"units":"ft","type":"radius","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.BnOCLuNWhVvzHLjl"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647558,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"u900dGnBWSbjqrjP","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640749,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"SbSvZKkJASyk8jKo","name":"Druidcraft","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Whispering to the spirits of Nature, you create one of the following Effects within range:\n\nYou create a tiny, harmless sensory effect that predicts what the weather will be at your location for the next 24 hours. The effect might manifest as a golden orb for clear skies, a cloud for rain, Falling snowflakes for snow, and so on. This effect persists for 1 round.\nYou instantly make a flower blossom, a seed pod open, or a leaf bud bloom.\nYou create an Instantaneous, harmless sensory effect, such as Falling leaves, a puff of wind, the sound of a small animal, or the faint odor of skunk. The effect must fit in a 5-foot cube.\nYou instantly light or snuff out a Candle, a torch, or a small campfire.\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.SbSvZKkJASyk8jKo"}},"img":"icons/magic/nature/vines-thorned-glow-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486122,"modifiedTime":1661603486122,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"VzgFzcmocr1X1cp4","name":"Shillelagh","ownership":{"default":0},"type":"spell","system":{"description":{"value":"The wood of a club or quarterstaff you are holding is imbued with nature's power. For the duration, you can use your spellcasting ability instead of Strength for the attack and damage rolls of melee attacks using that weapon, and the weapon's damage die becomes a d8. The weapon also becomes magical, if it isn't already. The spell ends if you cast it again or if you let go of the weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"spec","type":"object","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A shamrock leaf, and a club or quarterstaff","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.VzgFzcmocr1X1cp4"}},"img":"icons/magic/fire/dagger-rune-enchant-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486123,"modifiedTime":1661603486123,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"hDOENzjuj5WpLq7B","name":"Animal Friendship","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell lets you convince a beast that you mean it no harm. Choose a beast that you can see within range. It must see and hear you. If the beast's Intelligence is 4 or higher, the spell fails. Otherwise, the beast must succeed on a Wisdom saving throw or be charmed by you for the spell's duration. If you or one of your companions harms the target, the spell ends.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional beast for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A morsel of food.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.hDOENzjuj5WpLq7B"}},"img":"icons/magic/nature/wolf-paw-glow-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486123,"modifiedTime":1661603486123,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"eS7XnnApoxRxYXPs","name":"Charm Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to charm a humanoid you can see within range. It must make a Wisdom saving throw, and does so with advantage if you or your companions are fighting it. If it fails the saving throw, it is charmed by you until the spell ends or until you or your companions do anything harmful to it. The charmed creature regards you as a friendly acquaintance. When the spell ends, the creature knows it was charmed by you.\n At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.eS7XnnApoxRxYXPs"}},"img":"icons/magic/fire/explosion-fireball-medium-purple-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486124,"modifiedTime":1661603486124,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"a3XtAO5n2GrqiAh5","name":"Create or Destroy Water","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You either create or destroy water.Create Water. You create up to 10 gallons of clean water within range in an open container. Alternatively, the water falls as rain in a 30-foot cube within range.Destroy Water. You destroy up to 10 gallons of water in an open container within range. Alternatively, you destroy fog in a 30-foot cube within range.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you create or destroy 10 additional gallons of water, or the size of the cube increases by 5 feet, for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":30,"width":null,"units":"ft","type":"cube","prompt":true},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A drop of water if creating water or a few grains of sand if destroying it.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.a3XtAO5n2GrqiAh5"}},"img":"icons/magic/air/wind-swirl-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486124,"modifiedTime":1661603486124,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"uUWb1wZgtMou0TVP","name":"Cure Wounds","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch regains a number of hit points equal to 1d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.uUWb1wZgtMou0TVP"}},"img":"icons/magic/life/heart-cross-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486124,"modifiedTime":1661603486124,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"crewed":false,"target":{"value":30,"width":null,"units":"ft","type":"radius","prompt":true},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486125,"modifiedTime":1661603486125,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"2skfDtglk1mGrb3l","name":"Detect Poison and Disease","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you can sense the presence and location of poisons, poisonous creatures, and diseases within 30 feet of you. You also identify the kind of poison, poisonous creature, or disease in each case.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"crewed":false,"target":{"value":30,"width":null,"units":"ft","type":"radius","prompt":true},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A yew leaf","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.2skfDtglk1mGrb3l"}},"img":"icons/magic/air/air-burst-spiral-teal-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486125,"modifiedTime":1661603486125,"lastModifiedBy":"dnd5ebuilder0000"}},{"name":"Entangle","type":"spell","img":"icons/magic/nature/vines-thorned-curled-glow-green.webp","system":{"description":{"value":"Grasping weeds and vines sprout from the ground in a 20-foot square starting from a point within range. For the Duration, these Plants turn the ground in the area into difficult terrain.A creature in the area when you cast the spell must succeed on a Strength saving throw or be Restrained by the entangling Plants until the spell ends. A creature restrained by the plants can use its action to make a Strength check against your spell save DC. On a success, it frees itself.When the spell ends, the conjured Plants wilt away.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":20,"width":null,"units":"ft","type":"square","prompt":true},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":null,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"effects":[],"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gMrWeG8fMDPRFiVe"}},"_id":"gMrWeG8fMDPRFiVe","folder":null,"sort":0,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486126,"modifiedTime":1661603486126,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"nqBDWkVOfcGZt4YU","name":"Faerie Fire","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Each object in a 20-foot cube within range is outlined in blue, green, or violet light (your choice). Any creature in the area when the spell is cast is also outlined in light if it fails a Dexterity saving throw. For the duration, objects and affected creatures shed dim light in a 10-foot radius.Any attack roll against an affected creature or object has advantage if the attacker can see it, and the affected creature or object can't benefit from being invisible.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":20,"width":null,"units":"ft","type":"cube","prompt":true},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.nqBDWkVOfcGZt4YU"}},"img":"icons/magic/fire/projectile-meteor-salvo-strong-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486127,"modifiedTime":1661603486127,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"IBJmWjzbQGu7M4UX","name":"Fog Cloud","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a 20-foot-radius Sphere of fog centered on a point within range. The sphere spreads around corners, and its area is heavily obscured. It lasts for the Duration or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the radius of the fog increases by 20 feet for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":20,"width":null,"units":"ft","type":"sphere","prompt":true},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.IBJmWjzbQGu7M4UX"}},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486128,"modifiedTime":1661603486128,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Qf6CAZkc7ms4ZY3e","name":"Goodberry","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Up to ten berries appear in your hand and are infused with magic for the duration. A creature can use its action to eat one berry. Eating a berry restores 1 hit point, and the berry provides enough nourishment to sustain a creature for one day.The berries lose their potency if they have not been consumed within 24 hours of the casting of this spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A spring of mistletoe","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Qf6CAZkc7ms4ZY3e"}},"img":"icons/magic/nature/leaf-glow-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486128,"modifiedTime":1661603486128,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"o8Dh7fblk1d16tnO","name":"Healing Word","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature of your choice that you can see within range regains hit points equal to 1d4 + your spellcasting ability modifier. This spell has no effect on undead or constructs.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d4 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d4"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.o8Dh7fblk1d16tnO"}},"img":"icons/magic/life/heart-cross-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486129,"modifiedTime":1661603486129,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ZrTc23tToJ0JpH2h","name":"Jump","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature. The creature's jump distance is tripled until the spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A grasshopper's hind leg","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ZrTc23tToJ0JpH2h"}},"img":"icons/magic/control/debuff-energy-hold-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486129,"modifiedTime":1661603486129,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"B0pnIcc52O6G8hi8","name":"Longstrider","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature. The target's speed increases by 10 feet until the spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of dirt","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.B0pnIcc52O6G8hi8"}},"img":"icons/magic/air/wind-stream-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486130,"modifiedTime":1661603486130,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Kn7K5PtYUJAKZTTp","name":"Purify Food and Drink","ownership":{"default":0},"type":"spell","system":{"description":{"value":"All nonmagical food and drink within a 5-foot-radius sphere centered on a point of your choice within range is purified and rendered free of poison and disease.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":5,"width":null,"units":"ft","type":"sphere","prompt":true},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Kn7K5PtYUJAKZTTp"}},"img":"icons/magic/light/explosion-star-small-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486130,"modifiedTime":1661603486130,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"aL1F8fvYLtNzUbKu","name":"Speak with Animals","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You gain the ability to comprehend and verbally communicate with beasts for the duration. The knowledge and awareness of many beasts is limited by their intelligence, but at minimum, beasts can give you information about nearby locations and monsters, including whatever they can perceive or have perceived within the past day. You might be able to persuade a beast to perform a small favor for you, at the DM's discretion.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self","prompt":true},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.aL1F8fvYLtNzUbKu"}},"img":"icons/magic/nature/wolf-paw-glow-small-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486131,"modifiedTime":1661603486131,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WTbOQBsarsL1LuXJ","name":"Thunderwave","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A wave of thunderous force sweeps out from you. Each creature in a 15-foot cube originating from you must make a Constitution saving throw. On a failed save, a creature takes 2d8 thunder damage and is pushed 10 feet away from you. On a successful save, the creature takes half as much damage and isn't pushed.In addition, unsecured objects that are completely within the area of effect are automatically pushed 10 feet away from you by the spell's effect, and the spell emits a thunderous boom audible out to 300 feet.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":15,"width":null,"units":"ft","type":"cube","prompt":true},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","thunder"]],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.WTbOQBsarsL1LuXJ"}},"img":"icons/magic/lightning/bolt-forked-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486131,"modifiedTime":1661603486131,"lastModifiedBy":"dnd5ebuilder0000"}},{"name":"Recluse","type":"background","system":{"description":{"value":"Skill Proficiencies: Medicine, ReligionTool Proficiencies: Herbalism kitLanguages: One of your choiceEquipment: A scroll case, a blanket, common clothes, an herbalism kit, and 5 gp","chat":"","unidentified":""},"source":{"custom":"","book":"","page":"","license":"CC-BY-4.0"},"advancement":[]},"img":"icons/magic/light/explosion-beam-impact-silhouette.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040344468,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"lMobFB5hSFEGtkrq"},{"_id":"mwtiHpkH8Gglxr3u","name":"Druid","type":"class","img":"icons/creatures/mammals/elk-moose-marked-green.webp","system":{"description":{"value":"As a druid, you gain the following class features.Hit PointsHit Dice: 1d8 per druid levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per druid level after 1stProficienciesArmor: Light armor, medium armor, shields (druids will not wear armor or use shields made of metal)Weapons: Clubs, daggers, darts, javelins, maces, quarterstaffs, scimitars, sickles, slings, spearsTools: Herbalism kitSaving Throws: Intelligence, WisdomSkills: Choose two from Arcana, Animal Handling, Insight, Medicine, Nature, Perception, Religion, and SurvivalEquipmentYou start with the following equipment, in addition to the equipment granted by your background:(a) a wooden shield or (b) any simple weapon(a) a scimitar or (b) any simple melee weaponLeather armor, an explorer's pack, and a druidic focusDruid AdvancementLevelProficiency BonusFeatures1st+2@Compendium[dnd5e.classfeatures.LzJ5ayHt0OlSVGxi]{Druidic}, @Compendium[dnd5e.classfeatures.i6tPm3FNK13Ftc9v]{Spellcasting}2nd+2@Compendium[dnd5e.classfeatures.swK0r5TOIxredxWS]{Wild Shape (Max CR ¼)}, @Compendium[dnd5e.classfeatures.u6Du2P9s81SWuGbi]{Druid Circle}3rd+22nd Level Spell Slot4th+2@Compendium[dnd5e.classfeatures.swK0r5TOIxredxWS]{Wild Shape (Max CR ½)}, @Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}5th+33rd Level Spell Slot6th+3Druid Circle feature7th+34th Level Spell Slot8th+3@Compendium[dnd5e.classfeatures.swK0r5TOIxredxWS]{Wild Shape (Max CR 1)}, @Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}9th+45th Level Spell Slot10th+4Druid Circle feature11th+46th Level Spell Slot12th+4@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}13th+57th Level Spell Slot14th+5Druid Circle feature15th+58th Level Spell Slot16th+5@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}17th+69th Level Spell Slot18th+6@Compendium[dnd5e.classfeatures.cVDEQo0ow1WJT7Wl]{Timeless Body}, @Compendium[dnd5e.classfeatures.xvgPu1O57DgXCM86]{Beast Spells}19th+6@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}20th+6@Compendium[dnd5e.classfeatures.ip4bvmGoz3qkoqes]{Archdruid}Sacred Plants and WoodA druid holds certain plants to be sacred, particularly alder, ash, birch, elder, hazel, holly, juniper, mistletoe, oak, rowan, willow, and yew. Druids often use such plants as part of a spellcasting focus, incorporating lengths of oak or yew or sprigs of mistletoe.Similarly, a druid uses such woods to make other objects, such as weapons and shields. Yew is associated with death and rebirth, so weapon handles for scimitars or sickles might be fashioned from it. Ash is associated with life and oak with strength. These woods make excellent hafts or whole weapons, such as clubs or quarterstaffs, as well as shields. Alder is associated with air, and it might be used for thrown weapons, such as darts or javelins.Druids from regions that lack the plants described here have chosen other plants to take on similar uses. For instance, a druid of a desert region might value the yucca tree and cactus plants.Druids and the GodsSome druids venerate the forces of nature themselves, but most druids are devoted to one of the many nature deities worshiped in the multiverse (the lists of gods in @UUID[Compendium.dnd5e.rules.udVPA9JW5wy5t3G5]{Appendix B} include many such deities). The worship of these deities is often considered a more ancient tradition than the faiths of clerics and urbanized peoples.Druid Circles@Compendium[dnd5e.subclasses.4Ae2SPZRXEVbVs0M]{Circle of the Land}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"druid","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"glnpiCnJqBlpeVjK"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.LzJ5ayHt0OlSVGxi","Compendium.dnd5e.classfeatures.i6tPm3FNK13Ftc9v"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"njUMNaCbBHpZswoL":"Compendium.dnd5e.classfeatures.LzJ5ayHt0OlSVGxi","HK6uFl7S3Mahvw9o":"Compendium.dnd5e.classfeatures.i6tPm3FNK13Ftc9v"}},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"0b5DhiMraHtwZOfm"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.swK0r5TOIxredxWS","Compendium.dnd5e.classfeatures.u6Du2P9s81SWuGbi"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"OgcwihJstGxObCq8"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.cVDEQo0ow1WJT7Wl","Compendium.dnd5e.classfeatures.xvgPu1O57DgXCM86"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"tYyQIKryvBsrDttD"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ip4bvmGoz3qkoqes"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"gorwFugiM0SbVBp3"},{"type":"ScaleValue","configuration":{"identifier":"wild-shape","type":"cr","distance":{"units":""},"scale":{"2":{"value":0.25},"4":{"value":0.5},"8":{"value":1}}},"value":{},"title":"Wild Shape CR","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"1QhHZI6jSvld160r"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":2},"4":{"value":3},"10":{"value":4}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"YNXUUmku0b96ssgn"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"IpPkoQHqKQLHlUU3"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"rJFXsnndXMZWrHvk"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"qNTlxRMRAOdeUFJs"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"9NliZ0Lrp32zOjQc"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":19,"title":""},{"_id":"GsMQJqy3R8DVF485","type":"Trait","configuration":{"hint":"Light Armor, Medium Armor, & Shields (druids will not wear armor or use shields made of metal)","mode":"default","allowReplacements":false,"grants":["armor:lgt","armor:med","armor:shl"],"choices":[]},"level":1,"title":"","value":{"chosen":["armor:lgt","armor:med","armor:shl"]}},{"_id":"dK0oEtM8ovrLJxi3","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim:club","weapon:sim:dagger","weapon:sim:dart","weapon:sim:javelin","weapon:sim:mace","weapon:sim:quarterstaff","weapon:sim:sickle","weapon:sim:spear","weapon:sim:sling","weapon:mar:scimitar"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["weapon:sim:club","weapon:sim:dagger","weapon:sim:dart","weapon:sim:javelin","weapon:sim:mace","weapon:sim:quarterstaff","weapon:sim:sickle","weapon:sim:spear","weapon:sim:sling","weapon:mar:scimitar"]}},{"_id":"tSywlKq0aE3GYMmi","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["tool:herb"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":[]}},{"_id":"xZ55SColbUbJOW2i","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:int","saves:wis"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["saves:int","saves:wis"]}},{"_id":"bN13f0XX9ZVaUiaC","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:ani","skills:arc","skills:ins","skills:med","skills:nat","skills:prc","skills:rel","skills:sur"]}]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["skills:nat","skills:prc"]}},{"_id":"miieZ5i2DxMvyWKG","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:druidic"],"choices":[]},"level":1,"title":"","value":{"chosen":["languages:druidic"]}}],"spellcasting":{"progression":"full","ability":"wis"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.ygVYgPbJkaH0tH1N"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234284,"modifiedTime":1699992715557,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"njUMNaCbBHpZswoL","name":"Druidic","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You know Druidic, the secret language of druids. You can speak the language and use it to leave hidden messages. You and others who know this language automatically spot such a message. Others spot the message's presence with a successful DC 15 Wisdom (Perception) check but can't decipher it without magic.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Druid 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.LzJ5ayHt0OlSVGxi","advancementOrigin":"mwtiHpkH8Gglxr3u.0b5DhiMraHtwZOfm"}},"img":"icons/sundries/documents/document-torn-diagram-tan.webp","effects":[{"_id":"iIQXR8VezkvbkFoS","changes":[{"key":"system.traits.languages.value","mode":2,"value":"druidic","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/sundries/documents/document-torn-diagram-tan.webp","label":"Druidic","origin":"Item.LzJ5ayHt0OlSVGxi","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234364,"modifiedTime":1691519042382,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"HK6uFl7S3Mahvw9o","name":"Spellcasting (Druid)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Drawing on the divine essence of nature itself, you can cast spells to shape that essence to your will.\nCantrips\nAt 1st level, you know two cantrips of your choice from the druid spell list. You learn additional druid cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Druid table.\nPreparing and Casting Spells\nThe Druid table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these druid spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nYou prepare the list of druid spells that are available for you to cast, choosing from the druid spell list. When you do so, choose a number of druid spells equal to your Wisdom modifier + your druid level (minimum of one spell). The spells must be of a level for which you have spell slots.\nFor example, if you are a 3rd-level druid, you have four 1st-level and two 2nd-level spell slots. With a Wisdom of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\nYou can also change your list of prepared spells when you finish a long rest. Preparing a new list of druid spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\nSpellcasting Ability\nWisdom is your spellcasting ability for your druid spells, since your magic draws upon your devotion and attunement to nature. You use your Wisdom whenever a spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a druid spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Wisdom modifier\nSpell attack modifier = your proficiency bonus + your Wisdom modifier\nRitual Casting\nYou can cast a druid spell as a ritual if that spell has the ritual tag and you have the spell prepared.\nSpellcasting Focus\nYou can use a druidic focus (see @UUID[Compendium.dnd5e.rules.BYFd9hiJGo9L5aOM.JournalEntryPage.AjavRU4yPfI9hfaI]{Adventuring Gear}) as a spellcasting focus for your druid spells.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Druid 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.i6tPm3FNK13Ftc9v","advancementOrigin":"mwtiHpkH8Gglxr3u.0b5DhiMraHtwZOfm"}},"img":"icons/magic/light/orb-beams-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234409,"modifiedTime":1691519042388,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"FZiSrcZmUUelVbNW","name":"Human","type":"race","img":"icons/environment/people/commoner.webp","system":{"description":{"value":"It's hard to make generalizations about humans, but your human character has these traits.Ability Score Increase. Your ability scores each increase by 1.Age. Humans reach adulthood in their late teens and live less than a century.Alignment. Humans tend toward no particular alignment. The best and the worst are found among them.Size. Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.Speed. Your base walking speed is 30 feet.Languages. You can speak, read, and write Common and one extra language of your choice. Humans typically learn the languages of other peoples they deal with, including obscure dialects. They are fond of sprinkling their speech with words borrowed from other tongues: Orc curses, Elvish musical expressions, Dwarvish military phrases, and so on.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"human","advancement":[{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":0,"fixed":{"str":1,"dex":1,"con":1,"int":1,"wis":1,"cha":1},"cap":2},"value":{"type":"asi","assignments":{"str":1,"dex":1,"con":1,"int":1,"wis":1,"cha":1}},"level":0,"title":""},{"_id":"dNSrZePZHz2qwVpi","type":"Size","configuration":{"hint":"Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.","sizes":["med"]},"value":{"size":"med"},"level":1,"title":""},{"_id":"HI6r4Y6KjHND0i53","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:standard:common"],"choices":[{"count":1,"pool":["languages:*"]}]},"level":0,"title":"","value":{"chosen":["languages:standard:common","languages:standard:gnomish"]}}],"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"type":{"value":"humanoid","subtype":"","custom":""}},"effects":[],"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.races.ydP3QzCmur55mtY2"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1677180079259,"modifiedTime":1699992715557,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"ZGDys30OS76uYaIO","_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787232171,"modifiedTime":1699992715575,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Riswynn (Dwarf Rogue)","type":"character","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":11,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""}},"init":{"ability":"","bonus":"0"},"movement":{"burrow":null,"climb":null,"fly":null,"swim":null,"walk":null,"units":null,"hover":false},"attunement":{"max":3},"senses":{"darkvision":null,"blindsight":null,"tremorsense":null,"truesight":null,"units":null,"special":""},"spellcasting":"int","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"Once a well-respected bureaucrat at the dwarven halls, Riswynn dabbled in intruigue, picked up a few tricks, and ran intro trouble with some nobles. She looks to make a name for herself and regain her social status.","public":""},"alignment":"True neutral","race":"JtKfV5srBn6zBNVt","background":null,"originalClass":"POlGoMp1xwT02K3S","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["poison"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","dwarvish","elvish","halfling","cant"],"custom":""},"weaponProf":{"value":["battleaxe","warhammer","handaxe","lighthammer","sim","handcrossbow","longsword","rapier","shortsword"],"custom":""},"armorProf":{"value":["lgt"],"custom":""},"toolProf":{"value":[],"custom":""}},"currency":{"pp":0,"gp":5,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{"mason":{"value":1,"ability":"int","bonuses":{"check":""}},"thief":{"value":1,"ability":"int","bonuses":{"check":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Riswynn","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"zyNiKfTqZLSjX1Kc","name":"Fine Clothes","type":"equipment","system":{"description":{"value":"Set of clothes designed specifically to be expensive and show it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3OXueEpvDDCVfGFA"}},"img":"icons/equipment/back/cloak-heavy-fur-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6xgRF9EHlkdx74gp","name":"Rapier","type":"weapon","system":{"description":{"value":"A thin tensile metal blade, light in weight but long in reach designed for quick darting attacks to target weak points in enemy defenses with lightning swiftness.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"ada":false,"mgc":false,"sil":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Tobce1hexTnDk4sV"}},"img":"icons/weapons/swords/sword-guard-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"13NzavzIfxLtAbjF","name":"Arrows","type":"consumable","system":{"description":{"value":"Standard ammunition used for bows of all varieties. These mundane arrows are made of smooth wooden shafts with goose feather fletching and hammer metal bodkins.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":20,"weight":0.05,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo","properties":{}},"sort":0,"flags":{},"img":"icons/containers/ammunition/arrows-quiver-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647567,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"tJDTxUqcvlxbZCdo","name":"Shortbow","type":"weapon","system":{"description":{"value":"This two handed bow is somewhat smaller than the traditional longbow variant, making it well suited for rapid attacks while on the move or mounted from horseback.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"ammo","target":"13NzavzIfxLtAbjF","amount":1,"scale":false},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.GJv6WkD7D2J6rP6M"}},"img":"icons/weapons/bows/shortbow-recurve.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NkdFTTiYWTcQykxt","name":"Dagger","type":"weapon","system":{"description":{"value":"A short metal blade mounted to a small hilt and crossguard. The dagger makes an effective side armament for hardened warriors or a hidden blade for assassins and thieves.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.0E565kQUBmndJ1a2"}},"img":"icons/weapons/daggers/dagger-jeweled-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0K1HkL7YtDkM04gh","name":"Leather Armor","type":"equipment","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"img":"icons/equipment/chest/breastplate-quilted-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qg7r4WqCCRRBoI7k","name":"Thieves' Tools","type":"tool","system":{"description":{"value":"This set of tools includes a small file, a set of lock picks, a small mirror mounted on a metal handle, a set of narrow-bladed scissors, and a pair of pliers. Proficiency with these tools lets you add your proficiency bonus to any ability checks you make to disarm traps or open locks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"","ability":"dex","chatFlavor":"","proficient":null,"bonus":""},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.woWZ1sO5IUVGzo58"}},"img":"icons/tools/hand/lockpicks-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EKdk3lhxqgPtqHwu","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Mf7KLdBXylgqsICW","name":"Pouch","type":"backpack","system":{"description":{"value":"A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":6,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.9bWTRRDym06PzSAf"}},"img":"icons/containers/bags/coinpouch-simple-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640763,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"PHLBlkV7IoS51P5v","name":"Quiver","type":"backpack","system":{"description":{"value":"A quiver can hold up to 20 arrows.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"capacity":{"type":"items","value":20,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.4MtQKPn9qMWCFjDA"}},"img":"icons/containers/ammunition/arrows-quiver-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CHrFwjEiZTbIgkvr","name":"Hammer","type":"loot","system":{"description":{"value":"A tool with heavy metal head mounted ar the right angles at the end of a handle, used for job such as breaking things and driving in nails. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.14pNRT4sZy9rgvhb"}},"img":"icons/tools/smithing/hammer-sledge-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"h4ihDUI7MQVznkxm","name":"Hempen Rope (50 ft.)","type":"consumable","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QXmaarJ4X8P0C1HV"}},"img":"icons/sundries/survival/rope-wrapped-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rpmyWiGevjk354b5","name":"Piton","type":"consumable","system":{"description":{"value":"A metal spike that is drive into a seam in a climbing surface with a climbing hammer. It can also be used like iron spikes to block doors in a pinch.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":0.25,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.TqyvIglHDj5kfohR"}},"img":"icons/sundries/survival/stake-rough-simple-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647573,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"kHtYigIcUQ4IL9PR","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640777,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"SbWMxygkEp4AlSMl","name":"Tinderbox","type":"loot","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DNOSEAvF4Oh1DlWy"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640783,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"8XJJXl8CvQDsNqQo","name":"Torch","type":"consumable","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":40,"width":null,"units":"ft","type":"radius","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.BnOCLuNWhVvzHLjl"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647579,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"sKonGCDJxc4cwpuS","name":"Waterskin","type":"consumable","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Uv0ilmzbWvqmlCVH"}},"img":"icons/sundries/survival/wetskin-leather-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640803,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"w1ICCmvrQzvkNA5T","name":"Mess Kit","type":"loot","system":{"description":{"value":"This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.V13fjV5oSmvbRdgP"}},"img":"icons/tools/cooking/fork-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640809,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"OPIqh46EdTrNRiZp","name":"Bedroll","type":"loot","system":{"description":{"value":"Roll of cloth used by traveller to sleep in.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DVXmyetZuvxbzAwW"}},"img":"icons/sundries/flags/banner-worn-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kRWtiPib9MRx9JmN","name":"Dagger (offhand)","type":"weapon","system":{"description":{"value":"A short metal blade mounted to a small hilt and crossguard. The dagger makes an effective side armament for hardened warriors or a hidden blade for assassins and thieves.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":null},"sort":0,"flags":{},"img":"icons/weapons/daggers/dagger-jeweled-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OpfHMuWyqcO7LmSt","name":"Crowbar","type":"loot","system":{"description":{"value":"Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.V5UAjT3ed6sDNtgm"}},"img":"icons/tools/hand/pickaxe-steel-white.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"name":"Bureaucrat","type":"background","system":{"description":{"value":"Skill Proficiencies: Insight, PersuasionLanguages: Two of your choiceEquipment: A set of fine clothes and a pouch containing 5 gp","chat":"","unidentified":""},"source":{"custom":"","book":"","page":"","license":"CC-BY-4.0"},"advancement":[]},"img":"icons/skills/social/theft-pickpocket-bribery-brown.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040521187,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"kLWeji1tfubIJvfT"},{"_id":"POlGoMp1xwT02K3S","name":"Rogue","type":"class","img":"icons/skills/melee/strike-sword-stabbed-brown.webp","system":{"description":{"value":"As a rogue, you have the following class features.\nHit Points\nHit Dice: 1d8 per rogue levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per rogue level after 1st\nProficiencies\nArmor: Light armorWeapons: Simple weapons, hand crossbows, longswords, rapiers, shortswordsTools: Thieves' toolsSaving Throws: Dexterity, IntelligenceSkills: Choose four from Acrobatics, Athletics, Deception, Insight, Intimidation, Investigation, Perception, Performance, Persuasion, Sleight of Hand, and Stealth\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a rapier or (b) a shortsword\n(a) a shortbow and quiver of 20 arrows or (b) a shortsword\n(a) a burglar's pack, (b) a dungeoneer's pack, or (c) an explorer's pack\n(a) Leather armor, two daggers, and thieves' tools\n\nRogue Advancement\n\n\n\nLevel\nProficiency Bonus\nSneak Attack\nFeatures\n\n\n\n\n1st\n+2\n1d6\n@Compendium[dnd5e.classfeatures.3sYPftQKnbbVnHrh]{Expertise}, @Compendium[dnd5e.classfeatures.DPN2Gfk8yi1Z5wp7]{Sneak Attack}, @Compendium[dnd5e.classfeatures.ohwfuwnvuoBWlSQr]{Thieves' Cant}\n\n\n2nd\n+2\n1d6\n@Compendium[dnd5e.classfeatures.01pcLg6PRu5zGrsb]{Cunning Action}\n\n\n3rd\n+2\n2d6\n@Compendium[dnd5e.classfeatures.80USV8ZFPIahpLd0]{Roguish Archetype}\n\n\n4th\n+2\n2d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n5th\n+3\n3d6\n@Compendium[dnd5e.classfeatures.Mm64SKAHJWYecgXS]{Uncanny Dodge}\n\n\n6th\n+3\n3d6\n@Compendium[dnd5e.classfeatures.3sYPftQKnbbVnHrh]{Expertise improvement}\n\n\n7th\n+3\n4d6\n@Compendium[dnd5e.classfeatures.a4P4DNMmH8CqSNkC]{Evasion}\n\n\n8th\n+3\n4d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n9th\n+4\n5d6\nRoguish Archetype feature\n\n\n10th\n+4\n5d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n11th\n+4\n6d6\n@Compendium[dnd5e.classfeatures.YN9xm6MCvse4Y60u]{Reliable Talent}\n\n\n12th\n+4\n6d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n13th\n+5\n7d6\nRoguish Archetype feature\n\n\n14th\n+5\n7d6\n@Compendium[dnd5e.classfeatures.fjsBk7zxoAbLf8ZI]{Blindsense}\n\n\n15th\n+5\n8d6\n@Compendium[dnd5e.classfeatures.V4pwFxlwHtNeB4w9]{Slippery Mind}\n\n\n16th\n+5\n8d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n17th\n+6\n9d6\nRoguish Archetype feature\n\n\n18th\n+6\n9d6\n@Compendium[dnd5e.classfeatures.L7nJSRosos8sHJH9]{Elusive}\n\n\n19th\n+6\n10d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n20th\n+6\n10d6\n@Compendium[dnd5e.classfeatures.rQhWDaMHMn7iU4f2]{Stroke of Luck}\n\n\n\nRoguish Archetypes\nRogues have many features in common, including their emphasis on perfecting their skills, their precise and deadly approach to combat, and their increasingly quick reflexes. But different rogues steer those talents in varying directions, embodied by the rogue archetypes. Your choice of archetype is a reflection of your focus—not necessarily an indication of your chosen profession, but a description of your preferred techniques.\n@Compendium[dnd5e.subclasses.k8iuefRorWOjb9gR]{Thief}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"rogue","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"WMbkpELkLBvDaEsL"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.3sYPftQKnbbVnHrh","Compendium.dnd5e.classfeatures.DPN2Gfk8yi1Z5wp7","Compendium.dnd5e.classfeatures.ohwfuwnvuoBWlSQr"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"GcRC4ZItJPqsIrsm":"Compendium.dnd5e.classfeatures.3sYPftQKnbbVnHrh","vRhjcnnlifZYB4dy":"Compendium.dnd5e.classfeatures.DPN2Gfk8yi1Z5wp7","eHh5dHiq9wss2Vq0":"Compendium.dnd5e.classfeatures.ohwfuwnvuoBWlSQr"}},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"13XHsx4Z3vQ2XYkJ"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.01pcLg6PRu5zGrsb"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"5crdJzGJRQIVhbyr"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.80USV8ZFPIahpLd0"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"9F1ZUcRqNsBCOFNX"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Mm64SKAHJWYecgXS"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"PvQXh3OhvuLhjVoo"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.a4P4DNMmH8CqSNkC"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":7,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"X8G2PrPxOrfWQevi"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.YN9xm6MCvse4Y60u"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":11,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"MqV3BlQkAZycZ4Ue"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.fjsBk7zxoAbLf8ZI"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"sI4nacIwT4B8Y7mb"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.V4pwFxlwHtNeB4w9"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":15,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"mugszpD8eVZ2jybU"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.L7nJSRosos8sHJH9"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"EOVFTUpweDErdpSz"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.rQhWDaMHMn7iU4f2"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"GVuwdOHDEDfQX9cl"},{"type":"ScaleValue","configuration":{"identifier":"sneak-attack","type":"dice","distance":{"units":""},"scale":{"1":{"number":1,"faces":6},"3":{"number":2,"faces":6},"5":{"number":3,"faces":6},"7":{"number":4,"faces":6},"9":{"number":5,"faces":6},"11":{"number":6,"faces":6},"13":{"number":7,"faces":6},"15":{"number":8,"faces":6},"17":{"number":9,"faces":6},"19":{"number":10,"faces":6}}},"value":{},"title":"Sneak Attack","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"81nHtANt6Ffg9M4V"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"smghqQkObY4OOg30"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"WFAAUfKJA9QR46Bw"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"ahuQ3gMqz6sCza0m"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"iVq9vmwTow7KielM"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":19,"title":""},{"_id":"WhAioX7KT2ZULDHU","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":10,"title":""},{"_id":"OdvmWcuFdpmQa1R9","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:lgt"],"choices":[]},"level":1,"title":"","value":{"chosen":["armor:lgt"]}},{"_id":"IAuJ7LQGV2HvMXWB","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim","weapon:mar:handcrossbow","weapon:mar:longsword","weapon:mar:rapier","weapon:mar:shortsword"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["weapon:sim","weapon:mar:handcrossbow","weapon:mar:longsword","weapon:mar:rapier","weapon:mar:shortsword"]}},{"_id":"ZfLkT5c0hxOmdyti","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["tool:thief"],"choices":[]},"level":1,"title":"","value":{"chosen":["tool:thief"]}},{"_id":"ejtwT3eAwBpgvtcw","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:dex","saves:int"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["saves:dex","saves:int"]}},{"_id":"rKux16jqNCPEtyDL","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":4,"pool":["skills:acr","skills:ath","skills:dec","skills:ins","skills:itm","skills:inv","skills:prc","skills:prf","skills:per","skills:slt","skills:ste"]}]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["skills:acr","skills:dec","skills:ins","skills:ste"]}},{"_id":"TDHYngxGqDHllgzw","type":"Trait","configuration":{"hint":"","mode":"expertise","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["tool:thief","skills:*"]}]},"level":1,"title":"Expertise","value":{"chosen":["skills:slt","skills:ste"]}},{"type":"Trait","configuration":{"hint":"","mode":"expertise","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:*","tool:thief"]}]},"level":6,"title":"Expertise","_id":"Iozyk39gsM4Kecex","value":{}},{"type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":1,"pool":["skills:acr","skills:ath","skills:dec","skills:ins","skills:itm","skills:inv","skills:prc","skills:prf","skills:per","skills:slt","skills:ste"]}]},"level":1,"title":"","_id":"CYYQSaGgmuHG7i6z","classRestriction":"secondary","value":{}},{"_id":"3GyyG2fRAwPbKK7n","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:cant"],"choices":[]},"level":1,"title":"","value":{"chosen":["languages:cant"]}}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.xEb8jmA5HlNs7xTF"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234284,"modifiedTime":1699993522289,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"GcRC4ZItJPqsIrsm","name":"Expertise (Rogue)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 1st level, choose two of your skill proficiencies, or one of your skill proficiencies and your proficiency with thieves' tools. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies.At 6th level, you can choose two more of your proficiencies (in skills or with thieves' tools) to gain this benefit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.3sYPftQKnbbVnHrh","advancementOrigin":"POlGoMp1xwT02K3S.13XHsx4Z3vQ2XYkJ"}},"img":"icons/skills/targeting/target-glowing-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234328,"modifiedTime":1699987533792,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"vRhjcnnlifZYB4dy","name":"Sneak Attack","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 1st level, you know how to strike subtly and exploit a foe's distraction. Once per turn, you can deal an extra 1d6 damage to one creature you hit with an attack if you have advantage on the attack roll. The attack must use a finesse or a ranged weapon.You don't need advantage on the attack roll if another enemy of the target is within 5 feet of it, that enemy isn't incapacitated, and you don't have disadvantage on the attack roll.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@scale.rogue.sneak-attack",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.DPN2Gfk8yi1Z5wp7","advancementOrigin":"POlGoMp1xwT02K3S.13XHsx4Z3vQ2XYkJ"}},"img":"icons/skills/melee/strike-dagger-arcane-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234348,"modifiedTime":1699987533792,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"eHh5dHiq9wss2Vq0","name":"Thieves' Cant","ownership":{"default":0},"type":"feat","system":{"description":{"value":"During your rogue training you learned thieves' cant, a secret mix of dialect, jargon, and code that allows you to hide messages in seemingly normal conversation. Only another creature that knows thieves' cant understands such messages. It takes four times longer to convey such a message than it does to speak the same idea plainly.In addition, you understand a set of secret signs and symbols used to convey short, simple messages, such as whether an area is dangerous or the territory of a thieves' guild, whether loot is nearby, or whether the people in an area are easy marks or will provide a safe house for thieves on the run.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Rogue 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.ohwfuwnvuoBWlSQr","advancementOrigin":"POlGoMp1xwT02K3S.13XHsx4Z3vQ2XYkJ"}},"img":"icons/sundries/documents/document-torn-diagram-tan.webp","effects":[{"_id":"VN7GnGzVwmBM7YCU","changes":[{"key":"system.traits.languages.value","mode":2,"value":"cant","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/sundries/documents/document-torn-diagram-tan.webp","label":"Thieves' Cant","origin":"Item.ohwfuwnvuoBWlSQr","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234423,"modifiedTime":1699987533792,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"JtKfV5srBn6zBNVt","name":"Hill Dwarf","type":"race","img":"icons/environment/wilderness/cave-entrance-rocky.webp","system":{"description":{"value":"Your dwarf character has an assortment of inborn abilities, part and parcel of dwarven nature.Ability Score Increase. Your Constitution score increases by 2.Age. Dwarves mature at the same rate as humans, but they're considered young until they reach the age of 50. On average, they live about 350 years.Alignment. Most dwarves are lawful, believing firmly in the benefits of a well-ordered society. They tend toward good as well, with a strong sense of fair play and a belief that everyone deserves to share in the benefits of a just order.Size. Dwarves stand between 4 and 5 feet tall and average about 150 pounds. Your size is Medium.Speed. Your base walking speed is 25 feet. Your speed is not reduced by wearing heavy armor.Darkvision. Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Dwarven Resilience. You have advantage on saving throws against poison, and you have resistance against poison damage.Dwarven Combat Training. You have proficiency with the battleaxe, handaxe, light hammer, and warhammer.Tool Proficiency. You gain proficiency with the artisan's tools of your choice: smith's tools, brewer's supplies, or mason's tools.Stonecunning. Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.Languages. You can speak, read, and write Common and Dwarvish. Dwarvish is full of hard consonants and guttural sounds, and those characteristics spill over into whatever other language a dwarf might speak.Hill DwarfAs a hill dwarf, you have keen senses, deep intuition, and remarkable resilience.Ability Score Increase. Your Wisdom score increases by 1.Dwarven Toughness. Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.Foundry NoteDwarven Toughness should be configured by adding 1 to the \"Per Level\" bonus in HP configuration on your character sheet (accessible using the cog next to your character's hit points).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"hill-dwarf","advancement":[{"_id":"tNfLTuoHfvAxg2FC","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.races.ufysTkqet2Ctmtyi","Compendium.dnd5e.races.mQPZDRbUhgYTbXKa"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"yeAdyhHhZGgcb7if":"Compendium.dnd5e.races.ufysTkqet2Ctmtyi","VtJK5sQ1pHMMWGQ4":"Compendium.dnd5e.races.mQPZDRbUhgYTbXKa"}},"level":0,"title":""},{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":0,"fixed":{"str":0,"dex":0,"con":2,"int":0,"wis":1,"cha":0},"cap":2},"value":{"type":"asi","assignments":{"con":2,"wis":1}},"level":0,"title":""},{"_id":"kdMPoRp3j1uOHQom","type":"Size","configuration":{"hint":"Dwarves stand between 4 and 5 feet tall and average about 150 pounds. Your size is Medium.","sizes":["med"]},"value":{"size":"med"},"level":1,"title":""},{"_id":"rmcKuRQ2Laloq1xp","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:standard:common","languages:standard:dwarvish"],"choices":[]},"level":0,"title":"","value":{"chosen":["languages:standard:common","languages:standard:dwarvish"]}},{"_id":"5zWGcz9uAerx3Dh5","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["dr:poison"],"choices":[]},"level":0,"title":"Dwarven Resilience","value":{"chosen":["dr:poison"]}},{"_id":"J0UGmCyMy6thWDeU","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim:handaxe","weapon:sim:lighthammer","weapon:mar:battleaxe","weapon:mar:warhammer"],"choices":[]},"level":0,"title":"Dwarven Combat Training","value":{"chosen":["weapon:sim:handaxe","weapon:sim:lighthammer","weapon:mar:battleaxe","weapon:mar:warhammer"]}},{"_id":"9CYW7Bj53L9G8Zsw","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":1,"pool":["tool:art:brewer","tool:art:mason","tool:art:smith"]}]},"level":0,"title":"","value":{"chosen":["tool:art:mason"]}}],"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"movement":{"walk":25,"burrow":0,"climb":0,"fly":0,"swim":0,"units":"ft","hover":false},"type":{"subtype":"dwarf","value":"","custom":""}},"effects":[],"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.races.UQiRQUTBcsz8gZU1"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1677179053861,"modifiedTime":1699993522290,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null},{"_id":"yeAdyhHhZGgcb7if","name":"Dwarven Resilience","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have advantage on saving throws against poison, and you have resistance against poison damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Dwarf","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.ufysTkqet2Ctmtyi","advancementOrigin":"JtKfV5srBn6zBNVt.tNfLTuoHfvAxg2FC"}},"img":"icons/creatures/abilities/stinger-poison-green.webp","effects":[{"_id":"hIaIpLxcMZSY3qXi","changes":[{"key":"system.traits.dr.value","mode":2,"value":"poison","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/abilities/stinger-poison-green.webp","label":"Dwarven Resilience","origin":"Item.ufysTkqet2Ctmtyi","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234474,"modifiedTime":1699987533792,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"VtJK5sQ1pHMMWGQ4","name":"Stonecunning","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Dwarf","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.mQPZDRbUhgYTbXKa","advancementOrigin":"JtKfV5srBn6zBNVt.tNfLTuoHfvAxg2FC"}},"img":"icons/commodities/tech/cog-bronze.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234472,"modifiedTime":1699987535049,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"hIaIpLxcMZSY3qXi","changes":[{"key":"system.traits.dr.value","mode":2,"value":"poison","priority":null}],"disabled":false,"duration":{"startTime":0,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/abilities/stinger-poison-green.webp","label":"Dwarven Resilience","origin":"Compendium.dnd5e.heroes.bzlxBO5km3zCQA8G.Item.yeAdyhHhZGgcb7if","transfer":false,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"bzlxBO5km3zCQA8G","_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787232177,"modifiedTime":1699993522307,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Quillathe (Elf Ranger)","type":"character","img":"","system":{"abilities":{"str":{"value":8,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":12,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""}},"init":{"ability":"","bonus":"0"},"movement":{"burrow":null,"climb":null,"fly":null,"swim":null,"walk":null,"units":null,"hover":false},"attunement":{"max":3},"senses":{"darkvision":null,"blindsight":null,"tremorsense":null,"truesight":null,"units":null,"special":""},"spellcasting":"wis","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"Quillathe cleanses monsters from her woods as a hobby, but now a new force menaces her land and she must band with adventurers to defeat it.","public":""},"alignment":"Chaotic Neutral","race":"jp4BUcAipDi7GIQQ","background":null,"originalClass":"Apx6i4A5a7JKqaGi","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":"Magical Sleep; Advantage on saving throws against being charmed"},"languages":{"value":["common","elvish","gnomish"],"custom":""},"weaponProf":{"value":["sim","mar","shortbow","longbow","longsword","shortsword"],"custom":""},"armorProf":{"value":["lgt","med","shl"],"custom":""},"toolProf":{"value":[],"custom":""}},"currency":{"pp":0,"gp":5,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{"navg":{"value":1,"ability":"int","bonuses":{"check":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Quillathe","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"8bLvluzgMJZEeJHi","name":"Tinderbox","type":"loot","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DNOSEAvF4Oh1DlWy"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640816,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"gO2Dz4cALMnDMHQi","name":"Hempen Rope (50 ft.)","type":"consumable","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QXmaarJ4X8P0C1HV"}},"img":"icons/sundries/survival/rope-wrapped-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gewb6wFlCK7GB6bB","name":"Mess Kit","type":"loot","system":{"description":{"value":"This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.V13fjV5oSmvbRdgP"}},"img":"icons/tools/cooking/fork-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640821,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Cp2SKVYUXCVD1oHX","name":"Bedroll","type":"loot","system":{"description":{"value":"Roll of cloth used by traveller to sleep in.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DVXmyetZuvxbzAwW"}},"img":"icons/sundries/flags/banner-worn-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FWLXlxd0ukipZhm9","name":"Waterskin","type":"consumable","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Uv0ilmzbWvqmlCVH"}},"img":"icons/sundries/survival/wetskin-leather-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640826,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"GqfDVqVqyUh1Gquv","name":"Arrows","type":"consumable","system":{"description":{"value":"Standard ammunition used for bows of all varieties. These mundane arrows are made of smooth wooden shafts with goose feather fletching and hammer metal bodkins.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":20,"weight":0.05,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo","properties":{}},"sort":0,"flags":{},"img":"icons/containers/ammunition/arrows-quiver-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647589,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"2SADpLv8xKIB670L","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jcUcMlzyQ2U071dZ","name":"Quiver","type":"backpack","system":{"description":{"value":"A quiver can hold up to 20 arrows.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"items","value":20,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.4MtQKPn9qMWCFjDA"}},"img":"icons/containers/ammunition/arrows-quiver-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qKjB82iZnzgQTRHr","name":"Leather Armor","type":"equipment","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"img":"icons/equipment/chest/breastplate-quilted-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lbeVmFOH3ZzSRn7V","name":"Longbow","type":"weapon","system":{"description":{"value":"A thick shaft of laminated wood is bowed by a taut string capable of launching deadly arrows at long distances.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"ammo","target":"GqfDVqVqyUh1Gquv","amount":1,"scale":false},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3cymOVja8jXbzrdT"}},"img":"icons/weapons/bows/longbow-leather-green.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"I8rPY9dlB3bLYldj","name":"Shortsword","type":"weapon","system":{"description":{"value":"A medium sized blade with a firm crossguard and a leather-wrapped handle. A versatile weapon which makes up in versatility what it lacks in reach.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.osLzOwQdPtrK3rQH"}},"img":"icons/weapons/swords/sword-guard-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"b3UyJrq6b1ZBfEoC","name":"Shortsword (offhand)","type":"weapon","system":{"description":{"value":"A medium sized blade with a firm crossguard and a leather-wrapped handle. A versatile weapon which makes up in versatility what it lacks in reach.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":null},"sort":0,"flags":{},"img":"icons/weapons/swords/sword-guard-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BsxUzxVoE4A4Yajo","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640842,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WhXl1O0JMkPKi6hz","name":"Torch","type":"consumable","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":40,"width":null,"units":"ft","type":"radius","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.BnOCLuNWhVvzHLjl"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647596,"lastModifiedBy":"dnd5ebuilder0000"}},{"name":"Monster Hunter","type":"background","system":{"description":{"value":"Skill Proficiencies: Acrobatics, Nature, InvestigationTool Proficiencies: Navigator's ToolsEquipment: An Explorer's Pack, and 5gp","chat":"","unidentified":""},"source":{"custom":"","book":"","page":"","license":"CC-BY-4.0"},"advancement":[]},"img":"icons/magic/light/explosion-beam-impact-silhouette.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040678183,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"I5EK9j7jV6mrXt7K"},{"_id":"Apx6i4A5a7JKqaGi","name":"Ranger","type":"class","img":"icons/weapons/bows/shortbow-recurve-yellow.webp","system":{"description":{"value":"As a ranger, you gain the following class features.\nHit Points\nHit Dice: 1d10 per ranger levelHit Points at 1st Level: 10 + your Constitution modifierHit Points at Higher Levels: 1d10 (or 6) + your Constitution modifier per ranger level after 1st\nProficiencies\nArmor: Light armor, medium armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, DexteritySkills: Choose three from Animal Handling, Athletics, Insight, Investigation, Nature, Perception, Stealth, and Survival\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) scale mail or (b) leather armor\n(a) two shortswords or (b) two simple melee weapons\n(a) a dungeoneer's pack or (b) an explorer's pack\nA longbow and a quiver of 20 arrows\n\nRanger Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.4Vpj9vCOB37GtXk6]{Favored Enemy}, @Compendium[dnd5e.classfeatures.8fbZt2Qh7ZttwIan]{Natural Explorer}\n\n\n2nd\n+2\n@Compendium[dnd5e.classfeatures.nJA3ISVmyj3uPRVM]{Fighting Style}, @Compendium[dnd5e.classfeatures.u6xV3Ki3TXRrD7zg]{Spellcasting}\n\n\n3rd\n+2\n@Compendium[dnd5e.classfeatures.1dJHU48yNqn3lcfx]{Ranger Archetype}, @Compendium[dnd5e.classfeatures.kaHcUGiwi8AtfZIm]{Primeval Awareness}\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n5th\n+3\n2nd Level Spell Slot, @Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}\n\n\n6th\n+3\n@Compendium[dnd5e.classfeatures.4Vpj9vCOB37GtXk6]{Favored Enemy +1}, @Compendium[dnd5e.classfeatures.8fbZt2Qh7ZttwIan]{Natural Explorer improvements}\n\n\n7th\n+3\nRanger Archetype feature\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}, @Compendium[dnd5e.classfeatures.C5fzaOBc6HxyOWRn]{Land's Stride}\n\n\n9th\n+4\n3rd Level Spell Slot\n\n\n10th\n+4\n@Compendium[dnd5e.classfeatures.8fbZt2Qh7ZttwIan]{Natural Explorer improvement}, @Compendium[dnd5e.classfeatures.r0unvWK0lPsDthDx]{Hide in Plain Sight}\n\n\n11th\n+4\nRanger Archetype feature\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n4th Level Spell Slot\n\n\n14th\n+5\n@Compendium[dnd5e.classfeatures.4Vpj9vCOB37GtXk6]{Favored Enemy +1}, @Compendium[dnd5e.classfeatures.DhU2dWCNnX78TstR]{Vanish}\n\n\n15th\n+5\nRanger Archetype feature\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n5th Level Spell Slot\n\n\n18th\n+6\n@Compendium[dnd5e.classfeatures.QBVmY56RMQuh6C8h]{Feral Senses}\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\n@Compendium[dnd5e.classfeatures.3CaP1vFHVR8LgHjx]{Foe Slayer}\n\n\n\nRanger Archetypes\nA classic expression of the ranger ideal is the Hunter.\n@Compendium[dnd5e.subclasses.uqd2q6WjVfcsaaGb]{Hunter}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"ranger","levels":1,"hitDice":"d10","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"SkYbfsObK8qAoAjy"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.4Vpj9vCOB37GtXk6","Compendium.dnd5e.classfeatures.8fbZt2Qh7ZttwIan"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"btJCgsHp9d6BKOdE":"Compendium.dnd5e.classfeatures.4Vpj9vCOB37GtXk6","UAmLNoN2LQpPR7ok":"Compendium.dnd5e.classfeatures.8fbZt2Qh7ZttwIan"}},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"M6VVuuAZuUXtx626"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.nJA3ISVmyj3uPRVM","Compendium.dnd5e.classfeatures.u6xV3Ki3TXRrD7zg"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"PQHnGY7M3A3HSAEN"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.1dJHU48yNqn3lcfx","Compendium.dnd5e.classfeatures.kaHcUGiwi8AtfZIm"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"E3Fu31GhXZXLCKHa"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"DDK9RajTrB0Lw94p"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.C5fzaOBc6HxyOWRn"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":8,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"H9oKoc0pdFEUSZFR"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.r0unvWK0lPsDthDx"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"XsbIXKY5i8zcuXC5"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.DhU2dWCNnX78TstR"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"EFRAOwx7zVkuNqbp"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.QBVmY56RMQuh6C8h"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"8s9JkKlFgFVnhXSp"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.3CaP1vFHVR8LgHjx"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"rbJWoILhV02P07jx"},{"type":"ItemChoice","configuration":{"hint":"Choose one of the following options. You can’t take a Fighting Style option more than once, even if you later get to choose again.","choices":{"2":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.8YwPFv3UAPjWVDNf","Compendium.dnd5e.classfeatures.zSlV0O2rQMdoq6pB","Compendium.dnd5e.classfeatures.hCop9uJrWhF1QPb4","Compendium.dnd5e.classfeatures.mHcSjcHJ8oZu3hkb"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"fightingStyle","level":""}},"value":{},"title":"Fighting Style","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"hpZ8GPheWy74OSxM"},{"type":"ScaleValue","configuration":{"identifier":"spells-known","type":"number","distance":{"units":""},"scale":{"2":{"value":2},"3":{"value":3},"5":{"value":4},"7":{"value":5},"9":{"value":6},"11":{"value":7},"13":{"value":8},"15":{"value":9},"17":{"value":10},"19":{"value":11}}},"value":{},"title":"Spells Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"ICcYTdeBoPcYsSTb"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"EH25FmaNCnf9jK9c"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"ugN9LCjVqQJaHfoq"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"5OzCatRi7tbcXdeX"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"ddOTz5cri6De4Vqa"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":19,"title":""},{"_id":"TYXdkZvuFRIksnaN","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:lgt","armor:med","armor:shl"],"choices":[]},"level":1,"title":"","value":{"chosen":["armor:lgt","armor:med","armor:shl"]}},{"_id":"MPQe2gl78EIkJp4B","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim","weapon:mar"],"choices":[]},"level":1,"title":"","value":{"chosen":["weapon:sim","weapon:mar"]}},{"_id":"mfYrk9GETHcNXCqs","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:str","saves:dex"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["saves:str","saves:dex"]}},{"_id":"ICgRpBmX0g8Y0ZzD","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":3,"pool":["skills:ani","skills:ath","skills:ins","skills:inv","skills:nat","skills:prc","skills:ste","skills:sur"]}]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["skills:ani","skills:ste","skills:sur"]}},{"type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":1,"pool":["skills:ani","skills:ath","skills:ins","skills:inv","skills:nat","skills:prc","skills:ste","skills:sur"]}]},"level":1,"title":"","_id":"04X0Kohr5hwmeErb","classRestriction":"secondary","value":{}}],"spellcasting":{"progression":"half","ability":"wis"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.VkRQ7glQvTWWiOCS"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234280,"modifiedTime":1699993332326,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"btJCgsHp9d6BKOdE","name":"Favored Enemy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Beginning at 1st level, you have significant experience studying, tracking, hunting, and even talking to a certain type of enemy.Choose a type of favored enemy: aberrations, beasts, celestials, constructs, dragons, elementals, fey, fiends, giants, monstrosities, oozes, plants, or undead. Alternatively, you can select two races of humanoid (such as gnolls and orcs) as favored enemies.You have advantage on Wisdom (Survival) checks to track your favored enemies, as well as on Intelligence checks to recall information about them.When you gain this feature, you also learn one language of your choice that is spoken by your favored enemies, if they speak one at all.You choose one additional favored enemy, as well as an associated language, at 6th and 14th level. As you gain levels, your choices should reflect the types of monsters you have encountered on your adventures.Foundry NoteIf you wish, manually edit this entry and make a note of your choices here:1st level6th level14th level","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.4Vpj9vCOB37GtXk6","advancementOrigin":"Apx6i4A5a7JKqaGi.M6VVuuAZuUXtx626"}},"img":"icons/creatures/abilities/dragon-breath-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234330,"modifiedTime":1699987424767,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"UAmLNoN2LQpPR7ok","name":"Natural Explorer","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You are particularly familiar with one type of natural environment and are adept at traveling and surviving in such regions. Choose one type of favored terrain: arctic, coast, desert, forest, grassland, mountain, or swamp. When you make an Intelligence or Wisdom check related to your favored terrain, your proficiency bonus is doubled if you are using a skill that you're proficient in.While traveling for an hour or more in your favored terrain, you gain the following benefits:Difficult terrain doesn't slow your group's travel.Your group can't become lost except by magical means.Even when you are engaged in another activity while traveling (such as foraging, navigating, or tracking), you remain alert to danger.If you are traveling alone, you can move stealthily at a normal pace.When you forage, you find twice as much food as you normally would.While tracking other creatures, you also learn their exact number, their sizes, and how long ago they passed through the area.You choose additional favored terrain types at 6th and 10th level.Foundry NoteIf it would be helpful, manually edit this entry and make a note of your choices here:1st level6th level10th level","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Ranger 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.8fbZt2Qh7ZttwIan","advancementOrigin":"Apx6i4A5a7JKqaGi.M6VVuuAZuUXtx626"}},"img":"icons/magic/nature/tree-roots-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234342,"modifiedTime":1699987424767,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"jp4BUcAipDi7GIQQ","name":"High Elf","type":"race","img":"icons/commodities/treasure/statue-gold-laurel-wreath.webp","system":{"description":{"value":"Your elf character has a variety of natural abilities, the result of thousands of years of elven refinement.Ability Score Increase. Your Dexterity score increases by 2.Age. Although elves reach physical maturity at about the same age as humans, the elven understanding of adulthood goes beyond physical growth to encompass worldly experience. An elf typically claims adulthood and an adult name around the age of 100 and can live to be 750 years old.Alignment. Elves love freedom, variety, and self-expression, so they lean strongly toward the gentler aspects of chaos. They value and protect others' freedom as well as their own, and they are more often good than not.Size. Elves range from under 5 to over 6 feet tall and have slender builds. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Accustomed to twilit forests and the night sky, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Keen Senses. You have proficiency in the Perception skill.Fey Ancestry. You have advantage on saving throws against being charmed, and magic can't put you to sleep.Trance. Elves don't need to sleep. Instead, they meditate deeply, remaining semiconscious, for 4 hours a day. (The Common word for such meditation is \"trance.\") While meditating, you can dream after a fashion; such dreams are actually mental exercises that have become reflexive through years of practice. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.Languages. You can speak, read, and write Common and Elvish. Elvish is fluid, with subtle intonations and intricate grammar. Elven literature is rich and varied, and their songs and poems are famous among other races. Many bards learn their language so they can add Elvish ballads to their repertoires.High ElfAs a high elf, you have a keen mind and a mastery of at least the basics of magic. In many fantasy gaming worlds, there are two kinds of high elves. One type is haughty and reclusive, believing themselves to be superior to non-elves and even other elves. The other type is more common and more friendly, and often encountered among humans and other races.Ability Score Increase. Your Intelligence score increases by 1.Elf Weapon Training. You have proficiency with the longsword, shortsword, shortbow, and longbow.Cantrip. You know one cantrip of your choice from the wizard spell list. Intelligence is your spellcasting ability for it.Extra Language. You can speak, read, and write one extra language of your choice.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"high-elf","advancement":[{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.races.cnTbpPPeGW7vGjOV","Compendium.dnd5e.races.4v2PiBrAbqDizdSJ"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"C688oL0TBRFLNedh":"Compendium.dnd5e.races.cnTbpPPeGW7vGjOV","xOnk30vJeG4EMX2W":"Compendium.dnd5e.races.4v2PiBrAbqDizdSJ"}},"level":0,"title":"Grant Items","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"9SgUOZ9mjqyA8Q2d"},{"_id":"l1Pw82BvhrSkYiyF","type":"ItemChoice","configuration":{"hint":"You know one cantrip of your choice from the wizard spell list. Intelligence is your spellcasting ability for it.","choices":{"0":1},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"int","preparation":"innate","uses":{"max":"","per":""}},"restriction":{"type":"","subtype":"","level":"0"}},"value":{"added":{"0":{"U0X7MGDlr5QH3x5R":"Compendium.dnd5e.spells.udsLtG0BugXHR2JQ"}}},"title":"Cantrip"},{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":0,"fixed":{"str":0,"dex":2,"con":0,"int":1,"wis":0,"cha":0},"cap":2},"value":{"type":"asi","assignments":{"dex":2,"int":1}},"level":0,"title":""},{"_id":"eqSwyWvm0gYgBzJJ","type":"Size","configuration":{"hint":"Elves range from under 5 to over 6 feet tall and have slender builds. Your size is Medium.","sizes":["med"]},"value":{"size":"med"},"level":1,"title":""},{"_id":"eAv9eLr0ackU7WO2","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["skills:prc"],"choices":[]},"level":0,"title":"Keen Senses","value":{"chosen":["skills:prc"]}},{"_id":"vNyszlmxQeXRjYIH","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:standard:common","languages:standard:elvish"],"choices":[{"count":1,"pool":["languages:*"]}]},"level":0,"title":"","value":{"chosen":["languages:standard:common","languages:standard:elvish","languages:standard:gnomish"]}},{"_id":"ZwJOJ5Ywagq7rWNI","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim:shortbow","weapon:mar:longbow","weapon:mar:longsword","weapon:mar:shortsword"],"choices":[]},"level":0,"title":"Elf Weapon Training","value":{"chosen":["weapon:sim:shortbow","weapon:mar:longbow","weapon:mar:longsword","weapon:mar:shortsword"]}}],"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"type":{"value":"humanoid","subtype":"","custom":""}},"effects":[],"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.races.A69KxdH1renVPrQV"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1677179211328,"modifiedTime":1699993332326,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null},{"_id":"C688oL0TBRFLNedh","name":"Fey Ancestry","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have advantage on saving throws against being charmed, and magic can't put you to sleep.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Elf, Half-Elf","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.cnTbpPPeGW7vGjOV","advancementOrigin":"jp4BUcAipDi7GIQQ.9SgUOZ9mjqyA8Q2d"}},"img":"icons/creatures/mammals/elk-moose-marked-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234471,"modifiedTime":1699987424767,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"xOnk30vJeG4EMX2W","name":"Trance","type":"feat","img":"icons/magic/perception/third-eye-blue-red.webp","system":{"description":{"value":"Elves don't need to sleep. Instead, they meditate deeply, remaining semiconscious, for 4 hours a day. (The Common word for such meditation is \"trance.\") While meditating, you can dream after a fashion; such dreams are actually mental exercises that have become reflexive through years of practice. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Elf","recharge":{"value":null,"charged":false}},"effects":[],"ownership":{"default":0},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.4v2PiBrAbqDizdSJ","advancementOrigin":"jp4BUcAipDi7GIQQ.9SgUOZ9mjqyA8Q2d"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1677179906781,"modifiedTime":1699987425727,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null},{"_id":"U0X7MGDlr5QH3x5R","name":"Prestidigitation","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell is a minor magical trick that novice spellcasters use for practice. You create one of the following magical effects within range:\n\nYou create an instantaneous, harmless sensory effect, such as a shower of sparks, a puff of wind, faint musical notes, or an odd odor.\nYou instantaneously light or snuff out a candle, a torch, or a small campfire.\nYou instantaneously clean or soil an object no larger than 1 cubic foot.\nYou chill, warm, or flavor up to 1 cubic foot of nonliving material for 1 hour.\nYou make a color, a small mark, or a symbol appear on an object or a surface for 1 hour.\nYou create a nonmagical trinket or an illusory image that can fit in your hand and that lasts until the end of your next turn.\n\nIf you cast this spell multiple times, you can have up to three of its non-instantaneous effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"int","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.udsLtG0BugXHR2JQ"},"dnd5e":{"sourceId":"Compendium.dnd5e.spells.udsLtG0BugXHR2JQ","advancementOrigin":"jp4BUcAipDi7GIQQ.l1Pw82BvhrSkYiyF"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234236,"modifiedTime":1699986132474,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"cYD0wRXLW4B17aoY","_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787232181,"modifiedTime":1699993332339,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Merric (Halfling Barbarian)","type":"character","img":"","system":{"abilities":{"str":{"value":14,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":8,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":0,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"unarmoredBarb","formula":""},"hp":{"value":14,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""}},"init":{"ability":"","bonus":"0"},"movement":{"burrow":null,"climb":null,"fly":null,"swim":null,"walk":null,"units":null,"hover":false},"attunement":{"max":3},"senses":{"darkvision":null,"blindsight":null,"tremorsense":null,"truesight":null,"units":null,"special":""},"spellcasting":"int","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"Merric was once a vigilante, due to her innate sense of street justice. Though her small size may not seem like much in combat, she more than makes up for it with her violent outbursts of anger.","public":""},"alignment":"Chaotic Good","race":"DAbggfkfZ8yIEDyK","background":null,"originalClass":"LX25nsSy2bvul2dp","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":"Advantage against being frightened"},"languages":{"value":["common","halfling"],"custom":""},"weaponProf":{"value":["sim","mar"],"custom":""},"armorProf":{"value":["lgt","med","shl"],"custom":""},"toolProf":{"value":[],"custom":""}},"currency":{"pp":0,"gp":2,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Merric","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":5,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"l87HKTUcZRp0PohR","name":"Javelin (melee)","type":"weapon","system":{"description":{"value":"This light and flexible spear is designed for throwing, but is versatile enough to be used in melee combat as well.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false},"proficient":null},"sort":0,"flags":{},"img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640852,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"bvHyCpcudXZ2bN7i","name":"Javelin (thrown)","type":"weapon","system":{"description":{"value":"This light and flexible spear is designed for throwing, but is versatile enough to be used in melee combat as well.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"ammo","target":"acFqo6BnGivxj5lE","amount":1,"scale":false},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false},"proficient":null},"sort":0,"flags":{},"img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640858,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"acFqo6BnGivxj5lE","name":"Javelin","type":"consumable","system":{"description":{"value":"This light and flexible spear is designed for throwing, but is versatile enough to be used in melee combat as well.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":5,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DWLMnODrnHn8IbAG"}},"img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640874,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"kccU0cngRTiFlfLu","name":"Greataxe","type":"weapon","system":{"description":{"value":"This enormous axe features two twin crescent blades mounted on either side of a tall spiked shaft. Designed to be wielded with two hands and cleave foes in twain.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":30,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.1Lxk6kmoRhG8qQ0u"}},"img":"icons/weapons/axes/axe-double.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9hY5bOuPFqGubCEw","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"86aiVMgc7XPJ1z8C","name":"Bedroll","type":"loot","system":{"description":{"value":"Roll of cloth used by traveller to sleep in.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DVXmyetZuvxbzAwW"}},"img":"icons/sundries/flags/banner-worn-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SHXoXJMWZywkU7aV","name":"Hempen Rope (50 ft.)","type":"consumable","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QXmaarJ4X8P0C1HV"}},"img":"icons/sundries/survival/rope-wrapped-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pIYHCVrKJLq0D2Jc","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640909,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"j8eiLPd8bbBYNyC1","name":"Mess Kit","type":"loot","system":{"description":{"value":"This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.V13fjV5oSmvbRdgP"}},"img":"icons/tools/cooking/fork-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640919,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"bHPIk24Cq3Z5FO86","name":"Tinderbox","type":"loot","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DNOSEAvF4Oh1DlWy"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640925,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"YyXrE0aRDWy4AtwB","name":"Torch","type":"consumable","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":40,"width":null,"units":"ft","type":"radius","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.BnOCLuNWhVvzHLjl"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647601,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"YvaZVAmilJd26Bfq","name":"Waterskin","type":"consumable","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Uv0ilmzbWvqmlCVH"}},"img":"icons/sundries/survival/wetskin-leather-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640938,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"3hJ5vLP7E424pEo4","name":"Handaxe","type":"weapon","system":{"description":{"value":"This one-handed axe is light and balanced for throwing while remaining useful in hand combat.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.eO7Fbv5WBk5zvGOc"}},"img":"icons/weapons/axes/axe-broad-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uWLF3Gr976X8vd7n","name":"Handaxe (offhand)","type":"weapon","system":{"description":{"value":"This one-handed axe is light and balanced for throwing while remaining useful in hand combat.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":null},"sort":0,"flags":{},"img":"icons/weapons/axes/axe-broad-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"name":"Vigilante","type":"background","system":{"description":{"value":"Skill Proficiencies: Insight, Investigation, PerceptionEquipment: Explorer's Pack, 2 gp","chat":"","unidentified":""},"source":{"custom":"","book":"","page":"","license":"CC-BY-4.0"},"advancement":[]},"img":"icons/magic/fire/flame-burning-fist-strike.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040848723,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"XIVdS0HZI5lOG5bx"},{"_id":"LX25nsSy2bvul2dp","name":"Barbarian","type":"class","img":"icons/skills/melee/hand-grip-sword-orange.webp","system":{"description":{"value":"As a barbarian, you gain the following class features.\nHit Points\nHit Dice: 1d12 per barbarian levelHit Points at 1st Level: 12 + your Constitution modifierHit Points at Higher Levels: 1d12 (or 7) + your Constitution modifier per barbarian level after 1st\nProficiencies\nArmor: Light armor, medium armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, ConstitutionSkills: Choose two from Animal Handling, Athletics, Intimidation, Nature, Perception, and Survival\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a greataxe or (b) any martial melee weapon\n(a) two handaxes or (b) any simple weapon\nAn explorer's pack and four javelins\n\nBarbarian Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\nRages\nRage Damage\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.VoR0SUrNX5EJVPIO]{Rage}, @Compendium[dnd5e.classfeatures.SZbsNbaxFFGwBpNK]{Unarmored Defense}\n2\n+2\n\n\n2nd\n+2\n@Compendium[dnd5e.classfeatures.SCVjqRdlZ9cvHVSR]{Reckless Attack}, @Compendium[dnd5e.classfeatures.vt31lWAULygEl7yk]{Danger Sense}\n2\n+2\n\n\n3rd\n+2\n@Compendium[dnd5e.classfeatures.TH1QAf6YNGSeBVjT]{Primal Path}\n3\n+2\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n3\n+2\n\n\n5th\n+3\n@Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}, @Compendium[dnd5e.classfeatures.Kl6zifJ5OmdHlOi2]{Fast Movement}\n3\n+2\n\n\n6th\n+3\nPath feature\n4\n+2\n\n\n7th\n+3\n@Compendium[dnd5e.classfeatures.NlXslw4yAqmKZWtN]{Feral Instinct}\n4\n+2\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n4\n+2\n\n\n9th\n+4\n@Compendium[dnd5e.classfeatures.L94gyvNpUhUe0rwh]{Brutal Critical (1 die)}\n4\n+3\n\n\n10th\n+4\nPath feature\n4\n+3\n\n\n11th\n+4\n@Compendium[dnd5e.classfeatures.FqfmbPgxiyrWzhYk]{Relentless Rage}\n4\n+3\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n5\n+3\n\n\n13th\n+5\n@Compendium[dnd5e.classfeatures.L94gyvNpUhUe0rwh]{Brutal Critical (2 dice)}\n5\n+3\n\n\n14th\n+5\nPath feature\n5\n+3\n\n\n15th\n+5\n@Compendium[dnd5e.classfeatures.l8tUhZ5Pecm9wz7I]{Persistent Rage}\n5\n+3\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n5\n+4\n\n\n17th\n+6\n@Compendium[dnd5e.classfeatures.L94gyvNpUhUe0rwh]{Brutal Critical (3 dice)}\n6\n+4\n\n\n18th\n+6\n@Compendium[dnd5e.classfeatures.Q1exex5ALteprrPo]{Indomitable Might}\n6\n+4\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n6\n+4\n\n\n20th\n+6\n@Compendium[dnd5e.classfeatures.jVU4AgqfrFaqgXns]{Primal Champion}\nUnlimited\n+4\n\n\n\nPrimal Paths\n@Compendium[dnd5e.subclasses.uGuDQX9Mz3oHNHkU]{Path of the Berserker}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"barbarian","levels":1,"hitDice":"d12","hitDiceUsed":0,"advancement":[{"_id":"5jn0ekktgccyvvpw","type":"HitPoints","configuration":{},"value":{"1":"max"},"title":""},{"_id":"amez6rlose3eoigo","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.VoR0SUrNX5EJVPIO","Compendium.dnd5e.classfeatures.SZbsNbaxFFGwBpNK"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"t9n1JlIt64USZcYm":"Compendium.dnd5e.classfeatures.VoR0SUrNX5EJVPIO","jq7HHcrrGB4hc9dp":"Compendium.dnd5e.classfeatures.SZbsNbaxFFGwBpNK"}},"level":1,"title":"Features"},{"_id":"udl318k61boq0rnn","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.SCVjqRdlZ9cvHVSR","Compendium.dnd5e.classfeatures.vt31lWAULygEl7yk"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features"},{"_id":"8y2ey740kizr4jb6","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.TH1QAf6YNGSeBVjT"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features"},{"_id":"uoexdq8totskritb","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo","Compendium.dnd5e.classfeatures.Kl6zifJ5OmdHlOi2"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features"},{"_id":"w6ceiqibcmzpcuy8","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.NlXslw4yAqmKZWtN"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":7,"title":"Features"},{"_id":"ty9si22p6pfwb3ow","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.L94gyvNpUhUe0rwh"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":9,"title":"Features"},{"_id":"802xi5l50le3ntk8","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.FqfmbPgxiyrWzhYk"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":11,"title":"Features"},{"_id":"g9ut0x1ugm31gbhk","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.l8tUhZ5Pecm9wz7I"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":15,"title":"Features"},{"_id":"so18afasiyobkpxy","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Q1exex5ALteprrPo"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features"},{"_id":"9hvtrqbg7d7zwg07","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.jVU4AgqfrFaqgXns"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features"},{"_id":"62svnflxsuad7oar","type":"ScaleValue","configuration":{"identifier":"rages","type":"number","scale":{"1":{"value":2},"3":{"value":3},"6":{"value":4},"12":{"value":5},"17":{"value":6},"20":{"value":999}},"distance":{"units":""}},"value":{},"title":"Rages"},{"_id":"t42incolsbuqn2ec","type":"ScaleValue","configuration":{"identifier":"rage-damage","type":"number","scale":{"1":{"value":2},"9":{"value":3},"16":{"value":4}},"distance":{"units":""}},"value":{},"title":"Rage Damage"},{"_id":"y0kr48pnq5doebeb","type":"ScaleValue","configuration":{"identifier":"brutal-critical","type":"number","scale":{"9":{"value":1},"13":{"value":2},"17":{"value":3}},"distance":{"units":""}},"value":{},"title":"Brutal Critical Dice"},{"_id":"dZHMy3530RPCjzvD","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":4,"title":""},{"_id":"dBMWU3h8MBO4PcEm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":8,"title":""},{"_id":"nROeTbeO8vrGjqAp","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":12,"title":""},{"_id":"prZMkvcCNoLvF4yB","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":16,"title":""},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":19,"title":""},{"_id":"fjwU0G5OtTZWOkib","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:lgt","armor:med","armor:shl"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["armor:lgt","armor:med","armor:shl"]}},{"_id":"sFas4Tifj7zKgmkY","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim","weapon:mar"],"choices":[]},"level":1,"title":"","value":{"chosen":["weapon:sim","weapon:mar"]}},{"_id":"CmX808i8HaWZ7VMx","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:str","saves:con"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["saves:str","saves:con"]}},{"_id":"lD3JBViqmxFYu0kc","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:ani","skills:ath","skills:itm","skills:nat","skills:prc","skills:sur"]}]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["skills:ani","skills:ath"]}},{"type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:shl"],"choices":[]},"level":1,"title":"","_id":"3ETNrLc8RQlHwNXP","classRestriction":"secondary","value":{}}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.pvEzGSv71zBhaolc"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234281,"modifiedTime":1699993047511,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"t9n1JlIt64USZcYm","name":"Rage","type":"feat","img":"icons/creatures/abilities/mouth-teeth-human.webp","system":{"description":{"value":"In battle, you fight with primal ferocity. On your turn, you can enter a rage as a bonus action. While raging, you gain the following benefits if you aren't wearing heavy armor:\n\n\nYou have advantage on Strength checks and Strength saving throws.\n\n\nWhen you make a melee weapon attack using Strength, you gain a bonus to the damage roll that increases as you gain levels as a barbarian, as shown in the Rage Damage column of the Barbarian table.\n\n\nYou have resistance to bludgeoning, piercing, and slashing damage.\n\n\nIf you are able to cast spells, you can't cast them or concentrate on them while raging. \nYour rage lasts for 1 minute. It ends early if you are knocked unconscious or if your turn ends and you haven't attacked a hostile creature since your last turn or taken damage since then. You can also end your rage on your turn as a bonus action. \nOnce you have raged the number of times shown for your barbarian level in the Rages column of the Barbarian table, you must finish a long rest before you can rage again.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self","prompt":true},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":2,"max":"@scale.barbarian.rages","per":"lr","recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 1","recharge":{"value":null,"charged":false}},"effects":[{"_id":"eWhL8hUr0c2ujDUm","flags":{},"changes":[{"key":"system.bonuses.mwak.damage","mode":2,"value":"+@scale.barbarian.rage-damage","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"slashing","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"piercing","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"bludgeoning","priority":null}],"disabled":true,"duration":{"startTime":null,"rounds":10,"seconds":null,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/abilities/mouth-teeth-human.webp","label":"Rage","origin":"Item.bdfYHJstcltQC7SZ","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.VoR0SUrNX5EJVPIO","advancementOrigin":"LX25nsSy2bvul2dp.amez6rlose3eoigo"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234384,"modifiedTime":1691519103297,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"jq7HHcrrGB4hc9dp","name":"Unarmored Defense (Barbarian)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While you are not wearing any armor, your Armor Class equals 10 + your Dexterity modifier + your Constitution modifier. You can use a shield and still gain this benefit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Barbarian 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.SZbsNbaxFFGwBpNK","advancementOrigin":"LX25nsSy2bvul2dp.amez6rlose3eoigo"}},"img":"icons/magic/control/silhouette-hold-change-blue.webp","effects":[{"_id":"hEgUnQNVxtBo2zkK","changes":[{"key":"system.attributes.ac.calc","mode":5,"value":"unarmoredBarb","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/control/silhouette-hold-change-blue.webp","label":"Unarmored Defense","origin":"Item.aIMXb43ACIxMItbh","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234378,"modifiedTime":1699987364863,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"DAbggfkfZ8yIEDyK","name":"Lightfoot Halfling","type":"race","img":"icons/equipment/feet/shoes-leather-simple-brown.webp","system":{"description":{"value":"Your halfling character has a number of traits in common with all other halflings.Ability Score Increase. Your Dexterity score increases by 2.Age. A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.Alignment. Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.Size. Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.Speed. Your base walking speed is 25 feet.Lucky. When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.Brave. You have advantage on saving throws against being frightened.Halfling Nimbleness. You can move through the space of any creature that is of a size larger than yours.Languages. You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.LightfootAs a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others.Lightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life.Ability Score Increase. Your Charisma score increases by 1.Naturally Stealthy. You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"lightfoot-halfling","advancement":[{"_id":"nInhIgkbzzJTdm8F","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.races.LOMdcNAGWh5xpfm4","Compendium.dnd5e.races.7Yoo9hG0hfPSmBoC","Compendium.dnd5e.races.PqxZgcJzp1VVgP8t","Compendium.dnd5e.races.GWPjKFeIthBBeCFJ"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"JQl3VzzqbaXKQUy4":"Compendium.dnd5e.races.LOMdcNAGWh5xpfm4","PzGCDcNJshheVVAl":"Compendium.dnd5e.races.7Yoo9hG0hfPSmBoC","5AZTgt4DbYOMJtBh":"Compendium.dnd5e.races.PqxZgcJzp1VVgP8t","WPhg1wZUed3W0ili":"Compendium.dnd5e.races.GWPjKFeIthBBeCFJ"}},"level":0,"title":""},{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":0,"fixed":{"str":0,"dex":2,"con":0,"int":0,"wis":0,"cha":1},"cap":2},"value":{"type":"asi","assignments":{"dex":2,"cha":1}},"level":0,"title":""},{"_id":"hv2bcANK5jEJZaAb","type":"Size","configuration":{"hint":"Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.","sizes":["sm"]},"value":{"size":"sm"},"level":1,"title":""},{"_id":"nGwMjsfNU6CXHk3A","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:standard:common","languages:standard:halfling"],"choices":[]},"level":0,"title":"","value":{"chosen":["languages:standard:common","languages:standard:halfling"]}}],"movement":{"walk":25,"burrow":0,"climb":0,"fly":0,"swim":0,"units":"ft","hover":false},"type":{"subtype":"halfling","value":"humanoid","custom":""},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""}},"effects":[],"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.races.ZgYBjYYfiUstQD6f"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1677178323356,"modifiedTime":1699993047511,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null},{"_id":"JQl3VzzqbaXKQUy4","name":"Lucky","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.Foundry NoteThis property can be enabled on your character sheet in the Special Traits configuration on the Attributes tab.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Halfling","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.LOMdcNAGWh5xpfm4","advancementOrigin":"DAbggfkfZ8yIEDyK.nInhIgkbzzJTdm8F"}},"img":"icons/sundries/gaming/dice-runed-brown.webp","effects":[{"_id":"3ZXTUDl62zDpvpai","changes":[{"key":"flags.dnd5e.halflingLucky","mode":5,"value":"true","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/sundries/gaming/dice-runed-brown.webp","label":"Lucky","origin":"Item.LOMdcNAGWh5xpfm4","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234467,"modifiedTime":1699986724866,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"PzGCDcNJshheVVAl","name":"Brave","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have advantage on saving throws against being frightened.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"You have advantage on saving throws against being frightened.","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Halfling","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.7Yoo9hG0hfPSmBoC","advancementOrigin":"DAbggfkfZ8yIEDyK.nInhIgkbzzJTdm8F"}},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234462,"modifiedTime":1699986724866,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"5AZTgt4DbYOMJtBh","name":"Halfling Nimbleness","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can move through the space of any creature that is of a size larger than yours.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Halfling","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.PqxZgcJzp1VVgP8t","advancementOrigin":"DAbggfkfZ8yIEDyK.nInhIgkbzzJTdm8F"}},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234468,"modifiedTime":1699986724867,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WPhg1wZUed3W0ili","name":"Naturally Stealthy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Lightfoot Halfling","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.GWPjKFeIthBBeCFJ","advancementOrigin":"DAbggfkfZ8yIEDyK.nInhIgkbzzJTdm8F"}},"img":"icons/magic/perception/silhouette-stealth-shadow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234465,"modifiedTime":1699986724867,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"eWhL8hUr0c2ujDUm","flags":{},"changes":[{"key":"system.bonuses.mwak.damage","mode":2,"value":"+@scale.barbarian.rage-damage","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"slashing","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"piercing","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"bludgeoning","priority":null}],"disabled":true,"duration":{"startTime":0,"rounds":10,"seconds":null,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/abilities/mouth-teeth-human.webp","label":"Rage","origin":"Compendium.dnd5e.heroes.irWonyO6ZLh47sN7.Item.t9n1JlIt64USZcYm","tint":null,"transfer":false,"sort":0},{"_id":"hEgUnQNVxtBo2zkK","changes":[{"key":"system.attributes.ac.calc","mode":5,"value":"unarmoredBarb","priority":null}],"disabled":false,"duration":{"startTime":0,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/control/silhouette-hold-change-blue.webp","label":"Unarmored Defense","origin":"Compendium.dnd5e.heroes.irWonyO6ZLh47sN7.Item.jq7HHcrrGB4hc9dp","transfer":false,"flags":{},"tint":null,"sort":0},{"_id":"3ZXTUDl62zDpvpai","changes":[{"key":"flags.dnd5e.halflingLucky","mode":5,"value":"true","priority":null}],"disabled":false,"duration":{"startTime":0,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/sundries/gaming/dice-runed-brown.webp","label":"Lucky","origin":"Compendium.dnd5e.heroes.irWonyO6ZLh47sN7.Item.JQl3VzzqbaXKQUy4","transfer":false,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"dnd5e":{"halflingLucky":true}},"_id":"irWonyO6ZLh47sN7","_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787232184,"modifiedTime":1699993047522,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kfzBL0q1Y7LgGs2x","name":"Akra (Dragonborn Cleric)","type":"character","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":8,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":1,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":9,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""}},"init":{"ability":"","bonus":"0"},"movement":{"burrow":null,"climb":null,"fly":null,"swim":null,"walk":null,"units":null,"hover":false},"attunement":{"max":3},"senses":{"darkvision":null,"blindsight":null,"tremorsense":null,"truesight":null,"units":null,"special":""},"spellcasting":"wis","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"A devout follower of her deity and of her society's customs, Akra feels somewhat out of place adventuring in foreign lands. But she feels bound to do everything in her power to bring peace to the region.","public":""},"alignment":"Lawful Good","race":"syaK4jD01I8U6EAL","background":null,"originalClass":"Zo7sWdchHDF6d0nn","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["cold"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["giant","halfling","common","draconic"],"custom":""},"weaponProf":{"value":["sim"],"custom":""},"armorProf":{"value":["hvy","lgt","med","shl"],"custom":""},"toolProf":{"value":[],"custom":""}},"currency":{"pp":0,"gp":15,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{},"spells":{"spell1":{"value":2,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Akra","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":5,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Ra2Z1ujre76weR0i","name":"Holy Symbol","type":"loot","system":{"description":{"value":"This talisman serves as a spellcasting focus, helping the practitioner to channel arcane, primal, or divine energies.Spellcasting Focus. An arcane focus is a special item designed to channel the power of arcane spells. A sorcerer, warlock, or wizard can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{},"img":"icons/commodities/treasure/broach-jewel-gold-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"74K6TAuSg2xzd209","name":"Stick of Incense","type":"loot","system":{"description":{"value":"When blocks of incense cannot be used or a cheaper alternative is required, people often use these to perfume the air, whether for pleasurable or religious purposes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":5,"weight":0,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3b0RvGi0TnTYpIxn"}},"img":"icons/commodities/wood/bamboo-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640945,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"mRxDz7yEtvJgpJsO","name":"Bedroll","type":"loot","system":{"description":{"value":"Roll of cloth used by traveller to sleep in.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":6}},"core":{"sourceId":"Compendium.dnd5e.items.DVXmyetZuvxbzAwW"}},"img":"icons/sundries/flags/banner-worn-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4FozMXUzyFXaB3Ps","name":"Hempen Rope (50 ft.)","type":"consumable","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":8}},"core":{"sourceId":"Compendium.dnd5e.items.QXmaarJ4X8P0C1HV"}},"img":"icons/sundries/survival/rope-wrapped-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QBmv3SSCaae2xxzT","name":"Tinderbox","type":"loot","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DNOSEAvF4Oh1DlWy"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640955,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ehYoem9Oas5sgRUK","name":"Mess Kit","type":"loot","system":{"description":{"value":"This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":4}},"core":{"sourceId":"Compendium.dnd5e.items.V13fjV5oSmvbRdgP"}},"img":"icons/tools/cooking/fork-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640965,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"p9MqgEEsODUHJebP","name":"Waterskin","type":"consumable","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Uv0ilmzbWvqmlCVH"}},"img":"icons/sundries/survival/wetskin-leather-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640975,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"3pLaAsrIUSbFeFDh","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PzCcpWNIKilXJXMG","name":"Pouch","type":"backpack","system":{"description":{"value":"A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"capacity":{"type":"weight","value":6,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.9bWTRRDym06PzSAf"}},"img":"icons/containers/bags/coinpouch-simple-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640984,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"njMyrs5IpKrRqvI9","name":"Quiver","type":"backpack","system":{"description":{"value":"A quiver can hold up to 20 arrows.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"capacity":{"type":"items","value":20,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.4MtQKPn9qMWCFjDA"}},"img":"icons/containers/ammunition/arrows-quiver-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"l46uaz805Fr9lZvU","name":"Scale Mail","type":"equipment","system":{"description":{"value":"This armor consists of a coat and leggings (and perhaps a separate skirt) of leather covered with overlapping pieces of metal, much like the scales of a fish. The suit includes gauntlets.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":45,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.XmnlF5fgIO3tg6TG"}},"img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"k2WyjZI9mN5jclTd","name":"Common Clothes","type":"equipment","system":{"description":{"value":"Clothes worn by most commoners.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.8RXjiddJ6VGyE7vB"}},"img":"icons/equipment/chest/shirt-collared-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011640996,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"DNmD3z2JYmCQ203g","name":"Vestments","type":"equipment","system":{"description":{"value":"Simple or ostentacious wear, often used by priests and other religious figures for use in rituals and ceremonies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.irtqrzaUCeshmTZp"}},"img":"icons/equipment/back/mantle-collared-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uuucgo72s3ZdzGqs","name":"Shield","type":"equipment","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"img":"icons/equipment/shield/oval-wooden-boss-steel.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eT4j7mNbZGHIUOtT","name":"Mace","type":"weapon","system":{"description":{"value":"A heavy bludgeoning weapon mounted to the end of a metal club. The head features spikes and blades designed to puncture armor and shatter the bones below.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Ajyq6nGwF7FtLhDQ"}},"img":"icons/weapons/maces/mace-round-spiked-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Yb4Gsfcswu3pZnoR","name":"Crossbow Bolt","type":"consumable","system":{"description":{"value":"This ammunition is used for all varieties of crossbow and is typically a short metal shaft with a narrow piercing tip.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":19,"weight":0.075,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.SItCnYBqhzqBoaWG"}},"img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647610,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"dRVZvSq4EXz8u5sk","name":"Light Crossbow","type":"weapon","system":{"description":{"value":"A small crossbow with a wooden haft and a tense cord which is capable of firing a single bolt which can puncture even heavy armor at close range.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"ammo","target":"Yb4Gsfcswu3pZnoR","amount":1,"scale":false},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"lgt":false,"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.ddWvQRLmnnIS0eLF"}},"img":"icons/weapons/crossbows/crossbow-simple-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ngTZ5FkHGxsYo2Ie","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641017,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"sa2Az2SjUNScdr5T","name":"Torch","type":"consumable","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":40,"width":null,"units":"ft","type":"radius","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"adnd5e":{"itemInfo":{"type":"item","idx":7}},"core":{"sourceId":"Compendium.dnd5e.items.BnOCLuNWhVvzHLjl"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647619,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"1qgVPt1uOptTVby1","name":"Prayer Book","type":"loot","system":{"description":{"value":"A book containing prayers and incantations dedicated to a specific power for the faithful to follow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.odV5cq2HSLSCH69k"}},"img":"icons/sundries/books/book-backed-silver-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6srkb2hvbgbrjzi3","name":"Life Domain","type":"subclass","img":"icons/magic/holy/barrier-shield-winged-cross.webp","system":{"description":{"value":"The Life domain focuses on the vibrant positive energy—one of the fundamental forces of the universe—that sustains all life. The gods of life promote vitality and health through healing the sick and wounded, caring for those in need, and driving away the forces of death and undeath. Almost any non-evil deity can claim influence over this domain, particularly agricultural deities (such as Chauntea, Arawai, and Demeter), sun gods (such as Lathander, Pelor, and Re-Horakhty), gods of healing or endurance (such as Ilmater, Mishakal, Apollo, and Diancecht), and gods of home and community (such as Hestia, Hathor, and Boldrei).\nLife Domain Spells\n\n\n\nCleric Level\nSpells\n\n\n\n\n1st\n@Compendium[dnd5e.spells.8dzaICjGy6mTUaUr]{Bless}, @Compendium[dnd5e.spells.uUWb1wZgtMou0TVP]{Cure Wounds}\n\n\n3rd\n@Compendium[dnd5e.spells.F0GsG0SJzsIOacwV]{Lesser Restoration}, @Compendium[dnd5e.spells.JbxsYXxSOTZbf9I0]{Spiritual Weapon}\n\n\n5th\n@Compendium[dnd5e.spells.ZU9d6woBdUP8pIPt]{Beacon of Hope}, @Compendium[dnd5e.spells.LmRHHMtplpxr9fX6]{Revivify}\n\n\n7th\n@Compendium[dnd5e.spells.VtCXMdyM6mAdIJZb]{Death Ward}, @Compendium[dnd5e.spells.TgHsuhNasPbhu8MO]{Guardian of Faith}\n\n\n9th\n@Compendium[dnd5e.spells.Pyzmm8R7rVsNAPsd]{Mass Cure Wounds}, @Compendium[dnd5e.spells.AGFMPAmuzwWO6Dfz]{Raise Dead}\n\n\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"life-domain","classIdentifier":"cleric","advancement":[{"_id":"9fyr5t01nhdg0u8n","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.68bYIOvx6rIqnlOW","Compendium.dnd5e.classfeatures.jF8AFfEMICIJnAkR"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"nc5IaPb64YH0AT8L":"Compendium.dnd5e.classfeatures.68bYIOvx6rIqnlOW","A7qWZHa1wRp3NRgK":"Compendium.dnd5e.classfeatures.jF8AFfEMICIJnAkR"}},"level":1,"title":"Features"},{"_id":"4qh4ejxpwugva6ma","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.hEymt45rICi4f9eL"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features"},{"_id":"ihquu4r80mxr07qt","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.yv49QN6Bzqs0ecCs"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features"},{"_id":"ayh4gqp9vxjo9yd3","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.T6u5z8ZTX6UftXqE"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":8,"title":"Features"},{"_id":"m4m8xp6cabt71mdq","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.4UOgxzr83vFuUash"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":17,"title":"Features"},{"_id":"bW7chouU8WIVH0Le","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:hvy"],"choices":[]},"level":1,"title":"","value":{"chosen":["armor:hvy"]}}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.subclasses.H3RYLGqCiqm8BP3q"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":null,"modifiedTime":1699989874871,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"P7mF2MxSuVJwHRRY","name":"Guidance","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one willing creature. Once before the spell ends, the target can roll a d4 and add the number rolled to one ability check of its choice. It can roll the die before or after making the ability check. The spell then ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.P7mF2MxSuVJwHRRY"}},"img":"icons/magic/control/buff-flight-wings-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486203,"modifiedTime":1661603486203,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"n9pJzTDsAwQxJVRl","name":"Sacred Flame","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Flame-like radiance descends on a creature that you can see within range. The target must succeed on a Dexterity saving throw or take 1d8 radiant damage. The target gains no benefit from cover for this saving throw.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":12,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.n9pJzTDsAwQxJVRl"}},"img":"icons/magic/light/beam-rays-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486203,"modifiedTime":1661603486203,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MUO1uYN7JR1hm4dR","name":"Thaumaturgy","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create one of the following magical effects within range:\n\nYour voice booms up to three times as loud as normal for 1 minute.\nYou cause flames to flicker, brighten, dim, or change color for 1 minute.\nYou cause harmless tremors in the ground for 1 minute.\nYou create a sound that originates from a point of your choice within range.\nYou cause an unlocked door or window to fly open or slam shut.\nYou alter the appearance of your eyes for 1 minute.\n\nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486205,"modifiedTime":1661603486205,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"8dzaICjGy6mTUaUr","name":"Bless","type":"spell","img":"icons/magic/control/buff-flight-wings-blue.webp","system":{"description":{"value":"You bless up to three creatures of your choice within range. Whenever a target makes an attack roll or a saving throw before the spell ends, the target can roll 1d4 and add the number rolled to the attack roll or saving throw.\nHigher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":3,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A sprinkling of holy water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"always","prepared":true},"scaling":{"mode":"level","formula":""}},"effects":[{"_id":"8rP3gwmXVTgZqYZE","flags":{},"changes":[{"key":"system.bonuses.abilities.save","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.mwak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.msak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rsak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rwak.attack","mode":2,"value":"+1d4","priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":60,"rounds":10,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/control/buff-flight-wings-blue.webp","label":"Bless","origin":"Item.kZZAZ6kp9YzgPQEe","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.8dzaICjGy6mTUaUr"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486205,"modifiedTime":1661603486205,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"uUWb1wZgtMou0TVP","name":"Cure Wounds","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch regains a number of hit points equal to 1d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"always","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.uUWb1wZgtMou0TVP"}},"img":"icons/magic/life/heart-cross-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486206,"modifiedTime":1661603486206,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"gvdA9nPuWLck4tBl","name":"Sanctuary","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You ward a creature within range against attack. Until the spell ends, any creature who targets the warded creature with an attack or a harmful spell must first make a Wisdom saving throw. On a failed save, the creature must choose a new target or lose the attack or spell. This spell doesn't protect the warded creature from area effects, such as the explosion of a Fireball.If the warded creature makes an attack or casts a spell that affects an enemy creature, this spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":12,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small silver mirror","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gvdA9nPuWLck4tBl"}},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486206,"modifiedTime":1661603486206,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"arzCrMRgcNiQuh43","name":"Command","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You speak a one-word command to a creature you can see within range. The target must succeed on a Wisdom saving throw or follow the command on its next turn. The spell has no effect if the target is undead, if it doesn't understand your language, or if your command is directly harmful to it.Some typical commands and their effects follow. You might issue a command other than one described here. If you do so, the DM determines how the target behaves. If the target can't follow your command, the spell ends.Approach. The target moves toward you by the shortest and most direct route, ending its turn if it moves within 5 feet of you.Drop. The target drops whatever it is holding and then ends its turn.Flee. The target spends its turn moving away from you by the fastest available means.Grovel. The target falls prone and then ends its turn.Halt. The target doesn't move and takes no actions. A flying creature stays aloft, provided that it is able to do so. If it must move to stay aloft, it flies the minimum distance needed to remain in the air.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":12,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.arzCrMRgcNiQuh43"}},"img":"icons/magic/fire/explosion-fireball-small-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486207,"modifiedTime":1661603486207,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"a3XtAO5n2GrqiAh5","name":"Create or Destroy Water","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You either create or destroy water.Create Water. You create up to 10 gallons of clean water within range in an open container. Alternatively, the water falls as rain in a 30-foot cube within range.Destroy Water. You destroy up to 10 gallons of water in an open container within range. Alternatively, you destroy fog in a 30-foot cube within range.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you create or destroy 10 additional gallons of water, or the size of the cube increases by 5 feet, for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":30,"width":null,"units":"ft","type":"cube","prompt":true},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A drop of water if creating water or a few grains of sand if destroying it.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.a3XtAO5n2GrqiAh5"}},"img":"icons/magic/air/wind-swirl-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486207,"modifiedTime":1661603486207,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"95K2aUhAGV9qXjnf","name":"Bane","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Up to three creatures of your choice that you can see within range must make Charisma saving throws. Whenever a target that fails this saving throw makes an attack roll or a saving throw before the spell ends, the target must roll a d4 and subtract the number rolled from the attack roll or saving throw.\nHigher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":3,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":12,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A drop of blood","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.95K2aUhAGV9qXjnf"}},"img":"icons/magic/unholy/strike-beam-blood-red-purple.webp","effects":[{"_id":"potjmpJPeUA1U4oe","flags":{},"changes":[{"key":"system.bonuses.abilities.save","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.mwak.attack","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.msak.attack","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.rsak.attack","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.rwak.attack","value":"-1d4","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":60,"rounds":10,"turns":null,"startRound":null,"startTurn":null,"combat":null},"icon":"icons/magic/unholy/strike-beam-blood-red-purple.webp","label":"Bane","origin":"Item.KkaQm4OQJxc6z3to","tint":null,"transfer":true,"sort":0}],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486208,"modifiedTime":1661603486208,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Mzh95utKDPIrjiH8","name":"Detect Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"crewed":false,"target":{"value":30,"width":null,"units":"ft","type":"radius","prompt":true},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Mzh95utKDPIrjiH8"}},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486209,"modifiedTime":1661603486209,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"crewed":false,"target":{"value":30,"width":null,"units":"ft","type":"radius","prompt":true},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486210,"modifiedTime":1661603486210,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"2skfDtglk1mGrb3l","name":"Detect Poison and Disease","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you can sense the presence and location of poisons, poisonous creatures, and diseases within 30 feet of you. You also identify the kind of poison, poisonous creature, or disease in each case.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"crewed":false,"target":{"value":30,"width":null,"units":"ft","type":"radius","prompt":true},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A yew leaf","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.2skfDtglk1mGrb3l"}},"img":"icons/magic/air/air-burst-spiral-teal-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486210,"modifiedTime":1661603486210,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"7buEm5KhI5lP8m1z","name":"Guiding Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A flash of light streaks toward a creature of your choice within range. Make a ranged spell attack against the target. On a hit, the target takes 4d6 radiant damage, and the next attack roll made against this target before the end of your next turn has advantage, thanks to the mystical dim light glittering on the target until then.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.7buEm5KhI5lP8m1z"}},"img":"icons/magic/fire/projectile-fireball-smoke-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486210,"modifiedTime":1661603486210,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"o8Dh7fblk1d16tnO","name":"Healing Word","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature of your choice that you can see within range regains hit points equal to 1d4 + your spellcasting ability modifier. This spell has no effect on undead or constructs.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d4 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d4"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.o8Dh7fblk1d16tnO"}},"img":"icons/magic/life/heart-cross-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486211,"modifiedTime":1661603486211,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ksaaTxIbKx2sJfia","name":"Inflict Wounds","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Make a melee spell Attack against a creature you can reach. On a hit, the target takes 3d10 necrotic damage.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d10 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d10"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ksaaTxIbKx2sJfia"}},"img":"icons/magic/unholy/strike-beam-blood-red-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486211,"modifiedTime":1661603486211,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"xmDBqZhRVrtLP8h2","name":"Protection from Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Until the spell ends, one willing creature you touch is protected against certain types of creatures: aberrations, celestials, elementals, fey, fiends, and undead.The protection grants several benefits. Creatures of those types have disadvantage on attack rolls against the target. The target also can't be charmed, frightened, or possessed by them. If the target is already charmed, frightened, or possessed by such a creature, the target has advantage on any new saving throw against the relevant effect.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Holy water or powdered silver and iron, which the spell consumes","consumed":true,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.xmDBqZhRVrtLP8h2"}},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486212,"modifiedTime":1661603486212,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Kn7K5PtYUJAKZTTp","name":"Purify Food and Drink","ownership":{"default":0},"type":"spell","system":{"description":{"value":"All nonmagical food and drink within a 5-foot-radius sphere centered on a point of your choice within range is purified and rendered free of poison and disease.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":5,"width":null,"units":"ft","type":"sphere","prompt":true},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Kn7K5PtYUJAKZTTp"}},"img":"icons/magic/light/explosion-star-small-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486212,"modifiedTime":1661603486212,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"jZ6JNykRtdQ90MOo","name":"Shield of Faith","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A shimmering field appears and surrounds a creature of your choice within range, granting it a +2 bonus to AC for the duration.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small parchment with a bit of holy text written on it.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.jZ6JNykRtdQ90MOo"}},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486213,"modifiedTime":1661603486213,"lastModifiedBy":"dnd5ebuilder0000"}},{"name":"Priest","type":"background","system":{"description":{"value":"Skill Proficiencies: Insight, ReligionLanguages: Two of your choiceEquipment: A holy symbol, 5 sticks of incense, prayer book, vestments, a set of common clothes, and a pouch containing 15 gp.","chat":"","unidentified":""},"source":{"custom":"","book":"","page":"","license":"CC-BY-4.0"},"advancement":[]},"img":"icons/sundries/documents/document-torn-diagram-tan.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040357495,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"UXJw0wVE7GCx6yzv"},{"_id":"Zo7sWdchHDF6d0nn","name":"Cleric","type":"class","img":"icons/magic/life/ankh-gold-blue.webp","system":{"description":{"value":"As a cleric, you gain the following class features.\nHit Points\nHit Dice: 1d8 per cleric levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per cleric level after 1st\nProficiencies\nArmor: Light armor, medium armor, shieldsWeapons: Simple weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two from History, Insight, Medicine, Persuasion, and Religion\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a mace or (b) a warhammer (if proficient)\n(a) scale mail, (b) leather armor, or (c) chain mail (if proficient)\n(a) a light crossbow and 20 bolts or (b) any simple weapon\n(a) a priest's pack or (b) an explorer's pack\nA shield and a holy symbol\n\nCleric Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.v4gKwLhAq9vuqza7]{Spellcasting} , @Compendium[dnd5e.classfeatures.x637K2Icp2ZFM1TB]{Divine Domain}\n\n\n2nd\n+2\n@Compendium[dnd5e.classfeatures.YpiLQEKGalROn7iJ]{Channel Divinity (1/rest)}, Divine Domain feature\n\n\n3rd\n+2\n2nd Level Spell Slot\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n5th\n+3\n3rd Level Spell Slot, @Compendium[dnd5e.classfeatures.NMy4piwXIpLjYbRE]{Destroy Undead (CR 1/2)}\n\n\n6th\n+3\n@Compendium[dnd5e.classfeatures.YpiLQEKGalROn7iJ]{Channel Divinity (2/rest)}, Divine Domain feature\n\n\n7th\n+3\n4th Level Spell Slot\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{ASI}, @Compendium[dnd5e.classfeatures.NMy4piwXIpLjYbRE]{Destroy Undead (CR 1)}, Divine Domain feature\n\n\n9th\n+4\n5th Level Spell Slot\n\n\n10th\n+4\n@Compendium[dnd5e.classfeatures.eVXqHn0ojWrEuYGU]{Divine Intervention}\n\n\n11th\n+4\n6th Level Spell Slot, @Compendium[dnd5e.classfeatures.NMy4piwXIpLjYbRE]{Destroy Undead (CR 2)}\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n7th Level Spell Slot\n\n\n14th\n+5\n@Compendium[dnd5e.classfeatures.NMy4piwXIpLjYbRE]{Destroy Undead (CR 3)}\n\n\n15th\n+5\n8th Level Spell Slot\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n9th Level Spell Slot, @Compendium[dnd5e.classfeatures.NMy4piwXIpLjYbRE]{Destroy Undead (CR 4)}, Divine Domain feature\n\n\n18th\n+6\n@Compendium[dnd5e.classfeatures.YpiLQEKGalROn7iJ]{Channel Divinity (3/rest)}\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\n@Compendium[dnd5e.classfeatures.eVXqHn0ojWrEuYGU]{Divine Intervention (Automatic Success)}\n\n\n\nDivine Domains\n@Compendium[dnd5e.subclasses.H3RYLGqCiqm8BP3q]{Life Domain}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"cleric","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"3kVv5eybwZql4LDY"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.v4gKwLhAq9vuqza7","Compendium.dnd5e.classfeatures.x637K2Icp2ZFM1TB"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"QC8NPpGVE4sAQA4Y":"Compendium.dnd5e.classfeatures.v4gKwLhAq9vuqza7","GQ656cfZYrH361kV":"Compendium.dnd5e.classfeatures.x637K2Icp2ZFM1TB"}},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"87Jib8HC9IkBgdSg"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.YpiLQEKGalROn7iJ","Compendium.dnd5e.classfeatures.r91UIgwFdHwkXdia"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"nfyW60OZnItbbGL6"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.NMy4piwXIpLjYbRE"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"w8COj56hwo4L75Er"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.eVXqHn0ojWrEuYGU"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"3Gljp7TuxV4iwOxs"},{"type":"ScaleValue","configuration":{"identifier":"channel-divinity","type":"number","distance":{"units":""},"scale":{"2":{"value":1},"6":{"value":2},"18":{"value":3}}},"value":{},"title":"Channel Divinity Uses","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"oP3vRPEVl4dirav7"},{"type":"ScaleValue","configuration":{"identifier":"destroy-undead","type":"cr","distance":{"units":""},"scale":{"5":{"value":0.5},"8":{"value":1},"11":{"value":2},"14":{"value":3},"17":{"value":4}}},"value":{},"title":"Destroy Undead CR","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"hPf0ds98CQX40MXV"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":3},"4":{"value":4},"10":{"value":5}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"xh6rfAUPRt6XpPw5"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"EzCBypwpeyzy6ZvT"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"CI1mqwkI5bbFu9cU"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"tQRur0s1v19kA0va"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"C2T1oSCDApFPx15B"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":19,"title":""},{"_id":"bcFNu9fM4o5He4J7","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:wis","saves:cha"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["saves:wis","saves:cha"]}},{"_id":"6YQrE9NkjbvhfN8F","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:his","skills:ins","skills:med","skills:per","skills:rel"]}]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["skills:his","skills:med"]}},{"_id":"vLDkTMgod0IS4HJn","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:lgt","armor:med","armor:shl"],"choices":[]},"level":1,"title":"","value":{"chosen":["armor:lgt","armor:med","armor:shl"]}},{"_id":"uyLXlhMnjMSHHdbs","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["weapon:sim"]}}],"spellcasting":{"progression":"full","ability":"wis"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.tlwBnN8GmqJcTgub"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234282,"modifiedTime":1699989874871,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"QC8NPpGVE4sAQA4Y","name":"Spellcasting (Cleric)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As a conduit for divine power, you can cast cleric spells.\nCantrips\nAt 1st level, you know three cantrips of your choice from the cleric spell list. You learn additional cleric cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Cleric table.\nPreparing and Casting Spells\nThe Cleric table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nYou prepare the list of cleric spells that are available for you to cast, choosing from the cleric spell list. When you do so, choose a number of cleric spells equal to your Wisdom modifier + your cleric level (minimum of one spell). The spells must be of a level for which you have spell slots.\nFor example, if you are a 3rd-level cleric, you have four 1st-level and two 2nd-level spell slots. With a Wisdom of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of cleric spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\nSpellcasting Ability\nWisdom is your spellcasting ability for your cleric spells. The power of your spells comes from your devotion to your deity. You use your Wisdom whenever a cleric spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a cleric spell you cast and when making an attack roll with one.\nSpell save DC= 8 + your proficiency bonus + your Wisdom modifier\nSpell attack modifier = your proficiency bonus + your Wisdom modifier\nRitual Casting\nYou can cast a cleric spell as a ritual if that spell has the ritual tag and you have the spell prepared.\nSpellcasting Focus\nYou can use a holy symbol (see @UUID[Compendium.dnd5e.rules.BYFd9hiJGo9L5aOM.JournalEntryPage.AjavRU4yPfI9hfaI]{Adventuring Gear}) as a spellcasting focus for your cleric spells.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Cleric 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.v4gKwLhAq9vuqza7","advancementOrigin":"Zo7sWdchHDF6d0nn.87Jib8HC9IkBgdSg"}},"img":"icons/magic/life/ankh-gold-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234436,"modifiedTime":1691519023057,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"GQ656cfZYrH361kV","name":"Divine Domain","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Choose one domain related to your deity, such as Life. Your choice grants you domain spells and other features when you choose it at 1st level. It also grants you additional ways to use Channel Divinity when you gain that feature at 2nd level, and additional benefits at 6th, 8th, and 17th levels.\nDomain Spells\nEach domain has a list of spells—its domain spells—that you gain at the cleric levels noted in the domain description. Once you gain a domain spell, you always have it prepared, and it doesn't count against the number of spells you can prepare each day.\nIf you have a domain spell that doesn't appear on the cleric spell list, the spell is nonetheless a cleric spell for you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Cleric 1","recharge":{"value":null,"charged":false}},"sort":0,"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.x637K2Icp2ZFM1TB","advancementOrigin":"Zo7sWdchHDF6d0nn.87Jib8HC9IkBgdSg"}},"img":"icons/magic/nature/tree-spirit-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234439,"modifiedTime":1691519023058,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"nc5IaPb64YH0AT8L","name":"Bonus Proficiency (Life Domain)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you choose this domain at 1st level, you gain proficiency with heavy armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Life Domain 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.68bYIOvx6rIqnlOW","advancementOrigin":"6srkb2hvbgbrjzi3.9fyr5t01nhdg0u8n"}},"img":"icons/equipment/chest/breastplate-layered-steel.webp","effects":[{"_id":"Dk95lqbXXCUlefZW","changes":[{"key":"system.traits.armorProf.value","mode":2,"value":"hvy","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/equipment/chest/breastplate-layered-steel.webp","label":"Heavy Armor Proficiency","origin":"Item.68bYIOvx6rIqnlOW","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234335,"modifiedTime":1691519023059,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"A7qWZHa1wRp3NRgK","name":"Disciple of Life","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Starting at 1st level, your healing spells are more effective.Whenever you use a spell of 1st level or higher to restore hit points to a creature, the creature regains additional hit points equal to 2 + the spell's level.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Life Domain 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.jF8AFfEMICIJnAkR","advancementOrigin":"6srkb2hvbgbrjzi3.9fyr5t01nhdg0u8n"}},"img":"icons/magic/light/hand-sparks-smoke-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234412,"modifiedTime":1691519023060,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"syaK4jD01I8U6EAL","name":"Dragonborn","type":"race","img":"icons/creatures/eyes/lizard-single-slit-green.webp","system":{"description":{"value":"Your draconic heritage manifests in a variety of traits you share with other dragonborn.Ability Score Increase. Your Strength score increases by 2, and your Charisma score increases by 1.Age. Young dragonborn grow quickly. They walk hours after hatching, attain the size and development of a 10-year-old human child by the age of 3, and reach adulthood by 15. They live to be around 80.Alignment. Dragonborn tend to extremes, making a conscious choice for one side or the other in the cosmic war between good and evil. Most dragonborn are good, but those who side with evil can be terrible villains.Size. Dragonborn are taller and heavier than humans, standing well over 6 feet tall and averaging almost 250 pounds. Your size is Medium.Speed. Your base walking speed is 30 feet.Draconic AncestryDragonDamage TypeBreath WeaponBlackAcid5 by 30 ft. line (Dex. save)BlueLightning5 by 30 ft. line (Dex. save)BrassFire5 by 30 ft. line (Dex. save)BronzeLightning5 by 30 ft. line (Dex. save)CopperAcid5 by 30 ft. line (Dex. save)GoldFire15 ft. cone (Dex. save)GreenPoison15 ft. cone (Con. save)RedFire15 ft. cone (Dex. save)SilverCold15 ft. cone (Con. save)WhiteCold15 ft. cone (Con. save)Draconic Ancestry. You have draconic ancestry. Choose one type of dragon from the Draconic Ancestry table. Your breath weapon and damage resistance are determined by the dragon type, as shown in the table.Breath Weapon. You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.Damage Resistance. You have resistance to the damage type associated with your draconic ancestry.Languages. You can speak, read, and write Common and Draconic. Draconic is thought to be one of the oldest languages and is often used in the study of magic. The language sounds harsh to most other creatures and includes numerous hard consonants and sibilants.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"dragonborn","advancement":[{"_id":"QIrBmvSmNOTEJLWn","type":"ItemChoice","configuration":{"hint":"You have draconic ancestry. Choose one type of dragon from the list. Your breath weapon and damage resistance are determined by the dragon type.","choices":{"0":1},"allowDrops":false,"type":"feat","pool":["Compendium.dnd5e.races.NnSZlrsHCFeH3cCq","Compendium.dnd5e.races.KVgvW5yhKcmQUanz","Compendium.dnd5e.races.JrUcwLR2aQC09iUM","Compendium.dnd5e.races.pJzMSk9qYywYy65w","Compendium.dnd5e.races.bFpLM0N3uTeHLdzu","Compendium.dnd5e.races.YPQQBZAuRiSwuBfh","Compendium.dnd5e.races.lXIxndsBaQglHBtO","Compendium.dnd5e.races.kB61JPKQrDBbSNU7","Compendium.dnd5e.races.pAYTdRGftNr8AitK","Compendium.dnd5e.races.KL7wx9Q8XNJQir0k"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"race","subtype":"","level":""}},"value":{"added":{"0":{"Ww5s1slhUia11ZqH":"Compendium.dnd5e.races.KL7wx9Q8XNJQir0k"}}},"title":"Draconic Ancestry"},{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":0,"fixed":{"str":2,"dex":0,"con":0,"int":0,"wis":0,"cha":1},"cap":2},"value":{"type":"asi","assignments":{"str":2,"cha":1}},"level":0,"title":""},{"_id":"rXLC7smebN2zPOBT","type":"ScaleValue","configuration":{"identifier":"breath-weapon","type":"dice","distance":{"units":""},"scale":{"0":{"number":2,"faces":6},"6":{"number":3,"faces":6},"11":{"number":4,"faces":6},"16":{"number":5,"faces":6}}},"value":{},"title":"Breath Weapon"},{"_id":"9D8XNnmTLWfzN32K","type":"Size","configuration":{"hint":"Dragonborn are taller and heavier than humans, standing well over 6 feet tall and averaging almost 250 pounds. Your size is Medium.","sizes":["med"]},"value":{"size":"med"},"level":1,"title":""},{"_id":"6WUcKNSLh5WJ3Q24","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:standard:common","languages:exotic:draconic"],"choices":[]},"level":0,"title":"","value":{"chosen":["languages:standard:common","languages:exotic:draconic"]}},{"_id":"2f4dkpTYlhOgRgxu","type":"Trait","configuration":{"hint":"You have resistance to the damage type associated with your draconic ancestry.","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":1,"pool":["dr:acid","dr:cold","dr:fire","dr:lightning","dr:poison"]}]},"level":0,"title":"","value":{"chosen":["dr:cold"]}}],"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"type":{"value":"humanoid","subtype":"","custom":""}},"effects":[],"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.races.K4DNDcR6vngbp0pf"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1677180157568,"modifiedTime":1699989874871,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null},{"_id":"Ww5s1slhUia11ZqH","name":"Breath Weapon - White","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a Constitution saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 cold damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":15,"width":null,"units":"ft","type":"cone","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@scale.dragonborn.breath-weapon","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"con"},"type":{"value":"race","subtype":""},"requirements":"White Dragonborn","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.KL7wx9Q8XNJQir0k","advancementOrigin":"syaK4jD01I8U6EAL.QIrBmvSmNOTEJLWn"}},"img":"icons/magic/water/projectile-icecicle.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234466,"modifiedTime":1699985823369,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null}],"effects":[{"_id":"8rP3gwmXVTgZqYZE","flags":{},"changes":[{"key":"system.bonuses.abilities.save","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.mwak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.msak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rsak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rwak.attack","mode":2,"value":"+1d4","priority":null}],"disabled":true,"duration":{"startTime":648,"seconds":60,"rounds":10,"combat":null,"turns":null,"startRound":0,"startTurn":0},"icon":"icons/magic/control/buff-flight-wings-blue.webp","label":"Bless","origin":"Compendium.dnd5e.heroes.kfzBL0q1Y7LgGs2x.Item.8dzaICjGy6mTUaUr","tint":null,"transfer":false,"sort":0},{"_id":"potjmpJPeUA1U4oe","flags":{},"changes":[{"key":"system.bonuses.abilities.save","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.mwak.attack","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.msak.attack","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.rsak.attack","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.rwak.attack","value":"-1d4","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":648,"seconds":60,"rounds":10,"turns":null,"startRound":0,"startTurn":0,"combat":null},"icon":"icons/magic/unholy/strike-beam-blood-red-purple.webp","label":"Bane","origin":"Compendium.dnd5e.heroes.kfzBL0q1Y7LgGs2x.Item.95K2aUhAGV9qXjnf","tint":null,"transfer":false,"sort":0},{"_id":"Dk95lqbXXCUlefZW","changes":[{"key":"system.traits.armorProf.value","mode":2,"value":"hvy","priority":null}],"disabled":false,"duration":{"startTime":0,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/equipment/chest/breastplate-layered-steel.webp","label":"Heavy Armor Proficiency","origin":"Compendium.dnd5e.heroes.kfzBL0q1Y7LgGs2x.Item.nc5IaPb64YH0AT8L","transfer":false,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787232189,"modifiedTime":1699989874871,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xT2C2Itv2XambDYp","name":"Morthos (Tiefling Sorcerer)","type":"character","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":17,"proficient":1,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"draconic","formula":""},"hp":{"value":8,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""}},"init":{"ability":"","bonus":"0"},"movement":{"burrow":null,"climb":null,"fly":null,"swim":null,"walk":null,"units":null,"hover":false},"attunement":{"max":3},"senses":{"darkvision":null,"blindsight":null,"tremorsense":null,"truesight":null,"units":null,"special":""},"spellcasting":"cha","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"Morthos's investigation into her complex draconic-infernal ancestry led her to an academic life, but it soon became apparent that the fools in charge were keeping many secrets from her.","public":""},"alignment":"Neutral Evil","race":"Y7BsvdA2in8INCB5","background":null,"originalClass":"Ig5YOxEOabGaTjG5","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["fire"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic","common","infernal"],"custom":""},"weaponProf":{"value":["dagger","dart","sling","quarterstaff","lightcrossbow"],"custom":""},"armorProf":{"value":[],"custom":""},"toolProf":{"value":[],"custom":""}},"currency":{"pp":0,"gp":10,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{},"spells":{"spell1":{"value":2,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Morthos","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"4oZOGoQdZ0qipEn9","name":"Orb","type":"weapon","system":{"description":{"value":"This spherical talisman serves as a spellcasting focus, helping the practitioner to channel arcane, primal, or divine energies.Spellcasting Focus. An arcane focus is a special item designed to channel the power of arcane spells. A sorcerer, warlock, or wizard can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"foc":true,"amm":false,"hvy":false,"fin":false,"fir":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.tH5Rn0JVRG1zdmPa"}},"img":"icons/commodities/gems/pearl-natural.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tQKD6fqsb4Aiyy5j","name":"Dagger","type":"weapon","system":{"description":{"value":"A short metal blade mounted to a small hilt and crossguard. The dagger makes an effective side armament for hardened warriors or a hidden blade for assassins and thieves.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":2,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.0E565kQUBmndJ1a2"}},"img":"icons/weapons/daggers/dagger-jeweled-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GDbpIHMQgxUgPLdu","name":"Quarterstaff","type":"weapon","system":{"description":{"value":"A thick shaft of wood wrapped with a sturdy grip makes a highly functional weapon in addition to a stout walking stick.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.g2dWN7PQiMRYWzyk"}},"img":"icons/weapons/staves/staff-simple-gold.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641046,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"xX4gm1T19sVEeJv0","name":"Robes","type":"equipment","system":{"description":{"value":"Simple or ceremonial wear, often used by priests and other religious figures.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.8GCEodUsTEEpBlO6"}},"img":"icons/equipment/back/mantle-collared-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LivxabPcA6A9nstM","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SeeeXZHOsXqMfaF4","name":"Pouch","type":"backpack","system":{"description":{"value":"A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":6,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.9bWTRRDym06PzSAf"}},"img":"icons/containers/bags/coinpouch-simple-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641060,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ZchHJk0yJtegcnoD","name":"Component Pouch","type":"consumable","system":{"description":{"value":"A component pouch is a small, watertight leather belt pouch that has compartments to hold all the material components and other special items you need to cast your spells, except for those components that have a specific cost (as indicated in a spell's description).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.eZGmdOhaTWMicXPW"}},"img":"icons/containers/bags/pack-simple-leather-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tprVjkdD07yET7Dn","name":"Hempen Rope (50 ft.)","type":"consumable","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QXmaarJ4X8P0C1HV"}},"img":"icons/sundries/survival/rope-wrapped-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hSWX55GkqzCy2q83","name":"Bedroll","type":"loot","system":{"description":{"value":"Roll of cloth used by traveller to sleep in.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DVXmyetZuvxbzAwW"}},"img":"icons/sundries/flags/banner-worn-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WHdV6NGJLWgf9SXW","name":"Mess Kit","type":"loot","system":{"description":{"value":"This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.V13fjV5oSmvbRdgP"}},"img":"icons/tools/cooking/fork-steel-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641068,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ayGuhKBGDrEn7R3b","name":"Tinderbox","type":"loot","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DNOSEAvF4Oh1DlWy"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641079,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"js5p955d3giWX0oH","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641089,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"aPzu0l5X4uxqLor9","name":"Torch","type":"consumable","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":40,"width":null,"units":"ft","type":"radius","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.BnOCLuNWhVvzHLjl"}},"img":"icons/sundries/lights/torch-black.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647627,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"stBwmLr8AL6ZTUYM","name":"Waterskin","type":"consumable","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Uv0ilmzbWvqmlCVH"}},"img":"icons/sundries/survival/wetskin-leather-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641109,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"6xhnm29N1HYahYOO","name":"Ink Bottle","type":"loot","system":{"description":{"value":"A small bottle of ink for writing upon parchment.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.06,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.dP7jMKyHTTgVb3ii"}},"img":"icons/consumables/potions/bottle-bulb-empty-glass.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NF7GrOufGmSBsfGU","name":"Ink Pen","type":"loot","system":{"description":{"value":"A deviced used in combination with ink to write or draw on a sheet of paper.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.uVm7MiB71QblfnoY"}},"img":"icons/commodities/materials/feather-red-.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647646,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"mh4WBhTpy8fBSjg0","name":"Parchment","type":"loot","system":{"description":{"value":"A single sheet of heavier parchment paper.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WFQS2vT8ddrFjTJg"}},"img":"icons/sundries/documents/document-symbol-circle-gold-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641126,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"TkeAIaa70wEfYooB","name":"Book of Lore","type":"loot","system":{"description":{"value":"A book containing historical accounts, information pertaining to a particular field of lore, myth, or legend.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.l794iywHk8Wc6Uvi"}},"img":"icons/sundries/books/book-plain-orange.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VXfJOqA5hOKDCVf1","name":"Small Knife","type":"loot","system":{"description":{"value":"A blunt knife used by the scholarly to open letters and correspondence.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.5,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3nVvaHVfHsgwGlkL"}},"img":"icons/weapons/daggers/dagger-jeweled-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641137,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"f3p50jjvtk2ao61n","name":"Draconic Bloodline","type":"subclass","img":"icons/creatures/reptiles/dragon-horned-blue.webp","system":{"description":{"value":"Your innate magic comes from draconic magic that was mingled with your blood or that of your ancestors. Most often, sorcerers with this origin trace their descent back to a mighty sorcerer of ancient times who made a bargain with a dragon or who might even have claimed a dragon parent. Some of these bloodlines are well established in the world, but most are obscure. Any given sorcerer could be the first of a new bloodline, as a result of a pact or some other exceptional circumstance.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"draconic-bloodline","classIdentifier":"sorcerer","advancement":[{"_id":"bjbipb2oydq3zsuy","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.EZsonMThTNLZq35j","Compendium.dnd5e.classfeatures.MW1ExvBLm8Hg82aA"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"oO4FCdIDwsr4VTb3":"Compendium.dnd5e.classfeatures.EZsonMThTNLZq35j","o0wsV8JAuT6FUDAt":"Compendium.dnd5e.classfeatures.MW1ExvBLm8Hg82aA"}},"level":1,"title":"Features"},{"_id":"cq0cwgss39pkvjox","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.x6eEZ9GUsuOcEa3G"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features"},{"_id":"rfd6o6858pl8k7fl","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.3647zjKSE9zFwOXc"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features"},{"_id":"4xrl7vjblpn8zl5t","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Gsha4bl0apxqspFy"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.subclasses.2nadB2MBSHTQ0kcl"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":null,"modifiedTime":1699993127229,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"kjmjY0zlE6IEiQVL","name":"Mending","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell repairs a single break or tear in an object you touch, such as a broken chain link, two halves of a broken key, a torn cloak, or a leaking wineskin. As long as the break or tear is no larger than 1 foot in any dimension, you mend it, leaving no trace of the former damage.This spell can physically repair a magic item or construct, but the spell can't restore magic to such an object.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"object","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Two lodestones","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.kjmjY0zlE6IEiQVL"}},"img":"icons/magic/air/wind-stream-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486272,"modifiedTime":1661603486272,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"EOmsUcFQJTfG2oio","name":"Fire Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You hurl a mote of fire at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried.This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.EOmsUcFQJTfG2oio"}},"img":"icons/magic/fire/projectile-fireball-smoke-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486272,"modifiedTime":1661603486272,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"oIzA2MEHwxhtQneU","name":"Minor Illusion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a sound or an image of an object within range that lasts for the duration. The illusion also ends if you dismiss it as an action or cast this spell again.If you create a sound, its volume can range from a whisper to a scream. It can be your voice, someone else's voice, a lion's roar, a beating of drums, or any other sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends.If you create an image of an object—such as a chair, muddy footprints, or a small chest—it must be no larger than a 5-foot cube. The image can't create sound, light, smell, or any other sensory effect. Physical interaction with the image reveals it to be an illusion, because things can pass through it.If a creature uses its action to examine the sound or image, the creature can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the illusion becomes faint to the creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":5,"width":null,"units":"ft","type":"cube","prompt":true},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"ill","components":{"vocal":false,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of fleece.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.oIzA2MEHwxhtQneU"}},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486273,"modifiedTime":1661603486273,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"icZokbgV1jIMpNCv","name":"Message","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You point your finger toward a creature within range and whisper a message. The target (and only the target) hears the message and can reply in a whisper that only you can hear.You can cast this spell through solid Objects if you are familiar with the target and know it is beyond the barrier. Magical silence, 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood blocks the spell. The spell doesn't have to follow a straight line and can travel freely around corners or through openings.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A short piece of copper wire","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.icZokbgV1jIMpNCv"}},"img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486273,"modifiedTime":1661603486273,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"5SuJewoa1CRWaj1F","name":"Burning Hands","ownership":{"default":0},"type":"spell","system":{"description":{"value":"As you hold your hands with thumbs touching and fingers spread, a thin sheet of flames shoots forth from your outstretched fingertips. Each creature in a 15-foot cone must make a Dexterity saving throw. A creature takes 3d6 fire damage on a failed save, or half as much damage on a successful one.The fire ignites any flammable objects in the area that aren't being worn or carried.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":15,"width":null,"units":"ft","type":"cone","prompt":true},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.5SuJewoa1CRWaj1F"}},"img":"icons/magic/air/fog-gas-smoke-dense-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486273,"modifiedTime":1661603486273,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"A3q2gTNqG6fvNGrv","name":"Disguise Self","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You make yourself—including your clothing, armor, weapons, and other belongings on your person—look different until the spell ends or until you use your action to dismiss it. You can seem 1 foot shorter or taller and can appear thin, fat, or in between. You can't change your body type, so you must adopt a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you.The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to your outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel your head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair.To discern that you are disguised, a creature can use its action to inspect your appearance and must succeed on an Intelligence (Investigation) check against your spell save DC.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self","prompt":true},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.A3q2gTNqG6fvNGrv"}},"img":"icons/magic/control/debuff-energy-hold-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486274,"modifiedTime":1661603486274,"lastModifiedBy":"dnd5ebuilder0000"}},{"name":"Scholar","type":"background","system":{"description":{"value":"Skill Proficiencies: History, plus your choice of one from among Arcana, Nature, and ReligionLanguages: Two of your choiceEquipment: Scholar's robes, a writing kit, a book of lore, and a pouch containing 10 gp","chat":"","unidentified":""},"source":{"custom":"","book":"","page":"","license":"CC-BY-4.0"},"advancement":[]},"img":"icons/sundries/documents/blueprint-recipe-alchemical.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040768566,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"38phJIpUGf6pPv1e"},{"_id":"Ig5YOxEOabGaTjG5","name":"Sorcerer","type":"class","img":"icons/magic/earth/projectiles-magma-stone-orange.webp","system":{"description":{"value":"As a sorcerer, you gain the following class features.\nHit Points\nHit Dice: 1d6 per sorcerer levelHit Points at 1st Level: 6 + your Constitution modifierHit Points at Higher Levels: 1d6 (or 4) + your Constitution modifier per sorcerer level after 1st\nProficiencies\nArmor: NoneWeapons: Daggers, darts, slings, quarterstaffs, light crossbowsTools: NoneSaving Throws: Constitution, CharismaSkills: Choose two from Arcana, Deception, Insight, Intimidation, Persuasion, and Religion\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a light crossbow and 20 bolts or (b) any simple weapon\n(a) a component pouch or (b) an arcane focus\n(a) a dungeoneer's pack or (b) an explorer's pack\nTwo daggers\n\nSorcerer Advancement\n\n\n\nLevel\nProficiency Bonus\nSorcery Points\nFeatures\n\n\n\n\n1st\n+2\n̶\n@Compendium[dnd5e.classfeatures.oygRF3ZjTv2T7z0Y]{Spellcasting}, @Compendium[dnd5e.classfeatures.cmRCL9T9UgRYOj1c]{Sorcerous Origins}\n\n\n2nd\n+2\n2\n@Compendium[dnd5e.classfeatures.LBKChJY5n02Afhnq]{Font of Magic}\n\n\n3rd\n+2\n3\n2nd Level Spell Slot, @Compendium[dnd5e.classfeatures.9Uh7uTDNZ04oTJsL]{Metamagic}\n\n\n4th\n+2\n4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n5th\n+3\n5\n3rd Level Spell Slot\n\n\n6th\n+3\n6\nSorcerous Origin feature\n\n\n7th\n+3\n7\n4th Level Spell Slot\n\n\n8th\n+3\n8\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n9th\n+4\n9\n5th Level Spell Slot\n\n\n10th\n+4\n10\n@Compendium[dnd5e.classfeatures.9Uh7uTDNZ04oTJsL]{Metamagic improvement}\n\n\n11th\n+4\n11\n6th Level Spell Slot\n\n\n12th\n+4\n12\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n13\n7th Level Spell Slot\n\n\n14th\n+5\n14\nSorcerous Origin feature\n\n\n15th\n+5\n15\n8th Level Spell Slot\n\n\n16th\n+5\n16\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n17\n9th Level Spell Slot, @Compendium[dnd5e.classfeatures.9Uh7uTDNZ04oTJsL]{Metamagic improvement}\n\n\n18th\n+6\n18\nSorcerous Origin feature\n\n\n19th\n+6\n19\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\n20\n@Compendium[dnd5e.classfeatures.F2lEKSmOY0NUruzY]{Sorcerous Restoration}\n\n\n\nSorcerous Origins\nDifferent sorcerers claim different origins for their innate magic, such as a draconic bloodline.\n@Compendium[dnd5e.subclasses.2nadB2MBSHTQ0kcl]{Draconic Bloodline}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"sorcerer","levels":1,"hitDice":"d6","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"DApymaBEK5mRxfNB"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.oygRF3ZjTv2T7z0Y","Compendium.dnd5e.classfeatures.cmRCL9T9UgRYOj1c"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"I6RIW8FArEkBLA3G":"Compendium.dnd5e.classfeatures.oygRF3ZjTv2T7z0Y","PnwXvKH6tQ3n7iIo":"Compendium.dnd5e.classfeatures.cmRCL9T9UgRYOj1c"}},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"OBdl50eixXnMFiLx"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.LBKChJY5n02Afhnq"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"wdT9gICkh5C1dvRf"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.9Uh7uTDNZ04oTJsL"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"debnsoWaePGMFTsP"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.F2lEKSmOY0NUruzY"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"E63M77FOFglremIz"},{"type":"ItemChoice","configuration":{"hint":"","choices":{"3":2,"10":1,"17":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.zElYrOcCFFMhB6Xl","Compendium.dnd5e.classfeatures.DZpAa3LzMNBexbmX","Compendium.dnd5e.classfeatures.IWpe0Y9uAStHGiH1","Compendium.dnd5e.classfeatures.tQxlKyAx9sgPrbgj","Compendium.dnd5e.classfeatures.tNG2qi9zhmXEkecA","Compendium.dnd5e.classfeatures.nViGf6bZ6DQAJhkw","Compendium.dnd5e.classfeatures.fXa0DMhoVLtbBu9l","Compendium.dnd5e.classfeatures.Qb391hakCfmH4w8p"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"metamagic","level":""}},"value":{},"title":"Metamagic","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"qyEuGrV1iPQx2Vxp"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":4},"4":{"value":5},"10":{"value":6}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"msOSJINvKQaCLmfM"},{"type":"ScaleValue","configuration":{"identifier":"spells-known","type":"number","distance":{"units":""},"scale":{"1":{"value":2},"2":{"value":3},"3":{"value":4},"4":{"value":5},"5":{"value":6},"6":{"value":7},"7":{"value":8},"8":{"value":9},"9":{"value":10},"10":{"value":11},"11":{"value":12},"13":{"value":13},"15":{"value":14},"17":{"value":15}}},"value":{},"title":"Spells Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"PhRvVmP2BpNCBfUy"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"BPdfOtpBTKQcxJCl"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"mVm5NO21p7Le9XRQ"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"oQc3e4xSTKM3LJfr"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"idqBSjclkmTGLcoH"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":19,"title":""},{"_id":"BfjnJtYtVOv4PVHu","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim:dagger","weapon:sim:dart","weapon:sim:lightcrossbow","weapon:sim:quarterstaff","weapon:sim:sling"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["weapon:sim:dagger","weapon:sim:dart","weapon:sim:lightcrossbow","weapon:sim:quarterstaff","weapon:sim:sling"]}},{"_id":"KO7dxe4FlwlKXFIq","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:con","saves:cha"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["saves:con","saves:cha"]}},{"_id":"PAAGQYrkhVdGqg59","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:arc","skills:dec","skills:ins","skills:itm","skills:per","skills:rel"]}]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["skills:arc","skills:rel"]}}],"spellcasting":{"progression":"full","ability":"cha"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.6T08zzKtmmpVwlXU"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234275,"modifiedTime":1699993127229,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"I6RIW8FArEkBLA3G","name":"Spellcasting (Sorcerer)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"An event in your past, or in the life of a parent or ancestor, left an indelible mark on you, infusing you with arcane magic. This font of magic, whatever its origin, fuels your spells.\nCantrips\nAt 1st level, you know four cantrips of your choice from the sorcerer spell list. You learn additional sorcerer cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Sorcerer table.\nSpell Slots\nThe Sorcerer table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these sorcerer spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nFor example, if you know the 1st-level spell burning hands and have a 1st-level and a 2nd-level spell slot available, you can cast burning hands using either slot.\nSpells Known of 1st Level and Higher\nYou know two 1st-level spells of your choice from the sorcerer spell list.\nThe Spells Known column of the Sorcerer table shows when you learn more sorcerer spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.\nAdditionally, when you gain a level in this class, you can choose one of the sorcerer spells you know and replace it with another spell from the sorcerer spell list, which also must be of a level for which you have spell slots.\nSpellcasting Ability\nCharisma is your spellcasting ability for your sorcerer spells, since the power of your magic relies on your ability to project your will into the world. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a sorcerer spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Charisma modifier\nSpell attack modifier = your proficiency bonus + your Charisma modifier\nSpellcasting Focus\nYou can use an arcane focus as a spellcasting focus for your sorcerer spells.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Sorcerer 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.oygRF3ZjTv2T7z0Y","advancementOrigin":"Ig5YOxEOabGaTjG5.OBdl50eixXnMFiLx"}},"img":"icons/magic/unholy/strike-hand-glow-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234424,"modifiedTime":1699987317098,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"PnwXvKH6tQ3n7iIo","name":"Sorcerous Origins","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Choose a sorcerous origin, which describes the source of your innate magical power, such as Draconic Bloodline.Your choice grants you features when you choose it at 1st level and again at 6th, 14th, and 18th level.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Sorcerer 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.cmRCL9T9UgRYOj1c","advancementOrigin":"Ig5YOxEOabGaTjG5.OBdl50eixXnMFiLx"}},"img":"icons/magic/air/wind-vortex-swirl-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234397,"modifiedTime":1699987317098,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"oO4FCdIDwsr4VTb3","name":"Dragon Ancestor","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At 1st level, you choose one type of dragon as your ancestor. The damage type associated with each dragon is used by features you gain later.DragonDamage TypeBlackAcidBlueLightningBrassFireBronzeLightningCopperAcidGoldFireGreenPoisonRedFireSilverColdWhiteColdYou can speak, read, and write Draconic. Additionally, whenever you make a Charisma check when interacting with dragons, your proficiency bonus is doubled if it applies to the check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Draconic Bloodline 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.EZsonMThTNLZq35j","advancementOrigin":"f3p50jjvtk2ao61n.bjbipb2oydq3zsuy"}},"img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","effects":[{"_id":"xI5jjbA2Dlj7L0cd","changes":[{"key":"system.traits.languages.value","mode":2,"value":"draconic","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/abilities/dragon-fire-breath-orange.webp","label":"Dragon Ancestor","origin":"Item.EZsonMThTNLZq35j","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234352,"modifiedTime":1699987392343,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"o0wsV8JAuT6FUDAt","name":"Draconic Resilience","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As magic flows through your body, it causes physical traits of your dragon ancestors to emerge. At 1st level, your hit point maximum increases by 1 and increases by 1 again whenever you gain a level in this class.Additionally, parts of your skin are covered by a thin sheen of dragon-like scales. When you aren't wearing armor, your AC equals 13 + your Dexterity modifier.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Draconic Bloodline 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.MW1ExvBLm8Hg82aA","advancementOrigin":"f3p50jjvtk2ao61n.bjbipb2oydq3zsuy"}},"img":"icons/creatures/claws/claw-scaled-red.webp","effects":[{"_id":"Pu89Tsgy2FJjYPQi","changes":[{"key":"system.attributes.ac.calc","mode":5,"value":"draconic","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/claws/claw-scaled-red.webp","label":"Draconic Resilience","origin":"Item.MW1ExvBLm8Hg82aA","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234366,"modifiedTime":1699987391372,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Y7BsvdA2in8INCB5","name":"Tiefling","type":"race","img":"icons/creatures/unholy/demon-female-succubus-orange.webp","system":{"description":{"value":"Tieflings share certain racial traits as a result of their infernal descent.Ability Score Increase. Your Intelligence score increases by 1, and your Charisma score increases by 2.Age. Tieflings mature at the same rate as humans but live a few years longer.Alignment. Tieflings might not have an innate tendency toward evil, but many of them end up there. Evil or not, an independent nature inclines many tieflings toward a chaotic alignment.Size. Tieflings are about the same size and build as humans. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Thanks to your infernal heritage, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Hellish Resistance. You have resistance to fire damage.Infernal Legacy. You know the thaumaturgy cantrip. When you reach 3rd level, you can cast the hellish rebuke spell as a 2nd-level spell once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the darkness spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.Languages. You can speak, read, and write Common and Infernal.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"tiefling","advancement":[{"_id":"1TyE6rcEq01VWRZc","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.races.q71Pe1F8RRtEJt8Q","Compendium.dnd5e.races.wJc88B8OP1y1xzMw"],"optional":false,"spell":{"ability":"cha","preparation":"innate","uses":{"max":"","per":""}}},"value":{"added":{"AqOtnW8y12LokI6Z":"Compendium.dnd5e.races.q71Pe1F8RRtEJt8Q","dbhkmMp9qAZQNQ7s":"Compendium.dnd5e.races.wJc88B8OP1y1xzMw"}},"level":0,"title":""},{"_id":"d8rqpB59h8lfbnva","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.spells.22dPoeXfaaAv4K3h"],"optional":false,"spell":{"ability":"cha","preparation":"innate","uses":{"max":"1","per":"lr"}}},"value":{},"level":3,"title":"Infernal Legacy"},{"_id":"p2AP4Rn6S8A8Xu5L","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.spells.S7VbUetIfVT7B6Eq"],"optional":false,"spell":{"ability":"cha","preparation":"innate","uses":{"max":"1","per":"lr"}}},"value":{},"level":5,"title":"Infernal Legacy"},{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":0,"fixed":{"str":0,"dex":0,"con":0,"int":1,"wis":0,"cha":2},"cap":2},"value":{"type":"asi","assignments":{"int":1,"cha":2}},"level":0,"title":""},{"_id":"RdFKqK8MykC5CYIB","type":"Size","configuration":{"hint":"Tieflings are about the same size and build as humans. Your size is Medium.","sizes":["med"]},"value":{"size":"med"},"level":1,"title":""},{"_id":"rE6m74Xp32VuJC5y","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["dr:fire"],"choices":[]},"level":0,"title":"Hellish Resistance","value":{"chosen":["dr:fire"]}},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR"],"optional":false,"spell":{"ability":"cha","preparation":"innate","uses":{"max":"","per":""}}},"value":{"added":{"FlFGTgeJM6U0I1iP":"Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR"}},"level":0,"title":"Infernal Legacy","_id":"VUUQMvAtL25wj3vD"},{"_id":"jGeaKhTjGApgqmWw","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:standard:common","languages:exotic:infernal"],"choices":[]},"level":0,"title":"","value":{"chosen":["languages:standard:common","languages:exotic:infernal"]}}],"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"type":{"value":"humanoid","subtype":"","custom":""}},"effects":[],"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.races.aHTokZ151W0ASSmo"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1677181073037,"modifiedTime":1699993127229,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null},{"_id":"AqOtnW8y12LokI6Z","name":"Hellish Resistance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have resistance to fire damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Tiefling","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.q71Pe1F8RRtEJt8Q","advancementOrigin":"Y7BsvdA2in8INCB5.1TyE6rcEq01VWRZc"}},"img":"icons/magic/air/fog-gas-smoke-swirling-orange.webp","effects":[{"_id":"0rAhv7npcNmDcQ3B","changes":[{"key":"system.traits.dr.value","mode":2,"value":"fire","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/air/fog-gas-smoke-swirling-orange.webp","label":"Hellish Resistance","origin":"Item.q71Pe1F8RRtEJt8Q","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234473,"modifiedTime":1699987317098,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"dbhkmMp9qAZQNQ7s","name":"Infernal Legacy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You know the @Compendium[dnd5e.spells.MUO1uYN7JR1hm4dR]{Thaumaturgy} cantrip.\nWhen you reach 3rd level, you can cast the @Compendium[dnd5e.spells.22dPoeXfaaAv4K3h]{Hellish Rebuke} spell as a 2nd-level spell once with this trait and regain the ability to do so when you finish a long rest.\nWhen you reach 5th level, you can cast the @Compendium[dnd5e.spells.S7VbUetIfVT7B6Eq]{Darkness} spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Tiefling","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.wJc88B8OP1y1xzMw","advancementOrigin":"Y7BsvdA2in8INCB5.1TyE6rcEq01VWRZc"}},"img":"icons/creatures/unholy/demon-fanged-horned-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234475,"modifiedTime":1699987318799,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"FlFGTgeJM6U0I1iP","name":"Thaumaturgy","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create one of the following magical effects within range:\n\nYour voice booms up to three times as loud as normal for 1 minute.\nYou cause flames to flicker, brighten, dim, or change color for 1 minute.\nYou cause harmless tremors in the ground for 1 minute.\nYou create a sound that originates from a point of your choice within range.\nYou cause an unlocked door or window to fly open or slam shut.\nYou alter the appearance of your eyes for 1 minute.\n\nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"cha","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR","advancementOrigin":"Y7BsvdA2in8INCB5.VUUQMvAtL25wj3vD"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234127,"modifiedTime":1699987303236,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"xI5jjbA2Dlj7L0cd","changes":[{"key":"system.traits.languages.value","mode":2,"value":"draconic","priority":null}],"disabled":false,"duration":{"startTime":0,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/abilities/dragon-fire-breath-orange.webp","label":"Dragon Ancestor","origin":"Compendium.dnd5e.heroes.xT2C2Itv2XambDYp.Item.oO4FCdIDwsr4VTb3","transfer":false,"flags":{},"tint":null,"sort":0},{"_id":"Pu89Tsgy2FJjYPQi","changes":[{"key":"system.attributes.ac.calc","mode":5,"value":"draconic","priority":null}],"disabled":false,"duration":{"startTime":0,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/claws/claw-scaled-red.webp","label":"Draconic Resilience","origin":"Compendium.dnd5e.heroes.xT2C2Itv2XambDYp.Item.o0wsV8JAuT6FUDAt","transfer":false,"flags":{},"tint":null,"sort":0},{"_id":"0rAhv7npcNmDcQ3B","changes":[{"key":"system.traits.dr.value","mode":2,"value":"fire","priority":null}],"disabled":false,"duration":{"startTime":0,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/air/fog-gas-smoke-swirling-orange.webp","label":"Hellish Resistance","origin":"Compendium.dnd5e.heroes.xT2C2Itv2XambDYp.Item.AqOtnW8y12LokI6Z","transfer":false,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787232194,"modifiedTime":1699993127240,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Beiro (Half-Elf Bard)","type":"character","img":"","system":{"abilities":{"str":{"value":8,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":1,"max":null,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"max":null,"bonuses":{"check":"","save":""}},"cha":{"value":18,"proficient":1,"max":null,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":10,"max":null,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""}},"init":{"ability":"","bonus":"0"},"movement":{"burrow":null,"climb":null,"fly":null,"swim":null,"walk":null,"units":null,"hover":false},"attunement":{"max":3},"senses":{"darkvision":null,"blindsight":null,"tremorsense":null,"truesight":null,"units":null,"special":""},"spellcasting":"cha","death":{"success":0,"failure":0},"exhaustion":0,"inspiration":false},"details":{"biography":{"value":"Beiro was a famed entertainer at his local tavern, when he one day ran out of stories to tell. To solve this, he set out to make his own stories, so as to one day tell them again at his tavern.","public":""},"alignment":"Chaotic Neutral","race":"Mmfz1ndrE8zwXsWT","background":null,"originalClass":"jRCTm0gBRZHs1hc7","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":""},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":"Magic can't put you to sleep; Advantage on saving throws against being charmed"},"languages":{"value":["common","elvish","gnomish"],"custom":""},"weaponProf":{"value":["sim","handcrossbow","longsword","rapier","shortsword"],"custom":""},"armorProf":{"value":["lgt"],"custom":""},"toolProf":{"value":[],"custom":""}},"currency":{"pp":0,"gp":15,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"tools":{"bagpipes":{"value":1,"ability":"int","bonuses":{"check":""}},"flute":{"value":1,"ability":"int","bonuses":{"check":""}},"lute":{"value":1,"ability":"int","bonuses":{"check":""}}},"spells":{"spell1":{"value":2,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}}},"prototypeToken":{"flags":{},"name":"Beiro","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":true,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"iWdMYgNBkGiajzc4","name":"Musical Instrument: Lute","type":"tool","system":{"description":{"value":"A lute to evoke awe, wonder, or fear in your audience.If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":35,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"","ability":"cha","chatFlavor":"","proficient":null,"bonus":""},"sort":0,"flags":{},"img":"icons/tools/instruments/lute-gold-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2Ejl2ovEUJg7swzL","name":"Musical Instrument: Flute","type":"tool","system":{"description":{"value":"A lute to evoke awe, wonder, or fear in your audience.If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"","ability":"cha","chatFlavor":"","proficient":null,"bonus":""},"sort":0,"flags":{},"img":"icons/tools/instruments/flute-simple-wood.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TM6CyNpWtV8f0KAw","name":"Chest","type":"backpack","system":{"description":{"value":"A chest holds 12 cubic feet or 300 pounds of gear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":25,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":300,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.2YbuclKfhDL0bU4u"}},"img":"icons/containers/chest/chest-reinforced-steel-walnut-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Cj6MP46nIu5amhsZ","name":"Map or Scroll Case","type":"backpack","system":{"description":{"value":"This cylindrical leather case can hold up to ten rolled-up sheets of paper or five rolled-up sheets of parchment.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":2,"weight":1,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"items","value":10,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.5mIeX824uMklU3xq"}},"img":"icons/containers/bags/case-leather-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jNOSoW0La7Bk4vXk","name":"Backpack","type":"backpack","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.H8YCd689ezlD26aT"}},"img":"icons/containers/bags/pack-simple-leather.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NjSGXfLGqF3ZRlGk","name":"Pouch","type":"backpack","system":{"description":{"value":"A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":6,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.9bWTRRDym06PzSAf"}},"img":"icons/containers/bags/coinpouch-simple-tan.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641146,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"mTNjAEl1w1zwR5BT","name":"Disguise Kit","type":"tool","system":{"description":{"value":"This pouch of cosmetics, hair dye, and small props lets you create disguises that change your physical appearance. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a visual disguise.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"","ability":"int","chatFlavor":"","proficient":null,"bonus":""},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.IBhDAr7WkhWPYLVn"}},"img":"icons/equipment/back/cloak-hooded-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DPTz84c6sWcBSuQg","name":"Dagger","type":"weapon","system":{"description":{"value":"A short metal blade mounted to a small hilt and crossguard. The dagger makes an effective side armament for hardened warriors or a hidden blade for assassins and thieves.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.0E565kQUBmndJ1a2"}},"img":"icons/weapons/daggers/dagger-jeweled-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vRbfWjO0wkfi2EUS","name":"Rapier","type":"weapon","system":{"description":{"value":"A thin tensile metal blade, light in weight but long in reach designed for quick darting attacks to target weak points in enemy defenses with lightning swiftness.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Tobce1hexTnDk4sV"}},"img":"icons/weapons/swords/sword-guard-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QeJyd2v24zGDwXbq","name":"Leather Armor","type":"equipment","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"img":"icons/equipment/chest/breastplate-quilted-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"N3Ya1Qmpj8fmK8eU","name":"Costume Clothes","type":"equipment","system":{"description":{"value":"A complete costume usually used by performers and artists in all manner of entertainment halls or for those that simply refuse to get out of character.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.E2h6sEe6FU2tnU96"}},"img":"icons/equipment/back/cloak-hooded-pink.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OoQ9lTEooaOlQQaV","name":"Fine Clothes","type":"equipment","system":{"description":{"value":"Set of clothes designed specifically to be expensive and show it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3OXueEpvDDCVfGFA"}},"img":"icons/equipment/back/cloak-heavy-fur-blue.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wvxh8eOWg3RAJFoH","name":"Oil Flask","type":"consumable","system":{"description":{"value":"Oil usually comes in a clay flask that holds 1 pint. As an action, you can splash the oil in this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact. Make a ranged attack against a target creature or object, treating the oil as an improvised weapon.On a hit, the target is covered in oil. If the target takes any fire damage before the oil dries (after 1 minute), the target takes an additional 5 fire damage from the burning oil. You can also pour a flask of oil on the ground to cover a 5-foot-square area, provided that the surface is level.If lit, the oil burns for 2 rounds and deals 5 fire damage to any creature that enters the area or ends its turn in the area. A creature can take this damage only once per turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":2,"weight":1,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":5,"long":20,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.psoZaItkOScMVaHL"}},"img":"icons/consumables/potions/bottle-bulb-empty-glass.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641154,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"RXlNK5wqC22ZojbN","name":"Lamp","type":"consumable","system":{"description":{"value":"A lamp casts bright light in a 15-foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"6","units":"hour"},"cover":null,"crewed":false,"target":{"value":45,"width":null,"units":"ft","type":"radius","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.qMzHmlmha8qMDnEF"}},"img":"icons/commodities/treasure/lantern-stone-grey.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641163,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"6JFzrzKtJyhU12xi","name":"Musical Instrument: Drum","type":"tool","system":{"description":{"value":"A drum, of any variety, to evoke awe, wonder, or fear in your audience.If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":6,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"","ability":"cha","chatFlavor":"","proficient":null,"bonus":""},"sort":0,"flags":{},"img":"icons/tools/instruments/drum-brown-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8pii9UucawKvfDsM","name":"Ink Pen","type":"loot","system":{"description":{"value":"A deviced used in combination with ink to write or draw on a sheet of paper.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.uVm7MiB71QblfnoY"}},"img":"icons/commodities/materials/feather-red-.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647682,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"9vSJX7VXZLXkXLVs","name":"Ink Bottle","type":"loot","system":{"description":{"value":"A small bottle of ink for writing upon parchment.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.06,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.dP7jMKyHTTgVb3ii"}},"img":"icons/consumables/potions/bottle-bulb-empty-glass.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VWdmspSsWBrQ85hx","name":"Paper","type":"loot","system":{"description":{"value":"A single sheet of paper.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":5,"weight":0,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.fNMkFCOvMiW2Rh3t"}},"img":"icons/sundries/documents/document-bound-white.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641180,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MgZvqEEt5jUtHG5d","name":"Perfume","type":"loot","system":{"description":{"value":"A vial of aromatic perfume.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.uuh4UH3Jx5CsFjdA"}},"img":"icons/consumables/potions/bottle-bulb-corked-purple.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"833SKFj28K9Jzhzf","name":"Soap","type":"loot","system":{"description":{"value":"Used to clean and wash.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.REBWkTKe6lJaIkpn"}},"img":"icons/sundries/survival/soap.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011647692,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"80Gaz3MRLsMImA2r","name":"Sealing Wax","type":"loot","system":{"description":{"value":"A wax material of a seal which, after melting, hardens quickly forming a bond that is difficult to separate without noticeable tampering.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3uEyuCfnAzGkwAn5"}},"img":"icons/sundries/lights/candle-unlit-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641233,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pEDdh0i2HBhReeuU","name":"Love Letter","type":"loot","system":{"description":{"value":"A love letter sent by an admirer.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"type":{"value":"","subtype":""}},"sort":0,"flags":{},"img":"icons/sundries/scrolls/scroll-plain-red.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"IUsB73tFTMjgMbFv","name":"Rations","type":"consumable","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":10,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true,"prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food","properties":{}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.items.f4w4GxBi0nYXmhX4"}},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011641244,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Bnn9Nzajixvow9xi","name":"Light","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"object","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A firefly or phosphorescent moss.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Bnn9Nzajixvow9xi"}},"img":"icons/magic/light/explosion-star-small-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486304,"modifiedTime":1661603486304,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Utk1OQRwYkMkFRD3","name":"Mage Hand","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.The hand can't attack, activate magic items, or carry more than 10 pounds.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"space","prompt":true},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Utk1OQRwYkMkFRD3"}},"img":"icons/magic/water/water-hand.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486305,"modifiedTime":1661603486305,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"eS7XnnApoxRxYXPs","name":"Charm Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to charm a humanoid you can see within range. It must make a Wisdom saving throw, and does so with advantage if you or your companions are fighting it. If it fails the saving throw, it is charmed by you until the spell ends or until you or your companions do anything harmful to it. The charmed creature regards you as a friendly acquaintance. When the spell ends, the creature knows it was charmed by you.\n At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.eS7XnnApoxRxYXPs"}},"img":"icons/magic/fire/explosion-fireball-medium-purple-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486305,"modifiedTime":1661603486305,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"A3q2gTNqG6fvNGrv","name":"Disguise Self","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You make yourself—including your clothing, armor, weapons, and other belongings on your person—look different until the spell ends or until you use your action to dismiss it. You can seem 1 foot shorter or taller and can appear thin, fat, or in between. You can't change your body type, so you must adopt a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you.The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to your outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel your head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair.To discern that you are disguised, a creature can use its action to inspect your appearance and must succeed on an Intelligence (Investigation) check against your spell save DC.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self","prompt":true},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.A3q2gTNqG6fvNGrv"}},"img":"icons/magic/control/debuff-energy-hold-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486305,"modifiedTime":1661603486305,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ge3Saet9zPTDyaoL","name":"Heroism","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A willing creature you touch is imbued with bravery. Until the spell ends, the creature is immune to being Frightened and gains Temporary Hit Points equal to your Spellcasting ability modifier at the start of each of its turns. When the spell ends, the target loses any remaining temporary hit points from this spell.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@mod","temphp"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ge3Saet9zPTDyaoL"}},"img":"icons/magic/life/heart-cross-strong-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486306,"modifiedTime":1661603486306,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"BQk5Row4NymMnUQl","name":"Hideous Laughter","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature of your choice that you can see within range perceives everything as hilariously funny and falls into fits of laughter if this spell affects it. The target must succeed on a Wisdom saving throw or fall prone, becoming Incapacitated and unable to stand up for the Duration. A creature with an Intelligence score of 4 or less isn't affected.At the end of each of its turns, and each time it takes damage, the target can make another Wisdom saving throw. The target has advantage on the saving throw if it's triggered by damage. On a success, the spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Tiny tarts and a feather that is waved in the air","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.BQk5Row4NymMnUQl"}},"img":"icons/magic/fire/explosion-fireball-medium-purple-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661603486306,"modifiedTime":1661603486306,"lastModifiedBy":"dnd5ebuilder0000"}},{"name":"Musician","type":"background","system":{"description":{"value":"Skill Proficiencies: Acrobatics, PerformanceTool Proficiencies: Disguise kit, one type of musical instrumentEquipment: A musical instrument, a note from an admirer, and a pouch containing 15 gp","chat":"","unidentified":""},"source":{"custom":"","book":"","page":"","license":"CC-BY-4.0"},"advancement":[]},"img":"icons/tools/instruments/harp-gold-glowing.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1673040183979,"modifiedTime":1673040818193,"lastModifiedBy":"dnd5ebuilder0000"},"_id":"VgrH5nkz2SER0YhR"},{"_id":"jRCTm0gBRZHs1hc7","name":"Bard","type":"class","img":"icons/skills/toxins/cup-goblet-poisoned-spilled.webp","system":{"description":{"value":"As a bard, you gain the following class features.Hit PointsHit Dice: 1d8 per bard levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per bard level after 1stProficienciesArmor: Light armorWeapons: Simple weapons, hand crossbows, longswords, rapiers, shortswordsTools: Three musical instruments of your choiceSaving Throws: Dexterity, CharismaSkills: Choose any threeEquipmentYou start with the following equipment, in addition to the equipment granted by your background:(a) a rapier, (b) a longsword, or (c) any simple weapon(a) a diplomat's pack or (b) an entertainer's pack(a) a lute or (b) any other musical instrumentLeather armor and a daggerBard AdvancementLevelProficiency BonusFeatures1st+2@Compendium[dnd5e.classfeatures.u4NLajXETJhJU31v]{Spellcasting}, @Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiration (d6)}2nd+2@Compendium[dnd5e.classfeatures.ezWijmCnlnQ9ZRX2]{Jack of All Trades}, @Compendium[dnd5e.classfeatures.he8RpPXwSl2lVSIk]{Song of Rest (d6)}3rd+2@Compendium[dnd5e.classfeatures.ILhzFHiRrqgQ9dFJ]{Bard College} @Compendium[dnd5e.classfeatures.aQLg7BWdRnm4Hr9S]{Expertise}4th+2@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}5th+3@Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiration (d8)}, @Compendium[dnd5e.classfeatures.3VDZGs5Ug3hIE322]{Font of Inspiration}6th+3@Compendium[dnd5e.classfeatures.SEJmsjkEhdAZ90ki]{Countercharm}, Bard College feature7th+34th Level Spell Slot8th+3@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}9th+45th Level Spell Slot @Compendium[dnd5e.classfeatures.he8RpPXwSl2lVSIk]{Song of Rest (d8)}10th+4@Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiration (d10)}, @Compendium[dnd5e.classfeatures.aQLg7BWdRnm4Hr9S]{Expertise}, @Compendium[dnd5e.classfeatures.aonJ2YjkqkYB9WYB]{Magical Secrets}11th+46th Level Spell Slot12th+4@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}13th+57th Level Spell Slot, @Compendium[dnd5e.classfeatures.he8RpPXwSl2lVSIk]{Song of Rest (d10)}14th+5@Compendium[dnd5e.classfeatures.aonJ2YjkqkYB9WYB]{Magical Secrets}, Bard College feature15th+58th Level Spell Slot, @Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiration (d12)}16th+5@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}17th+69th Level Spell Slot, @Compendium[dnd5e.classfeatures.he8RpPXwSl2lVSIk]{Song of Rest (d12)}18th+6@Compendium[dnd5e.classfeatures.aonJ2YjkqkYB9WYB]{Magical Secrets}19th+6@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}20th+6@Compendium[dnd5e.classfeatures.GBYN5rH4nh1ocRlY]{Superior Inspiration}Bard Colleges@Compendium[dnd5e.subclasses.MNvsEc4D2ccX7dQT]{College of Lore}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"bard","levels":1,"hitDice":"d8","hitDiceUsed":0,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"EKTLkOHo2TCW7XIf"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.u4NLajXETJhJU31v","Compendium.dnd5e.classfeatures.hpLNiGq7y67d2EHA"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"68Ddyvt01lMQMzxs":"Compendium.dnd5e.classfeatures.u4NLajXETJhJU31v","YbNSECwaQYGzHnfL":"Compendium.dnd5e.classfeatures.hpLNiGq7y67d2EHA"}},"level":1,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"DAnM5n0F9nUkY15I"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ezWijmCnlnQ9ZRX2","Compendium.dnd5e.classfeatures.he8RpPXwSl2lVSIk"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"sMIJRB5FeIM1OsMt"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ILhzFHiRrqgQ9dFJ","Compendium.dnd5e.classfeatures.aQLg7BWdRnm4Hr9S"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"UxQ9cTOrazRMUpV0"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.3VDZGs5Ug3hIE322"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":5,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"DNqlO4gPAhwh1FEN"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.SEJmsjkEhdAZ90ki"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"WfrWYWix0JbCl6OP"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.aonJ2YjkqkYB9WYB"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"JKqujV3gQ79K1PM8"},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.GBYN5rH4nh1ocRlY"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"Z1lpPlUMZns8euiD"},{"type":"ItemChoice","configuration":{"hint":"Choose two spells from any classes, including this one. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip.","choices":{"10":2,"14":2,"18":2},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"","subtype":"","level":"available"}},"value":{},"title":"Magical Secrets","icon":"systems/dnd5e/icons/svg/item-choice.svg","_id":"MhSKzQVlKtFtH3xB"},{"type":"ScaleValue","configuration":{"identifier":"inspiration","type":"dice","distance":{"units":""},"scale":{"1":{"number":null,"faces":6},"5":{"number":null,"faces":8},"10":{"number":null,"faces":10},"15":{"number":null,"faces":12}}},"value":{},"title":"Bardic Inspiration Die","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"kyjFphgByFS4mPlw"},{"type":"ScaleValue","configuration":{"identifier":"song-of-rest","type":"dice","distance":{"units":""},"scale":{"2":{"number":null,"faces":6},"9":{"number":null,"faces":8},"13":{"number":null,"faces":10},"17":{"number":null,"faces":12}}},"value":{},"title":"Song of Rest Die","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"gdwtEVYkO44OCABo"},{"type":"ScaleValue","configuration":{"identifier":"cantrips-known","type":"number","distance":{"units":""},"scale":{"1":{"value":2},"4":{"value":3},"10":{"value":4}}},"value":{},"title":"Cantrips Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"Nz0ud8hOAINqJKZ1"},{"type":"ScaleValue","configuration":{"identifier":"spells-known","type":"number","distance":{"units":""},"scale":{"1":{"value":4},"2":{"value":5},"3":{"value":6},"4":{"value":7},"5":{"value":8},"6":{"value":9},"7":{"value":10},"8":{"value":11},"9":{"value":12},"10":{"value":14},"11":{"value":15},"13":{"value":16},"14":{"value":18},"15":{"value":19},"17":{"value":20},"18":{"value":22}}},"value":{},"title":"Spells Known","icon":"systems/dnd5e/icons/svg/scale-value.svg","_id":"aJhQOoccPAza9Cuq"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"Jy2URg8R3ETmmoFv"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"j8sWjSvQ4Gpq0nX0"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"VLxmhsFQAlTL0B8S"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","icon":"systems/dnd5e/icons/svg/ability-score-improvement.svg","_id":"z2Caf1jETQT5k0WL"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":19,"title":""},{"_id":"svCkv1ECxsmu2Q7U","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:lgt"],"choices":[]},"level":1,"title":"","value":{"chosen":["armor:lgt"]}},{"_id":"hZPJWA6MdmFIZuQD","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim","weapon:mar:handcrossbow","weapon:mar:longsword","weapon:mar:rapier","weapon:mar:shortsword"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["weapon:sim","weapon:mar:handcrossbow","weapon:mar:longsword","weapon:mar:rapier","weapon:mar:shortsword"]}},{"_id":"tRCVvsqiLStPNyFl","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":3,"pool":["tool:music:*"]}]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["tool:music:bagpipes","tool:music:flute","tool:music:lute"]}},{"_id":"wVBCjoHg0ftdHj3m","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["saves:dex","saves:cha"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["saves:dex","saves:cha"]}},{"_id":"eNU6FoX5sNVbDx13","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":3,"pool":["skills:*"]}]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["skills:acr","skills:his","skills:slt"]}},{"type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":1,"pool":["tool:music:*"]}]},"level":1,"title":"","_id":"8oBIVC96av3lm5uk","classRestriction":"secondary","value":{}},{"type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":1,"pool":["skills:*"]}]},"level":1,"title":"","_id":"ELIXk3XCH4EmyiqN","classRestriction":"secondary","value":{}},{"_id":"cwu9uhmtcKhqli8W","type":"Trait","configuration":{"hint":"","mode":"expertise","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:*"]}]},"level":3,"title":"Expertise","value":{}},{"type":"Trait","configuration":{"hint":"","mode":"expertise","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:*"]}]},"level":10,"title":"Expertise","_id":"O2cVH7Y5kNfoUyLg","value":{}}],"spellcasting":{"progression":"full","ability":"cha"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.classes.ILvRZGEx3aXqSVUt"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234279,"modifiedTime":1699992833464,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"68Ddyvt01lMQMzxs","name":"Spellcasting (Bard)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have learned to untangle and reshape the fabric of reality in harmony with your wishes and music. Your spells are part of your vast repertoire, magic that you can tune to different situations.\nCantrips\nYou know two cantrips of your choice from the bard spell list. You learn additional bard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Bard table.\nSpell Slots\nThe Bard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nFor example, if you know the 1st-level spell cure wounds and have a 1st-level and a 2nd-level spell slot available, you can cast cure wounds using either slot.\nSpells Known of 1st Level and Higher\nYou know four 1st-level spells of your choice from the bard spell list.\nThe Spells Known column of the Bard table shows when you learn more bard spells of your choice. Each of these spells must be of a level for which you have spell slots, as shown on the table. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.\nAdditionally, when you gain a level in this class, you can choose one of the bard spells you know and replace it with another spell from the bard spell list, which also must be of a level for which you have spell slots.\nSpellcasting Ability\nCharisma is your spellcasting ability for your bard spells. Your magic comes from the heart and soul you pour into the performance of your music or oration. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a bard spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Charisma modifier\nSpell attack modifier = your proficiency bonus + your Charisma modifier\nRitual Casting\nYou can cast any bard spell you know as a ritual if that spell has the ritual tag.\nSpellcasting Focus\nYou can use a musical instrument (see @UUID[Compendium.dnd5e.rules.BYFd9hiJGo9L5aOM.JournalEntryPage.AjavRU4yPfI9hfaI]{Adventuring Gear})) as a spellcasting focus for your bard spells.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.u4NLajXETJhJU31v","advancementOrigin":"jRCTm0gBRZHs1hc7.DAnM5n0F9nUkY15I"}},"img":"icons/magic/symbols/runes-carved-stone-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234434,"modifiedTime":1699987344215,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"YbNSECwaQYGzHnfL","name":"Bardic Inspiration","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can inspire others through stirring words or music. To do so, you use a bonus action on your turn to choose one creature other than yourself within 60 feet of you who can hear you. That creature gains one Bardic Inspiration die, a d6. Once within the next 10 minutes, the creature can roll the die and add the number rolled to one ability check, attack roll, or saving throw it makes. The creature can wait until after it rolls the d20 before deciding to use the Bardic Inspiration die, but must decide before the GM says whether the roll succeeds or fails. Once the Bardic Inspiration die is rolled, it is lost. A creature can have only one Bardic Inspiration die at a time.You can use this feature a number of times equal to your Charisma modifier (a minimum of once).You regain any expended uses when you finish a long rest.Your Bardic Inspiration die changes when you reach certain levels in this class. The die becomes a d8 at 5th level, a d10 at 10th level, and a d12 at 15th level.Foundry NoteRecovery is set to long rest (for levels before @Compendium[dnd5e.classfeatures.3VDZGs5Ug3hIE322]{Font of Inspiration} is gained). Please manually adjust as required.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"crewed":false,"target":{"value":1,"width":null,"units":"","type":"creature","prompt":true},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"max(1, @abilities.cha.mod)","per":"lr","recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1@scale.bard.inspiration","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"class","subtype":""},"requirements":"Bard 1","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.hpLNiGq7y67d2EHA","advancementOrigin":"jRCTm0gBRZHs1hc7.DAnM5n0F9nUkY15I"}},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787234409,"modifiedTime":1691519060057,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Mmfz1ndrE8zwXsWT","name":"Half-Elf","type":"race","img":"icons/magic/nature/leaf-glow-triple-green.webp","system":{"description":{"value":"Your half‑elf character has some qualities in common with elves and some that are unique to half-elves.Ability Score Increase. Your Charisma score increases by 2, and two other ability scores of your choice increase by 1.Age. Half-elves mature at the same rate humans do and reach adulthood around the age of 20. They live much longer than humans, however, often exceeding 180 years.Alignment. Half-elves share the chaotic bent of their elven heritage. They value both personal freedom and creative expression, demonstrating neither love of leaders nor desire for followers. They chafe at rules, resent others' demands, and sometimes prove unreliable, or at least unpredictable.Size. Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Thanks to your elf blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Fey Ancestry. You have advantage on saving throws against being charmed, and magic can't put you to sleep.Skill Versatility. You gain proficiency in two skills of your choice.Languages. You can speak, read, and write Common, Elvish, and one extra language of your choice.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"half-elf","advancement":[{"_id":"rXyxzoqxdxlspMi5","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.races.cnTbpPPeGW7vGjOV"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{"added":{"9t0oaZailMjUceoS":"Compendium.dnd5e.races.cnTbpPPeGW7vGjOV"}},"level":0,"title":""},{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":2},"cap":1},"value":{"type":"asi","assignments":{"cha":2}},"level":0,"title":""},{"_id":"r3PSgtQO6Eim49LU","type":"Size","configuration":{"hint":"Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.","sizes":["med"]},"value":{"size":"med"},"level":1,"title":""},{"_id":"CormRQZ5momyvS2I","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:*"]}]},"level":0,"title":"Skill Versatility","value":{"chosen":["skills:prc","skills:rel"]}},{"_id":"U3OO7jLU0nm0Z7zw","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:standard:common","languages:standard:elvish"],"choices":[{"count":1,"pool":["languages:*"]}]},"level":0,"title":"","value":{"chosen":["languages:standard:common","languages:standard:elvish","languages:standard:gnomish"]}}],"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"type":{"subtype":"elf","value":"humanoid","custom":""},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false}},"effects":[],"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.races.Hye5IZwPOSwV0qRR"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1677181061205,"modifiedTime":1699992833465,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null},{"_id":"9t0oaZailMjUceoS","name":"Fey Ancestry","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have advantage on saving throws against being charmed, and magic can't put you to sleep.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null,"scale":false},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Elf, Half-Elf","recharge":{"value":null,"charged":false}},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.cnTbpPPeGW7vGjOV","advancementOrigin":"Mmfz1ndrE8zwXsWT.rXyxzoqxdxlspMi5"}},"img":"icons/creatures/mammals/elk-moose-marked-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787234471,"modifiedTime":1699987342522,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"xVmbM44RXyI2Eqq3","_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1661787232198,"modifiedTime":1699992833480,"lastModifiedBy":"dnd5ebuilder0000"}} diff --git a/packs/items.db b/packs/items.db index 5b544dfae6..bee454ea55 100644 --- a/packs/items.db +++ b/packs/items.db @@ -1,805 +1,805 @@ -{"_id":"00BggOkChWztQx6R","name":"Studded Leather Armor +3","type":"equipment","img":"icons/equipment/chest/breastplate-rivited-red.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":13,"price":{"value":24045,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"studded","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233431,"modifiedTime":1671220956958,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"07R6JFioylOCpVoL","name":"Frost Brand Scimitar","type":"weapon","img":"icons/skills/melee/strike-weapon-polearm-ice-blue.webp","system":{"description":{"value":"(Requires attunement)\nWhen you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":2200,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"],["1d6","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233432,"modifiedTime":1671220956973,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"09i8r1UmzDSKiZ9g","name":"Glaive +1","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"glaive","properties":{"hvy":true,"two":true,"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233432,"modifiedTime":1671220956979,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"0E565kQUBmndJ1a2","name":"Dagger","type":"weapon","img":"icons/weapons/daggers/dagger-jeweled-purple.webp","system":{"description":{"value":"A short metal blade mounted to a small hilt and crossguard. The dagger makes an effective side armament for hardened warriors or a hidden blade for assassins and thieves.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"dagger","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233433,"modifiedTime":1671220956984,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"0G5LSgbb5NTV4XC7","name":"Ioun Stone of Strength","type":"equipment","img":"icons/commodities/gems/gem-rough-cushion-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Strength. Your Strength score increases by 2, to a maximum of 20, while this pale blue rhomboid orbits your head.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":3000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[{"label":"Ioun Stone of Strength","icon":"icons/commodities/gems/gem-rough-cushion-blue.webp","origin":"Compendium.dnd5e.items.0G5LSgbb5NTV4XC7","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"plffDmuTOIrXAJDb","changes":[{"key":"system.abilities.str.value","mode":2,"value":"+2"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233434,"modifiedTime":1690481115410,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"0LVFLPmsu1b2vf8E","name":"Flail +1","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod +1","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"flail","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233434,"modifiedTime":1671220956993,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"0NoBBP3MMkvJlwZY","name":"Candle","type":"consumable","img":"icons/sundries/lights/candle-unlit-tan.webp","system":{"description":{"value":"For 1 hour, a candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233435,"modifiedTime":1671220956998,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"0ZBWwjFz3nIAXMLW","name":"Jug","type":"backpack","img":"icons/containers/kitchenware/jug-terracotta-orange.webp","system":{"description":{"value":"A pitcher holds 1 gallon of liquid.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":8.4,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233435,"modifiedTime":1671220957002,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"0d08g1i5WXnNrCNA","name":"Tinker's Tools","type":"tool","img":"icons/commodities/cloth/thread-spindle-white-needle.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in tinkering.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"tinker","ability":"int","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233436,"modifiedTime":1671220957005,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"10ZP2Bu3vnCuYMIB","name":"Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"A lengthy stright blade designed for slashing foes, the longsword is a highly versatile weapon that may also be wielded with two hands for more punishing strikes.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"ver":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233436,"modifiedTime":1671220957009,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"14pNRT4sZy9rgvhb","name":"Hammer","type":"loot","img":"icons/tools/hand/hammer-cobbler-steel.webp","system":{"description":{"value":"A tool with a heavy metal head mounted at the end of its handle, used for jobs such as breaking things and driving in nails. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233437,"modifiedTime":1671220957013,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"159agyOuBHCl2WKd","name":"Adamantine Half Plate Armor","type":"equipment","img":"icons/equipment/chest/breastplate-cuirass-steel-grey.webp","system":{"description":{"value":"This armor is reinforced with adamantine, one of the hardest substances in existence.\nWhile you're wearing it, any critical hit against you becomes a normal hit.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":40,"price":{"value":1250,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"halfplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233438,"modifiedTime":1690539010993,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"18fbyArtidKzON01","name":"Wand of Magic Detection","type":"consumable","img":"icons/weapons/staves/staff-simple-green.webp","system":{"description":{"value":"This wand has 3 charges. While holding it, you can expend 1 charge as an action to cast the @Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic} spell from it. The wand regains 1d3 expended charges daily at dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d3","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233438,"modifiedTime":1671220957022,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"1J0dsxyKRhVXYQf5","name":"Ring of Invisibility","type":"equipment","img":"icons/equipment/finger/ring-faceted-silver-orange.webp","system":{"description":{"value":"(Requires attunement)\nWhile wearing this ring, you can turn invisible as an action. Anything you are wearing or carrying is invisible with you. You remain invisible until the ring is removed, until you attack or cast a spell, or until you use a bonus action to become visible again.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":10000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233439,"modifiedTime":1671220957027,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"1KMSpOSU0EliUBm2","name":"Potion of Storm Giant Strength","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-labeled-blue.webp","system":{"description":{"value":"This potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type.\nWhen you drink this potion, your Strength score changes to 29 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":2000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233439,"modifiedTime":1671220957040,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"1Lxk6kmoRhG8qQ0u","name":"Greataxe","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"This enormous axe features two twin crescent blades mounted on either side of a tall spiked shaft. Designed to be wielded with two hands and cleave foes in twain.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":30,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greataxe","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233440,"modifiedTime":1671220957049,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"1PMaZR6CX8fUnOZd","name":"Vicious Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"A medium sized blade with a firm crossguard and a leather-wrapped handle. A versatile weapon which makes up in versatility what it lacks in reach.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233441,"modifiedTime":1671220957054,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"1RwJWOAeyoideLKe","name":"Orb of Dragonkind","type":"equipment","img":"icons/commodities/gems/pearl-storm.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAges past, elves and humans waged a terrible war against evil dragons. When the world seemed doomed, powerful wizards came together and worked their greatest magic, forging five Orbs of Dragonkind (or Dragon Orbs) to help them defeat the dragons. One orb was taken to each of the five wizard towers, and there they were used to speed the war toward a victorious end. The wizards used the orbs to lure dragons to them, then destroyed the dragons with powerful magic.\nAs the wizard towers fell in later ages, the orbs were destroyed or faded into legend, and only three are thought to survive. Their magic has been warped and twisted over the centuries, so although their primary purpose of calling dragons still functions, they also allow some measure of control over dragons.\nEach orb contains the essence of an evil dragon, a presence that resents any attempt to coax magic from it. Those lacking in force of personality might find themselves enslaved to an orb.\nAn orb is an etched crystal globe about 10 inches in diameter. When used, it grows to about 20 inches in diameter, and mist swirls inside it.\nWhile attuned to an orb, you can use an action to peer into the orb's depths and speak its command word. You must then make a DC 15 Charisma check. On a successful check, you control the orb for as long as you remain attuned to it. On a failed check, you become charmed by the orb for as long as you remain attuned to it.\nWhile you are charmed by the orb, you can't voluntarily end your attunement to it, and the orb casts @Compendium[dnd5e.spells.zMAWdyc8UVb37BK4]{Suggestion} on you at will (save DC 18), urging you to work toward the evil ends it desires. The dragon essence within the orb might want many things: the annihilation of a particular people, freedom from the orb, to spread suffering in the world, to advance the worship of Tiamat, or something else the GM decides.\nRandom Properties. An Orb of Dragonkind has the following random properties (see DMG pg. 219-21): \n\n2 minor beneficial properties \n1 minor detrimental property\n1 major detrimental property\n\nSpells. The orb has 7 charges and regains 1d4 + 3 expended charges daily at dawn. If you control the orb, you can use an action and expend 1 or more charges to cast one of the following spells (save DC 18) from it: \n\n@Compendium[dnd5e.spells.uUWb1wZgtMou0TVP]{Cure Wounds} (5th-level version, 3 charges)\n@Compendium[dnd5e.spells.BP3GCwa66IAw1yTG]{Daylight} (1 charge)\n@Compendium[dnd5e.spells.VtCXMdyM6mAdIJZb]{Death Ward} (2 charges)\n@Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying} (3 charges).\nYou can also use an action to cast the @Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic} spell from the orb without using any charges.\n\nCall Dragons. While you control the orb, you can use an action to cause the artifact to issue a telepathic call that extends in all directions for 40 miles. Evil dragons in range feel compelled to come to the orb as soon as possible by the most direct route. Dragon deities such as Tiamat are unaffected by this call. Dragons drawn to the orb might be hostile toward you for compelling them against their will. Once you have used this property, it can't be used again for 1 hour.\nDestroying an Orb. An Orb of Dragonkind appears fragile but is impervious to most damage, including the attacks and breath weapons of dragons. A @Compendium[dnd5e.spells.HBHbOGKNVVprSlwn]{Disintegrate} spell or one good hit from a +3 magic weapon is sufficient to destroy an orb, however.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":500000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"artifact","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":7,"max":"7","per":"day","recovery":"1d4 + 3"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233441,"modifiedTime":1671220957064,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"1kihEfn9QppB34ee","name":"Maul +2","type":"weapon","img":"icons/weapons/maces/mace-spiked-wood-grey.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod +2","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"maul","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233442,"modifiedTime":1671220957069,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"1taRIMF9w7jpnonN","name":"Wand of Magic Missiles","type":"consumable","img":"icons/weapons/staves/staff-ornate-engraved-blue.webp","system":{"description":{"value":"This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile} spell from it. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":8000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":7,"max":"7","per":"charges","recovery":"1d6 + 1","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d4","force"],["3","force"]],"versatile":"1d4 +1"},"formula":"1d6 +1","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233442,"modifiedTime":1671220957074,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"23y8FvWKf9YLcnBL","name":"Chess Set","type":"tool","img":"icons/sundries/gaming/chess-knight-white.webp","system":{"description":{"value":"This item is a complete set of chess pieces and board. The board can also be used for variations of draughts and checkers.\nIf you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.5,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"game","baseItem":"","ability":"dex","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233443,"modifiedTime":1671220957078,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"296Zgo9RhltWShE1","name":"Stone of Good Luck (Luckstone)","type":"equipment","img":"icons/commodities/gems/gem-faceted-octagon-yellow.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile this polished agate is on your person, you gain a +1 bonus to ability checks and saving throws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":4200,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"trinket","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[{"label":"Stone of Good Luck","icon":"icons/commodities/gems/gem-faceted-octagon-yellow.webp","origin":"Compendium.dnd5e.items.296Zgo9RhltWShE1","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"TghMVbmFnR0t0AoP","changes":[{"key":"system.bonuses.abilities.save","mode":2,"value":"+1"},{"key":"system.bonuses.abilities.check","mode":2,"value":"+1"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233443,"modifiedTime":1690481250206,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"29e6gHwWKNLaRUoz","name":"Rope of Climbing","type":"consumable","img":"icons/sundries/survival/rope-wrapped-brown.webp","system":{"description":{"value":"Wondrous item\nThis 60-foot length of silk rope weighs 3 pounds and can hold up to 3,000 pounds. If you hold one end of the rope and use an action to speak the command word, the rope animates. As a bonus action, you can command the other end to move toward a destination you choose. That end moves 10 feet on your turn when you first command it and 10 feet on each of your turns until reaching its destination, up to its maximum length away, or until you tell it to stop. You can also tell the rope to fasten itself securely to an object or to unfasten itself, to knot or unknot itself, or to coil itself for carrying.\nIf you tell the rope to knot, large knots appear at 1- foot intervals along the rope. While knotted, the rope shortens to a 50-foot length and grants advantage on checks made to climb it.\nThe rope has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the rope drops to 0 hit points, it is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":2000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word. A bonus action to move one end 10 ft."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":20,"max":"20","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233444,"modifiedTime":1671220957086,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"2BYm8to5KldN8eYu","name":"Tome of Clear Thought","type":"consumable","img":"icons/sundries/books/book-backed-blue-gold.webp","system":{"description":{"value":"Wondrous item\nThis book contains memory and logic exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Intelligence score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":100000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"hour","cost":48,"condition":"The book must be completed in 6 days or less."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233445,"modifiedTime":1671220957091,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"2CQnAvn06bncXPBt","name":"Mace +3","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"mace","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233445,"modifiedTime":1671220957096,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"2Lkub0qIwucWEfp3","name":"Nine Lives Stealer Shortsword","type":"weapon","img":"icons/weapons/swords/sword-broad-crystal-paired.webp","system":{"description":{"value":"(Requires attunement)You gain a +2 bonus to attack and damage rolls made with this magic weapon.The sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.Foundry NoteThe 9 charges reflect a fully charged blade. Please adjust accordingly as required.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Critical hit on a creature of 100 hit points or less. Undead and constructs are immune."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":9,"max":"9","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 +@mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233446,"modifiedTime":1671220957102,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"2YNqk5zm9jDTvd7q","name":"Sphere of Annihilation","type":"consumable","img":"icons/magic/unholy/barrier-shield-glowing-pink.webp","system":{"description":{"value":"Wondrous item\nThis 2-foot-diameter black sphere is a hole in the multiverse, hovering in space and stabilized by a magical field surrounding it.\nThe sphere obliterates all matter it passes through and all matter that passes through it. Artifacts are the exception. Unless an artifact is susceptible to damage from a Sphere of Annihilation, it passes through the sphere unscathed. Anything else that touches the sphere but isn't wholly engulfed and obliterated by it takes 4d10 force damage.\nThe sphere is stationary until someone controls it. If you are within 60 feet of an uncontrolled sphere, you can use an action to make a DC 25 Intelligence (Arcana) check. On a success, the sphere levitates in one direction of your choice, up to a number of feet equal to 5 × your Intelligence modifier (minimum 5 feet). On a failure, the sphere moves 10 feet toward you. A creature whose space the sphere enters must succeed on a DC 13 Dexterity saving throw or be touched by it, taking 4d10 force damage.\nIf you attempt to control a sphere that is under another creature's control, you make an Intelligence (Arcana) check contested by the other creature's Intelligence (Arcana) check. The winner of the contest gains control of the sphere and can levitate it as normal.\nIf the sphere comes into contact with a planar portal, such as that created by the @Compendium[dnd5e.spells.XbwGq5kDJNvAxNXV]{Gate} spell, or an extradimensional space, such as that within a portable hole, the GM determines randomly what happens, using the @Compendium[dnd5e.tables.hHR0Zw75o9PXYl4c]{Sphere of Annihilation} table.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":15000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":"An uncontrolled sphere requires a DC 25 Intelligence (Arcana) check."},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10","force"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233446,"modifiedTime":1671220957107,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"2YbuclKfhDL0bU4u","name":"Chest","type":"backpack","img":"icons/containers/chest/chest-elm-steel-brown.webp","system":{"description":{"value":"A chest holds 12 cubic feet or 300 pounds of gear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":25,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":300,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233447,"modifiedTime":1671220957111,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"2YdfjN1PIIrSHZii","name":"War Pick","type":"weapon","img":"icons/weapons/axes/pickaxe-double-brown.webp","system":{"description":{"value":"A brutal curved spike mounted on the back of a sturdy haft - designed for puncturing armor with deadly force.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"warpick","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233447,"modifiedTime":1671220957117,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"2ksm2KXCY3vBHTAx","name":"Robe of Useful Items","type":"equipment","img":"icons/equipment/back/mantle-collared-black.webp","system":{"description":{"value":"Wondrous itemThis robe has cloth patches of various shapes and colors covering it. While wearing the robe, you can use an action to detach one of the patches, causing it to become the object or creature it represents. Once the last patch is removed, the robe becomes an ordinary garment.The robe has the following patches:x2 Dagger patchesx2 Bullseye lantern (filled and lit) patchesx2 Steel mirror patchesx2 10-foot pole patchesx2 Hempen rope (50 feet, coiled) patchesx2 Sack patchesIn addition, the robe has [[/r 4d4]] other patches. The GM chooses the patches or determines them randomly from the @Compendium[dnd5e.tables.CTGxcd51szehUGBn]{Robe of Useful Items} table.Foundry NoteIt is recommended to delete items here as necessary to track patches left.The price guide has been calculated at 5 x item for the maximum number of items possible. Please adjust as necessary to reflect the number of patches and the DM's world economy.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":140,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"4d4","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233448,"modifiedTime":1671220957124,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"2mvXGvDmHHhzbT04","name":"Horseshoes of a Zephyr","type":"consumable","img":"icons/tools/smithing/horseshoe-steel-blue.webp","system":{"description":{"value":"Wondrous item\nThese iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they allow the creature to move normally while floating 4 inches above the ground. This effect means the creature can cross or stand above non-solid or unstable surfaces, such as water or lava. The creature leaves no tracks and ignores difficult terrain. In addition, the creature can move at normal speed for up to 12 hours a day without suffering exhaustion from a forced march.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":8,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233449,"modifiedTime":1671220957143,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"2veAOEyfbDJuxR8Y","name":"Ring of Warmth","type":"equipment","img":"icons/equipment/finger/ring-cabochon-gold-orange.webp","system":{"description":{"value":"(Requires attunement)\nWhile wearing this ring, you have resistance to cold damage. In addition, you and everything you wear and carry are unharmed by temperatures as low as −50 degrees Fahrenheit.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":1000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233450,"modifiedTime":1671220957147,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"2wK9ImkAeG3Lzxa0","name":"Scimitar +3","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233450,"modifiedTime":1671220957151,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"2wxqnjpnPmkpPCC5","name":"Ring of Evasion","type":"equipment","img":"icons/equipment/finger/ring-eye-silver-green.webp","system":{"description":{"value":"(Requires attunement)\nThis ring has 3 charges, and it regains 1d3 expended charges daily at dawn. When you fail a Dexterity saving throw while wearing it, you can use your reaction to expend 1 of its charges to succeed on that saving throw instead.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233451,"modifiedTime":1671220957159,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"34YKlIJVVWLeBv7R","name":"Potion of Cold Resistance","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-labeled-blue.webp","system":{"description":{"value":"The potion is a plain indescriminate color and smells slightly foul.\nWhen you drink this potion, you gain resistance to Cold type damage for 1 hour.\nFor other potions of resistance, roll on the @Compendium[dnd5e.tables.JzLOE4IxcmxjLLuz]{Potion of Resistance} table.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233451,"modifiedTime":1671220957163,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3ALOhh6JNInIK4o7","name":"Necklace of Fireballs","type":"consumable","img":"icons/equipment/neck/pendant-faceted-red.webp","system":{"description":{"value":"Wondrous itemThis necklace has 1d6 + 3 beads hanging from it. You can use an action to detach a bead and throw it up to 60 feet away. When it reaches the end of its trajectory, the bead detonates as a 3rd-level @UUID[Compendium.dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball} spell (save DC 15).You can hurl multiple beads, or even the whole necklace, as one action. When you do so, increase the level of the fireball by 1 for each bead beyond the first.Foundry NoteThe 9 charges represent the maximum number of beads possible to find; please adjust as required. The Other Formula button can be used to roll the additional damage for extra beads thrown.Additionally, here is a price guide depending on the number of beads still remaining. These prices are a guide only and should be adjusted accordingly to reflect the Dungeon Master's world:Number of BeadsPrice (gp)830,720715,360676805384041600396024801300","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.01,"price":{"value":61440,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"radius"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":9,"max":"9","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d6","fire"]],"versatile":""},"formula":"1d6","save":{"ability":"dex","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233452,"modifiedTime":1671220957173,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3FNyS6DeCBZzFbqU","name":"Vorpal Greatsword","type":"weapon","img":"icons/skills/melee/strike-sword-steel-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":24000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod +3","slashing"]],"versatile":""},"formula":"6d8","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233452,"modifiedTime":1671220957186,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3OXueEpvDDCVfGFA","name":"Fine Clothes","type":"equipment","img":"icons/equipment/back/cloak-heavy-fur-blue.webp","system":{"description":{"value":"Set of clothes designed specifically to be expensive and show it.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233453,"modifiedTime":1671220957197,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3Q6rw9kAMf6F1SW5","name":"Hand Crossbow +2","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"handcrossbow","properties":{"amm":true,"lgt":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233453,"modifiedTime":1671220957206,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Gauntlets of Ogre Power","type":"equipment","img":"icons/magic/unholy/strike-hand-glow-pink.webp","system":{"description":{"value":"Wondrous item\nYour Strength score is 19 while you wear these gauntlets. They have no effect on you if your Strength is already 19 or higher.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":0},"effects":[{"label":"Gauntlets of Ogre Power","icon":"icons/magic/unholy/strike-hand-glow-pink.webp","origin":"Compendium.dnd5e.items.3TWT5bv3z5zGUZCe","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"m7FoXVGKT7C9X7aq","changes":[{"key":"system.abilities.str.value","mode":4,"value":"19","priority":null}],"tint":null,"transfer":true,"flags":{},"sort":0}],"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233454,"modifiedTime":1691500120771,"lastModifiedBy":"dnd5ebuilder0000"},"folder":null,"sort":0,"_id":"3TWT5bv3z5zGUZCe"} -{"_id":"3X7vdOjnCSpi40yn","name":"Ring of Fire Resistance","type":"equipment","img":"icons/equipment/finger/ring-cabochon-gold-orange.webp","system":{"description":{"value":"(Requires attunement)\nThis ring has been inlaid with a garnet stone that seems to glow when it catches the light.\nYou have resistance to fire damage while wearing this ring.\nFor other rings of resistance, roll on the @Compendium[dnd5e.tables.MdTxWyYVhTIgtNcG]{Ring of Resistance} table","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233454,"modifiedTime":1671220957219,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3YH1o1Wa4gcdN3fh","name":"Pike +3","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-stone-worn.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":18,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"pike","properties":{"hvy":true,"rch":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233455,"modifiedTime":1671220957224,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3YSUIp4eFo26YxJr","name":"Ball Bearings","type":"consumable","img":"icons/commodities/gems/pearl-rock.webp","system":{"description":{"value":"As an action, you can spill these 1,000 tiny metal balls from their pouch to cover a level area 10 feet square. A creature moving across the covered area must succeed on a DC 10 Dexterity saving throw or fall prone. A creature moving through the area at half speed doesn't need to make the saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1000,"weight":0.002,"price":{"value":0.1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":10,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233456,"modifiedTime":1671220957228,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3b0RvGi0TnTYpIxn","name":"Stick of Incense","type":"loot","img":"icons/commodities/wood/bamboo-brown.webp","system":{"description":{"value":"When blocks of incense cannot be used or a cheaper alternative is required, people often use these to perfume the air, whether for pleasurable or religious purposes.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233456,"modifiedTime":1671220957232,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3c7JXOzsv55gqJS5","name":"Arrow","type":"consumable","img":"icons/weapons/ammunition/arrow-head-war.webp","system":{"description":{"value":"Standard ammunition used for bows of all varieties. These mundane arrows are made of smooth wooden shafts with goose feather fletching and hammer metal bodkins.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.05,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233457,"modifiedTime":1671220957246,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3cymOVja8jXbzrdT","name":"Longbow","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"A thick shaft of laminated wood is bowed by a taut string capable of launching deadly arrows at long distances.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"longbow","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233458,"modifiedTime":1671220957251,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3gynWO9sN4OLGMWD","name":"Sling","type":"weapon","img":"icons/weapons/slings/slingshot-wood.webp","system":{"description":{"value":"A flexible lash of leather affixed to a wooden handle which is capable of flinging rocks or metal bullets with deadly velocity.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"sling","properties":{"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233458,"modifiedTime":1671220957255,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3h3ZU6qmQs18FfkA","name":"Mithral Chain Shirt","type":"equipment","img":"icons/equipment/chest/breastplate-scale-grey.webp","system":{"description":{"value":"Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":20,"price":{"value":850,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainshirt","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233459,"modifiedTime":1690538796181,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3nVvaHVfHsgwGlkL","name":"Small Knife","type":"loot","img":"icons/weapons/daggers/knife-green.webp","system":{"description":{"value":"A blunt knife used by the scholarly to open letters and correspondence.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.5,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233459,"modifiedTime":1671220957266,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3rCO8MTIdPGSW6IJ","name":"Dart","type":"weapon","img":"icons/weapons/ammunition/arrows-war-red.webp","system":{"description":{"value":"A small thrown implement crafted with a short wooden shaft and crossed feathres with a sharp wooden or metal tip. Darts can be thrown with sufficient force to puncture the skin.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.25,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"dart","properties":{"fin":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233460,"modifiedTime":1671220957269,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3uEyuCfnAzGkwAn5","name":"Sealing Wax","type":"loot","img":"icons/sundries/lights/candle-unlit-red.webp","system":{"description":{"value":"A wax material of a seal which, after melting, hardens quickly forming a bond that is difficult to separate without noticeable tampering.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233460,"modifiedTime":1671220957282,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"419eNv7xp2p7Xlo5","name":"Blanket","type":"loot","img":"icons/sundries/survival/bedroll-pink.webp","system":{"description":{"value":"A blanket to keep you warm at night.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233461,"modifiedTime":1671220957286,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"41kYCmKq0PbGVKaM","name":"Figurine of Wondrous Power (Ivory Goat of Travail)","type":"consumable","img":"icons/commodities/bones/horn-worn-white.webp","system":{"description":{"value":"Wondrous item\nA figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\nIvory Goats. These ivory statuettes of goats are always created in sets of three. Each goat looks unique and functions differently from the others.\nThe Goat of Travail becomes a @Compendium[dnd5e.monsters.rjqk7ToMD8sGr3n4]{Giant Goat} for up to 3 hours. Once it has been used, it can't be used again until 30 days have passed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":400,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"3","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233461,"modifiedTime":1671220957294,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"44XNWmMGnwXn7bNW","name":"Pearl of Power","type":"consumable","img":"icons/commodities/gems/pearl-natural.webp","system":{"description":{"value":"Wondrous item, (requires attunement by a spellcaster)\nWhile this pearl is on your person, you can use an action to speak its command word and regain one expended spell slot. If the expended slot was of 4th level or higher, the new slot is 3rd level. Once you use the pearl, it can't be used again until the next dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233462,"modifiedTime":1671220957306,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"466j8hy4AiENMHVQ","name":"Plate Armor +3","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":65,"price":{"value":25500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":21,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233462,"modifiedTime":1690539445270,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"46ikeR4RrSim6DsN","name":"Talisman of the Sphere","type":"consumable","img":"icons/magic/unholy/orb-beam-pink.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhen you make an Intelligence (Arcana) check to control a Sphere of Annihilation while you are holding this talisman, you double your proficiency bonus on the check. In addition, when you start your turn with control over a Sphere of Annihilation, you can use an action to levitate it 10 feet plus a number of additional feet equal to 10 × your Intelligence modifier.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":20000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"int","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d20 + @mod + @attributes.prof + @attributes.prof",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233463,"modifiedTime":1671220957324,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Exotic Saddle","type":"equipment","img":"icons/equipment/shoulder/pauldron-segmented-red.webp","system":{"description":{"value":"A type of seat that is fastened to a mount's back, designed to support the rider and affix part of the mount's tack such as stirrups.An exotic saddle is required for riding any aquatic or flying mount.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":40,"price":{"value":60,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"4932CLHvjZYxOm4g","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233463,"modifiedTime":1671220957346,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"4MeSq8KcF7KK7emF","name":"Vicious Light Hammer","type":"weapon","img":"icons/weapons/hammers/hammer-war-spiked.webp","system":{"description":{"value":"This sturdy hammer is small enough to be nimbly wielded or used in combination with another weapon.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"lighthammer","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233464,"modifiedTime":1671220957351,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"4MtQKPn9qMWCFjDA","name":"Quiver","type":"backpack","img":"icons/containers/ammunition/arrows-quiver-black.webp","system":{"description":{"value":"A quiver can hold up to 20 arrows.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":1,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233465,"modifiedTime":1671220957354,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"4ZiJsDTRA1GgcWKP","name":"Potion of Stone Giant Strength","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-green.webp","system":{"description":{"value":"This potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type.\nWhen you drink this potion, your Strength score changes to 23 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":1200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233465,"modifiedTime":1671220957361,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"4sR5HOah6KwVPHOb","name":"Wand of Web","type":"consumable","img":"icons/weapons/staves/staff-simple-green.webp","system":{"description":{"value":"(Requires attunement by a spellcaster)\nThis wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the @Compendium[dnd5e.spells.UJJu9c2UvCzVljiP]{Web} spell (save DC 15) from it.\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":7,"max":"7","per":"charges","recovery":"1d6 + 1","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":"1d4 +1"},"formula":"1d6 +1","save":{"ability":"dex","dc":15,"scaling":"flat"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233466,"modifiedTime":1671220957367,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"50N8zf58FR4JWR05","name":"Amulet of Proof against Detection and Location","type":"equipment","img":"icons/equipment/neck/pendant-faceted-blue.webp","system":{"description":{"value":"\nWondrous Item (requires attunement)\n \nWhile wearing this amulet, you are hidden from divination magic. You can't be targeted by such magic or perceived through magical scrying sensors.\n","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":20000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233468,"modifiedTime":1671220957371,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"59pjg8FGM4GG4Fdd","name":"Dagger +1","type":"weapon","img":"icons/weapons/daggers/dagger-jeweled-purple.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"dagger","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233468,"modifiedTime":1671220957375,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5Jz5w7XJxgtlsx6K","name":"Vicious Dagger","type":"weapon","img":"icons/weapons/daggers/dagger-jeweled-purple.webp","system":{"description":{"value":"A short metal blade mounted to a small hilt and crossguard. The dagger makes an effective side armament for hardened warriors or a hidden blade for assassins and thieves.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"dagger","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233469,"modifiedTime":1671220957385,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5KiRtMMSTnJmMtBr","name":"Crystal Ball of Telepathy","type":"consumable","img":"icons/commodities/gems/pearl-swirl-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThe crystal ball is about 6 inches in diameter. While touching it, you can cast the @Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying} spell (save DC 17) with it.\nWhile Scrying with the Crystal Ball, you can communicate telepathically with creatures you can see within 30 feet of the spell's sensor. You can also use an action to cast the @Compendium[dnd5e.spells.zMAWdyc8UVb37BK4]{Suggestion} spell (save DC 17) through the sensor on one of those creatures. You don't need to concentrate on this Suggestion to maintain it during its duration, but it ends if Scrying ends.\nOnce used, the Suggestion power of the Crystal Ball can't be used again until the next dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":60000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233469,"modifiedTime":1671220957393,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5Rxo4K9cgpwgW9vZ","name":"Wand of Enemy Detection","type":"consumable","img":"icons/weapons/staves/staff-simple-green.webp","system":{"description":{"value":"(Requires attunement)\nThis wand has 7 charges. While holding it, you can use an action and expend 1 charge to speak its command word. For the next minute, you know the direction of the nearest creature hostile to you within 60 feet, but not its distance from you. The wand can sense the presence of hostile creatures that are ethereal, invisible, disguised, or hidden, as well as those in plain sight. The effect ends if you stop holding the wand.\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":4000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":7,"max":"7","per":"charges","recovery":"1d6 + 1","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d6 +1","save":{"ability":"wis","dc":null,"scaling":"flat"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233470,"modifiedTime":1671220957400,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5SorTMl8NKDO9Yge","name":"Ring of Poison Resistance","type":"equipment","img":"icons/equipment/finger/ring-faceted-gold-purple.webp","system":{"description":{"value":"(Requires attunement)\nThis ring has been inlaid with an amethyst stone that glitters when it catches the light.\nYou have resistance to poison damage while wearing this ring.\nFor other rings of resistance, roll on the @Compendium[dnd5e.tables.MdTxWyYVhTIgtNcG]{Ring of Resistance} table","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233470,"modifiedTime":1671220957412,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5fJn3LQ2eQG7luEO","name":"Chalk","type":"loot","img":"icons/commodities/bones/bone-fragments-grey.webp","system":{"description":{"value":"It is soft white porous sedimentary acarbonate rock, a form of limestone composed of the mineral calcite. Can be used to draw shapes. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233471,"modifiedTime":1671220957422,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5m9ErO9In8Uc5yyf","name":"Potion of Superior Healing","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-red.webp","system":{"description":{"value":"The potion's red liquid glimmers when agitated.\nYou regain 8d4+8 hit points when you drink this potion.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":450,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d4 + 8","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233471,"modifiedTime":1671220957428,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5mIeX824uMklU3xq","name":"Map or Scroll Case","type":"backpack","img":"icons/containers/bags/case-leather-tan.webp","system":{"description":{"value":"This cylindrical leather case can hold up to ten rolled-up sheets of paper or five rolled-up sheets of parchment.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"items","value":10,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233472,"modifiedTime":1671220957431,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"6067acDZGv7KNOkP","name":"Elven Chain","type":"equipment","img":"icons/equipment/back/mantle-collared-green.webp","system":{"description":{"value":"You gain a +1 bonus to AC while you wear this armor. You are considered proficient with this armor even if you lack proficiency with medium armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":20,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainshirt","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233472,"modifiedTime":1671220957447,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"62EaozKvcA0aSy2q","name":"Spear +3","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","piercing"]],"versatile":"1d8 + @mod +3"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"spear","properties":{"thr":true,"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233473,"modifiedTime":1671220957451,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"63nb14yQRJMc4bIn","name":"Philter of Love","type":"consumable","img":"icons/consumables/potions/potion-flask-corked-labeled-pink.webp","system":{"description":{"value":"This potion's rose-hued, effervescent liquid contains one easy-to-miss bubble shaped like a heart.\nThe next time you see a creature within 10 minutes after drinking this philter, you become charmed by that creature for 1 hour. If the creature is of a species and gender you are normally attracted to, you regard it as your true love while you are charmed.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":90,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233474,"modifiedTime":1671220957464,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"66UkbfH0PVwo4HgA","name":"Robe of Stars","type":"equipment","img":"icons/magic/water/orb-ice-web.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThis black or dark blue robe is embroidered with small white or silver stars. You gain a +1 bonus to saving throws while you wear it.\nSix stars, located on the robe's upper front portion, are particularly large. While wearing this robe, you can use an action to pull off one of the stars and use it to cast @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile} as a 5th-level spell.\nDaily at dusk, 1d6 removed stars reappear on the robe.\nWhile you wear the robe, you can use an action to enter the Astral Plane along with everything you are wearing and carrying. You remain there until you use an action to return to the plane you were on. You reappear in the last space you occupied, or if that space is occupied, the nearest unoccupied space.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":60000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":6,"max":"6","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["7d4","force"],["7","force"]],"versatile":""},"formula":"1d6","save":{"ability":"wis","dc":15,"scaling":"flat"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233474,"modifiedTime":1671220957469,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"698gLyJ4JKVVMF53","name":"Padded Armor of Resistance","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":8,"price":{"value":6005,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"padded","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233475,"modifiedTime":1671220957475,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"69Dpr25pf4BjkHKb","name":"Drum","type":"tool","img":"icons/tools/instruments/drum-brown-red.webp","system":{"description":{"value":"A drum, of any variety, to evoke awe, wonder, or fear in your audience.\nIf you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":6,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"music","baseItem":"drum","ability":"cha","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233476,"modifiedTime":1671220957479,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"6I5lt8KheTsAE4Zr","name":"Sling +1","type":"weapon","img":"icons/weapons/slings/slingshot-wood.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +1","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"sling","properties":{"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233476,"modifiedTime":1671220957483,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"6JbrdSg5YYbs9ANm","name":"Vicious Maul","type":"weapon","img":"icons/weapons/maces/mace-spiked-wood-grey.webp","system":{"description":{"value":"This heavy two-handed mace crushes metal and bone with thunderous force.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"maul","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233477,"modifiedTime":1671220957487,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"6MDTnMG4Hcw7qZsy","name":"Ioun Stone of Sustenance","type":"equipment","img":"icons/commodities/stone/geode-raw-brown.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Sustenance. You don't need to eat or drink while this clear spindle orbits your head.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":1000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233477,"modifiedTime":1671220957492,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"6OIw31CDF6mAwFnd","name":"Bolt of Slaying","type":"consumable","img":"icons/skills/ranged/arrow-flying-broadhead-metal.webp","system":{"description":{"value":"A Bolt of Slaying is a magic weapon meant to slay a particular kind of creature. Some are more focused than others; for example, there are both Bolts of Dragon Slaying and Bolts of Blue Dragon Slaying. If a creature belonging to the type, race, or group associated with a bolt of slaying takes damage from the bolt, the creature must make a DC 17 Constitution saving throw, taking an extra 6d10 piercing damage on a failed save, or half as much extra damage on a successful one.\nOnce a Bolt of Slaying deals its extra damage to a creature, it becomes a nonmagical bolt.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.075,"price":{"value":600,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"6d10","save":{"ability":"con","dc":17,"scaling":"flat"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233478,"modifiedTime":1671220957496,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"6ai1pEde3iQX30Fr","name":"Cubic Gate","type":"consumable","img":"icons/commodities/treasure/token-engraved-blue.webp","system":{"description":{"value":"Wondrous item\nThis cube is 3 inches across and radiates palpable magical energy. The six sides of the cube are each keyed to a different plane of existence, one of which is the Material Plane. The other sides are linked to planes determined by the GM.\nYou can use an action to press one side of the cube to cast the @Compendium[dnd5e.spells.XbwGq5kDJNvAxNXV]{Gate} spell with it, opening a portal to the plane keyed to that side. Alternatively, if you use an action to press one side twice, you can cast the @Compendium[dnd5e.spells.J6Jpw5XzB5aTeqnz]{Plane Shift} spell (save DC 17) with the cube and transport the targets to the plane keyed to that side.\nThe cube has 3 charges. Each use of the cube expends 1 charge. The cube regains 1d3 expended charges daily at dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":40000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":3,"max":"3","per":"day","recovery":"1d3","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233478,"modifiedTime":1671220957500,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"6n8J07mFo8xs11vS","name":"Dancing Rapier","type":"weapon","img":"icons/skills/melee/maneuver-greatsword-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":4,"max":"4","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":true,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233479,"modifiedTime":1671220957506,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"6ndqUhOySYVVQ5on","name":"Halberd +2","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +2","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"halberd","properties":{"hvy":true,"two":true,"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233479,"modifiedTime":1671220957516,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"6pjaQzbtxQTuQ4RW","name":"Rod of Absorption","type":"consumable","img":"icons/magic/fire/barrier-wall-explosion-orange.webp","system":{"description":{"value":"(Requires attunement)While holding this rod, you can use your reaction to absorb a spell that is targeting only you and not with an area of effect. The absorbed spell's effect is canceled, and the spell's energy not the spell itself - is stored in the rod. The energy has the same level as the spell when it was cast. The rod can absorb and store up to 50 levels of energy over the course of its existence. Once the rod absorbs 50 levels of energy, it can't absorb more. If you are targeted by a spell that the rod can't store, the rod has no effect on that spell.When you become attuned to the rod, you know how many levels of energy the rod has absorbed over the course of its existence, and how many levels of spell energy it currently has stored.If you are a spellcaster holding the rod, you can convert energy stored in it into spell slots to cast spells you have prepared or know. You can create spell slots only of a level equal to or lower than your own spell slots, up to a maximum of 5th level. You use the stored levels in place of your slots, but otherwise cast the spell as normal. For example, you can use 3 levels stored in the rod as a 3rd-level spell slot.A newly found rod has 1d10 levels of spell energy stored in it already. A rod that can no longer absorb spell energy and has no energy remaining becomes nonmagical.Foundry NoteThe rod currently has the maximum 10 charges for a newly found rod. Adjust as required.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":50000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"reaction","cost":1,"condition":"Spell slots created can be no higher than 5th level."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":10,"max":"50","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"rod"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233480,"modifiedTime":1671220957521,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"6rocoBx5jdzG1QQH","name":"Healer's Kit","type":"consumable","img":"icons/containers/bags/sack-simple-green.webp","system":{"description":{"value":"This kit is a leather pouch containing bandages, salves, and splints. The kit has ten uses. As an action, you can expend one use of the kit to stabilize a creature that has 0 hit points, without needing to make a Wisdom (Medicine) check.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":10,"max":"10","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233481,"modifiedTime":1671220957525,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7FEcfqz1piPHN1tV","name":"Ioun Stone of Greater Absorption","type":"equipment","img":"icons/commodities/stone/ore-pile-green.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Greater Absorption. While this marbled lavender and green ellipsoid orbits your head, you can use your reaction to cancel a spell of 8th level or lower cast by a creature you can see and targeting only you.\nOnce the stone has canceled 50 levels of spells, it burns out and turns dull gray, losing its magic. If you are targeted by a spell whose level is higher than the number of spell levels the stone has left, the stone can't cancel it.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":31000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":50,"max":"50","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233481,"modifiedTime":1671220957529,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7FLs8qIGdOFnz9oL","name":"Lantern of Revealing","type":"consumable","img":"icons/sundries/lights/lantern-iron-yellow.webp","system":{"description":{"value":"Wondrous item\nWhile lit, this hooded lantern burns for 6 hours on 1 pint of oil, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. Invisible creatures and objects are visible as long as they are in the lantern's bright light. You can use an action to lower the hood, reducing the light to dim light in a 5-foot radius.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":5000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"6","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":60,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233482,"modifiedTime":1671220957546,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7Yqbqg5EtVW16wfT","name":"Barrel","type":"backpack","img":"icons/containers/barrels/barrel-oak-banded-tan.webp","system":{"description":{"value":"A barrel can hold 40 gallons of liquid or 4 cubic feet of solids.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":70,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":334,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233482,"modifiedTime":1671220957559,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7i4s9msZWpAw4Ynv","name":"Dagger of Venom","type":"weapon","img":"icons/skills/melee/strike-dagger-poison-dripping-green.webp","system":{"description":{"value":"You gain a +1 bonus to attack and damage rolls made with this magic weapon.\nYou can use an action to cause thick, black poison to coat the blade. The poison remains for 1 minute or until an attack using this weapon hits a creature. That creature must succeed on a DC 15 Constitution saving throw or take 2d10 poison damage and become poisoned for 1 minute. The dagger can't be used this way again until the next dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +1","piercing"]],"versatile":""},"formula":"2d10","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"dagger","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233483,"modifiedTime":1671220957563,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7jEKkA9qbwJ3IuCb","name":"Wand of Binding","type":"consumable","img":"icons/weapons/staves/staff-ornate-engraved-blue.webp","system":{"description":{"value":"(Requires attunement by a spellcaster)\nThis wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.\nSpells. While holding the wand, you can use an action to expend some of its charges to cast one of the following spells (save DC 17): @Compendium[dnd5e.spells.l9Ju5KE7bbn3WpTm]{Hold Monster} (5 charges) or @Compendium[dnd5e.spells.3Lo9boi7P2ro6QV4]{Hold Person} (2 charges).\nAssisted Escape. While holding the wand, you can use your reaction to expend 1 charge and gain advantage on a saving throw you make to avoid being paralyzed or restrained, or you can expend 1 charge and gain advantage on any check you make to escape a grapple.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":10000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":7,"max":"7","per":"charges","recovery":"1d6 + 1","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d6 +1","save":{"ability":"wis","dc":17,"scaling":"flat"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233484,"modifiedTime":1671220957573,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7kVZo4DLBq22406E","name":"Quarterstaff +2","type":"weapon","img":"icons/weapons/staves/staff-simple-gold.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +2","bludgeoning"]],"versatile":"1d8 + @mod +2"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"quarterstaff","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233484,"modifiedTime":1671220957582,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7vqs5AqI4VCmuszx","name":"Handy Haversack","type":"backpack","img":"icons/containers/bags/pack-simple-leather.webp","system":{"description":{"value":"Wondrous item\nThis backpack has a central pouch and two side pouches, each of which is an extradimensional space. Each side pouch can hold up to 20 pounds of material, not exceeding a volume of 2 cubic feet. The large central pouch can hold up to 8 cubic feet or 80 pounds of material. The backpack always weighs 5 pounds, regardless of its contents.\nPlacing an object in the haversack follows the normal rules for interacting with objects. Retrieving an item from the haversack requires you to use an action. When you reach into the haversack for a specific item, the item is always magically on top.\nThe haversack has a few limitations. If it is overloaded, or if a sharp object pierces it or tears it, the haversack ruptures and is destroyed. If the haversack is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. If the haversack is turned inside out, its contents spill forth, unharmed, and the haversack must be put right before it can be used again. If a breathing creature is placed within the haversack, the creature can survive for up to 10 minutes, after which time it begins to suffocate.\nPlacing the haversack inside an extradimensional space created by a bag of holding, portable hole, 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 can't be reopened.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"capacity":{"type":"weight","value":120,"weightless":true},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233485,"modifiedTime":1671220957587,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7wY0389wscheFkIa","name":"Scimitar of Speed","type":"weapon","img":"icons/skills/melee/spear-tips-triple-orange.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +2 bonus to attack and damage rolls made with this magic weapon. In addition, you can make one attack with it as a bonus action on each of your turns.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 +@mod +2","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233485,"modifiedTime":1671220957597,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7ztvHyYJCcOOAWmR","name":"Censer","type":"loot","img":"icons/containers/kitchenware/goblet-worn-clay-white.webp","system":{"description":{"value":"Usually used in conjunction with blocks of incense to perfume the air.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233486,"modifiedTime":1671220957601,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"84z9mVy1mCipUWEY","name":"Breastplate +1","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":20,"price":{"value":1900,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"breastplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233486,"modifiedTime":1690538958775,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8ABk0XV76Hzq8Qul","name":"Amulet of the Planes","type":"equipment","img":"icons/equipment/neck/pendant-faceted-green.webp","system":{"description":{"value":"Wondrous Item (requires attunement)\n \nWhile wearing this Amulet, you can use an action to name a location that you are familiar with on another plane of existence. Then make a DC 15 Intelligence check. On a successful check, you cast the @Compendium[dnd5e.spells.J6Jpw5XzB5aTeqnz]{Plane Shift} spell. On a failure, you and each creature and object within 15 feet of you travel to a random destination. Roll a d100. On a 1-60, you travel to a random location on the plane you named. On a 61-100, you travel to a randomly determined plane of existence.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":160000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"light","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233487,"modifiedTime":1671220957616,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8CaODbNQtxHGuVjn","name":"Figurine of Wondrous Power (Ivory Goat of Terror)","type":"consumable","img":"icons/commodities/bones/horn-curved-worn-brown.webp","system":{"description":{"value":"Wondrous item\nA figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\nIvory Goats. These ivory statuettes of goats are always created in sets of three. Each goat looks unique and functions differently from the others.\nThe Goat of Terror becomes a @Compendium[dnd5e.monsters.rjqk7ToMD8sGr3n4]{Giant Goat} for up to 3 hours. The goat can't attack, but you can remove its horns and use them as weapons. One horn becomes a @Compendium[dnd5e.items.l88FXiodYofrJT8a]{Lance +1}, and the other becomes a @Compendium[dnd5e.items.bcv7J9culilK68zp]{Longsword +2}. Removing a horn requires an action, and the weapons disappear and the horns return when the goat reverts to figurine form.\nIn addition, the goat radiates a 30-foot-radius aura of terror while you are riding it. Any creature hostile to you that starts its turn in the aura must succeed on a DC 15 Wisdom saving throw or be frightened of the goat for 1 minute, or until the goat reverts to figurine form. The frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once it successfully saves against the effect, a creature is immune to the goat's aura for the next 24 hours.\nOnce the figurine has been used, it can't be used again until 15 days have passed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":20000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"3","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233487,"modifiedTime":1671220957624,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8GCEodUsTEEpBlO6","name":"Robes","type":"equipment","img":"icons/equipment/back/mantle-collared-black.webp","system":{"description":{"value":"Simple or ceremonial wear, often used by priests and other religious figures.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233488,"modifiedTime":1671220957629,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8LZBOY5USLZ4ngDq","name":"Greatsword +2","type":"weapon","img":"icons/weapons/swords/greatsword-guard-gem-blue.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod +2","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233488,"modifiedTime":1671220957632,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8MNDhKb1Q87QszOJ","name":"Longsword of Sharpness","type":"weapon","img":"icons/skills/wounds/bone-broken-knee-beam.webp","system":{"description":{"value":"(Requires attunement)\nWhen you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10-foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":1700,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":20,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"4d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233489,"modifiedTime":1671220957649,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8MPnSrvEeZhPhtTi","name":"Potion of Lightning Resistance","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-yellow.webp","system":{"description":{"value":"The potion is a plain indescriminate color and smells slightly foul.\nWhen you drink this potion, you gain resistance to Lightning type damage for 1 hour.\nFor other potions of resistance, roll on the @Compendium[dnd5e.tables.JzLOE4IxcmxjLLuz]{Potion of Resistance} table.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233490,"modifiedTime":1671220957664,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8N1GqcdroUpmM9dS","name":"Warhammer +1","type":"weapon","img":"icons/weapons/hammers/hammer-drilling-spiked.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","bludgeoning"]],"versatile":"1d10 + @mod +1"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"warhammer","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233490,"modifiedTime":1671220957670,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8NS6MSOdXtUqD7Ib","name":"Carpenter's Tools","type":"tool","img":"icons/tools/hand/saw-steel-grey.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in carpentry.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":8,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"carpenter","ability":"str","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233491,"modifiedTime":1671220957674,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8PI1EL8xHLq4tXKr","name":"Ring of Spell Turning","type":"equipment","img":"icons/equipment/finger/ring-band-engraved-scrolls-silver.webp","system":{"description":{"value":"(Requires attunement)\nWhile wearing this ring, you have advantage on saving throws against any spell that targets only you (not in an area of effect). In addition, if you roll a 20 for the save and the spell is 7th level or lower, the spell has no effect on you and instead targets the caster, using the slot level, spell save DC, attack bonus, and spellcasting ability of the caster.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":30000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233492,"modifiedTime":1671220957678,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8RXjiddJ6VGyE7vB","name":"Common Clothes","type":"equipment","img":"icons/equipment/chest/shirt-collared-brown.webp","system":{"description":{"value":"Clothes worn by most commoners.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233492,"modifiedTime":1671220957682,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8W6ULfSqzuHh6Peg","name":"Longbow +3","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"longbow","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233493,"modifiedTime":1671220957688,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8dfhaa1g3VDjhtm3","name":"Eyes of Charming","type":"equipment","img":"icons/creatures/eyes/human-single-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThese crystal lenses fit over the eyes. They have 3 charges. While wearing them, you can expend 1 charge as an action to cast the @Compendium[dnd5e.spells.eS7XnnApoxRxYXPs]{Charm Person} spell (save DC 13) on a humanoid within 30 feet of you, provided that you and the target can see each other. The lenses regain all expended charges daily at dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.01,"price":{"value":3000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Must have eye contact with the target humanoid."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233493,"modifiedTime":1671220957692,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Bit and Bridle","type":"equipment","img":"icons/environment/creatures/horse-brown.webp","system":{"description":{"value":"A component of a horse's tack that is worn on its head and connected to the reins. It consists of several adjustable leather straps, connecting metal rings, and a mouthpiece called the 'bit' or 'mullen', made of rope, bone, horn, or other hard substance such as bronze, steel, nickel, or wood.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"8l7M3zeqrU2vkA5h","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233494,"modifiedTime":1671220957703,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8tvhh5wqG5FRh3Sf","name":"Caltrops","type":"consumable","img":"icons/weapons/thrown/bomb-spiked-purple.webp","system":{"description":{"value":"As an action, you can spread a single bag of caltrops to cover a 5-foot-square area. Any creature that enters the area must succeed on a DC 15 Dexterity saving throw or stop moving and take 1 piercing damage. Until the creature regains at least 1 hit point, its walking speed is reduced by 10 feet. A creature moving through the area at half speed doesn't need to make the saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"square"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233494,"modifiedTime":1671220957707,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8wXB18E0oPAYFkqc","name":"Heavy Crossbow +2","type":"weapon","img":"icons/weapons/crossbows/crossbow-blue.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":18,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":100,"long":400,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"heavycrossbow","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233495,"modifiedTime":1671220957711,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"902yxeFDwavpm6cv","name":"Shortsword of Life Stealing","type":"weapon","img":"icons/creatures/claws/claw-curved-poison-purple.webp","system":{"description":{"value":"(Requires attunement)\nWhen you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Must roll a 20 and the target cannot be undead."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 +@mod","piercing"]],"versatile":""},"formula":"3d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233496,"modifiedTime":1671220957715,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9G9QGSPgpZDSsm37","name":"Sledgehammer","type":"loot","img":"icons/tools/smithing/hammer-sledge-steel-grey.webp","system":{"description":{"value":"A tool with a large, flat, often metal head, attached to a long handle. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233496,"modifiedTime":1671220957719,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9GSfMg0VOA2b4uFN","name":"Spell Scroll 1st Level","type":"consumable","img":"icons/sundries/scrolls/scroll-bound-orange-tan.webp","system":{"description":{"value":"A spell scroll bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can read the scroll and cast its spell without providing any material components. Otherwise, the scroll is unintelligible. Casting the spell by reading the scroll requires the spell's normal casting time. Once the spell is cast, the words on the scroll fade, and it crumbles to dust. If the casting is interrupted, the scroll is not lost.\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 11 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity.\nSave DC: 13Attack Bonus: +5.\nA wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 11 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":60,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"common","identified":true,"activation":{"type":"action","cost":1,"condition":"Spell must be on the caster's spell list."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"5","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":13,"scaling":"flat"},"consumableType":"scroll"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233496,"modifiedTime":1671220957723,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9Ifr8fGvJ1bArzOW","name":"Bag of Tricks (Grey)","type":"consumable","img":"icons/containers/bags/coinpouch-leather-grey.webp","system":{"description":{"value":"Wondrous item\nThis ordinary bag, made from gray cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, fuzzy object. The bag weighs 1/2 pound.\nYou can use an action to pull the fuzzy object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling on the @Compendium[dnd5e.tables.VPGP621PW7k03YfB]{Grey Bag of Tricks} table.\nThe creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature.\nOnce three fuzzy objects have been pulled from the bag, the bag can't be used again until the next dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.5,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"space"},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233497,"modifiedTime":1671220957726,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9Mdes2tKt0cqsNTw","name":"Nine Lives Stealer Scimitar","type":"weapon","img":"icons/weapons/swords/sword-broad-crystal-paired.webp","system":{"description":{"value":"(Requires attunement)You gain a +2 bonus to attack and damage rolls made with this magic weapon.The sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.Foundry NoteThe 9 charges reflect a fully charged blade. Please adjust accordingly as required.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Critical hit on a creature of 100 hit points or less. Undead and constructs are immune."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":9,"max":"9","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 +@mod +2","slashing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233498,"modifiedTime":1671220957731,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9UvWQTY5yIgkJmmb","name":"Circlet of Blasting","type":"equipment","img":"icons/equipment/finger/ring-cabochon-notched-gold-green.webp","system":{"description":{"value":"Wondrous item\nWhile wearing this circlet, you can use an action to cast the @Compendium[dnd5e.spells.7u2obDvuvtZBkTfq]{Scorching Ray} spell with it. When you make the spell's attacks, you do so with an attack bonus of +5. The circlet can't be used this way again until the next dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"5","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233498,"modifiedTime":1671220957735,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9bWTRRDym06PzSAf","name":"Pouch","type":"backpack","img":"icons/containers/bags/coinpouch-simple-tan.webp","system":{"description":{"value":"A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":6,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233499,"modifiedTime":1671220957750,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9cIlRtKDtDXQtElf","name":"Ring of Spell Storing","type":"equipment","img":"icons/equipment/finger/ring-cabochon-silver-gold-red.webp","system":{"description":{"value":"(Requires attunement)\nThis ring stores spells cast into it, holding them until the attuned wearer uses them. The ring can store up to 5 levels worth of spells at a time. When found, it contains 1d6 − 1 levels of stored spells chosen by the GM.\nAny creature can cast a spell of 1st through 5th level into the ring by touching the ring as the spell is cast. The spell has no effect, other than to be stored in the ring. If the ring can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.\nWhile wearing this ring, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the ring is no longer stored in it, freeing up space.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":24000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":5,"max":"5","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233499,"modifiedTime":1671220957754,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9eyZY9tL3fXD1Mbm","name":"Dust of Sneezing and Choking","type":"consumable","img":"icons/magic/water/bubbles-air-water-light.webp","system":{"description":{"value":"Wondrous item\nFound in a small container, this powder resembles very fine sand. It appears to be dust of disappearance, and an @Compendium[dnd5e.spells.3OZnNhunvRtPOQmH]{Identify} spell reveals it to be such. There is enough of it for one use.\nWhen you use an action to throw a handful of the dust into the air, you and each creature that needs to breathe within 30 feet of you must succeed on a DC 15 Constitution saving throw or become unable to breathe, while sneezing uncontrollably. A creature affected in this way is incapacitated and suffocating. As long as it is conscious, a creature can repeat the saving throw at the end of each of its turns, ending the effect on it on a success. The @Compendium[dnd5e.spells.F0GsG0SJzsIOacwV]{Lesser Restoration} spell can also end the effect on a creature.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":480,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233500,"modifiedTime":1671220957760,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9jMQEm99q1ttAV1Q","name":"Ioun Stone of Insight","type":"equipment","img":"icons/commodities/stone/ore-pile-teal.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Insight. Your Wisdom score increases by 2, to a maximum of 20, while this incandescent blue sphere orbits your head.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":3000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[{"label":"Ioun Stone of Insight","icon":"icons/commodities/stone/ore-pile-teal.webp","origin":"Compendium.dnd5e.items.9jMQEm99q1ttAV1Q","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"GDz8rS3R0TN0Pxhx","changes":[{"key":"system.abilities.wis.value","mode":2,"value":"+2"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233501,"modifiedTime":1690480798346,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9kfMsSweOBui0SC4","name":"Rod of Security","type":"consumable","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"While holding this rod, you can use an action to activate it. The rod then instantly transports you and up to 199 other willing creatures you can see to a paradise that exists in an extraplanar space. You choose the form that the paradise takes. It could be a tranquil garden, lovely glade, cheery tavern, immense palace, tropical island, fantastic carnival, or whatever else you can imagine. Regardless of its nature, the paradise contains enough water and food to sustain its visitors. Everything else that can be interacted with inside the extraplanar space can exist only there. For example, a flower picked from a garden in the paradise disappears if it is taken outside the extraplanar space.\nFor each hour spent in the paradise, a visitor regains hit points as if it had spent 1 Hit Die. Also, creatures don't age while in the paradise, although time passes normally. Visitors can remain in the paradise for up to 200 days divided by the number of creatures present (round down).\nWhen the time runs out or you use an action to end it, all visitors reappear in the location they occupied when you activated the rod, or an unoccupied space nearest that location. The rod can't be used again until ten days have passed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":90000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":200,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"consumableType":"rod"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233501,"modifiedTime":1671220957768,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9nxSHbqlDdngtuuz","name":"Figurine of Wondrous Power (Onyx Dog)","type":"consumable","img":"icons/sundries/misc/pet-collar-red.webp","system":{"description":{"value":"Wondrous item\nA figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\nOnyx Dog. This onyx statuette of a dog can become a @Compendium[dnd5e.monsters.YTpL2c3NO4sOn2UA]{Mastiff} for up to 6 hours. The mastiff has an Intelligence of 8 and can speak Common. It also has darkvision out to a range of 60 feet and can see invisible creatures and objects within that range. Once it has been used, it can't be used again until 7 days have passed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":3000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"6","units":"hour"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233502,"modifiedTime":1671220957777,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9qOAoFw9dTXhJ1w0","name":"Sling +2","type":"weapon","img":"icons/weapons/slings/slingshot-wood.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +2","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"sling","properties":{"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233503,"modifiedTime":1671220957785,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9stfX2i2I1YPo8vx","name":"Instant Fortress","type":"consumable","img":"icons/environment/settlement/watchtower-silhouette-yellow.webp","system":{"description":{"value":"Wondrous item\nYou can use an action to place this 1-inch metal cube on the ground and speak its command word. The cube rapidly grows into a fortress that remains until you use an action to speak the command word that dismisses it, which works only if the fortress is empty.\nThe fortress is a square tower, 20 feet on a side and 30 feet high, with arrow slits on all sides and a battlement atop it. Its interior is divided into two floors, with a ladder running along one wall to connect them. The ladder ends at a trapdoor leading to the roof. When activated, the tower has a small door on the side facing you. The door opens only at your command, which you can speak as a bonus action. It is immune to the @Compendium[dnd5e.spells.1nhIxh0DsJsntCfj]{Knock} spell and similar magic, such as that of a @Compendium[dnd5e.items.vZdLYfHlLcZqQ8zc]{Chime of Opening}.\nEach creature in the area where the fortress appears must make a DC 15 Dexterity saving throw, taking 10d10 bludgeoning damage on a failed save, or half as much damage on a successful one. In either case, the creature is pushed to an unoccupied space outside but next to the fortress. Objects in the area that aren't being worn or carried take this damage and are pushed automatically.\nThe tower is made of adamantine, and its magic prevents it from being tipped over. The roof, the door, and the walls each have 100 hit points, immunity to damage from nonmagical weapons excluding siege weapons, and resistance to all other damage. Only a @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell can repair the fortress (this use of the spell counts as replicating a spell of 8th level or lower). Each casting of Wish causes the roof, the door, or one wall to regain 50 hit points.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":75000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"square"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d10","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233503,"modifiedTime":1671220957790,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9uT9SXy1Gb1jiiZX","name":"Scale Mail +3","type":"equipment","img":"icons/equipment/chest/breastplate-banded-steel.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":45,"price":{"value":24050,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":17,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"scalemail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233504,"modifiedTime":1690538872425,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9v0TPDXNa9S7aNB4","name":"Periapt of Health","type":"equipment","img":"icons/equipment/neck/pendant-faceted-red.webp","system":{"description":{"value":"Wondrous item\nYou are immune to contracting any disease while you wear this pendant. If you are already infected with a disease, the effects of the disease are suppressed you while you wear the pendant.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.01,"price":{"value":5000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233504,"modifiedTime":1671220958449,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"A2i08i8gAFscm6hZ","name":"Longbow +1","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"longbow","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233505,"modifiedTime":1671220958459,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"AChuumAYmts5uGFT","name":"Vicious Sickle","type":"weapon","img":"icons/weapons/sickles/sickle-curved.webp","system":{"description":{"value":"A crescent hooked blade mounted atop a short haft, light enough to be wielded in one hand for treshing crops or foes.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"sickle","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233506,"modifiedTime":1671220958465,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ADH0UZ8bf7Op0dgf","name":"Crystal Ball of True Seeing","type":"consumable","img":"icons/commodities/gems/pearl-fire.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThe Crystal Ball is about 6 inches in diameter. While touching it, you can cast the @Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying} spell (save DC 17) with it.\nWhile Scrying with the Crystal Ball, you have Truesight with a radius of 120 feet centered on the spell's sensor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":60000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233506,"modifiedTime":1671220958471,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"AHn15T1TOuDFS0GH","name":"Sickle +3","type":"weapon","img":"icons/weapons/sickles/sickle-curved.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +3","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"sickle","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233507,"modifiedTime":1671220958484,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Ajyq6nGwF7FtLhDQ","name":"Mace","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"A heavy bludgeoning weapon mounted to the end of a metal club. The head features spikes and blades designed to puncture armor and shatter the bones below.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"mace","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233508,"modifiedTime":1671220958515,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Aq1rhgcgFnwu2T4I","name":"Cloak of the Bat","type":"equipment","img":"icons/equipment/back/cloak-heavy-fur-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this cloak, you have advantage on Dexterity (Stealth) checks. In an area of dim light or darkness, you can grip the edges of the cloak with both hands and use it to fly at a speed of 40 feet. If you ever fail to grip the cloak's edges while flying in this way, or if you are no longer in dim light or darkness, you lose this flying speed.\nWhile wearing the cloak in an area of dim light or darkness, you can use your action to cast @Compendium[dnd5e.spells.04nMsTWkIFvkbXlY]{Polymorph} on yourself, transforming into a bat. While you are in the form of the bat, you retain your Intelligence, Wisdom, and Charisma scores.\nThe cloak can't be used this way again until the next dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"5","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233508,"modifiedTime":1671220958520,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"AweD4kpKGM7Ilu3n","name":"Ring of Regeneration","type":"equipment","img":"icons/equipment/finger/ring-faceted-gold-purple.webp","system":{"description":{"value":"(Requires attunement)\nWhile wearing this ring, you regain 1d6 hit points every 10 minutes, provided that you have at least 1 hit point. If you lose a body part, the ring causes the missing part to regrow and return to full functionality after 1d6 + 1 days if you have at least 1 hit point the whole time.\nFoundry note: you can use the Other Formula to calculate the days needed to regrow a body part if required.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":12000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"none","cost":null,"condition":"You need at least 1 hit point."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6","healing"]],"versatile":""},"formula":"1d6 +1","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233509,"modifiedTime":1671220958527,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"BNJmdttKvIwC08Pd","name":"Sling Bullet +2","type":"consumable","img":"icons/skills/ranged/bullets-triple-ball-yellow.webp","system":{"description":{"value":"A hardened pebble of stone, bone, or metal which can be flung at high velocity using a sling. It has been imbued with magic.\nYou have a bonus to attack and damage rolls made with this piece of magic ammunition. Once it hits a target, the ammunition is no longer magical.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.075,"price":{"value":100,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233510,"modifiedTime":1671220958532,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"BQw5lyopqLmf8B6u","name":"Chain Mail Armor of Resistance","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":55,"price":{"value":6075,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainmail","speed":{"value":null,"conditions":""},"strength":13,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233510,"modifiedTime":1671220958537,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"BeKIrNIvNHRPQ4t5","name":"Staff","type":"weapon","img":"icons/weapons/staves/staff-ornate-engraved-blue.webp","system":{"description":{"value":"A gnarled or polished staff of wood, bone, or more exotic materials like crystal. Such implements are frequently used by spellcasters to hone their arcane focus.\nSpellcasting Focus. An arcane focus is a special item designed to channel the power of arcane spells. A sorcerer, warlock, or wizard can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"foc":true,"amm":false,"hvy":false,"fin":false,"fir":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233511,"modifiedTime":1671220958550,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"BefbYlWbRYyy6R8s","name":"Nine Lives Stealer Longsword","type":"weapon","img":"icons/weapons/swords/sword-broad-crystal-paired.webp","system":{"description":{"value":"(Requires attunement)You gain a +2 bonus to attack and damage rolls made with this magic weapon.The sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.Foundry NoteThe 9 charges reflect a fully charged blade. Please adjust accordingly as required.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Critical hit on a creature of 100 hit points or less. Undead and constructs are immune."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":9,"max":"9","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod +2","slashing"]],"versatile":"1d10 +@mod +2"},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true,"ada":false,"sil":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233511,"modifiedTime":1671220958564,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"BjyTJn9oGvURWKJR","name":"Manual of Bodily Health","type":"consumable","img":"icons/sundries/books/book-backed-silver-red.webp","system":{"description":{"value":"Wondrous item\nThis book contains health and diet tips, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Constitution score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":100000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"hour","cost":48,"condition":"The book must be completed in 6 days or less."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233512,"modifiedTime":1671220958578,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"BmWnprrj0QWQ1BL3","name":"Quarterstaff +3","type":"weapon","img":"icons/weapons/staves/staff-simple-gold.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","bludgeoning"]],"versatile":"1d8 + @mod +3"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"quarterstaff","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233512,"modifiedTime":1671220958583,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"BnOCLuNWhVvzHLjl","name":"Torch","type":"consumable","img":"icons/sundries/lights/torch-black.webp","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":40,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233513,"modifiedTime":1671220958589,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"BsyPV6eTNghT3Fho","name":"Eyes of Minute Seeing","type":"equipment","img":"icons/magic/control/hypnosis-mesmerism-eye.webp","system":{"description":{"value":"Wondrous item\nThese crystal lenses fit over the eyes. While wearing them, you can see much better than normal out to a range of 1 foot. You have advantage on Intelligence (Investigation) checks that rely on sight while searching an area or studying an object within that range.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.01,"price":{"value":2500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":1,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233514,"modifiedTime":1671220958595,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"BwC8hZaNjO7IQc6K","name":"Splint Armor +3","type":"equipment","img":"icons/equipment/chest/breastplate-layered-steel.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":60,"price":{"value":24200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":20,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"splint","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233514,"modifiedTime":1671220958613,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"C0MNXWA81ufzGlp5","name":"Oil of Sharpness","type":"consumable","img":"icons/consumables/potions/potion-tube-corked-bat-gold-red.webp","system":{"description":{"value":"This clear, gelatinous oil sparkles with tiny, ultrathin silver shards. \nThe oil can coat one slashing or piercing weapon or up to 5 pieces of slashing or piercing ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item is magical and has a +3 bonus to attack and damage rolls.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":3200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233515,"modifiedTime":1671220958619,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"CAZMwFBWp9VC0ZCg","name":"Potion of Water Breathing","type":"consumable","img":"icons/consumables/potions/potion-bottle-corked-labeled-green.webp","system":{"description":{"value":"Its cloudy green fluid smells of the sea and has a jellyfish-like bubble floating in it.\nYou can breathe underwater for 1 hour after drinking this potion. \n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":180,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233515,"modifiedTime":1671220958633,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"CI58LNiwrTpmWYMp","name":"Figurine of Wondrous Power (Bronze Griffon)","type":"consumable","img":"icons/commodities/bones/hurn-curved-yellow.webp","system":{"description":{"value":"Wondrous item\nA figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\nBronze Griffon. This bronze statuette is of a griffon rampant. It can become a @Compendium[dnd5e.monsters.h052EIIUmRwJum65]{Griffon} for up to 6 hours. Once it has been used, it can't be used again until 5 days have passed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":8000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"6","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233516,"modifiedTime":1671220958644,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"CNdDj8dsXVpRVpXt","name":"Sack","type":"backpack","img":"icons/containers/bags/sack-cloth-orange.webp","system":{"description":{"value":"A sack can hold up to 1 cubic foot or 30 pounds of gear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.5,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233516,"modifiedTime":1671220958649,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"CVMGOJWTO6TCybrH","name":"Lance +2","type":"weapon","img":"icons/weapons/ammunition/arrow-head-war-flight.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.\nSpecial. You have disadvantage when you use a lance to attack a target within 5 feet of you. Also, a lance requires two hands to wield when you aren't mounted.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"lance","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":true,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233518,"modifiedTime":1671220958653,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"CcTGZzQHejxEVLK1","name":"Mithral Breastplate","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel-grey.webp","system":{"description":{"value":"Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":20,"price":{"value":1200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"breastplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233519,"modifiedTime":1690538971665,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"CoUFHk5keIihsbYL","name":"Flame Tongue Rapier","type":"weapon","img":"icons/magic/fire/projectile-bolt-zigzag-orange.webp","system":{"description":{"value":"(Requires attunement)\nYou can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"2d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233519,"modifiedTime":1671220958666,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Ct9LR9Ft1FG4a6Y1","name":"Potion of Mind Reading","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-purple.webp","system":{"description":{"value":"The potion's dense, purple liquid has an ovoid cloud of pink floating in it.\nWhen you drink this potion, you gain the effect of the @Compendium[dnd5e.spells.ppWAAEul0QHtm4er]{Detect Thoughts} spell (save DC 13). ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":180,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"flat"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233520,"modifiedTime":1671220958671,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"CvzjhUy9ekRieR1A","name":"Eversmoking Bottle","type":"consumable","img":"icons/commodities/tech/smoke-bomb-purple.webp","system":{"description":{"value":"Wondrous item\nSmoke leaks from the lead-stoppered mouth of this brass bottle, which weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke pours out in a 60-foot radius from the bottle. The cloud's area is heavily obscured. Each minute the bottle remains open and within the cloud, the radius increases by 10 feet until it reaches its maximum radius of 120 feet.\nThe cloud persists as long as the bottle is open. Closing the bottle requires you to speak its command word as an action. Once the bottle is closed, the cloud disperses after 10 minutes. A moderate wind (11 to 20 miles per hour) can also disperse the smoke after 1 minute, and a strong wind (21 or more miles per hour) can do so after 1 round.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233520,"modifiedTime":1671220958678,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"CwWbeQ6XyqFzbMYw","name":"Book of Shadows","type":"loot","img":"icons/sundries/books/book-black-grey.webp","system":{"description":{"value":"A grimoire given to you by your patron. Choose three cantrips from any class's spell list (the three needn't be from the same list). While the book is on your person, you can cast those cantrips at will. They don't count against your number of cantrips known. If they don't appear on the warlock spell list, they are nonetheless warlock spells for you. \nIf you lose your Book of Shadows, you can perform a 1-hour ceremony to receive a replacement from your patron. This ceremony can be performed during a short or long rest, and it destroys the previous book. The book turns to ash when you die.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233521,"modifiedTime":1671220958682,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"DEQkJiQdGyfmSNkV","name":"Helm of Teleportation","type":"equipment","img":"icons/equipment/head/helm-barbute-horned-copper.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThis helm has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the @Compendium[dnd5e.spells.L4J89JXqbKs6puEV]{Teleport} spell from it. The helm regains 1d3 expended charges daily at dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":64000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233521,"modifiedTime":1671220958686,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"DM7hzgL836ZyUFB1","name":"Spell Scroll 4th Level","type":"consumable","img":"icons/sundries/scrolls/scroll-plain-red.webp","system":{"description":{"value":"A spell scroll bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can read the scroll and cast its spell without providing any material components. Otherwise, the scroll is unintelligible. Casting the spell by reading the scroll requires the spell's normal casting time. Once the spell is cast, the words on the scroll fade, and it crumbles to dust. If the casting is interrupted, the scroll is not lost.\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 14 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity.\nSave DC: 15Attack Bonus: +7.\nA wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 14 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":320,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Spell must be on the caster's spell list."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"7","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":15,"scaling":"flat"},"consumableType":"scroll"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233522,"modifiedTime":1671220958714,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"DMejWAc8r8YvDPP1","name":"Halberd","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"A spear-tipped metal shaft accompanied by a crescent blade, the halberd is a strong defensive weapon which allows a warrior to fend off foes using the reach of the shaft to attack from safe distance.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"halberd","properties":{"hvy":true,"two":true,"rch":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233522,"modifiedTime":1671220958720,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"DNOSEAvF4Oh1DlWy","name":"Tinderbox","type":"loot","img":"icons/sundries/lights/torch-black.webp","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233523,"modifiedTime":1671220958728,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"DSHi7yT6OUyDoCcu","name":"Bracers of Defense","type":"equipment","img":"icons/equipment/wrist/bracer-segmented-leather.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing these bracers, you gain a +2 bonus to AC if you are wearing no armor and using no shield.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[{"_id":"ul7rjl68p1kyv4z2","changes":[{"key":"system.attributes.ac.bonus","mode":2,"value":"2","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/equipment/wrist/bracer-segmented-leather.webp","label":"+2 to AC","origin":"Compendium.dnd5e.items.DSHi7yT6OUyDoCcu","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233523,"modifiedTime":1671220958745,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"DT02xK1DzxLNlVaI","name":"Frost Brand Shortsword","type":"weapon","img":"icons/skills/melee/strike-weapon-polearm-ice-blue.webp","system":{"description":{"value":"(Requires attunement)\nWhen you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":2200,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"],["1d6","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233524,"modifiedTime":1671220958758,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"DVXmyetZuvxbzAwW","name":"Bedroll","type":"loot","img":"icons/sundries/survival/bedroll-grey.webp","system":{"description":{"value":"Roll of cloth used by traveller to sleep in.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233526,"modifiedTime":1671220958762,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"DWLMnODrnHn8IbAG","name":"Javelin","type":"weapon","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"This light and flexible spear is designed for throwing, but is versatile enough to be used in melee combat as well.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"javelin","properties":{"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233527,"modifiedTime":1671220958767,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"DWwBkOFuYf5VN3M2","name":"Periapt of Wound Closure","type":"equipment","img":"icons/equipment/neck/pendant-faceted-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile you wear this pendant, you stabilize whenever you are dying at the start of your turn. In addition, whenever you roll a Hit Die to regain hit points, double the number of hit points it restores.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.01,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233527,"modifiedTime":1671220958772,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Carpet of Flying (4x6)","type":"consumable","img":"icons/equipment/back/cloak-hooded-pink.webp","system":{"description":{"value":"Wondrous itemYou can speak the carpet's command word as an action to make the carpet hover and fly. It moves according to your spoken directions, provided that you are within 30 feet of it.This carpet is 4 ft. x 6 ft. and has a speed of 60 feet carrying up to 400 lb, or half that speed when carrying up to 800 lb.\nFour sizes of carpet of flying exist. The GM chooses the size of a given carpet or determines it randomly from the @Compendium[dnd5e.tables.Z2OG7jt9R8zofxnJ]{Carpet of Flying} table.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":12000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"flags":{},"_id":"DeK9uQvNJj3JzFwe","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233672,"modifiedTime":1671220958777,"lastModifiedBy":"dnd5ebuilder0000"},"folder":null,"sort":0,"ownership":{"default":0}} -{"_id":"DevmObXWP9MfwE2c","name":"Adamantine Breastplate","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel-grey.webp","system":{"description":{"value":"This armor is reinforced with adamantine, one of the hardest substances in existence.\nWhile you're wearing it, any critical hit against you becomes a normal hit.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":20,"price":{"value":900,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"breastplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233528,"modifiedTime":1690538946202,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"DizirD7eqjh8n95A","name":"Maul","type":"weapon","img":"icons/weapons/maces/mace-spiked-wood-grey.webp","system":{"description":{"value":"This heavy two-handed mace crushes metal and bone with thunderous force.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"maul","properties":{"hvy":true,"two":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233528,"modifiedTime":1671220958787,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"DnlQkH6Bpwkd5n5Y","name":"Feather Token Anchor","type":"consumable","img":"icons/commodities/materials/feather-blue.webp","system":{"description":{"value":"Wondrous item\nThis tiny object looks like a feather. Different types of feather tokens exist, each with a different single-use effect. The GM chooses the kind of token or determines it randomly from the @Compendium[dnd5e.tables.OEdr086W61t1DRJo]{Feather Token} table.\nAnchor. You can use an action to touch the token to a boat or ship. For the next 24 hours, the vessel can't be moved by any means. Touching the token to the vessel again ends the effect. When the effect ends, the token disappears.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"touch","type":"object"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233529,"modifiedTime":1671220958792,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Do3qeSHtBjUsmfvz","name":"Rod of Alertness","type":"consumable","img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","system":{"description":{"value":"(Requires attunement)\nThis rod has a flanged head and the following properties.\nAlertness. While holding the rod, you have advantage on Wisdom (Perception) checks and on rolls for initiative.\nSpells. While holding the rod, you can use an action to cast one of the following spells from it: @Compendium[dnd5e.spells.Mzh95utKDPIrjiH8]{Detect Evil and Good}, @Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic}, @Compendium[dnd5e.spells.2skfDtglk1mGrb3l]{Detect Poison and Disease}, or @Compendium[dnd5e.spells.DQzlB5Y3k791W5bH]{See Invisibility}.\nProtective Aura. As an action, you can plant the haft end of the rod in the ground, whereupon the rod's head sheds bright light in a 60-foot radius and dim light for an additional 60 feet. While in that bright light, you and any creature that is friendly to you gain a +1 bonus to AC and saving throws and can sense the location of any invisible hostile creature that is also in the bright light.\nThe rod's head stops glowing and the effect ends after 10 minutes, or when a creature uses an action to pull the rod from the ground.. This property can't be used again until the next dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":25000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Rod must be planted in the ground."},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":60,"long":120,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"rod"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233530,"modifiedTime":1671220958796,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"DoSvjhRARhRqWZXg","name":"Wand of Fireballs","type":"consumable","img":"icons/weapons/staves/staff-engraved-red.webp","system":{"description":{"value":"(Requires attunement by a spellcaster)\nThis wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the @Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball} spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":32000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":7,"max":"7","per":"charges","recovery":"1d6 + 1","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d6","fire"]],"versatile":"1d6"},"formula":"1d6 +1","save":{"ability":"dex","dc":15,"scaling":"flat"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233530,"modifiedTime":1671220958821,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"DxIdfGoJEYQj8o3D","name":"Bag of Tricks (Rust)","type":"consumable","img":"icons/containers/bags/sack-simple-leather-tan.webp","system":{"description":{"value":"Wondrous item\nThis ordinary bag, made from rust-colored cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, fuzzy object. The bag weighs 1/2 pound.\nYou can use an action to pull the fuzzy object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling on the @Compendium[dnd5e.tables.PLHwT9dC6fCZqkeo]{Rust Bag of Tricks} table.\nThe creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature.\nOnce three fuzzy objects have been pulled from the bag, the bag can't be used again until the next dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.5,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"space"},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233531,"modifiedTime":1671220958839,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"E2h6sEe6FU2tnU96","name":"Costume Clothes","type":"equipment","img":"icons/equipment/back/cloak-hooded-pink.webp","system":{"description":{"value":"A complete costume usually used by performers and artists in all manner of entertainment halls or for those that simply refuse to get out of character.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233532,"modifiedTime":1671220958843,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"E7c4zpWdYgkKDHGo","name":"Luck Blade Scimitar","type":"weapon","img":"icons/magic/light/projectile-beam-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\nLuck. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\nWish. The sword has 1d4 – 1 charges. While holding it, you can use an action to expend 1 charge and cast the @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":210000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 +@mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233532,"modifiedTime":1671220958851,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"E9G4jALlSA96fKAN","name":"Iron Bands of Binding","type":"consumable","img":"icons/commodities/metal/clasp-steel-braid.webp","system":{"description":{"value":"Wondrous item\nThis rusty iron sphere measures 3 inches in diameter and weighs 1 pound. You can use an action to speak the command word and throw the sphere at a Huge or smaller creature you can see within 60 feet of you. As the sphere moves through the air, it opens into a tangle of metal bands.\nMake a ranged attack roll with an attack bonus equal to your Dexterity modifier plus your proficiency bonus. On a hit, the target is restrained until you take a bonus action to speak the command word again to release it. Doing so, or missing with the attack, causes the bands to contract and become a sphere once more.\nA creature, including the one restrained, can use an action to make a DC 20 Strength check to break the iron bands. On a success, the item is destroyed, and the restrained creature is freed. If the check fails, any further attempts made by that creature automatically fail until 24 hours have elapsed.\nOnce the bands are used, they can't be used again until the next dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word. Target creature must be Huge or smaller."},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["d20 + @attributes.prof + @mod",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233533,"modifiedTime":1671220958866,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"EJFql4aNWHHJSxT9","name":"Wand of Fear","type":"consumable","img":"icons/weapons/staves/staff-skull-brown.webp","system":{"description":{"value":"(Requires attunement)\nThis wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.\nCommand. While holding the wand, you can use an action to expend 1 charge and command another creature to flee or grovel, as with the @Compendium[dnd5e.spells.arzCrMRgcNiQuh43]{Command} spell (save DC 15).\nCone of Fear. While holding the wand, you can use an action to expend 2 charges, causing the wand's tip to emit a 60-foot cone of amber light. Each creature in the cone must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. While it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":10000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":7,"max":"7","per":"charges","recovery":"1d6 + 1","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d6 +1","save":{"ability":"wis","dc":15,"scaling":"flat"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233534,"modifiedTime":1671220958871,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"EJVaAvNfCq6gn6VG","name":"Helm of Telepathy","type":"equipment","img":"icons/magic/control/control-influence-rally-purple.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this helm, you can use an action to cast the @Compendium[dnd5e.spells.ppWAAEul0QHtm4er]{Detect Thoughts} spell (save DC 13) from it. As long as you maintain concentration on the spell, you can use a bonus action to send a telepathic message to a creature you are focused on. It can reply using a bonus action to do so while your focus on it continues.While focusing on a creature with Detect Thoughts, you can use an action to cast the @Compendium[dnd5e.spells.zMAWdyc8UVb37BK4]{Suggestion} spell (save DC 13) from the helm on that creature. Once used, the Suggestion property can't be used again until the next dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":12000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"flat"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233534,"modifiedTime":1671220958880,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ER75WHewYN04Zp11","name":"Belt of Hill Giant Strength","type":"equipment","img":"icons/equipment/waist/belt-buckle-square-leather-brown.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this belt, your Strength score changes to 21. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[{"label":"Belt of Hill Giant Strength","icon":"icons/equipment/waist/belt-buckle-square-leather-brown.webp","origin":"Compendium.dnd5e.items.ER75WHewYN04Zp11","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"wz6bugCbOYcTBUMg","changes":[{"key":"system.abilities.str.value","mode":4,"value":"21"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233535,"modifiedTime":1690480497698,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ET8Oo5vaTZqyb7rN","name":"Breastplate +2","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":20,"price":{"value":6400,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"breastplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233535,"modifiedTime":1690538962130,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"EU78dSbnr91QWZ7g","name":"Halberd +3","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +3","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"halberd","properties":{"hvy":true,"two":true,"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233536,"modifiedTime":1671220958892,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"EWdfUQriSabqDESm","name":"Dart +2","type":"weapon","img":"icons/weapons/ammunition/arrows-war-red.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.25,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"dart","properties":{"fin":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233536,"modifiedTime":1671220958896,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"EkTpM4Wbsrdqflzl","name":"Trident +2","type":"weapon","img":"icons/skills/melee/spear-tips-triple-orange.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +2","piercing"]],"versatile":"1d8 + @mod +2"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"trident","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233537,"modifiedTime":1671220958910,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ElLfmohtIFMagr5f","name":"Ring of Animal Influence","type":"equipment","img":"icons/equipment/finger/ring-cabochon-gold-orange.webp","system":{"description":{"value":"This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 of its charges to cast one of the following spells:\n\n@Compendium[dnd5e.spells.hDOENzjuj5WpLq7B]{Animal Friendship} (save DC 13)\n@Compendium[dnd5e.spells.XXUDGFELgoskdOD0]{Fear} (save DC 13), targeting only beasts that have an Intelligence of 3 or lower\n@Compendium[dnd5e.spells.aL1F8fvYLtNzUbKu]{Speak with Animals}\n","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233537,"modifiedTime":1671220958915,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"EveBprZPBjfZqXLt","name":"Maul +1","type":"weapon","img":"icons/weapons/maces/mace-spiked-wood-grey.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod +1","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"maul","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233538,"modifiedTime":1671220958919,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"EwG1EtmbgR3bM68U","name":"Lyre","type":"tool","img":"icons/tools/instruments/lute-gold-brown.webp","system":{"description":{"value":"A lyre to evoke awe, wonder, or fear in your audience.\nIf you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":30,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"music","baseItem":"lyre","ability":"cha","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233538,"modifiedTime":1671220958925,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"F0Df164Xv1gWcYt0","name":"Warhammer","type":"weapon","img":"icons/weapons/hammers/hammer-drilling-spiked.webp","system":{"description":{"value":"A heavy metal hammer capable of being wielded with a single hand with a shield or in two hands to deliver crushing concussive blows.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","bludgeoning"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"warhammer","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233539,"modifiedTime":1671220958929,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"F3rQcaZvElNEiudk","name":"Giant Slayer Handaxe","type":"weapon","img":"icons/weapons/axes/axe-broad-black.webp","system":{"description":{"value":"You gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":7000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","slashing"]],"versatile":""},"formula":"2d6","save":{"ability":"str","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"handaxe","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233540,"modifiedTime":1671220958933,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"F65ANO66ckP8FDMa","name":"Trident","type":"weapon","img":"icons/skills/melee/spear-tips-triple-orange.webp","system":{"description":{"value":"A multi-pronged spear designed to impale a target in multiple locations, pinning them in place. Often used in combination with a net to entrap and harass foes.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"trident","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233540,"modifiedTime":1671220958937,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"F6GwSqjErX1u35Re","name":"Bell","type":"loot","img":"icons/tools/instruments/bell-brass-brown.webp","system":{"description":{"value":"A small bell for you to ring.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233541,"modifiedTime":1671220958942,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"F6v3Q7dz1SlpLTMf","name":"Staff of Thunder and Lightning","type":"weapon","img":"icons/weapons/staves/staff-ornate-engraved-blue.webp","system":{"description":{"value":"(Requires attunement)\nThis staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. It also has the following additional properties. When one of these properties is used, it can't be used again until the next dawn.\nLightning. When you hit with a melee attack using the staff, you can cause the target to take an extra 2d6 lightning damage.\nThunder. When you hit with a melee attack using the staff, you can cause the staff to emit a crack of thunder, audible out to 300 feet. The target you hit must succeed on a DC 17 Constitution saving throw or become stunned until the end of your next turn.\nLightning Strike. You can use an action to cause a bolt of lightning to leap from the staff's tip in a line that is 5 feet wide and 120 feet long. Each creature in that line must make a DC 17 Dexterity saving throw, taking 9d6 lightning damage on a failed save, or half as much damage on a successful one.\nThunderclap. You can use an action to cause the staff to issue a deafening thunderclap, audible out to 600 feet. Each creature within 60 feet of you (not including you) must make a DC 17 Constitution saving throw. On a failed save, a creature takes 2d6 thunder damage and becomes deafened for 1 minute. On a successful save, a creature takes half damage and isn't deafened.\nThunder and Lightning. You can use an action to use the Lightning Strike and Thunderclap properties at the same time. Doing so doesn't expend the daily use of those properties, only the use of this one.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":10000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +2","bludgeoning"]],"versatile":"1d8 + @mod +2"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233541,"modifiedTime":1671220958947,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"F8QpasPjLrw2POzE","name":"Bag of Beans","type":"consumable","img":"icons/containers/bags/coinpouch-simple-leather-tan.webp","system":{"description":{"value":"Inside this heavy cloth bag are [[/r 3d4]] dry beans. The bag weighs 1/2 pound plus 1/4 pound for each bean it contains.\nIf you dump the bag's contents out on the ground, they explode in a 10-foot radius, extending from the beans. Each creature in the area, including you, must make a DC 15 Dexterity saving throw, taking [[/r 5d4]] fire damage on a failed save, or half as much damage on a successful one. The fire ignites flammable objects in the area that aren't being worn or carried.\nIf you remove a bean from the bag, plant it in dirt or sand, and then water it, the bean produces an effect 1 minute later from the ground where it was planted. The GM can choose an effect from the @Compendium[dnd5e.tables.4ryVFV5LPHPzRKxl]{Bag of Beans} table, determine it randomly, or create an effect.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3.5,"price":{"value":3000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":12,"max":"12","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d4","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233542,"modifiedTime":1671220958951,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FCxG64QUxsnF4Lis","name":"Holy Avenger Greatsword","type":"weapon","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"(Requires attunement by a paladin)\nYou gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":165000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod + 3","slashing"]],"versatile":""},"formula":"2d10","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233543,"modifiedTime":1671220958955,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FF1ktpb2YSiyv896","name":"Wooden Staff","type":"weapon","img":"icons/weapons/staves/staff-simple-spiral-green.webp","system":{"description":{"value":"A gnarled or naturely smooth staff of wood drawn out from a living tree, those who heed nature's call can use this to harness the incredible power of nature.\nSpellcasting Focus. A druidic focus is a special item designed to channel the power of spells from the druid's spell list. A druid can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"foc":true,"amm":false,"hvy":false,"fin":false,"fir":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233543,"modifiedTime":1671220958959,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FHUDEygUW7EWCDgA","name":"Vicious Scimitar","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"This curved blade is wide near the wrapped handle but arcs and tapers towards a gleaming tip.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233544,"modifiedTime":1671220958963,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FIDyR0kZnxGy7bj8","name":"Oil of Slipperiness","type":"consumable","img":"icons/consumables/potions/bottle-circular-corked-labeled-green.webp","system":{"description":{"value":"This sticky black unguent is thick and heavy in the container, but it flows quickly when poured. \nThe oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of a @Compendium[dnd5e.spells.da0a1t2FqaTjRZGT]{Freedom of Movement} spell for 8 hours.\nAlternatively, the oil can be poured on the ground as an action, where it covers a 10‑foot square, duplicating the effect of the @Compendium[dnd5e.spells.etgcR9wqmrhyZ0tx]{Grease} spell in that area for 8 hours.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":480,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233544,"modifiedTime":1671220958969,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FLoBS3UnFnZTSsSx","name":"Chain Shirt +2","type":"equipment","img":"icons/equipment/chest/breastplate-scale-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":20,"price":{"value":6050,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainshirt","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233546,"modifiedTime":1690538783831,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FZixEM5voQkH84xP","name":"Studded Leather Armor +2","type":"equipment","img":"icons/equipment/chest/breastplate-rivited-red.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":13,"price":{"value":6045,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"studded","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233547,"modifiedTime":1671220958977,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Fc6UfFNOnW80XMzi","name":"Antitoxin","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-pink.webp","system":{"description":{"value":"A creature that drinks this vial of liquid gains advantage on saving throws against poison for 1 hour. It confers no benefit to undead or constructs.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233547,"modifiedTime":1671220958995,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FeouSUPUlUhfgeRp","name":"Staff of Charming","type":"weapon","img":"icons/weapons/staves/staff-simple-green.webp","system":{"description":{"value":"(Requires attunement by a bard, cleric, druid, sorcerer, warlock, or wizard)While holding this staff, you can use an action to expend 1 of its 10 charges to cast @UUID[Compendium.dnd5e.spells.eS7XnnApoxRxYXPs]{Charm Person}, @UUID[Compendium.dnd5e.spells.arzCrMRgcNiQuh43]{Command}, or @UUID[Compendium.dnd5e.spells.4dSvfvTy2ZIJ3K4k]{Comprehend Languages} from it using your spell save DC. The staff can also be used as a magic quarterstaff.If you are holding the staff and fail a saving throw against an enchantment spell that targets only you, you can turn your failed save into a successful one. You can't use this property of the staff again until the next dawn. If you succeed on a save against an enchantment spell that targets only you, with or without the staff's intervention, you can use your reaction to expend 1 charge from the staff and turn the spell back on its caster as if you had cast the spell.The staff regains 1d8 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":12000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":10,"max":"10","per":"charges","recovery":"1d8 + 2"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true,"ada":false,"sil":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233548,"modifiedTime":1671220959000,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Fgkj11diTJJ7H3JC","name":"Feather Token Whip","type":"consumable","img":"icons/commodities/materials/feather-colored-blue.webp","system":{"description":{"value":"Wondrous item\nThis tiny object looks like a feather. Different types of feather tokens exist, each with a different single-use effect. The GM chooses the kind of token or determines it randomly from the @Compendium[dnd5e.tables.OEdr086W61t1DRJo]{Feather Token} table.\nWhip. You can use an action to throw the token to a point within 10 feet of you. The token disappears, and a floating whip takes its place. You can then use a bonus action to make a melee spell attack against a creature within 10 feet of the whip, with an attack bonus of +9. On a hit, the target takes 1d6 + 5 force damage.\nAs a bonus action on your turn, you can direct the whip to fly up to 20 feet and repeat the attack against a creature within 10 feet of it. The whip disappears after 1 hour, when you use an action to dismiss it, or when you are incapacitated or die.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":250,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"A bonus action is used to control the whip."},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"space"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"9","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + 5","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233548,"modifiedTime":1671220959038,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FhtjbeBeP4q5vTyc","name":"Javelin +3","type":"weapon","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"javelin","properties":{"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233550,"modifiedTime":1671220959044,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Fk78kNmp3OLX5EMC","name":"Vicious Heavy Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-blue.webp","system":{"description":{"value":"A large crossbow mounted on a sturdy block of wood which is loaded using a hand crank and fires thick steel bolts with deadly acceleration that punches through armor and flesh.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":18,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":100,"long":400,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"heavycrossbow","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233550,"modifiedTime":1671220959049,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FkDyLSpiynKTQZdi","name":"Wings of Flying","type":"equipment","img":"icons/equipment/back/cloak-heavy-fur-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this cloak, you can use an action to speak its command word. This turns the cloak into a pair of bat wings or bird wings on your back for 1 hour or until you repeat the command word as an action. The wings give you a flying speed of 60 feet. When they disappear, you can't use them again for 1d12 hours.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233551,"modifiedTime":1671220959053,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FpLaviCom3XR1ckP","name":"Vicious Greatsword","type":"weapon","img":"icons/weapons/swords/greatsword-guard-gem-blue.webp","system":{"description":{"value":"A mighty two-handed blade is over four feet long an almost five inches wide. This weapon requires extensive martial training but those proficient in its use are formidable warriors.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233551,"modifiedTime":1671220959058,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FvNOwWbh5FXyX4xe","name":"Alchemist's Fire","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-yellow.webp","system":{"description":{"value":"This sticky, adhesive fluid ignites when exposed to air. As an action, you can throw this flask up to 20 feet, shattering it on impact. Make a ranged attack against a creature or object, treating the alchemist's fire as an improvised weapon. On a hit, the target takes 1d4 fire damage at the start of each of its turns. A creature can end this damage by using its action to make a DC 10 Dexterity check to extinguish the flames.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"improvised weapon","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":10,"scaling":"flat"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233552,"modifiedTime":1671220959064,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"G3cqbejJpfB91VhP","name":"Shawm","type":"tool","img":"icons/tools/instruments/lute-gold-brown.webp","system":{"description":{"value":"A shawm to evoke awe, wonder, or fear in your audience.\nIf you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"music","baseItem":"shawm","ability":"cha","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233552,"modifiedTime":1671220959072,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"G5m5gYIx9VAUWC3J","name":"Pan Flute","type":"tool","img":"icons/tools/instruments/flute-simple-wood.webp","system":{"description":{"value":"A set of panpipes to evoke awe, wonder, or fear in your audience.\nIf you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":12,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"music","baseItem":"flute","ability":"cha","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233553,"modifiedTime":1671220959076,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"G7LqGzKR5ts0WlJ9","name":"Hourglass","type":"loot","img":"icons/tools/navigation/hourglass-grey.webp","system":{"description":{"value":"It is a device used to measure the psaage of time. It comprises two glass bulbs connected vertically by a narrow neck that allows a regulated trickle of sand from the upper bulb to the lower one.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233553,"modifiedTime":1671220959079,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"G9XQPNLlDXkpVxn1","name":"Padded Armor +2","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":8,"price":{"value":6005,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"padded","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233554,"modifiedTime":1671220959082,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"GJv6WkD7D2J6rP6M","name":"Shortbow","type":"weapon","img":"icons/weapons/bows/shortbow-recurve.webp","system":{"description":{"value":"This two handed bow is somewhat smaller than the traditional longbow variant, making it well suited for rapid attacks while on the move or mounted from horseback.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"shortbow","properties":{"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233554,"modifiedTime":1671220959086,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"GKQSxYvS3m9qKVac","name":"Mithral Splint Armor","type":"equipment","img":"icons/equipment/chest/breastplate-layered-steel.webp","system":{"description":{"value":"Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":60,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":17,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"splint","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233555,"modifiedTime":1671220959095,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"GP2bvHlxVi30OEmo","name":"Figurine of Wondrous Power (Marble Elephant)","type":"consumable","img":"icons/commodities/bones/horn-simple-grey.webp","system":{"description":{"value":"Wondrous item\nA figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\nMarble Elephant. This marble statuette is about 4 inches high and long. It can become an @Compendium[dnd5e.monsters.jLPhaBnMtAbB5dp1]{Elephant} for up to 24 hours. Once it has been used, it can't be used again until 7 days have passed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":6000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233556,"modifiedTime":1671220959102,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"GcpXNc4dKUNw0Tk6","name":"Wand of Paralysis","type":"consumable","img":"icons/weapons/staves/staff-ornate-engraved-blue.webp","system":{"description":{"value":"(Requires attunement by a spellcaster)\nThis wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cause a thin blue ray to streak from the tip toward a creature you can see within 60 feet of you. The target must succeed on a DC 15 Constitution saving throw or be paralyzed for 1 minute. At the end of each of the target's turns, it can repeat the saving throw, ending the effect on itself on a success.\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":16000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":7,"max":"7","per":"charges","recovery":"1d6 + 1","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":"1d4 +1"},"formula":"1d6 +1","save":{"ability":"con","dc":15,"scaling":"flat"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233556,"modifiedTime":1671220959117,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Gflnp29aEv5Lc1ZM","name":"Cook's Utensils","type":"tool","img":"icons/tools/laboratory/bowl-mixing.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in cookery.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":8,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"cook","ability":"wis","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233557,"modifiedTime":1671220959120,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"GsuvwoekKZatfKwF","name":"Unarmed Strike","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"A punch, kick, head-butt, or similar forceful blow (none of which count as weapons). On a hit, an unarmed strike deals bludgeoning damage equal to 1 + your Strength modifier. You are proficient with your unarmed strikes.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233557,"modifiedTime":1671220959127,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"GtKV1b5uqFQqpEni","name":"Padded Armor","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"Padded armor consists of quilted layers of cloth and batting. Padded armor offers a comparable level of protection as stiffened leather but is somewhat less encumbering to the wearer.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":8,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"padded","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233558,"modifiedTime":1671220959131,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"H6SIiRIig7OMM2Z0","name":"Longsword +3","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","slashing"]],"versatile":"1d10 + @mod +3"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233559,"modifiedTime":1671220959135,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"H8YCd689ezlD26aT","name":"Backpack","type":"backpack","img":"icons/containers/bags/pack-simple-leather.webp","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233559,"modifiedTime":1671220959140,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"HF32aZSVw4P0MR4K","name":"Chain Shirt Armor of Resistance","type":"equipment","img":"icons/equipment/chest/breastplate-scale-grey.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":20,"price":{"value":6050,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainshirt","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233560,"modifiedTime":1690538792957,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"HLEhnzLbpRbYdAHo","name":"Elemental Gem of Water","type":"consumable","img":"icons/commodities/gems/gem-rough-cushion-green.webp","system":{"description":{"value":"Wondrous item\nThis emerald contains a mote of elemental energy. When you use an action to break the gem, a @Compendium[dnd5e.monsters.namJz755U1EhvEJa]{Water Elemental} is summoned as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell, and the gem's magic is lost.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":960,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233560,"modifiedTime":1671220959148,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"HLhFCDGfI8EK7uV9","name":"Boots of Levitation","type":"equipment","img":"icons/equipment/feet/boots-collared-rounded-brown.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile you wear these boots, you can use an action to cast the @Compendium[dnd5e.spells.MRxldJd6C4bsBo3O]{Levitate} spell on yourself at will.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":4000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233561,"modifiedTime":1671220959152,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"HQJ8tiyyrJJSUSyF","name":"Blowgun +3","type":"weapon","img":"icons/weapons/staves/staff-simple-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":25,"long":100,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"blowgun","properties":{"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233561,"modifiedTime":1671220959157,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"HVpXIU0zZw0a4Fb7","name":"Mithral Plate Armor","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel.webp","system":{"description":{"value":"Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":65,"price":{"value":2300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233562,"modifiedTime":1690539432643,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"HY8duCwmvlXOruTG","name":"Potion of Diminution","type":"consumable","img":"icons/consumables/potions/potion-tube-corked-glowing-red.webp","system":{"description":{"value":"The red in the potion's liquid continuously contracts to a tiny bead and then expands to color the clear liquid around it. Shaking the bottle fails to interrupt this process.\nWhen you drink this potion, you gain the \"reduce\" effect of the @Compendium[dnd5e.spells.WahI41a3goVUg0x1]{Enlarge/Reduce} spell for 1d4 hours (no concentration required). \n \n \n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":270,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233562,"modifiedTime":1671220959176,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"HZp69hhyNZUUCipF","name":"Glass Bottle","type":"backpack","img":"icons/consumables/potions/bottle-bulb-empty-glass.webp","system":{"description":{"value":"A bottle holds 1½ pints of liquid.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":6,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233563,"modifiedTime":1671220959190,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"HZsvDPmvysQKGzGy","name":"Steel Mirror","type":"loot","img":"icons/sundries/survival/mirror-plain.webp","system":{"description":{"value":"A mirror made of steel.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.5,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233563,"modifiedTime":1671220959196,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"HdC66U61pDOknaux","name":"Club +3","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +3","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"club","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233564,"modifiedTime":1671220959203,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"HeDP6dL9daVT3uj2","name":"Spear +2","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +2","piercing"]],"versatile":"1d8 + @mod +2"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"spear","properties":{"thr":true,"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233564,"modifiedTime":1671220959219,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"HnIERWmmra74hSCw","name":"Ring of Water Elemental Command","type":"equipment","img":"icons/equipment/finger/ring-cabochon-gold-purple.webp","system":{"description":{"value":"(Requires attunement)\nThis ring is linked to the Elemental Plane of Water.\nWhile wearing this ring, you have advantage on attack rolls against @Compendium[dnd5e.monsters.namJz755U1EhvEJa]{Water Elemental}s, and they have disadvantage on attack rolls against you. In addition, you have access to properties based on the linked plane.\nThe ring has 5 charges. It regains 1d4 + 1 expended charges daily at dawn. Spells cast from the ring have a save DC of 17.\nRing of Water Elemental Command. You can expend 2 of the ring's charges to cast @Compendium[dnd5e.spells.eEpy1ONlXumKS1mp]{Dominate Monster} on a Water Elemental. In addition, you can stand on and walk across liquid surfaces as if they were solid ground. You can also speak and understand Aquan.\nIf you help slay a Water Elemental while attuned to the ring, you gain access to the following additional properties:\n\nYou can breathe underwater and have a swimming speed equal to your walking speed.\nYou can cast the following spells from the ring, expending the necessary number of charges: @Compendium[dnd5e.spells.a3XtAO5n2GrqiAh5]{Create or Destroy Water} (1 charge), @Compendium[dnd5e.spells.7fFHlBk3UNX8gPKL]{Control Water} (3 charges), @Compendium[dnd5e.spells.WN2LWEljYU6QqnRH]{Ice Storm} (2 charges), or @Compendium[dnd5e.spells.fzZnVKLmBMo2f5up]{Wall of Ice} (3 charges).\n","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":25000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":5,"max":"5","per":"charges","recovery":"1d4 + 1"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233565,"modifiedTime":1671220959233,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"HnJqfKkYXIWo2sp9","name":"Vicious Warhammer","type":"weapon","img":"icons/weapons/hammers/hammer-drilling-spiked.webp","system":{"description":{"value":"A heavy metal hammer capable of being wielded with a single hand with a shield or in two hands to deliver crushing concussive blows.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d8 + @mod","bludgeoning"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"warhammer","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233566,"modifiedTime":1671220959244,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"HokQ1loVJTFxt27u","name":"Vorpal Longsword","type":"weapon","img":"icons/skills/melee/strike-sword-steel-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":24000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","slashing"]],"versatile":"1d10 + @mod +3"},"formula":"6d8","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233567,"modifiedTime":1671220959249,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"HpEEfZg9PRkXnMi4","name":"Splint Armor +1","type":"equipment","img":"icons/equipment/chest/breastplate-layered-steel.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":60,"price":{"value":1700,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"splint","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233568,"modifiedTime":1671220959253,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"I0WocDSuNpGJayPb","name":"Battleaxe","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-engraved-steel.webp","system":{"description":{"value":"A stout crescent blade mounted on a thick shaft wrapped in a sturdy grip. This axe is large enough to be wielded with two hands and is adorned with spikes upon the back-side of the blade and the top of the shaft.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"battleaxe","properties":{"ver":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233568,"modifiedTime":1671220959258,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"I5PWgE4IF40Iv9h4","name":"Giant Slayer Rapier","type":"weapon","img":"icons/weapons/swords/greatsword-flamberge.webp","system":{"description":{"value":"You gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":7000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","piercing"]],"versatile":""},"formula":"2d6","save":{"ability":"str","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233569,"modifiedTime":1671220959262,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"I7cOsXsklWkzouHA","name":"Vorpal Scimitar","type":"weapon","img":"icons/skills/melee/strike-sword-steel-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":24000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","slashing"]],"versatile":""},"formula":"6d8","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233570,"modifiedTime":1671220959267,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"IBhDAr7WkhWPYLVn","name":"Disguise Kit","type":"tool","img":"icons/equipment/back/cloak-hooded-blue.webp","system":{"description":{"value":"This pouch of cosmetics, hair dye, and small props lets you create disguises that change your physical appearance. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a visual disguise.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"disg","ability":"int","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233571,"modifiedTime":1671220959270,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"IGwDN9gtYxCrlrCr","name":"Elemental Gem of Earth","type":"consumable","img":"icons/commodities/gems/gem-faceted-octagon-yellow.webp","system":{"description":{"value":"Wondrous item\nThis yellow diamond contains a mote of elemental energy. When you use an action to break the gem, an @Compendium[dnd5e.monsters.sApYLZj9PTZ40wJr]{Earth Elemental} is summoned as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell, and the gem's magic is lost.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":960,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233571,"modifiedTime":1671220959274,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"IPkf0XNowClwXnjQ","name":"Longsword +1","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","slashing"]],"versatile":"1d10 + @mod +1"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233572,"modifiedTime":1671220959278,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"IY5PveXrF7VoFlWg","name":"Arrow +3","type":"consumable","img":"icons/weapons/ammunition/arrow-head-war.webp","system":{"description":{"value":"Ammunition used for bows of all varieties. It has been imbued with magic.\nYou have a bonus to attack and damage rolls made with this piece of magic ammunition. Once it hits a target, the ammunition is no longer magical.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.05,"price":{"value":400,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233572,"modifiedTime":1671220959282,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"IeM5Ha2cg0RA99q3","name":"Hide Armor +3","type":"equipment","img":"icons/equipment/chest/vest-cloth-tattered-tan.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":12,"price":{"value":24010,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"hide","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233573,"modifiedTime":1690538753935,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Ilyv71AeobM6AvIn","name":"Defender Scimitar","type":"weapon","img":"icons/weapons/polearms/spear-flared-silver-pink.webp","system":{"description":{"value":"(Requires attunement)You gain a +3 bonus to attack and damage rolls made with this magic weapon.The first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.Foundry NoteThe sword's bonus to attack and damage rolls have been included; please remember to manually subtract should the user transfer any of the bonus to their AC.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":24000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233574,"modifiedTime":1671220959300,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"IpBBqr0r7JanyVn0","name":"Ring of Thunder Resistance","type":"equipment","img":"icons/equipment/finger/ring-faceted-silver-orange.webp","system":{"description":{"value":"(Requires attunement)\nThis ring has been inlaid with a spinel stone that gleams when it catches the light.\nYou have resistance to thunder damage while wearing this ring.\nFor other rings of resistance, roll on the @Compendium[dnd5e.tables.MdTxWyYVhTIgtNcG]{Ring of Resistance} table","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233574,"modifiedTime":1671220959313,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"IrC5LPbWNxlAQoK7","name":"Ring of Radiant Resistance","type":"equipment","img":"icons/equipment/finger/ring-inlay-red.webp","system":{"description":{"value":"(Requires attunement)\nThis ring has been inlaid with a topaz stone that shimmers when it catches the light.\nYou have resistance to radiant damage while wearing this ring.\nFor other rings of resistance, roll on the @Compendium[dnd5e.tables.MdTxWyYVhTIgtNcG]{Ring of Resistance} table","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233575,"modifiedTime":1671220959318,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ItoGjtOtDOQ2noNM","name":"Crystal Ball","type":"consumable","img":"icons/commodities/gems/pearl-natural.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThe typical Crystal Ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the @Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying} spell (save DC 17) with it.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":50000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233575,"modifiedTime":1671220959323,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"IuVaBrq17AqxpXc4","name":"Wand of the War Mage +3","type":"equipment","img":"icons/weapons/staves/staff-engraved-red.webp","system":{"description":{"value":"(Requires attunement by a spellcaster)\nWhile holding this wand, you gain a bonus to spell attack rolls of +3. In addition, you ignore half cover when making a spell attack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":19200,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233576,"modifiedTime":1671220959328,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"J8gQdJJi5e8LmD7H","name":"Rope of Entanglement","type":"consumable","img":"icons/magic/nature/root-vine-thorned-coil-green.webp","system":{"description":{"value":"Wondrous item\nThis rope is 30 feet long and weighs 3 pounds. If you hold one end of the rope and use an action to speak its command word, the other end darts forward to entangle a creature you can see within 20 feet of you. The target must succeed on a DC 15 Dexterity saving throw or become restrained.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233577,"modifiedTime":1671220959332,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"JDTO996oInbiZGHW","name":"Breastplate +3","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":20,"price":{"value":24400,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":17,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"breastplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233577,"modifiedTime":1690538965498,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"JFiSlgcm3uSSBM5t","name":"Potion of Supreme Healing","type":"consumable","img":"icons/consumables/potions/potion-flask-stopped-red.webp","system":{"description":{"value":"The potion's red liquid glimmers when agitated.\nYou regain 10d4+20 hit points when you drink this potion.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":1350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d4 + 20","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233578,"modifiedTime":1671220959341,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"JNkjtTxYmEC7W34O","name":"Splint Armor of Resistance","type":"equipment","img":"icons/equipment/chest/breastplate-layered-steel.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":60,"price":{"value":6200,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":17,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"splint","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233578,"modifiedTime":1671220959355,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"JRJpKZyamkpa7awv","name":"Robe of Scintillating Colors","type":"equipment","img":"icons/magic/lightning/orb-ball-purple.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThis robe has 3 charges, and it regains 1d3 expended charges daily at dawn. While you wear it, you can use an action and expend 1 charge to cause the garment to display a shifting pattern of dazzling hues until the end of your next turn. During this time, the robe sheds bright light in a 30-foot radius and dim light for an additional 30 feet. Creatures that can see you have disadvantage on attack rolls against you. In addition, any creature in the bright light that can see you when the robe's power is activated must succeed on a DC 15 Wisdom saving throw or become stunned until the effect ends.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":30,"long":60,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d3","save":{"ability":"wis","dc":15,"scaling":"flat"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233579,"modifiedTime":1671220959366,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Jj4iFQQGvckx8Wsj","name":"Potion of Fire Resistance","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-glowing-red.webp","system":{"description":{"value":"The potion is a plain indescriminate color and smells slightly foul.\nWhen you drink this potion, you gain resistance to Fire type damage for 1 hour.\nFor other potions of resistance, roll on the @Compendium[dnd5e.tables.JzLOE4IxcmxjLLuz]{Potion of Resistance} table.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233579,"modifiedTime":1671220959375,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"JpwuGtFkfrGibQpP","name":"Greatsword of Wounding","type":"weapon","img":"icons/magic/water/heart-ice-freeze.webp","system":{"description":{"value":"(Requires attunement)\nHit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"1d4","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233580,"modifiedTime":1671220959380,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Jvf1NWFxcjfHnMQ5","name":"Cloak of Elvenkind","type":"equipment","img":"icons/equipment/back/cloak-heavy-fur-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile you wear this cloak with its hood up, Wisdom (Perception) checks made to see you have disadvantage, and you have advantage on Dexterity (Stealth) checks made to hide, as the cloak's color shifts to camouflage you. Pulling the hood up or down requires an action.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Hood must be up."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"5","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233580,"modifiedTime":1671220959392,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"JvoufrTkSDMsS9Sm","name":"Chain (10 feet)","type":"consumable","img":"icons/tools/fasteners/chain-steel-grey.webp","system":{"description":{"value":"A chain has 10 hit points. It can be burst with a successful DC 20 Strength check.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":20,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233581,"modifiedTime":1671220959397,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"JyYwliYiWEw2g0yJ","name":"Ring of Feather Falling","type":"equipment","img":"icons/equipment/finger/ring-cabochon-silver-gold-red.webp","system":{"description":{"value":"(Requires attunement)\nWhen you fall while wearing this ring, you descend 60 feet per round and take no damage from falling.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233582,"modifiedTime":1671220959917,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"K7h4LT03SNt2807z","name":"Vicious Hand Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"A lightweight crossbow designed to be held in one hand or strapped to one's wrist to fire light bolts.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"handcrossbow","properties":{"amm":true,"lgt":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233583,"modifiedTime":1671220959940,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KA2P6I48iOWlnboO","name":"Wand","type":"weapon","img":"icons/weapons/staves/staff-simple-green.webp","system":{"description":{"value":"A single-handed delicate implement of wood, bone, crystal, or other exotic materials which is commonly used as a focus to assist with arcane spellcasting.\nSpellcasting Focus. An arcane focus is a special item designed to channel the power of arcane spells. A sorcerer, warlock, or wizard can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"foc":true,"amm":false,"hvy":false,"fin":false,"fir":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233610,"modifiedTime":1671220959947,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KJYqNZgdkRwPmPMl","name":"Rapier of Wounding","type":"weapon","img":"icons/magic/water/heart-ice-freeze.webp","system":{"description":{"value":"(Requires attunement)\nHit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"1d4","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233611,"modifiedTime":1671220959953,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Feed","type":"consumable","img":"icons/consumables/grains/sack-rice-open-brown.webp","system":{"description":{"value":"Standard feed suitable for a mount or other animal, often consisting of grains or hay.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"KJuLguMZCThrQOEx","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233611,"modifiedTime":1671220959958,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KKWBLKQIWHtcpymp","name":"Boots of Elvenkind","type":"equipment","img":"icons/equipment/feet/shoes-collared-leather-blue.webp","system":{"description":{"value":"Wondrous item\nWhile you wear these boots, your steps make no sound, regardless of the surface you are moving across. You also have advantage on Dexterity (Stealth) checks that rely on moving silently.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233612,"modifiedTime":1671220959973,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KhRhwADrTpol3yTx","name":"Ring Mail +3","type":"equipment","img":"icons/equipment/chest/breastplate-banded-simple-leather-brown.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":40,"price":{"value":24030,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":17,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"ringmail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233612,"modifiedTime":1690539379739,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KndVe2insuctjIaj","name":"Smith's Tools","type":"tool","img":"icons/skills/trades/smithing-tongs-metal-red.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in smithing.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":8,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"smith","ability":"str","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233613,"modifiedTime":1671220959984,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KvIlZssYEtQ4bvSE","name":"Warhammer +2","type":"weapon","img":"icons/weapons/hammers/hammer-drilling-spiked.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +2","bludgeoning"]],"versatile":"1d10 + @mod +2"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"warhammer","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233613,"modifiedTime":1671220959989,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"L4PxYPtYca283sju","name":"Scimitar of Wounding","type":"weapon","img":"icons/magic/water/heart-ice-freeze.webp","system":{"description":{"value":"(Requires attunement)\nHit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"1d4","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233614,"modifiedTime":1671220959995,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"L887NdWEP5NqHCrQ","name":"Potion of Greater Healing","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-glowing-red.webp","system":{"description":{"value":"The potion's red liquid glimmers when agitated.\nYou regain 4d4+4 hit points when you drink this potion.\n \n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":150,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d4 + 4","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233614,"modifiedTime":1671220960000,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"L9KBLub5vfb3mTDz","name":"Ring of Fire Elemental Command","type":"equipment","img":"icons/equipment/finger/ring-inlay-red.webp","system":{"description":{"value":"(Requires attunement)\nThis ring is linked to the Elemental Plane of Fire.\nWhile wearing this ring, you have advantage on attack rolls against @Compendium[dnd5e.monsters.8SMQl75HLjhuSeau]{Fire Elemental}s, and they have disadvantage on attack rolls against you. In addition, you have access to properties based on the linked plane.\nThe ring has 5 charges. It regains 1d4 + 1 expended charges daily at dawn. Spells cast from the ring have a save DC of 17.\nRing of Fire Elemental Command. You can expend 2 of the ring's charges to cast @Compendium[dnd5e.spells.eEpy1ONlXumKS1mp]{Dominate Monster} on a Fire Elemental. In addition, you have resistance to fire damage. You can also speak and understand Ignan.\nIf you help slay a Fire Elemental while attuned to the ring, you gain access to the following additional properties:\n\nYou are immune to fire damage.\nYou can cast the following spells from the ring, expending the necessary number of charges: @Compendium[dnd5e.spells.5SuJewoa1CRWaj1F]{Burning Hands} (1 charge), @Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball} (2 charges), or @Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire} (3 charges).\n","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":17000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":5,"max":"5","per":"charges","recovery":"1d4 + 1"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233615,"modifiedTime":1671220960009,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LBQWNqX6hZOKhQ8a","name":"Potion of Radiant Resistance","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-yellow.webp","system":{"description":{"value":"The potion is a plain indescriminate color and smells slightly foul.\nWhen you drink this potion, you gain resistance to Radiant type damage for 1 hour.\nFor other potions of resistance, roll on the @Compendium[dnd5e.tables.JzLOE4IxcmxjLLuz]{Potion of Resistance} table.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233615,"modifiedTime":1671220960020,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LBajgahniRJbAgDr","name":"Spellbook","type":"loot","img":"icons/sundries/books/book-embossed-jewel-gold-purple.webp","system":{"description":{"value":"Essential for wizards, a spellbook is a leather-bound tome with 100 blank vellum pages suitable for recording spells.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233616,"modifiedTime":1671220960025,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LC5LsQOPwoHQW9Mi","name":"Ring of Water Walking","type":"equipment","img":"icons/equipment/finger/ring-faceted-gold-purple.webp","system":{"description":{"value":"While wearing this ring, you can stand on and move across any liquid surface as if it were solid ground.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233616,"modifiedTime":1671220960030,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LDuqUcosOK8Bf76S","name":"Adamantine Splint Armor","type":"equipment","img":"icons/equipment/chest/breastplate-layered-steel.webp","system":{"description":{"value":"This armor is reinforced with adamantine, one of the hardest substances in existence.\nWhile you're wearing it, any critical hit against you becomes a normal hit.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":60,"price":{"value":700,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":17,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"splint","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233617,"modifiedTime":1671220960041,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LEC1wkaAUnWzDPDD","name":"Javelin of Lightning","type":"weapon","img":"icons/magic/lightning/bolt-strike-blue.webp","system":{"description":{"value":"This javelin is a magic weapon. When you hurl it and speak its command word, it transforms into a bolt of lightning, forming a line 5 feet wide that extends out from you to a target within 120 feet. Each creature in the line excluding you and the target must make a DC 13 Dexterity saving throw, taking 4d6 lightning damage on a failed save, and half as much damage on a successful one. The lightning bolt turns back into a javelin when it reaches the target. Make a ranged weapon attack against the target. On a hit, the target takes damage from the javelin plus 4d6 lightning damage.\nThe javelin's property can't be used again until the next dawn. In the meantime, the javelin can still be used as a magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":120,"width":null,"units":"ft","type":"line"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"],["4d6","lightning"]],"versatile":""},"formula":"4d6","save":{"ability":"dex","dc":13,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"javelin","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233617,"modifiedTime":1671220960056,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LHaqMvrx3PfSzWMQ","name":"Bag of Tricks (Tan)","type":"consumable","img":"icons/containers/bags/sack-twisted-leather-red.webp","system":{"description":{"value":"Wondrous item\nThis ordinary bag, made from tan cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, fuzzy object. The bag weighs 1/2 pound.\nYou can use an action to pull the fuzzy object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling on the @Compendium[dnd5e.tables.5PTePCTxrk2fIrll]{Tan Bag of Tricks} table.\nThe creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature.\nOnce three fuzzy objects have been pulled from the bag, the bag can't be used again until the next dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.5,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"space"},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233618,"modifiedTime":1671220960062,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LZcpcR21nte4Yoe2","name":"Handaxe +2","type":"weapon","img":"icons/weapons/axes/axe-broad-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +2","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"handaxe","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233619,"modifiedTime":1671220960080,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LdAj2ES9EzfnWcA1","name":"Adamantine Scale Mail","type":"equipment","img":"icons/equipment/chest/breastplate-banded-steel.webp","system":{"description":{"value":"This armor is reinforced with adamantine, one of the hardest substances in existence.\nWhile you're wearing it, any critical hit against you becomes a normal hit.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":45,"price":{"value":550,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"scalemail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233619,"modifiedTime":1690538814424,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LiOD83I4MIZlpoQQ","name":"Hunting Trap","type":"consumable","img":"icons/environment/traps/trap-jaw-steel.webp","system":{"description":{"value":"When you use your action to set it, this trap forms a saw-toothed steel ring that snaps shut when a creature steps on a pressure plate in the center. The trap is affixed by a heavy chain to an immobile object, such as a tree or a spike driven into the ground. A creature that steps on the plate must succeed on a DC 13 Dexterity saving throw or take 1d4 piercing damage and stop moving. Thereafter, until the creature breaks free of the trap, its movement is limited by the length of the chain (typically 3 feet long). A creature can use its action to make a DC 13 Strength check, freeing itself or another creature within its reach on a success. Each failed check deals 1 piercing damage to the trapped creature.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":25,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","piercing"]],"versatile":"1"},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233620,"modifiedTime":1671220960104,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LpD064ilKEeFzVI8","name":"Cloak of Displacement","type":"equipment","img":"icons/equipment/back/cloak-heavy-fur-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile you wear this cloak, it projects an illusion that makes you appear to be standing in a place near your actual location, causing any creature to have disadvantage on attack rolls against you. If you take damage, the property ceases to function until the start of your next turn.\nThis property is suppressed while you are incapacitated, restrained, or otherwise unable to move.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":60000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"5","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233620,"modifiedTime":1671220960109,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Lr8aRsnia8hftPAb","name":"Dagger +2","type":"weapon","img":"icons/weapons/daggers/dagger-jeweled-purple.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"dagger","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233621,"modifiedTime":1671220960124,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"M28HYDCueaK7J8u8","name":"Ring Mail +2","type":"equipment","img":"icons/equipment/chest/breastplate-banded-simple-leather-brown.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":40,"price":{"value":6030,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"ringmail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233621,"modifiedTime":1690539376292,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"M5APnDW8bKQb7fHI","name":"Shield of Missile Attraction","type":"equipment","img":"icons/equipment/shield/kite-decorative-steel-claws.webp","system":{"description":{"value":"(Requires attunement)\nWhile holding this shield, you have resistance to damage from ranged weapon attacks.\nCurse. This shield is cursed. Attuning to it curses you until you are targeted by the @Compendium[dnd5e.spells.XZhdgVK3cLoxNCQl]{Remove Curse} spell or similar magic. Removing the shield fails to end the curse on you. Whenever a ranged weapon attack is made against a target within 10 feet of you, the curse causes you to become the target instead.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":"Any ranged attack within 10 ft. of you causes you to be the target."},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233622,"modifiedTime":1690539785544,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"M5qkJ7erLqWYUHa0","name":"Figurine of Wondrous Power (Obsidian Steed)","type":"consumable","img":"icons/magic/light/beam-red-orange.webp","system":{"description":{"value":"Wondrous item\nA figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\nObsidian Steed. This polished obsidian horse can become a @Compendium[dnd5e.monsters.5SgVGhQBswgWRwsF]{Nightmare} for up to 24 hours. The nightmare fights only to defend itself. Once it has been used, it can't be used again until 5 days have passed.\nIf you have a good alignment, the figurine has a 10 percent chance each time you use it to ignore your orders, including a command to revert to figurine form. If you mount the nightmare while it is ignoring your orders, you and the nightmare are instantly transported to a random location on the plane of Hades, where the nightmare reverts to figurine form.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":128000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233622,"modifiedTime":1671220960138,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"M8xM8BLK4tpUayEE","name":"Iron Pot","type":"backpack","img":"icons/tools/laboratory/cauldron-filled-gold.webp","system":{"description":{"value":"An iron pot holds 1 gallon of liquid.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":8.4,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233623,"modifiedTime":1671220960143,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MAwoj2suj6cvb9Ti","name":"Universal Solvent","type":"consumable","img":"icons/commodities/materials/liquid-purple.webp","system":{"description":{"value":"Wondrous item\nThis tube holds milky liquid with a strong alcohol smell. You can use an action to pour the contents of the tube onto a surface within reach. The liquid instantly dissolves up to 1 square foot of adhesive it touches, including Sovereign Glue.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"ft","type":"square"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233624,"modifiedTime":1671220960147,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MCMSZrhcD40oMJ9v","name":"Boots of Speed","type":"equipment","img":"icons/equipment/feet/boots-collared-simple-leather.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile you wear these boots, you can use a bonus action and click the boots' heels together. If you do, the boots double your walking speed, and any creature that makes an opportunity attack against you has disadvantage on the attack roll. If you click your heels together again, you end the effect.\nWhen the boots' property has been used for a total of 10 minutes, the magic ceases to function until you finish a long rest.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":4000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"bonus","cost":1,"condition":"Click the heels together."},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233624,"modifiedTime":1671220960154,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MFd96UkSs5g9QO78","name":"Dragon Slayer Shortsword","type":"weapon","img":"icons/skills/melee/strike-axe-blood-red.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","piercing"]],"versatile":""},"formula":"3d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233625,"modifiedTime":1671220960159,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MLNzQUsVUi0PEV3i","name":"Efficient Quiver","type":"backpack","img":"icons/containers/ammunition/arrows-quiver-black.webp","system":{"description":{"value":"Wondrous item\nEach of the quiver's three compartments connects to an extradimensional space that allows the quiver to hold numerous items while never weighing more than 2 pounds.\nThe shortest compartment can hold up to sixty arrows, bolts, or similar objects. The midsize compartment holds up to eighteen javelins or similar objects. The longest compartment holds up to six long objects, such as bows, quarterstaffs, or spears.\nYou can draw any item the quiver contains as if doing so from a regular quiver or scabbard.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"capacity":{"type":"items","value":84,"weightless":true},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233625,"modifiedTime":1671220960175,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MOeFq5MLAQzVQC7z","name":"Staff of the Python","type":"weapon","img":"icons/weapons/staves/staff-simple-spiral-green.webp","system":{"description":{"value":"(Requires attunement by a cleric, druid, or warlock)\nYou can use an action to speak this staff's command word and throw the staff on the ground within 10 feet of you. The staff becomes a @Compendium[dnd5e.monsters.NpvwE1feOHyEqAbP]{Giant Constrictor Snake} under your control and acts on its own initiative count. By using a bonus action to speak the command word again, you return the staff to its normal form in a space formerly occupied by the snake.\nOn your turn, you can mentally command the snake if it is within 60 feet of you and you aren't incapacitated. You decide what action the snake takes and where it moves during its next turn, or you can issue it a general command, such as to attack your enemies or guard a location.\nIf the snake is reduced to 0 hit points, it dies and reverts to its staff form. The staff then shatters and is destroyed. If the snake reverts to staff form before losing all its hit points, it regains all of them.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233626,"modifiedTime":1671220960180,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MSO3JxK8578xSh6x","name":"Chain Shirt +1","type":"equipment","img":"icons/equipment/chest/breastplate-scale-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":20,"price":{"value":1550,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainshirt","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233626,"modifiedTime":1690538780227,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Minr6xegwoHFvAjG","name":"Figurine of Wondrous Power (Golden Lions)","type":"consumable","img":"icons/commodities/claws/claw-bear-brown-grey.webp","system":{"description":{"value":"Wondrous item\nA figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\nGolden Lions. These gold statuettes of lions are always created in pairs. You can use one figurine or both simultaneously. Each can become a @Compendium[dnd5e.monsters.hjhERRzafCiFFVLA]{Lion} for up to 1 hour. Once a lion has been used, it can't be used again until 7 days have passed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":1200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":2,"max":"2","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233627,"modifiedTime":1671220960208,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Mj8fTo5VZKJJ7uMv","name":"Sling Bullet of Slaying","type":"consumable","img":"icons/skills/ranged/bullets-triple-ball-yellow.webp","system":{"description":{"value":"A Bullet of Slaying is a magic weapon meant to slay a particular kind of creature. Some are more focused than others; for example, there are both Bullets of Dragon Slaying and Bullets of Blue Dragon Slaying. If a creature belonging to the type, race, or group associated with a Bullet of Slaying takes damage from the bullet, the creature must make a DC 17 Constitution saving throw, taking an extra 6d10 bludgeoning damage on a failed save, or half as much extra damage on a successful one.\nOnce a Bullet of Slaying deals its extra damage to a creature, it becomes a nonmagical bullet.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.075,"price":{"value":600,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"6d10","save":{"ability":"con","dc":17,"scaling":"flat"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233627,"modifiedTime":1671220960214,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MnX9soPEMNsCtpv7","name":"Hand Crossbow +1","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"handcrossbow","properties":{"amm":true,"lgt":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233628,"modifiedTime":1671220960228,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Mt2WB1W9nDWO4d16","name":"Glaive +2","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +2","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"glaive","properties":{"hvy":true,"two":true,"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233628,"modifiedTime":1671220960233,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Riding Saddle","type":"equipment","img":"icons/equipment/shoulder/pauldron-leather-molded.webp","system":{"description":{"value":"A type of seat that is fastened to a mount's back, designed to support the rider and affix part of the mount's tack such as stirrups. This type of saddle is suitable for riding mounts.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":25,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"N0in6FE8DQdZrHei","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233629,"modifiedTime":1671220960238,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"N8XNP3vjVZmM2r9S","name":"Blowgun +1","type":"weapon","img":"icons/weapons/staves/staff-simple-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":25,"long":100,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"blowgun","properties":{"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233629,"modifiedTime":1671220960250,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NG8BlE2nwYJxCjWO","name":"Animated Shield","type":"equipment","img":"icons/equipment/shield/heater-steel-sword-yellow-black.webp","system":{"description":{"value":"(Requires attunement)\nWhile holding this shield, you can speak its command word as a bonus action to cause it to animate. The shield leaps into the air and hovers in your space to protect you as if you were wielding it, leaving your hands free. The shield remains animated for 1 minute, until you use a bonus action to end this effect, or until you are incapacitated or die, at which point the shield falls to the ground or into your hand if you have one free.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"bonus","cost":1,"condition":"Command Word"},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233630,"modifiedTime":1671220960260,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NGVEouqK0I6J6jV5","name":"Ioun Stone of Absorption","type":"equipment","img":"icons/commodities/gems/gem-rough-ball-purple.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Absorption. While this pale lavender ellipsoid orbits your head, you can use your reaction to cancel a spell of 4th level or lower cast by a creature you can see and targeting only you.\nOnce the stone has canceled 20 levels of spells, it burns out and turns dull gray, losing its magic. If you are targeted by a spell whose level is higher than the number of spell levels the stone has left, the stone can't cancel it.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":2400,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":20,"max":"20","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233630,"modifiedTime":1671220960278,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NM1dPyKwHw2DyUWA","name":"Ring Mail +1","type":"equipment","img":"icons/equipment/chest/breastplate-banded-simple-leather-brown.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":40,"price":{"value":1530,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"ringmail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233631,"modifiedTime":1690539372945,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NRj0lC3SM03s1YB3","name":"Belt of Cloud Giant Strength","type":"equipment","img":"icons/equipment/waist/belt-thick-gemmed-steel-grey.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this belt, your Strength score changes to 27. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":18000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[{"label":"Belt of Cloud Giant Strength","icon":"icons/equipment/waist/belt-thick-gemmed-steel-grey.webp","origin":"Compendium.dnd5e.items.NRj0lC3SM03s1YB3","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"iGbcuTRYb2okyQeS","changes":[{"key":"system.abilities.str.value","mode":4,"value":"27"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233631,"modifiedTime":1690480168162,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NYIib9KEYDUFe9GY","name":"Sling Bullet +1","type":"consumable","img":"icons/skills/ranged/bullets-triple-ball-yellow.webp","system":{"description":{"value":"A hardened pebble of stone, bone, or metal which can be flung at high velocity using a sling. It has been imbued with magic.\nYou have a bonus to attack and damage rolls made with this piece of magic ammunition. Once it hits a target, the ammunition is no longer magical.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.075,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233632,"modifiedTime":1671220960293,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Nd4r4hocpfu6fYDP","name":"Prayer Wheel","type":"loot","img":"icons/tools/instruments/drum-brown-red.webp","system":{"description":{"value":"An aid for the faithful, this cylinder can be turned on a spindle made of metal, wood, bone, stone, leather, or coarse cotton as the user follows mantra or cantation carved or inlaid upon it. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.5,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233632,"modifiedTime":1671220960300,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NgwrqNa6kkgoPW2Q","name":"Shield +1","type":"equipment","img":"icons/equipment/shield/round-wooden-boss-gold-brown.webp","system":{"description":{"value":"While holding this shield, you have a bonus to AC of +1. This bonus is in addition to the shield's normal bonus to AC.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":3,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233633,"modifiedTime":1690539669653,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NjTgPn2o0M1TGk93","name":"Feather Token Tree","type":"consumable","img":"icons/commodities/materials/feather-colored-green.webp","system":{"description":{"value":"Wondrous item\nThis tiny object looks like a feather. Different types of feather tokens exist, each with a different single-use effect. The GM chooses the kind of token or determines it randomly from the @Compendium[dnd5e.tables.OEdr086W61t1DRJo]{Feather Token} table.\nTree. You must be outdoors to use this token. You can use an action to touch it to an unoccupied space on the ground. The token disappears, and in its place a nonmagical oak tree springs into existence. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":250,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"space"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233634,"modifiedTime":1671220960312,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NmZMx2u6bHpRyGUa","name":"Frost Brand Longsword","type":"weapon","img":"icons/skills/melee/strike-weapon-polearm-ice-blue.webp","system":{"description":{"value":"(Requires attunement)\nWhen you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":2200,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"],["1d6","cold"]],"versatile":"1d10 + @mod + 1d6"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233634,"modifiedTime":1671220960317,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NrHboku9vJO5FGiY","name":"Morningstar +2","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"morningstar","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233635,"modifiedTime":1671220960327,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NtdDkjmpdIMiX7I2","name":"Dulcimer","type":"tool","img":"icons/tools/instruments/lute-gold-brown.webp","system":{"description":{"value":"A dulcimer to evoke awe, wonder, or fear in your audience.\nIf you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"music","baseItem":"dulcimer","ability":"cha","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233635,"modifiedTime":1671220960332,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"O4YbkJkLlnsgUszZ","name":"Spell Scroll 9th Level","type":"consumable","img":"icons/sundries/scrolls/scroll-runed-brown-purple.webp","system":{"description":{"value":"A spell scroll bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can read the scroll and cast its spell without providing any material components. Otherwise, the scroll is unintelligible. Casting the spell by reading the scroll requires the spell's normal casting time. Once the spell is cast, the words on the scroll fade, and it crumbles to dust. If the casting is interrupted, the scroll is not lost.\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 19 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity.\nSave DC: 19Attack Bonus: +11.\nA wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 19 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":5120,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":"Spell must be on the caster's spell list."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"11","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":19,"scaling":"flat"},"consumableType":"scroll"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233636,"modifiedTime":1671220960336,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"OG4nBBydvmfWYXIk","name":"Spear","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"A gleaming steel point mouted atop a stout wooden haft, the spear may be wielded in one hand or two and can puncture through the heaviest armor with deadly force.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"spear","properties":{"thr":true,"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233636,"modifiedTime":1671220960340,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"OPbdSlrhkUDNpgcS","name":"Wand of the War Mage +1","type":"equipment","img":"icons/weapons/staves/staff-engraved-red.webp","system":{"description":{"value":"(Requires attunement by a spellcaster)\nWhile holding this wand, you gain a bonus to spell attack rolls of +1. In addition, you ignore half cover when making a spell attack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1200,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233637,"modifiedTime":1671220960346,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ORKf6RRcalrdD6Qp","name":"Belt of Frost Giant Strength","type":"equipment","img":"icons/equipment/waist/cloth-sash-purple.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this belt, your Strength score changes to 23. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\nThe Belt of Stone Giant Strength and the Belt of Frost Giant Strength look different, but they have the same effect.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[{"label":"Belt of Frost Giant Strength","icon":"icons/equipment/waist/cloth-sash-purple.webp","origin":"Compendium.dnd5e.items.ORKf6RRcalrdD6Qp","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"uTXTubfcSCEANSBh","changes":[{"key":"system.abilities.str.value","mode":4,"value":"23"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233637,"modifiedTime":1690480308813,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"OUGMoQYeJzxEcRvm","name":"Nine Lives Stealer Rapier","type":"weapon","img":"icons/weapons/swords/sword-broad-crystal-paired.webp","system":{"description":{"value":"(Requires attunement)You gain a +2 bonus to attack and damage rolls made with this magic weapon.The sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.Foundry NoteThe 9 charges reflect a fully charged blade. Please adjust accordingly as required.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Critical hit on a creature of 100 hit points or less. Undead and constructs are immune."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":9,"max":"9","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233638,"modifiedTime":1671220960355,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"OcjcplcUWH07Kn9k","name":"Brazier of Commanding Fire Elementals","type":"consumable","img":"icons/magic/fire/blast-jet-stream-splash.webp","system":{"description":{"value":"Wondrous item\nWhile a fire burns in this brazier, you can use an action to speak the brazier's command word and summon a @Compendium[dnd5e.monsters.8SMQl75HLjhuSeau]{Fire Elemental}, as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell. The brazier can't be used this way again until the next dawn.\nThe brazier weighs 5 pounds.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":8000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233638,"modifiedTime":1671220960359,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"OjkIqlW2UpgFcjZa","name":"Plate Armor","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel.webp","system":{"description":{"value":"Plate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":65,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233639,"modifiedTime":1690539455523,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"OojyyGfh91iViuMF","name":"Rod","type":"weapon","img":"icons/weapons/polearms/spear-hooked-blue.webp","system":{"description":{"value":"An intricately carved or shaped rod of bone, stone, metal, or more exotic materials. Such rods are used by spellcasters to focus their attention and arcane energy.\nSpellcasting Focus. An arcane focus is a special item designed to channel the power of arcane spells. A sorcerer, warlock, or wizard can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":true,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233639,"modifiedTime":1671220960379,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Or3kVfJ0Fbr33ARS","name":"Greatclub +2","type":"weapon","img":"icons/weapons/maces/mace-spiked-steel-grey.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +2","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"club","properties":{"two":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233640,"modifiedTime":1671220960384,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"OwqRt1pVLhdMQa0d","name":"Dwarven Plate","type":"equipment","img":"icons/equipment/chest/breastplate-layered-steel-green.webp","system":{"description":{"value":"While wearing this plate armor, you gain a +2 bonus to AC. In addition, if an effect moves you against your will along the ground, you can use your reaction to reduce the distance you are moved by up to 10 feet.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":65,"price":{"value":9000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":20,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233641,"modifiedTime":1690539518215,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"P8f9o36qxagW2uRW","name":"Maul +3","type":"weapon","img":"icons/weapons/maces/mace-spiked-wood-grey.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod +3","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"maul","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233641,"modifiedTime":1671220960395,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"PAXfmZ2ErDlCVy0N","name":"Talisman of Ultimate Evil","type":"consumable","img":"icons/magic/death/skull-horned-goat-pentagram-red.webp","system":{"description":{"value":"Wondrous item, (requires attunement by a creature of evil alignment)\nThis item symbolizes unrepentant evil. A creature that is neither good nor evil in alignment takes 6d6 necrotic damage upon touching the talisman. A good creature takes 8d6 necrotic damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.\nIf you are an evil cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.\nThe talisman has 6 charges. If you are wearing or holding it, you can use an action to expend 1 charge from the talisman and choose one creature you can see on the ground within 120 feet of you. If the target is of good alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman dissolves into foul-smelling slime and is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":61440,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":6,"max":"6","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6","necrotic"]],"versatile":"8d6"},"formula":"","save":{"ability":"dex","dc":20,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233642,"modifiedTime":1671220960399,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"PAa2EG5kzmqxcp46","name":"Greataxe +3","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod +3","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greataxe","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233642,"modifiedTime":1671220960405,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"PGL6aaM0wE5h0VN5","name":"Totem","type":"weapon","img":"icons/equipment/neck/collar-carved-bone-teeth-ring.webp","system":{"description":{"value":"A totem incorporating feathers, fur, bones, and teeth from an animal sacred to the user. Those who heed nature's call are able to harness this to call forth the incredible power of nature.\nSpellcasting Focus. A druidic focus is a special item designed to channel the power of spells from the druid's spell list. A druid can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":true,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233643,"modifiedTime":1671220960410,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"PKpftwMAn88gfLi7","name":"Morningstar +1","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"morningstar","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233644,"modifiedTime":1671220960415,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Military Saddle","type":"equipment","img":"icons/equipment/shoulder/shoulderpad-leather-banded-ring.webp","system":{"description":{"value":"A type of seat that is fastened to a mount's back, designed to support the rider and affix part of the mount's tack such as stirrups.A military saddle braces the rider, helping you keep your seat on an active mount in battle. It gives you advantage on any check you make to remain mounted.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":30,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"PLkzJ310FzBnRrI5","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233644,"modifiedTime":1671220960420,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"PRhtLbRLb9LjHZG7","name":"Gloves of Swimming and Climbing","type":"equipment","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing these gloves, climbing and swimming don't cost you extra movement, and you gain a +5 bonus to Strength (Athletics) checks made to climb or swim.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233645,"modifiedTime":1671220960424,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"PUMfwyVUbtyxgYbD","name":"Leatherworker's Tools","type":"tool","img":"icons/commodities/leather/leather-buckle-steel-tan.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in leatherworking.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"leatherworker","ability":"int","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233645,"modifiedTime":1671220960427,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"PV0sn2Nlr8CNn4W9","name":"Magnifying Glass","type":"loot","img":"icons/tools/scribal/magnifying-glass.webp","system":{"description":{"value":"This lens allows a closer look at small objects. It is also useful as a substitute for flint and steel when starting fires. Lighting a fire with a magnifying glass requires light as bright as sunlight to focus, tinder to ignite, and about 5 minutes for the fire to ignite. A magnifying glass grants advantage on any ability check made to appraise or inspect an item that is small or highly detailed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":100,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233646,"modifiedTime":1671220960430,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"PanSr5EbqlfpSvwK","name":"Two-Person Tent","type":"loot","img":"icons/environment/wilderness/camp-improvised.webp","system":{"description":{"value":"A simple and portable canvas shelter, a tent sleeps two.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":20,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233646,"modifiedTime":1671220960433,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Q4Iy6hqREsbk9yG7","name":"Ioun Stone of Agility","type":"equipment","img":"icons/commodities/gems/gem-rough-cushion-red.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Agility. Your Dexterity score increases by 2, to a maximum of 20, while this deep red sphere orbits your head.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":3000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[{"label":"Ioun Stone of Agility","icon":"icons/commodities/gems/gem-rough-cushion-red.webp","origin":"Compendium.dnd5e.items.Q4Iy6hqREsbk9yG7","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"f4ScI5hFiyWF5heN","changes":[{"key":"system.abilities.dex.value","mode":2,"value":"+2"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233647,"modifiedTime":1690480723227,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Q4jmng3i9Lb2nL5F","name":"Manual of Quickness of Action","type":"consumable","img":"icons/sundries/books/book-symbol-triangle-silver-blue.webp","system":{"description":{"value":"Wondrous item\nThis book contains coordination and balance exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Dexterity score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":100000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"hour","cost":48,"condition":"The book must be completed in 6 days or less."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233647,"modifiedTime":1671220960441,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Q7E6MgPzVkwBeZ6l","name":"Ring of Psychic Resistance","type":"equipment","img":"icons/equipment/finger/ring-cabochon-notched-gold-green.webp","system":{"description":{"value":"(Requires attunement)\nThis ring has been inlaid with a jade stone that gleams when it catches the light.\nYou have resistance to psychic damage while wearing this ring.\nFor other rings of resistance, roll on the @Compendium[dnd5e.tables.MdTxWyYVhTIgtNcG]{Ring of Resistance} table","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233648,"modifiedTime":1671220960447,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"QB4CFMTLR6JlD7Kq","name":"Greatsword of Sharpness","type":"weapon","img":"icons/skills/wounds/bone-broken-knee-beam.webp","system":{"description":{"value":"(Requires attunement)\nWhen you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10-foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":1700,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":20,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"4d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233648,"modifiedTime":1671220960450,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"QKTyxoO0YDnAsbYe","name":"Whip","type":"weapon","img":"icons/weapons/misc/whip-red-yellow.webp","system":{"description":{"value":"A tensile lash made of leather, cord, or chain which can lash out at nearby enemies, dealing lacerations and harrying them from a distance.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"whip","properties":{"fin":true,"rch":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233649,"modifiedTime":1671220960457,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"QM3gdsL0eaAus7XT","name":"Vicious Handaxe","type":"weapon","img":"icons/weapons/axes/axe-broad-black.webp","system":{"description":{"value":"This one-handed axe is light and balanced for throwing while remaining useful in hand combat.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"handaxe","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233650,"modifiedTime":1671220960461,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"QRCsxkCwWNwswL9o","name":"Greatclub","type":"weapon","img":"icons/weapons/maces/mace-spiked-steel-grey.webp","system":{"description":{"value":"A larger variant of the simple club, a hefty wooden shaft with an enormous knot of wood upon the end deals crippling bludgeoning damage to unfortunate foes.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"club","properties":{"two":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233650,"modifiedTime":1671220960467,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"QXmaarJ4X8P0C1HV","name":"Hempen Rope (50 ft.)","type":"consumable","img":"icons/sundries/survival/rope-wrapped-brown.webp","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233651,"modifiedTime":1671220960482,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"QYJyQCnIQeLiMrmJ","name":"Brass Horn of Valhalla","type":"consumable","img":"icons/tools/instruments/flute-simple-wood.webp","system":{"description":{"value":"Wondrous item\nYou can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a @Compendium[dnd5e.monsters.kz1t6xeXVwODpYb2]{Berserker}. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\nFour types of Horn of Valhalla are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly from the @Compendium[dnd5e.tables.RwerG95cIk2uRpsQ]{Horn of Valhalla} table.\nBrass Horn of Valhalla.This brass horn summons [[/r 3d4 + 3]] berserkers when blown and requires proficiency with all simple weapons to be used.\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":8400,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d4 +3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233651,"modifiedTime":1671220960487,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Qfi5Rsuun3reqYmf","name":"Handaxe +1","type":"weapon","img":"icons/weapons/axes/axe-broad-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"handaxe","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233652,"modifiedTime":1671220960494,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"QtmVEreNIWEVOoLR","name":"Ring of Protection","type":"equipment","img":"icons/equipment/finger/ring-cabochon-silver-gold-red.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to AC and saving throws while wearing this ring.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":3500,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[{"_id":"q1wbe9ru251bfnhg","changes":[{"key":"system.attributes.ac.bonus","mode":2,"value":"+1","priority":null},{"key":"system.bonuses.abilities.save","mode":2,"value":"+1","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/equipment/finger/ring-cabochon-silver-gold-red.webp","label":"Ring of Protection","origin":"Compendium.dnd5e.items.QtmVEreNIWEVOoLR","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233653,"modifiedTime":1690481162093,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"RDPFmUR9exTEXFc8","name":"Boots of the Winterlands","type":"equipment","img":"icons/equipment/feet/boots-leather-banded-furred.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThese furred boots are snug and feel quite warm. While you wear them, you gain the following benefits:\n\nYou have resistance to cold damage.\nYou ignore difficult terrain created by ice or snow. You can tolerate temperatures as low as −50 degrees Fahrenheit without any additional protection. If you wear heavy clothes, you can tolerate temperatures as low as −100 degrees Fahrenheit.\n","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":10000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[{"label":"Boots of the Winterlands","icon":"icons/equipment/feet/boots-leather-banded-furred.webp","origin":"Compendium.dnd5e.items.RDPFmUR9exTEXFc8","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"6PXhI0qCk64LuoXO","changes":[{"key":"system.traits.dr.value","mode":2,"value":"cold"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233655,"modifiedTime":1690480634095,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"REBWkTKe6lJaIkpn","name":"Soap","type":"loot","img":"icons/sundries/survival/soap.webp","system":{"description":{"value":"Used to clean and wash.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233655,"modifiedTime":1671220960511,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"RMi9efrW9ouHVLI2","name":"Book","type":"loot","img":"icons/sundries/books/book-worn-brown.webp","system":{"description":{"value":"A book might contain poetry, historical accounts, information pertaining to a particular field of lore, diagrams and notes on gnomish contraptions, or just about anything else that can be represented using text or pictures. A book of spells is a spellbook.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233655,"modifiedTime":1671220960514,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"RbC0UCqAnQcIPIXZ","name":"War Pick +2","type":"weapon","img":"icons/weapons/axes/pickaxe-double-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"warpick","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233656,"modifiedTime":1671220960518,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"RfEZvwcLwe6Ih0LQ","name":"Greatsword +3","type":"weapon","img":"icons/weapons/swords/greatsword-guard-gem-blue.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod +3","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233656,"modifiedTime":1671220960524,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"RiOeHR2qaYktz5Ys","name":"Iron Spike","type":"consumable","img":"icons/tools/fasteners/nails-steel-brown.webp","system":{"description":{"value":"A spike of 10 inches long made of iron. Can be improvised to block doors. Usually sold in bundles of 10.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.5,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233657,"modifiedTime":1671220960528,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"RmP0mYRn2J7K26rX","name":"Heavy Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-blue.webp","system":{"description":{"value":"A large crossbow mounted on a sturdy block of wood which is loaded using a hand crank and fires thick steel bolts with deadly acceleration that punches through armor and flesh.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":18,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":100,"long":400,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"heavycrossbow","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233658,"modifiedTime":1671220960532,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Rn9gt6JGULtx9Zvz","name":"Chain Mail +1","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":55,"price":{"value":1575,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":17,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainmail","speed":{"value":null,"conditions":""},"strength":13,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233658,"modifiedTime":1671220960535,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"RnuxdHUAIgxccVwj","name":"Lance","type":"weapon","img":"icons/weapons/ammunition/arrow-head-war-flight.webp","system":{"description":{"value":"A shining steel tip to puncture the hardiest of foe's defences, driven in by the force of a galloping steed. Although best suited for mounted combat, the lance can be brought to lethal effect on foot in the right hands.\nSpecial. You have disadvantage when you use a lance to attack a target within 5 feet of you. Also, a lance requires two hands to wield when you aren't mounted.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"lance","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":true,"thr":false,"two":false,"ver":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233659,"modifiedTime":1671220960539,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"S7AhpCPDBGUBbg7b","name":"Rapier +1","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"fin":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233659,"modifiedTime":1671220960546,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"S7TrIOlE600KIOUx","name":"Dragon Slayer Rapier","type":"weapon","img":"icons/skills/melee/strike-axe-blood-red.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","piercing"]],"versatile":""},"formula":"3d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233660,"modifiedTime":1671220960551,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SItCnYBqhzqBoaWG","name":"Crossbow Bolt","type":"consumable","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"This ammunition is used for all varieties of crossbow and is typically a short metal shaft with a narrow piercing tip.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.075,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233660,"modifiedTime":1671220960554,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SK2HATQ4abKUlV8i","name":"Breastplate","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel-grey.webp","system":{"description":{"value":"This armor consists of a fitted metal chest piece worn with supple leather. Although it leaves the legs and arms relatively unprotected, this armor provides good protection for the wearer's vital organs while leaving the wearer relatively unencumbered.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":20,"price":{"value":400,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"breastplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233661,"modifiedTime":1690538955372,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"STxsp9Ao3pS2T4gt","name":"Studded Leather Armor +1","type":"equipment","img":"icons/equipment/chest/breastplate-rivited-red.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":13,"price":{"value":1545,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"studded","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233662,"modifiedTime":1671220960561,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SXjs8JghAPBv7d6j","name":"Dragon Slayer Longsword","type":"weapon","img":"icons/skills/melee/strike-axe-blood-red.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","slashing"]],"versatile":"1d10 + @mod +1"},"formula":"3d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233663,"modifiedTime":1671220960579,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ScxK8YNU5dWELhlQ","name":"Ring of Force Resistance","type":"equipment","img":"icons/equipment/finger/ring-faceted-gold-purple.webp","system":{"description":{"value":"(Requires attunement)\nThis ring has been inlaid with a sapphire stone that sparkles when it catches the light.\nYou have resistance to force damage while wearing this ring.\nFor other rings of resistance, roll on the @Compendium[dnd5e.tables.MdTxWyYVhTIgtNcG]{Ring of Resistance} table","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233664,"modifiedTime":1671220960584,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Sj4zEvuGcSV6anKm","name":"Heavy Crossbow +3","type":"weapon","img":"icons/weapons/crossbows/crossbow-blue.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":18,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":100,"long":400,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"heavycrossbow","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233664,"modifiedTime":1671220960588,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SpbjbMMoJiva2zOa","name":"Shortsword of Wounding","type":"weapon","img":"icons/magic/water/heart-ice-freeze.webp","system":{"description":{"value":"(Requires attunement)\nHit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"1d4","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233665,"modifiedTime":1671220960595,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SqTtbBCfiEsmZ36N","name":"Bead of Force","type":"consumable","img":"icons/magic/water/orb-ice-opaque.webp","system":{"description":{"value":"Wondrous item\nThis small black sphere measures 3/4 of an inch in diameter and weighs an ounce. Typically, 1d4 + 4 Beads of Force are found together.\nYou can use an action to throw the bead up to 60 feet. The bead explodes on impact and is destroyed. Each creature within a 10-foot radius of where the bead landed must succeed on a DC 15 Dexterity saving throw or take 5d4 force damage. A sphere of transparent force then encloses the area for 1 minute. Any creature that failed the save and is completely within the area is trapped inside this sphere. Creatures that succeeded on the save, or are partially within the area, are pushed away from the center of the sphere until they are no longer inside it. Only breathable air can pass through the sphere's wall. No attack or other effect can.\nAn enclosed creature can use its action to push against the sphere's wall, moving the sphere up to half the creature's walking speed. The sphere can be picked up, and its magic causes it to weigh only 1 pound, regardless of the weight of creatures inside.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.06,"price":{"value":960,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"5d4","save":{"ability":"dex","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233665,"modifiedTime":1671220960599,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SsAmWV6YBqeOFihT","name":"Traveler's Clothes","type":"equipment","img":"icons/equipment/chest/shirt-collared-brown.webp","system":{"description":{"value":"A set of clothes worn by travellers.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233666,"modifiedTime":1671220960603,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SuQmsJfxyJl2hPcM","name":"Whetstone","type":"loot","img":"icons/commodities/stone/geode-raw-tan.webp","system":{"description":{"value":"Whetstone is a sharpening stone. It is used to sharpen the edges of steel tools and implements through grinding and honing.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233667,"modifiedTime":1671220960610,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Sx5E6utixHdAbGNb","name":"Acid (vial)","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-green.webp","system":{"description":{"value":"As an action, you can splash the contents of this vial onto a creature within 5 feet of you or throw the vial up to 20 feet, shattering it on impact. In either case, make a ranged attack against a creature or object, treating the acid as an improvised weapon. On a hit, the target takes 2d6 acid damage.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"improvised weapon","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6+@mod","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233667,"modifiedTime":1671220960614,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SypSoinJkES0o5FB","name":"Glamoured Studded Leather","type":"equipment","img":"icons/equipment/chest/breastplate-rivited-red.webp","system":{"description":{"value":"While wearing this armor, you gain a +1 bonus to AC. You can also use a bonus action to speak the armor's command word and cause the armor to assume the appearance of a normal set of clothing or some other kind of armor. You decide what it looks like, including color, style, and accessories, but the armor retains its normal bulk and weight. The illusory appearance lasts until you use this property again or remove the armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":13,"price":{"value":2000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"bonus","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"studded","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233668,"modifiedTime":1671220960618,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SztwZhbhZeCqyAes","name":"Alchemist's Supplies","type":"tool","img":"icons/tools/cooking/mortar-herbs-yellow.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in alchemy.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":8,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"alchemist","ability":"int","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233668,"modifiedTime":1671220960623,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"TIV3B1vbrVHIhQAm","name":"Studded Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-rivited-red.webp","system":{"description":{"value":"Made from tough but flexible leather, studded leather is reinforced with close-set rivets or spikes.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":13,"price":{"value":45,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"studded","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233668,"modifiedTime":1671220960626,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"TMqS62qjBCveT1Ss","name":"Vicious Trident","type":"weapon","img":"icons/skills/melee/spear-tips-triple-orange.webp","system":{"description":{"value":"A multi-pronged spear designed to impale a target in multiple locations, pinning them in place. Often used in combination with a net to entrap and harass foes.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"trident","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233669,"modifiedTime":1671220960630,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"TWFS1BtruQeE10BY","name":"Stone of Controlling Earth Elementals","type":"consumable","img":"icons/commodities/treasure/token-runed-os-grey.webp","system":{"description":{"value":"Wondrous item\nIf the stone is touching the ground, you can use an action to speak the stone's command word and summon an @Compendium[dnd5e.monsters.sApYLZj9PTZ40wJr]{Earth Elemental}, as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell. The stone can't be used this way again until the next dawn.\nThe stone weighs 5 pounds.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":8000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233670,"modifiedTime":1671220960633,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"TZggpdbOYqOCG7mY","name":"Alchemy Jug","type":"consumable","img":"icons/containers/kitchenware/jug-terracotta-orange.webp","system":{"description":{"value":"Wondrous item\n \nThis ceramic jug appears to be able to hold a gallon of liquid and weighs 12 pounds whether full or empty. Sloshing sounds can be heard from within the jug when it is shaken, even if the jug is empty.\n \nYou can use an action and name one liquid from the table below to cause the jug to produce the chosen liquid. Afterward, you can uncork the jug as an action and pour that liquid out, up to 2 gallons per minute. The maximum amount of liquid the jug can produce depends on the liquid you named. \n \nOnce the jug starts producing a liquid, it can't produce a different one, or more of one that has reached its maximum, until the next dawn. \n\n\n\n\nLiquid\nMax Amount\n\n\nAcid\n8 ounces\n\n\nBasic poison\n1/2 ounce\n\n\nBeer\n4 gallons\n\n\nHoney\n1 gallon\n\n\nMayonnaise\n2 gallons\n\n\nOil\n1 quart\n\n\nVinegar\n2 gallons\n\n\nWater, fresh\n8 gallons\n\n\nWater, salt\n12 gallons\n\n\nWine\n1 gallon\n\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":12,"price":{"value":6000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233671,"modifiedTime":1671220960642,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"TevMHicE3A70AlmP","name":"Potion of Frost Giant Strength","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-blue.webp","system":{"description":{"value":"This potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type.\nWhen you drink this potion, your Strength score changes to 23 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":1200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233671,"modifiedTime":1671220960649,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"TjWk2mpNXjDdfIDM","name":"Carpet of Flying (6x9)","type":"consumable","img":"icons/equipment/back/cloak-hooded-pink.webp","system":{"description":{"value":"Wondrous itemYou can speak the carpet's command word as an action to make the carpet hover and fly. It moves according to your spoken directions, provided that you are within 30 feet of it.This carpet is 6 ft. x 9 ft. and has a speed of 30 feet carrying up to 800 lb, or half that speed when carrying up to 1600 lb.\nFour sizes of carpet of flying exist. The GM chooses the size of a given carpet or determines it randomly from the @Compendium[dnd5e.tables.Z2OG7jt9R8zofxnJ]{Carpet of Flying} table.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":12000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233672,"modifiedTime":1671220960653,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Saddlebags","type":"backpack","img":"icons/containers/bags/pack-leather-black-brown.webp","system":{"description":{"value":"A set of containers that typically come as a pair, connected by a leather strap and affixed to the saddle of a mount.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":8,"price":{"value":4,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"TmfaFUSZJAotndn9","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233672,"modifiedTime":1671220960656,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Tobce1hexTnDk4sV","name":"Rapier","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"A thin tensile metal blade, light in weight but long in reach designed for quick darting attacks to target weak points in enemy defenses with lightning swiftness.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"fin":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233673,"modifiedTime":1671220960660,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"TqyvIglHDj5kfohR","name":"Piton","type":"consumable","img":"icons/tools/fasteners/nail-steel.webp","system":{"description":{"value":"A metal spike that is drive into a seam in a climbing surface with a climbing hammer. It can also be used like iron spikes to block doors in a pinch.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.25,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233674,"modifiedTime":1671220960664,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"TwYeck6buBZ602mg","name":"Crystal Ball of Mind Reading","type":"consumable","img":"icons/commodities/gems/pearl-storm.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThe Crystal Ball is about 6 inches in diameter. While touching it, you can cast the @Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying}spell (save DC 17) with it.\nYou can use an action to cast the @Compendium[dnd5e.spells.ppWAAEul0QHtm4er]{Detect Thoughts} spell (save DC 17) while you are Scrying with the Crystal Ball, targeting creatures you can see within 30 feet of the spell's sensor. You don't need to concentrate on this Detect Thoughts to maintain it during its duration, but it ends if Scrying ends.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":60000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233674,"modifiedTime":1671220960688,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"U4PI6l96QJUk6TGb","name":"Eyes of the Eagle","type":"equipment","img":"icons/magic/perception/hand-eye-pink.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThese crystal lenses fit over the eyes. While wearing them, you have advantage on Wisdom (Perception) checks that rely on sight. In conditions of clear visibility, you can make out details of even extremely distant creatures and objects as small as 2 feet across.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.01,"price":{"value":2500,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233675,"modifiedTime":1671220960694,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"U74TPNQLJZbHJyCk","name":"Robe of Eyes","type":"equipment","img":"icons/magic/perception/eye-tendrils-web-purple.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThis robe is adorned with eyelike patterns. While you wear the robe, you gain the following benefits:\n\nThe robe lets you see in all directions, and you have advantage on Wisdom (Perception) checks that rely on sight.\nYou have darkvision out to a range of 120 feet.\nYou can see invisible creatures and objects, as well as see into the Ethereal Plane, out to a range of 120 feet.\n\nThe eyes on the robe can't be closed or averted. Although you can close or avert your own eyes, you are never considered to be doing so while wearing this robe.\nA @Compendium[dnd5e.spells.Bnn9Nzajixvow9xi]{Light} spell cast on the robe or a @Compendium[dnd5e.spells.BP3GCwa66IAw1yTG]{Daylight} spell cast within 5 feet of the robe causes you to be blinded for 1 minute. At the end of each of your turns, you can make a Constitution saving throw (DC 11 for light or DC 15 for daylight), ending the blindness on a success.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":30000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233675,"modifiedTime":1671220960698,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"UAXu4MNvAvaKz9JO","name":"Battleaxe +1","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-engraved-steel.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","slashing"]],"versatile":"1d10 + @mod +1"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"battleaxe","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233676,"modifiedTime":1671220960707,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ULL5nkyN3WzazI4l","name":"Holy Avenger Scimitar","type":"weapon","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"(Requires attunement by a paladin)\nYou gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":165000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod + 3","slashing"]],"versatile":""},"formula":"2d10","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233677,"modifiedTime":1671220960715,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"URun3vYrXKJJdAJe","name":"Staff of Striking","type":"weapon","img":"icons/weapons/staves/staff-simple-brown.webp","system":{"description":{"value":"(Requires attunement)This staff can be wielded as a magic quarterstaff that grants a +3 bonus to attack and damage rolls made with it.The staff has 10 charges. When you hit with a melee attack using it, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 force damage. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.Foundry NoteThe Other Formula button has been configured to roll 1d6. Use to calculate any additional force damage.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":21000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":10,"max":"10","per":"charges","recovery":"1d6 + 4"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod + 3","bludgeoning"]],"versatile":"1d8 + @mod + 3"},"formula":"1d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true,"ada":false,"sil":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233677,"modifiedTime":1671220960721,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"UT8zCwmdXVQlBiyl","name":"Leather Armor +2","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":6010,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"leather","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233678,"modifiedTime":1690538718437,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"UctSPehpKb4lJQGr","name":"Vicious Club","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"A stout knob of wood forms a simple, but effective, cudgel. These weapons are used to bludgeon foes, bruising flesh and breaking bones.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"club","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233678,"modifiedTime":1671220960732,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"UgnUJhu0tW1tLt7g","name":"Feather Token Swan Boat","type":"consumable","img":"icons/commodities/materials/feather-blue-grey.webp","system":{"description":{"value":"Wondrous item\nThis tiny object looks like a feather. Different types of feather tokens exist, each with a different single-use effect. The GM chooses the kind of token or determines it randomly from the @Compendium[dnd5e.tables.OEdr086W61t1DRJo]{Feather Token} table.\nSwan Boat. You can use an action to touch the token to a body of water at least 60 feet in diameter. The token disappears, and a 50-foot-long, 20-foot- wide boat shaped like a swan takes its place. The boat is self-propelled and moves across water at a speed of 6 miles per hour. You can use an action while on the boat to command it to move or to turn up to 90 degrees. The boat can carry up to thirty-two Medium or smaller creatures. A Large creature counts as four Medium creatures, while a Huge creature counts as nine. The boat remains for 24 hours and then disappears. You can dismiss the boat as an action.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":3000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233679,"modifiedTime":1671220960736,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"UkWdyJYQTfVX2cJW","name":"Bullseye Lantern","type":"consumable","img":"icons/sundries/lights/lantern-iron-yellow.webp","system":{"description":{"value":"A bullseye lantern casts bright light in a 60-foot cone and dim light for an additional 60 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"6","units":"hour"},"cover":null,"target":{"value":120,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233679,"modifiedTime":1671220960742,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"UpHAWqwifZpiZzns","name":"Adamantine Ring Mail","type":"equipment","img":"icons/equipment/chest/breastplate-banded-simple-leather-brown.webp","system":{"description":{"value":"This armor is reinforced with adamantine, one of the hardest substances in existence.\nWhile you're wearing it, any critical hit against you becomes a normal hit.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":40,"price":{"value":530,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"ringmail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233680,"modifiedTime":1690539362138,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"UrH3sMdnUDckIHJ6","name":"Flail","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"A set of chain-linked spiked balls lashed to a stout wooden shaft. The flail deals devastating damage when whirled in a deadly arc.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"flail","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233680,"modifiedTime":1671220961264,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Uv0ilmzbWvqmlCVH","name":"Waterskin","type":"consumable","img":"icons/sundries/survival/wetskin-leather-purple.webp","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233681,"modifiedTime":1671220961278,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"UxkP6FvDzPbsIY6o","name":"Manual of Golems","type":"consumable","img":"icons/sundries/books/book-symbol-triangle-silver-blue.webp","system":{"description":{"value":"Wondrous item\nThis tome contains information and incantations necessary to make a particular type of golem. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.htMPUPPABjI6fwck]{Manual of Golems} table. Refer to the table below for a detailed description on each golem. To decipher and use the manual, you must be a spellcaster with at least two 5th-level spell slots. A creature that can't use a Manual of Golems and attempts to read it takes 6d6 psychic damage.\n\n\n\nd20\nGolem\nTime\nCost\n\n\n\n\n1-5\n@Compendium[dnd5e.monsters.YOqhbf8WsX0jH9Fu]{Clay Golem}\n30 days\n65,000 gp\n\n\n6-17\n@Compendium[dnd5e.monsters.Hm4o2FgPZsdbXjLq]{Flesh Golem}\n60 days\n50,000 gp\n\n\n18\n@Compendium[dnd5e.monsters.h98AuPfomEPcCibP]{Iron Golem}\n120 days\n100,000 gp\n\n\n19-20\n@Compendium[dnd5e.monsters.z3gSIXHHWYaHjfBT]{Stone Golem}\n90 days\n80,000 gp\n\n\n\nTo create a golem, you must spend the time shown on the table, working without interruption with the manual at hand and resting no more than 8 hours per day. You must also pay the specified cost to purchase supplies.\nOnce you finish creating the golem, the book is consumed in eldritch flames. The golem becomes animate when the ashes of the manual are sprinkled on it. It is under your control, and it understands and obeys your spoken commands.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":35000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6","psychic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233681,"modifiedTime":1671220961288,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"V13fjV5oSmvbRdgP","name":"Mess Kit","type":"loot","img":"icons/tools/cooking/fork-steel-tan.webp","system":{"description":{"value":"This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233682,"modifiedTime":1671220961300,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"V5UAjT3ed6sDNtgm","name":"Crowbar","type":"loot","img":"icons/tools/hand/pickaxe-steel-white.webp","system":{"description":{"value":"Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233682,"modifiedTime":1671220961307,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VGtyTdVLoWls8FL5","name":"Scimitar +1","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233683,"modifiedTime":1671220961312,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VHYy3ZsJNPUo1SIx","name":"Scimitar +2","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +2","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233684,"modifiedTime":1671220961343,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VQ6NWjWV37wiB29O","name":"Wand of Secrets","type":"consumable","img":"icons/weapons/staves/staff-simple-spiral-green.webp","system":{"description":{"value":"The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges, and if a secret door or trap is within 30 feet of you, the wand pulses and points at the one nearest to you. The wand regains 1d3 expended charges daily at dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":30,"width":null,"units":"","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":"1d4 +1"},"formula":"1d3","save":{"ability":"","dc":null,"scaling":"flat"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233684,"modifiedTime":1671220961349,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VQAUcjn1qdwW3MeU","name":"Vicious Light Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"A small crossbow with a wooden haft and a tense cord which is capable of firing a single bolt which can puncture even heavy armor at close range.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"lightcrossbow","properties":{"lgt":false,"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233685,"modifiedTime":1671220961353,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VRT5GEusTFstOZdF","name":"Hide Armor of Resistance","type":"equipment","img":"icons/equipment/chest/vest-cloth-tattered-tan.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":12,"price":{"value":6010,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"hide","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233685,"modifiedTime":1690538757312,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VTc5McIjCm40KPIz","name":"Plate Armor +2","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":65,"price":{"value":7500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":20,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233686,"modifiedTime":1690539448688,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Vm6SuX6TkDvSIVGr","name":"Vicious Morningstar","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"A viciously spiked metal orb mounted upon the end of a stout haft makes for a deadly weapon which can puncture armor and flesh alike.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"morningstar","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233686,"modifiedTime":1671220961383,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VmcgAIsRCyrjBguC","name":"Restorative Ointment","type":"consumable","img":"icons/commodities/materials/liquid-orange.webp","system":{"description":{"value":"Wondrous itemThis glass jar, 3 inches in diameter, contains 1d4 + 1 doses of a thick mixture that smells faintly of aloe. The jar and its contents weigh 1/2 pound.As an action, one dose of the ointment can be swallowed or applied to the skin. The creature that receives it regains 2d8 + 2 hit points, ceases to be poisoned, and is cured of any disease.Foundry NoteThe 5 charges reflect the maximum number of doses possible. Similarly, the guide price of 600 gp is calculated at 120 gp per dose. Adjust both as required.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.5,"price":{"value":600,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"The ointment needs to be swallowed or applied to the skin."},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":5,"max":"5","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 +2","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233687,"modifiedTime":1671220961389,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VwJjuNbBf2KHMPrY","name":"Cloak of Arachnida","type":"equipment","img":"icons/equipment/back/cloak-heavy-fur-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThis fine garment is made of black silk interwoven with faint silvery threads. While wearing it, you gain the following benefits:\n\nYou have resistance to poison damage.\nYou have a climbing speed equal to your walking speed.\nYou can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free.\nYou can't be caught in webs of any sort and can move through webs as if they were difficult terrain.\nYou can use an action to cast the @Compendium[dnd5e.spells.UJJu9c2UvCzVljiP]{Web} spell (save DC 13). The web created by the spell fills twice its normal area. Once used, this property of the cloak can't be used again until the next dawn.\n","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":40,"width":null,"units":"ft","type":"cube"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"5","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233687,"modifiedTime":1671220961395,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"W1kDsFekjroIywuz","name":"Studded Leather Armor of Resistance","type":"equipment","img":"icons/equipment/chest/breastplate-rivited-red.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":13,"price":{"value":6045,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"studded","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233688,"modifiedTime":1671220961403,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WCafDVKITxwnlf2x","name":"Spyglass","type":"loot","img":"icons/tools/navigation/spyglass-telescope-brass.webp","system":{"description":{"value":"Objects viewed through a spyglass are magnified to twice their size.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233688,"modifiedTime":1671220961409,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WFQS2vT8ddrFjTJg","name":"Parchment","type":"loot","img":"icons/sundries/scrolls/scroll-plain-tan.webp","system":{"description":{"value":"A single sheet of heavier parchment paper.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233688,"modifiedTime":1671220961427,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WLVQJVpCWiPkCAtZ","name":"Staff of Healing","type":"weapon","img":"icons/weapons/staves/staff-simple-green.webp","system":{"description":{"value":"(Requires attunement by a bard, cleric, or druid)This staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability modifier: @Compendium[dnd5e.spells.uUWb1wZgtMou0TVP]{Cure Wounds} (1 charge per spell level, up to 4th), @Compendium[dnd5e.spells.F0GsG0SJzsIOacwV]{Lesser Restoration} (2 charges), or @Compendium[dnd5e.spells.Pyzmm8R7rVsNAPsd]{Mass Cure Wounds} (5 charges).The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff vanishes in a flash of light, lost forever.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":13000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":10,"max":"10","per":"charges","recovery":"1d6 + 4"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233689,"modifiedTime":1671220961432,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WNdN2mBF3O7ZNcMp","name":"Spear +1","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","piercing"]],"versatile":"1d8 + @mod +1"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"spear","properties":{"thr":true,"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233689,"modifiedTime":1671220961439,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WO8DLfz3G2QZ5njs","name":"Ring of Acid Resistance","type":"equipment","img":"icons/equipment/finger/ring-band-engraved-scrolls-silver.webp","system":{"description":{"value":"(Requires attunement)\nThis ring has been inlaid with a pearl that shimmers when it catches the light.\nYou have resistance to acid damage while wearing this ring.\nFor other rings of resistance, roll on the @Compendium[dnd5e.tables.MdTxWyYVhTIgtNcG]{Ring of Resistance} table","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233690,"modifiedTime":1671220961446,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WPWszFTGzmdIuDRJ","name":"Flask of Holy Water","type":"consumable","img":"icons/consumables/potions/bottle-round-empty-glass.webp","system":{"description":{"value":"As an action, you can splash the contents of this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact. In either case, make a ranged Attack against a target creature, treating the holy water as an Improvised Weapon. If the target is a fiend or Undead, it takes 2d6 radiant damage. A Cleric or Paladin may create holy water by performing a Special ritual. The ritual takes 1 hour to perform, uses 25 gp worth of powdered silver, and requires the caster to expend a 1st-level spell slot.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":"Target must be a fiend or undead."},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":20,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233691,"modifiedTime":1671220961451,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WWb4vAmh18sMAxfY","name":"Flame Tongue Greatsword","type":"weapon","img":"icons/magic/fire/projectile-bolt-zigzag-orange.webp","system":{"description":{"value":"(Requires attunement)\nYou can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"2d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233691,"modifiedTime":1671220961455,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WfqBg3yBNoJQtVEB","name":"Shield +3","type":"equipment","img":"icons/equipment/shield/heater-embossed-gold.webp","system":{"description":{"value":"While holding this shield, you have a bonus to AC of +3. This bonus is in addition to the shield's normal bonus to AC.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":24000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":5,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233692,"modifiedTime":1690539777633,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Wk7EOYoY3b2tgGoS","name":"Deck of Illusions","type":"consumable","img":"icons/sundries/misc/admission-ticket-grey.webp","system":{"description":{"value":"Wondrous item\nThis box contains a set of parchment cards. A full deck has 34 cards. A deck found as treasure is usually missing 1d20 − 1 cards.The magic of the deck functions only if cards are drawn at random (you can use an altered deck of playing cards to simulate the deck). You can use an action to draw a card at random from the deck and throw it to the ground at a point within 30 feet of you.\nAn illusion of one or more creatures forms over the thrown card and remains until dispelled. An illusory creature appears real, of the appropriate size, and behaves as if it were a real creature except that it can do no harm. While you are within 120 feet of the illusory creature and can see it, you can use an action to move it magically anywhere within 30 feet of its card. Any physical interaction with the illusory creature reveals it to be an illusion, because objects pass through it. Someone who uses an action to visually inspect the creature identifies it as illusory with a successful DC 15 Intelligence (Investigation) check. The creature then appears translucent.\nThe illusion lasts until its card is moved or the illusion is dispelled. When the illusion ends, the image on its card disappears, and that card can't be used again.\n\n\n\nPlaying Card\nIllusion\n\n\nAce of hearts\n@Compendium[dnd5e.monsters.ZyIBOoZZD0nDaO2s]{Adult Red Dragon}\n\n\nKing of hearts\n@Compendium[dnd5e.monsters.D5UqYD1EnTrJaMTO]{Knight} and four @Compendium[dnd5e.monsters.E9CvDPDg5dFEpVjS]{Guard}s\n\n\nQueen of hearts\nSuccubus or Incubus\n\n\nJack of hearts\n@Compendium[dnd5e.monsters.K15Yl8JmB5iPircc]{Druid}\n\n\nTen of hearts\n@Compendium[dnd5e.monsters.Aw2wmqGIatxe2ImI]{Cloud Giant}\n\n\nNine of hearts\n@Compendium[dnd5e.monsters.KLCkHep28HBfdsky]{Ettin}\n\n\nEight of hearts\n@Compendium[dnd5e.monsters.QtJairF0h18BRhEM]{Bugbear}\n\n\nTwo of hearts\n@Compendium[dnd5e.monsters.TjWQOgI3A4UAl7lC]{Goblin}\n\n\nAce of diamonds\nBeholder\n\n\nKing of diamonds\n@Compendium[dnd5e.monsters.B7lBOr1AahNZs4a6]{Archmage} and Mage Apprentice\n\n\nQueen of diamonds\n@Compendium[dnd5e.monsters.xvh2UOKv1bh03Gih]{Night Hag}\n\n\nJack of Diamonds\n@Compendium[dnd5e.monsters.EMvcuOpu7ABCmBWi]{Assassin}\n\n\nTen of diamonds\n@Compendium[dnd5e.monsters.45Z5kogZEhawX1Ey]{Fire Giant}\n\n\nNine of diamonds\nOgre Mage\n\n\nEight of diamonds\n@Compendium[dnd5e.monsters.R2GPY9BhRmmwZwkh]{Gnoll}\n\n\nTwo of diamonds\n@Compendium[dnd5e.monsters.5ngbctIMeEnuC1p1]{Kobold}\n\n\nAce of spades\n@Compendium[dnd5e.monsters.bfh29vIEoGzI240e]{Lich}\n\n\nKing of spades\n@Compendium[dnd5e.monsters.PVD5wRdyO7iCJPs1]{Priest} and two @Compendium[dnd5e.monsters.CHEUjiYrVM9X0vIT]{Acolyte}s\n\n\nJack of spades\n@Compendium[dnd5e.monsters.J8xjoG4Dxb8WkHtV]{Veteran}\n\n\nTen of spades\n@Compendium[dnd5e.monsters.Buxe6dDK5Mw7kxe6]{Frost Giant}\n\n\nNine of spades\n@Compendium[dnd5e.monsters.ZHAFrnCwCz17dmLc]{Troll}\n\n\nEight of spades\n@Compendium[dnd5e.monsters.6qnT52lZtZblgGw8]{Hobgoblin}\n\n\nTwo of spades\n@Compendium[dnd5e.monsters.TjWQOgI3A4UAl7lC]{Goblin}\n\n\nAce of clubs\n@Compendium[dnd5e.monsters.h98AuPfomEPcCibP]{Iron Golem}\n\n\nKing of clubs\n@Compendium[dnd5e.monsters.rb7OJt822wIO52qY]{Bandit Captain} and three @Compendium[dnd5e.monsters.n4TEv7inVUkyZviN]{Bandit}s\n\n\nQueen of clubs\n@Compendium[dnd5e.monsters.3o2rQBqpzjIHmrBW]{Erinyes}\n\n\nJack of clubs\n@Compendium[dnd5e.monsters.kz1t6xeXVwODpYb2]{Berserker}\n\n\nTen of clubs\n@Compendium[dnd5e.monsters.9g4N9sjyh8Ql46to]{Hill Giant}\n\n\nNine of clubs\n@Compendium[dnd5e.monsters.eIGowKTkEBC9gUzx]{Ogre}\n\n\nEight of clubs\n@Compendium[dnd5e.monsters.HB49mCOVBXwWeKWQ]{Orc}\n\n\nTwo of clubs\n@Compendium[dnd5e.monsters.5ngbctIMeEnuC1p1]{Kobold}\n\n\nJoker (2)\nYou (the deck's owner)\n\n\n\n \n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":6120,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":36,"max":"36","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"int","dc":15,"scaling":"flat"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233692,"modifiedTime":1671220961473,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WlPzuxaVnYzxzDEC","name":"Whip +2","type":"weapon","img":"icons/weapons/misc/whip-red-yellow.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +2","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"whip","properties":{"fin":true,"rch":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233693,"modifiedTime":1671220961481,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WnKWD1FuAFUE7f4v","name":"Tome of Understanding","type":"consumable","img":"icons/sundries/books/book-black-grey.webp","system":{"description":{"value":"Wondrous item\nThis book contains intuition and insight exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Wisdom score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":100000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"hour","cost":48,"condition":"The book must be completed in 6 days or less."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233693,"modifiedTime":1671220961486,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Wo2Dkh191C4VmLmg","name":"Ring Mail Armor of Resistance","type":"equipment","img":"icons/equipment/chest/breastplate-banded-simple-leather-brown.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":40,"price":{"value":6030,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"ringmail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233694,"modifiedTime":1690539382855,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Wv7HzD6dv1P0q78N","name":"Basket","type":"backpack","img":"icons/environment/traps/cage-simple-wood.webp","system":{"description":{"value":"A basket holds 2 cubic feet or 40 pounds of gear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":4,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":40,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233694,"modifiedTime":1671220961495,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WwdpHLXGX5r8uZu5","name":"Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"leather","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233695,"modifiedTime":1690538710143,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"X5knPtrQAT8GePJ4","name":"Miner's Pick","type":"loot","img":"icons/tools/hand/pickaxe-steel-white.webp","system":{"description":{"value":"It is a hand tool with a hard head atached perpendiocular to the handle.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233696,"modifiedTime":1671220961503,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"X6PHssSGnwiJRgcx","name":"Luck Blade Longsword","type":"weapon","img":"icons/magic/light/projectile-beam-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\nLuck. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\nWish. The sword has 1d4 – 1 charges. While holding it, you can use an action to expend 1 charge and cast the @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":210000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod +1","slashing"]],"versatile":"1d10 + @mod +1"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233697,"modifiedTime":1671220961507,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Carpet of Flying (5x7)","type":"consumable","img":"icons/equipment/back/cloak-hooded-pink.webp","system":{"description":{"value":"Wondrous itemYou can speak the carpet's command word as an action to make the carpet hover and fly. It moves according to your spoken directions, provided that you are within 30 feet of it.This carpet is 5 ft. x 7 ft. and has a speed of 40 feet carrying up to 600 lb, or half that speed when carrying up to 1200 lb.\nFour sizes of carpet of flying exist. The GM chooses the size of a given carpet or determines it randomly from the @Compendium[dnd5e.tables.Z2OG7jt9R8zofxnJ]{Carpet of Flying} table.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":12000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"flags":{},"_id":"XAr1SR4POx5BAArk","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233672,"modifiedTime":1671220961531,"lastModifiedBy":"dnd5ebuilder0000"},"folder":null,"sort":0,"ownership":{"default":0}} -{"_id":"XEH5YErAN1WSytln","name":"Figurine of Wondrous Power (Serpentine Owl)","type":"consumable","img":"icons/commodities/materials/feather-white.webp","system":{"description":{"value":"Wondrous item\nA figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\nSerpentine Owl. This serpentine statuette of an owl can become a @Compendium[dnd5e.monsters.VVXly3ue0i3YgGrB]{Giant Owl} for up to 8 hours. Once it has been used, it can't be used again until 2 days have passed. The owl can telepathically communicate with you at any range if you and it are on the same plane of existence.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":8000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233697,"modifiedTime":1671220961537,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XGAWqtmhK6SYBL6A","name":"Goggles of Night","type":"equipment","img":"icons/magic/control/hypnosis-mesmerism-eye.webp","system":{"description":{"value":"Wondrous item\nWhile wearing these dark lenses, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing the goggles increases its range by 60 feet.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.3,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233698,"modifiedTime":1671220961546,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XIpJkxbySJxm6hoU","name":"Light Hammer +2","type":"weapon","img":"icons/weapons/hammers/hammer-war-spiked.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +2","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"lighthammer","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233698,"modifiedTime":1671220961551,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XJ8CG4UvLELCmOi2","name":"Ring of Lightning Resistance","type":"equipment","img":"icons/equipment/finger/ring-cabochon-gold-orange.webp","system":{"description":{"value":"(Requires attunement)\nThis ring has been inlaid with a citrine stone that glints when it catches the light.\nYou have resistance to lightning damage while wearing this ring.\nFor other rings of resistance, roll on the @Compendium[dnd5e.tables.MdTxWyYVhTIgtNcG]{Ring of Resistance} table","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233699,"modifiedTime":1671220961555,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XJFqU9COdk4ycFa2","name":"Hide Armor +2","type":"equipment","img":"icons/equipment/chest/vest-cloth-tattered-tan.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":12,"price":{"value":6010,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"hide","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233699,"modifiedTime":1690538750463,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XKnDE8DTrJxIkVCF","name":"Padded Armor +3","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":8,"price":{"value":24005,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"padded","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233700,"modifiedTime":1671220961566,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XVK6TOL4sGItssAE","name":"Light Hammer","type":"weapon","img":"icons/weapons/hammers/hammer-war-spiked.webp","system":{"description":{"value":"This sturdy hammer is small enough to be nimbly wielded or used in combination with another weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"lighthammer","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233700,"modifiedTime":1671220961570,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XXLznzi3rlanMhTM","name":"Crossbow Bolt +3","type":"consumable","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"This ammunition is used for all varieties of crossbow and is typically a short metal shaft with a narrow piercing tip. It has been imbued with magic.\nYou have a bonus to attack and damage rolls made with this piece of magic ammunition. Once it hits a target, the ammunition is no longer magical.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.075,"price":{"value":400,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233701,"modifiedTime":1671220961574,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XZWHQ20ynJBK6xmU","name":"Ring of Air Elemental Command","type":"equipment","img":"icons/equipment/finger/ring-cabochon-silver-gold-red.webp","system":{"description":{"value":"(Requires attunement)\nThis ring is linked to the Elemental Plane of Air.\nWhile wearing this ring, you have advantage on attack rolls against @Compendium[dnd5e.monsters.banHjKDMCegbUwYE]{Air Elemental}s, and they have disadvantage on attack rolls against you. In addition, you have access to properties based on the linked plane.\nThe ring has 5 charges. It regains 1d4 + 1 expended charges daily at dawn. Spells cast from the ring have a save DC of 17.\nRing of Air Elemental Command. You can expend 2 of the ring's charges to cast @Compendium[dnd5e.spells.eEpy1ONlXumKS1mp]{Dominate Monster} on an Air Elemental. In addition, when you fall, you descend 60 feet per round and take no damage from falling. You can also speak and understand Auran.\nIf you help slay an Air Elemental while attuned to the ring, you gain access to the following additional properties:\n\nYou have resistance to lightning damage.\nYou have a flying speed equal to your walking speed and can hover.\nYou can cast the following spells from the ring, expending the necessary number of charges: @Compendium[dnd5e.spells.QbTxN5dWIbYZ4jLU]{Chain Lightning} (3 charges), @Compendium[dnd5e.spells.FSMy6VAjDnXY9vWz]{Gust of Wind} (2 charges), or @Compendium[dnd5e.spells.ew6GA8dJy2spQmFW]{Wind Wall} (1 charge).\n","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":35000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":5,"max":"5","per":"charges","recovery":"1d4 + 1"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233701,"modifiedTime":1671220961582,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Xbq8CyXSRV358SfP","name":"Oil of Etherealness","type":"consumable","img":"icons/consumables/potions/bottle-conical-corked-labeled-shell-cyan.webp","system":{"description":{"value":"Beads of this cloudy gray oil form on the outside of its container and quickly evaporate. \nThe oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of the @Compendium[dnd5e.spells.PQuEgKyCdovOvhqN]{Etherealness} spell for 1 hour.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":1920,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Medium or smaller creature. Takes 10 minutes to apply."},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233702,"modifiedTime":1671220961587,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XdDp6CKh9qEvPTuS","name":"Spell Scroll 2nd Level","type":"consumable","img":"icons/sundries/scrolls/scroll-bound-gold-brown.webp","system":{"description":{"value":"A spell scroll bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can read the scroll and cast its spell without providing any material components. Otherwise, the scroll is unintelligible. Casting the spell by reading the scroll requires the spell's normal casting time. Once the spell is cast, the words on the scroll fade, and it crumbles to dust. If the casting is interrupted, the scroll is not lost.\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 12 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity.\nSave DC: 13Attack Bonus: +5.\nA wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 12 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":120,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Spell must be on the caster's spell list."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"5","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":13,"scaling":"flat"},"consumableType":"scroll"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233703,"modifiedTime":1671220961592,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XmnlF5fgIO3tg6TG","name":"Scale Mail","type":"equipment","img":"icons/equipment/chest/breastplate-banded-steel.webp","system":{"description":{"value":"This armor consists of a coat and leggings (and perhaps a separate skirt) of leather covered with overlapping pieces of metal, much like the scales of a fish. The suit includes gauntlets.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":45,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"scalemail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233703,"modifiedTime":1690538860575,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Carpet of Flying (3x5)","type":"consumable","img":"icons/equipment/back/cloak-hooded-pink.webp","system":{"description":{"value":"Wondrous itemYou can speak the carpet's command word as an action to make the carpet hover and fly. It moves according to your spoken directions, provided that you are within 30 feet of it.This carpet is 3 ft. x 5 ft. and has a speed of 80 feet carrying up to 200 lb, or half that speed when carrying up to 400 lb.\nFour sizes of carpet of flying exist. The GM chooses the size of a given carpet or determines it randomly from the @Compendium[dnd5e.tables.Z2OG7jt9R8zofxnJ]{Carpet of Flying} table.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":12000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"flags":{},"_id":"XwqNHyox5OQQio8q","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233672,"modifiedTime":1671220961601,"lastModifiedBy":"dnd5ebuilder0000"},"folder":null,"sort":0,"ownership":{"default":0}} -{"_id":"Y08Al2dMN8he1hFK","name":"Light Hammer +3","type":"weapon","img":"icons/weapons/hammers/hammer-war-spiked.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +3","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"lighthammer","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233704,"modifiedTime":1671220961606,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Y9S75go1hLMXUD48","name":"Brewer's Supplies","type":"tool","img":"icons/consumables/plants/herb-marjoram-basil-oregano-leaf-bunch-green.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in brewing.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":9,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"brewer","ability":"wis","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233704,"modifiedTime":1671220961611,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YFarUKR3OrM5raf5","name":"Half Plate Armor +2","type":"equipment","img":"icons/equipment/chest/breastplate-cuirass-steel-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":40,"price":{"value":6750,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":17,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"halfplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233705,"modifiedTime":1690539021231,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YG9QW0flem4SLL6A","name":"Bag of Devouring","type":"backpack","img":"icons/containers/bags/pouch-leather-pink.webp","system":{"description":{"value":"Wondrous item\nThis bag superficially resembles a Bag of Holding but is a feeding orifice for a gigantic extradimensional creature. Turning the bag inside out closes the orifice.\nThe extradimensional creature attached to the bag can sense whatever is placed inside the bag. Animal or vegetable matter placed wholly in the bag is devoured and lost forever. When part of a living creature is placed in the bag, as happens when someone reaches inside it, there is a 50 percent chance that the creature is pulled inside the bag. A creature inside the bag can use its action to try to escape with a successful DC 15 Strength check.\nAnother creature can use its action to reach into the bag to pull a creature out, doing so with a successful DC 20 Strength check (provided it isn't pulled inside the bag first).\nAny creature that starts its turn inside the bag is devoured, its body destroyed.\nInanimate objects can be stored in the bag, which can hold a cubic foot of such material. However, once each day, the bag swallows any objects inside it and spits them out into another plane of existence. The GM determines the time and plane.\nIf the bag is pierced or torn, it is destroyed, and anything contained within it is transported to a random location on the Astral Plane.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":15,"price":{"value":2000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"capacity":{"type":"weight","value":999999999,"weightless":true},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233705,"modifiedTime":1671220961633,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YHCmjsiXxZ9UdUhU","name":"Navigator's Tools","type":"tool","img":"icons/tools/navigation/sextant-brass-brown.webp","system":{"description":{"value":"This set of instruments is used for navigation at sea. Proficiency with navigator's tools lets you chart a ship's course and follow navigation charts. In addition, these tools allow you to add your proficiency bonus to any ability check you make to avoid getting lost at sea.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"navg","ability":"int","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233705,"modifiedTime":1671220961637,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YM6bZNmpync83VFa","name":"Giant Slayer Battleaxe","type":"weapon","img":"icons/weapons/polearms/halberd-curved-steel.webp","system":{"description":{"value":"You gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":7000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","slashing"]],"versatile":"1d10 + @mod +1"},"formula":"2d6","save":{"ability":"str","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"battleaxe","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233706,"modifiedTime":1671220961644,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YS9CRHg2yQlOVi3j","name":"Mithral Chain Mail","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":55,"price":{"value":875,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainmail","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233706,"modifiedTime":1671220961649,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YeLz5OxRNxmvHJId","name":"Ioun Stone of Intellect","type":"equipment","img":"icons/commodities/stone/ore-pile-red.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Intellect. Your Intelligence score increases by 2, to a maximum of 20, while this marbled scarlet and blue sphere orbits your head.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":3000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[{"label":"Ioun Stone of Intellect","icon":"icons/commodities/stone/ore-pile-red.webp","origin":"Compendium.dnd5e.items.YeLz5OxRNxmvHJId","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"PM2UOAyd8Cy964mo","changes":[{"key":"system.abilities.int.value","mode":2,"value":"+2"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233707,"modifiedTime":1690480835386,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YevPP0DZXgAcLmzv","name":"Rapier +3","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"fin":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233708,"modifiedTime":1671220961663,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YfBwELTgPFHmQdHh","name":"Jeweler's Tools","type":"tool","img":"icons/commodities/gems/gem-rough-rose-teal.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in jewelry.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"jeweler","ability":"int","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233708,"modifiedTime":1671220961667,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YjImJ3cVnArHH4ES","name":"Winged Boots","type":"equipment","img":"icons/equipment/feet/boots-collared-simple-leather.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile you wear these boots, you have a flying speed equal to your walking speed. You can use the boots to fly for up to 4 hours, all at once or in several shorter flights, each one using a minimum of 1 minute from the duration. If you are flying when the duration expires, you descend at a rate of 30 feet per round until you land.\nThe boots regain 2 hours of flying capability for every 12 hours they aren't in use.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"4","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233710,"modifiedTime":1671220961671,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YrkkHa6KN8a9o35k","name":"Defender Rapier","type":"weapon","img":"icons/weapons/polearms/spear-flared-silver-pink.webp","system":{"description":{"value":"(Requires attunement)You gain a +3 bonus to attack and damage rolls made with this magic weapon.The first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.Foundry NoteThe sword's bonus to attack and damage rolls have been included; please remember to manually subtract should the user transfer any of the bonus to their AC.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":24000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233710,"modifiedTime":1671220961676,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YwS4pESpfsiq0JZv","name":"Armor of Vulnerability","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel.webp","system":{"description":{"value":"(Requires attunement)\nWhile wearing this armor, you have resistance to one of the following damage types: bludgeoning, piercing, or slashing. The GM chooses the type or determines it randomly.\nCurse. This armor is cursed, a fact that is revealed only when an identify spell is cast on the armor or you attune to it. Attuning to the armor curses you until you are targeted by the remove curse spell or similar magic; removing the armor fails to end the curse. While cursed, you have vulnerability to two of the three damage types associated with the armor (not the one to which it grants resistance).","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":65,"price":{"value":1000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233711,"modifiedTime":1690539481978,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YwlHI3BVJapz4a3E","name":"Playing Cards Set","type":"tool","img":"icons/sundries/gaming/playing-cards.webp","system":{"description":{"value":"This item encompasses a wide range of playing card types, both unmarked and marked.\nIf you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"game","baseItem":"","ability":"dex","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233712,"modifiedTime":1671220961685,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Z0eO3TTpYA2hjwdd","name":"Vicious Shortbow","type":"weapon","img":"icons/weapons/bows/shortbow-recurve.webp","system":{"description":{"value":"This two handed bow is somewhat smaller than the traditional longbow variant, making it well suited for rapid attacks while on the move or mounted from horseback.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"shortbow","properties":{"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233712,"modifiedTime":1671220961690,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Z7xno2zMzRtqqUIQ","name":"Vicious Quarterstaff","type":"weapon","img":"icons/weapons/staves/staff-simple-gold.webp","system":{"description":{"value":"A thick shaft of wood wrapped with a sturdy grip makes a highly functional weapon in addition to a stout walking stick.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"quarterstaff","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233713,"modifiedTime":1671220961695,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Z9FBwEoMi6daDGRj","name":"Flame Tongue Shortsword","type":"weapon","img":"icons/magic/fire/projectile-bolt-zigzag-orange.webp","system":{"description":{"value":"(Requires attunement)\nYou can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"2d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233713,"modifiedTime":1671220961699,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZKyhkS8ud2NpV7ng","name":"Scimitar of Sharpness","type":"weapon","img":"icons/skills/wounds/bone-broken-knee-beam.webp","system":{"description":{"value":"(Requires attunement)\nWhen you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10-foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":1700,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":20,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"4d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233714,"modifiedTime":1671220961705,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZLpj1bpnWlAFUEHE","name":"Giant Slayer Scimitar","type":"weapon","img":"icons/weapons/swords/sword-guard-serrated.webp","system":{"description":{"value":"You gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":7000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","slashing"]],"versatile":""},"formula":"2d6","save":{"ability":"str","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233714,"modifiedTime":1671220961711,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZYEqOSY9BLZs2GPx","name":"Bracers of Archery","type":"equipment","img":"icons/equipment/wrist/bracer-studded-leather-steel.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing these bracers, you have proficiency with the longbow and shortbow, and you gain a +2 bonus to damage rolls on ranged attacks made with such weapons.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1500,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[{"label":"Bracers of Archery","icon":"icons/equipment/wrist/bracer-studded-leather-steel.webp","origin":"Compendium.dnd5e.items.ZYEqOSY9BLZs2GPx","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"ChaLjlYldFzDgHHv","changes":[{"key":"system.traits.weaponProf.value","mode":2,"value":"longbow"},{"key":"system.traits.weaponProf.value","mode":2,"value":"shortbow"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233715,"modifiedTime":1690480681414,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZcvU9rRb573NOywv","name":"Longbow +2","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"longbow","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233716,"modifiedTime":1671220961737,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZdcEtbtU3VkuxIFE","name":"Brooch of Shielding","type":"equipment","img":"icons/equipment/neck/pendant-bronze-gem-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this brooch, you have resistance to force damage, and you have immunity to damage from the @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile} spell.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":7500,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233716,"modifiedTime":1671220961743,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Zf7kBZa5f4WBepn1","name":"Ring of Earth Elemental Command","type":"equipment","img":"icons/equipment/finger/ring-band-engraved-scrolls-silver.webp","system":{"description":{"value":"(Requires attunement)\nThis ring is linked to the Elemental Plane of Earth.\nWhile wearing this ring, you have advantage on attack rolls against @Compendium[dnd5e.monsters.sApYLZj9PTZ40wJr]{Earth Elemental}s, and they have disadvantage on attack rolls against you. In addition, you have access to properties based on the linked plane.\nThe ring has 5 charges. It regains 1d4 + 1 expended charges daily at dawn. Spells cast from the ring have a save DC of 17.\nRing of Earth Elemental Command. You can expend 2 of the ring's charges to cast @Compendium[dnd5e.spells.eEpy1ONlXumKS1mp]{Dominate Monster} on an Earth Elemental. In addition, you can move in difficult terrain that is composed of rubble, rocks, or dirt as if it were normal terrain. You can also speak and understand Terran.\nIf you help slay an Earth Elemental while attuned to the ring, you gain access to the following additional properties:\n\nYou have resistance to acid damage.\nYou can move through solid earth or rock as if those areas were difficult terrain. If you end your turn there, you are shunted out to the nearest unoccupied space you last occupied.\nYou can cast the following spells from the ring, expending the necessary number of charges: @Compendium[dnd5e.spells.QvGcdRUSNRKEQJlK]{Stone Shape} (2 charges), @Compendium[dnd5e.spells.ReMbjfeOKoSj3O79]{Stoneskin} (3 charges), or @Compendium[dnd5e.spells.NmoRmM1mhuM3pqnY]{Wall of Stone} (3 charges).\n","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":31000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":5,"max":"5","per":"charges","recovery":"1d4 + 1"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233717,"modifiedTime":1671220961749,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZgXJE9pjvZLMCeHg","name":"Slippers of Spider Climbing","type":"equipment","img":"icons/commodities/materials/material-webbing.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile you wear these light shoes, you can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free. You have a climbing speed equal to your walking speed. However, the slippers don't allow you to move this way on a slippery surface, such as one covered by ice or oil.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.5,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"none","cost":null,"condition":"Surface cannot be slippery."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233717,"modifiedTime":1671220961753,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZjUOHSyND2VFXQeP","name":"Crossbow Bolt +1","type":"consumable","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"This ammunition is used for all varieties of crossbow and is typically a short metal shaft with a narrow piercing tip. It has been imbued with magic.\nYou have a bonus to attack and damage rolls made with this piece of magic ammunition. Once it hits a target, the ammunition is no longer magical.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.075,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233718,"modifiedTime":1671220961758,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZoUVmRA3HfAK2eZy","name":"Candle of Invocation","type":"consumable","img":"icons/sundries/lights/candle-unlit-grey.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThis slender taper is dedicated to a deity and shares that deity's alignment. The candle's alignment can be detected with the Detect Evil and Good spell. The GM chooses the god and associated alignment or determines the alignment randomly from the @Compendium[dnd5e.tables.C1N8LjO7gOjEWgh4]{Candle of Invocation} table.\nThe candle's magic is activated when the candle is lit, which requires an action. After burning for 4 hours, the candle is destroyed. You can snuff it out early for use at a later time. Deduct the time it burned in increments of 1 minute from the candle's total burn time.\nWhile lit, the candle sheds dim light in a 30-foot radius. Any creature within that light whose alignment matches that of the candle makes attack rolls, saving throws, and ability checks with advantage. In addition, a cleric or druid in the light whose alignment matches the candle's can cast 1st- level spells he or she has prepared without expending spell slots, though the spell's effect is as if cast with a 1st-level slot.\nAlternatively, when you light the candle for the first time, you can cast the @Compendium[dnd5e.spells.XbwGq5kDJNvAxNXV]{Gate}spell with it. Doing so destroys the candle.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":12000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"4","units":"hour"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233718,"modifiedTime":1671220961763,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZwFCZDgQljlidzns","name":"Leather Armor +3","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":24010,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"leather","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233719,"modifiedTime":1690538721966,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"a26LjC4QxP1oorXC","name":"Headband of Intellect","type":"equipment","img":"icons/equipment/finger/ring-cabochon-silver-gold-red.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nYour Intelligence score is 19 while you wear this headband. It has no effect on you if your Intelligence is already 19 or higher.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.01,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233720,"modifiedTime":1671220961770,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Truth Serum","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-labeled-blue.webp","system":{"description":{"value":"(ingested)\nA creature subjected to this poison must succeed on a DC 11 Constitution saving throw or become @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.lq3TRI6ZlED8ABMx]{Poisoned} for 1 hour. The @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.lq3TRI6ZlED8ABMx]{Poisoned} creature can't knowingly speak a lie, as if under the effect of a @Compendium[dnd5e.spells.CylBa7jR8DSbo8Z3]{Zone of Truth} spell.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":150,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"poison"},"effects":[],"sort":0,"flags":{},"_id":"a86F565Pjdzym1jH","folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233720,"modifiedTime":1671220961776,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"aA7MbjnpHYoYvmuW","name":"Ring of Swimming","type":"equipment","img":"icons/equipment/finger/ring-cabochon-notched-gold-green.webp","system":{"description":{"value":"You have a swimming speed of 40 feet while wearing this ring.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":3000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233721,"modifiedTime":1671220961782,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"aDEAwKwttl35dWaB","name":"Scale Mail +1","type":"equipment","img":"icons/equipment/chest/breastplate-banded-steel.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":45,"price":{"value":1550,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"scalemail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233721,"modifiedTime":1690538864436,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"aDHRuUs29SrumWfq","name":"Bag of Holding","type":"backpack","img":"icons/containers/bags/pouch-leather-pink.webp","system":{"description":{"value":"Wondrous item\nThis bag has an interior space considerably larger than its outside dimensions, roughly 2 feet in diameter at the mouth and 4 feet deep. The bag can hold up to 500 pounds, not exceeding a volume of 64 cubic feet. The bag weighs 15 pounds, regardless of its contents. Retrieving an item from the bag requires an action.\nIf the bag is overloaded, pierced, or torn, it ruptures and is destroyed, and its contents are scattered in the Astral Plane. If the bag is turned inside out, its contents spill forth, unharmed, but the bag must be put right before it can be used again.\nBreathing creatures inside the bag can survive up to a number of minutes equal to 10 divided by the number of creatures (minimum 1 minute), after which time they begin to suffocate.\nPlacing a Bag of Holding inside an extradimensional space created by a Handy Haversack, Portable Hole, 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 to a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":15,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"capacity":{"type":"weight","value":500,"weightless":true},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233722,"modifiedTime":1671220961791,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"aEiM49V8vWpWw7rU","name":"Net","type":"weapon","img":"icons/tools/fishing/net-gold.webp","system":{"description":{"value":"These thickly woven fibers are reinforced for use in combat to entrap and entangle even the most dangerous foes, rendering them vulnerable for assault with other weaponry.\nSpecial. A Large or smaller creature hit by a net is restrained until it is freed. A net has no effect on creatures that are formless, or creatures that are Huge or larger. A creature can use its action to make a DC 10 Strength check, freeing itself or another creature within its reach on a success. Dealing 5 slashing damage to the net (AC 10) also frees the creature without harming it, ending the effect and destroying the net. When you use an action, bonus action, or reaction to attack with a net, you can make only one attack regardless of the number of attacks you can normally make.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":15,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"net","properties":{"spc":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"two":false,"ver":false,"lod":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233722,"modifiedTime":1671220961795,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"aMnWi1WXWpxRHq4r","name":"Potion of Climbing","type":"consumable","img":"icons/consumables/potions/potion-vial-corked-labeled-purple.webp","system":{"description":{"value":"The potion is separated into brown, silver, and gray layers resembling bands of stone. Shaking the bottle fails to mix the colors.\nWhen you drink this potion, you gain a climbing speed equal to your walking speed for 1 hour. During this time, you have advantage on Strength (Athletics) checks you make to climb. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":180,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"common","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233723,"modifiedTime":1671220961800,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"aOrinPg7yuDZEuWr","name":"Spell Scroll 8th Level","type":"consumable","img":"icons/sundries/scrolls/scroll-bound-sealed-red-green.webp","system":{"description":{"value":"A spell scroll bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can read the scroll and cast its spell without providing any material components. Otherwise, the scroll is unintelligible. Casting the spell by reading the scroll requires the spell's normal casting time. Once the spell is cast, the words on the scroll fade, and it crumbles to dust. If the casting is interrupted, the scroll is not lost.\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 18 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity.\nSave DC: 18Attack Bonus: +10.\nA wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 18 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":5120,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Spell must be on the caster's spell list."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"10","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":18,"scaling":"flat"},"consumableType":"scroll"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233723,"modifiedTime":1671220961807,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"aXsfZvDCdpuv3Yvb","name":"Arrow of Slaying","type":"consumable","img":"icons/weapons/ammunition/arrow-head-war-flight.webp","system":{"description":{"value":"An arrow of slaying is a magic weapon meant to slay a particular kind of creature. Some are more focused than others; for example, there are both arrows of dragon slaying and arrows of blue dragon slaying. If a creature belonging to the type, race, or group associated with an arrow of slaying takes damage from the arrow, the creature must make a DC 17 Constitution saving throw, taking an extra 6d10 piercing damage on a failed save, or half as much extra damage on a successful one.Once an arrow of slaying deals its extra damage to a creature, it becomes a nonmagical arrow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.05,"price":{"value":600,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"6d10","save":{"ability":"con","dc":17,"scaling":"flat"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233724,"modifiedTime":1671220961833,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"aa9KuBy4dst7WIW9","name":"Horn","type":"tool","img":"icons/tools/instruments/flute-simple-wood.webp","system":{"description":{"value":"A horn, of any variety, to evoke awe, wonder, or fear in your audience.\nIf you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":3,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"music","baseItem":"horn","ability":"cha","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233724,"modifiedTime":1671220961838,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"akjpaK4TYkUZbGrN","name":"Chain Mail +2","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":55,"price":{"value":6075,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainmail","speed":{"value":null,"conditions":""},"strength":13,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233725,"modifiedTime":1671220961845,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"amRx3jOYlPeXEiAN","name":"Light Crossbow +3","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"lightcrossbow","properties":{"lgt":false,"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233725,"modifiedTime":1671220961849,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ap9prThUB2y9lDyj","name":"Weaver's Tools","type":"tool","img":"icons/equipment/back/cloak-hooded-pink.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in weaving.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"weaver","ability":"dex","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233726,"modifiedTime":1671220961852,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"asUgQFrF1xYeNhtW","name":"Sickle +1","type":"weapon","img":"icons/weapons/sickles/sickle-curved.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"sickle","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233726,"modifiedTime":1671220961855,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"azxwKFHrNmG3HpVy","name":"Plate Armor of Resistance","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":65,"price":{"value":7500,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233727,"modifiedTime":1690539437020,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"b2l2ubCGSnmiTrm8","name":"Shortsword +2","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233727,"modifiedTime":1671220961866,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"b46t42bMruQf9v3O","name":"Mace of Terror","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"(Requires attunement)\nThis magic weapon has 3 charges. While holding it, you can use an action and expend 1 charge to release a wave of terror. Each creature of your choice in a 30-foot radius extending from you must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute.\nWhile it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.\nThe mace regains 1d3 expended charges daily at dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3"},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"mace","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233728,"modifiedTime":1671220961872,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"bAyr7j5Peq9wIJTa","name":"Potion of Clairvoyance","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-purple.webp","system":{"description":{"value":"An eyeball bobs in this yellowish liquid but vanishes when the potion is opened.\nWhen you drink this potion, you gain the effect of the @Compendium[dnd5e.spells.cg50KpBkBdPK6vPL]{Clairvoyance} spell.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":960,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233729,"modifiedTime":1671220961877,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"bEZOY6uvHRweMM56","name":"Potion of Fire Giant Strength","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-yellow.webp","system":{"description":{"value":"This potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type.\nWhen you drink this potion, your Strength score changes to 25 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233729,"modifiedTime":1671220961881,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"bHbbIhbTzu4lYMRz","name":"Holy Avenger Shortsword","type":"weapon","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"(Requires attunement by a paladin)\nYou gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":165000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod + 3","piercing"]],"versatile":""},"formula":"2d10","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233730,"modifiedTime":1671220961885,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"bPFVfq81EsMNu6OQ","name":"Wand of Lightning Bolts","type":"consumable","img":"icons/weapons/staves/staff-ornate-engraved-blue.webp","system":{"description":{"value":"(Requires attunement by a spellcaster)\nThis wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the @Compendium[dnd5e.spells.IyikgTEOTv701jgQ]{Lightning Bolt} spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":32000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":7,"max":"7","per":"charges","recovery":"1d6 + 1","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d6","lightning"]],"versatile":"1d6"},"formula":"1d6 +1","save":{"ability":"dex","dc":15,"scaling":"flat"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233730,"modifiedTime":1671220961893,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"bWI5i4RbyGKT6Eiq","name":"Dagger +3","type":"weapon","img":"icons/weapons/daggers/dagger-jeweled-purple.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"dagger","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233731,"modifiedTime":1671220961900,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"baoe3U5BfMMMxhCU","name":"Viol","type":"tool","img":"icons/tools/instruments/lute-gold-brown.webp","system":{"description":{"value":"A viol to evoke awe, wonder, or fear in your audience.\nIf you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":30,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"music","baseItem":"viol","ability":"cha","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233731,"modifiedTime":1671220961904,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"bcv7J9culilK68zp","name":"Longsword +2","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +2","slashing"]],"versatile":"1d10 + @mod +2"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233732,"modifiedTime":1671220961913,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"bod1dKzbAkAm21Ho","name":"Staff of Swarming Insects","type":"weapon","img":"icons/weapons/staves/staff-simple-spiral-green.webp","system":{"description":{"value":"(Requires attunement by a bard, cleric, druid, sorcerer, warlock, or wizard)This staff has 10 charges and regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a swarm of insects consumes and destroys the staff, then disperses.Spells. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC: @Compendium[dnd5e.spells.czXrVRx6XYRWsHAi]{Giant Insect} (4 charges) or @Compendium[dnd5e.spells.OVikYmSdHliAG2YD]{Insect Plague} (5 charges).Insect Cloud. While holding the staff, you can use an action and expend 1 charge to cause a swarm of harmless flying insects to spread out in a 30-foot radius from you. The insects remain for 10 minutes, making the area heavily obscured for creatures other than you. The swarm moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the swarm and ends the effect.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":16000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":10,"max":"10","per":"charges","recovery":"1d6 + 4"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233733,"modifiedTime":1671220961931,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"bq9YKwEHLQ7p7ric","name":"Belt of Fire Giant Strength","type":"equipment","img":"icons/equipment/waist/belt-coiled-leather-steel.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this belt, your Strength score changes to 25. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":12000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[{"label":"Belt of Fire Giant Strength","icon":"icons/equipment/waist/belt-coiled-leather-steel.webp","origin":"Compendium.dnd5e.items.bq9YKwEHLQ7p7ric","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"bOonopsHKkewV29S","changes":[{"key":"system.abilities.str.value","mode":4,"value":"25"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233733,"modifiedTime":1690480245620,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"bqZ6NTLDCUB98YjV","name":"Potion of Gaseous Form","type":"consumable","img":"icons/consumables/potions/potion-bottle-skull-label-poison-teal.webp","system":{"description":{"value":"This potion's container seems to hold fog that moves and pours like water.\nWhen you drink this potion, you gain the effect of the @Compendium[dnd5e.spells.2IWiZAJtOGDoKjiz]{Gaseous Form} spell for 1 hour (no concentration required) or until you end the effect as a bonus action. \n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233734,"modifiedTime":1671220961946,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"c0luemOP0iW8L23R","name":"Potion of Psychic Resistance","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-pink.webp","system":{"description":{"value":"The potion is a plain indescriminate color and smells slightly foul.\nWhen you drink this potion, you gain resistance to Psychic type damage for 1 hour.\nFor other potions of resistance, roll on the @Compendium[dnd5e.tables.JzLOE4IxcmxjLLuz]{Potion of Resistance} table.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233734,"modifiedTime":1671220961953,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"cG3m4YlHfbQlLEOx","name":"Forgery Kit","type":"tool","img":"icons/sundries/documents/envelope-sealed-red-tan.webp","system":{"description":{"value":"This small box contains a variety of papers and parchments, pens and inks, seals and sealing wax, gold and silver leaf, and other supplies necessary to create convincing forgeries of physical documents. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a physical forgery of a document.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"forg","ability":"int","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233735,"modifiedTime":1671220961959,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"cGUPm15mLfhGDz2b","name":"Dust of Disappearance","type":"consumable","img":"icons/magic/water/bubbles-air-water-light.webp","system":{"description":{"value":"Wondrous item\nFound in a small packet, this powder resembles very fine sand. There is enough of it for one use.\nWhen you use an action to throw the dust into the air, you and each creature and object within 10 feet of you become invisible for 2d4 minutes. The duration is the same for all subjects, and the dust is consumed when its magic takes effect.\nIf a creature affected by the dust attacks or casts a spell, the invisibility ends for that creature.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233735,"modifiedTime":1671220961963,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"cI0UhWUux8gIzSHn","name":"Chain Shirt +3","type":"equipment","img":"icons/equipment/chest/breastplate-scale-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":20,"price":{"value":24050,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainshirt","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233736,"modifiedTime":1690538789485,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"cKpJmsJmU8YaiuqG","name":"Splint Armor","type":"equipment","img":"icons/equipment/chest/breastplate-layered-steel.webp","system":{"description":{"value":"This armor is made of narrow vertical strips of metal riveted to a backing of leather that is worn over cloth padding. Flexible chain mail protects the joints.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":60,"price":{"value":200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":17,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"splint","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233736,"modifiedTime":1671220961970,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"cQ94oKUZN8FDAI8U","name":"Battleaxe +2","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-engraved-steel.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +2","slashing"]],"versatile":"1d10 + @mod +2"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"battleaxe","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233737,"modifiedTime":1671220961975,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"caEn3ixCUFBnHTx6","name":"Staff of the Woodlands","type":"weapon","img":"icons/weapons/staves/staff-simple-spiral-green.webp","system":{"description":{"value":"(Requires attunement by a druid)This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you have a +2 bonus to spell attack rolls.The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses its properties and becomes a nonmagical quarterstaff.Spells. You can use an action to expend 1 or more of the staff's charges to cast one of the following spells from it, using your spell save DC: @Compendium[dnd5e.spells.hDOENzjuj5WpLq7B]{Animal Friendship} (1 charge), @Compendium[dnd5e.spells.MCEpGpvovcXagwQS]{Awaken} (5 charges), @Compendium[dnd5e.spells.JPwIEfgUPVebr5AH]{Barkskin} (2 charges), @Compendium[dnd5e.spells.Iv2qqSAT7OkXKPFx]{Locate Animals or Plants} (2 charges), speak with animals (1 charge), @Compendium[dnd5e.spells.2VXGS206tuChoeXy]{Speak with Plants} (3 charges), or @Compendium[dnd5e.spells.AQsBc94ES7W7s7iG]{Wall of Thorns} (6 charges).You can also use an action to cast the @Compendium[dnd5e.spells.pRMvmknwLf2tdMTj]{Pass without Trace} spell from the staff without using any charges.Tree Form. You can use an action to plant one end of the staff in fertile earth and expend 1 charge to transform the staff into a healthy tree. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius. The tree appears ordinary but radiates a faint aura of transmutation magic if targeted by @Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic}. While touching the tree and using another action to speak its command word, you return the staff to its normal form. Any creature in the tree falls when it reverts to a staff.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":44000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":10,"max":"10","per":"charges","recovery":"1d6 + 4"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod + 2","bludgeoning"]],"versatile":"1d8 + @mod + 2"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true,"ada":false,"sil":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233738,"modifiedTime":1671220961981,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ccm5xlWhx74d6lsK","name":"Painter's Supplies","type":"tool","img":"icons/tools/hand/brush-paint-brown-tan.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in painting.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"painter","ability":"int","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233738,"modifiedTime":1671220961986,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"cmnBssaWWzWWm70C","name":"Handaxe +3","type":"weapon","img":"icons/weapons/axes/axe-broad-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"handaxe","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233739,"modifiedTime":1671220961994,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ctKfjHjk9gs9UtZI","name":"Potion of Speed","type":"consumable","img":"icons/consumables/potions/potion-bottle-corked-fancy-orange.webp","system":{"description":{"value":"The potion's yellow fluid is streaked with black and swirls on its own.\nWhen you drink this potion, you gain the effect of the @Compendium[dnd5e.spells.Szvk5FEVQW3uhJi5]{Haste} spell for 1 minute (no concentration required).\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":400,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233739,"modifiedTime":1671220961999,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"d58CvI0Fiav9Jjt1","name":"Defender Shortsword","type":"weapon","img":"icons/weapons/polearms/spear-flared-silver-pink.webp","system":{"description":{"value":"(Requires attunement)You gain a +3 bonus to attack and damage rolls made with this magic weapon.The first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.Foundry NoteThe sword's bonus to attack and damage rolls have been included; please remember to manually subtract should the user transfer any of the bonus to their AC.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":24000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233740,"modifiedTime":1671220962003,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"d5HNCmLIPCpPoX2w","name":"Rod of Lordly Might","type":"consumable","img":"icons/skills/melee/hand-grip-staff-yellow-brown.webp","system":{"description":{"value":"(Requires attunement)\nThis rod has a flanged head, and it functions as a magic mace that grants a +3 bonus to attack and damage rolls made with it. The rod has properties associated with six different buttons that are set in a row along the haft. It has three other properties as well, detailed below.\nSix Buttons. You can press one of the rod's six buttons as a bonus action. A button's effect lasts until you push a different button or until you push the same button again, which causes the rod to revert to its normal form.\nIf you press button 1, the rod becomes a flame tongue, as a fiery blade sprouts from the end opposite the rod's flanged head.\nIf you press button 2, the rod's flanged head folds down and two crescent-shaped blades spring out, transforming the rod into a magic battleaxe that grants a +3 bonus to attack and damage rolls made with it.\nIf you press button 3, the rod's flanged head folds down, a spear point springs from the rod's tip, and the rod's handle lengthens into a 6-foot haft, transforming the rod into a magic spear that grants a +3 bonus to attack and damage rolls made with it.\nIf you press button 4, the rod transforms into a climbing pole up to 50 feet long, as you specify. In surfaces as hard as granite, a spike at the bottom and three hooks at the top anchor the pole. Horizontal bars 3 inches long fold out from the sides, 1 foot apart, forming a ladder. The pole can bear up to 4,000 pounds. More weight or lack of solid anchoring causes the rod to revert to its normal form.\nIf you press button 5, the rod transforms into a handheld battering ram and grants its user a +10 bonus to Strength checks made to break through doors, barricades, and other barriers.\nIf you press button 6, the rod assumes or remains in its normal form and indicates magnetic north. (Nothing happens if this function of the rod is used in a location that has no magnetic north.) The rod also gives you knowledge of your approximate depth beneath the ground or your height above it.\nDrain Life. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Constitution saving throw. On a failure, the target takes an extra 4d6 necrotic damage, and you regain a number of hit points equal to half that necrotic damage. This property can't be used again until the next dawn.\nParalyze. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Strength saving throw. On a failure, the target is paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on a success. This property can't be used again until the next dawn.\nTerrify. While holding the rod, you can use an action to force each creature you can see within 30 feet of you to make a DC 17 Wisdom saving throw. On a failure, a target is frightened of you for 1 minute. A frightened target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. This property can't be used again until the next dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":28000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":"Button presses are a bonus action."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 +@mod +3","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"consumableType":"rod"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233740,"modifiedTime":1671220962010,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dG7iFak1YH1nXRpC","name":"Vicious Battleaxe","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-engraved-steel.webp","system":{"description":{"value":"A stout crescent blade mounted on a thick shaft wrapped in a sturdy grip. This axe is large enough to be wielded with two hands and is adorned with spikes upon the back-side of the blade and the top of the shaft.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"battleaxe","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233741,"modifiedTime":1671220962025,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dGnkwePemh7ovuDv","name":"Ring of Mind Shielding","type":"equipment","img":"icons/equipment/finger/ring-cabochon-gold-purple.webp","system":{"description":{"value":"(Requires attunement)\nWhile wearing this ring, you are immune to magic that allows other creatures to read your thoughts, determine whether you are lying, know your alignment, or know your creature type. Creatures can telepathically communicate with you only if you allow it.\nYou can use an action to cause the ring to become invisible until you use another action to make it visible, until you remove the ring, or until you die.\nIf you die while wearing the ring, your soul enters it, unless it already houses a soul. You can remain in the ring or depart for the afterlife. As long as your soul is in the ring, you can telepathically communicate with any creature wearing it. A wearer can't prevent this telepathic communication.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":16000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233742,"modifiedTime":1671220962030,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dJjdWdaZU30r1zx4","name":"Plate Armor of Etherealness","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel.webp","system":{"description":{"value":"(Requires attunement)\nPlate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body. This particular armor has been inscribed with certain magical runes or other means to imbue power upon it.\nWhile you're wearing this armor, you can speak its command word as an action to gain the effect of the @Compendium[dnd5e.spells.PQuEgKyCdovOvhqN]{Etherealness} spell, which last for 10 minutes or until you remove the armor or use an action to speak the command word again. This property of the armor can't be used again until the next dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":65,"price":{"value":48000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"10","units":"minute"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233742,"modifiedTime":1690539440733,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dOZkW5MwvsMhnd08","name":"Half Plate Armor +1","type":"equipment","img":"icons/equipment/chest/breastplate-cuirass-steel-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":40,"price":{"value":2250,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"halfplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233743,"modifiedTime":1690539018148,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dP7jMKyHTTgVb3ii","name":"Ink Bottle","type":"loot","img":"icons/consumables/potions/bottle-bulb-empty-glass.webp","system":{"description":{"value":"A small bottle of ink for writing upon parchment.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.06,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233743,"modifiedTime":1671220962044,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dQxqcjDm0IxYusCV","name":"Hat of Disguise","type":"equipment","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this hat, you can use an action to cast the @Compendium[dnd5e.spells.A3q2gTNqG6fvNGrv]{Disguise Self} spell from it at will. The spell ends if the hat is removed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"int","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233744,"modifiedTime":1671220962047,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dRtb9Tg34NKX9mGF","name":"Leather Armor of Resistance","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":6010,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"leather","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233744,"modifiedTime":1690538725304,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dX8AxCh9o0A9CkT3","name":"Morningstar","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"A viciously spiked metal orb mounted upon the end of a stout haft makes for a deadly weapon which can puncture armor and flesh alike.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"morningstar","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233745,"modifiedTime":1671220962059,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dXtZxlh2VKLCo1nA","name":"Leather Armor +1","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":1510,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"leather","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233745,"modifiedTime":1690538714547,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dZ9zWfhsIlabadKL","name":"Holy Avenger Longsword","type":"weapon","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"(Requires attunement by a paladin)\nYou gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":165000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod + 3","slashing"]],"versatile":"1d10 + @mod +3"},"formula":"2d10","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233746,"modifiedTime":1671220962067,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ddWvQRLmnnIS0eLF","name":"Light Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"A small crossbow with a wooden haft and a tense cord which is capable of firing a single bolt which can puncture even heavy armor at close range.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"lightcrossbow","properties":{"lgt":false,"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233747,"modifiedTime":1671220962072,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dghpiMWDSUXtQf6X","name":"Morningstar +3","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"morningstar","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233747,"modifiedTime":1671220962076,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dsjke4vPPsc9gsxH","name":"Elemental Gem of Fire","type":"consumable","img":"icons/commodities/gems/gem-rough-cushion-red.webp","system":{"description":{"value":"Wondrous item\nThis red corundum contains a mote of elemental energy. When you use an action to break the gem, a @Compendium[dnd5e.monsters.8SMQl75HLjhuSeau]{Fire Elemental} is summoned as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell, and the gem's magic is lost.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":960,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233748,"modifiedTime":1671220962081,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ducaFdrqwLZ0l3c7","name":"Flame Tongue Longsword","type":"weapon","img":"icons/magic/fire/projectile-bolt-zigzag-orange.webp","system":{"description":{"value":"(Requires attunement)\nYou can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"2d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233748,"modifiedTime":1671220962085,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dvNzJqb7vq6oJlA2","name":"Berserker Battleaxe","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-engraved-steel.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon. In addition, while you are attuned to this weapon, your hit point maximum increases by 1 for each level you have attained.\nCurse. This axe is cursed, and becoming attuned to it extends the curse to you. As long as you remain cursed, you are unwilling to part with the axe, keeping it within reach at all times. You also have disadvantage on attack rolls with weapons other than this one, unless no foe is within 60 feet of you that you can see or hear.\nWhenever a hostile creature damages you while the axe is in your possession, you must succeed on a DC 15 Wisdom saving throw or go berserk. While berserk, you must use your action each round to attack the creature nearest to you with the axe. If you can make extra attacks as part of the Attack action, you use those extra attacks, moving to attack the next nearest creature after you fell your current target.\nIf you have multiple possible targets, you attack one at random. You are berserk until you start your turn with no creatures within 60 feet of you that you can see or hear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","slashing"]],"versatile":"1d10 + @mod +1"},"formula":"","save":{"ability":"wis","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"battleaxe","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233749,"modifiedTime":1671220962569,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dwGxrGqkn2ppNaqs","name":"Greatclub +1","type":"weapon","img":"icons/weapons/maces/mace-spiked-steel-grey.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"club","properties":{"two":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233750,"modifiedTime":1671220962581,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Marvelous Pigments","type":"consumable","img":"icons/commodities/materials/powder-red-green-yellow.webp","system":{"description":{"value":"Typically found in [[/r 1d4]] pots inside a fine wooden box with a brush (weighing 1 pound in total), these pigments allow you to create three-dimensional objects by painting them in two dimensions. The paint flows from the brush to form the desired object as you concentrate on its image.\nEach pot of paint is sufficient to cover 1,000 square feet of a surface, which lets you create inanimate objects or terrain features—such as a door, a pit, flowers, trees, cells, rooms, or weapons—that are up to 10,000 cubic feet. It takes 10 minutes to cover 100 square feet.\nWhen you complete the painting, the object or terrain feature depicted becomes a real, nonmagical object. Thus, painting a door on a wall creates an actual door that can be opened to whatever is beyond. Painting a pit on a floor creates a real pit, and its depth counts against the total area of objects you create.\nNothing created by the pigments can have a value greater than 25 gp. If you paint an object of greater value (such as a diamond or a pile of gold), the object looks authentic, but close inspection reveals it is made from paste, bone, or some other worthless material.\nIf you paint a form of energy such as fire or lightning, the energy appears but dissipates as soon as you complete the painting, doing no harm to anything.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":12000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"flags":{},"_id":"e3XQygrXkzNvkDGF","folder":null,"sort":0,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233750,"modifiedTime":1671220962588,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"e7JpVX2549vp9mgF","name":"Vicious Spear","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"A gleaming steel point mouted atop a stout wooden haft, the spear may be wielded in one hand or two and can puncture through the heaviest armor with deadly force.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"spear","properties":{"thr":true,"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233779,"modifiedTime":1671220962605,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"e98hfROZjztt7ccO","name":"Feather Token Fan","type":"consumable","img":"icons/commodities/materials/feather-colored-red.webp","system":{"description":{"value":"Wondrous item\nThis tiny object looks like a feather. Different types of feather tokens exist, each with a different single-use effect. The GM chooses the kind of token or determines it randomly from the @Compendium[dnd5e.tables.OEdr086W61t1DRJo]{Feather Token} table.\nFan. If you are on a boat or ship, you can use an action to toss the token up to 10 feet in the air. The token disappears, and a giant flapping fan takes its place. The fan floats and creates a wind strong enough to fill the sails of one ship, increasing its speed by 5 miles per hour for 8 hours. You can dismiss the fan as an action.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":250,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233779,"modifiedTime":1671220962610,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eHGbr3rqRRxdBPLq","name":"Chain Mail +3","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":55,"price":{"value":24075,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":19,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainmail","speed":{"value":null,"conditions":""},"strength":13,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233780,"modifiedTime":1671220962623,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eJOrPcAz9EcquyRQ","name":"Flute","type":"tool","img":"icons/tools/instruments/flute-simple-wood.webp","system":{"description":{"value":"A lute to evoke awe, wonder, or fear in your audience.\nIf you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"music","baseItem":"flute","ability":"cha","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233781,"modifiedTime":1671220962629,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eJY20LOs3pOkRDPl","name":"Block of Incense","type":"loot","img":"icons/commodities/stone/rock-chunk-pumice-white.webp","system":{"description":{"value":"Frequently used by the rich and religious alike to scent the air for purposes of pleasure or ritual.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.5,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233781,"modifiedTime":1671220962632,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eJtPBiZtr2pp6ynt","name":"Crossbow Bolt Case","type":"backpack","img":"icons/containers/ammunition/arrows-quiver-black.webp","system":{"description":{"value":"This wooden case can hold up to twenty crossbow bolts.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":1.5,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233781,"modifiedTime":1671220962635,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eKip69fExSYN661B","name":"Vicious Glaive","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"A crescent blade is mounted on the end of a tall metal shaft. This polearm provies the ability to attack with deadly efficiency from greater range than typical melee weapons.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d10 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"glaive","properties":{"hvy":true,"two":true,"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233782,"modifiedTime":1671220962646,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eM5gEe4SEOvA2Y9t","name":"Staff of Power","type":"weapon","img":"icons/weapons/staves/staff-skull-brown.webp","system":{"description":{"value":"(Requires attunement by a sorcerer, warlock, or wizard)This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you gain a +2 bonus to Armor Class, saving throws, and spell attack rolls.The staff has 20 charges for the following properties. The staff regains 2d8 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its +2 bonus to attack and damage rolls but loses all other properties. On a 20, the staff regains 1d8 + 2 charges.Power Strike. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 1d6 force damage to the target.Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spell attack bonus: @Compendium[dnd5e.spells.RpKjTlYASrfqUPVA]{Cone of Cold} (5 charges), @Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball} (5th-level version, 5 charges), @Compendium[dnd5e.spells.WmQpxfjZwF3MGUby]{Globe of Invulnerability} (6 charges), @Compendium[dnd5e.spells.l9Ju5KE7bbn3WpTm]{Hold Monster} (5 charges), @Compendium[dnd5e.spells.MRxldJd6C4bsBo3O]{Levitate} (2 charges), @Compendium[dnd5e.spells.IyikgTEOTv701jgQ]{Lightning Bolt} (5th-level version, 5 charges), @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile} (1 charge), @Compendium[dnd5e.spells.ODhLKBxLnvvLOnw1]{Ray of Enfeeblement} (1 charge), or @Compendium[dnd5e.spells.o9ZCvuD2B1OTcubb]{Wall of Force} (5 charges).Retributive Strike. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.You have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.Distance from OriginDamage10 ft. away or closer8 x the number of charges in the staff11 to 20 ft. away6 x the number of charges in the staff21 to 30 ft. away4 x the number of charges in the staff","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":95500,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":20,"max":"20","per":"charges","recovery":"2d8 + 4"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod + 2","bludgeoning"]],"versatile":"1d8 + @mod + 2"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true,"ada":false,"sil":false},"proficient":false},"effects":[{"_id":"313kehq7ifkqiz2u","changes":[{"key":"system.attributes.ac.bonus","mode":2,"value":"2","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/weapons/staves/staff-skull-brown.webp","label":"+2 to AC","origin":"Compendium.dnd5e.items.eM5gEe4SEOvA2Y9t","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233783,"modifiedTime":1671220962653,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eMR6B4bIoJPUDJG8","name":"Dust of Dryness","type":"consumable","img":"icons/magic/air/air-wave-gust-smoke-yellow.webp","system":{"description":{"value":"Wondrous item\nThis small packet contains 1d6 + 4 pinches of dust. You can use an action to sprinkle a pinch of it over water. The dust turns a cube of water 15 feet on a side into one marble-sized pellet, which floats or rests near where the dust was sprinkled. The pellet's weight is negligible.\nSomeone can use an action to smash the pellet against a hard surface, causing the pellet to shatter and release the water the dust absorbed. Doing so ends that pellet's magic.\nAn elemental composed mostly of water that is exposed to a pinch of the dust must make a DC 13 Constitution saving throw, taking 10d6 necrotic damage on a failed save, or half as much damage on a successful one.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":1200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cube"},"range":{"value":null,"long":null,"units":""},"uses":{"value":10,"max":"10","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d6","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233783,"modifiedTime":1671220962663,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eO7Fbv5WBk5zvGOc","name":"Handaxe","type":"weapon","img":"icons/weapons/axes/axe-broad-black.webp","system":{"description":{"value":"This one-handed axe is light and balanced for throwing while remaining useful in hand combat.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"handaxe","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233784,"modifiedTime":1671220962667,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eQNXan0zp279jDtk","name":"Immovable Rod","type":"consumable","img":"icons/magic/symbols/runes-etched-steel-blade.webp","system":{"description":{"value":"This flat iron rod has a button on one end. You can use an action to press the button, which causes the rod to become magically fixed in place. Until you or another creature uses an action to push the button again, the rod doesn't move, even if it is defying gravity. The rod can hold up to 8,000 pounds of weight. More weight causes the rod to deactivate and fall. A creature can use an action to make a DC 30 Strength check, moving the fixed rod up to 10 feet on a success.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":5000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"rod"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233784,"modifiedTime":1671220962670,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eQTKbhnpkrtXUfwN","name":"Ladder (10-foot)","type":"loot","img":"icons/sundries/misc/ladder-improvised.webp","system":{"description":{"value":"A ladder 10-foot long, as sturdy or rickety as the hand that crafted or bodged it together.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":25,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233785,"modifiedTime":1671220962674,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eTNc8XPtvZNe3yQs","name":"Potion of Flying","type":"consumable","img":"icons/consumables/potions/potion-tube-corked-bat-gold-red.webp","system":{"description":{"value":"This potion's clear liquid floats at the top of its container and has cloudy white impurities drifting in it.\nWhen you drink this potion, you gain a flying speed equal to your walking speed for 1 hour and can hover. If you're in the air when the potion wears off, you fall unless you have some other means of staying aloft. \n \n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233785,"modifiedTime":1671220962678,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eVbPkYjpl29RE2uW","name":"Basic Poison","type":"consumable","img":"icons/consumables/potions/potion-bottle-skull-label-poison-teal.webp","system":{"description":{"value":"You can use the poison in this vial to coat one slashing or piercing weapon or up to three pieces of ammunition. Applying the poison takes an action. A creature hit by the poisoned weapon or ammunition must make a DC 10 Constitution saving throw or take 1d4 poison damage. Once applied, the poison retains potency for 1 minute before drying.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":100,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":"one slashing or piercing weapon, or up to three pieces of ammunition"},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":10,"scaling":"flat"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233786,"modifiedTime":1671220962682,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eZGmdOhaTWMicXPW","name":"Component Pouch","type":"consumable","img":"icons/containers/bags/pack-simple-leather-tan.webp","system":{"description":{"value":"A component pouch is a small, watertight leather belt pouch that has compartments to hold all the material components and other special items you need to cast your spells, except for those components that have a specific cost (as indicated in a spell's description).","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233786,"modifiedTime":1671220962687,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ea4xclqsksEQB1QF","name":"Abacus","type":"loot","img":"icons/commodities/treasure/broach-jewel-gold-blue.webp","system":{"description":{"value":"The abacus, also called a counting frame, is a calculating tool.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233787,"modifiedTime":1671220962691,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Pack Saddle","type":"equipment","img":"icons/equipment/shoulder/shoulderpad-fur-leather.webp","system":{"description":{"value":"A type of seat that is fastened to a mount's back, designed to support the rider and affix part of the mount's tack such as stirrups. This type of saddle is suitable for pack mounts.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":15,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"ecz2fVDyAg8YgJGe","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233787,"modifiedTime":1671220962695,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"efluRemOguW2YeZY","name":"Frost Brand Rapier","type":"weapon","img":"icons/skills/melee/strike-weapon-polearm-ice-blue.webp","system":{"description":{"value":"(Requires attunement)\nWhen you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":2200,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"],["1d6","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233788,"modifiedTime":1671220962699,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"egJhGFU3v5OfjPNS","name":"Shortbow +3","type":"weapon","img":"icons/weapons/bows/shortbow-recurve.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"shortbow","properties":{"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233788,"modifiedTime":1671220962703,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ejEt6hLQxOux04lS","name":"Demon Armor","type":"equipment","img":"icons/equipment/chest/breastplate-layered-leather-green.webp","system":{"description":{"value":"(Requires attunement)\nWhile wearing this plate armor, you gain a +1 bonus to AC, and you can understand and speak Abyssal. In addition, the armor's clawed gauntlets turn unarmed strikes with your hands into magic weapons that deal slashing damage, with a +1 bonus to attack rolls and damage rolls and a damage die of 1d8.\nCurse. Once you don this cursed armor, you can't doff it unless you are targeted by the @Compendium[dnd5e.spells.XZhdgVK3cLoxNCQl]{Remove Curse} spell or similar magic. While wearing the armor, you have disadvantage on attack rolls against demons and on saving throws against their spells and special abilities.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":65,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":19,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233789,"modifiedTime":1690568584853,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"etA2SBgWwduCLgLT","name":"Ring of Shooting Stars","type":"equipment","img":"icons/equipment/finger/ring-cabochon-gold-orange.webp","system":{"description":{"value":"(Requires attunement outdoors at night)While wearing this ring in dim light or darkness, you can cast @Compendium[dnd5e.spells.CAxSzHWizrafT033]{Dancing Lights} and @Compendium[dnd5e.spells.Bnn9Nzajixvow9xi]{Light} from the ring at will. Casting either spell from the ring requires an action.The ring has 6 charges for the following other properties. The ring regains 1d6 expended charges daily at dawn.Faerie Fire. You can expend 1 charge as an action to cast @Compendium[dnd5e.spells.nqBDWkVOfcGZt4YU]{Faerie Fire} from the ring.Ball Lightning. You can expend 2 charges as an action to create one to four 3-foot-diameter spheres of lightning. The more spheres you create, the less powerful each sphere is individually.Each sphere appears in an unoccupied space you can see within 120 feet of you. The spheres last as long as you concentrate (as if concentrating on a spell), up to 1 minute. Each sphere sheds dim light in a 30-foot radius.As a bonus action, you can move each sphere up to 30 feet, but no farther than 120 feet away from you. When a creature other than you comes within 5 feet of a sphere, the sphere discharges lightning at that creature and disappears. That creature must make a DC 15 Dexterity saving throw. On a failed save, the creature takes lightning damage based on the number of spheres you created.SpheresLightning Damage42d432d625d414d12Shooting Stars. You can expend 1 to 3 charges as an action. For every charge you expend, you launch a glowing mote of light from the ring at a point you can see within 60 feet of you. Each creature within a 15-foot cube originating from that point is showered in sparks and must make a DC 15 Dexterity saving throw, taking 5d4 fire damage on a failed save, or half as much damage on a successful one.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":14000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":6,"max":"6","per":"charges","recovery":"1d6"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":15,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233789,"modifiedTime":1671220962713,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"evSCq83oPhR0ZK4y","name":"Armor of Invulnerability","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to nonmagical damage while you wear this armor. Additionally, you can use an action to make yourself immune to nonmagical damage for 10 minutes or until you are no longer wearing the armor. Once this special action is used, it can't be used again until the next dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":65,"price":{"value":18000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233791,"modifiedTime":1690539478582,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ewXgnWiYQhS8KArS","name":"Ring of Three Wishes","type":"equipment","img":"icons/equipment/finger/ring-cabochon-gold-purple.webp","system":{"description":{"value":"While wearing this ring, you can use an action to expend 1 of its 3 charges to cast the @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell from it. The ring becomes nonmagical when you use the last charge.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":50000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233791,"modifiedTime":1671220962736,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"f0I81P9k29Q1lV4S","name":"Scale Mail Armor of Resistance","type":"equipment","img":"icons/equipment/chest/breastplate-banded-steel.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":45,"price":{"value":6050,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"scalemail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233792,"modifiedTime":1690538875676,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"f4w4GxBi0nYXmhX4","name":"Rations","type":"consumable","img":"icons/consumables/meat/hock-leg-pink-brown.webp","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233793,"modifiedTime":1671220962747,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"f5chGcpQCi1HYPQw","name":"Potion of Poison Resistance","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-green.webp","system":{"description":{"value":"The potion is a plain indescriminate color and smells slightly foul.\nWhen you drink this potion, you gain resistance to Poison type damage for 1 hour.\nFor other potions of resistance, roll on the @Compendium[dnd5e.tables.JzLOE4IxcmxjLLuz]{Potion of Resistance} table.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233793,"modifiedTime":1671220962751,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fC0lFK8P4RuhpfaU","name":"Cartographer's Tools","type":"tool","img":"icons/tools/navigation/map-chart-tan.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in cartography.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"cartographer","ability":"int","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233794,"modifiedTime":1671220962755,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fCRftM4QxEDkeu0a","name":"Club +1","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +1","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"club","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233794,"modifiedTime":1671220962765,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fCUZ7h8YYrs16UhX","name":"Belt of Stone Giant Strength","type":"equipment","img":"icons/equipment/waist/belt-armored-steel.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this belt, your Strength score changes to 23. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\nThe Belt of Stone Giant Strength and the Belt of Frost Giant Strength look different, but they have the same effect.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233795,"modifiedTime":1671220962774,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fNMkFCOvMiW2Rh3t","name":"Paper","type":"loot","img":"icons/sundries/documents/paper-plain-white.webp","system":{"description":{"value":"A single sheet of paper.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233796,"modifiedTime":1671220962840,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fO1PuSOtZWLzEHqu","name":"Scale Mail +2","type":"equipment","img":"icons/equipment/chest/breastplate-banded-steel.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":45,"price":{"value":6050,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"scalemail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233797,"modifiedTime":1690538868549,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fStHPOhuJvwEjzQh","name":"Plate Armor +1","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":65,"price":{"value":3000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":19,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233797,"modifiedTime":1690539452265,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fWR9EFEjR0JtFdCC","name":"Luck Blade Greatsword","type":"weapon","img":"icons/magic/light/projectile-beam-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\nLuck. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\nWish. The sword has 1d4 – 1 charges. While holding it, you can use an action to expend 1 charge and cast the @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":210000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 +@mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233798,"modifiedTime":1671220962858,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fbC0Mg1a73wdFbqO","name":"Scimitar","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"This curved blade is wide near the wrapped handle but arcs and tapers towards a gleaming tip.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"fin":true,"lgt":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233798,"modifiedTime":1671220962862,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fbcQsOgWCjhEAGY7","name":"Efreeti Bottle","type":"consumable","img":"icons/consumables/potions/potion-flask-corked-orange.webp","system":{"description":{"value":"Wondrous item\nThis painted brass bottle weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke flows out of the bottle. At the end of your turn, the smoke disappears with a flash of harmless fire, and an @Compendium[dnd5e.monsters.LTomFUTBrkRi0Pj5]{Efreeti} appears in an unoccupied space within 30 feet of you.\nThe first time the bottle is opened, the GM rolls to determine what happens from the @Compendium[dnd5e.tables.yZMFNfocj5qyVuOC]{Efreeti Bottle} table.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":40000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233799,"modifiedTime":1671220962866,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"feKHv3JUWZdSNKf0","name":"Dragon Slayer Scimitar","type":"weapon","img":"icons/skills/melee/strike-axe-blood-red.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","slashing"]],"versatile":""},"formula":"3d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233799,"modifiedTime":1671220962871,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fu7DJcrYWfGMeVt9","name":"Blowgun +2","type":"weapon","img":"icons/weapons/staves/staff-simple-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":25,"long":100,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"blowgun","properties":{"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233800,"modifiedTime":1671220962875,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fvezXwRJ5PqUf5NN","name":"Ring of Cold Resistance","type":"equipment","img":"icons/equipment/finger/ring-faceted-silver-orange.webp","system":{"description":{"value":"(Requires attunement)\nThis ring has been inlaid with a tourmaline stone that gleams when it catches the light.\nYou have resistance to cold damage while wearing this ring.\nFor other rings of resistance, roll on the @Compendium[dnd5e.tables.MdTxWyYVhTIgtNcG]{Ring of Resistance} table","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233801,"modifiedTime":1671220962879,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"g2dWN7PQiMRYWzyk","name":"Quarterstaff","type":"weapon","img":"icons/weapons/staves/staff-simple-gold.webp","system":{"description":{"value":"A thick shaft of wood wrapped with a sturdy grip makes a highly functional weapon in addition to a stout walking stick.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"quarterstaff","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233801,"modifiedTime":1671220962883,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"g8DG0jXlvfP3uTtZ","name":"Vicious War Pick","type":"weapon","img":"icons/weapons/axes/pickaxe-double-brown.webp","system":{"description":{"value":"A brutal curved spike mounted on the back of a sturdy haft - designed for puncturing armor with deadly force.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"warpick","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233802,"modifiedTime":1671220962887,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"g8fQZ1WyTz2bTtvA","name":"Alms Box","type":"backpack","img":"icons/sundries/misc/piggybank.webp","system":{"description":{"value":"A box with a money slot and detachable base mainly used by priests and the like to collect alms.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":2,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233802,"modifiedTime":1671220962897,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gBQ8xqTA5f8wP5iu","name":"Blowgun Needle","type":"consumable","img":"icons/weapons/ammunition/arrows-war-red.webp","system":{"description":{"value":"This ammunition is designed to be fired through a blowgun using the force of the wielders lungs. These needles are frequently tipped with deadly or crippling venoms.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.02,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233803,"modifiedTime":1671220962900,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gLkbbUtGhQgYANM8","name":"Arrow +2","type":"consumable","img":"icons/weapons/ammunition/arrow-head-war.webp","system":{"description":{"value":"Ammunition used for bows of all varieties. It has been imbued with magic.\nYou have a bonus to attack and damage rolls made with this piece of magic ammunition. Once it hits a target, the ammunition is no longer magical.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.05,"price":{"value":100,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233803,"modifiedTime":1671220962904,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gP1URGq3kVIIFHJ7","name":"Reliquary","type":"equipment","img":"icons/containers/chest/chest-reinforced-steel-red.webp","system":{"description":{"value":"A tiny box or other container holding a fragment of a precious relic, saint, or other historical figure that dedicated their life to walk the path of a true believer. A deity imbues the bearer of this artifact with the ability to call forth their power and in doing so spread the faith once more.\nSpellcasting Focus. A cleric or paladin can use a holy symbol as a spellcasting focus. To use the symbol in this way, the caster must hold it in hand, wear it visibly, or bear it on a shield.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"special","cost":null,"condition":"Holy symbol must be clearly visible."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"trinket","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233804,"modifiedTime":1671220962909,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gSwpQacBLOJeLWrK","name":"Vicious Mace","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"A heavy bludgeoning weapon mounted to the end of a metal club. The head features spikes and blades designed to puncture armor and shatter the bones below.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d6 + @mod",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"mace","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233804,"modifiedTime":1671220962913,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gTRFQLdVD1gsKtPi","name":"Potion of Growth","type":"consumable","img":"icons/consumables/potions/potion-tube-corked-glowing-red.webp","system":{"description":{"value":"The red in the potion's liquid continuously expands from a tiny bead to color the clear liquid around it and then contracts. Shaking the bottle fails to interrupt this process.\nWhen you drink this potion, you gain the \"enlarge\" effect of the @Compendium[dnd5e.spells.WahI41a3goVUg0x1]{Enlarge/Reduce} spell for 1d4 hours (no concentration required).","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":270,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233805,"modifiedTime":1671220962927,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gV671PZGnYoVZefN","name":"Javelin +2","type":"weapon","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"javelin","properties":{"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233805,"modifiedTime":1671220962932,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gVo3UbvwjFIiFR0c","name":"Vicious Longbow","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"A thick shaft of laminated wood is bowed by a taut string capable of launching deadly arrows at long distances.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"longbow","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233806,"modifiedTime":1671220962935,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gYDMk3LWikIP5PmA","name":"Shortbow +1","type":"weapon","img":"icons/weapons/bows/shortbow-recurve.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"shortbow","properties":{"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233806,"modifiedTime":1671220962947,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"giU3yyZXvErjf78D","name":"Dart +1","type":"weapon","img":"icons/weapons/ammunition/arrows-war-red.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.25,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"dart","properties":{"fin":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233807,"modifiedTime":1671220962951,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gpHgWLsD8k2yzbfR","name":"Cape of the Mountebank","type":"equipment","img":"icons/equipment/back/cloak-heavy-fur-blue.webp","system":{"description":{"value":"Wondrous item\nThis cape smells faintly of brimstone. While wearing it, you can use it to cast the @Compendium[dnd5e.spells.A4RsPuSvB9wFtz1j]{Dimension Door} spell as an action. This property of the cape can't be used again until the next dawn.\nWhen you disappear, you leave behind a cloud of smoke, and you appear in a similar cloud of smoke at your destination. The smoke lightly obscures the space you left and the space you appear in, and it dissipates at the end of your next turn. A light or stronger wind disperses the smoke.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":8000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":500,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233808,"modifiedTime":1671220962956,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gwuffGC4JZ8BbStz","name":"Berserker Handaxe","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-engraved-steel.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon. In addition, while you are attuned to this weapon, your hit point maximum increases by 1 for each level you have attained.\nCurse. This axe is cursed, and becoming attuned to it extends the curse to you. As long as you remain cursed, you are unwilling to part with the axe, keeping it within reach at all times. You also have disadvantage on attack rolls with weapons other than this one, unless no foe is within 60 feet of you that you can see or hear.\nWhenever a hostile creature damages you while the axe is in your possession, you must succeed on a DC 15 Wisdom saving throw or go berserk. While berserk, you must use your action each round to attack the creature nearest to you with the axe. If you can make extra attacks as part of the Attack action, you use those extra attacks, moving to attack the next nearest creature after you fell your current target.\nIf you have multiple possible targets, you attack one at random. You are berserk until you start your turn with no creatures within 60 feet of you that you can see or hear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"handaxe","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233808,"modifiedTime":1671220962960,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gyJ0imAckcWtCjyv","name":"Club +2","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +2","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"club","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233809,"modifiedTime":1671220962964,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"h0XLhuUQ0vSnW3DU","name":"Vicious Rapier","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"A thin tensile metal blade, light in weight but long in reach designed for quick darting attacks to target weak points in enemy defenses with lightning swiftness.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"fin":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233809,"modifiedTime":1671220962968,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"h8rS84jKsMHl9J1i","name":"Ioun Stone of Awareness","type":"equipment","img":"icons/commodities/gems/gem-rough-cushion-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Awareness. You can't be surprised while this dark blue rhomboid orbits your head.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":12000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233810,"modifiedTime":1671220962973,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hDF4RSCzMO8iI14x","name":"Ioun Stone of Leadership","type":"equipment","img":"icons/commodities/stone/ore-pile-purple.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Leadership. Your Charisma score increases by 2, to a maximum of 20, while this marbled pink and green sphere orbits your head.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":3000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[{"label":"Ioun Stone of Leadership","icon":"icons/commodities/stone/ore-pile-purple.webp","origin":"Compendium.dnd5e.items.hDF4RSCzMO8iI14x","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"3hbyQMgvW8GyQotV","changes":[{"key":"system.abilities.cha.value","mode":2,"value":"+2"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233810,"modifiedTime":1690480879261,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hFAVm9pTJDm0nu3g","name":"Broom of Flying","type":"consumable","img":"icons/skills/melee/hand-grip-staff-blue.webp","system":{"description":{"value":"Wondrous item\nThis wooden broom, which weighs 3 pounds, functions like a mundane broom until you stand astride it and speak its command word. It then hovers beneath you and can be ridden in the air. It has a flying speed of 50 feet. It can carry up to 400 pounds, but its flying speed becomes 30 feet while carrying over 200 pounds. The broom stops hovering when you land.\nYou can send the broom to travel alone to a destination within 1 mile of you if you speak the command word, name the location, and are familiar with that place. The broom comes back to you when you speak another command word, provided that the broom is still within 1 mile of you.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":8000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":1,"long":null,"units":"mi"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233811,"modifiedTime":1671220962979,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hGrxC676XmlnS9y0","name":"Cloak of the Manta Ray","type":"equipment","img":"icons/equipment/back/cloak-heavy-fur-blue.webp","system":{"description":{"value":"Wondrous item\nWhile wearing this cloak with its hood up, you can breathe underwater, and you have a swimming speed of 60 feet.\nPulling the hood up or down requires an action.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":6000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Hood must be up."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"5","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233811,"modifiedTime":1671220962984,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hHX5qXva1ScCpBpL","name":"Net +2","type":"weapon","img":"icons/tools/fishing/net-gold.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack rolls made with this magic weapon.\nSpecial. A Large or smaller creature hit by a net is restrained until it is freed. A net has no effect on creatures that are formless, or creatures that are Huge or larger. A creature can use its action to make a DC 10 Strength check, freeing itself or another creature within its reach on a success. Dealing 5 slashing damage to the net (AC 10) also frees the creature without harming it, ending the effect and destroying the net. When you use an action, bonus action, or reaction to attack with a net, you can make only one attack regardless of the number of attacks you can normally make.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":15,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":10,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"net","properties":{"spc":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233812,"modifiedTime":1671220962988,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hJS8yEVkqgJjwfWa","name":"Potter's Tools","type":"tool","img":"icons/containers/kitchenware/vase-bottle-brown.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in pottery.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"potter","ability":"int","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233812,"modifiedTime":1671220962991,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hM84pZnpCqKfi8XH","name":"Cobbler's Tools","type":"tool","img":"icons/tools/hand/awl-steel-tan.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in cobblery.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"cobbler","ability":"int","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233813,"modifiedTime":1671220962994,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hOzuSDqmOIOx8z3Z","name":"Fishing Tackle","type":"loot","img":"icons/tools/fishing/hook-curved-barbed-steel-white.webp","system":{"description":{"value":"This kit includes a wooden rod, silken line, corkwood bobbers, steel hooks, lead sinkers, velvet lures, and narrow netting.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233813,"modifiedTime":1671220962997,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hSY1b8yi8JWw2blf","name":"Boots of Striding and Springing","type":"equipment","img":"icons/equipment/feet/boots-collared-rounded-brown.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile you wear these boots, your walking speed becomes 30 feet, unless your walking speed is higher, and your speed isn't reduced if you are encumbered or wearing heavy armor. In addition, you can jump three times the normal distance, though you can't jump farther than your remaining movement would allow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[{"label":"Boots of Striding and Springing","icon":"icons/equipment/feet/boots-collared-rounded-brown.webp","origin":"Compendium.dnd5e.items.hSY1b8yi8JWw2blf","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"ewBIkUaBn4meKsK5","changes":[{"key":"system.attributes.movement.walk","mode":4,"value":"30"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233814,"modifiedTime":1690480596552,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hWqImieUaLo08l9l","name":"Feather Token Bird","type":"consumable","img":"icons/commodities/materials/feather-yellow.webp","system":{"description":{"value":"Wondrous itemThis tiny object looks like a feather. Different types of feather tokens exist, each with a different single-use effect. The GM chooses the kind of token or determines it randomly from the @Compendium[dnd5e.tables.OEdr086W61t1DRJo]{Feather Token} table.Bird. You can use an action to toss the token 5 feet into the air. The token disappears and an enormous, multicolored bird takes its place. The bird has the statistics of a @Compendium[dnd5e.monsters.p980augbCIdpK9ZX]{Roc}, but it obeys your simple commands and can't attack. It can carry up to 500 pounds while flying at its maximum speed (16 miles an hour for a maximum of 144 miles per day, with a one-hour rest for every 3 hours of flying), or 1,000 pounds at half that speed. The bird disappears after flying its maximum distance for a day or if it drops to 0 hit points. You can dismiss the bird as an action.Foundry NoteThe 144 charges represent the 144 miles the bird can travel when being able to travel at maximum speed to enable accurate distance-tracking as required.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":3000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":144,"max":"144","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233814,"modifiedTime":1671220963006,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hdUzXzVPonOQzW81","name":"Greataxe +2","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod +2","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greataxe","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233815,"modifiedTime":1671220963010,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hdlBOEbEjiwUjTW5","name":"Ring of Djinni Summoning","type":"equipment","img":"icons/equipment/finger/ring-faceted-gold-purple.webp","system":{"description":{"value":"(Requires attunement)\nWhile wearing this ring, you can speak its command word as an action to summon a particular @Compendium[dnd5e.monsters.5P1VGAZQwOilwZQf]{Djinni} from the Elemental Plane of Air. The djinni appears in an unoccupied space you choose within 120 feet of you. It remains as long as you concentrate (as if concentrating on a spell), to a maximum of 1 hour, or until it drops to 0 hit points. It then returns to its home plane.\nWhile summoned, the djinni is friendly to you and your companions. It obeys any commands you give it, no matter what language you use. If you fail to command it, the djinni defends itself against attackers but takes no other actions.\nAfter the djinni departs, it can't be summoned again for 24 hours, and the ring becomes nonmagical if the djinni dies.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":45000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233815,"modifiedTime":1671220963014,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hf5j1meGsA33HkUj","name":"Mirror of Life Trapping","type":"consumable","img":"icons/magic/air/wind-vortex-swirl-purple.webp","system":{"description":{"value":"Wondrous item\nWhen this 4-foot-tall mirror is viewed indirectly, its surface shows faint images of creatures. The mirror weighs 50 pounds, and it has AC 11, 10 hit points, and vulnerability to bludgeoning damage. It shatters and is destroyed when reduced to 0 hit points.\nIf the mirror is hanging on a vertical surface and you are within 5 feet of it, you can use an action to speak its command word and activate it. It remains activated until you use an action to speak the command word again.\nAny creature other than you that sees its reflection in the activated mirror while within 30 feet of it must succeed on a DC 15 Charisma saving throw or be trapped, along with anything it is wearing or carrying, in one of the mirror's twelve extradimensional cells. This saving throw is made with advantage if the creature knows the mirror's nature, and constructs succeed on the saving throw automatically.\nAn extradimensional cell is an infinite expanse filled with thick fog that reduces visibility to 10 feet. Creatures trapped in the mirror's cells don't age, and they don't need to eat, drink, or sleep. A creature trapped within a cell can escape using magic that permits planar travel. Otherwise, the creature is confined to the cell until freed.\nIf the mirror traps a creature but its twelve extradimensional cells are already occupied, the mirror frees one trapped creature at random to accommodate the new prisoner. A freed creature appears in an unoccupied space within sight of the mirror but facing away from it. If the mirror is shattered, all creatures it contains are freed and appear in unoccupied spaces near it.\nWhile within 5 feet of the mirror, you can use an action to speak the name of one creature trapped in it or call out a particular cell by number. The creature named or contained in the named cell appears as an image on the mirror's surface. You and the creature can then communicate normally.\nIn a similar way, you can use an action to speak a second command word and free one creature trapped in the mirror. The freed creature appears, along with its possessions, in the unoccupied space nearest to the mirror and facing away from it.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":50,"price":{"value":18000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word. Target must be able to see its reflection."},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":12,"max":"12","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233816,"modifiedTime":1671220963033,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hqVKZie7x9w3Kqds","name":"Spell Scroll 3rd Level","type":"consumable","img":"icons/sundries/scrolls/scroll-bound-gold-brown.webp","system":{"description":{"value":"A spell scroll bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can read the scroll and cast its spell without providing any material components. Otherwise, the scroll is unintelligible. Casting the spell by reading the scroll requires the spell's normal casting time. Once the spell is cast, the words on the scroll fade, and it crumbles to dust. If the casting is interrupted, the scroll is not lost.\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 13 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity.\nSave DC: 15Attack Bonus: +7.\nA wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 13 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Spell must be on the caster's spell list."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"7","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":15,"scaling":"flat"},"consumableType":"scroll"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233817,"modifiedTime":1671220963038,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hxfOtvFrY1PXHQN1","name":"Ring of Telekinesis","type":"equipment","img":"icons/equipment/finger/ring-inlay-red.webp","system":{"description":{"value":"(Requires attunement)\nWhile wearing this ring, you can cast the @Compendium[dnd5e.spells.HQfd7jJyULIoGxrZ]{Telekinesis} spell at will, but you can target only objects that aren't being worn or carried.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":80000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Target object cannot be currently worn or carried."},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233817,"modifiedTime":1671220963044,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"i2puCDRaTxkuFfB4","name":"Ring of Free Action","type":"equipment","img":"icons/equipment/finger/ring-cabochon-notched-gold-green.webp","system":{"description":{"value":"(Requires attunement)\nWhile you wear this ring, difficult terrain doesn't cost you extra movement. In addition, magic can neither reduce your speed nor cause you to be paralyzed or restrained.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":20000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233818,"modifiedTime":1671220963048,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"i3njMqHc689GvHDn","name":"Ring of X-ray Vision","type":"equipment","img":"icons/equipment/finger/ring-eye-silver-green.webp","system":{"description":{"value":"(Requires attunement)\nWhile wearing this ring, you can use an action to speak its command word. When you do so, you can see into and through solid matter for 1 minute. This vision has a radius of 30 feet. To you, solid objects within that radius appear transparent and don't prevent light from passing through them. The vision can penetrate 1 foot of stone, 1 inch of common metal, or up to 3 feet of wood or dirt. Thicker substances block the vision, as does a thin sheet of lead.\nWhenever you use the ring again before taking a long rest, you must succeed on a DC 15 Constitution saving throw or gain one level of exhaustion.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233818,"modifiedTime":1671220963052,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"i4NeNZ30ycwPDHMx","name":"Sickle","type":"weapon","img":"icons/weapons/sickles/sickle-curved.webp","system":{"description":{"value":"A crescent hooked blade mounted atop a short haft, light enough to be wielded in one hand for treshing crops or foes.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"sickle","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233819,"modifiedTime":1671220963056,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"i89okN7GFTWHsvPy","name":"Herbalism Kit","type":"tool","img":"icons/containers/bags/pouch-leather-green.webp","system":{"description":{"value":"This kit contains a variety of instruments such as clippers, mortar and pestle, and pouches and vials used by herbalists to create remedies and potions. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to identify or apply herbs. Also, proficiency with this kit is required to create antitoxin and potions of healing.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"herb","ability":"wis","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233819,"modifiedTime":1671220963060,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"iB3gunzgxZ8xK6Z5","name":"Talisman of Pure Good","type":"consumable","img":"icons/magic/life/ankh-gold-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement by a creature of good alignment)\nThis talisman is a mighty symbol of goodness. A creature that is neither good nor evil in alignment takes 6d6 radiant damage upon touching the talisman. An evil creature takes 8d6 radiant damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.\nIf you are a good cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.\nThe talisman has 7 charges. If you are wearing or holding it, you can use an action to expend 1 charge from it and choose one creature you can see on the ground within 120 feet of you. If the target is of evil alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman disperses into motes of golden light and is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":71680,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":7,"max":"7","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6","radiant"]],"versatile":"8d6"},"formula":"","save":{"ability":"dex","dc":20,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233820,"modifiedTime":1671220963064,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"iBuTM09KD9IoM5L8","name":"Dice Set","type":"tool","img":"icons/sundries/gaming/dice-runed-brown.webp","system":{"description":{"value":"This item encompasses a wide range of dice, both straight and weighted.\nIf you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"game","baseItem":"","ability":"dex","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233820,"modifiedTime":1671220963067,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"iIuNqnpWCHrLEKWj","name":"Net +3","type":"weapon","img":"icons/tools/fishing/net-gold.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack rolls made with this magic weapon.\nSpecial. A Large or smaller creature hit by a net is restrained until it is freed. A net has no effect on creatures that are formless, or creatures that are Huge or larger. A creature can use its action to make a DC 10 Strength check, freeing itself or another creature within its reach on a success. Dealing 5 slashing damage to the net (AC 10) also frees the creature without harming it, ending the effect and destroying the net. When you use an action, bonus action, or reaction to attack with a net, you can make only one attack regardless of the number of attacks you can normally make.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":15,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":10,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"net","properties":{"spc":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233821,"modifiedTime":1671220963075,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"iLt7wTWr4cJnQulJ","name":"Figurine of Wondrous Power (Ivory Goat of Traveling)","type":"consumable","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"Wondrous item\nA figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\nIvory Goats. These ivory statuettes of goats are always created in sets of three. Each goat looks unique and functions differently from the others.\nThe Goat of Traveling can become a Large goat with the same statistics as a @Compendium[dnd5e.monsters.rz8UTUnFT87BsAFR]{Riding Horse}. It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can't be used again until 7 days have passed, when it regains all its charges.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":24,"max":"24","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233821,"modifiedTime":1671220963082,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"iOMRrzfzFCfPGuD6","name":"Bag of Sand","type":"loot","img":"icons/containers/bags/coinpouch-simple-leather-silver-brown.webp","system":{"description":{"value":"A small bag of sand used by the scholarly to dry freshly inked letters and correspondence quickly and safely for quick dispatch.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.5,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233822,"modifiedTime":1671220963085,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"iRDmig2qZ7LdP0ug","name":"Mithral Scale Mail","type":"equipment","img":"icons/equipment/chest/breastplate-banded-steel.webp","system":{"description":{"value":"Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":45,"price":{"value":850,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"scalemail","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233822,"modifiedTime":1690538856644,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"idtlcnIWgwVdvp31","name":"Javelin +1","type":"weapon","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"javelin","properties":{"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233823,"modifiedTime":1671220963092,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ig5DOQtQYJPXJId4","name":"Ioun Stone of Fortitude","type":"equipment","img":"icons/commodities/gems/gem-rough-cushion-purple-pink.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Fortitude. Your Constitution score increases by 2, to a maximum of 20, while this pink rhomboid orbits your head.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":3000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[{"label":"Ioun Stone of Fortitude","icon":"icons/commodities/gems/gem-rough-cushion-purple-pink.webp","origin":"Compendium.dnd5e.items.ig5DOQtQYJPXJId4","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"FpwzPfzNKZokKZF4","changes":[{"key":"system.abilities.con.value","mode":2,"value":"+2"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233824,"modifiedTime":1690480758230,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"iiQxTvDOhPGW5spF","name":"Amulet of Health","type":"equipment","img":"icons/equipment/neck/pendant-faceted-red.webp","system":{"description":{"value":"Wondrous item (requires attunement)\nYour Constitution score is 19 while you wear this amulet. It has no effect on you if your Constitution is already 19 or higher without it.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233824,"modifiedTime":1671220963102,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ijDzcDXfJAdj2uED","name":"Heavy Crossbow +1","type":"weapon","img":"icons/weapons/crossbows/crossbow-blue.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":18,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":100,"long":400,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"heavycrossbow","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233825,"modifiedTime":1671220963108,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"il2GNi8C0DvGLL9P","name":"Poisoner's Kit","type":"tool","img":"icons/containers/bags/pouch-gold-green.webp","system":{"description":{"value":"A poisoner's kit includes the vials, chemicals, and other equipment necessary for the creation of poisons. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to craft or use poisons.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"pois","ability":"wis","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233826,"modifiedTime":1671220963112,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"irtqrzaUCeshmTZp","name":"Vestments","type":"equipment","img":"icons/equipment/back/mantle-collared-black.webp","system":{"description":{"value":"Simple or ostentacious wear, often used by priests and other religious figures for use in rituals and ceremonies.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233826,"modifiedTime":1671220963131,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"isKR904LkLaH4i6M","name":"Vicious Halberd","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"A spear-tipped metal shaft accompanied by a crescent blade, the halberd is a strong defensive weapon which allows a warrior to fend off foes using the reach of the shaft to attack from safe distance.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d10 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"halberd","properties":{"hvy":true,"two":true,"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233828,"modifiedTime":1671220963137,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"izF3kmyFEVI5TWhp","name":"Dart +3","type":"weapon","img":"icons/weapons/ammunition/arrows-war-red.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.25,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"dart","properties":{"fin":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233828,"modifiedTime":1671220963144,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"j2ZGEwx8MhHZXds4","name":"Belt of Dwarvenkind","type":"equipment","img":"icons/equipment/waist/belt-armored-steel.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this belt, you gain the following benefits:\n\nYour Constitution score increases by 2, to a maximum of 20.\nYou have advantage on Charisma (Persuasion) checks made to interact with dwarves.\n\nIn addition, while attuned to the belt, you have a 50 percent chance each day at dawn of growing a full beard if you're capable of growing one, or a visibly thicker beard if you already have one.If you aren't a dwarf, you gain the following additional benefits while wearing the belt:\n\nYou have advantage on saving throws against poison, and you have resistance against poison damage.\nYou have darkvision out to a range of 60 feet.\nYou can speak, read, and write Dwarvish.\n","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233829,"modifiedTime":1671220963151,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"jJU8vFhHLQeKe2wu","name":"Gem of Seeing","type":"consumable","img":"icons/commodities/gems/gem-rough-rose-teal.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThis gem has 3 charges. As an action, you can speak the gem's command word and expend 1 charge. For the next 10 minutes, you have truesight out to 120 feet when you peer through the gem.\nThe gem regains 1d3 expended charges daily at dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233829,"modifiedTime":1671220963159,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"jcQqI0pxLD2nNNQ4","name":"Whip +3","type":"weapon","img":"icons/weapons/misc/whip-red-yellow.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +3","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"whip","properties":{"fin":true,"rch":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233830,"modifiedTime":1671220963171,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"jeoZmDD9fuQdvC77","name":"Vicious Dart","type":"weapon","img":"icons/weapons/ammunition/arrows-war-red.webp","system":{"description":{"value":"A small thrown implement crafted with a short wooden shaft and crossed feathres with a sharp wooden or metal tip. Darts can be thrown with sufficient force to puncture the skin.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.25,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d4 +@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"dart","properties":{"fin":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233830,"modifiedTime":1671220963176,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"jf0XMx2vfEZzZuD7","name":"Mace +1","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"mace","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233831,"modifiedTime":1671220963184,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"jhjo20QoiD5exf09","name":"Calligrapher's Supplies","type":"tool","img":"icons/tools/scribal/pen-steel-grey-brown.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in calligraphy.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"calligrapher","ability":"int","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233831,"modifiedTime":1671220963197,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"jlI44g90pp4VazBU","name":"Block and Tackle","type":"consumable","img":"icons/weapons/sickles/sickle-hooked-wood.webp","system":{"description":{"value":"A set of pulleys with a cable threaded through them and a hook to attach to objects, a block and tackle allows you to hoist up to four times the weight you can normally lift.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233832,"modifiedTime":1671220963202,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"jmSC8I5awCoxNVv7","name":"Giant Slayer Greataxe","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"You gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":7000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod +1","slashing"]],"versatile":""},"formula":"2d6","save":{"ability":"str","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greataxe","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233833,"modifiedTime":1671220963206,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"jvKmgJYL33E8gev5","name":"Ioun Stone of Reserve","type":"equipment","img":"icons/commodities/gems/gem-rough-cushion-purple-pink.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Reserve. This vibrant purple prism stores spells cast into it, holding them until you use them. The stone can store up to 3 levels worth of spells at a time. When found, it contains 1d4 − 1 levels of stored spells chosen by the GM.\nAny creature can cast a spell of 1st through 3rd level into the stone by touching it as the spell is cast. The spell has no effect, other than to be stored in the stone. If the stone can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.\nWhile this stone orbits your head, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the stone is no longer stored in it, freeing up space.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233833,"modifiedTime":1671220963215,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"k2B9P3gm2NGjJ1m0","name":"Hide Armor +1","type":"equipment","img":"icons/equipment/chest/vest-cloth-tattered-tan.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":12,"price":{"value":1510,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"hide","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233834,"modifiedTime":1690538747075,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"k3T7tpcdzDyVKlF4","name":"Wand of the War Mage +2","type":"equipment","img":"icons/weapons/staves/staff-engraved-red.webp","system":{"description":{"value":"(Requires attunement by a spellcaster)\nWhile holding this wand, you gain a bonus to spell attack rolls of +2. In addition, you ignore half cover when making a spell attack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":4800,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233834,"modifiedTime":1671220963233,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kBVK2IiZYRkEYtcM","name":"Greatsword +1","type":"weapon","img":"icons/weapons/swords/greatsword-guard-gem-blue.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233835,"modifiedTime":1671220963237,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kHjpHTKex95ULxUX","name":"Light Crossbow +1","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"lightcrossbow","properties":{"lgt":false,"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233835,"modifiedTime":1671220963247,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kKGJjVVlJVoakWgQ","name":"Potion of Force Resistance","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-labeled-blue.webp","system":{"description":{"value":"The potion is a plain indescriminate color and smells slightly foul.\nWhen you drink this potion, you gain resistance to Force type damage for 1 hour.\nFor other potions of resistance, roll on the @Compendium[dnd5e.tables.JzLOE4IxcmxjLLuz]{Potion of Resistance} table.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233836,"modifiedTime":1671220963250,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kNlvoSTcdMqxJPmI","name":"Battleaxe +3","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-engraved-steel.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","slashing"]],"versatile":"1d10 + @mod +3"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"battleaxe","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233837,"modifiedTime":1671220963254,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kOYXMf4GTtD7OqbD","name":"Dancing Scimitar","type":"weapon","img":"icons/skills/melee/maneuver-greatsword-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":4,"max":"4","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":true,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233837,"modifiedTime":1671220963264,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kTxi62RTrrdrIBr9","name":"Holy Avenger Rapier","type":"weapon","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"(Requires attunement by a paladin)\nYou gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":165000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod + 3","piercing"]],"versatile":""},"formula":"2d10","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233838,"modifiedTime":1671220963269,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kdkpSZMUHGXGM15H","name":"Signet Ring","type":"loot","img":"icons/equipment/finger/ring-cabochon-gold-orange.webp","system":{"description":{"value":"A ring with specific design to denote membership and rank within a house or organization.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233838,"modifiedTime":1671220963273,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"khyjT3dKyoEOf4eA","name":"Wand of Polymorph","type":"consumable","img":"icons/weapons/staves/staff-engraved-red.webp","system":{"description":{"value":"(Requires attunement by a spellcaster)\nThis wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the @Compendium[dnd5e.spells.04nMsTWkIFvkbXlY]{Polymorph} spell (save DC 15) from it.\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":32000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":7,"max":"7","per":"charges","recovery":"1d6 + 1","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":"1d4 +1"},"formula":"1d6 +1","save":{"ability":"wis","dc":15,"scaling":"flat"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233839,"modifiedTime":1671220963276,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kjTPoUeomTPWJ9h3","name":"Adamantine Chain Shirt","type":"equipment","img":"icons/equipment/chest/breastplate-scale-grey.webp","system":{"description":{"value":"This armor is reinforced with adamantine, one of the hardest substances in existence.\nWhile you're wearing it, any critical hit against you becomes a normal hit.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":20,"price":{"value":550,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainshirt","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233839,"modifiedTime":1690538773030,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kpDbCYgUivh7NApp","name":"Spellguard Shield","type":"equipment","img":"icons/equipment/shield/kite-wooden-sigil-purple.webp","system":{"description":{"value":"(Requires attunement)\nWhile holding this shield, you have advantage on saving throws against spells and other magical effects, and spell attacks have disadvantage against you.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":50000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233840,"modifiedTime":1690540006987,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kvD4ElYCfCKpjDeg","name":"Dwarven Thrower","type":"weapon","img":"icons/weapons/hammers/hammer-drilling-spiked.webp","system":{"description":{"value":"(Requires attunement by a dwarf)You gain a +3 bonus to attack and damage rolls made with this magic weapon. It has the thrown property with a normal range of 20 feet and a long range of 60 feet. When you hit with a ranged attack using this weapon, it deals an extra 1d8 damage or, if the target is a giant, 2d8 damage. Immediately after the attack, the weapon flies back to your hand.Foundry NoteTo apply the additional damage to a giant, please use the Other Formula one more time.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":18000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","bludgeoning"]],"versatile":"1d10 + @mod +3"},"formula":"1d8","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"warhammer","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":true,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true,"ada":false,"sil":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233841,"modifiedTime":1671220963288,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"l2T46xCqUbJvKE7A","name":"War Pick +1","type":"weapon","img":"icons/weapons/axes/pickaxe-double-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"warpick","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233841,"modifiedTime":1671220963292,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"l3V7V8VCXpmAAysQ","name":"Staff of the Magi","type":"weapon","img":"icons/weapons/staves/staff-engraved-red.webp","system":{"description":{"value":"(Requires attunement by a sorcerer, warlock, or wizard)This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While you hold it, you gain a +2 bonus to spell attack rolls.The staff has 50 charges for the following properties. It regains 4d6 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 20, the staff regains 1d12 + 1 charges.Spell Absorption. While holding the staff, you have advantage on saving throws against spells. In addition, you can use your reaction when another creature casts a spell that targets only you. If you do, the staff absorbs the magic of the spell, canceling its effect and gaining a number of charges equal to the absorbed spell's level. However, if doing so brings the staff's total number of charges above 50, the staff explodes as if you activated its Retributive Strike (see below).Spells. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} (7 charges), @Compendium[dnd5e.spells.15Fa6q1nH27XfbR8]{Dispel Magic} (3 charges), @Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball} (7th-level version, 7 charges), @Compendium[dnd5e.spells.FjYE214HTERCRZNm]{Flaming Sphere} (2 charges), @Compendium[dnd5e.spells.WN2LWEljYU6QqnRH]{Ice Storm} (4 charges), @Compendium[dnd5e.spells.1N8dDMMgZ1h1YJ3B]{Invisibility} (2 charges), @Compendium[dnd5e.spells.1nhIxh0DsJsntCfj]{Knock} (2 charges), @Compendium[dnd5e.spells.IyikgTEOTv701jgQ]{Lightning Bolt} (7th-level version, 7 charges), @Compendium[dnd5e.spells.d9MwcXi7Il3HROXd]{Passwall} (5 charges), @Compendium[dnd5e.spells.J6Jpw5XzB5aTeqnz]{Plane Shift} (7 charges), @Compendium[dnd5e.spells.HQfd7jJyULIoGxrZ]{Telekinesis} (5 charges), @Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire} (4 charges), or @Compendium[dnd5e.spells.UJJu9c2UvCzVljiP]{Web} (2 charges).You can also use an action to cast one of the following spells from the staff without using any charges: @Compendium[dnd5e.spells.8cse7rit0oswRPUP]{Arcane Lock}, @Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic}, @Compendium[dnd5e.spells.WahI41a3goVUg0x1]{Enlarge/Reduce}, @Compendium[dnd5e.spells.Bnn9Nzajixvow9xi]{Light}, @Compendium[dnd5e.spells.Utk1OQRwYkMkFRD3]{Mage Hand}, or @Compendium[dnd5e.spells.xmDBqZhRVrtLP8h2]{Protection from Evil and Good}.Retributive Strike. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.You have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.Distance from OriginDamage10 ft. away or closer8 x the number of charges in the staff11 to 20 ft. away6 x the number of charges in the staff21 to 30 ft. away4 x the number of charges in the staff","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":350000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":10,"max":"50","per":"charges","recovery":"4d6 + 2"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod + 2","bludgeoning"]],"versatile":"1d8 + @mod + 2"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true,"ada":false,"sil":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233842,"modifiedTime":1671220963297,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"l794iywHk8Wc6Uvi","name":"Book of Lore","type":"loot","img":"icons/sundries/books/book-plain-orange.webp","system":{"description":{"value":"A book containing historical accounts, information pertaining to a particular field of lore, myth, or legend.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233842,"modifiedTime":1671220963300,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"l88FXiodYofrJT8a","name":"Lance +1","type":"weapon","img":"icons/weapons/ammunition/arrow-head-war-flight.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.\nSpecial. You have disadvantage when you use a lance to attack a target within 5 feet of you. Also, a lance requires two hands to wield when you aren't mounted.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"lance","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":true,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233843,"modifiedTime":1671220963304,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lAcTZgNtpmks2Mo5","name":"Potion of Cloud Giant Strength","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-blue.webp","system":{"description":{"value":"This potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type.\nWhen you drink this potion, your Strength score changes to 27 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":1750,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233843,"modifiedTime":1671220963308,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lHS63sC6bypENNlR","name":"Flask","type":"backpack","img":"icons/consumables/drinks/tea-jug-gourd-brown.webp","system":{"description":{"value":"A flask holds 1 pint of liquid.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":1,"weightless":true},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233844,"modifiedTime":1671220963312,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lM5uo6R4gy8rJG5Y","name":"Vicious Javelin","type":"weapon","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"This light and flexible spear is designed for throwing, but is versatile enough to be used in melee combat as well.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"javelin","properties":{"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233844,"modifiedTime":1671220963315,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lN1VbnGFo3HNZXNb","name":"Half Plate Armor of Resistance","type":"equipment","img":"icons/equipment/chest/breastplate-cuirass-steel-grey.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":40,"price":{"value":6750,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"halfplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233845,"modifiedTime":1690539027525,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lPsueMv4ZoXqCYf9","name":"Wand of Wonder","type":"consumable","img":"icons/weapons/staves/staff-skull-brown.webp","system":{"description":{"value":"(Requires attunement by a spellcaster)\nThis wand has 7 charges. While holding it, you can use an action to expend 1 of its charges and choose a target within 120 feet of you. The target can be a creature, an object, or a point in space. Roll on the @Compendium[dnd5e.tables.X03rbSjVcNNJNqa8]{Wand of Wonder} table to discover what happens.\nIf the effect causes you to cast a spell from the wand, the spell's save DC is 15. If the spell normally has a range expressed in feet, its range becomes 120 feet if it isn't already. If an effect covers an area, you must center the spell on and include the target. If an effect has multiple possible subjects, the GM randomly determines which ones are affected.\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into dust and is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":24000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":7,"max":"7","per":"charges","recovery":"1d6 + 1","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":"1d4 +1"},"formula":"1d6 +1","save":{"ability":"dex","dc":15,"scaling":"flat"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233845,"modifiedTime":1671220963332,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lSd5QHnIJbKvP1bh","name":"Apparatus of the Crab","type":"consumable","img":"icons/containers/barrels/barrel-walnut-steel-brown.webp","system":{"description":{"value":"Wondrous item\n \nThis item first appears to be a Large sealed iron barrel weighing 500 pounds. The barrel has a hidden catch, which can be found with a successful DC 20 Intelligence (Investigation) check. Releasing the catch unlocks a hatch at one end of the barrel, allowing two Medium or smaller creatures to crawl inside. Ten levers are set in a row at the far end, each in a neutral position, able to move either up or down. When certain levers are used, the apparatus transforms to resemble a giant lobster.\n \nThe Apparatus of the Crab is a Large object with the following statistics:\nAC: 20Hit Points: 200Speed: 30 ft., swim 30 ft. (or 0 ft. for both if the legs and tail aren't extended)Damage Immunities: poison, psychicTo be used as a vehicle, the apparatus requires one pilot. While the apparatus's hatch is closed, the compartment is airtight and watertight. The compartment holds enough air for 10 hours of breathing, divided by the number of breathing creatures inside.The apparatus floats on water. It can also go underwater to a depth of 900 feet. Below that, the vehicle takes 2d6 bludgeoning damage per minute from pressure.A creature in the compartment can use an action to move as many as two of the apparatus's levers up or down. After each use, a lever goes back to its neutral position. Each lever, from left to right, functions as show in the Apparatus of the Crab Levers table.Apparatus of the Crab Levers table:\n \n\n\n\n\nLever\nUp\nDown\n\n\n1\nLegs and tail extend, allowing the apparatus to walk and swim.\nLegs and tail retract, reducing the apparatus's speed to 0 and making it unable to benefit from bonuses to speed.\n\n\n2\nForward window shutter opens.\nForward window shutter closes.\n\n\n3\nSide window shutters open (two per side).\nSide window shutters close (two per side).\n\n\n4\nTwo claws extend from the front sides of the apparatus.\nThe claws retract.\n\n\n5\nEach extended claw makes the following melee weapon attack: +8 to hit, reach 5 ft., one target. Hit: 7 (2d6) bludgeoning damage.\nEach extended claw makes the following melee weapon attack: +8 to hit, reach 5 ft., one target. Hit: The target is Grappled (escape DC 15).\n\n\n6\nThe apparatus walks or swims forward.\nThe apparatus walks or swims backward.\n\n\n7\nThe apparatus turns 90 degrees left.\nThe apparatus turns 90 degrees right.\n\n\n8\nEyelike fixtures emit bright light in a 30-foot radius and dim light for an additional 30 feet.\nThe light turns off.\n\n\n9\nThe apparatus sinks as much as 20 feet in liquid.\nThe apparatus rises up to 20 feet in liquid.\n\n\n10\nThe rear hatch unseals and opens.\nThe rear hatch closes and seals.\n\n\n\n \n","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":500,"price":{"value":10000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233846,"modifiedTime":1671220963338,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lTfo6OVvAY2iJ4oq","name":"Silver Horn of Valhalla","type":"consumable","img":"icons/tools/instruments/flute-simple-wood.webp","system":{"description":{"value":"Wondrous item\nYou can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a @Compendium[dnd5e.monsters.kz1t6xeXVwODpYb2]{Berserker}. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\nFour types of Horn of Valhalla are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly from the @Compendium[dnd5e.tables.RwerG95cIk2uRpsQ]{Horn of Valhalla} table.\nSilver Horn of Valhalla.This silver horn summons [[/r 3d4 + 3]] berserkers when blown and has no other requirements.\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":5600,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 +2",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233847,"modifiedTime":1671220963348,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"laVqttkGMW4B9654","name":"Emblem","type":"equipment","img":"icons/sundries/flags/banner-symbol-sun-gold-red.webp","system":{"description":{"value":"A symbol engraved or carefully inlaid on a shield or some other device representing a deity through which a true believer can call forth their power and in doing so spread the faith.\nSpellcasting Focus. A cleric or paladin can use a holy symbol as a spellcasting focus. To use the symbol in this way, the caster must hold it in hand, wear it visibly, or bear it on a shield.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"special","cost":null,"condition":"Holy symbol must be clearly visible."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"trinket","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233847,"modifiedTime":1671220963352,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lccm5AjIk91aIHbi","name":"Breastplate Armor of Resistance","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel-grey.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":20,"price":{"value":6400,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"breastplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233848,"modifiedTime":1690538968668,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lcqqW2vGF6P8nJ77","name":"Whip +1","type":"weapon","img":"icons/weapons/misc/whip-red-yellow.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"whip","properties":{"fin":true,"rch":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233848,"modifiedTime":1671220963882,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lsiR1hVfISlC5YoB","name":"Staff of Fire","type":"weapon","img":"icons/weapons/staves/staff-engraved-red.webp","system":{"description":{"value":"(Requires attunement by a druid, sorcerer, warlock, or wizard)You have resistance to fire damage while you hold this staff.The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: @Compendium[dnd5e.spells.5SuJewoa1CRWaj1F]{Burning Hands} (1 charge), @Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball} (3 charges), or @Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire} (4 charges).The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff blackens, crumbles into cinders, and is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":16000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":10,"max":"10","per":"charges","recovery":"1d6 + 4"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233849,"modifiedTime":1671220963900,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"luTJgPXN5n0EN7iy","name":"Vicious Whip","type":"weapon","img":"icons/weapons/misc/whip-red-yellow.webp","system":{"description":{"value":"A tensile lash made of leather, cord, or chain which can lash out at nearby enemies, dealing lacerations and harrying them from a distance.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"whip","properties":{"fin":true,"rch":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233850,"modifiedTime":1671220963910,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lvLrkAR7k8DS7J3W","name":"Iron Flask","type":"consumable","img":"icons/consumables/potions/bottle-round-empty-glass.webp","system":{"description":{"value":"Wondrous item\nThis iron bottle has a brass stopper. You can use an action to speak the flask's command word, targeting a creature that you can see within 60 feet of you. If the target is native to a plane of existence other than the one you're on, the target must succeed on a DC 17 Wisdom saving throw or be trapped in the flask. If the target has been trapped by the flask before, it has advantage on the saving throw. Once trapped, a creature remains in the flask until released. The flask can hold only one creature at a time. A creature trapped in the flask doesn't need to breathe, eat, or drink and doesn't age.\nYou can use an action to remove the flask's stopper and release the creature the flask contains. The creature is friendly to you and your companions for 1 hour and obeys your commands for that duration. If you give no commands or give it a command that is likely to result in its death, it defends itself but otherwise takes no actions. At the end of the duration, the creature acts in accordance with its normal disposition and alignment.\nAn @Compendium[dnd5e.spells.3OZnNhunvRtPOQmH]{Identify} spell reveals that a creature is inside the flask, but the only way to determine the type of creature is to open the flask. A newly discovered bottle might already contain a creature chosen by the GM or determined randomly from the @Compendium[dnd5e.tables.JDtZNDaAirupdm2O]{Iron Flask} table.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":31000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233850,"modifiedTime":1671220963919,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lvaMqEhfidfHDGf5","name":"Cloak of Protection","type":"equipment","img":"icons/equipment/back/cloak-heavy-fur-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nYou gain a +1 bonus to AC and saving throws while you wear this cloak.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":3500,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"5","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[{"_id":"jxfin1rh71p1xjjv","changes":[{"key":"system.attributes.ac.bonus","mode":2,"value":"+1"},{"key":"system.bonuses.abilities.save","mode":2,"value":"+1"}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/equipment/back/cloak-heavy-fur-blue.webp","label":"+1 to AC & Saves","origin":"Compendium.dnd5e.items.lvaMqEhfidfHDGf5","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787233851,"modifiedTime":1674424596069,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"m1hJnK7CHsaJB26v","name":"Mace +2","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +2","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"mace","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233851,"modifiedTime":1671220963951,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"m7RubLd1lUcMjYgY","name":"Mace of Disruption","type":"weapon","img":"icons/magic/symbols/cog-shield-white-blue.webp","system":{"description":{"value":"(Requires attunement)\nWhen you hit a fiend or an undead with this magic weapon, that creature takes an extra 2d6 radiant damage. If the target has 25 hit points or fewer after taking this damage, it must succeed on a DC 15 Wisdom saving throw or be destroyed. On a successful save, the creature becomes frightened of you until the end of your next turn.\nWhile you hold this weapon, it sheds bright light in a 20-foot radius and dim light for an additional 20 feet.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"2d6","save":{"ability":"wis","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"mace","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233852,"modifiedTime":1671220963959,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"mGIwk9FwTAJB6qTn","name":"Oathbow","type":"weapon","img":"icons/weapons/bows/longbow-recurve-leather-red.webp","system":{"description":{"value":"(Requires attunement)\nWhen you nock an arrow on this bow, it whispers in Elvish, \"Swift defeat to my enemies.\" When you use this weapon to make a ranged attack, you can, as a command phrase, say, \"Swift death to you who have wronged me.\" The target of your attack becomes your sworn enemy until it dies or until dawn seven days later. You can have only one such sworn enemy at a time. When your sworn enemy dies, you can choose a new one after the next dawn.\nWhen you make a ranged attack roll with this weapon against your sworn enemy, you have advantage on the roll. In addition, your target gains no benefit from cover, other than total cover, and you suffer no disadvantage due to long range. If the attack hits, your sworn enemy takes an extra 3d6 piercing damage.\nWhile your sworn enemy lives, you have disadvantage on attack rolls with all other weapons.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":3500,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command phrase."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"3d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"longbow","properties":{"amm":true,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233853,"modifiedTime":1671220963967,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"mQVYcHmMSoCUnBnM","name":"Bucket","type":"backpack","img":"icons/containers/misc/bucket-steel.webp","system":{"description":{"value":"A bucket holds 3 gallons of liquid or ½ cubic foot of solids.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":25,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233853,"modifiedTime":1671220963977,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"mYFfH24uzuKh4IPS","name":"Wind Fan","type":"consumable","img":"icons/commodities/treasure/trinket-wing-white.webp","system":{"description":{"value":"Wondrous item\nWhile holding this fan, you can use an action to cast the @Compendium[dnd5e.spells.FSMy6VAjDnXY9vWz]{Gust of Wind} spell (save DC 13) from it. Once used, the fan shouldn't be used again until the next dawn. Each time it is used again before then, it has a cumulative 20 percent chance of not working and tearing into useless, nonmagical tatters.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":"1d4 +1"},"formula":"1d5","save":{"ability":"str","dc":13,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233854,"modifiedTime":1671220963985,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"meJEfX3gZgtMX4x2","name":"Vial","type":"backpack","img":"icons/consumables/potions/vial-cork-empty.webp","system":{"description":{"value":"A vial can hold up to 4 ounces of liquid.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":0.25,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233854,"modifiedTime":1671220963991,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"mhFBTY0egW8AeCHe","name":"Potion of Hill Giant Strength","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-green.webp","system":{"description":{"value":"This potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type.\nWhen you drink this potion, your Strength score changes to 21 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":900,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233855,"modifiedTime":1671220963995,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"mkyltDYnuzNU3kmF","name":"Greatclub +3","type":"weapon","img":"icons/weapons/maces/mace-spiked-steel-grey.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"club","properties":{"two":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233855,"modifiedTime":1671220964031,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"mr96Z8YTI490ExhP","name":"Robe of the Archmagi","type":"equipment","img":"icons/magic/symbols/rune-sigil-black-pink.webp","system":{"description":{"value":"Wondrous item, (requires attunement by a sorcerer, warlock, or wizard)\nThis elegant garment is made from exquisite cloth of white, gray, or black and adorned with silvery runes. The robe's color corresponds to the alignment for which the item was created. A white robe was made for good, gray for neutral, and black for evil. You can't attune to a robe of the archmagi that doesn't correspond to your alignment. You gain these benefits while wearing the robe:\n\nIf you aren't wearing armor, your base Armor Class is 15 + your Dexterity modifier.\nYou have advantage on saving throws against spells and other magical effects.\nYour spell save DC and spell attack bonus each increase by 2.\n","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":34000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"none","cost":null,"condition":"Alignment must match the robe's to attune."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[{"_id":"x6gy8sik893jvxea","changes":[{"key":"system.attributes.ac.armor","mode":5,"value":"15","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/symbols/rune-sigil-black-pink.webp","label":"15 base AC","origin":"Compendium.dnd5e.items.mr96Z8YTI490ExhP","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233856,"modifiedTime":1671220964066,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"mtyw4NS1s7j2EJaD","name":"Spell Scroll 7th Level","type":"consumable","img":"icons/sundries/scrolls/scroll-bound-sealed-red-green.webp","system":{"description":{"value":"A spell scroll bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can read the scroll and cast its spell without providing any material components. Otherwise, the scroll is unintelligible. Casting the spell by reading the scroll requires the spell's normal casting time. Once the spell is cast, the words on the scroll fade, and it crumbles to dust. If the casting is interrupted, the scroll is not lost.\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 17 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity.\nSave DC: 18Attack Bonus: +10.\nA wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 17 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":2560,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Spell must be on the caster's spell list."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"10","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":18,"scaling":"flat"},"consumableType":"scroll"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233856,"modifiedTime":1671220964094,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"n1V07puo0RQxPGuF","name":"Hide Armor","type":"equipment","img":"icons/equipment/chest/vest-cloth-tattered-tan.webp","system":{"description":{"value":"This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":12,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"hide","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233857,"modifiedTime":1690538743475,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"n7fm71CN7qDIBEKk","name":"Adamantine Chain Mail","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"This armor is reinforced with adamantine, one of the hardest substances in existence.\nWhile you're wearing it, any critical hit against you becomes a normal hit.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":55,"price":{"value":575,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainmail","speed":{"value":null,"conditions":""},"strength":13,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233858,"modifiedTime":1671220964115,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nAqDwI9GyXS1diiz","name":"Horseshoes of Speed","type":"consumable","img":"icons/tools/smithing/horseshoe-steel-blue.webp","system":{"description":{"value":"Wondrous item\nThese iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they increase the creature's walking speed by 30 feet.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":8,"price":{"value":5000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233858,"modifiedTime":1671220964135,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nBFr5xTWeChM7xrb","name":"Giant Slayer Greatsword","type":"weapon","img":"icons/weapons/swords/greatsword-guard-gold-worn.webp","system":{"description":{"value":"You gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":7000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod +1","slashing"]],"versatile":""},"formula":"2d6","save":{"ability":"str","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233859,"modifiedTime":1671220964141,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nL0Y0X8SjF58OmBM","name":"Luck Blade Shortsword","type":"weapon","img":"icons/magic/light/projectile-beam-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\nLuck. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\nWish. The sword has 1d4 – 1 charges. While holding it, you can use an action to expend 1 charge and cast the @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":210000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 +@mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233859,"modifiedTime":1671220964146,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nMtmxeYrbyFdv0bg","name":"Figurine of Wondrous Power (Silver Raven)","type":"consumable","img":"icons/commodities/materials/feather-blue-grey.webp","system":{"description":{"value":"Wondrous item\nA figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\nSilver Raven. This silver statuette of a raven can become a @Compendium[dnd5e.monsters.LPdX5YLlwci0NDZx]{Raven} for up to 12 hours. Once it has been used, it can't be used again until 2 days have passed. While in raven form, the figurine allows you to cast the @Compendium[dnd5e.spells.X8w9EzYLGc4vQ1H2]{Animal Messenger} spell on it at will.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":5000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"12","units":"hour"},"cover":null,"target":{"value":2.5,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233860,"modifiedTime":1671220964165,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nSNhjX5F7f86AW1a","name":"Defender Greatsword","type":"weapon","img":"icons/weapons/polearms/spear-flared-silver-pink.webp","system":{"description":{"value":"(Requires attunement)You gain a +3 bonus to attack and damage rolls made with this magic weapon.The first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.Foundry NoteThe sword's bonus to attack and damage rolls have been included; please remember to manually subtract should the user transfer any of the bonus to their AC.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":24000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod +3","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233860,"modifiedTime":1671220964179,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nXWdGtzi8DXDLLsL","name":"Pitcher","type":"backpack","img":"icons/containers/kitchenware/jug-terracotta-orange.webp","system":{"description":{"value":"A pitcher holds 1 gallon of liquid.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":8.4,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233861,"modifiedTime":1671220964184,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nXWevqtV6p484N59","name":"Potion of Animal Friendship","type":"consumable","img":"icons/consumables/potions/potion-bottle-corked-labeled-green.webp","system":{"description":{"value":"Agitating this muddy liquid brings little bits into view: a fish scale, hummingbird tongue, a cat claw, or a squirrel hair.\nWhen you drink this potion, you can cast the @Compendium[dnd5e.spells.hDOENzjuj5WpLq7B]{Animal Friendship} spell (save DC 13) for 1 hour at will.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Beast must have an Intelligence of 3 or lower."},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"flat"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233862,"modifiedTime":1671220964187,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nY6CnKEHyJ5STgt5","name":"Vicious Greataxe","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"This enormous axe features two twin crescent blades mounted on either side of a tall spiked shaft. Designed to be wielded with two hands and cleave foes in twain.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d12 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greataxe","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233862,"modifiedTime":1671220964201,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nfIRTECQIG81CvM4","name":"Club","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"A stout knob of wood forms a simple, but effective, cudgel. These weapons are used to bludgeon foes, bruising flesh and breaking bones.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"club","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233863,"modifiedTime":1671220964208,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nk2MH16KcZmKp7FQ","name":"Ioun Stone of Mastery","type":"equipment","img":"icons/commodities/gems/gem-rough-cushion-green.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Mastery. Your proficiency bonus increases by 1 while this pale green prism orbits your head.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":15000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[{"label":"Ioun Stone of Mastery","icon":"icons/commodities/gems/gem-rough-cushion-green.webp","origin":"Compendium.dnd5e.items.nk2MH16KcZmKp7FQ","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"jNhlCgAz5EWLkZy6","changes":[{"key":"system.attributes.prof","mode":2,"value":"+1"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233863,"modifiedTime":1690481038713,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nl7cc7Z1HpSHbUdQ","name":"Halberd +1","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"halberd","properties":{"hvy":true,"two":true,"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233864,"modifiedTime":1671220964217,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nrvAo3TznyQrHS1t","name":"War Pick +3","type":"weapon","img":"icons/weapons/axes/pickaxe-double-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"warpick","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233864,"modifiedTime":1671220964231,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nsXZejlmgalj4he9","name":"Ring Mail","type":"equipment","img":"icons/equipment/chest/breastplate-banded-simple-leather-brown.webp","system":{"description":{"value":"This armor is leather armor with heavy rings sewn into it. The rings help reinforce the armor against blows from swords and axes. Ring mail is inferior to chain mail, and it's usually worn only by those who can't afford better armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":40,"price":{"value":30,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"ringmail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233865,"modifiedTime":1690539369755,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nvhk1quD0Dg1ZtSH","name":"Pipes of the Sewers","type":"consumable","img":"icons/tools/instruments/flute-simple-wood.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nYou must be proficient with wind instruments to use these pipes. While you are attuned to the pipes, ordinary rats and giant rats are indifferent toward you and will not attack you unless you threaten or harm them.\nThe pipes have 3 charges. If you play the pipes as an action, you can use a bonus action to expend 1 to 3 charges, calling forth one @Compendium[dnd5e.monsters.8ihbbjkaOFTPbI73]{Swarm of Rats} with each expended charge, provided that enough rats are within half a mile of you to be called in this fashion (as determined by the GM). If there aren't enough rats to form a swarm, the charge is wasted. Called swarms move toward the music by the shortest available route but aren't under your control otherwise. The pipes regain 1d3 expended charges daily at dawn.\nWhenever a swarm of rats that isn't under another creature's control comes within 30 feet of you while you are playing the pipes, you can make a Charisma check contested by the swarm's Wisdom check. If you lose the contest, the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours. If you win the contest, the swarm is swayed by the pipes' music and becomes friendly to you and your companions for as long as you continue to play the pipes each round as an action. A friendly swarm obeys your commands. If you issue no commands to a friendly swarm, it defends itself but otherwise takes no actions. If a friendly swarm starts its turn and can't hear the pipes' music, your control over that swarm ends, and the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"bonus","cost":1,"condition":"Proficiency with wind instruments."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":0.5,"long":null,"units":"mi"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"cha"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233865,"modifiedTime":1671220964244,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"o4Irx3hHiD3FnPbL","name":"Trident of Fish Command","type":"weapon","img":"icons/skills/ranged/arrows-flying-salvo-purple.webp","system":{"description":{"value":"(Requires attunement)\nThis trident is a magic weapon. It has 3 charges. While you carry it, you can use an action and expend 1 charge to cast @Compendium[dnd5e.spells.LrPvWHBPmiMQQsKB]{Dominate Beast} (save DC 15) from it on a beast that has an innate swimming speed. The trident regains 1d3 expended charges daily at dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":800,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3"},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"trident","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233866,"modifiedTime":1671220964253,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"oG4rvCuMstgl4Nez","name":"Hand Crossbow +3","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"handcrossbow","properties":{"amm":true,"lgt":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233867,"modifiedTime":1671220964267,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"oN4Glcmi4BhdAI3k","name":"Tome of Leadership and Influence","type":"consumable","img":"icons/sundries/books/book-embossed-clasp-gold-brown.webp","system":{"description":{"value":"Wondrous item\nThis book contains guidelines for influencing and charming others, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Charisma score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":100000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"hour","cost":48,"condition":"The book must be completed in 6 days or less."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233867,"modifiedTime":1671220964279,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"oNLfJNRQgUHpU8c7","name":"Pipes of Haunting","type":"consumable","img":"icons/tools/instruments/flute-simple-wood.webp","system":{"description":{"value":"Wondrous item\nYou must be proficient with wind instruments to use these pipes. They have 3 charges. You can use an action to play them and expend 1 charge to create an eerie, spellbinding tune. Each creature within 30 feet of you that hears you play must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. If you wish, all creatures in the area that aren't hostile toward you automatically succeed on the saving throw. A creature that fails the saving throw can repeat it at the end of each of its turns, ending the effect on itself on a success. A creature that succeeds on its saving throw is immune to the effect of these pipes for 24 hours.\nThe pipes regain 1d3 expended charges daily at dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":6000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Proficiency with wind instruments."},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233868,"modifiedTime":1671220964284,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"oSarKEU8x1AupB6z","name":"Deck of Many Things","type":"consumable","img":"icons/sundries/misc/admission-ticket-grey.webp","system":{"description":{"value":"Wondrous item\nUsually found in a box or pouch, this deck contains a number of cards made of ivory or vellum. Most (75 percent) of these decks have only thirteen cards, but the rest have twenty-two.\nBefore you draw a card, you must declare how many cards you intend to draw and then draw them randomly (you can use an altered deck of playing cards to simulate the deck). Any cards drawn in excess of this number have no effect. Otherwise, as soon as you draw a card from the deck, its magic takes effect. You must draw each card no more than 1 hour after the previous draw. If you fail to draw the chosen number, the remaining number of cards fly from the deck on their own and take effect all at once.\nOnce a card is drawn, it fades from existence. Unless the card is the Fool or the Jester, the card reappears in the deck, making it possible to draw the same card twice.\n\n\n\nPlaying Card\nCard\n\n\nAce of Diamonds\nVizier*\n\n\nKing of Diamonds\nSun\n\n\nQueen of Diamonds\nMoon\n\n\nJack of Diamonds\nStar\n\n\nTwo of Diamonds\nComet*\n\n\nAce of Hearts\nThe Fates*\n\n\nKing of Hearts\nThrone\n\n\nQueen of Hearts\nKey\n\n\nJack of Hearts\nKnight\n\n\nTwo of Hearts\nGem*\n\n\nAce of Clubs\nTalons*\n\n\nKing of Clubs\nThe Void\n\n\nQueen of Clubs\nFlames\n\n\nJack of Clubs\nSkull\n\n\nTwo of Clubs\nIdiot*\n\n\nAce of Spades\nDonjon*\n\n\nKing of Spades\nRuin\n\n\nQueen of Spades\nEuryale\n\n\nJack of Spades\nRogue\n\n\nTwo of Spades\nBalance*\n\n\nJoker (with TM)\nFool*\n\n\nJoker (without TM)\nJester\n\n\n\n*Found only in a deck with twenty-two cards\nBalance. Your mind suffers a wrenching alteration, causing your alignment to change. Lawful becomes chaotic, good becomes evil, and vice versa. If you are true neutral or unaligned, this card has no effect on you.\nComet. If you single-handedly defeat the next hostile monster or group of monsters you encounter, you gain experience points enough to gain one level. Otherwise, this card has no effect.\nDonjon. You disappear and become entombed in a state of suspended animation in an extradimensional sphere. Everything you were wearing and carrying stays behind in the space you occupied when you disappeared. You remain imprisoned until you are found and removed from the sphere. You can't be located by any divination magic, but a @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} can reveal the location of your prison. You draw no more cards.\nEuryale. The card's medusa-like visage curses you. You take a −2 penalty on saving throws while cursed in this way. Only a god or the magic of The Fates card can end this curse.\nThe Fates. Reality's fabric unravels and spins anew, allowing you to avoid or erase one event as if it never happened. You can use the card's magic as soon as you draw the card or at any other time before you die.\nFlames. A powerful devil becomes your enemy. The devil seeks your ruin and plagues your life, savoring your suffering before attempting to slay you. This enmity lasts until either you or the devil dies.\nFool. You lose 10,000 XP, discard this card, and draw from the deck again, counting both draws as one of your declared draws. If losing that much XP would cause you to lose a level, you instead lose an amount that leaves you with just enough XP to keep your level.\nGem. Twenty-five pieces of jewelry worth 2,000 gp each or fifty gems worth 1,000 gp each appear at your feet.\nIdiot. Permanently reduce your Intelligence by 1d4 + 1 (to a minimum score of 1). You can draw one additional card beyond your declared draws.\nJester. You gain 10,000 XP, or you can draw two additional cards beyond your declared draws.\nKey. A rare or rarer magic weapon with which you are proficient appears in your hands. The GM chooses the weapon.\nKnight. You gain the service of a 4th-level fighter who appears in a space you choose within 30 feet of you. The fighter is of the same race as you and serves you loyally until death, believing the fates have drawn him or her to you. You control this character.\nMoon. You are granted the ability to cast the @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell 1d3 times.\nRogue. A nonplayer character of the GM's choice becomes hostile toward you. The identity of your new enemy isn't known until the NPC or someone else reveals it. Nothing less than a @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell or divine intervention can end the NPC's hostility toward you.\nRuin. All forms of wealth that you carry or own, other than magic items, are lost to you. Portable property vanishes. Businesses, buildings, and land you own are lost in a way that alters reality the least. Any documentation that proves you should own something lost to this card also disappears.\nSkull. You summon an avatar of death - a ghostly humanoid skeleton clad in a tattered black robe and carrying a spectral scythe. It appears in a space of the GM's choice within 10 feet of you and attacks you, warning all others that you must win the battle alone. The avatar fights until you die or it drops to 0 hit points, whereupon it disappears. If anyone tries to help you, the helper summons its own avatar of death. A creature slain by an avatar of death can't be restored to life.\nAvatar of Death\nMedium undead, neutral evil\nArmor Class 20Hit Points half the hit point maximum of its summonerSpeed 60 ft., fly 60 ft. (hover)\n\n\n\nSTR\nDEX\nCON\nINT\nWIS\nCHA\n\n\n\n\n16 (+3)\n16 (+3)\n16 (+3)\n16 (+3)\n16 (+3)\n16 (+3)\n\n\n\nDamage Immunities necrotic, poisonCondition Immunities charmed, frightened, paralyzed, petrified, poisoned, unconsciousSenses darkvision 60 ft., truesight 60 ft., passive Perception 13Languages all languages known to its summonerChallenge -- (0 XP)\nIncorporeal Movement. The avatar can move through other creatures and objects as if they were difficult terrain. It takes 5 (1d10) force damage if it ends its turn inside an object.Turning Immunity. The avatar is immune to features that turn undead.\nActions\nReaping Scythe. The avatar sweeps its spectral scythe through a creature within 5 feet of it, dealing 7 (1d8 + 3) slashing damage plus 4 (1d8) necrotic damage.\n \nStar. Increase one of your ability scores by 2. The score can exceed 20 but can't exceed 24.\nSun. You gain 50,000 XP, and a wondrous item (which the GM determines randomly) appears in your hands.\nTalons. Every magic item you wear or carry disintegrates. Artifacts in your possession aren't destroyed but do vanish.\nThrone. You gain proficiency in the Persuasion skill, and you double your proficiency bonus on checks made with that skill. In addition, you gain rightful ownership of a small keep somewhere in the world. However, the keep is currently in the hands of monsters, which you must clear out before you can claim the keep as yours.\nVizier. At any time you choose within one year of drawing this card, you can ask a question in meditation and mentally receive a truthful answer to that question. Besides information, the answer helps you solve a puzzling problem or other dilemma. In other words, the knowledge comes with wisdom on how to apply it.\nThe Void. This black card spells disaster. Your soul is drawn from your body and contained in an object in a place of the GM's choice. One or more powerful beings guard the place. While your soul is trapped in this way, your body is incapacitated. A @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell can't restore your soul, but the spell reveals the location of the object that holds it. You draw no more cards.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":6120,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":22,"max":"22","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233868,"modifiedTime":1671220964301,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"oY8KbpGmB5H2Deoy","name":"Silk Rope (50 ft.)","type":"consumable","img":"icons/sundries/survival/rope-wrapped-red.webp","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233869,"modifiedTime":1671220964311,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"oYZNXHth1UYxPwVi","name":"Periapt of Proof against Poison","type":"equipment","img":"icons/equipment/neck/necklace-hook-brown.webp","system":{"description":{"value":"Wondrous item\nThis delicate silver chain has a brilliant-cut black gem pendant. While you wear it, poisons have no effect on you. You are immune to the poisoned condition and have immunity to poison damage.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.01,"price":{"value":5000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233869,"modifiedTime":1671220964317,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"odV5cq2HSLSCH69k","name":"Prayer Book","type":"loot","img":"icons/sundries/books/book-backed-silver-red.webp","system":{"description":{"value":"A book containing prayers and incantations dedicated to a specific power for the faithful to follow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233870,"modifiedTime":1671220964320,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"orHjq3XDPz4eXcov","name":"Dragon Slayer Greatsword","type":"weapon","img":"icons/skills/melee/strike-axe-blood-red.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod +1","slashing"]],"versatile":""},"formula":"3d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233870,"modifiedTime":1671220964339,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"osLzOwQdPtrK3rQH","name":"Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"A medium sized blade with a firm crossguard and a leather-wrapped handle. A versatile weapon which makes up in versatility what it lacks in reach.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233871,"modifiedTime":1671220964357,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"otYAEwhsANKHZAmk","name":"Gloves of Missile Snaring","type":"equipment","img":"icons/creatures/webs/web-spider-glowing-purple.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThese gloves seem to almost meld into your hands when you don them. When a ranged weapon attack hits you while you're wearing them, you can use your reaction to reduce the damage by 1d10 + your Dexterity modifier, provided that you have a free hand. If you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in that hand.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":3000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d10 + @mod","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233871,"modifiedTime":1671220964365,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"oxzUb5j1TMsccGW4","name":"Mantle of Spell Resistance","type":"equipment","img":"icons/magic/unholy/silhouette-robe-evil-power.webp","system":{"description":{"value":"(Requires attunement)\nYou have advantage on saving throws against spells while you wear this cloak.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":30000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233872,"modifiedTime":1671220964368,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ozYrQ5N4s81h35Fa","name":"Vicious Blowgun","type":"weapon","img":"icons/weapons/staves/staff-simple-brown.webp","system":{"description":{"value":"A primitive, but deadly, weapon favored by tribes and guerrila fighters. The darts fired from this gun can puncture and deliver lethal doses of venom.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":25,"long":100,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"blowgun","properties":{"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233872,"modifiedTime":1671220964372,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"p01JzD9RpIOkJiqK","name":"Rapier of Life Stealing","type":"weapon","img":"icons/creatures/claws/claw-curved-poison-purple.webp","system":{"description":{"value":"(Requires attunement)\nWhen you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Must roll a 20 and the target cannot be undead."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod","piercing"]],"versatile":""},"formula":"3d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233873,"modifiedTime":1671220964377,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"p2zChy24ZJdVqMSH","name":"Chain Shirt","type":"equipment","img":"icons/equipment/chest/breastplate-scale-grey.webp","system":{"description":{"value":"Made of interlocking metal rings, a chain shirt is worn between layers of clothing or leather. This armor offers modest protection to the wearer's upper body and allows the sound of the rings rubbing against one another to be muffled by outer layers.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":20,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainshirt","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233873,"modifiedTime":1690538776890,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"p9dtQU9wEZGumHSb","name":"Vicious Greatclub","type":"weapon","img":"icons/weapons/maces/mace-spiked-steel-grey.webp","system":{"description":{"value":"A larger variant of the simple club, a hefty wooden shaft with an enormous knot of wood upon the end deals crippling bludgeoning damage to unfortunate foes.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"club","properties":{"two":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233874,"modifiedTime":1671220964385,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"pC3202gDTy8G5i4r","name":"Vicious Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"A lengthy stright blade designed for slashing foes, the longsword is a highly versatile weapon that may also be wielded with two hands for more punishing strikes.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233875,"modifiedTime":1671220964400,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"pG6dddIcb9NmPrdt","name":"Longsword of Wounding","type":"weapon","img":"icons/magic/water/heart-ice-freeze.webp","system":{"description":{"value":"(Requires attunement)\nHit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"1d4","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233875,"modifiedTime":1671220964407,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"paqlMjggWkBIAeCe","name":"Amulet","type":"equipment","img":"icons/equipment/neck/pendant-bronze-gem-blue.webp","system":{"description":{"value":"An amulet depicting a symbol representing a deity through which a true believer can call forth their power and in doing so spread the faith.\nSpellcasting Focus. A cleric or paladin can use a holy symbol as a spellcasting focus. To use the symbol in this way, the caster must hold it in hand, wear it visibly, or bear it on a shield.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"special","cost":null,"condition":"Holy symbol must be clearly visible."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"trinket","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233876,"modifiedTime":1671220964411,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"psoZaItkOScMVaHL","name":"Oil Flask","type":"consumable","img":"icons/consumables/potions/bottle-bulb-empty-glass.webp","system":{"description":{"value":"Oil usually comes in a clay flask that holds 1 pint. As an action, you can splash the oil in this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact. Make a ranged attack against a target creature or object, treating the oil as an improvised weapon.\nOn a hit, the target is covered in oil. If the target takes any fire damage before the oil dries (after 1 minute), the target takes an additional 5 fire damage from the burning oil. You can also pour a flask of oil on the ground to cover a 5-foot-square area, provided that the surface is level.\nIf lit, the oil burns for 2 rounds and deals 5 fire damage to any creature that enters the area or ends its turn in the area. A creature can take this damage only once per turn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":20,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233876,"modifiedTime":1671220964419,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"q24QnImAicnT9Byd","name":"Light Hammer +1","type":"weapon","img":"icons/weapons/hammers/hammer-war-spiked.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +1","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"lighthammer","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233877,"modifiedTime":1671220964425,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"q3WqP3r2emnumyUF","name":"Sling +3","type":"weapon","img":"icons/weapons/slings/slingshot-wood.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +3","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"sling","properties":{"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233877,"modifiedTime":1671220964441,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qBSEGJyHxdKIlBfj","name":"Potion of Poison","type":"consumable","img":"icons/consumables/potions/potion-bottle-skull-label-poison-teal.webp","system":{"description":{"value":"This concoction looks, smells, and tastes like a potion of healing or other beneficial potion.However, it is actually poison masked by illusion magic. An identify spell reveals its true nature.If you drink it, you take 3d6 poison damage, and you must succeed on a DC 13 Constitution saving throw or be poisoned. At the start of each of your turns while you are poisoned in this way, you take 3d6 poison damage. At the end of each of your turns, you can repeat the saving throw. On a successful save, the poison damage you take on your subsequent turns decreases by 1d6. The poison ends when the damage decreases to 0.Foundry NoteTo apply the reduced damage from a successful Constitution save, please use the Other Formula (set at 1d6) as required.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":100,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"spec"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","poison"]],"versatile":""},"formula":"1d6","save":{"ability":"con","dc":13,"scaling":"flat"},"consumableType":"poison"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233878,"modifiedTime":1671220964452,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qBydtUUIkv520DT7","name":"Lute","type":"tool","img":"icons/tools/instruments/lute-gold-brown.webp","system":{"description":{"value":"A lute to evoke awe, wonder, or fear in your audience.\nIf you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":35,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"music","baseItem":"lute","ability":"cha","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233878,"modifiedTime":1671220964460,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qGH7YqWhi0tHisMi","name":"Luck Blade Rapier","type":"weapon","img":"icons/magic/light/projectile-beam-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\nLuck. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\nWish. The sword has 1d4 – 1 charges. While holding it, you can use an action to expend 1 charge and cast the @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":210000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233879,"modifiedTime":1671220964464,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qGRN4wvZLJ8uITf2","name":"Vicious Sling","type":"weapon","img":"icons/weapons/slings/slingshot-wood.webp","system":{"description":{"value":"A flexible lash of leather affixed to a wooden handle which is capable of flinging rocks or metal bullets with deadly velocity.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"sling","properties":{"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233879,"modifiedTime":1671220964468,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qMGkmzfLHfXd7DiJ","name":"Ring of Necrotic Resistance","type":"equipment","img":"icons/equipment/finger/ring-band-engraved-scrolls-silver.webp","system":{"description":{"value":"(Requires attunement)\nThis ring has been inlaid with a jet stone that seems to swallow any light that it catches.\nYou have resistance to necrotic damage while wearing this ring.\nFor other rings of resistance, roll on the @Compendium[dnd5e.tables.MdTxWyYVhTIgtNcG]{Ring of Resistance} table","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233881,"modifiedTime":1671220964472,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qMzHmlmha8qMDnEF","name":"Lamp","type":"consumable","img":"icons/sundries/lights/lantern-iron-yellow.webp","system":{"description":{"value":"A lamp casts bright light in a 15-foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"6","units":"hour"},"cover":null,"target":{"value":45,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233881,"modifiedTime":1671220964483,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qRMQH8lRE42JkugE","name":"Mithral Half Plate Armor","type":"equipment","img":"icons/equipment/chest/breastplate-cuirass-steel-grey.webp","system":{"description":{"value":"Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":40,"price":{"value":1550,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"halfplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233882,"modifiedTime":1690539030662,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qVHCzgVvOZAtuk4N","name":"Flame Tongue Scimitar","type":"weapon","img":"icons/magic/fire/projectile-bolt-zigzag-orange.webp","system":{"description":{"value":"(Requires attunement)\nYou can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"2d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233883,"modifiedTime":1671220964491,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qVuZznv0MnIjDU70","name":"Iron Horn of Valhalla","type":"consumable","img":"icons/tools/instruments/flute-simple-wood.webp","system":{"description":{"value":"Wondrous item\nYou can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a @Compendium[dnd5e.monsters.kz1t6xeXVwODpYb2]{Berserker}. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\nFour types of Horn of Valhalla are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly from the @Compendium[dnd5e.tables.RwerG95cIk2uRpsQ]{Horn of Valhalla} table.\nIron Horn of Valhalla.This iron horn summons [[/r 5d4 + 5]] berserkers when blown and requires proficiency with all martial weapons to be used.\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":14000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d4 +5",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233883,"modifiedTime":1671220964496,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qWlXDEgqdmdZWoab","name":"Shovel","type":"loot","img":"icons/tools/hand/shovel-spade-steel-grey.webp","system":{"description":{"value":"A tool resembling a spade with a broad blade and typically upturned sides, used for moving coals, earth, snow or other material.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233884,"modifiedTime":1671220964499,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qXcUKfCVxEvV3VU8","name":"Decanter of Endless Water","type":"consumable","img":"icons/consumables/potions/potion-flask-corked-blue.webp","system":{"description":{"value":"Wondrous item\nThis stoppered flask sloshes when shaken, as if it contains water. The decanter weighs 2 pounds.\nYou can use an action to remove the stopper and speak one of three command words, whereupon an amount of fresh water or salt water (your choice) pours out of the flask. The water stops pouring out at the start of your next turn. Choose from the following options:\n• \"Stream\" produces 1 gallon of water.\n• \"Fountain\" produces 5 gallons of water.\n• \"Geyser\" produces 30 gallons of water that gushes forth in a geyser 30 feet long and 1 foot wide. As a Bonus Action while holding the decanter, you can aim the geyser at a creature you can see within 30 feet of you. The target must succeed on a DC 13 Strength saving throw or take 1d4 bludgeoning damage and fall prone. Instead of a creature, you can target an object that isn't being worn or carried and that weighs no more than 200 pounds. The object is either knocked over or pushed up to 15 feet away from you.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":135000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233884,"modifiedTime":1671220964509,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qaSro7kFhxD6INbZ","name":"Hand Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"A lightweight crossbow designed to be held in one hand or strapped to one's wrist to fire light bolts.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":75,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"handcrossbow","properties":{"amm":true,"lgt":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233885,"modifiedTime":1671220964514,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qcEiSj67zfbLvYdJ","name":"Pike +2","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-stone-worn.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":18,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"pike","properties":{"hvy":true,"rch":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233885,"modifiedTime":1671220964519,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qhdGVfT5j6u46mtk","name":"Greataxe +1","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greataxe","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233886,"modifiedTime":1671220964523,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qmuOeNsOKwkn6K8W","name":"Vicious Flail","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"A set of chain-linked spiked balls lashed to a stout wooden shaft. The flail deals devastating damage when whirled in a deadly arc.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d8+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"flail","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233886,"modifiedTime":1671220964545,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qw05Om9XWqTMoio2","name":"Ring of the Ram","type":"equipment","img":"icons/equipment/finger/ring-band-engraved-scrolls-silver.webp","system":{"description":{"value":"(Requires attunement)This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 to 3 of its charges to attack one creature you can see within 60 feet of you. The ring produces a spectral ram's head and makes its attack roll with a +7 bonus. On a hit, for each charge you spend, the target takes 2d10 force damage and is pushed 5 feet away from you.Alternatively, you can expend 1 to 3 of the ring's charges as an action to try to break an object you can see within 60 feet of you that isn't being worn or carried. The ring makes a Strength check with a +5 bonus for each charge you spend.Foundry NoteThe Other Formula is set to calculate 1d20 + 5 for one charge expended to make the Strength check. Please +5 per any extra charge as required.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"7","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10","force"]],"versatile":""},"formula":"1d20 +5","save":{"ability":"","dc":null,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233887,"modifiedTime":1671220964551,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"r8yK6SrWOz4hqF01","name":"Vicious Lance","type":"weapon","img":"icons/weapons/ammunition/arrow-head-war-flight.webp","system":{"description":{"value":"A shining steel tip to puncture the hardiest of foe's defences, driven in by the force of a galloping steed. Although best suited for mounted combat, the lance can be brought to lethal effect on foot in the right hands.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.\nSpecial. You have disadvantage when you use a lance to attack a target within 5 feet of you. Also, a lance requires two hands to wield when you aren't mounted.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d12 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"lance","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":true,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233887,"modifiedTime":1671220964562,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"r97KnMO7Zxgfdh3P","name":"Lance +3","type":"weapon","img":"icons/weapons/ammunition/arrow-head-war-flight.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.\nSpecial. You have disadvantage when you use a lance to attack a target within 5 feet of you. Also, a lance requires two hands to wield when you aren't mounted.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"lance","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":true,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233888,"modifiedTime":1671220964568,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rJKXDPikXSYXYgb5","name":"Net +1","type":"weapon","img":"icons/tools/fishing/net-gold.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack rolls made with this magic weapon.\nSpecial. A Large or smaller creature hit by a net is restrained until it is freed. A net has no effect on creatures that are formless, or creatures that are Huge or larger. A creature can use its action to make a DC 10 Strength check, freeing itself or another creature within its reach on a success. Dealing 5 slashing damage to the net (AC 10) also frees the creature without harming it, ending the effect and destroying the net. When you use an action, bonus action, or reaction to attack with a net, you can make only one attack regardless of the number of attacks you can normally make.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":15,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":10,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"net","properties":{"spc":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233888,"modifiedTime":1671220964579,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rLMflzmxpe8JGTOA","name":"Chain Mail","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"Made of interlocking metal rings, chain mail includes a layer of quilted fabric worn underneath the mail to prevent chafing and to cushion the impact of blows. The suit includes gauntlets.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":55,"price":{"value":75,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainmail","speed":{"value":null,"conditions":""},"strength":13,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233889,"modifiedTime":1671220964584,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rOG1OM2ihgPjOvFW","name":"Glaive","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"A crescent blade is mounted on the end of a tall metal shaft. This polearm provies the ability to attack with deadly efficiency from greater range than typical melee weapons.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"glaive","properties":{"hvy":true,"two":true,"rch":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233889,"modifiedTime":1671220964587,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rQ6sO7HDWzqMhSI3","name":"Spell Scroll Cantrip","type":"consumable","img":"icons/sundries/scrolls/scroll-bound-orange-tan.webp","system":{"description":{"value":"A spell scroll bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can read the scroll and cast its spell without providing any material components. Otherwise, the scroll is unintelligible. Casting the spell by reading the scroll requires the spell's normal casting time. Once the spell is cast, the words on the scroll fade, and it crumbles to dust. If the casting is interrupted, the scroll is not lost.\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 10 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity.\nSave DC: 13Attack Bonus: +5.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"common","identified":true,"activation":{"type":"action","cost":1,"condition":"Spell must be on the caster's spell list."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"5","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":13,"scaling":"flat"},"consumableType":"scroll"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233890,"modifiedTime":1671220964591,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rRMaaGZ7qbzqMvoI","name":"Bowl of Commanding Water Elementals","type":"consumable","img":"icons/magic/water/pseudopod-swirl-blue.webp","system":{"description":{"value":"Wondrous item\nWhile this bowl is filled with water, you can use an action to speak the bowl's command word and summon a @Compendium[dnd5e.monsters.namJz755U1EhvEJa]{Water Elemental}, as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell. The bowl can't be used this way again until the next dawn.\nThe bowl is about 1 foot in diameter and half as deep. It weighs 3 pounds and holds about 3 gallons.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":8000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233890,"modifiedTime":1671220964601,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rTbVrNcwApnuTz5E","name":"Glassblower's Tools","type":"tool","img":"icons/commodities/tech/metal-insert.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in glassblowing.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":30,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"glassblower","ability":"int","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233891,"modifiedTime":1671220964607,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rTn4p9nJr4Aq2GPB","name":"Potion of Invisibility","type":"consumable","img":"icons/consumables/potions/bottle-bulb-empty-glass.webp","system":{"description":{"value":"This potion's container looks empty but feels as though it holds liquid. \nWhen you drink it, you become invisible for 1 hour. Anything you wear or carry is invisible with you. The effect ends early if you attack or cast a spell.\n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":180,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233892,"modifiedTime":1671220964611,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rY9sRFQp5CFSfsat","name":"Helm of Comprehending Languages","type":"equipment","img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","system":{"description":{"value":"Wondrous item\nWhile wearing this helm, you can use an action to cast the @Compendium[dnd5e.spells.4dSvfvTy2ZIJ3K4k]{Comprehend Languages} spell from it at will.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233892,"modifiedTime":1671220964615,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rc9nkN6YOD7ogtEi","name":"Glaive +3","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +3","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"glaive","properties":{"hvy":true,"two":true,"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233893,"modifiedTime":1671220964618,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rhGulc3gEJhnuP31","name":"Helm of Brilliance","type":"equipment","img":"icons/magic/lightning/bolt-strike-smoke-yellow.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThis dazzling helm is set with 1d10 diamonds, 2d10 rubies, 3d10 fire opals, and 4d10 opals. Any gem pried from the helm crumbles to dust. When all the gems are removed or destroyed, the helm loses its magic.\nYou gain the following benefits while wearing it:\n\nYou can use an action to cast one of the following spells (save DC 18), using one of the helm's gems of the specified type as a component: @Compendium[dnd5e.spells.BP3GCwa66IAw1yTG]{Daylight} (opal), @Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball} (fire opal), @Compendium[dnd5e.spells.eGMhwmuleAM46C6L]{Prismatic Spray} (diamond), or @Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire} (ruby). The gem is destroyed when the spell is cast and disappears from the helm.\nAs long as it has at least one diamond, the helm emits dim light in a 30-foot radius when at least one undead is within that area. Any undead that starts its turn in that area takes 1d6 radiant damage.\nAs long as the helm has at least one ruby, you have resistance to fire damage.\nAs long as the helm has at least one fire opal, you can use an action and speak a command word to cause one weapon you are holding to burst into flames. The flames emit bright light in a 10-foot radius and dim light for an additional 10 feet. The flames are harmless to you and the weapon. When you hit with an attack using the blazing weapon, the target takes an extra 1d6 fire damage. The flames last until you use a bonus action to speak the command word again or until you drop or stow the weapon.\n\nRoll a d20 if you are wearing the helm and take fire damage as a result of failing a saving throw against a spell. On a roll of 1, the helm emits beams of light from its remaining gems. Each creature within 60 feet of the helm other than you must succeed on a DC 17 Dexterity saving throw or be struck by a beam, taking radiant damage equal to the number of gems in the helm. The helm and its gems are then destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233893,"modifiedTime":1671220964623,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rvxGvcUzoQXVNbAu","name":"Portable Hole","type":"consumable","img":"icons/magic/unholy/barrier-shield-glowing-pink.webp","system":{"description":{"value":"Wondrous item\nThis 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.\nYou 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 can't be used to create open passages. Any creature inside an open Portable Hole can exit the hole by climbing out of it.\nYou 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 what's in it, the hole weighs next to nothing.\nIf the hole is folded up, a creature within the hole's 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.\nPlacing 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 can't be reopened.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":8000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":3,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":10,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233894,"modifiedTime":1671220964648,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"s2kQs21J3cFg7ZSs","name":"Figurine of Wondrous Power (Ebony Fly)","type":"consumable","img":"icons/commodities/biological/legs-insect-brown.webp","system":{"description":{"value":"Wondrous item\nA figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\nEbony Fly. This ebony statuette is carved in the likeness of a horsefly. It can become a @Compendium[dnd5e.monsters.rLl22hYeAH3ljhdI]{Giant Fly} for up to 12 hours and can be ridden as a mount. Once it has been used, it can't be used again until 2 days have passed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":6000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"12","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233894,"modifiedTime":1671220964655,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"s4fR8bxQGSt4wbH7","name":"Cube of Force","type":"consumable","img":"icons/sundries/gaming/dice-runed-brown.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThis cube is about an inch across. Each face has a distinct marking on it that can be pressed. The cube starts with 36 charges, and it regains 1d20 expended charges daily at dawn.\nYou can use an action to press one of the cube's faces, expending a number of charges based on the chosen face, as shown in the Cube of Force Faces table. Each face has a different effect. If the cube has insufficient charges remaining, nothing happens. Otherwise, a barrier of invisible force springs into existence, forming a cube 15 feet on a side. The barrier is centered on you, moves with you, and lasts for 1 minute, until you use an action to press the cube's sixth face, or the cube runs out of charges. You can change the barrier's effect by pressing a different face of the cube and expending the requisite number of charges, resetting the duration.\nIf your movement causes the barrier to come into contact with a solid object that can't pass through the cube, you can't move any closer to that object as long as the barrier remains.\n\n\n\nFace\nCharges\nEffect\n\n\n1\n1\nGases, wind, and fog can't pass through the barrier.\n\n\n2\n2\nNonliving matter can't pass through the barrier. Walls, floors, and ceilings can pass through at your discretion.\n\n\n3\n3\nLiving matter can't pass through the barrier.\n\n\n4\n4\nSpell effects can't pass through the barrier.\n\n\n5\n5\nNothing can pass through the barrier. Walls, floors, and ceilings can pass through at your discretion.\n\n\n6\n0\nThe barrier deactivates.\n\n\n\nThe cube loses charges when the barrier is targeted by certain spells or comes into contact with certain spell or magic item effects, as shown in the table below.\n\n\n\nSpell or Item\nCharges Lost\n\n\n@Compendium[dnd5e.spells.HBHbOGKNVVprSlwn]{Disintegrate}\n1d12\n\n\n@Compendium[dnd5e.items.t7GfyRp3dB3lqS9i]{Horn of Blasting}\n1d10\n\n\n@Compendium[dnd5e.spells.d9MwcXi7Il3HROXd]{Passwall}\n1d6\n\n\n@Compendium[dnd5e.spells.eGMhwmuleAM46C6L]{Prismatic Spray}\n1d20\n\n\n@Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire}\n1d4\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":16000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Must have enough charges for the face pressed otherwise the Action is lost."},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cube"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":36,"max":"36","per":"charges","recovery":"1d20","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233895,"modifiedTime":1671220964662,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"sIiUbRJItYAs5gtA","name":"Dancing Longsword","type":"weapon","img":"icons/skills/melee/maneuver-greatsword-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":4,"max":"4","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":true,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233895,"modifiedTime":1671220964674,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"sP8CV5VNEcY1Yh1Q","name":"Adamantine Plate Armor","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel.webp","system":{"description":{"value":"This armor is reinforced with adamantine, one of the hardest substances in existence.\nWhile you're wearing it, any critical hit against you becomes a normal hit.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":65,"price":{"value":2000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233896,"modifiedTime":1690539416931,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"sSs3hSzkKBMNBgTs","name":"Shield","type":"equipment","img":"icons/equipment/shield/round-wooden-boss-steel-brown.webp","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233897,"modifiedTime":1690539664692,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"sXEkkTDXWQDUMzsC","name":"Censer of Controlling Air Elementals","type":"consumable","img":"icons/commodities/treasure/goblet-worn-gold.webp","system":{"description":{"value":"Wondrous item\nWhile incense is burning in this censer, you can use an action to speak the censer's command word and summon an @Compendium[dnd5e.monsters.banHjKDMCegbUwYE]{Air Elemental}, as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell. The censer can't be used this way again until the next dawn.\nThis 6-inch-wide, 1-foot-high vessel resembles a chalice with a decorated lid. It weighs 1 pound.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":8000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233897,"modifiedTime":1671220964695,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"sdHSbitJxgTX6aDG","name":"Greatsword of Life Stealing","type":"weapon","img":"icons/creatures/claws/claw-curved-poison-purple.webp","system":{"description":{"value":"(Requires attunement)\nWhen you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":1000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Must roll a 20 and the target cannot be undead."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 +@mod","slashing"]],"versatile":""},"formula":"3d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233898,"modifiedTime":1671220964699,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"setcTdSZ09rmsqMn","name":"Warhammer +3","type":"weapon","img":"icons/weapons/hammers/hammer-drilling-spiked.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","bludgeoning"]],"versatile":"1d10 + @mod +3"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"warhammer","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233899,"modifiedTime":1671220964706,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"sfegfmo59MHJg2YC","name":"Scimitar of Life Stealing","type":"weapon","img":"icons/creatures/claws/claw-curved-poison-purple.webp","system":{"description":{"value":"(Requires attunement)\nWhen you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":1000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Must roll a 20 and the target cannot be undead."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 +@mod","slashing"]],"versatile":""},"formula":"3d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233899,"modifiedTime":1671220964715,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"skUih6tBvcBbORzA","name":"Mason's Tools","type":"tool","img":"icons/tools/hand/hammer-and-nail.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in masonry.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":8,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"mason","ability":"wis","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233900,"modifiedTime":1671220964771,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"skoUe223EvRYGPL6","name":"Medallion of Thoughts","type":"equipment","img":"icons/equipment/neck/pendant-bronze-gem-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThe medallion has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the @Compendium[dnd5e.spells.ppWAAEul0QHtm4er]{Detect Thoughts} spell (save DC 13) from it. The medallion regains 1d3 expended charges daily at dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.01,"price":{"value":3000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233901,"modifiedTime":1671220964778,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"sl6yiYSlqkHiVVSN","name":"Shortsword +1","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233901,"modifiedTime":1671220964782,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"sqcerAMszpe3hwyI","name":"Bronze Horn of Valhalla","type":"consumable","img":"icons/tools/instruments/flute-simple-wood.webp","system":{"description":{"value":"Wondrous item\nYou can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a @Compendium[dnd5e.monsters.kz1t6xeXVwODpYb2]{Berserker}. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\nFour types of Horn of Valhalla are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly from the @Compendium[dnd5e.tables.RwerG95cIk2uRpsQ]{Horn of Valhalla} table.\nBronze Horn of Valhalla.This bronze horn summons [[/r 4d4 + 4]] berserkers when blown and requires proficiency with all medium armor to be used.\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":11200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d4 +4",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233902,"modifiedTime":1671220964786,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"srTRzwTfWKO5opOo","name":"Portable Ram","type":"consumable","img":"icons/commodities/wood/bamboo-brown.webp","system":{"description":{"value":"You can use a portable ram to break down doors. When doing so, you gain a +4 bonus on the Strength check. One other character can help you use the ram, giving you advantage on this check.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":35,"price":{"value":4,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["d20 + @abilities.str.mod +4",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233902,"modifiedTime":1671220964798,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"stlFCpqW3ZuAftTi","name":"Dancing Shortsword","type":"weapon","img":"icons/skills/melee/maneuver-greatsword-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":4,"max":"4","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":true,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233903,"modifiedTime":1671220964802,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"szNhDWpks5BhEXhT","name":"Ioun Stone of Regeneration","type":"equipment","img":"icons/commodities/stone/rock-chunk-pumice-white.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Regeneration. You regain 15 hit points at the end of each hour this pearly white spindle orbits your head, provided that you have at least 1 hit point.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":4000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233903,"modifiedTime":1671220964815,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"t5yP0d7YaKwuKKiH","name":"Yew Wand","type":"weapon","img":"icons/weapons/staves/staff-simple-brown.webp","system":{"description":{"value":"This wand or scepter has been carved from yew or another special wood and inscribed with powerful runes to invoke the power of nature by those who heed its call.\nSpellcasting Focus. A druidic focus is a special item designed to channel the power of spells from the druid's spell list. A druid can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"foc":true,"amm":false,"hvy":false,"fin":false,"fir":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233904,"modifiedTime":1671220964819,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"t7GfyRp3dB3lqS9i","name":"Horn of Blasting","type":"consumable","img":"icons/tools/instruments/flute-simple-wood.webp","system":{"description":{"value":"Wondrous item\nYou can use an action to speak the horn's command word and then blow the horn, which emits a thunderous blast in a 30-foot cone that is audible 600 feet away. Each creature in the cone must make a DC 15 Constitution saving throw. On a failed save, a creature takes 5d6 thunder damage and is deafened for 1 minute. On a successful save, a creature takes half as much damage and isn't deafened. Creatures and objects made of glass or crystal have disadvantage on the saving throw and take 10d6 thunder damage instead of 5d6.\nEach use of the horn's magic has a 20 percent chance of causing the horn to explode. The explosion deals 10d6 fire damage to the blower and destroys the horn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":450,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word and blow the horn."},"duration":{"value":"","units":""},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d6","thunder"]],"versatile":""},"formula":"10d6","save":{"ability":"con","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233904,"modifiedTime":1671220964823,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"t8L7B0JWamsvxhui","name":"Quarterstaff +1","type":"weapon","img":"icons/weapons/staves/staff-simple-gold.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","bludgeoning"]],"versatile":"1d8 + @mod +1"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"quarterstaff","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233905,"modifiedTime":1671220964837,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"tC0kcqZT9HHAO0PD","name":"Pike","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-stone-worn.webp","system":{"description":{"value":"A sturdy blade mounted upon the end of a long metal haft. Designed as a defensive weapon with considerable reach to both fend off and menace foes.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":18,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"pike","properties":{"hvy":true,"rch":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233905,"modifiedTime":1671220964854,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"tEWhsb2lYF4uvF0z","name":"Arrow +1","type":"consumable","img":"icons/weapons/ammunition/arrow-head-war.webp","system":{"description":{"value":"Ammunition used for bows of all varieties. It has been imbued with magic.\nYou have a bonus to attack and damage rolls made with this piece of magic ammunition. Once it hits a target, the ammunition is no longer magical.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.05,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233906,"modifiedTime":1671220964860,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"tFLmAPUDLxBY8jFO","name":"Nine Lives Stealer Greatsword","type":"weapon","img":"icons/weapons/swords/sword-broad-crystal-paired.webp","system":{"description":{"value":"(Requires attunement)You gain a +2 bonus to attack and damage rolls made with this magic weapon.The sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.Foundry NoteThe 9 charges reflect a fully charged blade. Please adjust accordingly as required.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Critical hit on a creature of 100 hit points or less. Undead and constructs are immune."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":9,"max":"9","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 +@mod +2","slashing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233908,"modifiedTime":1671220964867,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"tH5Rn0JVRG1zdmPa","name":"Orb","type":"weapon","img":"icons/commodities/gems/pearl-natural.webp","system":{"description":{"value":"This spherical talisman serves as a spellcasting focus, helping the practitioner to channel arcane, primal, or divine energies.\nSpellcasting Focus. An arcane focus is a special item designed to channel the power of arcane spells. A sorcerer, warlock, or wizard can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"foc":true,"amm":false,"hvy":false,"fin":false,"fir":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233909,"modifiedTime":1671220964871,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"tI3rWx4bxefNCexS","name":"Spell Scroll 6th Level","type":"consumable","img":"icons/sundries/scrolls/scroll-bound-sealed-red-green.webp","system":{"description":{"value":"A spell scroll bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can read the scroll and cast its spell without providing any material components. Otherwise, the scroll is unintelligible. Casting the spell by reading the scroll requires the spell's normal casting time. Once the spell is cast, the words on the scroll fade, and it crumbles to dust. If the casting is interrupted, the scroll is not lost.\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 16 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity.\nSave DC: 17Attack Bonus: +9.\nA wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 16 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":1280,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Spell must be on the caster's spell list."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"9","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":17,"scaling":"flat"},"consumableType":"scroll"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233909,"modifiedTime":1671220964876,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"tIwoSAGJlcuyiwaQ","name":"Dragon Scale Mail","type":"equipment","img":"icons/equipment/chest/breastplate-banded-steel.webp","system":{"description":{"value":"(Requires attunement)\nDragon Scale Mail is made of the scales of one kind of dragon. Sometimes dragons collect their cast-off scales and gift them to humanoids. Other times, hunters carefully skin and preserve the hide of a dead dragon. In either case, dragon scale mail is highly valued.\nWhile wearing this armor, you gain a +1 bonus to AC, you have advantage on saving throws against the Frightful Presence and Breath Weapons of dragons, and you have resistance to one damage type that is determined by the kind of dragon that provided the scales (see the table).\nAdditionally, you can focus your senses as an action to magically discern the distance and direction to the closest dragon within 30 miles of you that is of the same type as the armor. This special action can't be used again until the next dawn.\n\n\n\nDragon\nResistance\n\n\nBlack\nAcid\n\n\nBlue\nLightning\n\n\nBrass\nFire\n\n\nBronze\nLightning\n\n\nCopper\nAcid\n\n\nGold\nFire\n\n\nGreen\nPoison\n\n\nRed\nFire\n\n\nSilver\nCold\n\n\nWhite\nCold\n\n\n","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":45,"price":{"value":4000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"mi"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"scalemail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233910,"modifiedTime":1690538818576,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"tJQXAJx92wL6GM1v","name":"Mithral Ring Mail","type":"equipment","img":"icons/equipment/chest/breastplate-banded-simple-leather-brown.webp","system":{"description":{"value":"Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":40,"price":{"value":830,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"ringmail","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233911,"modifiedTime":1690539366249,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"tTqixDDmzAfs995G","name":"Giant Slayer Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-red.webp","system":{"description":{"value":"You gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":7000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","piercing"]],"versatile":""},"formula":"2d6","save":{"ability":"str","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233912,"modifiedTime":1671220964898,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"tWJLHIL6ZIZUez9k","name":"Manacles","type":"consumable","img":"icons/sundries/survival/cuffs-shackles-steel.webp","system":{"description":{"value":"These metal restraints can bind a Small or Medium creature. Escaping the manacles requires a successful DC 20 Dexterity check. Breaking them requires a successful DC 20 Strength check. Each set of manacles comes with one key. Without the key, a creature proficient with thieves' tools can pick the manacles' lock with a successful DC 15 Dexterity check. Manacles have 15 hit points.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":"Creature must be Small or Medium."},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":20,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233912,"modifiedTime":1671220964902,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"tfDxZIKDpOkz6pbx","name":"Grappling Hook","type":"loot","img":"icons/tools/fishing/hook-multi-steel-brown.webp","system":{"description":{"value":"A device with iron claws, can be used with rope for dragging or grasping.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233913,"modifiedTime":1671220964907,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"thkvJ5QBRORIwkkV","name":"Gem of Brightness","type":"consumable","img":"icons/commodities/gems/gem-faceted-octagon-yellow.webp","system":{"description":{"value":"Wondrous item\nThis prism has 50 charges. While you are holding it, you can use an action to speak one of three command words to cause one of the following effects:\n\nThe first command word causes the gem to shed bright light in a 30-foot radius and dim light for an additional 30 feet. This effect doesn't expend a charge. It lasts until you use a bonus action to repeat the command word or until you use another function of the gem.\nThe second command word expends 1 charge and causes the gem to fire a brilliant beam of light at one creature you can see within 60 feet of you. The creature must succeed on a DC 15 Constitution saving throw or become blinded for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\nThe third command word expends 5 charges and causes the gem to flare with blinding light in a 30- foot cone originating from it. Each creature in the cone must make a saving throw as if struck by the beam created with the second command word.\n\nWhen all of the gem's charges are expended, the gem becomes a nonmagical jewel worth 50 gp.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":5000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":30,"long":60,"units":"ft"},"uses":{"value":50,"max":"50","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233913,"modifiedTime":1671220964911,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"trmWAdUoR6Y2B7rA","name":"Hooded Lantern","type":"consumable","img":"icons/sundries/lights/lantern-iron-yellow.webp","system":{"description":{"value":"A hooded lantern casts bright light in a 30-foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil. As an action, you can lower the hood, reducing the light to dim light in a 5-foot radius.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"6","units":"hour"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233914,"modifiedTime":1671220964918,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"tt4WokZBZMGqgYm5","name":"Shortbow +2","type":"weapon","img":"icons/weapons/bows/shortbow-recurve.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"shortbow","properties":{"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233914,"modifiedTime":1671220964923,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"tut1jbW3UCsrUjCG","name":"Pole","type":"loot","img":"icons/commodities/wood/wood-pole.webp","system":{"description":{"value":"A ten-foot long pole of sturdy wood.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233915,"modifiedTime":1671220964937,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"twRJhPtDQe1HceFt","name":"Padded Armor +1","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":8,"price":{"value":1505,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"padded","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233915,"modifiedTime":1671220964947,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"u4ewpAFZjLrWrmQv","name":"Folding Boat","type":"consumable","img":"icons/environment/traps/cage-simple-wood.webp","system":{"description":{"value":"Wondrous item\nThis object appears as a wooden box that measures 12 inches long, 6 inches wide, and 6 inches deep. It weighs 4 pounds and floats. It can be opened to store items inside. This item also has three command words, each requiring you to use an action to speak it.\nOne command word causes the box to unfold into a boat 10 feet long, 4 feet wide, and 2 feet deep. The boat has one pair of oars, an anchor, a mast, and a lateen sail. The boat can hold up to four Medium creatures comfortably.\nThe second command word causes the box to unfold into a ship 24 feet long, 8 feet wide, and 6 feet deep. The ship has a deck, rowing seats, five sets of oars, a steering oar, an anchor, a deck cabin, and a mast with a square sail. The ship can hold fifteen Medium creatures comfortably.\nWhen the box becomes a vessel, its weight becomes that of a normal vessel its size, and anything that was stored in the box remains in the boat.\nThe third command word causes the folding boat to fold back into a box, provided that no creatures are aboard. Any objects in the vessel that can't fit inside the box remain outside the box as it folds. Any objects in the vessel that can fit inside the box do so.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":10000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233916,"modifiedTime":1671220964951,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"uHL99JKLUpTKAbz8","name":"Staff of Withering","type":"weapon","img":"icons/weapons/staves/staff-skull-brown.webp","system":{"description":{"value":"(Requires attunement)This staff has 3 charges and regains 1d3 expended charges daily at dawn.The staff can be wielded as a magic quarterstaff. On a hit, it deals damage as a normal quarterstaff, and you can expend 1 charge to deal an extra 2d10 necrotic damage to the target. In addition, the target must succeed on a DC 15 Constitution saving throw or have disadvantage for 1 hour on any ability check or saving throw that uses Strength or Constitution.Foundry NoteThe Other Formula button has been configured to roll the staff's necrotic damage if required.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":3000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":"1d8 + @mod"},"formula":"2d10","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true,"ada":false,"sil":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233917,"modifiedTime":1671220964956,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"uIHXYhnOwETlA5lT","name":"Shortsword +3","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233917,"modifiedTime":1671220964961,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"uLY74ppOrTaWKwer","name":"Rapier +2","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"fin":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233918,"modifiedTime":1671220964965,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"uRoHwk1c8e5xJjkV","name":"Sickle +2","type":"weapon","img":"icons/weapons/sickles/sickle-curved.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +2","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"sickle","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233919,"modifiedTime":1671220964969,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"uVm7MiB71QblfnoY","name":"Ink Pen","type":"loot","img":"icons/tools/scribal/pen-steel-grey-brown.webp","system":{"description":{"value":"A deviced used in combination with ink to write or draw on a sheet of paper.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233919,"modifiedTime":1671220964973,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"uWUD93jwuO2Jxkti","name":"Arrow-Catching Shield","type":"equipment","img":"icons/equipment/shield/wardoor-wooden-boss-brown.webp","system":{"description":{"value":"You gain a +2 bonus to AC against ranged attacks while you wield this shield. This bonus is in addition to the shield's normal bonus to AC. In addition, whenever an attacker makes a ranged attack against a target within 5 feet of you, you can use your reaction to become the target of the attack instead.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":6000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"reaction","cost":1,"condition":"A ranged attack within 5 ft."},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"shield","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233920,"modifiedTime":1690539658859,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"uXOT4fYbgPY8DGdd","name":"Crystal","type":"weapon","img":"icons/commodities/gems/gem-rough-navette-yellow-green.webp","system":{"description":{"value":"This crystaline talisman serves as a spellcasting focus, helping the practitioner to channel arcane, primal, or divine energies.\nSpellcasting Focus. An arcane focus is a special item designed to channel the power of arcane spells. A sorcerer, warlock, or wizard can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"foc":true,"amm":false,"hvy":false,"fin":false,"fir":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233920,"modifiedTime":1671220964981,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ugzwHl8vYaPu2GNd","name":"Climber's Kit","type":"consumable","img":"icons/weapons/sickles/sickle-hooked-wood.webp","system":{"description":{"value":"A climber's kit includes special pitons, boot tips, gloves, and a harness. You can use the climber's kit as an action to anchor yourself; when you do, you can't fall more than 25 feet from the point where you anchored yourself, and you can't climb more than 25 feet away from that point without undoing the anchor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":12,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233921,"modifiedTime":1671220964984,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ukcKemEoTTRB9yLC","name":"Defender Longsword","type":"weapon","img":"icons/weapons/polearms/spear-flared-silver-pink.webp","system":{"description":{"value":"(Requires attunement)You gain a +3 bonus to attack and damage rolls made with this magic weapon.The first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.Foundry NoteThe sword's bonus to attack and damage rolls have been included; please remember to manually subtract should the user transfer any of the bonus to their AC.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":24000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","slashing"]],"versatile":"1d10 + @mod +3"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true,"ada":false,"sil":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233921,"modifiedTime":1671220965471,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"uuh4UH3Jx5CsFjdA","name":"Perfume","type":"loot","img":"icons/consumables/potions/bottle-bulb-corked-purple.webp","system":{"description":{"value":"A vial of aromatic perfume.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233922,"modifiedTime":1671220965496,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"uw6fINSmZ2j2o57A","name":"Tankard","type":"backpack","img":"icons/containers/kitchenware/mug-steel-wood-brown.webp","system":{"description":{"value":"It is a form of drinkware consisting of a large, roughly cynlindrical, drinking cup with a single handle.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":1,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233922,"modifiedTime":1671220965504,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"v4uNbmiz4ECTI89n","name":"Ioun Stone of Protection","type":"equipment","img":"icons/commodities/gems/gem-rough-ball-purple.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Protection. You gain a +1 bonus to AC while this dusty rose prism orbits your head.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":1200,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[{"label":"Ioun Stone of Protection","icon":"icons/commodities/gems/gem-rough-ball-purple.webp","origin":"Compendium.dnd5e.items.v4uNbmiz4ECTI89n","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"GWrRc9Yfqt7N24I6","changes":[{"key":"system.attributes.ac.bonus","mode":2,"value":"+1"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233950,"modifiedTime":1690481078298,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"vJvb6fx3JVPmhG8x","name":"Merchant's Scale","type":"loot","img":"icons/commodities/currency/coins-assorted-mix-silver.webp","system":{"description":{"value":"A scale includes a small balance, pans, and a suitable assortment of weights up to 2 pounds. With it, you can measure the exact weight of small objects, such as raw precious metals or trade goods, to help determine their worth.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233951,"modifiedTime":1671220965515,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"vZdLYfHlLcZqQ8zc","name":"Chime of Opening","type":"consumable","img":"icons/weapons/guns/gun-worn-steel.webp","system":{"description":{"value":"Wondrous item\nThis hollow metal tube measures about 1 foot long and weighs 1 pound. You can strike it as an action, pointing it at an object within 120 feet of you that can be opened, such as a door, lid, or lock. The chime issues a clear tone, and one lock or latch on the object opens unless the sound can't reach the object. If no locks or latches remain, the object itself opens.\nThe chime can be used ten times. After the tenth time, it cracks and becomes useless.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"The sound must reach the target."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":10,"max":"10","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233951,"modifiedTime":1671220965535,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"vmbB2SK6pQU2Vkzb","name":"Rod of Rulership","type":"consumable","img":"icons/skills/melee/hand-grip-staff-blue.webp","system":{"description":{"value":"(Requires attunement)\nYou can use an action to present the rod and command obedience from each creature of your choice that you can see within 120 feet of you. Each target must succeed on a DC 15 Wisdom saving throw or be charmed by you for 8 hours. While charmed in this way, the creature regards you as its trusted leader. If harmed by you or your companions, or commanded to do something contrary to its nature, a target ceases to be charmed in this way. The rod can't be used again until the next dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":16000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":15,"scaling":"flat"},"consumableType":"rod"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233953,"modifiedTime":1671220965543,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"vpenjFjUyEBLLlUc","name":"Trinket","type":"loot","img":"icons/commodities/materials/hair-tuft-white.webp","system":{"description":{"value":"A placeholder for the non-SRD items introduced on pg. 159, with the d100 table on 160-161.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233953,"modifiedTime":1671220965547,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"vsgmACFYINloIdPm","name":"Half Plate Armor","type":"equipment","img":"icons/equipment/chest/breastplate-cuirass-steel-grey.webp","system":{"description":{"value":"Half plate consists of shaped metal plates that cover most of the wearer's body. It does not include leg protection beyond simple greaves that are attached with leather straps.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":40,"price":{"value":750,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"halfplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233954,"modifiedTime":1690539014883,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"vuThcmO7MYlw5b9f","name":"Trident +1","type":"weapon","img":"icons/skills/melee/spear-tips-triple-orange.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","piercing"]],"versatile":"1d8 + @mod +1"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"trident","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233954,"modifiedTime":1671220965556,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"w56FIjFafs2rN6iK","name":"Mace of Smiting","type":"weapon","img":"icons/weapons/maces/mace-spiked-wood-grey.webp","system":{"description":{"value":"You gain a +1 bonus to attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use the mace to attack a construct.When you roll a 20 on an attack roll made with this weapon, the target takes an extra 2d6 bludgeoning damage, or 4d6 bludgeoning damage if it's a construct. If a construct has 25 hit points or fewer after taking this damage, it is destroyed.Foundry NoteThe bonus to attack and damage rolls has been set at the +1. In the instances of hitting a construct, please remember to +2 to both of these results. Additionally, on a hit of 20 against a construct, please use the Other Formula one more time.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":7000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","bludgeoning"]],"versatile":""},"formula":"2d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"mace","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233955,"modifiedTime":1671220965564,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"wBYmPQG3nZfD88aP","name":"Belt of Storm Giant Strength","type":"equipment","img":"icons/equipment/waist/sash-cloth-gold-purple.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this belt, your Strength score changes to 29. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":24000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[{"label":"Belt of Storm Giant Strength","icon":"icons/equipment/waist/sash-cloth-gold-purple.webp","origin":"Compendium.dnd5e.items.wBYmPQG3nZfD88aP","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"GjOniAcdINQsZbnX","changes":[{"key":"system.abilities.str.value","mode":4,"value":"29"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233955,"modifiedTime":1690480557337,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"wGDDt17DpBcXPuUD","name":"Hammer of Thunderbolts","type":"weapon","img":"icons/skills/melee/strike-hammer-destructive-blue.webp","system":{"description":{"value":"You gain a +1 bonus to attack and damage rolls made with this magic weapon (maul).\nGiant's Bane (requires attunement)\nYou must be wearing a Belt of Giant Strength (any variety) and Gauntlets of Ogre Power to attune to this weapon. The attunement ends if you take off either of those items. While you are attuned to this weapon and holding it, your Strength score increases by 4 and can exceed 20, but not 30.\nWhen you roll a 20 on an attack roll made with this weapon against a giant, the giant must succeed on a DC 17 Constitution saving throw or die.\nThe hammer also has 5 charges. While attuned to it, you can expend 1 charge and make a ranged weapon attack with the hammer, hurling it as if it had the thrown property with a normal range of 20 feet and a long range of 60 feet. If the attack hits, the hammer unleashes a thunderclap audible out to 300 feet. The target and every creature within 30 feet of it must succeed on a DC 17 Constitution saving throw or be stunned until the end of your next turn. The hammer regains 1d4 + 1 expended charges daily at dawn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":16000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":5,"max":"5","per":"charges","recovery":"1d4 + 1"},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 +@mod +1","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"con","dc":17,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"maul","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233956,"modifiedTime":1671220965574,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"wGKykLRS8UqChNXI","name":"Dimensional Shackles","type":"consumable","img":"icons/magic/unholy/orb-swirling-teal.webp","system":{"description":{"value":"Wondrous item\nYou can use an action to place these shackles on an incapacitated creature. The shackles adjust to fit a creature of Small to Large size. In addition to serving as mundane manacles, the shackles prevent a creature bound by them from using any method of extradimensional movement, including teleportation or travel to a different plane of existence. They don't prevent the creature from passing through an interdimensional portal.\nYou and any creature you designate when you use the shackles can use an action to remove them. Once every 30 days, the bound creature can make a DC 30 Strength (Athletics) check. On a success, the creature breaks free and destroys the shackles.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":3000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Creature of Small to Large and must be incapacitated."},"duration":{"value":"30","units":"day"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":30,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233957,"modifiedTime":1671220965579,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"wNKYbKYwOHbA7SH8","name":"Potion of Heroism","type":"consumable","img":"icons/consumables/potions/potion-bottle-corked-fancy-orange.webp","system":{"description":{"value":"This blue potion bubbles and steams as if boiling.For 1 hour after drinking it, you gain 10 temporary hit points that last for 1 hour. For the same duration, you are under the effect of the @Compendium[dnd5e.spells.8dzaICjGy6mTUaUr]{Bless} spell (no concentration required)Foundry NoteThe Other Formula button can be used to roll the bonus 1d4 received from Bless.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":180,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10","temphp"]],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233957,"modifiedTime":1671220965584,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"wNWK6yJMHG9ANqQV","name":"Blowgun","type":"weapon","img":"icons/weapons/staves/staff-simple-brown.webp","system":{"description":{"value":"A primitive, but deadly, weapon favored by tribes and guerrila fighters. The darts fired from this gun can puncture and deliver lethal doses of venom.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":25,"long":100,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"blowgun","properties":{"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233958,"modifiedTime":1671220965589,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"wa1VF8TXHmkrrR35","name":"Spell Scroll 5th Level","type":"consumable","img":"icons/sundries/scrolls/scroll-plain-red.webp","system":{"description":{"value":"A spell scroll bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can read the scroll and cast its spell without providing any material components. Otherwise, the scroll is unintelligible. Casting the spell by reading the scroll requires the spell's normal casting time. Once the spell is cast, the words on the scroll fade, and it crumbles to dust. If the casting is interrupted, the scroll is not lost.\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 15 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity.\nSave DC: 17Attack Bonus: +9.\nA wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 15 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":640,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Spell must be on the caster's spell list."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"9","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":17,"scaling":"flat"},"consumableType":"scroll"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233958,"modifiedTime":1671220965594,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"wgBKZNeRN1XsE9I7","name":"Flail +3","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod +3","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"flail","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233959,"modifiedTime":1671220965599,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"woWZ1sO5IUVGzo58","name":"Thieves' Tools","type":"tool","img":"icons/tools/hand/lockpicks-steel-grey.webp","system":{"description":{"value":"This set of tools includes a small file, a set of lock picks, a small mirror mounted on a metal handle, a set of narrow-bladed scissors, and a pair of pliers. Proficiency with these tools lets you add your proficiency bonus to any ability checks you make to disarm traps or open locks.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"thief","ability":"dex","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233959,"modifiedTime":1671220965608,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"wqVSRfkcTjuhvDyx","name":"Necklace of Prayer Beads","type":"equipment","img":"icons/equipment/neck/necklace-runed-white-red.webp","system":{"description":{"value":"Wondrous item, (requires attunement by a cleric, druid, or paladin)This necklace has 1d4 + 2 magic beads made from aquamarine, black pearl, or topaz. It also has many nonmagical beads made from stones such as amber, bloodstone, citrine, coral, jade, pearl, or quartz. If a magic bead is removed from the necklace, that bead loses its magic.Six types of magic beads exist. The GM decides the type of each bead on the necklace or determines it randomly. A necklace can have more than one bead of the same type. To use one, you must be wearing the necklace. Each bead contains a spell that you can cast from it as a bonus action (using your spell save DC if a save is necessary). Once a magic bead's spell is cast, that bead can't be used again until the next dawn.Use the @Compendium[dnd5e.tables.XHTUTUXdyzcPbodw]{Necklace of Prayer Beads} table and refer to the table below for detailed descriptions on each beadd20Bead of…SpellGuide Price per Bead (gp)1-6Blessing@Compendium[dnd5e.spells.8dzaICjGy6mTUaUr]{Bless}2,0007-12Curing@Compendium[dnd5e.spells.uUWb1wZgtMou0TVP]{Cure Wounds} (2nd level) or @Compendium[dnd5e.spells.F0GsG0SJzsIOacwV]{Lesser Restoration}4,00013-16Favor@Compendium[dnd5e.spells.WzvJ7G3cqvIubsLk]{Greater Restoration}32,00017-18Smiting@Compendium[dnd5e.spells.7UwUjJ6owIQkEPrs]{Branding Smite}1,50019Summons@Compendium[dnd5e.spells.fkREcytuZ8sngWtC]{Planar Ally}128,00020Wind Walking@Compendium[dnd5e.spells.8PJAsHmbu6UgDHC0]{Wind Walk}96,000Foundry NoteThe 6 charges reflect the maximum number of beads able to be found; please adjust as required.Additionally, the guide price is a guide only and should be adjusted accordingly to reflect the Dungeon Master's world.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.01,"price":{"value":0,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"bonus","cost":1,"condition":"The necklace must be currently worn."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":6,"max":"6","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233960,"modifiedTime":1671220965621,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"wtctR6tCcYbQPiS0","name":"Longsword of Life Stealing","type":"weapon","img":"icons/creatures/claws/claw-curved-poison-purple.webp","system":{"description":{"value":"(Requires attunement)\nWhen you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":1000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Must roll a 20 and the target cannot be undead."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"3d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"ada":false,"mgc":true,"sil":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233960,"modifiedTime":1671220965637,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"wwNpAz2KMukovewN","name":"Necklace of Adaptation","type":"equipment","img":"icons/equipment/neck/pendant-faceted-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this necklace, you can breathe normally in any environment, and you have advantage on saving throws made against harmful gases and vapors (such as @Compendium[dnd5e.spells.LkvI11Uue774QBKZ]{Cloudkill} and @Compendium[dnd5e.spells.TwlD4PLcltv7Xh7j]{Stinking Cloud} effects, inhaled poisons, and the breath weapons of some dragons).","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.01,"price":{"value":1500,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233961,"modifiedTime":1671220965645,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"x12sDhylcf8843fT","name":"Light Crossbow +2","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"lightcrossbow","properties":{"lgt":false,"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233961,"modifiedTime":1671220965650,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"x1GUgZYjMubaFavx","name":"Crossbow Bolt +2","type":"consumable","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"This ammunition is used for all varieties of crossbow and is typically a short metal shaft with a narrow piercing tip. It has been imbued with magic.\nYou have a bonus to attack and damage rolls made with this piece of magic ammunition. Once it hits a target, the ammunition is no longer magical.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.075,"price":{"value":100,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233962,"modifiedTime":1671220965654,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"x7LfMrLafLKfemGH","name":"Ring of Jumping","type":"equipment","img":"icons/equipment/finger/ring-band-engraved-scrolls-silver.webp","system":{"description":{"value":"(Requires attunement)\nWhile wearing this ring, you can cast the @Compendium[dnd5e.spells.ZrTc23tToJ0JpH2h]{Jump} spell from it as a bonus action at will, but can target only yourself when you do so.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":2500,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233962,"modifiedTime":1671220965659,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"x9I9vdo4kafHDjcO","name":"Sling Bullet +3","type":"consumable","img":"icons/skills/ranged/bullets-triple-ball-yellow.webp","system":{"description":{"value":"A hardened pebble of stone, bone, or metal which can be flung at high velocity using a sling. It has been imbued with magic.\nYou have a bonus to attack and damage rolls made with this piece of magic ammunition. Once it hits a target, the ammunition is no longer magical.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.075,"price":{"value":400,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233963,"modifiedTime":1671220965670,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xDK9GQd2iqOGH8Sd","name":"Sprig of Mistletoe","type":"weapon","img":"icons/consumables/plants/fern-lady-green.webp","system":{"description":{"value":"A hardy sprig of mistletoe, holly, or some other sacred leaf, picked from a tree whose roots are sunken deep into a ley line. Those who heed nature's call are able to harness this connection to call forth the incredible power of nature.\nSpellcasting Focus. A druidic focus is a special item designed to channel the power of spells from the druid's spell list. A druid can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":true,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233963,"modifiedTime":1671220965676,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xEtBeZjJnkDXojQM","name":"Staff of Frost","type":"weapon","img":"icons/weapons/staves/staff-ornate-engraved-blue.webp","system":{"description":{"value":"(Requires attunement by a druid, sorcerer, warlock, or wizard)You have resistance to cold damage while you hold this staff.The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: @Compendium[dnd5e.spells.RpKjTlYASrfqUPVA]{Cone of Cold} (5 charges), @Compendium[dnd5e.spells.IBJmWjzbQGu7M4UX]{Fog Cloud} (1 charge), @Compendium[dnd5e.spells.WN2LWEljYU6QqnRH]{Ice Storm} (4 charges), or @Compendium[dnd5e.spells.fzZnVKLmBMo2f5up]{Wall of Ice} (4 charges).The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff turns to water and is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":26000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":10,"max":"10","per":"charges","recovery":"1d6 + 4"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233964,"modifiedTime":1671220965681,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xKErqkLo4ASYr5EP","name":"Woodcarver's Tools","type":"tool","img":"icons/tools/hand/chisel-steel-brown.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in woodcarving.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"woodcarver","ability":"dex","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233965,"modifiedTime":1671220965685,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xMkP8BmFzElcsMaR","name":"Greatsword","type":"weapon","img":"icons/weapons/swords/greatsword-guard-gem-blue.webp","system":{"description":{"value":"A mighty two-handed blade is over four feet long an almost five inches wide. This weapon requires extensive martial training but those proficient in its use are formidable warriors.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"hvy":true,"two":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233965,"modifiedTime":1671220965689,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xbVpKtrQ6tJsPhXX","name":"Half Plate Armor +3","type":"equipment","img":"icons/equipment/chest/breastplate-cuirass-steel-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":40,"price":{"value":24750,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"halfplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233966,"modifiedTime":1690539024399,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xjRSY2ECcc9viSz3","name":"Scarab of Protection","type":"consumable","img":"icons/environment/creatures/bug-larva-orange.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nIf you hold this beetle-shaped medallion in your hand for 1 round, an inscription appears on its surface revealing its magical nature. It provides two benefits while it is on your person:\n\nYou have advantage on saving throws against spells.\nThe scarab has 12 charges. If you fail a saving throw against a necromancy spell or a harmful effect originating from an undead creature, you can use your reaction to expend 1 charge and turn the failed save into a successful one. The scarab crumbles into powder and is destroyed when its last charge is expended.\n","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":36000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"reaction","cost":1,"condition":"Charges are consumed by necromancy spells or an undead caster."},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":12,"max":"12","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233967,"modifiedTime":1671220965704,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xjme5oSQZmdAy1fc","name":"Well of Many Worlds","type":"consumable","img":"icons/magic/water/bubbles-air-water-light.webp","system":{"description":{"value":"Wondrous item\nThis 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.\nYou can use an action to unfold and place the Well of Many Worlds on a solid surface, whereupon it creates a two-way portal to another world or plane of existence. Each time the item opens a portal, the GM decides where it leads. You can use an action to close an open portal by taking hold of the edges of the cloth and folding it up. Once a Well of Many Worlds has opened a portal, it can't do so again for 1d8 hours.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":250000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":3,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":"1d4 +1"},"formula":"1d8","save":{"ability":"","dc":null,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233967,"modifiedTime":1671220965711,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xw2kL7Puwg4wfjW3","name":"Giant Slayer Longsword","type":"weapon","img":"icons/weapons/swords/sword-guard-flanged-purple.webp","system":{"description":{"value":"You gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":7000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","slashing"]],"versatile":"1d10 +@mod +1"},"formula":"2d6","save":{"ability":"str","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233968,"modifiedTime":1671220965716,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xw99pcqPBVwtMOLw","name":"Potion of Necrotic Resistance","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-pink.webp","system":{"description":{"value":"The potion is a plain indescriminate color and smells slightly foul.\nWhen you drink this potion, you gain resistance to Necrotic type damage for 1 hour.\nFor other potions of resistance, roll on the @Compendium[dnd5e.tables.JzLOE4IxcmxjLLuz]{Potion of Resistance} table.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233969,"modifiedTime":1671220965745,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xwUWrV15s9jLnmfZ","name":"Lock","type":"consumable","img":"icons/sundries/misc/lock-bronze-reinforced.webp","system":{"description":{"value":"A key is provided with the lock. Without the key, a creature proficient with thieves' tools can pick this lock with a successful DC 15 Dexterity check. Your DM may decide that better locks are available for higher prices.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"touch","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233969,"modifiedTime":1671220965753,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xzZQIIxXjNJwNqnp","name":"Shield +2","type":"equipment","img":"icons/equipment/shield/heater-steel-spiral.webp","system":{"description":{"value":"While holding this shield, you have a bonus to AC of +2. This bonus is in addition to the shield's normal bonus to AC.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":6000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":4,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233970,"modifiedTime":1690539683046,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"yiYCqmD5n08NftYk","name":"Sun Blade","type":"weapon","img":"icons/magic/light/beam-strike-orange-gold.webp","system":{"description":{"value":"(Requires attunement)\nThis item appears to be a longsword hilt. While grasping the hilt, you can use a bonus action to cause a blade of pure radiance to spring into existence, or make the blade disappear. While the blade exists, this magic longsword has the finesse property. If you are proficient with shortswords or longswords, you are proficient with the Sun Blade.\nYou gain a +2 bonus to attack and damage rolls made with this weapon, which deals radiant damage instead of slashing damage. When you hit an undead with it, that target takes an extra 1d8 radiant damage.\nThe sword's luminous blade emits bright light in a 15-foot radius and dim light for an additional 15 feet. The light is sunlight. While the blade persists, you can use an action to expand or reduce its radius of bright and dim light by 5 feet each, to a maximum of 30 feet each or a minimum of 10 feet each.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":12000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +2","radiant"]],"versatile":"1d10 + @mod +2"},"formula":"1d8","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"ver":true,"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233970,"modifiedTime":1671220965763,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ykB6UKv5BuQnSRSL","name":"Frost Brand Greatsword","type":"weapon","img":"icons/skills/melee/strike-weapon-polearm-ice-blue.webp","system":{"description":{"value":"(Requires attunement)\nWhen you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":2200,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"],["1d6","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233971,"modifiedTime":1671220965768,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ykefWXBjq3y6y9Se","name":"Manual of Gainful Exercise","type":"consumable","img":"icons/sundries/books/book-embossed-jewel-gold-purple.webp","system":{"description":{"value":"Wondrous item\nThis book describes fitness exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Strength score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":100000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"hour","cost":48,"condition":"The book must be completed in 6 days or less."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233971,"modifiedTime":1671220965773,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"yoFff2zdTloKx1if","name":"Pike +1","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-stone-worn.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":18,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"pike","properties":{"hvy":true,"rch":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233972,"modifiedTime":1671220965778,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ytlsBjYsZ7OBSEBs","name":"Potion of Healing","type":"consumable","img":"icons/consumables/potions/potion-tube-corked-red.webp","system":{"description":{"value":"The potion's red liquid glimmers when agitated.\nYou regain 2d4+2 hit points when you drink this potion.\n \n ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"common","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + 2","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233972,"modifiedTime":1671220965786,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"yxHi57T5mmVt0oDr","name":"Bagpipes","type":"tool","img":"icons/sundries/survival/waterskin-leather-brown.webp","system":{"description":{"value":"A set of bagpipes to evoke awe, wonder, or fear in your audience.\nIf you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":30,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"music","baseItem":"bagpipes","ability":"cha","chatFlavor":"","proficient":0,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233973,"modifiedTime":1671220965794,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"z0lIRURcyDYt1kLK","name":"Flail +2","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod +2","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"flail","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233973,"modifiedTime":1671220965799,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"z67d1DZzqDPmgEwP","name":"Signal Whistle","type":"loot","img":"icons/tools/instruments/pipe-flute-brown.webp","system":{"description":{"value":"A whistle can produce specific noise. It can be heard half a mile away.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233974,"modifiedTime":1671220965807,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"z9SbsMIBZzuhZOqT","name":"Sling Bullet","type":"consumable","img":"icons/skills/ranged/bullets-triple-ball-yellow.webp","system":{"description":{"value":"A hardened pebble of stone, bone, or metal which can be flung at high velocity using a sling.Foundry NoteIt will usually be impossible to buy one sling bullet because they are worth less than a copper piece (5 bullets = 1 cp).","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.075,"price":{"value":0.2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233974,"modifiedTime":1671220965813,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"z9fFB1uaGJvcXTf7","name":"Trident +3","type":"weapon","img":"icons/skills/melee/spear-tips-triple-orange.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","piercing"]],"versatile":"1d8 + @mod +3"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"trident","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":true,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233975,"modifiedTime":1671220965817,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zBX8LLC2CjC89Dzl","name":"Potion of Thunder Resistance","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-yellow.webp","system":{"description":{"value":"The potion is a plain indescriminate color and smells slightly foul.\nWhen you drink this potion, you gain resistance to Thunder type damage for 1 hour.\nFor other potions of resistance, roll on the @Compendium[dnd5e.tables.JzLOE4IxcmxjLLuz]{Potion of Resistance} table.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233976,"modifiedTime":1671220965835,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zDJ4oEt5HArN1xmP","name":"Elemental Gem of Air","type":"consumable","img":"icons/commodities/gems/gem-rough-rose-teal.webp","system":{"description":{"value":"Wondrous item\nThis blue sapphire contains a mote of elemental energy. When you use an action to break the gem, an @Compendium[dnd5e.monsters.banHjKDMCegbUwYE]{Air Elemental}is summoned as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell, and the gem's magic is lost.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":960,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233976,"modifiedTime":1671220965840,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zIpNJyuOxp2raizE","name":"Splint Armor +2","type":"equipment","img":"icons/equipment/chest/breastplate-layered-steel.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":60,"price":{"value":6200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":19,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"splint","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233977,"modifiedTime":1671220965845,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zJ5LhDvTxYKzPIx4","name":"Sovereign Glue","type":"consumable","img":"icons/consumables/drinks/tea-jug-gourd-brown.webp","system":{"description":{"value":"Wondrous itemThis viscous, milky-white substance can form a permanent adhesive bond between any two objects. It must be stored in a jar or flask that has been coated inside with oil of slipperiness. When found, a container contains 1d6 + 1 ounces.One ounce of the glue can cover a 1-foot square surface. The glue takes 1 minute to set. Once it has done so, the bond it creates can be broken only by the application of universal solvent or oil of etherealness, or with a @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell.Foundry NoteThe 7 charges reflect the maximum amount a character can find. Please adjust as required.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.25,"price":{"value":400,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":"Takes 1 minute to set."},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"ft","type":"square"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":7,"max":"7","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233977,"modifiedTime":1671220965850,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zSKorO6lwT7vs2uk","name":"Berserker Greataxe","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-engraved-steel.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon. In addition, while you are attuned to this weapon, your hit point maximum increases by 1 for each level you have attained.\nCurse. This axe is cursed, and becoming attuned to it extends the curse to you. As long as you remain cursed, you are unwilling to part with the axe, keeping it within reach at all times. You also have disadvantage on attack rolls with weapons other than this one, unless no foe is within 60 feet of you that you can see or hear.\nWhenever a hostile creature damages you while the axe is in your possession, you must succeed on a DC 15 Wisdom saving throw or go berserk. While berserk, you must use your action each round to attack the creature nearest to you with the axe. If you can make extra attacks as part of the Attack action, you use those extra attacks, moving to attack the next nearest creature after you fell your current target.\nIf you have multiple possible targets, you attack one at random. You are berserk until you start your turn with no creatures within 60 feet of you that you can see or hear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greataxe","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233978,"modifiedTime":1671220965854,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zWSB0NCllWaSVoNT","name":"Dancing Greatsword","type":"weapon","img":"icons/skills/melee/maneuver-greatsword-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":4,"max":"4","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":true,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233978,"modifiedTime":1671220965866,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zgZkJAyFAfYmyn11","name":"Potion of Acid Resistance","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-green.webp","system":{"description":{"value":"The potion is a plain indescriminate color and smells slightly foul.\nWhen you drink this potion, you gain resistance to Acidic type damage for 1 hour.\nFor other potions of resistance, roll on the @Compendium[dnd5e.tables.JzLOE4IxcmxjLLuz]{Potion of Resistance} table.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233979,"modifiedTime":1671220965874,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zibIgdxPz8QHSCg6","name":"Vicious Pike","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-stone-worn.webp","system":{"description":{"value":"A sturdy blade mounted upon the end of a long metal haft. Designed as a defensive weapon with considerable reach to both fend off and menace foes.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":18,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"pike","properties":{"hvy":true,"rch":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":false},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233979,"modifiedTime":1671220965886,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"00BggOkChWztQx6R","name":"Studded Leather Armor +3","type":"equipment","img":"icons/equipment/chest/breastplate-rivited-red.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":13,"price":{"value":24045,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"studded","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233431,"modifiedTime":1671220956958,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"07R6JFioylOCpVoL","name":"Frost Brand Scimitar","type":"weapon","img":"icons/skills/melee/strike-weapon-polearm-ice-blue.webp","system":{"description":{"value":"(Requires attunement)\nWhen you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":2200,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"],["1d6","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233432,"modifiedTime":1671220956973,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"09i8r1UmzDSKiZ9g","name":"Glaive +1","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"glaive","properties":{"hvy":true,"two":true,"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233432,"modifiedTime":1671220956979,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"0E565kQUBmndJ1a2","name":"Dagger","type":"weapon","img":"icons/weapons/daggers/dagger-jeweled-purple.webp","system":{"description":{"value":"A short metal blade mounted to a small hilt and crossguard. The dagger makes an effective side armament for hardened warriors or a hidden blade for assassins and thieves.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"dagger","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233433,"modifiedTime":1671220956984,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"0G5LSgbb5NTV4XC7","name":"Ioun Stone of Strength","type":"equipment","img":"icons/commodities/gems/gem-rough-cushion-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Strength. Your Strength score increases by 2, to a maximum of 20, while this pale blue rhomboid orbits your head.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":3000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[{"label":"Ioun Stone of Strength","icon":"icons/commodities/gems/gem-rough-cushion-blue.webp","origin":"Compendium.dnd5e.items.0G5LSgbb5NTV4XC7","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"plffDmuTOIrXAJDb","changes":[{"key":"system.abilities.str.value","mode":2,"value":"+2"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233434,"modifiedTime":1690481115410,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"0LVFLPmsu1b2vf8E","name":"Flail +1","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod +1","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"flail","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233434,"modifiedTime":1671220956993,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"0NoBBP3MMkvJlwZY","name":"Candle","type":"consumable","img":"icons/sundries/lights/candle-unlit-tan.webp","system":{"description":{"value":"For 1 hour, a candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233435,"modifiedTime":1671220956998,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"0ZBWwjFz3nIAXMLW","name":"Jug","type":"backpack","img":"icons/containers/kitchenware/jug-terracotta-orange.webp","system":{"description":{"value":"A pitcher holds 1 gallon of liquid.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":8.4,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233435,"modifiedTime":1671220957002,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"0d08g1i5WXnNrCNA","name":"Tinker's Tools","type":"tool","img":"icons/commodities/cloth/thread-spindle-white-needle.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in tinkering.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"tinker","ability":"int","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233436,"modifiedTime":1671220957005,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"10ZP2Bu3vnCuYMIB","name":"Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"A lengthy stright blade designed for slashing foes, the longsword is a highly versatile weapon that may also be wielded with two hands for more punishing strikes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"ver":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233436,"modifiedTime":1671220957009,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"14pNRT4sZy9rgvhb","name":"Hammer","type":"loot","img":"icons/tools/hand/hammer-cobbler-steel.webp","system":{"description":{"value":"A tool with a heavy metal head mounted at the end of its handle, used for jobs such as breaking things and driving in nails. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233437,"modifiedTime":1671220957013,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"159agyOuBHCl2WKd","name":"Adamantine Half Plate Armor","type":"equipment","img":"icons/equipment/chest/breastplate-cuirass-steel-grey.webp","system":{"description":{"value":"This armor is reinforced with adamantine, one of the hardest substances in existence.\nWhile you're wearing it, any critical hit against you becomes a normal hit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":40,"price":{"value":1250,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"halfplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233438,"modifiedTime":1690539010993,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"18fbyArtidKzON01","name":"Wand of Magic Detection","type":"consumable","img":"icons/weapons/staves/staff-simple-green.webp","system":{"description":{"value":"This wand has 3 charges. While holding it, you can expend 1 charge as an action to cast the @Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic} spell from it. The wand regains 1d3 expended charges daily at dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d3","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233438,"modifiedTime":1671220957022,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"1J0dsxyKRhVXYQf5","name":"Ring of Invisibility","type":"equipment","img":"icons/equipment/finger/ring-faceted-silver-orange.webp","system":{"description":{"value":"(Requires attunement)\nWhile wearing this ring, you can turn invisible as an action. Anything you are wearing or carrying is invisible with you. You remain invisible until the ring is removed, until you attack or cast a spell, or until you use a bonus action to become visible again.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":10000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233439,"modifiedTime":1671220957027,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"1KMSpOSU0EliUBm2","name":"Potion of Storm Giant Strength","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-labeled-blue.webp","system":{"description":{"value":"This potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type.\nWhen you drink this potion, your Strength score changes to 29 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":2000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233439,"modifiedTime":1671220957040,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"1Lxk6kmoRhG8qQ0u","name":"Greataxe","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"This enormous axe features two twin crescent blades mounted on either side of a tall spiked shaft. Designed to be wielded with two hands and cleave foes in twain.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":30,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greataxe","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233440,"modifiedTime":1671220957049,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"1PMaZR6CX8fUnOZd","name":"Vicious Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"A medium sized blade with a firm crossguard and a leather-wrapped handle. A versatile weapon which makes up in versatility what it lacks in reach.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233441,"modifiedTime":1671220957054,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"1RwJWOAeyoideLKe","name":"Orb of Dragonkind","type":"equipment","img":"icons/commodities/gems/pearl-storm.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAges past, elves and humans waged a terrible war against evil dragons. When the world seemed doomed, powerful wizards came together and worked their greatest magic, forging five Orbs of Dragonkind (or Dragon Orbs) to help them defeat the dragons. One orb was taken to each of the five wizard towers, and there they were used to speed the war toward a victorious end. The wizards used the orbs to lure dragons to them, then destroyed the dragons with powerful magic.\nAs the wizard towers fell in later ages, the orbs were destroyed or faded into legend, and only three are thought to survive. Their magic has been warped and twisted over the centuries, so although their primary purpose of calling dragons still functions, they also allow some measure of control over dragons.\nEach orb contains the essence of an evil dragon, a presence that resents any attempt to coax magic from it. Those lacking in force of personality might find themselves enslaved to an orb.\nAn orb is an etched crystal globe about 10 inches in diameter. When used, it grows to about 20 inches in diameter, and mist swirls inside it.\nWhile attuned to an orb, you can use an action to peer into the orb's depths and speak its command word. You must then make a DC 15 Charisma check. On a successful check, you control the orb for as long as you remain attuned to it. On a failed check, you become charmed by the orb for as long as you remain attuned to it.\nWhile you are charmed by the orb, you can't voluntarily end your attunement to it, and the orb casts @Compendium[dnd5e.spells.zMAWdyc8UVb37BK4]{Suggestion} on you at will (save DC 18), urging you to work toward the evil ends it desires. The dragon essence within the orb might want many things: the annihilation of a particular people, freedom from the orb, to spread suffering in the world, to advance the worship of Tiamat, or something else the GM decides.\nRandom Properties. An Orb of Dragonkind has the following random properties (see DMG pg. 219-21): \n\n2 minor beneficial properties \n1 minor detrimental property\n1 major detrimental property\n\nSpells. The orb has 7 charges and regains 1d4 + 3 expended charges daily at dawn. If you control the orb, you can use an action and expend 1 or more charges to cast one of the following spells (save DC 18) from it: \n\n@Compendium[dnd5e.spells.uUWb1wZgtMou0TVP]{Cure Wounds} (5th-level version, 3 charges)\n@Compendium[dnd5e.spells.BP3GCwa66IAw1yTG]{Daylight} (1 charge)\n@Compendium[dnd5e.spells.VtCXMdyM6mAdIJZb]{Death Ward} (2 charges)\n@Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying} (3 charges).\nYou can also use an action to cast the @Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic} spell from the orb without using any charges.\n\nCall Dragons. While you control the orb, you can use an action to cause the artifact to issue a telepathic call that extends in all directions for 40 miles. Evil dragons in range feel compelled to come to the orb as soon as possible by the most direct route. Dragon deities such as Tiamat are unaffected by this call. Dragons drawn to the orb might be hostile toward you for compelling them against their will. Once you have used this property, it can't be used again for 1 hour.\nDestroying an Orb. An Orb of Dragonkind appears fragile but is impervious to most damage, including the attacks and breath weapons of dragons. A @Compendium[dnd5e.spells.HBHbOGKNVVprSlwn]{Disintegrate} spell or one good hit from a +3 magic weapon is sufficient to destroy an orb, however.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":500000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"artifact","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":7,"max":"7","per":"day","recovery":"1d4 + 3"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233441,"modifiedTime":1671220957064,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"1kihEfn9QppB34ee","name":"Maul +2","type":"weapon","img":"icons/weapons/maces/mace-spiked-wood-grey.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod +2","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"maul","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233442,"modifiedTime":1671220957069,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"1taRIMF9w7jpnonN","name":"Wand of Magic Missiles","type":"consumable","img":"icons/weapons/staves/staff-ornate-engraved-blue.webp","system":{"description":{"value":"This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile} spell from it. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":8000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":7,"max":"7","per":"charges","recovery":"1d6 + 1","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d4","force"],["3","force"]],"versatile":"1d4 +1"},"formula":"1d6 +1","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233442,"modifiedTime":1671220957074,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"23y8FvWKf9YLcnBL","name":"Chess Set","type":"tool","img":"icons/sundries/gaming/chess-knight-white.webp","system":{"description":{"value":"This item is a complete set of chess pieces and board. The board can also be used for variations of draughts and checkers.\nIf you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.5,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"game","baseItem":"","ability":"dex","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233443,"modifiedTime":1671220957078,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"296Zgo9RhltWShE1","name":"Stone of Good Luck (Luckstone)","type":"equipment","img":"icons/commodities/gems/gem-faceted-octagon-yellow.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile this polished agate is on your person, you gain a +1 bonus to ability checks and saving throws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":4200,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"trinket","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[{"label":"Stone of Good Luck","icon":"icons/commodities/gems/gem-faceted-octagon-yellow.webp","origin":"Compendium.dnd5e.items.296Zgo9RhltWShE1","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"TghMVbmFnR0t0AoP","changes":[{"key":"system.bonuses.abilities.save","mode":2,"value":"+1"},{"key":"system.bonuses.abilities.check","mode":2,"value":"+1"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233443,"modifiedTime":1690481250206,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"29e6gHwWKNLaRUoz","name":"Rope of Climbing","type":"consumable","img":"icons/sundries/survival/rope-wrapped-brown.webp","system":{"description":{"value":"Wondrous item\nThis 60-foot length of silk rope weighs 3 pounds and can hold up to 3,000 pounds. If you hold one end of the rope and use an action to speak the command word, the rope animates. As a bonus action, you can command the other end to move toward a destination you choose. That end moves 10 feet on your turn when you first command it and 10 feet on each of your turns until reaching its destination, up to its maximum length away, or until you tell it to stop. You can also tell the rope to fasten itself securely to an object or to unfasten itself, to knot or unknot itself, or to coil itself for carrying.\nIf you tell the rope to knot, large knots appear at 1- foot intervals along the rope. While knotted, the rope shortens to a 50-foot length and grants advantage on checks made to climb it.\nThe rope has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the rope drops to 0 hit points, it is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":2000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word. A bonus action to move one end 10 ft."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":20,"max":"20","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233444,"modifiedTime":1671220957086,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"2BYm8to5KldN8eYu","name":"Tome of Clear Thought","type":"consumable","img":"icons/sundries/books/book-backed-blue-gold.webp","system":{"description":{"value":"Wondrous item\nThis book contains memory and logic exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Intelligence score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":100000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"hour","cost":48,"condition":"The book must be completed in 6 days or less."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233445,"modifiedTime":1671220957091,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"2CQnAvn06bncXPBt","name":"Mace +3","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"mace","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233445,"modifiedTime":1671220957096,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"2Lkub0qIwucWEfp3","name":"Nine Lives Stealer Shortsword","type":"weapon","img":"icons/weapons/swords/sword-broad-crystal-paired.webp","system":{"description":{"value":"(Requires attunement)You gain a +2 bonus to attack and damage rolls made with this magic weapon.The sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.Foundry NoteThe 9 charges reflect a fully charged blade. Please adjust accordingly as required.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Critical hit on a creature of 100 hit points or less. Undead and constructs are immune."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":9,"max":"9","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 +@mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233446,"modifiedTime":1671220957102,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"2YNqk5zm9jDTvd7q","name":"Sphere of Annihilation","type":"consumable","img":"icons/magic/unholy/barrier-shield-glowing-pink.webp","system":{"description":{"value":"Wondrous item\nThis 2-foot-diameter black sphere is a hole in the multiverse, hovering in space and stabilized by a magical field surrounding it.\nThe sphere obliterates all matter it passes through and all matter that passes through it. Artifacts are the exception. Unless an artifact is susceptible to damage from a Sphere of Annihilation, it passes through the sphere unscathed. Anything else that touches the sphere but isn't wholly engulfed and obliterated by it takes 4d10 force damage.\nThe sphere is stationary until someone controls it. If you are within 60 feet of an uncontrolled sphere, you can use an action to make a DC 25 Intelligence (Arcana) check. On a success, the sphere levitates in one direction of your choice, up to a number of feet equal to 5 × your Intelligence modifier (minimum 5 feet). On a failure, the sphere moves 10 feet toward you. A creature whose space the sphere enters must succeed on a DC 13 Dexterity saving throw or be touched by it, taking 4d10 force damage.\nIf you attempt to control a sphere that is under another creature's control, you make an Intelligence (Arcana) check contested by the other creature's Intelligence (Arcana) check. The winner of the contest gains control of the sphere and can levitate it as normal.\nIf the sphere comes into contact with a planar portal, such as that created by the @Compendium[dnd5e.spells.XbwGq5kDJNvAxNXV]{Gate} spell, or an extradimensional space, such as that within a portable hole, the GM determines randomly what happens, using the @Compendium[dnd5e.tables.hHR0Zw75o9PXYl4c]{Sphere of Annihilation} table.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":15000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":"An uncontrolled sphere requires a DC 25 Intelligence (Arcana) check."},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10","force"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233446,"modifiedTime":1671220957107,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"2YbuclKfhDL0bU4u","name":"Chest","type":"backpack","img":"icons/containers/chest/chest-elm-steel-brown.webp","system":{"description":{"value":"A chest holds 12 cubic feet or 300 pounds of gear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":25,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":300,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233447,"modifiedTime":1671220957111,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"2YdfjN1PIIrSHZii","name":"War Pick","type":"weapon","img":"icons/weapons/axes/pickaxe-double-brown.webp","system":{"description":{"value":"A brutal curved spike mounted on the back of a sturdy haft - designed for puncturing armor with deadly force.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"warpick","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233447,"modifiedTime":1671220957117,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"2ksm2KXCY3vBHTAx","name":"Robe of Useful Items","type":"equipment","img":"icons/equipment/back/mantle-collared-black.webp","system":{"description":{"value":"Wondrous itemThis robe has cloth patches of various shapes and colors covering it. While wearing the robe, you can use an action to detach one of the patches, causing it to become the object or creature it represents. Once the last patch is removed, the robe becomes an ordinary garment.The robe has the following patches:x2 Dagger patchesx2 Bullseye lantern (filled and lit) patchesx2 Steel mirror patchesx2 10-foot pole patchesx2 Hempen rope (50 feet, coiled) patchesx2 Sack patchesIn addition, the robe has [[/r 4d4]] other patches. The GM chooses the patches or determines them randomly from the @Compendium[dnd5e.tables.CTGxcd51szehUGBn]{Robe of Useful Items} table.Foundry NoteIt is recommended to delete items here as necessary to track patches left.The price guide has been calculated at 5 x item for the maximum number of items possible. Please adjust as necessary to reflect the number of patches and the DM's world economy.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":140,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"4d4","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233448,"modifiedTime":1671220957124,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"2mvXGvDmHHhzbT04","name":"Horseshoes of a Zephyr","type":"consumable","img":"icons/tools/smithing/horseshoe-steel-blue.webp","system":{"description":{"value":"Wondrous item\nThese iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they allow the creature to move normally while floating 4 inches above the ground. This effect means the creature can cross or stand above non-solid or unstable surfaces, such as water or lava. The creature leaves no tracks and ignores difficult terrain. In addition, the creature can move at normal speed for up to 12 hours a day without suffering exhaustion from a forced march.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":8,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233449,"modifiedTime":1671220957143,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"2veAOEyfbDJuxR8Y","name":"Ring of Warmth","type":"equipment","img":"icons/equipment/finger/ring-cabochon-gold-orange.webp","system":{"description":{"value":"(Requires attunement)\nWhile wearing this ring, you have resistance to cold damage. In addition, you and everything you wear and carry are unharmed by temperatures as low as −50 degrees Fahrenheit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":1000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233450,"modifiedTime":1671220957147,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"2wK9ImkAeG3Lzxa0","name":"Scimitar +3","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233450,"modifiedTime":1671220957151,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"2wxqnjpnPmkpPCC5","name":"Ring of Evasion","type":"equipment","img":"icons/equipment/finger/ring-eye-silver-green.webp","system":{"description":{"value":"(Requires attunement)\nThis ring has 3 charges, and it regains 1d3 expended charges daily at dawn. When you fail a Dexterity saving throw while wearing it, you can use your reaction to expend 1 of its charges to succeed on that saving throw instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233451,"modifiedTime":1671220957159,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"34YKlIJVVWLeBv7R","name":"Potion of Cold Resistance","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-labeled-blue.webp","system":{"description":{"value":"The potion is a plain indescriminate color and smells slightly foul.\nWhen you drink this potion, you gain resistance to Cold type damage for 1 hour.\nFor other potions of resistance, roll on the @Compendium[dnd5e.tables.JzLOE4IxcmxjLLuz]{Potion of Resistance} table.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233451,"modifiedTime":1671220957163,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3ALOhh6JNInIK4o7","name":"Necklace of Fireballs","type":"consumable","img":"icons/equipment/neck/pendant-faceted-red.webp","system":{"description":{"value":"Wondrous itemThis necklace has 1d6 + 3 beads hanging from it. You can use an action to detach a bead and throw it up to 60 feet away. When it reaches the end of its trajectory, the bead detonates as a 3rd-level @UUID[Compendium.dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball} spell (save DC 15).You can hurl multiple beads, or even the whole necklace, as one action. When you do so, increase the level of the fireball by 1 for each bead beyond the first.Foundry NoteThe 9 charges represent the maximum number of beads possible to find; please adjust as required. The Other Formula button can be used to roll the additional damage for extra beads thrown.Additionally, here is a price guide depending on the number of beads still remaining. These prices are a guide only and should be adjusted accordingly to reflect the Dungeon Master's world:Number of BeadsPrice (gp)830,720715,360676805384041600396024801300","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.01,"price":{"value":61440,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"radius"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":9,"max":"9","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d6","fire"]],"versatile":""},"formula":"1d6","save":{"ability":"dex","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233452,"modifiedTime":1671220957173,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3FNyS6DeCBZzFbqU","name":"Vorpal Greatsword","type":"weapon","img":"icons/skills/melee/strike-sword-steel-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":24000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod +3","slashing"]],"versatile":""},"formula":"6d8","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233452,"modifiedTime":1671220957186,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3OXueEpvDDCVfGFA","name":"Fine Clothes","type":"equipment","img":"icons/equipment/back/cloak-heavy-fur-blue.webp","system":{"description":{"value":"Set of clothes designed specifically to be expensive and show it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233453,"modifiedTime":1671220957197,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3Q6rw9kAMf6F1SW5","name":"Hand Crossbow +2","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"handcrossbow","properties":{"amm":true,"lgt":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233453,"modifiedTime":1671220957206,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Gauntlets of Ogre Power","type":"equipment","img":"icons/magic/unholy/strike-hand-glow-pink.webp","system":{"description":{"value":"Wondrous item\nYour Strength score is 19 while you wear these gauntlets. They have no effect on you if your Strength is already 19 or higher.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[{"label":"Gauntlets of Ogre Power","icon":"icons/magic/unholy/strike-hand-glow-pink.webp","origin":"Compendium.dnd5e.items.3TWT5bv3z5zGUZCe","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"m7FoXVGKT7C9X7aq","changes":[{"key":"system.abilities.str.value","mode":4,"value":"19","priority":null}],"tint":null,"transfer":true,"flags":{},"sort":0}],"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233454,"modifiedTime":1691500120771,"lastModifiedBy":"dnd5ebuilder0000"},"folder":null,"sort":0,"_id":"3TWT5bv3z5zGUZCe"} +{"_id":"3X7vdOjnCSpi40yn","name":"Ring of Fire Resistance","type":"equipment","img":"icons/equipment/finger/ring-cabochon-gold-orange.webp","system":{"description":{"value":"(Requires attunement)\nThis ring has been inlaid with a garnet stone that seems to glow when it catches the light.\nYou have resistance to fire damage while wearing this ring.\nFor other rings of resistance, roll on the @Compendium[dnd5e.tables.MdTxWyYVhTIgtNcG]{Ring of Resistance} table","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233454,"modifiedTime":1671220957219,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3YH1o1Wa4gcdN3fh","name":"Pike +3","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-stone-worn.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":18,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"pike","properties":{"hvy":true,"rch":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233455,"modifiedTime":1671220957224,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3YSUIp4eFo26YxJr","name":"Ball Bearings","type":"consumable","img":"icons/commodities/gems/pearl-rock.webp","system":{"description":{"value":"As an action, you can spill these 1,000 tiny metal balls from their pouch to cover a level area 10 feet square. A creature moving across the covered area must succeed on a DC 10 Dexterity saving throw or fall prone. A creature moving through the area at half speed doesn't need to make the saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1000,"weight":0.002,"price":{"value":0.1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":10,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233456,"modifiedTime":1671220957228,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3b0RvGi0TnTYpIxn","name":"Stick of Incense","type":"loot","img":"icons/commodities/wood/bamboo-brown.webp","system":{"description":{"value":"When blocks of incense cannot be used or a cheaper alternative is required, people often use these to perfume the air, whether for pleasurable or religious purposes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233456,"modifiedTime":1671220957232,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3c7JXOzsv55gqJS5","name":"Arrow","type":"consumable","img":"icons/weapons/ammunition/arrow-head-war.webp","system":{"description":{"value":"Standard ammunition used for bows of all varieties. These mundane arrows are made of smooth wooden shafts with goose feather fletching and hammer metal bodkins.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.05,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233457,"modifiedTime":1671220957246,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3cymOVja8jXbzrdT","name":"Longbow","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"A thick shaft of laminated wood is bowed by a taut string capable of launching deadly arrows at long distances.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"longbow","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233458,"modifiedTime":1671220957251,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3gynWO9sN4OLGMWD","name":"Sling","type":"weapon","img":"icons/weapons/slings/slingshot-wood.webp","system":{"description":{"value":"A flexible lash of leather affixed to a wooden handle which is capable of flinging rocks or metal bullets with deadly velocity.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"sling","properties":{"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233458,"modifiedTime":1671220957255,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3h3ZU6qmQs18FfkA","name":"Mithral Chain Shirt","type":"equipment","img":"icons/equipment/chest/breastplate-scale-grey.webp","system":{"description":{"value":"Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":20,"price":{"value":850,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainshirt","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233459,"modifiedTime":1690538796181,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3nVvaHVfHsgwGlkL","name":"Small Knife","type":"loot","img":"icons/weapons/daggers/knife-green.webp","system":{"description":{"value":"A blunt knife used by the scholarly to open letters and correspondence.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.5,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233459,"modifiedTime":1671220957266,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3rCO8MTIdPGSW6IJ","name":"Dart","type":"weapon","img":"icons/weapons/ammunition/arrows-war-red.webp","system":{"description":{"value":"A small thrown implement crafted with a short wooden shaft and crossed feathres with a sharp wooden or metal tip. Darts can be thrown with sufficient force to puncture the skin.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.25,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"dart","properties":{"fin":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233460,"modifiedTime":1671220957269,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3uEyuCfnAzGkwAn5","name":"Sealing Wax","type":"loot","img":"icons/sundries/lights/candle-unlit-red.webp","system":{"description":{"value":"A wax material of a seal which, after melting, hardens quickly forming a bond that is difficult to separate without noticeable tampering.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233460,"modifiedTime":1671220957282,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"419eNv7xp2p7Xlo5","name":"Blanket","type":"loot","img":"icons/sundries/survival/bedroll-pink.webp","system":{"description":{"value":"A blanket to keep you warm at night.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233461,"modifiedTime":1671220957286,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"41kYCmKq0PbGVKaM","name":"Figurine of Wondrous Power (Ivory Goat of Travail)","type":"consumable","img":"icons/commodities/bones/horn-worn-white.webp","system":{"description":{"value":"Wondrous item\nA figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\nIvory Goats. These ivory statuettes of goats are always created in sets of three. Each goat looks unique and functions differently from the others.\nThe Goat of Travail becomes a @Compendium[dnd5e.monsters.rjqk7ToMD8sGr3n4]{Giant Goat} for up to 3 hours. Once it has been used, it can't be used again until 30 days have passed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":400,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"3","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233461,"modifiedTime":1671220957294,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"44XNWmMGnwXn7bNW","name":"Pearl of Power","type":"consumable","img":"icons/commodities/gems/pearl-natural.webp","system":{"description":{"value":"Wondrous item, (requires attunement by a spellcaster)\nWhile this pearl is on your person, you can use an action to speak its command word and regain one expended spell slot. If the expended slot was of 4th level or higher, the new slot is 3rd level. Once you use the pearl, it can't be used again until the next dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233462,"modifiedTime":1671220957306,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"466j8hy4AiENMHVQ","name":"Plate Armor +3","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":65,"price":{"value":25500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":21,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233462,"modifiedTime":1690539445270,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"46ikeR4RrSim6DsN","name":"Talisman of the Sphere","type":"consumable","img":"icons/magic/unholy/orb-beam-pink.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhen you make an Intelligence (Arcana) check to control a Sphere of Annihilation while you are holding this talisman, you double your proficiency bonus on the check. In addition, when you start your turn with control over a Sphere of Annihilation, you can use an action to levitate it 10 feet plus a number of additional feet equal to 10 × your Intelligence modifier.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":20000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"int","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d20 + @mod + @attributes.prof + @attributes.prof",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233463,"modifiedTime":1671220957324,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Exotic Saddle","type":"equipment","img":"icons/equipment/shoulder/pauldron-segmented-red.webp","system":{"description":{"value":"A type of seat that is fastened to a mount's back, designed to support the rider and affix part of the mount's tack such as stirrups.An exotic saddle is required for riding any aquatic or flying mount.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":40,"price":{"value":60,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"4932CLHvjZYxOm4g","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233463,"modifiedTime":1671220957346,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"4MeSq8KcF7KK7emF","name":"Vicious Light Hammer","type":"weapon","img":"icons/weapons/hammers/hammer-war-spiked.webp","system":{"description":{"value":"This sturdy hammer is small enough to be nimbly wielded or used in combination with another weapon.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"lighthammer","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233464,"modifiedTime":1671220957351,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"4MtQKPn9qMWCFjDA","name":"Quiver","type":"backpack","img":"icons/containers/ammunition/arrows-quiver-black.webp","system":{"description":{"value":"A quiver can hold up to 20 arrows.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":1,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233465,"modifiedTime":1671220957354,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"4ZiJsDTRA1GgcWKP","name":"Potion of Stone Giant Strength","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-green.webp","system":{"description":{"value":"This potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type.\nWhen you drink this potion, your Strength score changes to 23 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":1200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233465,"modifiedTime":1671220957361,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"4sR5HOah6KwVPHOb","name":"Wand of Web","type":"consumable","img":"icons/weapons/staves/staff-simple-green.webp","system":{"description":{"value":"(Requires attunement by a spellcaster)\nThis wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the @Compendium[dnd5e.spells.UJJu9c2UvCzVljiP]{Web} spell (save DC 15) from it.\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":7,"max":"7","per":"charges","recovery":"1d6 + 1","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":"1d4 +1"},"formula":"1d6 +1","save":{"ability":"dex","dc":15,"scaling":"flat"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233466,"modifiedTime":1671220957367,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"50N8zf58FR4JWR05","name":"Amulet of Proof against Detection and Location","type":"equipment","img":"icons/equipment/neck/pendant-faceted-blue.webp","system":{"description":{"value":"\nWondrous Item (requires attunement)\n \nWhile wearing this amulet, you are hidden from divination magic. You can't be targeted by such magic or perceived through magical scrying sensors.\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":20000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233468,"modifiedTime":1671220957371,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"59pjg8FGM4GG4Fdd","name":"Dagger +1","type":"weapon","img":"icons/weapons/daggers/dagger-jeweled-purple.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"dagger","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233468,"modifiedTime":1671220957375,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5Jz5w7XJxgtlsx6K","name":"Vicious Dagger","type":"weapon","img":"icons/weapons/daggers/dagger-jeweled-purple.webp","system":{"description":{"value":"A short metal blade mounted to a small hilt and crossguard. The dagger makes an effective side armament for hardened warriors or a hidden blade for assassins and thieves.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"dagger","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233469,"modifiedTime":1671220957385,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5KiRtMMSTnJmMtBr","name":"Crystal Ball of Telepathy","type":"consumable","img":"icons/commodities/gems/pearl-swirl-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThe crystal ball is about 6 inches in diameter. While touching it, you can cast the @Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying} spell (save DC 17) with it.\nWhile Scrying with the Crystal Ball, you can communicate telepathically with creatures you can see within 30 feet of the spell's sensor. You can also use an action to cast the @Compendium[dnd5e.spells.zMAWdyc8UVb37BK4]{Suggestion} spell (save DC 17) through the sensor on one of those creatures. You don't need to concentrate on this Suggestion to maintain it during its duration, but it ends if Scrying ends.\nOnce used, the Suggestion power of the Crystal Ball can't be used again until the next dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":60000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233469,"modifiedTime":1671220957393,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5Rxo4K9cgpwgW9vZ","name":"Wand of Enemy Detection","type":"consumable","img":"icons/weapons/staves/staff-simple-green.webp","system":{"description":{"value":"(Requires attunement)\nThis wand has 7 charges. While holding it, you can use an action and expend 1 charge to speak its command word. For the next minute, you know the direction of the nearest creature hostile to you within 60 feet, but not its distance from you. The wand can sense the presence of hostile creatures that are ethereal, invisible, disguised, or hidden, as well as those in plain sight. The effect ends if you stop holding the wand.\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":4000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":7,"max":"7","per":"charges","recovery":"1d6 + 1","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d6 +1","save":{"ability":"wis","dc":null,"scaling":"flat"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233470,"modifiedTime":1671220957400,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5SorTMl8NKDO9Yge","name":"Ring of Poison Resistance","type":"equipment","img":"icons/equipment/finger/ring-faceted-gold-purple.webp","system":{"description":{"value":"(Requires attunement)\nThis ring has been inlaid with an amethyst stone that glitters when it catches the light.\nYou have resistance to poison damage while wearing this ring.\nFor other rings of resistance, roll on the @Compendium[dnd5e.tables.MdTxWyYVhTIgtNcG]{Ring of Resistance} table","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233470,"modifiedTime":1671220957412,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5fJn3LQ2eQG7luEO","name":"Chalk","type":"loot","img":"icons/commodities/bones/bone-fragments-grey.webp","system":{"description":{"value":"It is soft white porous sedimentary acarbonate rock, a form of limestone composed of the mineral calcite. Can be used to draw shapes. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233471,"modifiedTime":1671220957422,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5m9ErO9In8Uc5yyf","name":"Potion of Superior Healing","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-red.webp","system":{"description":{"value":"The potion's red liquid glimmers when agitated.\nYou regain 8d4+8 hit points when you drink this potion.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":450,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d4 + 8","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233471,"modifiedTime":1671220957428,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5mIeX824uMklU3xq","name":"Map or Scroll Case","type":"backpack","img":"icons/containers/bags/case-leather-tan.webp","system":{"description":{"value":"This cylindrical leather case can hold up to ten rolled-up sheets of paper or five rolled-up sheets of parchment.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"items","value":10,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233472,"modifiedTime":1671220957431,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"6067acDZGv7KNOkP","name":"Elven Chain","type":"equipment","img":"icons/equipment/back/mantle-collared-green.webp","system":{"description":{"value":"You gain a +1 bonus to AC while you wear this armor. You are considered proficient with this armor even if you lack proficiency with medium armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":20,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainshirt","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233472,"modifiedTime":1671220957447,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"62EaozKvcA0aSy2q","name":"Spear +3","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","piercing"]],"versatile":"1d8 + @mod +3"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"spear","properties":{"thr":true,"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233473,"modifiedTime":1671220957451,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"63nb14yQRJMc4bIn","name":"Philter of Love","type":"consumable","img":"icons/consumables/potions/potion-flask-corked-labeled-pink.webp","system":{"description":{"value":"This potion's rose-hued, effervescent liquid contains one easy-to-miss bubble shaped like a heart.\nThe next time you see a creature within 10 minutes after drinking this philter, you become charmed by that creature for 1 hour. If the creature is of a species and gender you are normally attracted to, you regard it as your true love while you are charmed.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":90,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233474,"modifiedTime":1671220957464,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"66UkbfH0PVwo4HgA","name":"Robe of Stars","type":"equipment","img":"icons/magic/water/orb-ice-web.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThis black or dark blue robe is embroidered with small white or silver stars. You gain a +1 bonus to saving throws while you wear it.\nSix stars, located on the robe's upper front portion, are particularly large. While wearing this robe, you can use an action to pull off one of the stars and use it to cast @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile} as a 5th-level spell.\nDaily at dusk, 1d6 removed stars reappear on the robe.\nWhile you wear the robe, you can use an action to enter the Astral Plane along with everything you are wearing and carrying. You remain there until you use an action to return to the plane you were on. You reappear in the last space you occupied, or if that space is occupied, the nearest unoccupied space.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":60000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":6,"max":"6","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["7d4","force"],["7","force"]],"versatile":""},"formula":"1d6","save":{"ability":"wis","dc":15,"scaling":"flat"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233474,"modifiedTime":1671220957469,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"698gLyJ4JKVVMF53","name":"Padded Armor of Resistance","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":8,"price":{"value":6005,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"padded","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233475,"modifiedTime":1671220957475,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"69Dpr25pf4BjkHKb","name":"Drum","type":"tool","img":"icons/tools/instruments/drum-brown-red.webp","system":{"description":{"value":"A drum, of any variety, to evoke awe, wonder, or fear in your audience.\nIf you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":6,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"music","baseItem":"drum","ability":"cha","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233476,"modifiedTime":1671220957479,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"6I5lt8KheTsAE4Zr","name":"Sling +1","type":"weapon","img":"icons/weapons/slings/slingshot-wood.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +1","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"sling","properties":{"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233476,"modifiedTime":1671220957483,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"6JbrdSg5YYbs9ANm","name":"Vicious Maul","type":"weapon","img":"icons/weapons/maces/mace-spiked-wood-grey.webp","system":{"description":{"value":"This heavy two-handed mace crushes metal and bone with thunderous force.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"maul","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233477,"modifiedTime":1671220957487,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"6MDTnMG4Hcw7qZsy","name":"Ioun Stone of Sustenance","type":"equipment","img":"icons/commodities/stone/geode-raw-brown.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Sustenance. You don't need to eat or drink while this clear spindle orbits your head.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":1000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233477,"modifiedTime":1671220957492,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"6OIw31CDF6mAwFnd","name":"Bolt of Slaying","type":"consumable","img":"icons/skills/ranged/arrow-flying-broadhead-metal.webp","system":{"description":{"value":"A Bolt of Slaying is a magic weapon meant to slay a particular kind of creature. Some are more focused than others; for example, there are both Bolts of Dragon Slaying and Bolts of Blue Dragon Slaying. If a creature belonging to the type, race, or group associated with a bolt of slaying takes damage from the bolt, the creature must make a DC 17 Constitution saving throw, taking an extra 6d10 piercing damage on a failed save, or half as much extra damage on a successful one.\nOnce a Bolt of Slaying deals its extra damage to a creature, it becomes a nonmagical bolt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.075,"price":{"value":600,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"6d10","save":{"ability":"con","dc":17,"scaling":"flat"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233478,"modifiedTime":1671220957496,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"6ai1pEde3iQX30Fr","name":"Cubic Gate","type":"consumable","img":"icons/commodities/treasure/token-engraved-blue.webp","system":{"description":{"value":"Wondrous item\nThis cube is 3 inches across and radiates palpable magical energy. The six sides of the cube are each keyed to a different plane of existence, one of which is the Material Plane. The other sides are linked to planes determined by the GM.\nYou can use an action to press one side of the cube to cast the @Compendium[dnd5e.spells.XbwGq5kDJNvAxNXV]{Gate} spell with it, opening a portal to the plane keyed to that side. Alternatively, if you use an action to press one side twice, you can cast the @Compendium[dnd5e.spells.J6Jpw5XzB5aTeqnz]{Plane Shift} spell (save DC 17) with the cube and transport the targets to the plane keyed to that side.\nThe cube has 3 charges. Each use of the cube expends 1 charge. The cube regains 1d3 expended charges daily at dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":40000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":3,"max":"3","per":"day","recovery":"1d3","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233478,"modifiedTime":1671220957500,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"6n8J07mFo8xs11vS","name":"Dancing Rapier","type":"weapon","img":"icons/skills/melee/maneuver-greatsword-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":4,"max":"4","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":true,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233479,"modifiedTime":1671220957506,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"6ndqUhOySYVVQ5on","name":"Halberd +2","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +2","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"halberd","properties":{"hvy":true,"two":true,"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233479,"modifiedTime":1671220957516,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"6pjaQzbtxQTuQ4RW","name":"Rod of Absorption","type":"consumable","img":"icons/magic/fire/barrier-wall-explosion-orange.webp","system":{"description":{"value":"(Requires attunement)While holding this rod, you can use your reaction to absorb a spell that is targeting only you and not with an area of effect. The absorbed spell's effect is canceled, and the spell's energy not the spell itself - is stored in the rod. The energy has the same level as the spell when it was cast. The rod can absorb and store up to 50 levels of energy over the course of its existence. Once the rod absorbs 50 levels of energy, it can't absorb more. If you are targeted by a spell that the rod can't store, the rod has no effect on that spell.When you become attuned to the rod, you know how many levels of energy the rod has absorbed over the course of its existence, and how many levels of spell energy it currently has stored.If you are a spellcaster holding the rod, you can convert energy stored in it into spell slots to cast spells you have prepared or know. You can create spell slots only of a level equal to or lower than your own spell slots, up to a maximum of 5th level. You use the stored levels in place of your slots, but otherwise cast the spell as normal. For example, you can use 3 levels stored in the rod as a 3rd-level spell slot.A newly found rod has 1d10 levels of spell energy stored in it already. A rod that can no longer absorb spell energy and has no energy remaining becomes nonmagical.Foundry NoteThe rod currently has the maximum 10 charges for a newly found rod. Adjust as required.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":50000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"reaction","cost":1,"condition":"Spell slots created can be no higher than 5th level."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":10,"max":"50","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"rod"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233480,"modifiedTime":1671220957521,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"6rocoBx5jdzG1QQH","name":"Healer's Kit","type":"consumable","img":"icons/containers/bags/sack-simple-green.webp","system":{"description":{"value":"This kit is a leather pouch containing bandages, salves, and splints. The kit has ten uses. As an action, you can expend one use of the kit to stabilize a creature that has 0 hit points, without needing to make a Wisdom (Medicine) check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":10,"max":"10","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233481,"modifiedTime":1671220957525,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7FEcfqz1piPHN1tV","name":"Ioun Stone of Greater Absorption","type":"equipment","img":"icons/commodities/stone/ore-pile-green.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Greater Absorption. While this marbled lavender and green ellipsoid orbits your head, you can use your reaction to cancel a spell of 8th level or lower cast by a creature you can see and targeting only you.\nOnce the stone has canceled 50 levels of spells, it burns out and turns dull gray, losing its magic. If you are targeted by a spell whose level is higher than the number of spell levels the stone has left, the stone can't cancel it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":31000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":50,"max":"50","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233481,"modifiedTime":1671220957529,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7FLs8qIGdOFnz9oL","name":"Lantern of Revealing","type":"consumable","img":"icons/sundries/lights/lantern-iron-yellow.webp","system":{"description":{"value":"Wondrous item\nWhile lit, this hooded lantern burns for 6 hours on 1 pint of oil, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. Invisible creatures and objects are visible as long as they are in the lantern's bright light. You can use an action to lower the hood, reducing the light to dim light in a 5-foot radius.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":5000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"6","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":60,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233482,"modifiedTime":1671220957546,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7Yqbqg5EtVW16wfT","name":"Barrel","type":"backpack","img":"icons/containers/barrels/barrel-oak-banded-tan.webp","system":{"description":{"value":"A barrel can hold 40 gallons of liquid or 4 cubic feet of solids.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":70,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":334,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233482,"modifiedTime":1671220957559,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7i4s9msZWpAw4Ynv","name":"Dagger of Venom","type":"weapon","img":"icons/skills/melee/strike-dagger-poison-dripping-green.webp","system":{"description":{"value":"You gain a +1 bonus to attack and damage rolls made with this magic weapon.\nYou can use an action to cause thick, black poison to coat the blade. The poison remains for 1 minute or until an attack using this weapon hits a creature. That creature must succeed on a DC 15 Constitution saving throw or take 2d10 poison damage and become poisoned for 1 minute. The dagger can't be used this way again until the next dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +1","piercing"]],"versatile":""},"formula":"2d10","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"dagger","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233483,"modifiedTime":1671220957563,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7jEKkA9qbwJ3IuCb","name":"Wand of Binding","type":"consumable","img":"icons/weapons/staves/staff-ornate-engraved-blue.webp","system":{"description":{"value":"(Requires attunement by a spellcaster)\nThis wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.\nSpells. While holding the wand, you can use an action to expend some of its charges to cast one of the following spells (save DC 17): @Compendium[dnd5e.spells.l9Ju5KE7bbn3WpTm]{Hold Monster} (5 charges) or @Compendium[dnd5e.spells.3Lo9boi7P2ro6QV4]{Hold Person} (2 charges).\nAssisted Escape. While holding the wand, you can use your reaction to expend 1 charge and gain advantage on a saving throw you make to avoid being paralyzed or restrained, or you can expend 1 charge and gain advantage on any check you make to escape a grapple.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":10000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":7,"max":"7","per":"charges","recovery":"1d6 + 1","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d6 +1","save":{"ability":"wis","dc":17,"scaling":"flat"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233484,"modifiedTime":1671220957573,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7kVZo4DLBq22406E","name":"Quarterstaff +2","type":"weapon","img":"icons/weapons/staves/staff-simple-gold.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +2","bludgeoning"]],"versatile":"1d8 + @mod +2"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"quarterstaff","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233484,"modifiedTime":1671220957582,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7vqs5AqI4VCmuszx","name":"Handy Haversack","type":"backpack","img":"icons/containers/bags/pack-simple-leather.webp","system":{"description":{"value":"Wondrous item\nThis backpack has a central pouch and two side pouches, each of which is an extradimensional space. Each side pouch can hold up to 20 pounds of material, not exceeding a volume of 2 cubic feet. The large central pouch can hold up to 8 cubic feet or 80 pounds of material. The backpack always weighs 5 pounds, regardless of its contents.\nPlacing an object in the haversack follows the normal rules for interacting with objects. Retrieving an item from the haversack requires you to use an action. When you reach into the haversack for a specific item, the item is always magically on top.\nThe haversack has a few limitations. If it is overloaded, or if a sharp object pierces it or tears it, the haversack ruptures and is destroyed. If the haversack is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. If the haversack is turned inside out, its contents spill forth, unharmed, and the haversack must be put right before it can be used again. If a breathing creature is placed within the haversack, the creature can survive for up to 10 minutes, after which time it begins to suffocate.\nPlacing the haversack inside an extradimensional space created by a bag of holding, portable hole, 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 can't be reopened.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"capacity":{"type":"weight","value":120,"weightless":true},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233485,"modifiedTime":1671220957587,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7wY0389wscheFkIa","name":"Scimitar of Speed","type":"weapon","img":"icons/skills/melee/spear-tips-triple-orange.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +2 bonus to attack and damage rolls made with this magic weapon. In addition, you can make one attack with it as a bonus action on each of your turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 +@mod +2","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233485,"modifiedTime":1671220957597,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7ztvHyYJCcOOAWmR","name":"Censer","type":"loot","img":"icons/containers/kitchenware/goblet-worn-clay-white.webp","system":{"description":{"value":"Usually used in conjunction with blocks of incense to perfume the air.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233486,"modifiedTime":1671220957601,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"84z9mVy1mCipUWEY","name":"Breastplate +1","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":20,"price":{"value":1900,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"breastplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233486,"modifiedTime":1690538958775,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8ABk0XV76Hzq8Qul","name":"Amulet of the Planes","type":"equipment","img":"icons/equipment/neck/pendant-faceted-green.webp","system":{"description":{"value":"Wondrous Item (requires attunement)\n \nWhile wearing this Amulet, you can use an action to name a location that you are familiar with on another plane of existence. Then make a DC 15 Intelligence check. On a successful check, you cast the @Compendium[dnd5e.spells.J6Jpw5XzB5aTeqnz]{Plane Shift} spell. On a failure, you and each creature and object within 15 feet of you travel to a random destination. Roll a d100. On a 1-60, you travel to a random location on the plane you named. On a 61-100, you travel to a randomly determined plane of existence.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":160000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"light","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233487,"modifiedTime":1671220957616,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8CaODbNQtxHGuVjn","name":"Figurine of Wondrous Power (Ivory Goat of Terror)","type":"consumable","img":"icons/commodities/bones/horn-curved-worn-brown.webp","system":{"description":{"value":"Wondrous item\nA figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\nIvory Goats. These ivory statuettes of goats are always created in sets of three. Each goat looks unique and functions differently from the others.\nThe Goat of Terror becomes a @Compendium[dnd5e.monsters.rjqk7ToMD8sGr3n4]{Giant Goat} for up to 3 hours. The goat can't attack, but you can remove its horns and use them as weapons. One horn becomes a @Compendium[dnd5e.items.l88FXiodYofrJT8a]{Lance +1}, and the other becomes a @Compendium[dnd5e.items.bcv7J9culilK68zp]{Longsword +2}. Removing a horn requires an action, and the weapons disappear and the horns return when the goat reverts to figurine form.\nIn addition, the goat radiates a 30-foot-radius aura of terror while you are riding it. Any creature hostile to you that starts its turn in the aura must succeed on a DC 15 Wisdom saving throw or be frightened of the goat for 1 minute, or until the goat reverts to figurine form. The frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once it successfully saves against the effect, a creature is immune to the goat's aura for the next 24 hours.\nOnce the figurine has been used, it can't be used again until 15 days have passed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":20000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"3","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233487,"modifiedTime":1671220957624,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8GCEodUsTEEpBlO6","name":"Robes","type":"equipment","img":"icons/equipment/back/mantle-collared-black.webp","system":{"description":{"value":"Simple or ceremonial wear, often used by priests and other religious figures.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233488,"modifiedTime":1671220957629,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8LZBOY5USLZ4ngDq","name":"Greatsword +2","type":"weapon","img":"icons/weapons/swords/greatsword-guard-gem-blue.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod +2","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233488,"modifiedTime":1671220957632,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8MNDhKb1Q87QszOJ","name":"Longsword of Sharpness","type":"weapon","img":"icons/skills/wounds/bone-broken-knee-beam.webp","system":{"description":{"value":"(Requires attunement)\nWhen you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10-foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":1700,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":20,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"4d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233489,"modifiedTime":1671220957649,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8MPnSrvEeZhPhtTi","name":"Potion of Lightning Resistance","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-yellow.webp","system":{"description":{"value":"The potion is a plain indescriminate color and smells slightly foul.\nWhen you drink this potion, you gain resistance to Lightning type damage for 1 hour.\nFor other potions of resistance, roll on the @Compendium[dnd5e.tables.JzLOE4IxcmxjLLuz]{Potion of Resistance} table.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233490,"modifiedTime":1671220957664,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8N1GqcdroUpmM9dS","name":"Warhammer +1","type":"weapon","img":"icons/weapons/hammers/hammer-drilling-spiked.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","bludgeoning"]],"versatile":"1d10 + @mod +1"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"warhammer","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233490,"modifiedTime":1671220957670,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8NS6MSOdXtUqD7Ib","name":"Carpenter's Tools","type":"tool","img":"icons/tools/hand/saw-steel-grey.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in carpentry.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":8,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"carpenter","ability":"str","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233491,"modifiedTime":1671220957674,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8PI1EL8xHLq4tXKr","name":"Ring of Spell Turning","type":"equipment","img":"icons/equipment/finger/ring-band-engraved-scrolls-silver.webp","system":{"description":{"value":"(Requires attunement)\nWhile wearing this ring, you have advantage on saving throws against any spell that targets only you (not in an area of effect). In addition, if you roll a 20 for the save and the spell is 7th level or lower, the spell has no effect on you and instead targets the caster, using the slot level, spell save DC, attack bonus, and spellcasting ability of the caster.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":30000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233492,"modifiedTime":1671220957678,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8RXjiddJ6VGyE7vB","name":"Common Clothes","type":"equipment","img":"icons/equipment/chest/shirt-collared-brown.webp","system":{"description":{"value":"Clothes worn by most commoners.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233492,"modifiedTime":1671220957682,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8W6ULfSqzuHh6Peg","name":"Longbow +3","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"longbow","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233493,"modifiedTime":1671220957688,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8dfhaa1g3VDjhtm3","name":"Eyes of Charming","type":"equipment","img":"icons/creatures/eyes/human-single-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThese crystal lenses fit over the eyes. They have 3 charges. While wearing them, you can expend 1 charge as an action to cast the @Compendium[dnd5e.spells.eS7XnnApoxRxYXPs]{Charm Person} spell (save DC 13) on a humanoid within 30 feet of you, provided that you and the target can see each other. The lenses regain all expended charges daily at dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.01,"price":{"value":3000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Must have eye contact with the target humanoid."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233493,"modifiedTime":1671220957692,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Bit and Bridle","type":"equipment","img":"icons/environment/creatures/horse-brown.webp","system":{"description":{"value":"A component of a horse's tack that is worn on its head and connected to the reins. It consists of several adjustable leather straps, connecting metal rings, and a mouthpiece called the 'bit' or 'mullen', made of rope, bone, horn, or other hard substance such as bronze, steel, nickel, or wood.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"8l7M3zeqrU2vkA5h","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233494,"modifiedTime":1671220957703,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8tvhh5wqG5FRh3Sf","name":"Caltrops","type":"consumable","img":"icons/weapons/thrown/bomb-spiked-purple.webp","system":{"description":{"value":"As an action, you can spread a single bag of caltrops to cover a 5-foot-square area. Any creature that enters the area must succeed on a DC 15 Dexterity saving throw or stop moving and take 1 piercing damage. Until the creature regains at least 1 hit point, its walking speed is reduced by 10 feet. A creature moving through the area at half speed doesn't need to make the saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"square"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233494,"modifiedTime":1671220957707,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8wXB18E0oPAYFkqc","name":"Heavy Crossbow +2","type":"weapon","img":"icons/weapons/crossbows/crossbow-blue.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":18,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":100,"long":400,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"heavycrossbow","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233495,"modifiedTime":1671220957711,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"902yxeFDwavpm6cv","name":"Shortsword of Life Stealing","type":"weapon","img":"icons/creatures/claws/claw-curved-poison-purple.webp","system":{"description":{"value":"(Requires attunement)\nWhen you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Must roll a 20 and the target cannot be undead."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 +@mod","piercing"]],"versatile":""},"formula":"3d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233496,"modifiedTime":1671220957715,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9G9QGSPgpZDSsm37","name":"Sledgehammer","type":"loot","img":"icons/tools/smithing/hammer-sledge-steel-grey.webp","system":{"description":{"value":"A tool with a large, flat, often metal head, attached to a long handle. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233496,"modifiedTime":1671220957719,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9GSfMg0VOA2b4uFN","name":"Spell Scroll 1st Level","type":"consumable","img":"icons/sundries/scrolls/scroll-bound-orange-tan.webp","system":{"description":{"value":"A spell scroll bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can read the scroll and cast its spell without providing any material components. Otherwise, the scroll is unintelligible. Casting the spell by reading the scroll requires the spell's normal casting time. Once the spell is cast, the words on the scroll fade, and it crumbles to dust. If the casting is interrupted, the scroll is not lost.\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 11 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity.\nSave DC: 13Attack Bonus: +5.\nA wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 11 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":60,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"common","identified":true,"activation":{"type":"action","cost":1,"condition":"Spell must be on the caster's spell list."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"5","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":13,"scaling":"flat"},"consumableType":"scroll"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233496,"modifiedTime":1671220957723,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9Ifr8fGvJ1bArzOW","name":"Bag of Tricks (Grey)","type":"consumable","img":"icons/containers/bags/coinpouch-leather-grey.webp","system":{"description":{"value":"Wondrous item\nThis ordinary bag, made from gray cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, fuzzy object. The bag weighs 1/2 pound.\nYou can use an action to pull the fuzzy object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling on the @Compendium[dnd5e.tables.VPGP621PW7k03YfB]{Grey Bag of Tricks} table.\nThe creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature.\nOnce three fuzzy objects have been pulled from the bag, the bag can't be used again until the next dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.5,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"space"},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233497,"modifiedTime":1671220957726,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9Mdes2tKt0cqsNTw","name":"Nine Lives Stealer Scimitar","type":"weapon","img":"icons/weapons/swords/sword-broad-crystal-paired.webp","system":{"description":{"value":"(Requires attunement)You gain a +2 bonus to attack and damage rolls made with this magic weapon.The sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.Foundry NoteThe 9 charges reflect a fully charged blade. Please adjust accordingly as required.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Critical hit on a creature of 100 hit points or less. Undead and constructs are immune."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":9,"max":"9","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 +@mod +2","slashing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233498,"modifiedTime":1671220957731,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9UvWQTY5yIgkJmmb","name":"Circlet of Blasting","type":"equipment","img":"icons/equipment/finger/ring-cabochon-notched-gold-green.webp","system":{"description":{"value":"Wondrous item\nWhile wearing this circlet, you can use an action to cast the @Compendium[dnd5e.spells.7u2obDvuvtZBkTfq]{Scorching Ray} spell with it. When you make the spell's attacks, you do so with an attack bonus of +5. The circlet can't be used this way again until the next dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"5","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233498,"modifiedTime":1671220957735,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9bWTRRDym06PzSAf","name":"Pouch","type":"backpack","img":"icons/containers/bags/coinpouch-simple-tan.webp","system":{"description":{"value":"A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":6,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233499,"modifiedTime":1671220957750,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9cIlRtKDtDXQtElf","name":"Ring of Spell Storing","type":"equipment","img":"icons/equipment/finger/ring-cabochon-silver-gold-red.webp","system":{"description":{"value":"(Requires attunement)\nThis ring stores spells cast into it, holding them until the attuned wearer uses them. The ring can store up to 5 levels worth of spells at a time. When found, it contains 1d6 − 1 levels of stored spells chosen by the GM.\nAny creature can cast a spell of 1st through 5th level into the ring by touching the ring as the spell is cast. The spell has no effect, other than to be stored in the ring. If the ring can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.\nWhile wearing this ring, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the ring is no longer stored in it, freeing up space.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":24000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":5,"max":"5","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233499,"modifiedTime":1671220957754,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9eyZY9tL3fXD1Mbm","name":"Dust of Sneezing and Choking","type":"consumable","img":"icons/magic/water/bubbles-air-water-light.webp","system":{"description":{"value":"Wondrous item\nFound in a small container, this powder resembles very fine sand. It appears to be dust of disappearance, and an @Compendium[dnd5e.spells.3OZnNhunvRtPOQmH]{Identify} spell reveals it to be such. There is enough of it for one use.\nWhen you use an action to throw a handful of the dust into the air, you and each creature that needs to breathe within 30 feet of you must succeed on a DC 15 Constitution saving throw or become unable to breathe, while sneezing uncontrollably. A creature affected in this way is incapacitated and suffocating. As long as it is conscious, a creature can repeat the saving throw at the end of each of its turns, ending the effect on it on a success. The @Compendium[dnd5e.spells.F0GsG0SJzsIOacwV]{Lesser Restoration} spell can also end the effect on a creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":480,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233500,"modifiedTime":1671220957760,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9jMQEm99q1ttAV1Q","name":"Ioun Stone of Insight","type":"equipment","img":"icons/commodities/stone/ore-pile-teal.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Insight. Your Wisdom score increases by 2, to a maximum of 20, while this incandescent blue sphere orbits your head.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":3000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[{"label":"Ioun Stone of Insight","icon":"icons/commodities/stone/ore-pile-teal.webp","origin":"Compendium.dnd5e.items.9jMQEm99q1ttAV1Q","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"GDz8rS3R0TN0Pxhx","changes":[{"key":"system.abilities.wis.value","mode":2,"value":"+2"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233501,"modifiedTime":1690480798346,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9kfMsSweOBui0SC4","name":"Rod of Security","type":"consumable","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"While holding this rod, you can use an action to activate it. The rod then instantly transports you and up to 199 other willing creatures you can see to a paradise that exists in an extraplanar space. You choose the form that the paradise takes. It could be a tranquil garden, lovely glade, cheery tavern, immense palace, tropical island, fantastic carnival, or whatever else you can imagine. Regardless of its nature, the paradise contains enough water and food to sustain its visitors. Everything else that can be interacted with inside the extraplanar space can exist only there. For example, a flower picked from a garden in the paradise disappears if it is taken outside the extraplanar space.\nFor each hour spent in the paradise, a visitor regains hit points as if it had spent 1 Hit Die. Also, creatures don't age while in the paradise, although time passes normally. Visitors can remain in the paradise for up to 200 days divided by the number of creatures present (round down).\nWhen the time runs out or you use an action to end it, all visitors reappear in the location they occupied when you activated the rod, or an unoccupied space nearest that location. The rod can't be used again until ten days have passed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":90000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":200,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"consumableType":"rod"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233501,"modifiedTime":1671220957768,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9nxSHbqlDdngtuuz","name":"Figurine of Wondrous Power (Onyx Dog)","type":"consumable","img":"icons/sundries/misc/pet-collar-red.webp","system":{"description":{"value":"Wondrous item\nA figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\nOnyx Dog. This onyx statuette of a dog can become a @Compendium[dnd5e.monsters.YTpL2c3NO4sOn2UA]{Mastiff} for up to 6 hours. The mastiff has an Intelligence of 8 and can speak Common. It also has darkvision out to a range of 60 feet and can see invisible creatures and objects within that range. Once it has been used, it can't be used again until 7 days have passed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":3000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"6","units":"hour"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233502,"modifiedTime":1671220957777,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9qOAoFw9dTXhJ1w0","name":"Sling +2","type":"weapon","img":"icons/weapons/slings/slingshot-wood.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +2","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"sling","properties":{"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233503,"modifiedTime":1671220957785,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9stfX2i2I1YPo8vx","name":"Instant Fortress","type":"consumable","img":"icons/environment/settlement/watchtower-silhouette-yellow.webp","system":{"description":{"value":"Wondrous item\nYou can use an action to place this 1-inch metal cube on the ground and speak its command word. The cube rapidly grows into a fortress that remains until you use an action to speak the command word that dismisses it, which works only if the fortress is empty.\nThe fortress is a square tower, 20 feet on a side and 30 feet high, with arrow slits on all sides and a battlement atop it. Its interior is divided into two floors, with a ladder running along one wall to connect them. The ladder ends at a trapdoor leading to the roof. When activated, the tower has a small door on the side facing you. The door opens only at your command, which you can speak as a bonus action. It is immune to the @Compendium[dnd5e.spells.1nhIxh0DsJsntCfj]{Knock} spell and similar magic, such as that of a @Compendium[dnd5e.items.vZdLYfHlLcZqQ8zc]{Chime of Opening}.\nEach creature in the area where the fortress appears must make a DC 15 Dexterity saving throw, taking 10d10 bludgeoning damage on a failed save, or half as much damage on a successful one. In either case, the creature is pushed to an unoccupied space outside but next to the fortress. Objects in the area that aren't being worn or carried take this damage and are pushed automatically.\nThe tower is made of adamantine, and its magic prevents it from being tipped over. The roof, the door, and the walls each have 100 hit points, immunity to damage from nonmagical weapons excluding siege weapons, and resistance to all other damage. Only a @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell can repair the fortress (this use of the spell counts as replicating a spell of 8th level or lower). Each casting of Wish causes the roof, the door, or one wall to regain 50 hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":75000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"square"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d10","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233503,"modifiedTime":1671220957790,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9uT9SXy1Gb1jiiZX","name":"Scale Mail +3","type":"equipment","img":"icons/equipment/chest/breastplate-banded-steel.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":45,"price":{"value":24050,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":17,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"scalemail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233504,"modifiedTime":1690538872425,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9v0TPDXNa9S7aNB4","name":"Periapt of Health","type":"equipment","img":"icons/equipment/neck/pendant-faceted-red.webp","system":{"description":{"value":"Wondrous item\nYou are immune to contracting any disease while you wear this pendant. If you are already infected with a disease, the effects of the disease are suppressed you while you wear the pendant.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.01,"price":{"value":5000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233504,"modifiedTime":1671220958449,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"A2i08i8gAFscm6hZ","name":"Longbow +1","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"longbow","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233505,"modifiedTime":1671220958459,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"AChuumAYmts5uGFT","name":"Vicious Sickle","type":"weapon","img":"icons/weapons/sickles/sickle-curved.webp","system":{"description":{"value":"A crescent hooked blade mounted atop a short haft, light enough to be wielded in one hand for treshing crops or foes.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"sickle","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233506,"modifiedTime":1671220958465,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ADH0UZ8bf7Op0dgf","name":"Crystal Ball of True Seeing","type":"consumable","img":"icons/commodities/gems/pearl-fire.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThe Crystal Ball is about 6 inches in diameter. While touching it, you can cast the @Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying} spell (save DC 17) with it.\nWhile Scrying with the Crystal Ball, you have Truesight with a radius of 120 feet centered on the spell's sensor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":60000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233506,"modifiedTime":1671220958471,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"AHn15T1TOuDFS0GH","name":"Sickle +3","type":"weapon","img":"icons/weapons/sickles/sickle-curved.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +3","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"sickle","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233507,"modifiedTime":1671220958484,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Ajyq6nGwF7FtLhDQ","name":"Mace","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"A heavy bludgeoning weapon mounted to the end of a metal club. The head features spikes and blades designed to puncture armor and shatter the bones below.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"mace","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233508,"modifiedTime":1671220958515,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Aq1rhgcgFnwu2T4I","name":"Cloak of the Bat","type":"equipment","img":"icons/equipment/back/cloak-heavy-fur-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this cloak, you have advantage on Dexterity (Stealth) checks. In an area of dim light or darkness, you can grip the edges of the cloak with both hands and use it to fly at a speed of 40 feet. If you ever fail to grip the cloak's edges while flying in this way, or if you are no longer in dim light or darkness, you lose this flying speed.\nWhile wearing the cloak in an area of dim light or darkness, you can use your action to cast @Compendium[dnd5e.spells.04nMsTWkIFvkbXlY]{Polymorph} on yourself, transforming into a bat. While you are in the form of the bat, you retain your Intelligence, Wisdom, and Charisma scores.\nThe cloak can't be used this way again until the next dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"5","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233508,"modifiedTime":1671220958520,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"AweD4kpKGM7Ilu3n","name":"Ring of Regeneration","type":"equipment","img":"icons/equipment/finger/ring-faceted-gold-purple.webp","system":{"description":{"value":"(Requires attunement)\nWhile wearing this ring, you regain 1d6 hit points every 10 minutes, provided that you have at least 1 hit point. If you lose a body part, the ring causes the missing part to regrow and return to full functionality after 1d6 + 1 days if you have at least 1 hit point the whole time.\nFoundry note: you can use the Other Formula to calculate the days needed to regrow a body part if required.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":12000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"none","cost":null,"condition":"You need at least 1 hit point."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6","healing"]],"versatile":""},"formula":"1d6 +1","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233509,"modifiedTime":1671220958527,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"BNJmdttKvIwC08Pd","name":"Sling Bullet +2","type":"consumable","img":"icons/skills/ranged/bullets-triple-ball-yellow.webp","system":{"description":{"value":"A hardened pebble of stone, bone, or metal which can be flung at high velocity using a sling. It has been imbued with magic.\nYou have a bonus to attack and damage rolls made with this piece of magic ammunition. Once it hits a target, the ammunition is no longer magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.075,"price":{"value":100,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233510,"modifiedTime":1671220958532,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"BQw5lyopqLmf8B6u","name":"Chain Mail Armor of Resistance","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":55,"price":{"value":6075,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainmail","speed":{"value":null,"conditions":""},"strength":13,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233510,"modifiedTime":1671220958537,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"BeKIrNIvNHRPQ4t5","name":"Staff","type":"weapon","img":"icons/weapons/staves/staff-ornate-engraved-blue.webp","system":{"description":{"value":"A gnarled or polished staff of wood, bone, or more exotic materials like crystal. Such implements are frequently used by spellcasters to hone their arcane focus.\nSpellcasting Focus. An arcane focus is a special item designed to channel the power of arcane spells. A sorcerer, warlock, or wizard can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"foc":true,"amm":false,"hvy":false,"fin":false,"fir":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233511,"modifiedTime":1671220958550,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"BefbYlWbRYyy6R8s","name":"Nine Lives Stealer Longsword","type":"weapon","img":"icons/weapons/swords/sword-broad-crystal-paired.webp","system":{"description":{"value":"(Requires attunement)You gain a +2 bonus to attack and damage rolls made with this magic weapon.The sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.Foundry NoteThe 9 charges reflect a fully charged blade. Please adjust accordingly as required.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Critical hit on a creature of 100 hit points or less. Undead and constructs are immune."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":9,"max":"9","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod +2","slashing"]],"versatile":"1d10 +@mod +2"},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true,"ada":false,"sil":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233511,"modifiedTime":1671220958564,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"BjyTJn9oGvURWKJR","name":"Manual of Bodily Health","type":"consumable","img":"icons/sundries/books/book-backed-silver-red.webp","system":{"description":{"value":"Wondrous item\nThis book contains health and diet tips, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Constitution score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":100000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"hour","cost":48,"condition":"The book must be completed in 6 days or less."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233512,"modifiedTime":1671220958578,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"BmWnprrj0QWQ1BL3","name":"Quarterstaff +3","type":"weapon","img":"icons/weapons/staves/staff-simple-gold.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","bludgeoning"]],"versatile":"1d8 + @mod +3"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"quarterstaff","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233512,"modifiedTime":1671220958583,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"BnOCLuNWhVvzHLjl","name":"Torch","type":"consumable","img":"icons/sundries/lights/torch-black.webp","system":{"description":{"value":"A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":40,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233513,"modifiedTime":1671220958589,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"BsyPV6eTNghT3Fho","name":"Eyes of Minute Seeing","type":"equipment","img":"icons/magic/control/hypnosis-mesmerism-eye.webp","system":{"description":{"value":"Wondrous item\nThese crystal lenses fit over the eyes. While wearing them, you can see much better than normal out to a range of 1 foot. You have advantage on Intelligence (Investigation) checks that rely on sight while searching an area or studying an object within that range.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.01,"price":{"value":2500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":1,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233514,"modifiedTime":1671220958595,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"BwC8hZaNjO7IQc6K","name":"Splint Armor +3","type":"equipment","img":"icons/equipment/chest/breastplate-layered-steel.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":60,"price":{"value":24200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":20,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"splint","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233514,"modifiedTime":1671220958613,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"C0MNXWA81ufzGlp5","name":"Oil of Sharpness","type":"consumable","img":"icons/consumables/potions/potion-tube-corked-bat-gold-red.webp","system":{"description":{"value":"This clear, gelatinous oil sparkles with tiny, ultrathin silver shards. \nThe oil can coat one slashing or piercing weapon or up to 5 pieces of slashing or piercing ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item is magical and has a +3 bonus to attack and damage rolls.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":3200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233515,"modifiedTime":1671220958619,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"CAZMwFBWp9VC0ZCg","name":"Potion of Water Breathing","type":"consumable","img":"icons/consumables/potions/potion-bottle-corked-labeled-green.webp","system":{"description":{"value":"Its cloudy green fluid smells of the sea and has a jellyfish-like bubble floating in it.\nYou can breathe underwater for 1 hour after drinking this potion. \n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":180,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233515,"modifiedTime":1671220958633,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"CI58LNiwrTpmWYMp","name":"Figurine of Wondrous Power (Bronze Griffon)","type":"consumable","img":"icons/commodities/bones/hurn-curved-yellow.webp","system":{"description":{"value":"Wondrous item\nA figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\nBronze Griffon. This bronze statuette is of a griffon rampant. It can become a @Compendium[dnd5e.monsters.h052EIIUmRwJum65]{Griffon} for up to 6 hours. Once it has been used, it can't be used again until 5 days have passed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":8000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"6","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233516,"modifiedTime":1671220958644,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"CNdDj8dsXVpRVpXt","name":"Sack","type":"backpack","img":"icons/containers/bags/sack-cloth-orange.webp","system":{"description":{"value":"A sack can hold up to 1 cubic foot or 30 pounds of gear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.5,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233516,"modifiedTime":1671220958649,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"CVMGOJWTO6TCybrH","name":"Lance +2","type":"weapon","img":"icons/weapons/ammunition/arrow-head-war-flight.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.\nSpecial. You have disadvantage when you use a lance to attack a target within 5 feet of you. Also, a lance requires two hands to wield when you aren't mounted.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"lance","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":true,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233518,"modifiedTime":1671220958653,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"CcTGZzQHejxEVLK1","name":"Mithral Breastplate","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel-grey.webp","system":{"description":{"value":"Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":20,"price":{"value":1200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"breastplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233519,"modifiedTime":1690538971665,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"CoUFHk5keIihsbYL","name":"Flame Tongue Rapier","type":"weapon","img":"icons/magic/fire/projectile-bolt-zigzag-orange.webp","system":{"description":{"value":"(Requires attunement)\nYou can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"2d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233519,"modifiedTime":1671220958666,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Ct9LR9Ft1FG4a6Y1","name":"Potion of Mind Reading","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-purple.webp","system":{"description":{"value":"The potion's dense, purple liquid has an ovoid cloud of pink floating in it.\nWhen you drink this potion, you gain the effect of the @Compendium[dnd5e.spells.ppWAAEul0QHtm4er]{Detect Thoughts} spell (save DC 13). ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":180,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"flat"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233520,"modifiedTime":1671220958671,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"CvzjhUy9ekRieR1A","name":"Eversmoking Bottle","type":"consumable","img":"icons/commodities/tech/smoke-bomb-purple.webp","system":{"description":{"value":"Wondrous item\nSmoke leaks from the lead-stoppered mouth of this brass bottle, which weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke pours out in a 60-foot radius from the bottle. The cloud's area is heavily obscured. Each minute the bottle remains open and within the cloud, the radius increases by 10 feet until it reaches its maximum radius of 120 feet.\nThe cloud persists as long as the bottle is open. Closing the bottle requires you to speak its command word as an action. Once the bottle is closed, the cloud disperses after 10 minutes. A moderate wind (11 to 20 miles per hour) can also disperse the smoke after 1 minute, and a strong wind (21 or more miles per hour) can do so after 1 round.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233520,"modifiedTime":1671220958678,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"CwWbeQ6XyqFzbMYw","name":"Book of Shadows","type":"loot","img":"icons/sundries/books/book-black-grey.webp","system":{"description":{"value":"A grimoire given to you by your patron. Choose three cantrips from any class's spell list (the three needn't be from the same list). While the book is on your person, you can cast those cantrips at will. They don't count against your number of cantrips known. If they don't appear on the warlock spell list, they are nonetheless warlock spells for you. \nIf you lose your Book of Shadows, you can perform a 1-hour ceremony to receive a replacement from your patron. This ceremony can be performed during a short or long rest, and it destroys the previous book. The book turns to ash when you die.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233521,"modifiedTime":1671220958682,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"DEQkJiQdGyfmSNkV","name":"Helm of Teleportation","type":"equipment","img":"icons/equipment/head/helm-barbute-horned-copper.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThis helm has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the @Compendium[dnd5e.spells.L4J89JXqbKs6puEV]{Teleport} spell from it. The helm regains 1d3 expended charges daily at dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":64000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233521,"modifiedTime":1671220958686,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"DM7hzgL836ZyUFB1","name":"Spell Scroll 4th Level","type":"consumable","img":"icons/sundries/scrolls/scroll-plain-red.webp","system":{"description":{"value":"A spell scroll bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can read the scroll and cast its spell without providing any material components. Otherwise, the scroll is unintelligible. Casting the spell by reading the scroll requires the spell's normal casting time. Once the spell is cast, the words on the scroll fade, and it crumbles to dust. If the casting is interrupted, the scroll is not lost.\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 14 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity.\nSave DC: 15Attack Bonus: +7.\nA wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 14 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":320,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Spell must be on the caster's spell list."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"7","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":15,"scaling":"flat"},"consumableType":"scroll"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233522,"modifiedTime":1671220958714,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"DMejWAc8r8YvDPP1","name":"Halberd","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"A spear-tipped metal shaft accompanied by a crescent blade, the halberd is a strong defensive weapon which allows a warrior to fend off foes using the reach of the shaft to attack from safe distance.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"halberd","properties":{"hvy":true,"two":true,"rch":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233522,"modifiedTime":1671220958720,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"DNOSEAvF4Oh1DlWy","name":"Tinderbox","type":"loot","img":"icons/sundries/lights/torch-black.webp","system":{"description":{"value":"This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233523,"modifiedTime":1671220958728,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"DSHi7yT6OUyDoCcu","name":"Bracers of Defense","type":"equipment","img":"icons/equipment/wrist/bracer-segmented-leather.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing these bracers, you gain a +2 bonus to AC if you are wearing no armor and using no shield.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[{"_id":"ul7rjl68p1kyv4z2","changes":[{"key":"system.attributes.ac.bonus","mode":2,"value":"2","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/equipment/wrist/bracer-segmented-leather.webp","label":"+2 to AC","origin":"Compendium.dnd5e.items.DSHi7yT6OUyDoCcu","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233523,"modifiedTime":1671220958745,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"DT02xK1DzxLNlVaI","name":"Frost Brand Shortsword","type":"weapon","img":"icons/skills/melee/strike-weapon-polearm-ice-blue.webp","system":{"description":{"value":"(Requires attunement)\nWhen you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":2200,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"],["1d6","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233524,"modifiedTime":1671220958758,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"DVXmyetZuvxbzAwW","name":"Bedroll","type":"loot","img":"icons/sundries/survival/bedroll-grey.webp","system":{"description":{"value":"Roll of cloth used by traveller to sleep in.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233526,"modifiedTime":1671220958762,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"DWLMnODrnHn8IbAG","name":"Javelin","type":"weapon","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"This light and flexible spear is designed for throwing, but is versatile enough to be used in melee combat as well.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"javelin","properties":{"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233527,"modifiedTime":1671220958767,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"DWwBkOFuYf5VN3M2","name":"Periapt of Wound Closure","type":"equipment","img":"icons/equipment/neck/pendant-faceted-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile you wear this pendant, you stabilize whenever you are dying at the start of your turn. In addition, whenever you roll a Hit Die to regain hit points, double the number of hit points it restores.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.01,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233527,"modifiedTime":1671220958772,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Carpet of Flying (4x6)","type":"consumable","img":"icons/equipment/back/cloak-hooded-pink.webp","system":{"description":{"value":"Wondrous itemYou can speak the carpet's command word as an action to make the carpet hover and fly. It moves according to your spoken directions, provided that you are within 30 feet of it.This carpet is 4 ft. x 6 ft. and has a speed of 60 feet carrying up to 400 lb, or half that speed when carrying up to 800 lb.\nFour sizes of carpet of flying exist. The GM chooses the size of a given carpet or determines it randomly from the @Compendium[dnd5e.tables.Z2OG7jt9R8zofxnJ]{Carpet of Flying} table.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":12000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"flags":{},"_id":"DeK9uQvNJj3JzFwe","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233672,"modifiedTime":1671220958777,"lastModifiedBy":"dnd5ebuilder0000"},"folder":null,"sort":0,"ownership":{"default":0}} +{"_id":"DevmObXWP9MfwE2c","name":"Adamantine Breastplate","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel-grey.webp","system":{"description":{"value":"This armor is reinforced with adamantine, one of the hardest substances in existence.\nWhile you're wearing it, any critical hit against you becomes a normal hit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":20,"price":{"value":900,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"breastplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233528,"modifiedTime":1690538946202,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"DizirD7eqjh8n95A","name":"Maul","type":"weapon","img":"icons/weapons/maces/mace-spiked-wood-grey.webp","system":{"description":{"value":"This heavy two-handed mace crushes metal and bone with thunderous force.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"maul","properties":{"hvy":true,"two":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233528,"modifiedTime":1671220958787,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"DnlQkH6Bpwkd5n5Y","name":"Feather Token Anchor","type":"consumable","img":"icons/commodities/materials/feather-blue.webp","system":{"description":{"value":"Wondrous item\nThis tiny object looks like a feather. Different types of feather tokens exist, each with a different single-use effect. The GM chooses the kind of token or determines it randomly from the @Compendium[dnd5e.tables.OEdr086W61t1DRJo]{Feather Token} table.\nAnchor. You can use an action to touch the token to a boat or ship. For the next 24 hours, the vessel can't be moved by any means. Touching the token to the vessel again ends the effect. When the effect ends, the token disappears.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"touch","type":"object"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233529,"modifiedTime":1671220958792,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Do3qeSHtBjUsmfvz","name":"Rod of Alertness","type":"consumable","img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","system":{"description":{"value":"(Requires attunement)\nThis rod has a flanged head and the following properties.\nAlertness. While holding the rod, you have advantage on Wisdom (Perception) checks and on rolls for initiative.\nSpells. While holding the rod, you can use an action to cast one of the following spells from it: @Compendium[dnd5e.spells.Mzh95utKDPIrjiH8]{Detect Evil and Good}, @Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic}, @Compendium[dnd5e.spells.2skfDtglk1mGrb3l]{Detect Poison and Disease}, or @Compendium[dnd5e.spells.DQzlB5Y3k791W5bH]{See Invisibility}.\nProtective Aura. As an action, you can plant the haft end of the rod in the ground, whereupon the rod's head sheds bright light in a 60-foot radius and dim light for an additional 60 feet. While in that bright light, you and any creature that is friendly to you gain a +1 bonus to AC and saving throws and can sense the location of any invisible hostile creature that is also in the bright light.\nThe rod's head stops glowing and the effect ends after 10 minutes, or when a creature uses an action to pull the rod from the ground.. This property can't be used again until the next dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":25000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Rod must be planted in the ground."},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":60,"long":120,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"rod"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233530,"modifiedTime":1671220958796,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"DoSvjhRARhRqWZXg","name":"Wand of Fireballs","type":"consumable","img":"icons/weapons/staves/staff-engraved-red.webp","system":{"description":{"value":"(Requires attunement by a spellcaster)\nThis wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the @Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball} spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":32000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":7,"max":"7","per":"charges","recovery":"1d6 + 1","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d6","fire"]],"versatile":"1d6"},"formula":"1d6 +1","save":{"ability":"dex","dc":15,"scaling":"flat"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233530,"modifiedTime":1671220958821,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"DxIdfGoJEYQj8o3D","name":"Bag of Tricks (Rust)","type":"consumable","img":"icons/containers/bags/sack-simple-leather-tan.webp","system":{"description":{"value":"Wondrous item\nThis ordinary bag, made from rust-colored cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, fuzzy object. The bag weighs 1/2 pound.\nYou can use an action to pull the fuzzy object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling on the @Compendium[dnd5e.tables.PLHwT9dC6fCZqkeo]{Rust Bag of Tricks} table.\nThe creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature.\nOnce three fuzzy objects have been pulled from the bag, the bag can't be used again until the next dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.5,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"space"},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233531,"modifiedTime":1671220958839,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"E2h6sEe6FU2tnU96","name":"Costume Clothes","type":"equipment","img":"icons/equipment/back/cloak-hooded-pink.webp","system":{"description":{"value":"A complete costume usually used by performers and artists in all manner of entertainment halls or for those that simply refuse to get out of character.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233532,"modifiedTime":1671220958843,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"E7c4zpWdYgkKDHGo","name":"Luck Blade Scimitar","type":"weapon","img":"icons/magic/light/projectile-beam-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\nLuck. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\nWish. The sword has 1d4 – 1 charges. While holding it, you can use an action to expend 1 charge and cast the @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":210000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 +@mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233532,"modifiedTime":1671220958851,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"E9G4jALlSA96fKAN","name":"Iron Bands of Binding","type":"consumable","img":"icons/commodities/metal/clasp-steel-braid.webp","system":{"description":{"value":"Wondrous item\nThis rusty iron sphere measures 3 inches in diameter and weighs 1 pound. You can use an action to speak the command word and throw the sphere at a Huge or smaller creature you can see within 60 feet of you. As the sphere moves through the air, it opens into a tangle of metal bands.\nMake a ranged attack roll with an attack bonus equal to your Dexterity modifier plus your proficiency bonus. On a hit, the target is restrained until you take a bonus action to speak the command word again to release it. Doing so, or missing with the attack, causes the bands to contract and become a sphere once more.\nA creature, including the one restrained, can use an action to make a DC 20 Strength check to break the iron bands. On a success, the item is destroyed, and the restrained creature is freed. If the check fails, any further attempts made by that creature automatically fail until 24 hours have elapsed.\nOnce the bands are used, they can't be used again until the next dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word. Target creature must be Huge or smaller."},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["d20 + @attributes.prof + @mod",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233533,"modifiedTime":1671220958866,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"EJFql4aNWHHJSxT9","name":"Wand of Fear","type":"consumable","img":"icons/weapons/staves/staff-skull-brown.webp","system":{"description":{"value":"(Requires attunement)\nThis wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.\nCommand. While holding the wand, you can use an action to expend 1 charge and command another creature to flee or grovel, as with the @Compendium[dnd5e.spells.arzCrMRgcNiQuh43]{Command} spell (save DC 15).\nCone of Fear. While holding the wand, you can use an action to expend 2 charges, causing the wand's tip to emit a 60-foot cone of amber light. Each creature in the cone must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. While it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":10000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":7,"max":"7","per":"charges","recovery":"1d6 + 1","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d6 +1","save":{"ability":"wis","dc":15,"scaling":"flat"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233534,"modifiedTime":1671220958871,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"EJVaAvNfCq6gn6VG","name":"Helm of Telepathy","type":"equipment","img":"icons/magic/control/control-influence-rally-purple.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this helm, you can use an action to cast the @Compendium[dnd5e.spells.ppWAAEul0QHtm4er]{Detect Thoughts} spell (save DC 13) from it. As long as you maintain concentration on the spell, you can use a bonus action to send a telepathic message to a creature you are focused on. It can reply using a bonus action to do so while your focus on it continues.While focusing on a creature with Detect Thoughts, you can use an action to cast the @Compendium[dnd5e.spells.zMAWdyc8UVb37BK4]{Suggestion} spell (save DC 13) from the helm on that creature. Once used, the Suggestion property can't be used again until the next dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":12000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"flat"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233534,"modifiedTime":1671220958880,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ER75WHewYN04Zp11","name":"Belt of Hill Giant Strength","type":"equipment","img":"icons/equipment/waist/belt-buckle-square-leather-brown.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this belt, your Strength score changes to 21. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[{"label":"Belt of Hill Giant Strength","icon":"icons/equipment/waist/belt-buckle-square-leather-brown.webp","origin":"Compendium.dnd5e.items.ER75WHewYN04Zp11","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"wz6bugCbOYcTBUMg","changes":[{"key":"system.abilities.str.value","mode":4,"value":"21"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233535,"modifiedTime":1690480497698,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ET8Oo5vaTZqyb7rN","name":"Breastplate +2","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":20,"price":{"value":6400,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"breastplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233535,"modifiedTime":1690538962130,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"EU78dSbnr91QWZ7g","name":"Halberd +3","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +3","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"halberd","properties":{"hvy":true,"two":true,"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233536,"modifiedTime":1671220958892,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"EWdfUQriSabqDESm","name":"Dart +2","type":"weapon","img":"icons/weapons/ammunition/arrows-war-red.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.25,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"dart","properties":{"fin":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233536,"modifiedTime":1671220958896,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"EkTpM4Wbsrdqflzl","name":"Trident +2","type":"weapon","img":"icons/skills/melee/spear-tips-triple-orange.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +2","piercing"]],"versatile":"1d8 + @mod +2"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"trident","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233537,"modifiedTime":1671220958910,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ElLfmohtIFMagr5f","name":"Ring of Animal Influence","type":"equipment","img":"icons/equipment/finger/ring-cabochon-gold-orange.webp","system":{"description":{"value":"This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 of its charges to cast one of the following spells:\n\n@Compendium[dnd5e.spells.hDOENzjuj5WpLq7B]{Animal Friendship} (save DC 13)\n@Compendium[dnd5e.spells.XXUDGFELgoskdOD0]{Fear} (save DC 13), targeting only beasts that have an Intelligence of 3 or lower\n@Compendium[dnd5e.spells.aL1F8fvYLtNzUbKu]{Speak with Animals}\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233537,"modifiedTime":1671220958915,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"EveBprZPBjfZqXLt","name":"Maul +1","type":"weapon","img":"icons/weapons/maces/mace-spiked-wood-grey.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod +1","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"maul","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233538,"modifiedTime":1671220958919,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"EwG1EtmbgR3bM68U","name":"Lyre","type":"tool","img":"icons/tools/instruments/lute-gold-brown.webp","system":{"description":{"value":"A lyre to evoke awe, wonder, or fear in your audience.\nIf you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":30,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"music","baseItem":"lyre","ability":"cha","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233538,"modifiedTime":1671220958925,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"F0Df164Xv1gWcYt0","name":"Warhammer","type":"weapon","img":"icons/weapons/hammers/hammer-drilling-spiked.webp","system":{"description":{"value":"A heavy metal hammer capable of being wielded with a single hand with a shield or in two hands to deliver crushing concussive blows.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","bludgeoning"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"warhammer","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233539,"modifiedTime":1671220958929,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"F3rQcaZvElNEiudk","name":"Giant Slayer Handaxe","type":"weapon","img":"icons/weapons/axes/axe-broad-black.webp","system":{"description":{"value":"You gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":7000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","slashing"]],"versatile":""},"formula":"2d6","save":{"ability":"str","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"handaxe","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233540,"modifiedTime":1671220958933,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"F65ANO66ckP8FDMa","name":"Trident","type":"weapon","img":"icons/skills/melee/spear-tips-triple-orange.webp","system":{"description":{"value":"A multi-pronged spear designed to impale a target in multiple locations, pinning them in place. Often used in combination with a net to entrap and harass foes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"trident","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233540,"modifiedTime":1671220958937,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"F6GwSqjErX1u35Re","name":"Bell","type":"loot","img":"icons/tools/instruments/bell-brass-brown.webp","system":{"description":{"value":"A small bell for you to ring.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233541,"modifiedTime":1671220958942,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"F6v3Q7dz1SlpLTMf","name":"Staff of Thunder and Lightning","type":"weapon","img":"icons/weapons/staves/staff-ornate-engraved-blue.webp","system":{"description":{"value":"(Requires attunement)\nThis staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. It also has the following additional properties. When one of these properties is used, it can't be used again until the next dawn.\nLightning. When you hit with a melee attack using the staff, you can cause the target to take an extra 2d6 lightning damage.\nThunder. When you hit with a melee attack using the staff, you can cause the staff to emit a crack of thunder, audible out to 300 feet. The target you hit must succeed on a DC 17 Constitution saving throw or become stunned until the end of your next turn.\nLightning Strike. You can use an action to cause a bolt of lightning to leap from the staff's tip in a line that is 5 feet wide and 120 feet long. Each creature in that line must make a DC 17 Dexterity saving throw, taking 9d6 lightning damage on a failed save, or half as much damage on a successful one.\nThunderclap. You can use an action to cause the staff to issue a deafening thunderclap, audible out to 600 feet. Each creature within 60 feet of you (not including you) must make a DC 17 Constitution saving throw. On a failed save, a creature takes 2d6 thunder damage and becomes deafened for 1 minute. On a successful save, a creature takes half damage and isn't deafened.\nThunder and Lightning. You can use an action to use the Lightning Strike and Thunderclap properties at the same time. Doing so doesn't expend the daily use of those properties, only the use of this one.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":10000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +2","bludgeoning"]],"versatile":"1d8 + @mod +2"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233541,"modifiedTime":1671220958947,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"F8QpasPjLrw2POzE","name":"Bag of Beans","type":"consumable","img":"icons/containers/bags/coinpouch-simple-leather-tan.webp","system":{"description":{"value":"Inside this heavy cloth bag are [[/r 3d4]] dry beans. The bag weighs 1/2 pound plus 1/4 pound for each bean it contains.\nIf you dump the bag's contents out on the ground, they explode in a 10-foot radius, extending from the beans. Each creature in the area, including you, must make a DC 15 Dexterity saving throw, taking [[/r 5d4]] fire damage on a failed save, or half as much damage on a successful one. The fire ignites flammable objects in the area that aren't being worn or carried.\nIf you remove a bean from the bag, plant it in dirt or sand, and then water it, the bean produces an effect 1 minute later from the ground where it was planted. The GM can choose an effect from the @Compendium[dnd5e.tables.4ryVFV5LPHPzRKxl]{Bag of Beans} table, determine it randomly, or create an effect.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3.5,"price":{"value":3000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":12,"max":"12","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d4","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233542,"modifiedTime":1671220958951,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FCxG64QUxsnF4Lis","name":"Holy Avenger Greatsword","type":"weapon","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"(Requires attunement by a paladin)\nYou gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":165000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod + 3","slashing"]],"versatile":""},"formula":"2d10","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233543,"modifiedTime":1671220958955,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FF1ktpb2YSiyv896","name":"Wooden Staff","type":"weapon","img":"icons/weapons/staves/staff-simple-spiral-green.webp","system":{"description":{"value":"A gnarled or naturely smooth staff of wood drawn out from a living tree, those who heed nature's call can use this to harness the incredible power of nature.\nSpellcasting Focus. A druidic focus is a special item designed to channel the power of spells from the druid's spell list. A druid can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"foc":true,"amm":false,"hvy":false,"fin":false,"fir":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233543,"modifiedTime":1671220958959,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FHUDEygUW7EWCDgA","name":"Vicious Scimitar","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"This curved blade is wide near the wrapped handle but arcs and tapers towards a gleaming tip.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233544,"modifiedTime":1671220958963,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FIDyR0kZnxGy7bj8","name":"Oil of Slipperiness","type":"consumable","img":"icons/consumables/potions/bottle-circular-corked-labeled-green.webp","system":{"description":{"value":"This sticky black unguent is thick and heavy in the container, but it flows quickly when poured. \nThe oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of a @Compendium[dnd5e.spells.da0a1t2FqaTjRZGT]{Freedom of Movement} spell for 8 hours.\nAlternatively, the oil can be poured on the ground as an action, where it covers a 10‑foot square, duplicating the effect of the @Compendium[dnd5e.spells.etgcR9wqmrhyZ0tx]{Grease} spell in that area for 8 hours.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":480,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233544,"modifiedTime":1671220958969,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FLoBS3UnFnZTSsSx","name":"Chain Shirt +2","type":"equipment","img":"icons/equipment/chest/breastplate-scale-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":20,"price":{"value":6050,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainshirt","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233546,"modifiedTime":1690538783831,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FZixEM5voQkH84xP","name":"Studded Leather Armor +2","type":"equipment","img":"icons/equipment/chest/breastplate-rivited-red.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":13,"price":{"value":6045,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"studded","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233547,"modifiedTime":1671220958977,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Fc6UfFNOnW80XMzi","name":"Antitoxin","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-pink.webp","system":{"description":{"value":"A creature that drinks this vial of liquid gains advantage on saving throws against poison for 1 hour. It confers no benefit to undead or constructs.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233547,"modifiedTime":1671220958995,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FeouSUPUlUhfgeRp","name":"Staff of Charming","type":"weapon","img":"icons/weapons/staves/staff-simple-green.webp","system":{"description":{"value":"(Requires attunement by a bard, cleric, druid, sorcerer, warlock, or wizard)While holding this staff, you can use an action to expend 1 of its 10 charges to cast @UUID[Compendium.dnd5e.spells.eS7XnnApoxRxYXPs]{Charm Person}, @UUID[Compendium.dnd5e.spells.arzCrMRgcNiQuh43]{Command}, or @UUID[Compendium.dnd5e.spells.4dSvfvTy2ZIJ3K4k]{Comprehend Languages} from it using your spell save DC. The staff can also be used as a magic quarterstaff.If you are holding the staff and fail a saving throw against an enchantment spell that targets only you, you can turn your failed save into a successful one. You can't use this property of the staff again until the next dawn. If you succeed on a save against an enchantment spell that targets only you, with or without the staff's intervention, you can use your reaction to expend 1 charge from the staff and turn the spell back on its caster as if you had cast the spell.The staff regains 1d8 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":12000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":10,"max":"10","per":"charges","recovery":"1d8 + 2"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true,"ada":false,"sil":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233548,"modifiedTime":1671220959000,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Fgkj11diTJJ7H3JC","name":"Feather Token Whip","type":"consumable","img":"icons/commodities/materials/feather-colored-blue.webp","system":{"description":{"value":"Wondrous item\nThis tiny object looks like a feather. Different types of feather tokens exist, each with a different single-use effect. The GM chooses the kind of token or determines it randomly from the @Compendium[dnd5e.tables.OEdr086W61t1DRJo]{Feather Token} table.\nWhip. You can use an action to throw the token to a point within 10 feet of you. The token disappears, and a floating whip takes its place. You can then use a bonus action to make a melee spell attack against a creature within 10 feet of the whip, with an attack bonus of +9. On a hit, the target takes 1d6 + 5 force damage.\nAs a bonus action on your turn, you can direct the whip to fly up to 20 feet and repeat the attack against a creature within 10 feet of it. The whip disappears after 1 hour, when you use an action to dismiss it, or when you are incapacitated or die.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":250,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"A bonus action is used to control the whip."},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"space"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"9","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + 5","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233548,"modifiedTime":1671220959038,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FhtjbeBeP4q5vTyc","name":"Javelin +3","type":"weapon","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"javelin","properties":{"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233550,"modifiedTime":1671220959044,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Fk78kNmp3OLX5EMC","name":"Vicious Heavy Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-blue.webp","system":{"description":{"value":"A large crossbow mounted on a sturdy block of wood which is loaded using a hand crank and fires thick steel bolts with deadly acceleration that punches through armor and flesh.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":18,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":100,"long":400,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"heavycrossbow","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233550,"modifiedTime":1671220959049,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FkDyLSpiynKTQZdi","name":"Wings of Flying","type":"equipment","img":"icons/equipment/back/cloak-heavy-fur-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this cloak, you can use an action to speak its command word. This turns the cloak into a pair of bat wings or bird wings on your back for 1 hour or until you repeat the command word as an action. The wings give you a flying speed of 60 feet. When they disappear, you can't use them again for 1d12 hours.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233551,"modifiedTime":1671220959053,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FpLaviCom3XR1ckP","name":"Vicious Greatsword","type":"weapon","img":"icons/weapons/swords/greatsword-guard-gem-blue.webp","system":{"description":{"value":"A mighty two-handed blade is over four feet long an almost five inches wide. This weapon requires extensive martial training but those proficient in its use are formidable warriors.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233551,"modifiedTime":1671220959058,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FvNOwWbh5FXyX4xe","name":"Alchemist's Fire","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-yellow.webp","system":{"description":{"value":"This sticky, adhesive fluid ignites when exposed to air. As an action, you can throw this flask up to 20 feet, shattering it on impact. Make a ranged attack against a creature or object, treating the alchemist's fire as an improvised weapon. On a hit, the target takes 1d4 fire damage at the start of each of its turns. A creature can end this damage by using its action to make a DC 10 Dexterity check to extinguish the flames.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"improvised weapon","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":10,"scaling":"flat"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233552,"modifiedTime":1671220959064,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"G3cqbejJpfB91VhP","name":"Shawm","type":"tool","img":"icons/tools/instruments/lute-gold-brown.webp","system":{"description":{"value":"A shawm to evoke awe, wonder, or fear in your audience.\nIf you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"music","baseItem":"shawm","ability":"cha","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233552,"modifiedTime":1671220959072,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"G5m5gYIx9VAUWC3J","name":"Pan Flute","type":"tool","img":"icons/tools/instruments/flute-simple-wood.webp","system":{"description":{"value":"A set of panpipes to evoke awe, wonder, or fear in your audience.\nIf you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":12,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"music","baseItem":"flute","ability":"cha","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233553,"modifiedTime":1671220959076,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"G7LqGzKR5ts0WlJ9","name":"Hourglass","type":"loot","img":"icons/tools/navigation/hourglass-grey.webp","system":{"description":{"value":"It is a device used to measure the psaage of time. It comprises two glass bulbs connected vertically by a narrow neck that allows a regulated trickle of sand from the upper bulb to the lower one.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233553,"modifiedTime":1671220959079,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"G9XQPNLlDXkpVxn1","name":"Padded Armor +2","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":8,"price":{"value":6005,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"padded","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233554,"modifiedTime":1671220959082,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"GJv6WkD7D2J6rP6M","name":"Shortbow","type":"weapon","img":"icons/weapons/bows/shortbow-recurve.webp","system":{"description":{"value":"This two handed bow is somewhat smaller than the traditional longbow variant, making it well suited for rapid attacks while on the move or mounted from horseback.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"shortbow","properties":{"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233554,"modifiedTime":1671220959086,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"GKQSxYvS3m9qKVac","name":"Mithral Splint Armor","type":"equipment","img":"icons/equipment/chest/breastplate-layered-steel.webp","system":{"description":{"value":"Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":60,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":17,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"splint","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233555,"modifiedTime":1671220959095,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"GP2bvHlxVi30OEmo","name":"Figurine of Wondrous Power (Marble Elephant)","type":"consumable","img":"icons/commodities/bones/horn-simple-grey.webp","system":{"description":{"value":"Wondrous item\nA figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\nMarble Elephant. This marble statuette is about 4 inches high and long. It can become an @Compendium[dnd5e.monsters.jLPhaBnMtAbB5dp1]{Elephant} for up to 24 hours. Once it has been used, it can't be used again until 7 days have passed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":6000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233556,"modifiedTime":1671220959102,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"GcpXNc4dKUNw0Tk6","name":"Wand of Paralysis","type":"consumable","img":"icons/weapons/staves/staff-ornate-engraved-blue.webp","system":{"description":{"value":"(Requires attunement by a spellcaster)\nThis wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cause a thin blue ray to streak from the tip toward a creature you can see within 60 feet of you. The target must succeed on a DC 15 Constitution saving throw or be paralyzed for 1 minute. At the end of each of the target's turns, it can repeat the saving throw, ending the effect on itself on a success.\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":16000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":7,"max":"7","per":"charges","recovery":"1d6 + 1","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":"1d4 +1"},"formula":"1d6 +1","save":{"ability":"con","dc":15,"scaling":"flat"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233556,"modifiedTime":1671220959117,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Gflnp29aEv5Lc1ZM","name":"Cook's Utensils","type":"tool","img":"icons/tools/laboratory/bowl-mixing.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in cookery.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":8,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"cook","ability":"wis","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233557,"modifiedTime":1671220959120,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"GsuvwoekKZatfKwF","name":"Unarmed Strike","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"A punch, kick, head-butt, or similar forceful blow (none of which count as weapons). On a hit, an unarmed strike deals bludgeoning damage equal to 1 + your Strength modifier. You are proficient with your unarmed strikes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233557,"modifiedTime":1671220959127,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"GtKV1b5uqFQqpEni","name":"Padded Armor","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"Padded armor consists of quilted layers of cloth and batting. Padded armor offers a comparable level of protection as stiffened leather but is somewhat less encumbering to the wearer.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":8,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"padded","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233558,"modifiedTime":1671220959131,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"H6SIiRIig7OMM2Z0","name":"Longsword +3","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","slashing"]],"versatile":"1d10 + @mod +3"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233559,"modifiedTime":1671220959135,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"H8YCd689ezlD26aT","name":"Backpack","type":"backpack","img":"icons/containers/bags/pack-simple-leather.webp","system":{"description":{"value":"A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233559,"modifiedTime":1671220959140,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"HF32aZSVw4P0MR4K","name":"Chain Shirt Armor of Resistance","type":"equipment","img":"icons/equipment/chest/breastplate-scale-grey.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":20,"price":{"value":6050,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainshirt","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233560,"modifiedTime":1690538792957,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"HLEhnzLbpRbYdAHo","name":"Elemental Gem of Water","type":"consumable","img":"icons/commodities/gems/gem-rough-cushion-green.webp","system":{"description":{"value":"Wondrous item\nThis emerald contains a mote of elemental energy. When you use an action to break the gem, a @Compendium[dnd5e.monsters.namJz755U1EhvEJa]{Water Elemental} is summoned as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell, and the gem's magic is lost.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":960,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233560,"modifiedTime":1671220959148,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"HLhFCDGfI8EK7uV9","name":"Boots of Levitation","type":"equipment","img":"icons/equipment/feet/boots-collared-rounded-brown.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile you wear these boots, you can use an action to cast the @Compendium[dnd5e.spells.MRxldJd6C4bsBo3O]{Levitate} spell on yourself at will.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":4000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233561,"modifiedTime":1671220959152,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"HQJ8tiyyrJJSUSyF","name":"Blowgun +3","type":"weapon","img":"icons/weapons/staves/staff-simple-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":25,"long":100,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"blowgun","properties":{"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233561,"modifiedTime":1671220959157,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"HVpXIU0zZw0a4Fb7","name":"Mithral Plate Armor","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel.webp","system":{"description":{"value":"Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":65,"price":{"value":2300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233562,"modifiedTime":1690539432643,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"HY8duCwmvlXOruTG","name":"Potion of Diminution","type":"consumable","img":"icons/consumables/potions/potion-tube-corked-glowing-red.webp","system":{"description":{"value":"The red in the potion's liquid continuously contracts to a tiny bead and then expands to color the clear liquid around it. Shaking the bottle fails to interrupt this process.\nWhen you drink this potion, you gain the \"reduce\" effect of the @Compendium[dnd5e.spells.WahI41a3goVUg0x1]{Enlarge/Reduce} spell for 1d4 hours (no concentration required). \n \n \n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":270,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233562,"modifiedTime":1671220959176,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"HZp69hhyNZUUCipF","name":"Glass Bottle","type":"backpack","img":"icons/consumables/potions/bottle-bulb-empty-glass.webp","system":{"description":{"value":"A bottle holds 1½ pints of liquid.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":6,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233563,"modifiedTime":1671220959190,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"HZsvDPmvysQKGzGy","name":"Steel Mirror","type":"loot","img":"icons/sundries/survival/mirror-plain.webp","system":{"description":{"value":"A mirror made of steel.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.5,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233563,"modifiedTime":1671220959196,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"HdC66U61pDOknaux","name":"Club +3","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +3","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"club","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233564,"modifiedTime":1671220959203,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"HeDP6dL9daVT3uj2","name":"Spear +2","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +2","piercing"]],"versatile":"1d8 + @mod +2"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"spear","properties":{"thr":true,"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233564,"modifiedTime":1671220959219,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"HnIERWmmra74hSCw","name":"Ring of Water Elemental Command","type":"equipment","img":"icons/equipment/finger/ring-cabochon-gold-purple.webp","system":{"description":{"value":"(Requires attunement)\nThis ring is linked to the Elemental Plane of Water.\nWhile wearing this ring, you have advantage on attack rolls against @Compendium[dnd5e.monsters.namJz755U1EhvEJa]{Water Elemental}s, and they have disadvantage on attack rolls against you. In addition, you have access to properties based on the linked plane.\nThe ring has 5 charges. It regains 1d4 + 1 expended charges daily at dawn. Spells cast from the ring have a save DC of 17.\nRing of Water Elemental Command. You can expend 2 of the ring's charges to cast @Compendium[dnd5e.spells.eEpy1ONlXumKS1mp]{Dominate Monster} on a Water Elemental. In addition, you can stand on and walk across liquid surfaces as if they were solid ground. You can also speak and understand Aquan.\nIf you help slay a Water Elemental while attuned to the ring, you gain access to the following additional properties:\n\nYou can breathe underwater and have a swimming speed equal to your walking speed.\nYou can cast the following spells from the ring, expending the necessary number of charges: @Compendium[dnd5e.spells.a3XtAO5n2GrqiAh5]{Create or Destroy Water} (1 charge), @Compendium[dnd5e.spells.7fFHlBk3UNX8gPKL]{Control Water} (3 charges), @Compendium[dnd5e.spells.WN2LWEljYU6QqnRH]{Ice Storm} (2 charges), or @Compendium[dnd5e.spells.fzZnVKLmBMo2f5up]{Wall of Ice} (3 charges).\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":25000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":5,"max":"5","per":"charges","recovery":"1d4 + 1"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233565,"modifiedTime":1671220959233,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"HnJqfKkYXIWo2sp9","name":"Vicious Warhammer","type":"weapon","img":"icons/weapons/hammers/hammer-drilling-spiked.webp","system":{"description":{"value":"A heavy metal hammer capable of being wielded with a single hand with a shield or in two hands to deliver crushing concussive blows.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d8 + @mod","bludgeoning"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"warhammer","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233566,"modifiedTime":1671220959244,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"HokQ1loVJTFxt27u","name":"Vorpal Longsword","type":"weapon","img":"icons/skills/melee/strike-sword-steel-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":24000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","slashing"]],"versatile":"1d10 + @mod +3"},"formula":"6d8","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233567,"modifiedTime":1671220959249,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"HpEEfZg9PRkXnMi4","name":"Splint Armor +1","type":"equipment","img":"icons/equipment/chest/breastplate-layered-steel.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":60,"price":{"value":1700,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"splint","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233568,"modifiedTime":1671220959253,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"I0WocDSuNpGJayPb","name":"Battleaxe","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-engraved-steel.webp","system":{"description":{"value":"A stout crescent blade mounted on a thick shaft wrapped in a sturdy grip. This axe is large enough to be wielded with two hands and is adorned with spikes upon the back-side of the blade and the top of the shaft.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"battleaxe","properties":{"ver":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233568,"modifiedTime":1671220959258,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"I5PWgE4IF40Iv9h4","name":"Giant Slayer Rapier","type":"weapon","img":"icons/weapons/swords/greatsword-flamberge.webp","system":{"description":{"value":"You gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":7000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","piercing"]],"versatile":""},"formula":"2d6","save":{"ability":"str","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233569,"modifiedTime":1671220959262,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"I7cOsXsklWkzouHA","name":"Vorpal Scimitar","type":"weapon","img":"icons/skills/melee/strike-sword-steel-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":24000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","slashing"]],"versatile":""},"formula":"6d8","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233570,"modifiedTime":1671220959267,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"IBhDAr7WkhWPYLVn","name":"Disguise Kit","type":"tool","img":"icons/equipment/back/cloak-hooded-blue.webp","system":{"description":{"value":"This pouch of cosmetics, hair dye, and small props lets you create disguises that change your physical appearance. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a visual disguise.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"disg","ability":"int","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233571,"modifiedTime":1671220959270,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"IGwDN9gtYxCrlrCr","name":"Elemental Gem of Earth","type":"consumable","img":"icons/commodities/gems/gem-faceted-octagon-yellow.webp","system":{"description":{"value":"Wondrous item\nThis yellow diamond contains a mote of elemental energy. When you use an action to break the gem, an @Compendium[dnd5e.monsters.sApYLZj9PTZ40wJr]{Earth Elemental} is summoned as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell, and the gem's magic is lost.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":960,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233571,"modifiedTime":1671220959274,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"IPkf0XNowClwXnjQ","name":"Longsword +1","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","slashing"]],"versatile":"1d10 + @mod +1"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233572,"modifiedTime":1671220959278,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"IY5PveXrF7VoFlWg","name":"Arrow +3","type":"consumable","img":"icons/weapons/ammunition/arrow-head-war.webp","system":{"description":{"value":"Ammunition used for bows of all varieties. It has been imbued with magic.\nYou have a bonus to attack and damage rolls made with this piece of magic ammunition. Once it hits a target, the ammunition is no longer magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.05,"price":{"value":400,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233572,"modifiedTime":1671220959282,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"IeM5Ha2cg0RA99q3","name":"Hide Armor +3","type":"equipment","img":"icons/equipment/chest/vest-cloth-tattered-tan.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":12,"price":{"value":24010,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"hide","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233573,"modifiedTime":1690538753935,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Ilyv71AeobM6AvIn","name":"Defender Scimitar","type":"weapon","img":"icons/weapons/polearms/spear-flared-silver-pink.webp","system":{"description":{"value":"(Requires attunement)You gain a +3 bonus to attack and damage rolls made with this magic weapon.The first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.Foundry NoteThe sword's bonus to attack and damage rolls have been included; please remember to manually subtract should the user transfer any of the bonus to their AC.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":24000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233574,"modifiedTime":1671220959300,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"IpBBqr0r7JanyVn0","name":"Ring of Thunder Resistance","type":"equipment","img":"icons/equipment/finger/ring-faceted-silver-orange.webp","system":{"description":{"value":"(Requires attunement)\nThis ring has been inlaid with a spinel stone that gleams when it catches the light.\nYou have resistance to thunder damage while wearing this ring.\nFor other rings of resistance, roll on the @Compendium[dnd5e.tables.MdTxWyYVhTIgtNcG]{Ring of Resistance} table","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233574,"modifiedTime":1671220959313,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"IrC5LPbWNxlAQoK7","name":"Ring of Radiant Resistance","type":"equipment","img":"icons/equipment/finger/ring-inlay-red.webp","system":{"description":{"value":"(Requires attunement)\nThis ring has been inlaid with a topaz stone that shimmers when it catches the light.\nYou have resistance to radiant damage while wearing this ring.\nFor other rings of resistance, roll on the @Compendium[dnd5e.tables.MdTxWyYVhTIgtNcG]{Ring of Resistance} table","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233575,"modifiedTime":1671220959318,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ItoGjtOtDOQ2noNM","name":"Crystal Ball","type":"consumable","img":"icons/commodities/gems/pearl-natural.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThe typical Crystal Ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the @Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying} spell (save DC 17) with it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":50000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233575,"modifiedTime":1671220959323,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"IuVaBrq17AqxpXc4","name":"Wand of the War Mage +3","type":"equipment","img":"icons/weapons/staves/staff-engraved-red.webp","system":{"description":{"value":"(Requires attunement by a spellcaster)\nWhile holding this wand, you gain a bonus to spell attack rolls of +3. In addition, you ignore half cover when making a spell attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":19200,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233576,"modifiedTime":1671220959328,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"J8gQdJJi5e8LmD7H","name":"Rope of Entanglement","type":"consumable","img":"icons/magic/nature/root-vine-thorned-coil-green.webp","system":{"description":{"value":"Wondrous item\nThis rope is 30 feet long and weighs 3 pounds. If you hold one end of the rope and use an action to speak its command word, the other end darts forward to entangle a creature you can see within 20 feet of you. The target must succeed on a DC 15 Dexterity saving throw or become restrained.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233577,"modifiedTime":1671220959332,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"JDTO996oInbiZGHW","name":"Breastplate +3","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":20,"price":{"value":24400,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":17,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"breastplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233577,"modifiedTime":1690538965498,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"JFiSlgcm3uSSBM5t","name":"Potion of Supreme Healing","type":"consumable","img":"icons/consumables/potions/potion-flask-stopped-red.webp","system":{"description":{"value":"The potion's red liquid glimmers when agitated.\nYou regain 10d4+20 hit points when you drink this potion.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":1350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d4 + 20","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233578,"modifiedTime":1671220959341,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"JNkjtTxYmEC7W34O","name":"Splint Armor of Resistance","type":"equipment","img":"icons/equipment/chest/breastplate-layered-steel.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":60,"price":{"value":6200,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":17,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"splint","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233578,"modifiedTime":1671220959355,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"JRJpKZyamkpa7awv","name":"Robe of Scintillating Colors","type":"equipment","img":"icons/magic/lightning/orb-ball-purple.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThis robe has 3 charges, and it regains 1d3 expended charges daily at dawn. While you wear it, you can use an action and expend 1 charge to cause the garment to display a shifting pattern of dazzling hues until the end of your next turn. During this time, the robe sheds bright light in a 30-foot radius and dim light for an additional 30 feet. Creatures that can see you have disadvantage on attack rolls against you. In addition, any creature in the bright light that can see you when the robe's power is activated must succeed on a DC 15 Wisdom saving throw or become stunned until the effect ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":30,"long":60,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d3","save":{"ability":"wis","dc":15,"scaling":"flat"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233579,"modifiedTime":1671220959366,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Jj4iFQQGvckx8Wsj","name":"Potion of Fire Resistance","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-glowing-red.webp","system":{"description":{"value":"The potion is a plain indescriminate color and smells slightly foul.\nWhen you drink this potion, you gain resistance to Fire type damage for 1 hour.\nFor other potions of resistance, roll on the @Compendium[dnd5e.tables.JzLOE4IxcmxjLLuz]{Potion of Resistance} table.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233579,"modifiedTime":1671220959375,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"JpwuGtFkfrGibQpP","name":"Greatsword of Wounding","type":"weapon","img":"icons/magic/water/heart-ice-freeze.webp","system":{"description":{"value":"(Requires attunement)\nHit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"1d4","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233580,"modifiedTime":1671220959380,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Jvf1NWFxcjfHnMQ5","name":"Cloak of Elvenkind","type":"equipment","img":"icons/equipment/back/cloak-heavy-fur-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile you wear this cloak with its hood up, Wisdom (Perception) checks made to see you have disadvantage, and you have advantage on Dexterity (Stealth) checks made to hide, as the cloak's color shifts to camouflage you. Pulling the hood up or down requires an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Hood must be up."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"5","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233580,"modifiedTime":1671220959392,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"JvoufrTkSDMsS9Sm","name":"Chain (10 feet)","type":"consumable","img":"icons/tools/fasteners/chain-steel-grey.webp","system":{"description":{"value":"A chain has 10 hit points. It can be burst with a successful DC 20 Strength check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":20,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233581,"modifiedTime":1671220959397,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"JyYwliYiWEw2g0yJ","name":"Ring of Feather Falling","type":"equipment","img":"icons/equipment/finger/ring-cabochon-silver-gold-red.webp","system":{"description":{"value":"(Requires attunement)\nWhen you fall while wearing this ring, you descend 60 feet per round and take no damage from falling.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233582,"modifiedTime":1671220959917,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"K7h4LT03SNt2807z","name":"Vicious Hand Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"A lightweight crossbow designed to be held in one hand or strapped to one's wrist to fire light bolts.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"handcrossbow","properties":{"amm":true,"lgt":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233583,"modifiedTime":1671220959940,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KA2P6I48iOWlnboO","name":"Wand","type":"weapon","img":"icons/weapons/staves/staff-simple-green.webp","system":{"description":{"value":"A single-handed delicate implement of wood, bone, crystal, or other exotic materials which is commonly used as a focus to assist with arcane spellcasting.\nSpellcasting Focus. An arcane focus is a special item designed to channel the power of arcane spells. A sorcerer, warlock, or wizard can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"foc":true,"amm":false,"hvy":false,"fin":false,"fir":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233610,"modifiedTime":1671220959947,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KJYqNZgdkRwPmPMl","name":"Rapier of Wounding","type":"weapon","img":"icons/magic/water/heart-ice-freeze.webp","system":{"description":{"value":"(Requires attunement)\nHit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"1d4","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233611,"modifiedTime":1671220959953,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Feed","type":"consumable","img":"icons/consumables/grains/sack-rice-open-brown.webp","system":{"description":{"value":"Standard feed suitable for a mount or other animal, often consisting of grains or hay.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"KJuLguMZCThrQOEx","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233611,"modifiedTime":1671220959958,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KKWBLKQIWHtcpymp","name":"Boots of Elvenkind","type":"equipment","img":"icons/equipment/feet/shoes-collared-leather-blue.webp","system":{"description":{"value":"Wondrous item\nWhile you wear these boots, your steps make no sound, regardless of the surface you are moving across. You also have advantage on Dexterity (Stealth) checks that rely on moving silently.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233612,"modifiedTime":1671220959973,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KhRhwADrTpol3yTx","name":"Ring Mail +3","type":"equipment","img":"icons/equipment/chest/breastplate-banded-simple-leather-brown.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":40,"price":{"value":24030,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":17,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"ringmail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233612,"modifiedTime":1690539379739,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KndVe2insuctjIaj","name":"Smith's Tools","type":"tool","img":"icons/skills/trades/smithing-tongs-metal-red.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in smithing.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":8,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"smith","ability":"str","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233613,"modifiedTime":1671220959984,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KvIlZssYEtQ4bvSE","name":"Warhammer +2","type":"weapon","img":"icons/weapons/hammers/hammer-drilling-spiked.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +2","bludgeoning"]],"versatile":"1d10 + @mod +2"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"warhammer","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233613,"modifiedTime":1671220959989,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"L4PxYPtYca283sju","name":"Scimitar of Wounding","type":"weapon","img":"icons/magic/water/heart-ice-freeze.webp","system":{"description":{"value":"(Requires attunement)\nHit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"1d4","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233614,"modifiedTime":1671220959995,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"L887NdWEP5NqHCrQ","name":"Potion of Greater Healing","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-glowing-red.webp","system":{"description":{"value":"The potion's red liquid glimmers when agitated.\nYou regain 4d4+4 hit points when you drink this potion.\n \n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":150,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d4 + 4","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233614,"modifiedTime":1671220960000,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"L9KBLub5vfb3mTDz","name":"Ring of Fire Elemental Command","type":"equipment","img":"icons/equipment/finger/ring-inlay-red.webp","system":{"description":{"value":"(Requires attunement)\nThis ring is linked to the Elemental Plane of Fire.\nWhile wearing this ring, you have advantage on attack rolls against @Compendium[dnd5e.monsters.8SMQl75HLjhuSeau]{Fire Elemental}s, and they have disadvantage on attack rolls against you. In addition, you have access to properties based on the linked plane.\nThe ring has 5 charges. It regains 1d4 + 1 expended charges daily at dawn. Spells cast from the ring have a save DC of 17.\nRing of Fire Elemental Command. You can expend 2 of the ring's charges to cast @Compendium[dnd5e.spells.eEpy1ONlXumKS1mp]{Dominate Monster} on a Fire Elemental. In addition, you have resistance to fire damage. You can also speak and understand Ignan.\nIf you help slay a Fire Elemental while attuned to the ring, you gain access to the following additional properties:\n\nYou are immune to fire damage.\nYou can cast the following spells from the ring, expending the necessary number of charges: @Compendium[dnd5e.spells.5SuJewoa1CRWaj1F]{Burning Hands} (1 charge), @Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball} (2 charges), or @Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire} (3 charges).\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":17000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":5,"max":"5","per":"charges","recovery":"1d4 + 1"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233615,"modifiedTime":1671220960009,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LBQWNqX6hZOKhQ8a","name":"Potion of Radiant Resistance","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-yellow.webp","system":{"description":{"value":"The potion is a plain indescriminate color and smells slightly foul.\nWhen you drink this potion, you gain resistance to Radiant type damage for 1 hour.\nFor other potions of resistance, roll on the @Compendium[dnd5e.tables.JzLOE4IxcmxjLLuz]{Potion of Resistance} table.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233615,"modifiedTime":1671220960020,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LBajgahniRJbAgDr","name":"Spellbook","type":"loot","img":"icons/sundries/books/book-embossed-jewel-gold-purple.webp","system":{"description":{"value":"Essential for wizards, a spellbook is a leather-bound tome with 100 blank vellum pages suitable for recording spells.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233616,"modifiedTime":1671220960025,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LC5LsQOPwoHQW9Mi","name":"Ring of Water Walking","type":"equipment","img":"icons/equipment/finger/ring-faceted-gold-purple.webp","system":{"description":{"value":"While wearing this ring, you can stand on and move across any liquid surface as if it were solid ground.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233616,"modifiedTime":1671220960030,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LDuqUcosOK8Bf76S","name":"Adamantine Splint Armor","type":"equipment","img":"icons/equipment/chest/breastplate-layered-steel.webp","system":{"description":{"value":"This armor is reinforced with adamantine, one of the hardest substances in existence.\nWhile you're wearing it, any critical hit against you becomes a normal hit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":60,"price":{"value":700,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":17,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"splint","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233617,"modifiedTime":1671220960041,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LEC1wkaAUnWzDPDD","name":"Javelin of Lightning","type":"weapon","img":"icons/magic/lightning/bolt-strike-blue.webp","system":{"description":{"value":"This javelin is a magic weapon. When you hurl it and speak its command word, it transforms into a bolt of lightning, forming a line 5 feet wide that extends out from you to a target within 120 feet. Each creature in the line excluding you and the target must make a DC 13 Dexterity saving throw, taking 4d6 lightning damage on a failed save, and half as much damage on a successful one. The lightning bolt turns back into a javelin when it reaches the target. Make a ranged weapon attack against the target. On a hit, the target takes damage from the javelin plus 4d6 lightning damage.\nThe javelin's property can't be used again until the next dawn. In the meantime, the javelin can still be used as a magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":120,"width":null,"units":"ft","type":"line"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"],["4d6","lightning"]],"versatile":""},"formula":"4d6","save":{"ability":"dex","dc":13,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"javelin","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233617,"modifiedTime":1671220960056,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LHaqMvrx3PfSzWMQ","name":"Bag of Tricks (Tan)","type":"consumable","img":"icons/containers/bags/sack-twisted-leather-red.webp","system":{"description":{"value":"Wondrous item\nThis ordinary bag, made from tan cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, fuzzy object. The bag weighs 1/2 pound.\nYou can use an action to pull the fuzzy object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling on the @Compendium[dnd5e.tables.5PTePCTxrk2fIrll]{Tan Bag of Tricks} table.\nThe creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature.\nOnce three fuzzy objects have been pulled from the bag, the bag can't be used again until the next dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.5,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"space"},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233618,"modifiedTime":1671220960062,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LZcpcR21nte4Yoe2","name":"Handaxe +2","type":"weapon","img":"icons/weapons/axes/axe-broad-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +2","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"handaxe","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233619,"modifiedTime":1671220960080,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LdAj2ES9EzfnWcA1","name":"Adamantine Scale Mail","type":"equipment","img":"icons/equipment/chest/breastplate-banded-steel.webp","system":{"description":{"value":"This armor is reinforced with adamantine, one of the hardest substances in existence.\nWhile you're wearing it, any critical hit against you becomes a normal hit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":45,"price":{"value":550,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"scalemail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233619,"modifiedTime":1690538814424,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LiOD83I4MIZlpoQQ","name":"Hunting Trap","type":"consumable","img":"icons/environment/traps/trap-jaw-steel.webp","system":{"description":{"value":"When you use your action to set it, this trap forms a saw-toothed steel ring that snaps shut when a creature steps on a pressure plate in the center. The trap is affixed by a heavy chain to an immobile object, such as a tree or a spike driven into the ground. A creature that steps on the plate must succeed on a DC 13 Dexterity saving throw or take 1d4 piercing damage and stop moving. Thereafter, until the creature breaks free of the trap, its movement is limited by the length of the chain (typically 3 feet long). A creature can use its action to make a DC 13 Strength check, freeing itself or another creature within its reach on a success. Each failed check deals 1 piercing damage to the trapped creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":25,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","piercing"]],"versatile":"1"},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233620,"modifiedTime":1671220960104,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LpD064ilKEeFzVI8","name":"Cloak of Displacement","type":"equipment","img":"icons/equipment/back/cloak-heavy-fur-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile you wear this cloak, it projects an illusion that makes you appear to be standing in a place near your actual location, causing any creature to have disadvantage on attack rolls against you. If you take damage, the property ceases to function until the start of your next turn.\nThis property is suppressed while you are incapacitated, restrained, or otherwise unable to move.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":60000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"5","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233620,"modifiedTime":1671220960109,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Lr8aRsnia8hftPAb","name":"Dagger +2","type":"weapon","img":"icons/weapons/daggers/dagger-jeweled-purple.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"dagger","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233621,"modifiedTime":1671220960124,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"M28HYDCueaK7J8u8","name":"Ring Mail +2","type":"equipment","img":"icons/equipment/chest/breastplate-banded-simple-leather-brown.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":40,"price":{"value":6030,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"ringmail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233621,"modifiedTime":1690539376292,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"M5APnDW8bKQb7fHI","name":"Shield of Missile Attraction","type":"equipment","img":"icons/equipment/shield/kite-decorative-steel-claws.webp","system":{"description":{"value":"(Requires attunement)\nWhile holding this shield, you have resistance to damage from ranged weapon attacks.\nCurse. This shield is cursed. Attuning to it curses you until you are targeted by the @Compendium[dnd5e.spells.XZhdgVK3cLoxNCQl]{Remove Curse} spell or similar magic. Removing the shield fails to end the curse on you. Whenever a ranged weapon attack is made against a target within 10 feet of you, the curse causes you to become the target instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":"Any ranged attack within 10 ft. of you causes you to be the target."},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233622,"modifiedTime":1690539785544,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"M5qkJ7erLqWYUHa0","name":"Figurine of Wondrous Power (Obsidian Steed)","type":"consumable","img":"icons/magic/light/beam-red-orange.webp","system":{"description":{"value":"Wondrous item\nA figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\nObsidian Steed. This polished obsidian horse can become a @Compendium[dnd5e.monsters.5SgVGhQBswgWRwsF]{Nightmare} for up to 24 hours. The nightmare fights only to defend itself. Once it has been used, it can't be used again until 5 days have passed.\nIf you have a good alignment, the figurine has a 10 percent chance each time you use it to ignore your orders, including a command to revert to figurine form. If you mount the nightmare while it is ignoring your orders, you and the nightmare are instantly transported to a random location on the plane of Hades, where the nightmare reverts to figurine form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":128000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233622,"modifiedTime":1671220960138,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"M8xM8BLK4tpUayEE","name":"Iron Pot","type":"backpack","img":"icons/tools/laboratory/cauldron-filled-gold.webp","system":{"description":{"value":"An iron pot holds 1 gallon of liquid.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":8.4,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233623,"modifiedTime":1671220960143,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MAwoj2suj6cvb9Ti","name":"Universal Solvent","type":"consumable","img":"icons/commodities/materials/liquid-purple.webp","system":{"description":{"value":"Wondrous item\nThis tube holds milky liquid with a strong alcohol smell. You can use an action to pour the contents of the tube onto a surface within reach. The liquid instantly dissolves up to 1 square foot of adhesive it touches, including Sovereign Glue.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"ft","type":"square"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233624,"modifiedTime":1671220960147,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MCMSZrhcD40oMJ9v","name":"Boots of Speed","type":"equipment","img":"icons/equipment/feet/boots-collared-simple-leather.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile you wear these boots, you can use a bonus action and click the boots' heels together. If you do, the boots double your walking speed, and any creature that makes an opportunity attack against you has disadvantage on the attack roll. If you click your heels together again, you end the effect.\nWhen the boots' property has been used for a total of 10 minutes, the magic ceases to function until you finish a long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":4000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"bonus","cost":1,"condition":"Click the heels together."},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233624,"modifiedTime":1671220960154,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MFd96UkSs5g9QO78","name":"Dragon Slayer Shortsword","type":"weapon","img":"icons/skills/melee/strike-axe-blood-red.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","piercing"]],"versatile":""},"formula":"3d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233625,"modifiedTime":1671220960159,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MLNzQUsVUi0PEV3i","name":"Efficient Quiver","type":"backpack","img":"icons/containers/ammunition/arrows-quiver-black.webp","system":{"description":{"value":"Wondrous item\nEach of the quiver's three compartments connects to an extradimensional space that allows the quiver to hold numerous items while never weighing more than 2 pounds.\nThe shortest compartment can hold up to sixty arrows, bolts, or similar objects. The midsize compartment holds up to eighteen javelins or similar objects. The longest compartment holds up to six long objects, such as bows, quarterstaffs, or spears.\nYou can draw any item the quiver contains as if doing so from a regular quiver or scabbard.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"capacity":{"type":"items","value":84,"weightless":true},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233625,"modifiedTime":1671220960175,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MOeFq5MLAQzVQC7z","name":"Staff of the Python","type":"weapon","img":"icons/weapons/staves/staff-simple-spiral-green.webp","system":{"description":{"value":"(Requires attunement by a cleric, druid, or warlock)\nYou can use an action to speak this staff's command word and throw the staff on the ground within 10 feet of you. The staff becomes a @Compendium[dnd5e.monsters.NpvwE1feOHyEqAbP]{Giant Constrictor Snake} under your control and acts on its own initiative count. By using a bonus action to speak the command word again, you return the staff to its normal form in a space formerly occupied by the snake.\nOn your turn, you can mentally command the snake if it is within 60 feet of you and you aren't incapacitated. You decide what action the snake takes and where it moves during its next turn, or you can issue it a general command, such as to attack your enemies or guard a location.\nIf the snake is reduced to 0 hit points, it dies and reverts to its staff form. The staff then shatters and is destroyed. If the snake reverts to staff form before losing all its hit points, it regains all of them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233626,"modifiedTime":1671220960180,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MSO3JxK8578xSh6x","name":"Chain Shirt +1","type":"equipment","img":"icons/equipment/chest/breastplate-scale-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":20,"price":{"value":1550,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainshirt","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233626,"modifiedTime":1690538780227,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Minr6xegwoHFvAjG","name":"Figurine of Wondrous Power (Golden Lions)","type":"consumable","img":"icons/commodities/claws/claw-bear-brown-grey.webp","system":{"description":{"value":"Wondrous item\nA figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\nGolden Lions. These gold statuettes of lions are always created in pairs. You can use one figurine or both simultaneously. Each can become a @Compendium[dnd5e.monsters.hjhERRzafCiFFVLA]{Lion} for up to 1 hour. Once a lion has been used, it can't be used again until 7 days have passed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":1200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":2,"max":"2","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233627,"modifiedTime":1671220960208,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Mj8fTo5VZKJJ7uMv","name":"Sling Bullet of Slaying","type":"consumable","img":"icons/skills/ranged/bullets-triple-ball-yellow.webp","system":{"description":{"value":"A Bullet of Slaying is a magic weapon meant to slay a particular kind of creature. Some are more focused than others; for example, there are both Bullets of Dragon Slaying and Bullets of Blue Dragon Slaying. If a creature belonging to the type, race, or group associated with a Bullet of Slaying takes damage from the bullet, the creature must make a DC 17 Constitution saving throw, taking an extra 6d10 bludgeoning damage on a failed save, or half as much extra damage on a successful one.\nOnce a Bullet of Slaying deals its extra damage to a creature, it becomes a nonmagical bullet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.075,"price":{"value":600,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"6d10","save":{"ability":"con","dc":17,"scaling":"flat"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233627,"modifiedTime":1671220960214,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MnX9soPEMNsCtpv7","name":"Hand Crossbow +1","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"handcrossbow","properties":{"amm":true,"lgt":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233628,"modifiedTime":1671220960228,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Mt2WB1W9nDWO4d16","name":"Glaive +2","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +2","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"glaive","properties":{"hvy":true,"two":true,"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233628,"modifiedTime":1671220960233,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Riding Saddle","type":"equipment","img":"icons/equipment/shoulder/pauldron-leather-molded.webp","system":{"description":{"value":"A type of seat that is fastened to a mount's back, designed to support the rider and affix part of the mount's tack such as stirrups. This type of saddle is suitable for riding mounts.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":25,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"N0in6FE8DQdZrHei","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233629,"modifiedTime":1671220960238,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"N8XNP3vjVZmM2r9S","name":"Blowgun +1","type":"weapon","img":"icons/weapons/staves/staff-simple-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":25,"long":100,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"blowgun","properties":{"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233629,"modifiedTime":1671220960250,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NG8BlE2nwYJxCjWO","name":"Animated Shield","type":"equipment","img":"icons/equipment/shield/heater-steel-sword-yellow-black.webp","system":{"description":{"value":"(Requires attunement)\nWhile holding this shield, you can speak its command word as a bonus action to cause it to animate. The shield leaps into the air and hovers in your space to protect you as if you were wielding it, leaving your hands free. The shield remains animated for 1 minute, until you use a bonus action to end this effect, or until you are incapacitated or die, at which point the shield falls to the ground or into your hand if you have one free.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"bonus","cost":1,"condition":"Command Word"},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233630,"modifiedTime":1671220960260,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NGVEouqK0I6J6jV5","name":"Ioun Stone of Absorption","type":"equipment","img":"icons/commodities/gems/gem-rough-ball-purple.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Absorption. While this pale lavender ellipsoid orbits your head, you can use your reaction to cancel a spell of 4th level or lower cast by a creature you can see and targeting only you.\nOnce the stone has canceled 20 levels of spells, it burns out and turns dull gray, losing its magic. If you are targeted by a spell whose level is higher than the number of spell levels the stone has left, the stone can't cancel it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":2400,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":20,"max":"20","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233630,"modifiedTime":1671220960278,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NM1dPyKwHw2DyUWA","name":"Ring Mail +1","type":"equipment","img":"icons/equipment/chest/breastplate-banded-simple-leather-brown.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":40,"price":{"value":1530,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"ringmail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233631,"modifiedTime":1690539372945,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NRj0lC3SM03s1YB3","name":"Belt of Cloud Giant Strength","type":"equipment","img":"icons/equipment/waist/belt-thick-gemmed-steel-grey.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this belt, your Strength score changes to 27. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":18000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[{"label":"Belt of Cloud Giant Strength","icon":"icons/equipment/waist/belt-thick-gemmed-steel-grey.webp","origin":"Compendium.dnd5e.items.NRj0lC3SM03s1YB3","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"iGbcuTRYb2okyQeS","changes":[{"key":"system.abilities.str.value","mode":4,"value":"27"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233631,"modifiedTime":1690480168162,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NYIib9KEYDUFe9GY","name":"Sling Bullet +1","type":"consumable","img":"icons/skills/ranged/bullets-triple-ball-yellow.webp","system":{"description":{"value":"A hardened pebble of stone, bone, or metal which can be flung at high velocity using a sling. It has been imbued with magic.\nYou have a bonus to attack and damage rolls made with this piece of magic ammunition. Once it hits a target, the ammunition is no longer magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.075,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233632,"modifiedTime":1671220960293,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Nd4r4hocpfu6fYDP","name":"Prayer Wheel","type":"loot","img":"icons/tools/instruments/drum-brown-red.webp","system":{"description":{"value":"An aid for the faithful, this cylinder can be turned on a spindle made of metal, wood, bone, stone, leather, or coarse cotton as the user follows mantra or cantation carved or inlaid upon it. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.5,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233632,"modifiedTime":1671220960300,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NgwrqNa6kkgoPW2Q","name":"Shield +1","type":"equipment","img":"icons/equipment/shield/round-wooden-boss-gold-brown.webp","system":{"description":{"value":"While holding this shield, you have a bonus to AC of +1. This bonus is in addition to the shield's normal bonus to AC.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":3,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233633,"modifiedTime":1690539669653,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NjTgPn2o0M1TGk93","name":"Feather Token Tree","type":"consumable","img":"icons/commodities/materials/feather-colored-green.webp","system":{"description":{"value":"Wondrous item\nThis tiny object looks like a feather. Different types of feather tokens exist, each with a different single-use effect. The GM chooses the kind of token or determines it randomly from the @Compendium[dnd5e.tables.OEdr086W61t1DRJo]{Feather Token} table.\nTree. You must be outdoors to use this token. You can use an action to touch it to an unoccupied space on the ground. The token disappears, and in its place a nonmagical oak tree springs into existence. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":250,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"space"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233634,"modifiedTime":1671220960312,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NmZMx2u6bHpRyGUa","name":"Frost Brand Longsword","type":"weapon","img":"icons/skills/melee/strike-weapon-polearm-ice-blue.webp","system":{"description":{"value":"(Requires attunement)\nWhen you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":2200,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"],["1d6","cold"]],"versatile":"1d10 + @mod + 1d6"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233634,"modifiedTime":1671220960317,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NrHboku9vJO5FGiY","name":"Morningstar +2","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"morningstar","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233635,"modifiedTime":1671220960327,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NtdDkjmpdIMiX7I2","name":"Dulcimer","type":"tool","img":"icons/tools/instruments/lute-gold-brown.webp","system":{"description":{"value":"A dulcimer to evoke awe, wonder, or fear in your audience.\nIf you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"music","baseItem":"dulcimer","ability":"cha","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233635,"modifiedTime":1671220960332,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"O4YbkJkLlnsgUszZ","name":"Spell Scroll 9th Level","type":"consumable","img":"icons/sundries/scrolls/scroll-runed-brown-purple.webp","system":{"description":{"value":"A spell scroll bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can read the scroll and cast its spell without providing any material components. Otherwise, the scroll is unintelligible. Casting the spell by reading the scroll requires the spell's normal casting time. Once the spell is cast, the words on the scroll fade, and it crumbles to dust. If the casting is interrupted, the scroll is not lost.\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 19 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity.\nSave DC: 19Attack Bonus: +11.\nA wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 19 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":5120,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":"Spell must be on the caster's spell list."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"11","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":19,"scaling":"flat"},"consumableType":"scroll"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233636,"modifiedTime":1671220960336,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"OG4nBBydvmfWYXIk","name":"Spear","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"A gleaming steel point mouted atop a stout wooden haft, the spear may be wielded in one hand or two and can puncture through the heaviest armor with deadly force.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"spear","properties":{"thr":true,"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233636,"modifiedTime":1671220960340,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"OPbdSlrhkUDNpgcS","name":"Wand of the War Mage +1","type":"equipment","img":"icons/weapons/staves/staff-engraved-red.webp","system":{"description":{"value":"(Requires attunement by a spellcaster)\nWhile holding this wand, you gain a bonus to spell attack rolls of +1. In addition, you ignore half cover when making a spell attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1200,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233637,"modifiedTime":1671220960346,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ORKf6RRcalrdD6Qp","name":"Belt of Frost Giant Strength","type":"equipment","img":"icons/equipment/waist/cloth-sash-purple.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this belt, your Strength score changes to 23. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\nThe Belt of Stone Giant Strength and the Belt of Frost Giant Strength look different, but they have the same effect.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[{"label":"Belt of Frost Giant Strength","icon":"icons/equipment/waist/cloth-sash-purple.webp","origin":"Compendium.dnd5e.items.ORKf6RRcalrdD6Qp","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"uTXTubfcSCEANSBh","changes":[{"key":"system.abilities.str.value","mode":4,"value":"23"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233637,"modifiedTime":1690480308813,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"OUGMoQYeJzxEcRvm","name":"Nine Lives Stealer Rapier","type":"weapon","img":"icons/weapons/swords/sword-broad-crystal-paired.webp","system":{"description":{"value":"(Requires attunement)You gain a +2 bonus to attack and damage rolls made with this magic weapon.The sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.Foundry NoteThe 9 charges reflect a fully charged blade. Please adjust accordingly as required.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Critical hit on a creature of 100 hit points or less. Undead and constructs are immune."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":9,"max":"9","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233638,"modifiedTime":1671220960355,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"OcjcplcUWH07Kn9k","name":"Brazier of Commanding Fire Elementals","type":"consumable","img":"icons/magic/fire/blast-jet-stream-splash.webp","system":{"description":{"value":"Wondrous item\nWhile a fire burns in this brazier, you can use an action to speak the brazier's command word and summon a @Compendium[dnd5e.monsters.8SMQl75HLjhuSeau]{Fire Elemental}, as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell. The brazier can't be used this way again until the next dawn.\nThe brazier weighs 5 pounds.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":8000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233638,"modifiedTime":1671220960359,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"OjkIqlW2UpgFcjZa","name":"Plate Armor","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel.webp","system":{"description":{"value":"Plate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":65,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233639,"modifiedTime":1690539455523,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"OojyyGfh91iViuMF","name":"Rod","type":"weapon","img":"icons/weapons/polearms/spear-hooked-blue.webp","system":{"description":{"value":"An intricately carved or shaped rod of bone, stone, metal, or more exotic materials. Such rods are used by spellcasters to focus their attention and arcane energy.\nSpellcasting Focus. An arcane focus is a special item designed to channel the power of arcane spells. A sorcerer, warlock, or wizard can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":true,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233639,"modifiedTime":1671220960379,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Or3kVfJ0Fbr33ARS","name":"Greatclub +2","type":"weapon","img":"icons/weapons/maces/mace-spiked-steel-grey.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +2","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"club","properties":{"two":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233640,"modifiedTime":1671220960384,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"OwqRt1pVLhdMQa0d","name":"Dwarven Plate","type":"equipment","img":"icons/equipment/chest/breastplate-layered-steel-green.webp","system":{"description":{"value":"While wearing this plate armor, you gain a +2 bonus to AC. In addition, if an effect moves you against your will along the ground, you can use your reaction to reduce the distance you are moved by up to 10 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":65,"price":{"value":9000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":20,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233641,"modifiedTime":1690539518215,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"P8f9o36qxagW2uRW","name":"Maul +3","type":"weapon","img":"icons/weapons/maces/mace-spiked-wood-grey.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod +3","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"maul","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233641,"modifiedTime":1671220960395,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"PAXfmZ2ErDlCVy0N","name":"Talisman of Ultimate Evil","type":"consumable","img":"icons/magic/death/skull-horned-goat-pentagram-red.webp","system":{"description":{"value":"Wondrous item, (requires attunement by a creature of evil alignment)\nThis item symbolizes unrepentant evil. A creature that is neither good nor evil in alignment takes 6d6 necrotic damage upon touching the talisman. A good creature takes 8d6 necrotic damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.\nIf you are an evil cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.\nThe talisman has 6 charges. If you are wearing or holding it, you can use an action to expend 1 charge from the talisman and choose one creature you can see on the ground within 120 feet of you. If the target is of good alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman dissolves into foul-smelling slime and is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":61440,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":6,"max":"6","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6","necrotic"]],"versatile":"8d6"},"formula":"","save":{"ability":"dex","dc":20,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233642,"modifiedTime":1671220960399,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"PAa2EG5kzmqxcp46","name":"Greataxe +3","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod +3","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greataxe","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233642,"modifiedTime":1671220960405,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"PGL6aaM0wE5h0VN5","name":"Totem","type":"weapon","img":"icons/equipment/neck/collar-carved-bone-teeth-ring.webp","system":{"description":{"value":"A totem incorporating feathers, fur, bones, and teeth from an animal sacred to the user. Those who heed nature's call are able to harness this to call forth the incredible power of nature.\nSpellcasting Focus. A druidic focus is a special item designed to channel the power of spells from the druid's spell list. A druid can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":true,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233643,"modifiedTime":1671220960410,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"PKpftwMAn88gfLi7","name":"Morningstar +1","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"morningstar","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233644,"modifiedTime":1671220960415,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Military Saddle","type":"equipment","img":"icons/equipment/shoulder/shoulderpad-leather-banded-ring.webp","system":{"description":{"value":"A type of seat that is fastened to a mount's back, designed to support the rider and affix part of the mount's tack such as stirrups.A military saddle braces the rider, helping you keep your seat on an active mount in battle. It gives you advantage on any check you make to remain mounted.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":30,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"PLkzJ310FzBnRrI5","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233644,"modifiedTime":1671220960420,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"PRhtLbRLb9LjHZG7","name":"Gloves of Swimming and Climbing","type":"equipment","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing these gloves, climbing and swimming don't cost you extra movement, and you gain a +5 bonus to Strength (Athletics) checks made to climb or swim.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233645,"modifiedTime":1671220960424,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"PUMfwyVUbtyxgYbD","name":"Leatherworker's Tools","type":"tool","img":"icons/commodities/leather/leather-buckle-steel-tan.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in leatherworking.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"leatherworker","ability":"int","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233645,"modifiedTime":1671220960427,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"PV0sn2Nlr8CNn4W9","name":"Magnifying Glass","type":"loot","img":"icons/tools/scribal/magnifying-glass.webp","system":{"description":{"value":"This lens allows a closer look at small objects. It is also useful as a substitute for flint and steel when starting fires. Lighting a fire with a magnifying glass requires light as bright as sunlight to focus, tinder to ignite, and about 5 minutes for the fire to ignite. A magnifying glass grants advantage on any ability check made to appraise or inspect an item that is small or highly detailed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":100,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233646,"modifiedTime":1671220960430,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"PanSr5EbqlfpSvwK","name":"Two-Person Tent","type":"loot","img":"icons/environment/wilderness/camp-improvised.webp","system":{"description":{"value":"A simple and portable canvas shelter, a tent sleeps two.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":20,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233646,"modifiedTime":1671220960433,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Q4Iy6hqREsbk9yG7","name":"Ioun Stone of Agility","type":"equipment","img":"icons/commodities/gems/gem-rough-cushion-red.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Agility. Your Dexterity score increases by 2, to a maximum of 20, while this deep red sphere orbits your head.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":3000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[{"label":"Ioun Stone of Agility","icon":"icons/commodities/gems/gem-rough-cushion-red.webp","origin":"Compendium.dnd5e.items.Q4Iy6hqREsbk9yG7","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"f4ScI5hFiyWF5heN","changes":[{"key":"system.abilities.dex.value","mode":2,"value":"+2"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233647,"modifiedTime":1690480723227,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Q4jmng3i9Lb2nL5F","name":"Manual of Quickness of Action","type":"consumable","img":"icons/sundries/books/book-symbol-triangle-silver-blue.webp","system":{"description":{"value":"Wondrous item\nThis book contains coordination and balance exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Dexterity score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":100000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"hour","cost":48,"condition":"The book must be completed in 6 days or less."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233647,"modifiedTime":1671220960441,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Q7E6MgPzVkwBeZ6l","name":"Ring of Psychic Resistance","type":"equipment","img":"icons/equipment/finger/ring-cabochon-notched-gold-green.webp","system":{"description":{"value":"(Requires attunement)\nThis ring has been inlaid with a jade stone that gleams when it catches the light.\nYou have resistance to psychic damage while wearing this ring.\nFor other rings of resistance, roll on the @Compendium[dnd5e.tables.MdTxWyYVhTIgtNcG]{Ring of Resistance} table","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233648,"modifiedTime":1671220960447,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"QB4CFMTLR6JlD7Kq","name":"Greatsword of Sharpness","type":"weapon","img":"icons/skills/wounds/bone-broken-knee-beam.webp","system":{"description":{"value":"(Requires attunement)\nWhen you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10-foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":1700,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":20,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"4d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233648,"modifiedTime":1671220960450,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"QKTyxoO0YDnAsbYe","name":"Whip","type":"weapon","img":"icons/weapons/misc/whip-red-yellow.webp","system":{"description":{"value":"A tensile lash made of leather, cord, or chain which can lash out at nearby enemies, dealing lacerations and harrying them from a distance.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"whip","properties":{"fin":true,"rch":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233649,"modifiedTime":1671220960457,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"QM3gdsL0eaAus7XT","name":"Vicious Handaxe","type":"weapon","img":"icons/weapons/axes/axe-broad-black.webp","system":{"description":{"value":"This one-handed axe is light and balanced for throwing while remaining useful in hand combat.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"handaxe","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233650,"modifiedTime":1671220960461,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"QRCsxkCwWNwswL9o","name":"Greatclub","type":"weapon","img":"icons/weapons/maces/mace-spiked-steel-grey.webp","system":{"description":{"value":"A larger variant of the simple club, a hefty wooden shaft with an enormous knot of wood upon the end deals crippling bludgeoning damage to unfortunate foes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"club","properties":{"two":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233650,"modifiedTime":1671220960467,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"QXmaarJ4X8P0C1HV","name":"Hempen Rope (50 ft.)","type":"consumable","img":"icons/sundries/survival/rope-wrapped-brown.webp","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233651,"modifiedTime":1671220960482,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"QYJyQCnIQeLiMrmJ","name":"Brass Horn of Valhalla","type":"consumable","img":"icons/tools/instruments/flute-simple-wood.webp","system":{"description":{"value":"Wondrous item\nYou can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a @Compendium[dnd5e.monsters.kz1t6xeXVwODpYb2]{Berserker}. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\nFour types of Horn of Valhalla are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly from the @Compendium[dnd5e.tables.RwerG95cIk2uRpsQ]{Horn of Valhalla} table.\nBrass Horn of Valhalla.This brass horn summons [[/r 3d4 + 3]] berserkers when blown and requires proficiency with all simple weapons to be used.\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":8400,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d4 +3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233651,"modifiedTime":1671220960487,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Qfi5Rsuun3reqYmf","name":"Handaxe +1","type":"weapon","img":"icons/weapons/axes/axe-broad-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"handaxe","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233652,"modifiedTime":1671220960494,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"QtmVEreNIWEVOoLR","name":"Ring of Protection","type":"equipment","img":"icons/equipment/finger/ring-cabochon-silver-gold-red.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to AC and saving throws while wearing this ring.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":3500,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[{"_id":"q1wbe9ru251bfnhg","changes":[{"key":"system.attributes.ac.bonus","mode":2,"value":"+1","priority":null},{"key":"system.bonuses.abilities.save","mode":2,"value":"+1","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/equipment/finger/ring-cabochon-silver-gold-red.webp","label":"Ring of Protection","origin":"Compendium.dnd5e.items.QtmVEreNIWEVOoLR","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233653,"modifiedTime":1690481162093,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"RDPFmUR9exTEXFc8","name":"Boots of the Winterlands","type":"equipment","img":"icons/equipment/feet/boots-leather-banded-furred.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThese furred boots are snug and feel quite warm. While you wear them, you gain the following benefits:\n\nYou have resistance to cold damage.\nYou ignore difficult terrain created by ice or snow. You can tolerate temperatures as low as −50 degrees Fahrenheit without any additional protection. If you wear heavy clothes, you can tolerate temperatures as low as −100 degrees Fahrenheit.\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":10000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[{"label":"Boots of the Winterlands","icon":"icons/equipment/feet/boots-leather-banded-furred.webp","origin":"Compendium.dnd5e.items.RDPFmUR9exTEXFc8","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"6PXhI0qCk64LuoXO","changes":[{"key":"system.traits.dr.value","mode":2,"value":"cold"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233655,"modifiedTime":1690480634095,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"REBWkTKe6lJaIkpn","name":"Soap","type":"loot","img":"icons/sundries/survival/soap.webp","system":{"description":{"value":"Used to clean and wash.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233655,"modifiedTime":1671220960511,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"RMi9efrW9ouHVLI2","name":"Book","type":"loot","img":"icons/sundries/books/book-worn-brown.webp","system":{"description":{"value":"A book might contain poetry, historical accounts, information pertaining to a particular field of lore, diagrams and notes on gnomish contraptions, or just about anything else that can be represented using text or pictures. A book of spells is a spellbook.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233655,"modifiedTime":1671220960514,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"RbC0UCqAnQcIPIXZ","name":"War Pick +2","type":"weapon","img":"icons/weapons/axes/pickaxe-double-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"warpick","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233656,"modifiedTime":1671220960518,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"RfEZvwcLwe6Ih0LQ","name":"Greatsword +3","type":"weapon","img":"icons/weapons/swords/greatsword-guard-gem-blue.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod +3","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233656,"modifiedTime":1671220960524,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"RiOeHR2qaYktz5Ys","name":"Iron Spike","type":"consumable","img":"icons/tools/fasteners/nails-steel-brown.webp","system":{"description":{"value":"A spike of 10 inches long made of iron. Can be improvised to block doors. Usually sold in bundles of 10.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.5,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233657,"modifiedTime":1671220960528,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"RmP0mYRn2J7K26rX","name":"Heavy Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-blue.webp","system":{"description":{"value":"A large crossbow mounted on a sturdy block of wood which is loaded using a hand crank and fires thick steel bolts with deadly acceleration that punches through armor and flesh.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":18,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":100,"long":400,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"heavycrossbow","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233658,"modifiedTime":1671220960532,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Rn9gt6JGULtx9Zvz","name":"Chain Mail +1","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":55,"price":{"value":1575,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":17,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainmail","speed":{"value":null,"conditions":""},"strength":13,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233658,"modifiedTime":1671220960535,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"RnuxdHUAIgxccVwj","name":"Lance","type":"weapon","img":"icons/weapons/ammunition/arrow-head-war-flight.webp","system":{"description":{"value":"A shining steel tip to puncture the hardiest of foe's defences, driven in by the force of a galloping steed. Although best suited for mounted combat, the lance can be brought to lethal effect on foot in the right hands.\nSpecial. You have disadvantage when you use a lance to attack a target within 5 feet of you. Also, a lance requires two hands to wield when you aren't mounted.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"lance","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":true,"thr":false,"two":false,"ver":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233659,"modifiedTime":1671220960539,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"S7AhpCPDBGUBbg7b","name":"Rapier +1","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"fin":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233659,"modifiedTime":1671220960546,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"S7TrIOlE600KIOUx","name":"Dragon Slayer Rapier","type":"weapon","img":"icons/skills/melee/strike-axe-blood-red.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","piercing"]],"versatile":""},"formula":"3d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233660,"modifiedTime":1671220960551,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SItCnYBqhzqBoaWG","name":"Crossbow Bolt","type":"consumable","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"This ammunition is used for all varieties of crossbow and is typically a short metal shaft with a narrow piercing tip.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.075,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233660,"modifiedTime":1671220960554,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SK2HATQ4abKUlV8i","name":"Breastplate","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel-grey.webp","system":{"description":{"value":"This armor consists of a fitted metal chest piece worn with supple leather. Although it leaves the legs and arms relatively unprotected, this armor provides good protection for the wearer's vital organs while leaving the wearer relatively unencumbered.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":20,"price":{"value":400,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"breastplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233661,"modifiedTime":1690538955372,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"STxsp9Ao3pS2T4gt","name":"Studded Leather Armor +1","type":"equipment","img":"icons/equipment/chest/breastplate-rivited-red.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":13,"price":{"value":1545,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"studded","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233662,"modifiedTime":1671220960561,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SXjs8JghAPBv7d6j","name":"Dragon Slayer Longsword","type":"weapon","img":"icons/skills/melee/strike-axe-blood-red.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","slashing"]],"versatile":"1d10 + @mod +1"},"formula":"3d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233663,"modifiedTime":1671220960579,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ScxK8YNU5dWELhlQ","name":"Ring of Force Resistance","type":"equipment","img":"icons/equipment/finger/ring-faceted-gold-purple.webp","system":{"description":{"value":"(Requires attunement)\nThis ring has been inlaid with a sapphire stone that sparkles when it catches the light.\nYou have resistance to force damage while wearing this ring.\nFor other rings of resistance, roll on the @Compendium[dnd5e.tables.MdTxWyYVhTIgtNcG]{Ring of Resistance} table","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233664,"modifiedTime":1671220960584,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Sj4zEvuGcSV6anKm","name":"Heavy Crossbow +3","type":"weapon","img":"icons/weapons/crossbows/crossbow-blue.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":18,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":100,"long":400,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"heavycrossbow","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233664,"modifiedTime":1671220960588,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SpbjbMMoJiva2zOa","name":"Shortsword of Wounding","type":"weapon","img":"icons/magic/water/heart-ice-freeze.webp","system":{"description":{"value":"(Requires attunement)\nHit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"1d4","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233665,"modifiedTime":1671220960595,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SqTtbBCfiEsmZ36N","name":"Bead of Force","type":"consumable","img":"icons/magic/water/orb-ice-opaque.webp","system":{"description":{"value":"Wondrous item\nThis small black sphere measures 3/4 of an inch in diameter and weighs an ounce. Typically, 1d4 + 4 Beads of Force are found together.\nYou can use an action to throw the bead up to 60 feet. The bead explodes on impact and is destroyed. Each creature within a 10-foot radius of where the bead landed must succeed on a DC 15 Dexterity saving throw or take 5d4 force damage. A sphere of transparent force then encloses the area for 1 minute. Any creature that failed the save and is completely within the area is trapped inside this sphere. Creatures that succeeded on the save, or are partially within the area, are pushed away from the center of the sphere until they are no longer inside it. Only breathable air can pass through the sphere's wall. No attack or other effect can.\nAn enclosed creature can use its action to push against the sphere's wall, moving the sphere up to half the creature's walking speed. The sphere can be picked up, and its magic causes it to weigh only 1 pound, regardless of the weight of creatures inside.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.06,"price":{"value":960,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"5d4","save":{"ability":"dex","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233665,"modifiedTime":1671220960599,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SsAmWV6YBqeOFihT","name":"Traveler's Clothes","type":"equipment","img":"icons/equipment/chest/shirt-collared-brown.webp","system":{"description":{"value":"A set of clothes worn by travellers.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233666,"modifiedTime":1671220960603,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SuQmsJfxyJl2hPcM","name":"Whetstone","type":"loot","img":"icons/commodities/stone/geode-raw-tan.webp","system":{"description":{"value":"Whetstone is a sharpening stone. It is used to sharpen the edges of steel tools and implements through grinding and honing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233667,"modifiedTime":1671220960610,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Sx5E6utixHdAbGNb","name":"Acid (vial)","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-green.webp","system":{"description":{"value":"As an action, you can splash the contents of this vial onto a creature within 5 feet of you or throw the vial up to 20 feet, shattering it on impact. In either case, make a ranged attack against a creature or object, treating the acid as an improvised weapon. On a hit, the target takes 2d6 acid damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"improvised weapon","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6+@mod","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233667,"modifiedTime":1671220960614,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SypSoinJkES0o5FB","name":"Glamoured Studded Leather","type":"equipment","img":"icons/equipment/chest/breastplate-rivited-red.webp","system":{"description":{"value":"While wearing this armor, you gain a +1 bonus to AC. You can also use a bonus action to speak the armor's command word and cause the armor to assume the appearance of a normal set of clothing or some other kind of armor. You decide what it looks like, including color, style, and accessories, but the armor retains its normal bulk and weight. The illusory appearance lasts until you use this property again or remove the armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":13,"price":{"value":2000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"bonus","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"studded","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233668,"modifiedTime":1671220960618,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SztwZhbhZeCqyAes","name":"Alchemist's Supplies","type":"tool","img":"icons/tools/cooking/mortar-herbs-yellow.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in alchemy.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":8,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"alchemist","ability":"int","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233668,"modifiedTime":1671220960623,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"TIV3B1vbrVHIhQAm","name":"Studded Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-rivited-red.webp","system":{"description":{"value":"Made from tough but flexible leather, studded leather is reinforced with close-set rivets or spikes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":13,"price":{"value":45,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"studded","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233668,"modifiedTime":1671220960626,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"TMqS62qjBCveT1Ss","name":"Vicious Trident","type":"weapon","img":"icons/skills/melee/spear-tips-triple-orange.webp","system":{"description":{"value":"A multi-pronged spear designed to impale a target in multiple locations, pinning them in place. Often used in combination with a net to entrap and harass foes.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"trident","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233669,"modifiedTime":1671220960630,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"TWFS1BtruQeE10BY","name":"Stone of Controlling Earth Elementals","type":"consumable","img":"icons/commodities/treasure/token-runed-os-grey.webp","system":{"description":{"value":"Wondrous item\nIf the stone is touching the ground, you can use an action to speak the stone's command word and summon an @Compendium[dnd5e.monsters.sApYLZj9PTZ40wJr]{Earth Elemental}, as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell. The stone can't be used this way again until the next dawn.\nThe stone weighs 5 pounds.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":8000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233670,"modifiedTime":1671220960633,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"TZggpdbOYqOCG7mY","name":"Alchemy Jug","type":"consumable","img":"icons/containers/kitchenware/jug-terracotta-orange.webp","system":{"description":{"value":"Wondrous item\n \nThis ceramic jug appears to be able to hold a gallon of liquid and weighs 12 pounds whether full or empty. Sloshing sounds can be heard from within the jug when it is shaken, even if the jug is empty.\n \nYou can use an action and name one liquid from the table below to cause the jug to produce the chosen liquid. Afterward, you can uncork the jug as an action and pour that liquid out, up to 2 gallons per minute. The maximum amount of liquid the jug can produce depends on the liquid you named. \n \nOnce the jug starts producing a liquid, it can't produce a different one, or more of one that has reached its maximum, until the next dawn. \n\n\n\n\nLiquid\nMax Amount\n\n\nAcid\n8 ounces\n\n\nBasic poison\n1/2 ounce\n\n\nBeer\n4 gallons\n\n\nHoney\n1 gallon\n\n\nMayonnaise\n2 gallons\n\n\nOil\n1 quart\n\n\nVinegar\n2 gallons\n\n\nWater, fresh\n8 gallons\n\n\nWater, salt\n12 gallons\n\n\nWine\n1 gallon\n\n\n\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":12,"price":{"value":6000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233671,"modifiedTime":1671220960642,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"TevMHicE3A70AlmP","name":"Potion of Frost Giant Strength","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-blue.webp","system":{"description":{"value":"This potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type.\nWhen you drink this potion, your Strength score changes to 23 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":1200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233671,"modifiedTime":1671220960649,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"TjWk2mpNXjDdfIDM","name":"Carpet of Flying (6x9)","type":"consumable","img":"icons/equipment/back/cloak-hooded-pink.webp","system":{"description":{"value":"Wondrous itemYou can speak the carpet's command word as an action to make the carpet hover and fly. It moves according to your spoken directions, provided that you are within 30 feet of it.This carpet is 6 ft. x 9 ft. and has a speed of 30 feet carrying up to 800 lb, or half that speed when carrying up to 1600 lb.\nFour sizes of carpet of flying exist. The GM chooses the size of a given carpet or determines it randomly from the @Compendium[dnd5e.tables.Z2OG7jt9R8zofxnJ]{Carpet of Flying} table.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":12000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233672,"modifiedTime":1671220960653,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Saddlebags","type":"backpack","img":"icons/containers/bags/pack-leather-black-brown.webp","system":{"description":{"value":"A set of containers that typically come as a pair, connected by a leather strap and affixed to the saddle of a mount.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":8,"price":{"value":4,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"TmfaFUSZJAotndn9","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233672,"modifiedTime":1671220960656,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Tobce1hexTnDk4sV","name":"Rapier","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"A thin tensile metal blade, light in weight but long in reach designed for quick darting attacks to target weak points in enemy defenses with lightning swiftness.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"fin":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233673,"modifiedTime":1671220960660,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"TqyvIglHDj5kfohR","name":"Piton","type":"consumable","img":"icons/tools/fasteners/nail-steel.webp","system":{"description":{"value":"A metal spike that is drive into a seam in a climbing surface with a climbing hammer. It can also be used like iron spikes to block doors in a pinch.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.25,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233674,"modifiedTime":1671220960664,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"TwYeck6buBZ602mg","name":"Crystal Ball of Mind Reading","type":"consumable","img":"icons/commodities/gems/pearl-storm.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThe Crystal Ball is about 6 inches in diameter. While touching it, you can cast the @Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying}spell (save DC 17) with it.\nYou can use an action to cast the @Compendium[dnd5e.spells.ppWAAEul0QHtm4er]{Detect Thoughts} spell (save DC 17) while you are Scrying with the Crystal Ball, targeting creatures you can see within 30 feet of the spell's sensor. You don't need to concentrate on this Detect Thoughts to maintain it during its duration, but it ends if Scrying ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":60000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233674,"modifiedTime":1671220960688,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"U4PI6l96QJUk6TGb","name":"Eyes of the Eagle","type":"equipment","img":"icons/magic/perception/hand-eye-pink.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThese crystal lenses fit over the eyes. While wearing them, you have advantage on Wisdom (Perception) checks that rely on sight. In conditions of clear visibility, you can make out details of even extremely distant creatures and objects as small as 2 feet across.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.01,"price":{"value":2500,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233675,"modifiedTime":1671220960694,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"U74TPNQLJZbHJyCk","name":"Robe of Eyes","type":"equipment","img":"icons/magic/perception/eye-tendrils-web-purple.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThis robe is adorned with eyelike patterns. While you wear the robe, you gain the following benefits:\n\nThe robe lets you see in all directions, and you have advantage on Wisdom (Perception) checks that rely on sight.\nYou have darkvision out to a range of 120 feet.\nYou can see invisible creatures and objects, as well as see into the Ethereal Plane, out to a range of 120 feet.\n\nThe eyes on the robe can't be closed or averted. Although you can close or avert your own eyes, you are never considered to be doing so while wearing this robe.\nA @Compendium[dnd5e.spells.Bnn9Nzajixvow9xi]{Light} spell cast on the robe or a @Compendium[dnd5e.spells.BP3GCwa66IAw1yTG]{Daylight} spell cast within 5 feet of the robe causes you to be blinded for 1 minute. At the end of each of your turns, you can make a Constitution saving throw (DC 11 for light or DC 15 for daylight), ending the blindness on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":30000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233675,"modifiedTime":1671220960698,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"UAXu4MNvAvaKz9JO","name":"Battleaxe +1","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-engraved-steel.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","slashing"]],"versatile":"1d10 + @mod +1"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"battleaxe","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233676,"modifiedTime":1671220960707,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ULL5nkyN3WzazI4l","name":"Holy Avenger Scimitar","type":"weapon","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"(Requires attunement by a paladin)\nYou gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":165000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod + 3","slashing"]],"versatile":""},"formula":"2d10","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233677,"modifiedTime":1671220960715,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"URun3vYrXKJJdAJe","name":"Staff of Striking","type":"weapon","img":"icons/weapons/staves/staff-simple-brown.webp","system":{"description":{"value":"(Requires attunement)This staff can be wielded as a magic quarterstaff that grants a +3 bonus to attack and damage rolls made with it.The staff has 10 charges. When you hit with a melee attack using it, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 force damage. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.Foundry NoteThe Other Formula button has been configured to roll 1d6. Use to calculate any additional force damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":21000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":10,"max":"10","per":"charges","recovery":"1d6 + 4"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod + 3","bludgeoning"]],"versatile":"1d8 + @mod + 3"},"formula":"1d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true,"ada":false,"sil":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233677,"modifiedTime":1671220960721,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"UT8zCwmdXVQlBiyl","name":"Leather Armor +2","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":6010,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"leather","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233678,"modifiedTime":1690538718437,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"UctSPehpKb4lJQGr","name":"Vicious Club","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"A stout knob of wood forms a simple, but effective, cudgel. These weapons are used to bludgeon foes, bruising flesh and breaking bones.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"club","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233678,"modifiedTime":1671220960732,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"UgnUJhu0tW1tLt7g","name":"Feather Token Swan Boat","type":"consumable","img":"icons/commodities/materials/feather-blue-grey.webp","system":{"description":{"value":"Wondrous item\nThis tiny object looks like a feather. Different types of feather tokens exist, each with a different single-use effect. The GM chooses the kind of token or determines it randomly from the @Compendium[dnd5e.tables.OEdr086W61t1DRJo]{Feather Token} table.\nSwan Boat. You can use an action to touch the token to a body of water at least 60 feet in diameter. The token disappears, and a 50-foot-long, 20-foot- wide boat shaped like a swan takes its place. The boat is self-propelled and moves across water at a speed of 6 miles per hour. You can use an action while on the boat to command it to move or to turn up to 90 degrees. The boat can carry up to thirty-two Medium or smaller creatures. A Large creature counts as four Medium creatures, while a Huge creature counts as nine. The boat remains for 24 hours and then disappears. You can dismiss the boat as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":3000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233679,"modifiedTime":1671220960736,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"UkWdyJYQTfVX2cJW","name":"Bullseye Lantern","type":"consumable","img":"icons/sundries/lights/lantern-iron-yellow.webp","system":{"description":{"value":"A bullseye lantern casts bright light in a 60-foot cone and dim light for an additional 60 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"6","units":"hour"},"cover":null,"target":{"value":120,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233679,"modifiedTime":1671220960742,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"UpHAWqwifZpiZzns","name":"Adamantine Ring Mail","type":"equipment","img":"icons/equipment/chest/breastplate-banded-simple-leather-brown.webp","system":{"description":{"value":"This armor is reinforced with adamantine, one of the hardest substances in existence.\nWhile you're wearing it, any critical hit against you becomes a normal hit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":40,"price":{"value":530,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"ringmail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233680,"modifiedTime":1690539362138,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"UrH3sMdnUDckIHJ6","name":"Flail","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"A set of chain-linked spiked balls lashed to a stout wooden shaft. The flail deals devastating damage when whirled in a deadly arc.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"flail","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233680,"modifiedTime":1671220961264,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Uv0ilmzbWvqmlCVH","name":"Waterskin","type":"consumable","img":"icons/sundries/survival/wetskin-leather-purple.webp","system":{"description":{"value":"A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233681,"modifiedTime":1671220961278,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"UxkP6FvDzPbsIY6o","name":"Manual of Golems","type":"consumable","img":"icons/sundries/books/book-symbol-triangle-silver-blue.webp","system":{"description":{"value":"Wondrous item\nThis tome contains information and incantations necessary to make a particular type of golem. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.htMPUPPABjI6fwck]{Manual of Golems} table. Refer to the table below for a detailed description on each golem. To decipher and use the manual, you must be a spellcaster with at least two 5th-level spell slots. A creature that can't use a Manual of Golems and attempts to read it takes 6d6 psychic damage.\n\n\n\nd20\nGolem\nTime\nCost\n\n\n\n\n1-5\n@Compendium[dnd5e.monsters.YOqhbf8WsX0jH9Fu]{Clay Golem}\n30 days\n65,000 gp\n\n\n6-17\n@Compendium[dnd5e.monsters.Hm4o2FgPZsdbXjLq]{Flesh Golem}\n60 days\n50,000 gp\n\n\n18\n@Compendium[dnd5e.monsters.h98AuPfomEPcCibP]{Iron Golem}\n120 days\n100,000 gp\n\n\n19-20\n@Compendium[dnd5e.monsters.z3gSIXHHWYaHjfBT]{Stone Golem}\n90 days\n80,000 gp\n\n\n\nTo create a golem, you must spend the time shown on the table, working without interruption with the manual at hand and resting no more than 8 hours per day. You must also pay the specified cost to purchase supplies.\nOnce you finish creating the golem, the book is consumed in eldritch flames. The golem becomes animate when the ashes of the manual are sprinkled on it. It is under your control, and it understands and obeys your spoken commands.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":35000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6","psychic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233681,"modifiedTime":1671220961288,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"V13fjV5oSmvbRdgP","name":"Mess Kit","type":"loot","img":"icons/tools/cooking/fork-steel-tan.webp","system":{"description":{"value":"This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233682,"modifiedTime":1671220961300,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"V5UAjT3ed6sDNtgm","name":"Crowbar","type":"loot","img":"icons/tools/hand/pickaxe-steel-white.webp","system":{"description":{"value":"Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233682,"modifiedTime":1671220961307,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VGtyTdVLoWls8FL5","name":"Scimitar +1","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233683,"modifiedTime":1671220961312,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VHYy3ZsJNPUo1SIx","name":"Scimitar +2","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +2","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233684,"modifiedTime":1671220961343,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VQ6NWjWV37wiB29O","name":"Wand of Secrets","type":"consumable","img":"icons/weapons/staves/staff-simple-spiral-green.webp","system":{"description":{"value":"The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges, and if a secret door or trap is within 30 feet of you, the wand pulses and points at the one nearest to you. The wand regains 1d3 expended charges daily at dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":30,"width":null,"units":"","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":"1d4 +1"},"formula":"1d3","save":{"ability":"","dc":null,"scaling":"flat"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233684,"modifiedTime":1671220961349,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VQAUcjn1qdwW3MeU","name":"Vicious Light Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"A small crossbow with a wooden haft and a tense cord which is capable of firing a single bolt which can puncture even heavy armor at close range.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"lightcrossbow","properties":{"lgt":false,"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233685,"modifiedTime":1671220961353,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VRT5GEusTFstOZdF","name":"Hide Armor of Resistance","type":"equipment","img":"icons/equipment/chest/vest-cloth-tattered-tan.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":12,"price":{"value":6010,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"hide","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233685,"modifiedTime":1690538757312,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VTc5McIjCm40KPIz","name":"Plate Armor +2","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":65,"price":{"value":7500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":20,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233686,"modifiedTime":1690539448688,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Vm6SuX6TkDvSIVGr","name":"Vicious Morningstar","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"A viciously spiked metal orb mounted upon the end of a stout haft makes for a deadly weapon which can puncture armor and flesh alike.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"morningstar","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233686,"modifiedTime":1671220961383,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VmcgAIsRCyrjBguC","name":"Restorative Ointment","type":"consumable","img":"icons/commodities/materials/liquid-orange.webp","system":{"description":{"value":"Wondrous itemThis glass jar, 3 inches in diameter, contains 1d4 + 1 doses of a thick mixture that smells faintly of aloe. The jar and its contents weigh 1/2 pound.As an action, one dose of the ointment can be swallowed or applied to the skin. The creature that receives it regains 2d8 + 2 hit points, ceases to be poisoned, and is cured of any disease.Foundry NoteThe 5 charges reflect the maximum number of doses possible. Similarly, the guide price of 600 gp is calculated at 120 gp per dose. Adjust both as required.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.5,"price":{"value":600,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"The ointment needs to be swallowed or applied to the skin."},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":5,"max":"5","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 +2","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233687,"modifiedTime":1671220961389,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VwJjuNbBf2KHMPrY","name":"Cloak of Arachnida","type":"equipment","img":"icons/equipment/back/cloak-heavy-fur-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThis fine garment is made of black silk interwoven with faint silvery threads. While wearing it, you gain the following benefits:\n\nYou have resistance to poison damage.\nYou have a climbing speed equal to your walking speed.\nYou can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free.\nYou can't be caught in webs of any sort and can move through webs as if they were difficult terrain.\nYou can use an action to cast the @Compendium[dnd5e.spells.UJJu9c2UvCzVljiP]{Web} spell (save DC 13). The web created by the spell fills twice its normal area. Once used, this property of the cloak can't be used again until the next dawn.\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":40,"width":null,"units":"ft","type":"cube"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"5","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233687,"modifiedTime":1671220961395,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"W1kDsFekjroIywuz","name":"Studded Leather Armor of Resistance","type":"equipment","img":"icons/equipment/chest/breastplate-rivited-red.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":13,"price":{"value":6045,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"studded","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233688,"modifiedTime":1671220961403,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WCafDVKITxwnlf2x","name":"Spyglass","type":"loot","img":"icons/tools/navigation/spyglass-telescope-brass.webp","system":{"description":{"value":"Objects viewed through a spyglass are magnified to twice their size.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233688,"modifiedTime":1671220961409,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WFQS2vT8ddrFjTJg","name":"Parchment","type":"loot","img":"icons/sundries/scrolls/scroll-plain-tan.webp","system":{"description":{"value":"A single sheet of heavier parchment paper.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233688,"modifiedTime":1671220961427,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WLVQJVpCWiPkCAtZ","name":"Staff of Healing","type":"weapon","img":"icons/weapons/staves/staff-simple-green.webp","system":{"description":{"value":"(Requires attunement by a bard, cleric, or druid)This staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability modifier: @Compendium[dnd5e.spells.uUWb1wZgtMou0TVP]{Cure Wounds} (1 charge per spell level, up to 4th), @Compendium[dnd5e.spells.F0GsG0SJzsIOacwV]{Lesser Restoration} (2 charges), or @Compendium[dnd5e.spells.Pyzmm8R7rVsNAPsd]{Mass Cure Wounds} (5 charges).The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff vanishes in a flash of light, lost forever.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":13000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":10,"max":"10","per":"charges","recovery":"1d6 + 4"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233689,"modifiedTime":1671220961432,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WNdN2mBF3O7ZNcMp","name":"Spear +1","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","piercing"]],"versatile":"1d8 + @mod +1"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"spear","properties":{"thr":true,"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233689,"modifiedTime":1671220961439,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WO8DLfz3G2QZ5njs","name":"Ring of Acid Resistance","type":"equipment","img":"icons/equipment/finger/ring-band-engraved-scrolls-silver.webp","system":{"description":{"value":"(Requires attunement)\nThis ring has been inlaid with a pearl that shimmers when it catches the light.\nYou have resistance to acid damage while wearing this ring.\nFor other rings of resistance, roll on the @Compendium[dnd5e.tables.MdTxWyYVhTIgtNcG]{Ring of Resistance} table","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233690,"modifiedTime":1671220961446,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WPWszFTGzmdIuDRJ","name":"Flask of Holy Water","type":"consumable","img":"icons/consumables/potions/bottle-round-empty-glass.webp","system":{"description":{"value":"As an action, you can splash the contents of this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact. In either case, make a ranged Attack against a target creature, treating the holy water as an Improvised Weapon. If the target is a fiend or Undead, it takes 2d6 radiant damage. A Cleric or Paladin may create holy water by performing a Special ritual. The ritual takes 1 hour to perform, uses 25 gp worth of powdered silver, and requires the caster to expend a 1st-level spell slot.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":"Target must be a fiend or undead."},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":20,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233691,"modifiedTime":1671220961451,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WWb4vAmh18sMAxfY","name":"Flame Tongue Greatsword","type":"weapon","img":"icons/magic/fire/projectile-bolt-zigzag-orange.webp","system":{"description":{"value":"(Requires attunement)\nYou can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"2d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233691,"modifiedTime":1671220961455,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WfqBg3yBNoJQtVEB","name":"Shield +3","type":"equipment","img":"icons/equipment/shield/heater-embossed-gold.webp","system":{"description":{"value":"While holding this shield, you have a bonus to AC of +3. This bonus is in addition to the shield's normal bonus to AC.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":24000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":5,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233692,"modifiedTime":1690539777633,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Wk7EOYoY3b2tgGoS","name":"Deck of Illusions","type":"consumable","img":"icons/sundries/misc/admission-ticket-grey.webp","system":{"description":{"value":"Wondrous item\nThis box contains a set of parchment cards. A full deck has 34 cards. A deck found as treasure is usually missing 1d20 − 1 cards.The magic of the deck functions only if cards are drawn at random (you can use an altered deck of playing cards to simulate the deck). You can use an action to draw a card at random from the deck and throw it to the ground at a point within 30 feet of you.\nAn illusion of one or more creatures forms over the thrown card and remains until dispelled. An illusory creature appears real, of the appropriate size, and behaves as if it were a real creature except that it can do no harm. While you are within 120 feet of the illusory creature and can see it, you can use an action to move it magically anywhere within 30 feet of its card. Any physical interaction with the illusory creature reveals it to be an illusion, because objects pass through it. Someone who uses an action to visually inspect the creature identifies it as illusory with a successful DC 15 Intelligence (Investigation) check. The creature then appears translucent.\nThe illusion lasts until its card is moved or the illusion is dispelled. When the illusion ends, the image on its card disappears, and that card can't be used again.\n\n\n\nPlaying Card\nIllusion\n\n\nAce of hearts\n@Compendium[dnd5e.monsters.ZyIBOoZZD0nDaO2s]{Adult Red Dragon}\n\n\nKing of hearts\n@Compendium[dnd5e.monsters.D5UqYD1EnTrJaMTO]{Knight} and four @Compendium[dnd5e.monsters.E9CvDPDg5dFEpVjS]{Guard}s\n\n\nQueen of hearts\nSuccubus or Incubus\n\n\nJack of hearts\n@Compendium[dnd5e.monsters.K15Yl8JmB5iPircc]{Druid}\n\n\nTen of hearts\n@Compendium[dnd5e.monsters.Aw2wmqGIatxe2ImI]{Cloud Giant}\n\n\nNine of hearts\n@Compendium[dnd5e.monsters.KLCkHep28HBfdsky]{Ettin}\n\n\nEight of hearts\n@Compendium[dnd5e.monsters.QtJairF0h18BRhEM]{Bugbear}\n\n\nTwo of hearts\n@Compendium[dnd5e.monsters.TjWQOgI3A4UAl7lC]{Goblin}\n\n\nAce of diamonds\nBeholder\n\n\nKing of diamonds\n@Compendium[dnd5e.monsters.B7lBOr1AahNZs4a6]{Archmage} and Mage Apprentice\n\n\nQueen of diamonds\n@Compendium[dnd5e.monsters.xvh2UOKv1bh03Gih]{Night Hag}\n\n\nJack of Diamonds\n@Compendium[dnd5e.monsters.EMvcuOpu7ABCmBWi]{Assassin}\n\n\nTen of diamonds\n@Compendium[dnd5e.monsters.45Z5kogZEhawX1Ey]{Fire Giant}\n\n\nNine of diamonds\nOgre Mage\n\n\nEight of diamonds\n@Compendium[dnd5e.monsters.R2GPY9BhRmmwZwkh]{Gnoll}\n\n\nTwo of diamonds\n@Compendium[dnd5e.monsters.5ngbctIMeEnuC1p1]{Kobold}\n\n\nAce of spades\n@Compendium[dnd5e.monsters.bfh29vIEoGzI240e]{Lich}\n\n\nKing of spades\n@Compendium[dnd5e.monsters.PVD5wRdyO7iCJPs1]{Priest} and two @Compendium[dnd5e.monsters.CHEUjiYrVM9X0vIT]{Acolyte}s\n\n\nJack of spades\n@Compendium[dnd5e.monsters.J8xjoG4Dxb8WkHtV]{Veteran}\n\n\nTen of spades\n@Compendium[dnd5e.monsters.Buxe6dDK5Mw7kxe6]{Frost Giant}\n\n\nNine of spades\n@Compendium[dnd5e.monsters.ZHAFrnCwCz17dmLc]{Troll}\n\n\nEight of spades\n@Compendium[dnd5e.monsters.6qnT52lZtZblgGw8]{Hobgoblin}\n\n\nTwo of spades\n@Compendium[dnd5e.monsters.TjWQOgI3A4UAl7lC]{Goblin}\n\n\nAce of clubs\n@Compendium[dnd5e.monsters.h98AuPfomEPcCibP]{Iron Golem}\n\n\nKing of clubs\n@Compendium[dnd5e.monsters.rb7OJt822wIO52qY]{Bandit Captain} and three @Compendium[dnd5e.monsters.n4TEv7inVUkyZviN]{Bandit}s\n\n\nQueen of clubs\n@Compendium[dnd5e.monsters.3o2rQBqpzjIHmrBW]{Erinyes}\n\n\nJack of clubs\n@Compendium[dnd5e.monsters.kz1t6xeXVwODpYb2]{Berserker}\n\n\nTen of clubs\n@Compendium[dnd5e.monsters.9g4N9sjyh8Ql46to]{Hill Giant}\n\n\nNine of clubs\n@Compendium[dnd5e.monsters.eIGowKTkEBC9gUzx]{Ogre}\n\n\nEight of clubs\n@Compendium[dnd5e.monsters.HB49mCOVBXwWeKWQ]{Orc}\n\n\nTwo of clubs\n@Compendium[dnd5e.monsters.5ngbctIMeEnuC1p1]{Kobold}\n\n\nJoker (2)\nYou (the deck's owner)\n\n\n\n \n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":6120,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":36,"max":"36","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"int","dc":15,"scaling":"flat"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233692,"modifiedTime":1671220961473,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WlPzuxaVnYzxzDEC","name":"Whip +2","type":"weapon","img":"icons/weapons/misc/whip-red-yellow.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +2","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"whip","properties":{"fin":true,"rch":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233693,"modifiedTime":1671220961481,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WnKWD1FuAFUE7f4v","name":"Tome of Understanding","type":"consumable","img":"icons/sundries/books/book-black-grey.webp","system":{"description":{"value":"Wondrous item\nThis book contains intuition and insight exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Wisdom score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":100000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"hour","cost":48,"condition":"The book must be completed in 6 days or less."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233693,"modifiedTime":1671220961486,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Wo2Dkh191C4VmLmg","name":"Ring Mail Armor of Resistance","type":"equipment","img":"icons/equipment/chest/breastplate-banded-simple-leather-brown.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":40,"price":{"value":6030,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"ringmail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233694,"modifiedTime":1690539382855,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Wv7HzD6dv1P0q78N","name":"Basket","type":"backpack","img":"icons/environment/traps/cage-simple-wood.webp","system":{"description":{"value":"A basket holds 2 cubic feet or 40 pounds of gear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":4,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":40,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233694,"modifiedTime":1671220961495,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WwdpHLXGX5r8uZu5","name":"Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"leather","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233695,"modifiedTime":1690538710143,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"X5knPtrQAT8GePJ4","name":"Miner's Pick","type":"loot","img":"icons/tools/hand/pickaxe-steel-white.webp","system":{"description":{"value":"It is a hand tool with a hard head atached perpendiocular to the handle.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233696,"modifiedTime":1671220961503,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"X6PHssSGnwiJRgcx","name":"Luck Blade Longsword","type":"weapon","img":"icons/magic/light/projectile-beam-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\nLuck. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\nWish. The sword has 1d4 – 1 charges. While holding it, you can use an action to expend 1 charge and cast the @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":210000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod +1","slashing"]],"versatile":"1d10 + @mod +1"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233697,"modifiedTime":1671220961507,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Carpet of Flying (5x7)","type":"consumable","img":"icons/equipment/back/cloak-hooded-pink.webp","system":{"description":{"value":"Wondrous itemYou can speak the carpet's command word as an action to make the carpet hover and fly. It moves according to your spoken directions, provided that you are within 30 feet of it.This carpet is 5 ft. x 7 ft. and has a speed of 40 feet carrying up to 600 lb, or half that speed when carrying up to 1200 lb.\nFour sizes of carpet of flying exist. The GM chooses the size of a given carpet or determines it randomly from the @Compendium[dnd5e.tables.Z2OG7jt9R8zofxnJ]{Carpet of Flying} table.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":12000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"flags":{},"_id":"XAr1SR4POx5BAArk","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233672,"modifiedTime":1671220961531,"lastModifiedBy":"dnd5ebuilder0000"},"folder":null,"sort":0,"ownership":{"default":0}} +{"_id":"XEH5YErAN1WSytln","name":"Figurine of Wondrous Power (Serpentine Owl)","type":"consumable","img":"icons/commodities/materials/feather-white.webp","system":{"description":{"value":"Wondrous item\nA figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\nSerpentine Owl. This serpentine statuette of an owl can become a @Compendium[dnd5e.monsters.VVXly3ue0i3YgGrB]{Giant Owl} for up to 8 hours. Once it has been used, it can't be used again until 2 days have passed. The owl can telepathically communicate with you at any range if you and it are on the same plane of existence.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":8000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233697,"modifiedTime":1671220961537,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XGAWqtmhK6SYBL6A","name":"Goggles of Night","type":"equipment","img":"icons/magic/control/hypnosis-mesmerism-eye.webp","system":{"description":{"value":"Wondrous item\nWhile wearing these dark lenses, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing the goggles increases its range by 60 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.3,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233698,"modifiedTime":1671220961546,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XIpJkxbySJxm6hoU","name":"Light Hammer +2","type":"weapon","img":"icons/weapons/hammers/hammer-war-spiked.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +2","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"lighthammer","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233698,"modifiedTime":1671220961551,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XJ8CG4UvLELCmOi2","name":"Ring of Lightning Resistance","type":"equipment","img":"icons/equipment/finger/ring-cabochon-gold-orange.webp","system":{"description":{"value":"(Requires attunement)\nThis ring has been inlaid with a citrine stone that glints when it catches the light.\nYou have resistance to lightning damage while wearing this ring.\nFor other rings of resistance, roll on the @Compendium[dnd5e.tables.MdTxWyYVhTIgtNcG]{Ring of Resistance} table","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233699,"modifiedTime":1671220961555,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XJFqU9COdk4ycFa2","name":"Hide Armor +2","type":"equipment","img":"icons/equipment/chest/vest-cloth-tattered-tan.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":12,"price":{"value":6010,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"hide","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233699,"modifiedTime":1690538750463,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XKnDE8DTrJxIkVCF","name":"Padded Armor +3","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":8,"price":{"value":24005,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"padded","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233700,"modifiedTime":1671220961566,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XVK6TOL4sGItssAE","name":"Light Hammer","type":"weapon","img":"icons/weapons/hammers/hammer-war-spiked.webp","system":{"description":{"value":"This sturdy hammer is small enough to be nimbly wielded or used in combination with another weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"lighthammer","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233700,"modifiedTime":1671220961570,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XXLznzi3rlanMhTM","name":"Crossbow Bolt +3","type":"consumable","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"This ammunition is used for all varieties of crossbow and is typically a short metal shaft with a narrow piercing tip. It has been imbued with magic.\nYou have a bonus to attack and damage rolls made with this piece of magic ammunition. Once it hits a target, the ammunition is no longer magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.075,"price":{"value":400,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233701,"modifiedTime":1671220961574,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XZWHQ20ynJBK6xmU","name":"Ring of Air Elemental Command","type":"equipment","img":"icons/equipment/finger/ring-cabochon-silver-gold-red.webp","system":{"description":{"value":"(Requires attunement)\nThis ring is linked to the Elemental Plane of Air.\nWhile wearing this ring, you have advantage on attack rolls against @Compendium[dnd5e.monsters.banHjKDMCegbUwYE]{Air Elemental}s, and they have disadvantage on attack rolls against you. In addition, you have access to properties based on the linked plane.\nThe ring has 5 charges. It regains 1d4 + 1 expended charges daily at dawn. Spells cast from the ring have a save DC of 17.\nRing of Air Elemental Command. You can expend 2 of the ring's charges to cast @Compendium[dnd5e.spells.eEpy1ONlXumKS1mp]{Dominate Monster} on an Air Elemental. In addition, when you fall, you descend 60 feet per round and take no damage from falling. You can also speak and understand Auran.\nIf you help slay an Air Elemental while attuned to the ring, you gain access to the following additional properties:\n\nYou have resistance to lightning damage.\nYou have a flying speed equal to your walking speed and can hover.\nYou can cast the following spells from the ring, expending the necessary number of charges: @Compendium[dnd5e.spells.QbTxN5dWIbYZ4jLU]{Chain Lightning} (3 charges), @Compendium[dnd5e.spells.FSMy6VAjDnXY9vWz]{Gust of Wind} (2 charges), or @Compendium[dnd5e.spells.ew6GA8dJy2spQmFW]{Wind Wall} (1 charge).\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":35000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":5,"max":"5","per":"charges","recovery":"1d4 + 1"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233701,"modifiedTime":1671220961582,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Xbq8CyXSRV358SfP","name":"Oil of Etherealness","type":"consumable","img":"icons/consumables/potions/bottle-conical-corked-labeled-shell-cyan.webp","system":{"description":{"value":"Beads of this cloudy gray oil form on the outside of its container and quickly evaporate. \nThe oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of the @Compendium[dnd5e.spells.PQuEgKyCdovOvhqN]{Etherealness} spell for 1 hour.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":1920,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Medium or smaller creature. Takes 10 minutes to apply."},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233702,"modifiedTime":1671220961587,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XdDp6CKh9qEvPTuS","name":"Spell Scroll 2nd Level","type":"consumable","img":"icons/sundries/scrolls/scroll-bound-gold-brown.webp","system":{"description":{"value":"A spell scroll bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can read the scroll and cast its spell without providing any material components. Otherwise, the scroll is unintelligible. Casting the spell by reading the scroll requires the spell's normal casting time. Once the spell is cast, the words on the scroll fade, and it crumbles to dust. If the casting is interrupted, the scroll is not lost.\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 12 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity.\nSave DC: 13Attack Bonus: +5.\nA wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 12 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":120,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Spell must be on the caster's spell list."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"5","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":13,"scaling":"flat"},"consumableType":"scroll"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233703,"modifiedTime":1671220961592,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XmnlF5fgIO3tg6TG","name":"Scale Mail","type":"equipment","img":"icons/equipment/chest/breastplate-banded-steel.webp","system":{"description":{"value":"This armor consists of a coat and leggings (and perhaps a separate skirt) of leather covered with overlapping pieces of metal, much like the scales of a fish. The suit includes gauntlets.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":45,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"scalemail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233703,"modifiedTime":1690538860575,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Carpet of Flying (3x5)","type":"consumable","img":"icons/equipment/back/cloak-hooded-pink.webp","system":{"description":{"value":"Wondrous itemYou can speak the carpet's command word as an action to make the carpet hover and fly. It moves according to your spoken directions, provided that you are within 30 feet of it.This carpet is 3 ft. x 5 ft. and has a speed of 80 feet carrying up to 200 lb, or half that speed when carrying up to 400 lb.\nFour sizes of carpet of flying exist. The GM chooses the size of a given carpet or determines it randomly from the @Compendium[dnd5e.tables.Z2OG7jt9R8zofxnJ]{Carpet of Flying} table.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":12000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"flags":{},"_id":"XwqNHyox5OQQio8q","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233672,"modifiedTime":1671220961601,"lastModifiedBy":"dnd5ebuilder0000"},"folder":null,"sort":0,"ownership":{"default":0}} +{"_id":"Y08Al2dMN8he1hFK","name":"Light Hammer +3","type":"weapon","img":"icons/weapons/hammers/hammer-war-spiked.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +3","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"lighthammer","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233704,"modifiedTime":1671220961606,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Y9S75go1hLMXUD48","name":"Brewer's Supplies","type":"tool","img":"icons/consumables/plants/herb-marjoram-basil-oregano-leaf-bunch-green.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in brewing.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":9,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"brewer","ability":"wis","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233704,"modifiedTime":1671220961611,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YFarUKR3OrM5raf5","name":"Half Plate Armor +2","type":"equipment","img":"icons/equipment/chest/breastplate-cuirass-steel-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":40,"price":{"value":6750,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":17,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"halfplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233705,"modifiedTime":1690539021231,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YG9QW0flem4SLL6A","name":"Bag of Devouring","type":"backpack","img":"icons/containers/bags/pouch-leather-pink.webp","system":{"description":{"value":"Wondrous item\nThis bag superficially resembles a Bag of Holding but is a feeding orifice for a gigantic extradimensional creature. Turning the bag inside out closes the orifice.\nThe extradimensional creature attached to the bag can sense whatever is placed inside the bag. Animal or vegetable matter placed wholly in the bag is devoured and lost forever. When part of a living creature is placed in the bag, as happens when someone reaches inside it, there is a 50 percent chance that the creature is pulled inside the bag. A creature inside the bag can use its action to try to escape with a successful DC 15 Strength check.\nAnother creature can use its action to reach into the bag to pull a creature out, doing so with a successful DC 20 Strength check (provided it isn't pulled inside the bag first).\nAny creature that starts its turn inside the bag is devoured, its body destroyed.\nInanimate objects can be stored in the bag, which can hold a cubic foot of such material. However, once each day, the bag swallows any objects inside it and spits them out into another plane of existence. The GM determines the time and plane.\nIf the bag is pierced or torn, it is destroyed, and anything contained within it is transported to a random location on the Astral Plane.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":15,"price":{"value":2000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"capacity":{"type":"weight","value":999999999,"weightless":true},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233705,"modifiedTime":1671220961633,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YHCmjsiXxZ9UdUhU","name":"Navigator's Tools","type":"tool","img":"icons/tools/navigation/sextant-brass-brown.webp","system":{"description":{"value":"This set of instruments is used for navigation at sea. Proficiency with navigator's tools lets you chart a ship's course and follow navigation charts. In addition, these tools allow you to add your proficiency bonus to any ability check you make to avoid getting lost at sea.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"navg","ability":"int","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233705,"modifiedTime":1671220961637,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YM6bZNmpync83VFa","name":"Giant Slayer Battleaxe","type":"weapon","img":"icons/weapons/polearms/halberd-curved-steel.webp","system":{"description":{"value":"You gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":7000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","slashing"]],"versatile":"1d10 + @mod +1"},"formula":"2d6","save":{"ability":"str","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"battleaxe","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233706,"modifiedTime":1671220961644,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YS9CRHg2yQlOVi3j","name":"Mithral Chain Mail","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":55,"price":{"value":875,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainmail","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233706,"modifiedTime":1671220961649,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YeLz5OxRNxmvHJId","name":"Ioun Stone of Intellect","type":"equipment","img":"icons/commodities/stone/ore-pile-red.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Intellect. Your Intelligence score increases by 2, to a maximum of 20, while this marbled scarlet and blue sphere orbits your head.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":3000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[{"label":"Ioun Stone of Intellect","icon":"icons/commodities/stone/ore-pile-red.webp","origin":"Compendium.dnd5e.items.YeLz5OxRNxmvHJId","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"PM2UOAyd8Cy964mo","changes":[{"key":"system.abilities.int.value","mode":2,"value":"+2"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233707,"modifiedTime":1690480835386,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YevPP0DZXgAcLmzv","name":"Rapier +3","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"fin":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233708,"modifiedTime":1671220961663,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YfBwELTgPFHmQdHh","name":"Jeweler's Tools","type":"tool","img":"icons/commodities/gems/gem-rough-rose-teal.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in jewelry.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"jeweler","ability":"int","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233708,"modifiedTime":1671220961667,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YjImJ3cVnArHH4ES","name":"Winged Boots","type":"equipment","img":"icons/equipment/feet/boots-collared-simple-leather.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile you wear these boots, you have a flying speed equal to your walking speed. You can use the boots to fly for up to 4 hours, all at once or in several shorter flights, each one using a minimum of 1 minute from the duration. If you are flying when the duration expires, you descend at a rate of 30 feet per round until you land.\nThe boots regain 2 hours of flying capability for every 12 hours they aren't in use.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"4","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233710,"modifiedTime":1671220961671,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YrkkHa6KN8a9o35k","name":"Defender Rapier","type":"weapon","img":"icons/weapons/polearms/spear-flared-silver-pink.webp","system":{"description":{"value":"(Requires attunement)You gain a +3 bonus to attack and damage rolls made with this magic weapon.The first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.Foundry NoteThe sword's bonus to attack and damage rolls have been included; please remember to manually subtract should the user transfer any of the bonus to their AC.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":24000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233710,"modifiedTime":1671220961676,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YwS4pESpfsiq0JZv","name":"Armor of Vulnerability","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel.webp","system":{"description":{"value":"(Requires attunement)\nWhile wearing this armor, you have resistance to one of the following damage types: bludgeoning, piercing, or slashing. The GM chooses the type or determines it randomly.\nCurse. This armor is cursed, a fact that is revealed only when an identify spell is cast on the armor or you attune to it. Attuning to the armor curses you until you are targeted by the remove curse spell or similar magic; removing the armor fails to end the curse. While cursed, you have vulnerability to two of the three damage types associated with the armor (not the one to which it grants resistance).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":65,"price":{"value":1000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233711,"modifiedTime":1690539481978,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YwlHI3BVJapz4a3E","name":"Playing Cards Set","type":"tool","img":"icons/sundries/gaming/playing-cards.webp","system":{"description":{"value":"This item encompasses a wide range of playing card types, both unmarked and marked.\nIf you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"game","baseItem":"","ability":"dex","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233712,"modifiedTime":1671220961685,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Z0eO3TTpYA2hjwdd","name":"Vicious Shortbow","type":"weapon","img":"icons/weapons/bows/shortbow-recurve.webp","system":{"description":{"value":"This two handed bow is somewhat smaller than the traditional longbow variant, making it well suited for rapid attacks while on the move or mounted from horseback.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"shortbow","properties":{"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233712,"modifiedTime":1671220961690,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Z7xno2zMzRtqqUIQ","name":"Vicious Quarterstaff","type":"weapon","img":"icons/weapons/staves/staff-simple-gold.webp","system":{"description":{"value":"A thick shaft of wood wrapped with a sturdy grip makes a highly functional weapon in addition to a stout walking stick.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"quarterstaff","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233713,"modifiedTime":1671220961695,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Z9FBwEoMi6daDGRj","name":"Flame Tongue Shortsword","type":"weapon","img":"icons/magic/fire/projectile-bolt-zigzag-orange.webp","system":{"description":{"value":"(Requires attunement)\nYou can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"2d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233713,"modifiedTime":1671220961699,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZKyhkS8ud2NpV7ng","name":"Scimitar of Sharpness","type":"weapon","img":"icons/skills/wounds/bone-broken-knee-beam.webp","system":{"description":{"value":"(Requires attunement)\nWhen you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10-foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":1700,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":20,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"4d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233714,"modifiedTime":1671220961705,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZLpj1bpnWlAFUEHE","name":"Giant Slayer Scimitar","type":"weapon","img":"icons/weapons/swords/sword-guard-serrated.webp","system":{"description":{"value":"You gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":7000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","slashing"]],"versatile":""},"formula":"2d6","save":{"ability":"str","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233714,"modifiedTime":1671220961711,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZYEqOSY9BLZs2GPx","name":"Bracers of Archery","type":"equipment","img":"icons/equipment/wrist/bracer-studded-leather-steel.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing these bracers, you have proficiency with the longbow and shortbow, and you gain a +2 bonus to damage rolls on ranged attacks made with such weapons.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1500,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[{"label":"Bracers of Archery","icon":"icons/equipment/wrist/bracer-studded-leather-steel.webp","origin":"Compendium.dnd5e.items.ZYEqOSY9BLZs2GPx","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"ChaLjlYldFzDgHHv","changes":[{"key":"system.traits.weaponProf.value","mode":2,"value":"longbow"},{"key":"system.traits.weaponProf.value","mode":2,"value":"shortbow"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233715,"modifiedTime":1690480681414,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZcvU9rRb573NOywv","name":"Longbow +2","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"longbow","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233716,"modifiedTime":1671220961737,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZdcEtbtU3VkuxIFE","name":"Brooch of Shielding","type":"equipment","img":"icons/equipment/neck/pendant-bronze-gem-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this brooch, you have resistance to force damage, and you have immunity to damage from the @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile} spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":7500,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233716,"modifiedTime":1671220961743,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Zf7kBZa5f4WBepn1","name":"Ring of Earth Elemental Command","type":"equipment","img":"icons/equipment/finger/ring-band-engraved-scrolls-silver.webp","system":{"description":{"value":"(Requires attunement)\nThis ring is linked to the Elemental Plane of Earth.\nWhile wearing this ring, you have advantage on attack rolls against @Compendium[dnd5e.monsters.sApYLZj9PTZ40wJr]{Earth Elemental}s, and they have disadvantage on attack rolls against you. In addition, you have access to properties based on the linked plane.\nThe ring has 5 charges. It regains 1d4 + 1 expended charges daily at dawn. Spells cast from the ring have a save DC of 17.\nRing of Earth Elemental Command. You can expend 2 of the ring's charges to cast @Compendium[dnd5e.spells.eEpy1ONlXumKS1mp]{Dominate Monster} on an Earth Elemental. In addition, you can move in difficult terrain that is composed of rubble, rocks, or dirt as if it were normal terrain. You can also speak and understand Terran.\nIf you help slay an Earth Elemental while attuned to the ring, you gain access to the following additional properties:\n\nYou have resistance to acid damage.\nYou can move through solid earth or rock as if those areas were difficult terrain. If you end your turn there, you are shunted out to the nearest unoccupied space you last occupied.\nYou can cast the following spells from the ring, expending the necessary number of charges: @Compendium[dnd5e.spells.QvGcdRUSNRKEQJlK]{Stone Shape} (2 charges), @Compendium[dnd5e.spells.ReMbjfeOKoSj3O79]{Stoneskin} (3 charges), or @Compendium[dnd5e.spells.NmoRmM1mhuM3pqnY]{Wall of Stone} (3 charges).\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":31000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":5,"max":"5","per":"charges","recovery":"1d4 + 1"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233717,"modifiedTime":1671220961749,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZgXJE9pjvZLMCeHg","name":"Slippers of Spider Climbing","type":"equipment","img":"icons/commodities/materials/material-webbing.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile you wear these light shoes, you can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free. You have a climbing speed equal to your walking speed. However, the slippers don't allow you to move this way on a slippery surface, such as one covered by ice or oil.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.5,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"none","cost":null,"condition":"Surface cannot be slippery."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233717,"modifiedTime":1671220961753,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZjUOHSyND2VFXQeP","name":"Crossbow Bolt +1","type":"consumable","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"This ammunition is used for all varieties of crossbow and is typically a short metal shaft with a narrow piercing tip. It has been imbued with magic.\nYou have a bonus to attack and damage rolls made with this piece of magic ammunition. Once it hits a target, the ammunition is no longer magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.075,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233718,"modifiedTime":1671220961758,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZoUVmRA3HfAK2eZy","name":"Candle of Invocation","type":"consumable","img":"icons/sundries/lights/candle-unlit-grey.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThis slender taper is dedicated to a deity and shares that deity's alignment. The candle's alignment can be detected with the Detect Evil and Good spell. The GM chooses the god and associated alignment or determines the alignment randomly from the @Compendium[dnd5e.tables.C1N8LjO7gOjEWgh4]{Candle of Invocation} table.\nThe candle's magic is activated when the candle is lit, which requires an action. After burning for 4 hours, the candle is destroyed. You can snuff it out early for use at a later time. Deduct the time it burned in increments of 1 minute from the candle's total burn time.\nWhile lit, the candle sheds dim light in a 30-foot radius. Any creature within that light whose alignment matches that of the candle makes attack rolls, saving throws, and ability checks with advantage. In addition, a cleric or druid in the light whose alignment matches the candle's can cast 1st- level spells he or she has prepared without expending spell slots, though the spell's effect is as if cast with a 1st-level slot.\nAlternatively, when you light the candle for the first time, you can cast the @Compendium[dnd5e.spells.XbwGq5kDJNvAxNXV]{Gate}spell with it. Doing so destroys the candle.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":12000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"4","units":"hour"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233718,"modifiedTime":1671220961763,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZwFCZDgQljlidzns","name":"Leather Armor +3","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":24010,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"leather","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233719,"modifiedTime":1690538721966,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"a26LjC4QxP1oorXC","name":"Headband of Intellect","type":"equipment","img":"icons/equipment/finger/ring-cabochon-silver-gold-red.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nYour Intelligence score is 19 while you wear this headband. It has no effect on you if your Intelligence is already 19 or higher.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.01,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233720,"modifiedTime":1671220961770,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Truth Serum","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-labeled-blue.webp","system":{"description":{"value":"(ingested)\nA creature subjected to this poison must succeed on a DC 11 Constitution saving throw or become @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.lq3TRI6ZlED8ABMx]{Poisoned} for 1 hour. The @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.lq3TRI6ZlED8ABMx]{Poisoned} creature can't knowingly speak a lie, as if under the effect of a @Compendium[dnd5e.spells.CylBa7jR8DSbo8Z3]{Zone of Truth} spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":150,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"poison"},"effects":[],"sort":0,"flags":{},"_id":"a86F565Pjdzym1jH","folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233720,"modifiedTime":1671220961776,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"aA7MbjnpHYoYvmuW","name":"Ring of Swimming","type":"equipment","img":"icons/equipment/finger/ring-cabochon-notched-gold-green.webp","system":{"description":{"value":"You have a swimming speed of 40 feet while wearing this ring.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":3000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233721,"modifiedTime":1671220961782,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"aDEAwKwttl35dWaB","name":"Scale Mail +1","type":"equipment","img":"icons/equipment/chest/breastplate-banded-steel.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":45,"price":{"value":1550,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"scalemail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233721,"modifiedTime":1690538864436,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"aDHRuUs29SrumWfq","name":"Bag of Holding","type":"backpack","img":"icons/containers/bags/pouch-leather-pink.webp","system":{"description":{"value":"Wondrous item\nThis bag has an interior space considerably larger than its outside dimensions, roughly 2 feet in diameter at the mouth and 4 feet deep. The bag can hold up to 500 pounds, not exceeding a volume of 64 cubic feet. The bag weighs 15 pounds, regardless of its contents. Retrieving an item from the bag requires an action.\nIf the bag is overloaded, pierced, or torn, it ruptures and is destroyed, and its contents are scattered in the Astral Plane. If the bag is turned inside out, its contents spill forth, unharmed, but the bag must be put right before it can be used again.\nBreathing creatures inside the bag can survive up to a number of minutes equal to 10 divided by the number of creatures (minimum 1 minute), after which time they begin to suffocate.\nPlacing a Bag of Holding inside an extradimensional space created by a Handy Haversack, Portable Hole, 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 to a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":15,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"capacity":{"type":"weight","value":500,"weightless":true},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233722,"modifiedTime":1671220961791,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"aEiM49V8vWpWw7rU","name":"Net","type":"weapon","img":"icons/tools/fishing/net-gold.webp","system":{"description":{"value":"These thickly woven fibers are reinforced for use in combat to entrap and entangle even the most dangerous foes, rendering them vulnerable for assault with other weaponry.\nSpecial. A Large or smaller creature hit by a net is restrained until it is freed. A net has no effect on creatures that are formless, or creatures that are Huge or larger. A creature can use its action to make a DC 10 Strength check, freeing itself or another creature within its reach on a success. Dealing 5 slashing damage to the net (AC 10) also frees the creature without harming it, ending the effect and destroying the net. When you use an action, bonus action, or reaction to attack with a net, you can make only one attack regardless of the number of attacks you can normally make.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":15,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"net","properties":{"spc":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"two":false,"ver":false,"lod":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233722,"modifiedTime":1671220961795,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"aMnWi1WXWpxRHq4r","name":"Potion of Climbing","type":"consumable","img":"icons/consumables/potions/potion-vial-corked-labeled-purple.webp","system":{"description":{"value":"The potion is separated into brown, silver, and gray layers resembling bands of stone. Shaking the bottle fails to mix the colors.\nWhen you drink this potion, you gain a climbing speed equal to your walking speed for 1 hour. During this time, you have advantage on Strength (Athletics) checks you make to climb. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":180,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"common","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233723,"modifiedTime":1671220961800,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"aOrinPg7yuDZEuWr","name":"Spell Scroll 8th Level","type":"consumable","img":"icons/sundries/scrolls/scroll-bound-sealed-red-green.webp","system":{"description":{"value":"A spell scroll bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can read the scroll and cast its spell without providing any material components. Otherwise, the scroll is unintelligible. Casting the spell by reading the scroll requires the spell's normal casting time. Once the spell is cast, the words on the scroll fade, and it crumbles to dust. If the casting is interrupted, the scroll is not lost.\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 18 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity.\nSave DC: 18Attack Bonus: +10.\nA wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 18 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":5120,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Spell must be on the caster's spell list."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"10","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":18,"scaling":"flat"},"consumableType":"scroll"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233723,"modifiedTime":1671220961807,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"aXsfZvDCdpuv3Yvb","name":"Arrow of Slaying","type":"consumable","img":"icons/weapons/ammunition/arrow-head-war-flight.webp","system":{"description":{"value":"An arrow of slaying is a magic weapon meant to slay a particular kind of creature. Some are more focused than others; for example, there are both arrows of dragon slaying and arrows of blue dragon slaying. If a creature belonging to the type, race, or group associated with an arrow of slaying takes damage from the arrow, the creature must make a DC 17 Constitution saving throw, taking an extra 6d10 piercing damage on a failed save, or half as much extra damage on a successful one.Once an arrow of slaying deals its extra damage to a creature, it becomes a nonmagical arrow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.05,"price":{"value":600,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"6d10","save":{"ability":"con","dc":17,"scaling":"flat"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233724,"modifiedTime":1671220961833,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"aa9KuBy4dst7WIW9","name":"Horn","type":"tool","img":"icons/tools/instruments/flute-simple-wood.webp","system":{"description":{"value":"A horn, of any variety, to evoke awe, wonder, or fear in your audience.\nIf you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":3,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"music","baseItem":"horn","ability":"cha","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233724,"modifiedTime":1671220961838,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"akjpaK4TYkUZbGrN","name":"Chain Mail +2","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":55,"price":{"value":6075,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainmail","speed":{"value":null,"conditions":""},"strength":13,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233725,"modifiedTime":1671220961845,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"amRx3jOYlPeXEiAN","name":"Light Crossbow +3","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"lightcrossbow","properties":{"lgt":false,"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233725,"modifiedTime":1671220961849,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ap9prThUB2y9lDyj","name":"Weaver's Tools","type":"tool","img":"icons/equipment/back/cloak-hooded-pink.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in weaving.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"weaver","ability":"dex","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233726,"modifiedTime":1671220961852,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"asUgQFrF1xYeNhtW","name":"Sickle +1","type":"weapon","img":"icons/weapons/sickles/sickle-curved.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"sickle","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233726,"modifiedTime":1671220961855,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"azxwKFHrNmG3HpVy","name":"Plate Armor of Resistance","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":65,"price":{"value":7500,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233727,"modifiedTime":1690539437020,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"b2l2ubCGSnmiTrm8","name":"Shortsword +2","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233727,"modifiedTime":1671220961866,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"b46t42bMruQf9v3O","name":"Mace of Terror","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"(Requires attunement)\nThis magic weapon has 3 charges. While holding it, you can use an action and expend 1 charge to release a wave of terror. Each creature of your choice in a 30-foot radius extending from you must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute.\nWhile it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.\nThe mace regains 1d3 expended charges daily at dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3"},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"mace","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233728,"modifiedTime":1671220961872,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"bAyr7j5Peq9wIJTa","name":"Potion of Clairvoyance","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-purple.webp","system":{"description":{"value":"An eyeball bobs in this yellowish liquid but vanishes when the potion is opened.\nWhen you drink this potion, you gain the effect of the @Compendium[dnd5e.spells.cg50KpBkBdPK6vPL]{Clairvoyance} spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":960,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233729,"modifiedTime":1671220961877,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"bEZOY6uvHRweMM56","name":"Potion of Fire Giant Strength","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-yellow.webp","system":{"description":{"value":"This potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type.\nWhen you drink this potion, your Strength score changes to 25 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233729,"modifiedTime":1671220961881,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"bHbbIhbTzu4lYMRz","name":"Holy Avenger Shortsword","type":"weapon","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"(Requires attunement by a paladin)\nYou gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":165000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod + 3","piercing"]],"versatile":""},"formula":"2d10","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233730,"modifiedTime":1671220961885,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"bPFVfq81EsMNu6OQ","name":"Wand of Lightning Bolts","type":"consumable","img":"icons/weapons/staves/staff-ornate-engraved-blue.webp","system":{"description":{"value":"(Requires attunement by a spellcaster)\nThis wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the @Compendium[dnd5e.spells.IyikgTEOTv701jgQ]{Lightning Bolt} spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":32000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":7,"max":"7","per":"charges","recovery":"1d6 + 1","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d6","lightning"]],"versatile":"1d6"},"formula":"1d6 +1","save":{"ability":"dex","dc":15,"scaling":"flat"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233730,"modifiedTime":1671220961893,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"bWI5i4RbyGKT6Eiq","name":"Dagger +3","type":"weapon","img":"icons/weapons/daggers/dagger-jeweled-purple.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"dagger","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233731,"modifiedTime":1671220961900,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"baoe3U5BfMMMxhCU","name":"Viol","type":"tool","img":"icons/tools/instruments/lute-gold-brown.webp","system":{"description":{"value":"A viol to evoke awe, wonder, or fear in your audience.\nIf you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":30,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"music","baseItem":"viol","ability":"cha","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233731,"modifiedTime":1671220961904,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"bcv7J9culilK68zp","name":"Longsword +2","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +2","slashing"]],"versatile":"1d10 + @mod +2"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233732,"modifiedTime":1671220961913,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"bod1dKzbAkAm21Ho","name":"Staff of Swarming Insects","type":"weapon","img":"icons/weapons/staves/staff-simple-spiral-green.webp","system":{"description":{"value":"(Requires attunement by a bard, cleric, druid, sorcerer, warlock, or wizard)This staff has 10 charges and regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a swarm of insects consumes and destroys the staff, then disperses.Spells. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC: @Compendium[dnd5e.spells.czXrVRx6XYRWsHAi]{Giant Insect} (4 charges) or @Compendium[dnd5e.spells.OVikYmSdHliAG2YD]{Insect Plague} (5 charges).Insect Cloud. While holding the staff, you can use an action and expend 1 charge to cause a swarm of harmless flying insects to spread out in a 30-foot radius from you. The insects remain for 10 minutes, making the area heavily obscured for creatures other than you. The swarm moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the swarm and ends the effect.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":16000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":10,"max":"10","per":"charges","recovery":"1d6 + 4"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233733,"modifiedTime":1671220961931,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"bq9YKwEHLQ7p7ric","name":"Belt of Fire Giant Strength","type":"equipment","img":"icons/equipment/waist/belt-coiled-leather-steel.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this belt, your Strength score changes to 25. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":12000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[{"label":"Belt of Fire Giant Strength","icon":"icons/equipment/waist/belt-coiled-leather-steel.webp","origin":"Compendium.dnd5e.items.bq9YKwEHLQ7p7ric","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"bOonopsHKkewV29S","changes":[{"key":"system.abilities.str.value","mode":4,"value":"25"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233733,"modifiedTime":1690480245620,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"bqZ6NTLDCUB98YjV","name":"Potion of Gaseous Form","type":"consumable","img":"icons/consumables/potions/potion-bottle-skull-label-poison-teal.webp","system":{"description":{"value":"This potion's container seems to hold fog that moves and pours like water.\nWhen you drink this potion, you gain the effect of the @Compendium[dnd5e.spells.2IWiZAJtOGDoKjiz]{Gaseous Form} spell for 1 hour (no concentration required) or until you end the effect as a bonus action. \n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233734,"modifiedTime":1671220961946,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"c0luemOP0iW8L23R","name":"Potion of Psychic Resistance","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-pink.webp","system":{"description":{"value":"The potion is a plain indescriminate color and smells slightly foul.\nWhen you drink this potion, you gain resistance to Psychic type damage for 1 hour.\nFor other potions of resistance, roll on the @Compendium[dnd5e.tables.JzLOE4IxcmxjLLuz]{Potion of Resistance} table.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233734,"modifiedTime":1671220961953,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"cG3m4YlHfbQlLEOx","name":"Forgery Kit","type":"tool","img":"icons/sundries/documents/envelope-sealed-red-tan.webp","system":{"description":{"value":"This small box contains a variety of papers and parchments, pens and inks, seals and sealing wax, gold and silver leaf, and other supplies necessary to create convincing forgeries of physical documents. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a physical forgery of a document.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"forg","ability":"int","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233735,"modifiedTime":1671220961959,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"cGUPm15mLfhGDz2b","name":"Dust of Disappearance","type":"consumable","img":"icons/magic/water/bubbles-air-water-light.webp","system":{"description":{"value":"Wondrous item\nFound in a small packet, this powder resembles very fine sand. There is enough of it for one use.\nWhen you use an action to throw the dust into the air, you and each creature and object within 10 feet of you become invisible for 2d4 minutes. The duration is the same for all subjects, and the dust is consumed when its magic takes effect.\nIf a creature affected by the dust attacks or casts a spell, the invisibility ends for that creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233735,"modifiedTime":1671220961963,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"cI0UhWUux8gIzSHn","name":"Chain Shirt +3","type":"equipment","img":"icons/equipment/chest/breastplate-scale-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":20,"price":{"value":24050,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainshirt","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233736,"modifiedTime":1690538789485,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"cKpJmsJmU8YaiuqG","name":"Splint Armor","type":"equipment","img":"icons/equipment/chest/breastplate-layered-steel.webp","system":{"description":{"value":"This armor is made of narrow vertical strips of metal riveted to a backing of leather that is worn over cloth padding. Flexible chain mail protects the joints.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":60,"price":{"value":200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":17,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"splint","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233736,"modifiedTime":1671220961970,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"cQ94oKUZN8FDAI8U","name":"Battleaxe +2","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-engraved-steel.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +2","slashing"]],"versatile":"1d10 + @mod +2"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"battleaxe","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233737,"modifiedTime":1671220961975,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"caEn3ixCUFBnHTx6","name":"Staff of the Woodlands","type":"weapon","img":"icons/weapons/staves/staff-simple-spiral-green.webp","system":{"description":{"value":"(Requires attunement by a druid)This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you have a +2 bonus to spell attack rolls.The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses its properties and becomes a nonmagical quarterstaff.Spells. You can use an action to expend 1 or more of the staff's charges to cast one of the following spells from it, using your spell save DC: @Compendium[dnd5e.spells.hDOENzjuj5WpLq7B]{Animal Friendship} (1 charge), @Compendium[dnd5e.spells.MCEpGpvovcXagwQS]{Awaken} (5 charges), @Compendium[dnd5e.spells.JPwIEfgUPVebr5AH]{Barkskin} (2 charges), @Compendium[dnd5e.spells.Iv2qqSAT7OkXKPFx]{Locate Animals or Plants} (2 charges), speak with animals (1 charge), @Compendium[dnd5e.spells.2VXGS206tuChoeXy]{Speak with Plants} (3 charges), or @Compendium[dnd5e.spells.AQsBc94ES7W7s7iG]{Wall of Thorns} (6 charges).You can also use an action to cast the @Compendium[dnd5e.spells.pRMvmknwLf2tdMTj]{Pass without Trace} spell from the staff without using any charges.Tree Form. You can use an action to plant one end of the staff in fertile earth and expend 1 charge to transform the staff into a healthy tree. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius. The tree appears ordinary but radiates a faint aura of transmutation magic if targeted by @Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic}. While touching the tree and using another action to speak its command word, you return the staff to its normal form. Any creature in the tree falls when it reverts to a staff.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":44000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":10,"max":"10","per":"charges","recovery":"1d6 + 4"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod + 2","bludgeoning"]],"versatile":"1d8 + @mod + 2"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true,"ada":false,"sil":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233738,"modifiedTime":1671220961981,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ccm5xlWhx74d6lsK","name":"Painter's Supplies","type":"tool","img":"icons/tools/hand/brush-paint-brown-tan.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in painting.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"painter","ability":"int","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233738,"modifiedTime":1671220961986,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"cmnBssaWWzWWm70C","name":"Handaxe +3","type":"weapon","img":"icons/weapons/axes/axe-broad-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"handaxe","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233739,"modifiedTime":1671220961994,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ctKfjHjk9gs9UtZI","name":"Potion of Speed","type":"consumable","img":"icons/consumables/potions/potion-bottle-corked-fancy-orange.webp","system":{"description":{"value":"The potion's yellow fluid is streaked with black and swirls on its own.\nWhen you drink this potion, you gain the effect of the @Compendium[dnd5e.spells.Szvk5FEVQW3uhJi5]{Haste} spell for 1 minute (no concentration required).\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":400,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233739,"modifiedTime":1671220961999,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"d58CvI0Fiav9Jjt1","name":"Defender Shortsword","type":"weapon","img":"icons/weapons/polearms/spear-flared-silver-pink.webp","system":{"description":{"value":"(Requires attunement)You gain a +3 bonus to attack and damage rolls made with this magic weapon.The first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.Foundry NoteThe sword's bonus to attack and damage rolls have been included; please remember to manually subtract should the user transfer any of the bonus to their AC.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":24000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233740,"modifiedTime":1671220962003,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"d5HNCmLIPCpPoX2w","name":"Rod of Lordly Might","type":"consumable","img":"icons/skills/melee/hand-grip-staff-yellow-brown.webp","system":{"description":{"value":"(Requires attunement)\nThis rod has a flanged head, and it functions as a magic mace that grants a +3 bonus to attack and damage rolls made with it. The rod has properties associated with six different buttons that are set in a row along the haft. It has three other properties as well, detailed below.\nSix Buttons. You can press one of the rod's six buttons as a bonus action. A button's effect lasts until you push a different button or until you push the same button again, which causes the rod to revert to its normal form.\nIf you press button 1, the rod becomes a flame tongue, as a fiery blade sprouts from the end opposite the rod's flanged head.\nIf you press button 2, the rod's flanged head folds down and two crescent-shaped blades spring out, transforming the rod into a magic battleaxe that grants a +3 bonus to attack and damage rolls made with it.\nIf you press button 3, the rod's flanged head folds down, a spear point springs from the rod's tip, and the rod's handle lengthens into a 6-foot haft, transforming the rod into a magic spear that grants a +3 bonus to attack and damage rolls made with it.\nIf you press button 4, the rod transforms into a climbing pole up to 50 feet long, as you specify. In surfaces as hard as granite, a spike at the bottom and three hooks at the top anchor the pole. Horizontal bars 3 inches long fold out from the sides, 1 foot apart, forming a ladder. The pole can bear up to 4,000 pounds. More weight or lack of solid anchoring causes the rod to revert to its normal form.\nIf you press button 5, the rod transforms into a handheld battering ram and grants its user a +10 bonus to Strength checks made to break through doors, barricades, and other barriers.\nIf you press button 6, the rod assumes or remains in its normal form and indicates magnetic north. (Nothing happens if this function of the rod is used in a location that has no magnetic north.) The rod also gives you knowledge of your approximate depth beneath the ground or your height above it.\nDrain Life. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Constitution saving throw. On a failure, the target takes an extra 4d6 necrotic damage, and you regain a number of hit points equal to half that necrotic damage. This property can't be used again until the next dawn.\nParalyze. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Strength saving throw. On a failure, the target is paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on a success. This property can't be used again until the next dawn.\nTerrify. While holding the rod, you can use an action to force each creature you can see within 30 feet of you to make a DC 17 Wisdom saving throw. On a failure, a target is frightened of you for 1 minute. A frightened target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. This property can't be used again until the next dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":28000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":"Button presses are a bonus action."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 +@mod +3","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"consumableType":"rod"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233740,"modifiedTime":1671220962010,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dG7iFak1YH1nXRpC","name":"Vicious Battleaxe","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-engraved-steel.webp","system":{"description":{"value":"A stout crescent blade mounted on a thick shaft wrapped in a sturdy grip. This axe is large enough to be wielded with two hands and is adorned with spikes upon the back-side of the blade and the top of the shaft.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"battleaxe","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233741,"modifiedTime":1671220962025,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dGnkwePemh7ovuDv","name":"Ring of Mind Shielding","type":"equipment","img":"icons/equipment/finger/ring-cabochon-gold-purple.webp","system":{"description":{"value":"(Requires attunement)\nWhile wearing this ring, you are immune to magic that allows other creatures to read your thoughts, determine whether you are lying, know your alignment, or know your creature type. Creatures can telepathically communicate with you only if you allow it.\nYou can use an action to cause the ring to become invisible until you use another action to make it visible, until you remove the ring, or until you die.\nIf you die while wearing the ring, your soul enters it, unless it already houses a soul. You can remain in the ring or depart for the afterlife. As long as your soul is in the ring, you can telepathically communicate with any creature wearing it. A wearer can't prevent this telepathic communication.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":16000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233742,"modifiedTime":1671220962030,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dJjdWdaZU30r1zx4","name":"Plate Armor of Etherealness","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel.webp","system":{"description":{"value":"(Requires attunement)\nPlate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body. This particular armor has been inscribed with certain magical runes or other means to imbue power upon it.\nWhile you're wearing this armor, you can speak its command word as an action to gain the effect of the @Compendium[dnd5e.spells.PQuEgKyCdovOvhqN]{Etherealness} spell, which last for 10 minutes or until you remove the armor or use an action to speak the command word again. This property of the armor can't be used again until the next dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":65,"price":{"value":48000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"10","units":"minute"},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233742,"modifiedTime":1690539440733,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dOZkW5MwvsMhnd08","name":"Half Plate Armor +1","type":"equipment","img":"icons/equipment/chest/breastplate-cuirass-steel-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":40,"price":{"value":2250,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"halfplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233743,"modifiedTime":1690539018148,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dP7jMKyHTTgVb3ii","name":"Ink Bottle","type":"loot","img":"icons/consumables/potions/bottle-bulb-empty-glass.webp","system":{"description":{"value":"A small bottle of ink for writing upon parchment.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.06,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233743,"modifiedTime":1671220962044,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dQxqcjDm0IxYusCV","name":"Hat of Disguise","type":"equipment","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this hat, you can use an action to cast the @Compendium[dnd5e.spells.A3q2gTNqG6fvNGrv]{Disguise Self} spell from it at will. The spell ends if the hat is removed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"int","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233744,"modifiedTime":1671220962047,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dRtb9Tg34NKX9mGF","name":"Leather Armor of Resistance","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":6010,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"leather","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233744,"modifiedTime":1690538725304,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dX8AxCh9o0A9CkT3","name":"Morningstar","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"A viciously spiked metal orb mounted upon the end of a stout haft makes for a deadly weapon which can puncture armor and flesh alike.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"morningstar","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233745,"modifiedTime":1671220962059,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dXtZxlh2VKLCo1nA","name":"Leather Armor +1","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":1510,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"leather","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233745,"modifiedTime":1690538714547,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dZ9zWfhsIlabadKL","name":"Holy Avenger Longsword","type":"weapon","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"(Requires attunement by a paladin)\nYou gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":165000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod + 3","slashing"]],"versatile":"1d10 + @mod +3"},"formula":"2d10","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233746,"modifiedTime":1671220962067,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ddWvQRLmnnIS0eLF","name":"Light Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"A small crossbow with a wooden haft and a tense cord which is capable of firing a single bolt which can puncture even heavy armor at close range.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"lightcrossbow","properties":{"lgt":false,"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233747,"modifiedTime":1671220962072,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dghpiMWDSUXtQf6X","name":"Morningstar +3","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"morningstar","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233747,"modifiedTime":1671220962076,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dsjke4vPPsc9gsxH","name":"Elemental Gem of Fire","type":"consumable","img":"icons/commodities/gems/gem-rough-cushion-red.webp","system":{"description":{"value":"Wondrous item\nThis red corundum contains a mote of elemental energy. When you use an action to break the gem, a @Compendium[dnd5e.monsters.8SMQl75HLjhuSeau]{Fire Elemental} is summoned as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell, and the gem's magic is lost.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":960,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233748,"modifiedTime":1671220962081,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ducaFdrqwLZ0l3c7","name":"Flame Tongue Longsword","type":"weapon","img":"icons/magic/fire/projectile-bolt-zigzag-orange.webp","system":{"description":{"value":"(Requires attunement)\nYou can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"2d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233748,"modifiedTime":1671220962085,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dvNzJqb7vq6oJlA2","name":"Berserker Battleaxe","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-engraved-steel.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon. In addition, while you are attuned to this weapon, your hit point maximum increases by 1 for each level you have attained.\nCurse. This axe is cursed, and becoming attuned to it extends the curse to you. As long as you remain cursed, you are unwilling to part with the axe, keeping it within reach at all times. You also have disadvantage on attack rolls with weapons other than this one, unless no foe is within 60 feet of you that you can see or hear.\nWhenever a hostile creature damages you while the axe is in your possession, you must succeed on a DC 15 Wisdom saving throw or go berserk. While berserk, you must use your action each round to attack the creature nearest to you with the axe. If you can make extra attacks as part of the Attack action, you use those extra attacks, moving to attack the next nearest creature after you fell your current target.\nIf you have multiple possible targets, you attack one at random. You are berserk until you start your turn with no creatures within 60 feet of you that you can see or hear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","slashing"]],"versatile":"1d10 + @mod +1"},"formula":"","save":{"ability":"wis","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"battleaxe","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233749,"modifiedTime":1671220962569,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dwGxrGqkn2ppNaqs","name":"Greatclub +1","type":"weapon","img":"icons/weapons/maces/mace-spiked-steel-grey.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"club","properties":{"two":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233750,"modifiedTime":1671220962581,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Marvelous Pigments","type":"consumable","img":"icons/commodities/materials/powder-red-green-yellow.webp","system":{"description":{"value":"Typically found in [[/r 1d4]] pots inside a fine wooden box with a brush (weighing 1 pound in total), these pigments allow you to create three-dimensional objects by painting them in two dimensions. The paint flows from the brush to form the desired object as you concentrate on its image.\nEach pot of paint is sufficient to cover 1,000 square feet of a surface, which lets you create inanimate objects or terrain features—such as a door, a pit, flowers, trees, cells, rooms, or weapons—that are up to 10,000 cubic feet. It takes 10 minutes to cover 100 square feet.\nWhen you complete the painting, the object or terrain feature depicted becomes a real, nonmagical object. Thus, painting a door on a wall creates an actual door that can be opened to whatever is beyond. Painting a pit on a floor creates a real pit, and its depth counts against the total area of objects you create.\nNothing created by the pigments can have a value greater than 25 gp. If you paint an object of greater value (such as a diamond or a pile of gold), the object looks authentic, but close inspection reveals it is made from paste, bone, or some other worthless material.\nIf you paint a form of energy such as fire or lightning, the energy appears but dissipates as soon as you complete the painting, doing no harm to anything.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":12000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"flags":{},"_id":"e3XQygrXkzNvkDGF","folder":null,"sort":0,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233750,"modifiedTime":1671220962588,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"e7JpVX2549vp9mgF","name":"Vicious Spear","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"A gleaming steel point mouted atop a stout wooden haft, the spear may be wielded in one hand or two and can puncture through the heaviest armor with deadly force.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"spear","properties":{"thr":true,"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233779,"modifiedTime":1671220962605,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"e98hfROZjztt7ccO","name":"Feather Token Fan","type":"consumable","img":"icons/commodities/materials/feather-colored-red.webp","system":{"description":{"value":"Wondrous item\nThis tiny object looks like a feather. Different types of feather tokens exist, each with a different single-use effect. The GM chooses the kind of token or determines it randomly from the @Compendium[dnd5e.tables.OEdr086W61t1DRJo]{Feather Token} table.\nFan. If you are on a boat or ship, you can use an action to toss the token up to 10 feet in the air. The token disappears, and a giant flapping fan takes its place. The fan floats and creates a wind strong enough to fill the sails of one ship, increasing its speed by 5 miles per hour for 8 hours. You can dismiss the fan as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":250,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233779,"modifiedTime":1671220962610,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eHGbr3rqRRxdBPLq","name":"Chain Mail +3","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":55,"price":{"value":24075,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":19,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainmail","speed":{"value":null,"conditions":""},"strength":13,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233780,"modifiedTime":1671220962623,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eJOrPcAz9EcquyRQ","name":"Flute","type":"tool","img":"icons/tools/instruments/flute-simple-wood.webp","system":{"description":{"value":"A lute to evoke awe, wonder, or fear in your audience.\nIf you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"music","baseItem":"flute","ability":"cha","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233781,"modifiedTime":1671220962629,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eJY20LOs3pOkRDPl","name":"Block of Incense","type":"loot","img":"icons/commodities/stone/rock-chunk-pumice-white.webp","system":{"description":{"value":"Frequently used by the rich and religious alike to scent the air for purposes of pleasure or ritual.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.5,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233781,"modifiedTime":1671220962632,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eJtPBiZtr2pp6ynt","name":"Crossbow Bolt Case","type":"backpack","img":"icons/containers/ammunition/arrows-quiver-black.webp","system":{"description":{"value":"This wooden case can hold up to twenty crossbow bolts.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":1.5,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233781,"modifiedTime":1671220962635,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eKip69fExSYN661B","name":"Vicious Glaive","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"A crescent blade is mounted on the end of a tall metal shaft. This polearm provies the ability to attack with deadly efficiency from greater range than typical melee weapons.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d10 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"glaive","properties":{"hvy":true,"two":true,"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233782,"modifiedTime":1671220962646,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eM5gEe4SEOvA2Y9t","name":"Staff of Power","type":"weapon","img":"icons/weapons/staves/staff-skull-brown.webp","system":{"description":{"value":"(Requires attunement by a sorcerer, warlock, or wizard)This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you gain a +2 bonus to Armor Class, saving throws, and spell attack rolls.The staff has 20 charges for the following properties. The staff regains 2d8 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its +2 bonus to attack and damage rolls but loses all other properties. On a 20, the staff regains 1d8 + 2 charges.Power Strike. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 1d6 force damage to the target.Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spell attack bonus: @Compendium[dnd5e.spells.RpKjTlYASrfqUPVA]{Cone of Cold} (5 charges), @Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball} (5th-level version, 5 charges), @Compendium[dnd5e.spells.WmQpxfjZwF3MGUby]{Globe of Invulnerability} (6 charges), @Compendium[dnd5e.spells.l9Ju5KE7bbn3WpTm]{Hold Monster} (5 charges), @Compendium[dnd5e.spells.MRxldJd6C4bsBo3O]{Levitate} (2 charges), @Compendium[dnd5e.spells.IyikgTEOTv701jgQ]{Lightning Bolt} (5th-level version, 5 charges), @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile} (1 charge), @Compendium[dnd5e.spells.ODhLKBxLnvvLOnw1]{Ray of Enfeeblement} (1 charge), or @Compendium[dnd5e.spells.o9ZCvuD2B1OTcubb]{Wall of Force} (5 charges).Retributive Strike. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.You have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.Distance from OriginDamage10 ft. away or closer8 x the number of charges in the staff11 to 20 ft. away6 x the number of charges in the staff21 to 30 ft. away4 x the number of charges in the staff","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":95500,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":20,"max":"20","per":"charges","recovery":"2d8 + 4"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod + 2","bludgeoning"]],"versatile":"1d8 + @mod + 2"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true,"ada":false,"sil":false},"proficient":null},"effects":[{"_id":"313kehq7ifkqiz2u","changes":[{"key":"system.attributes.ac.bonus","mode":2,"value":"2","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/weapons/staves/staff-skull-brown.webp","label":"+2 to AC","origin":"Compendium.dnd5e.items.eM5gEe4SEOvA2Y9t","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233783,"modifiedTime":1671220962653,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eMR6B4bIoJPUDJG8","name":"Dust of Dryness","type":"consumable","img":"icons/magic/air/air-wave-gust-smoke-yellow.webp","system":{"description":{"value":"Wondrous item\nThis small packet contains 1d6 + 4 pinches of dust. You can use an action to sprinkle a pinch of it over water. The dust turns a cube of water 15 feet on a side into one marble-sized pellet, which floats or rests near where the dust was sprinkled. The pellet's weight is negligible.\nSomeone can use an action to smash the pellet against a hard surface, causing the pellet to shatter and release the water the dust absorbed. Doing so ends that pellet's magic.\nAn elemental composed mostly of water that is exposed to a pinch of the dust must make a DC 13 Constitution saving throw, taking 10d6 necrotic damage on a failed save, or half as much damage on a successful one.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":1200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cube"},"range":{"value":null,"long":null,"units":""},"uses":{"value":10,"max":"10","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d6","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233783,"modifiedTime":1671220962663,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eO7Fbv5WBk5zvGOc","name":"Handaxe","type":"weapon","img":"icons/weapons/axes/axe-broad-black.webp","system":{"description":{"value":"This one-handed axe is light and balanced for throwing while remaining useful in hand combat.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"handaxe","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233784,"modifiedTime":1671220962667,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eQNXan0zp279jDtk","name":"Immovable Rod","type":"consumable","img":"icons/magic/symbols/runes-etched-steel-blade.webp","system":{"description":{"value":"This flat iron rod has a button on one end. You can use an action to press the button, which causes the rod to become magically fixed in place. Until you or another creature uses an action to push the button again, the rod doesn't move, even if it is defying gravity. The rod can hold up to 8,000 pounds of weight. More weight causes the rod to deactivate and fall. A creature can use an action to make a DC 30 Strength check, moving the fixed rod up to 10 feet on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":5000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"rod"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233784,"modifiedTime":1671220962670,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eQTKbhnpkrtXUfwN","name":"Ladder (10-foot)","type":"loot","img":"icons/sundries/misc/ladder-improvised.webp","system":{"description":{"value":"A ladder 10-foot long, as sturdy or rickety as the hand that crafted or bodged it together.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":25,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233785,"modifiedTime":1671220962674,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eTNc8XPtvZNe3yQs","name":"Potion of Flying","type":"consumable","img":"icons/consumables/potions/potion-tube-corked-bat-gold-red.webp","system":{"description":{"value":"This potion's clear liquid floats at the top of its container and has cloudy white impurities drifting in it.\nWhen you drink this potion, you gain a flying speed equal to your walking speed for 1 hour and can hover. If you're in the air when the potion wears off, you fall unless you have some other means of staying aloft. \n \n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233785,"modifiedTime":1671220962678,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eVbPkYjpl29RE2uW","name":"Basic Poison","type":"consumable","img":"icons/consumables/potions/potion-bottle-skull-label-poison-teal.webp","system":{"description":{"value":"You can use the poison in this vial to coat one slashing or piercing weapon or up to three pieces of ammunition. Applying the poison takes an action. A creature hit by the poisoned weapon or ammunition must make a DC 10 Constitution saving throw or take 1d4 poison damage. Once applied, the poison retains potency for 1 minute before drying.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":100,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":"one slashing or piercing weapon, or up to three pieces of ammunition"},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":10,"scaling":"flat"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233786,"modifiedTime":1671220962682,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eZGmdOhaTWMicXPW","name":"Component Pouch","type":"consumable","img":"icons/containers/bags/pack-simple-leather-tan.webp","system":{"description":{"value":"A component pouch is a small, watertight leather belt pouch that has compartments to hold all the material components and other special items you need to cast your spells, except for those components that have a specific cost (as indicated in a spell's description).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233786,"modifiedTime":1671220962687,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ea4xclqsksEQB1QF","name":"Abacus","type":"loot","img":"icons/commodities/treasure/broach-jewel-gold-blue.webp","system":{"description":{"value":"The abacus, also called a counting frame, is a calculating tool.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233787,"modifiedTime":1671220962691,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Pack Saddle","type":"equipment","img":"icons/equipment/shoulder/shoulderpad-fur-leather.webp","system":{"description":{"value":"A type of seat that is fastened to a mount's back, designed to support the rider and affix part of the mount's tack such as stirrups. This type of saddle is suitable for pack mounts.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":15,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"ecz2fVDyAg8YgJGe","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233787,"modifiedTime":1671220962695,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"efluRemOguW2YeZY","name":"Frost Brand Rapier","type":"weapon","img":"icons/skills/melee/strike-weapon-polearm-ice-blue.webp","system":{"description":{"value":"(Requires attunement)\nWhen you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":2200,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"],["1d6","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233788,"modifiedTime":1671220962699,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"egJhGFU3v5OfjPNS","name":"Shortbow +3","type":"weapon","img":"icons/weapons/bows/shortbow-recurve.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"shortbow","properties":{"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233788,"modifiedTime":1671220962703,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ejEt6hLQxOux04lS","name":"Demon Armor","type":"equipment","img":"icons/equipment/chest/breastplate-layered-leather-green.webp","system":{"description":{"value":"(Requires attunement)\nWhile wearing this plate armor, you gain a +1 bonus to AC, and you can understand and speak Abyssal. In addition, the armor's clawed gauntlets turn unarmed strikes with your hands into magic weapons that deal slashing damage, with a +1 bonus to attack rolls and damage rolls and a damage die of 1d8.\nCurse. Once you don this cursed armor, you can't doff it unless you are targeted by the @Compendium[dnd5e.spells.XZhdgVK3cLoxNCQl]{Remove Curse} spell or similar magic. While wearing the armor, you have disadvantage on attack rolls against demons and on saving throws against their spells and special abilities.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":65,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":19,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233789,"modifiedTime":1690568584853,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"etA2SBgWwduCLgLT","name":"Ring of Shooting Stars","type":"equipment","img":"icons/equipment/finger/ring-cabochon-gold-orange.webp","system":{"description":{"value":"(Requires attunement outdoors at night)While wearing this ring in dim light or darkness, you can cast @Compendium[dnd5e.spells.CAxSzHWizrafT033]{Dancing Lights} and @Compendium[dnd5e.spells.Bnn9Nzajixvow9xi]{Light} from the ring at will. Casting either spell from the ring requires an action.The ring has 6 charges for the following other properties. The ring regains 1d6 expended charges daily at dawn.Faerie Fire. You can expend 1 charge as an action to cast @Compendium[dnd5e.spells.nqBDWkVOfcGZt4YU]{Faerie Fire} from the ring.Ball Lightning. You can expend 2 charges as an action to create one to four 3-foot-diameter spheres of lightning. The more spheres you create, the less powerful each sphere is individually.Each sphere appears in an unoccupied space you can see within 120 feet of you. The spheres last as long as you concentrate (as if concentrating on a spell), up to 1 minute. Each sphere sheds dim light in a 30-foot radius.As a bonus action, you can move each sphere up to 30 feet, but no farther than 120 feet away from you. When a creature other than you comes within 5 feet of a sphere, the sphere discharges lightning at that creature and disappears. That creature must make a DC 15 Dexterity saving throw. On a failed save, the creature takes lightning damage based on the number of spheres you created.SpheresLightning Damage42d432d625d414d12Shooting Stars. You can expend 1 to 3 charges as an action. For every charge you expend, you launch a glowing mote of light from the ring at a point you can see within 60 feet of you. Each creature within a 15-foot cube originating from that point is showered in sparks and must make a DC 15 Dexterity saving throw, taking 5d4 fire damage on a failed save, or half as much damage on a successful one.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":14000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":6,"max":"6","per":"charges","recovery":"1d6"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":15,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233789,"modifiedTime":1671220962713,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"evSCq83oPhR0ZK4y","name":"Armor of Invulnerability","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to nonmagical damage while you wear this armor. Additionally, you can use an action to make yourself immune to nonmagical damage for 10 minutes or until you are no longer wearing the armor. Once this special action is used, it can't be used again until the next dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":65,"price":{"value":18000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233791,"modifiedTime":1690539478582,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ewXgnWiYQhS8KArS","name":"Ring of Three Wishes","type":"equipment","img":"icons/equipment/finger/ring-cabochon-gold-purple.webp","system":{"description":{"value":"While wearing this ring, you can use an action to expend 1 of its 3 charges to cast the @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell from it. The ring becomes nonmagical when you use the last charge.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":50000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233791,"modifiedTime":1671220962736,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"f0I81P9k29Q1lV4S","name":"Scale Mail Armor of Resistance","type":"equipment","img":"icons/equipment/chest/breastplate-banded-steel.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":45,"price":{"value":6050,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"scalemail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233792,"modifiedTime":1690538875676,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"f4w4GxBi0nYXmhX4","name":"Rations","type":"consumable","img":"icons/consumables/meat/hock-leg-pink-brown.webp","system":{"description":{"value":"Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"food"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233793,"modifiedTime":1671220962747,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"f5chGcpQCi1HYPQw","name":"Potion of Poison Resistance","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-green.webp","system":{"description":{"value":"The potion is a plain indescriminate color and smells slightly foul.\nWhen you drink this potion, you gain resistance to Poison type damage for 1 hour.\nFor other potions of resistance, roll on the @Compendium[dnd5e.tables.JzLOE4IxcmxjLLuz]{Potion of Resistance} table.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233793,"modifiedTime":1671220962751,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fC0lFK8P4RuhpfaU","name":"Cartographer's Tools","type":"tool","img":"icons/tools/navigation/map-chart-tan.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in cartography.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"cartographer","ability":"int","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233794,"modifiedTime":1671220962755,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fCRftM4QxEDkeu0a","name":"Club +1","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +1","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"club","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233794,"modifiedTime":1671220962765,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fCUZ7h8YYrs16UhX","name":"Belt of Stone Giant Strength","type":"equipment","img":"icons/equipment/waist/belt-armored-steel.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this belt, your Strength score changes to 23. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\nThe Belt of Stone Giant Strength and the Belt of Frost Giant Strength look different, but they have the same effect.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233795,"modifiedTime":1671220962774,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fNMkFCOvMiW2Rh3t","name":"Paper","type":"loot","img":"icons/sundries/documents/paper-plain-white.webp","system":{"description":{"value":"A single sheet of paper.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233796,"modifiedTime":1671220962840,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fO1PuSOtZWLzEHqu","name":"Scale Mail +2","type":"equipment","img":"icons/equipment/chest/breastplate-banded-steel.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":45,"price":{"value":6050,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"scalemail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233797,"modifiedTime":1690538868549,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fStHPOhuJvwEjzQh","name":"Plate Armor +1","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":65,"price":{"value":3000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":19,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233797,"modifiedTime":1690539452265,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fWR9EFEjR0JtFdCC","name":"Luck Blade Greatsword","type":"weapon","img":"icons/magic/light/projectile-beam-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\nLuck. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\nWish. The sword has 1d4 – 1 charges. While holding it, you can use an action to expend 1 charge and cast the @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":210000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 +@mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233798,"modifiedTime":1671220962858,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fbC0Mg1a73wdFbqO","name":"Scimitar","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"This curved blade is wide near the wrapped handle but arcs and tapers towards a gleaming tip.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"fin":true,"lgt":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233798,"modifiedTime":1671220962862,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fbcQsOgWCjhEAGY7","name":"Efreeti Bottle","type":"consumable","img":"icons/consumables/potions/potion-flask-corked-orange.webp","system":{"description":{"value":"Wondrous item\nThis painted brass bottle weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke flows out of the bottle. At the end of your turn, the smoke disappears with a flash of harmless fire, and an @Compendium[dnd5e.monsters.LTomFUTBrkRi0Pj5]{Efreeti} appears in an unoccupied space within 30 feet of you.\nThe first time the bottle is opened, the GM rolls to determine what happens from the @Compendium[dnd5e.tables.yZMFNfocj5qyVuOC]{Efreeti Bottle} table.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":40000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":4,"max":"4","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233799,"modifiedTime":1671220962866,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"feKHv3JUWZdSNKf0","name":"Dragon Slayer Scimitar","type":"weapon","img":"icons/skills/melee/strike-axe-blood-red.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","slashing"]],"versatile":""},"formula":"3d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233799,"modifiedTime":1671220962871,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fu7DJcrYWfGMeVt9","name":"Blowgun +2","type":"weapon","img":"icons/weapons/staves/staff-simple-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":25,"long":100,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"blowgun","properties":{"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233800,"modifiedTime":1671220962875,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fvezXwRJ5PqUf5NN","name":"Ring of Cold Resistance","type":"equipment","img":"icons/equipment/finger/ring-faceted-silver-orange.webp","system":{"description":{"value":"(Requires attunement)\nThis ring has been inlaid with a tourmaline stone that gleams when it catches the light.\nYou have resistance to cold damage while wearing this ring.\nFor other rings of resistance, roll on the @Compendium[dnd5e.tables.MdTxWyYVhTIgtNcG]{Ring of Resistance} table","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233801,"modifiedTime":1671220962879,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"g2dWN7PQiMRYWzyk","name":"Quarterstaff","type":"weapon","img":"icons/weapons/staves/staff-simple-gold.webp","system":{"description":{"value":"A thick shaft of wood wrapped with a sturdy grip makes a highly functional weapon in addition to a stout walking stick.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":2,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"quarterstaff","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233801,"modifiedTime":1671220962883,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"g8DG0jXlvfP3uTtZ","name":"Vicious War Pick","type":"weapon","img":"icons/weapons/axes/pickaxe-double-brown.webp","system":{"description":{"value":"A brutal curved spike mounted on the back of a sturdy haft - designed for puncturing armor with deadly force.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"warpick","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233802,"modifiedTime":1671220962887,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"g8fQZ1WyTz2bTtvA","name":"Alms Box","type":"backpack","img":"icons/sundries/misc/piggybank.webp","system":{"description":{"value":"A box with a money slot and detachable base mainly used by priests and the like to collect alms.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":2,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233802,"modifiedTime":1671220962897,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gBQ8xqTA5f8wP5iu","name":"Blowgun Needle","type":"consumable","img":"icons/weapons/ammunition/arrows-war-red.webp","system":{"description":{"value":"This ammunition is designed to be fired through a blowgun using the force of the wielders lungs. These needles are frequently tipped with deadly or crippling venoms.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.02,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233803,"modifiedTime":1671220962900,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gLkbbUtGhQgYANM8","name":"Arrow +2","type":"consumable","img":"icons/weapons/ammunition/arrow-head-war.webp","system":{"description":{"value":"Ammunition used for bows of all varieties. It has been imbued with magic.\nYou have a bonus to attack and damage rolls made with this piece of magic ammunition. Once it hits a target, the ammunition is no longer magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.05,"price":{"value":100,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233803,"modifiedTime":1671220962904,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gP1URGq3kVIIFHJ7","name":"Reliquary","type":"equipment","img":"icons/containers/chest/chest-reinforced-steel-red.webp","system":{"description":{"value":"A tiny box or other container holding a fragment of a precious relic, saint, or other historical figure that dedicated their life to walk the path of a true believer. A deity imbues the bearer of this artifact with the ability to call forth their power and in doing so spread the faith once more.\nSpellcasting Focus. A cleric or paladin can use a holy symbol as a spellcasting focus. To use the symbol in this way, the caster must hold it in hand, wear it visibly, or bear it on a shield.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"special","cost":null,"condition":"Holy symbol must be clearly visible."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"trinket","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233804,"modifiedTime":1671220962909,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gSwpQacBLOJeLWrK","name":"Vicious Mace","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"A heavy bludgeoning weapon mounted to the end of a metal club. The head features spikes and blades designed to puncture armor and shatter the bones below.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d6 + @mod",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"mace","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233804,"modifiedTime":1671220962913,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gTRFQLdVD1gsKtPi","name":"Potion of Growth","type":"consumable","img":"icons/consumables/potions/potion-tube-corked-glowing-red.webp","system":{"description":{"value":"The red in the potion's liquid continuously expands from a tiny bead to color the clear liquid around it and then contracts. Shaking the bottle fails to interrupt this process.\nWhen you drink this potion, you gain the \"enlarge\" effect of the @Compendium[dnd5e.spells.WahI41a3goVUg0x1]{Enlarge/Reduce} spell for 1d4 hours (no concentration required).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":270,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233805,"modifiedTime":1671220962927,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gV671PZGnYoVZefN","name":"Javelin +2","type":"weapon","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"javelin","properties":{"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233805,"modifiedTime":1671220962932,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gVo3UbvwjFIiFR0c","name":"Vicious Longbow","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"A thick shaft of laminated wood is bowed by a taut string capable of launching deadly arrows at long distances.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"longbow","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233806,"modifiedTime":1671220962935,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gYDMk3LWikIP5PmA","name":"Shortbow +1","type":"weapon","img":"icons/weapons/bows/shortbow-recurve.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"shortbow","properties":{"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233806,"modifiedTime":1671220962947,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"giU3yyZXvErjf78D","name":"Dart +1","type":"weapon","img":"icons/weapons/ammunition/arrows-war-red.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.25,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"dart","properties":{"fin":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233807,"modifiedTime":1671220962951,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gpHgWLsD8k2yzbfR","name":"Cape of the Mountebank","type":"equipment","img":"icons/equipment/back/cloak-heavy-fur-blue.webp","system":{"description":{"value":"Wondrous item\nThis cape smells faintly of brimstone. While wearing it, you can use it to cast the @Compendium[dnd5e.spells.A4RsPuSvB9wFtz1j]{Dimension Door} spell as an action. This property of the cape can't be used again until the next dawn.\nWhen you disappear, you leave behind a cloud of smoke, and you appear in a similar cloud of smoke at your destination. The smoke lightly obscures the space you left and the space you appear in, and it dissipates at the end of your next turn. A light or stronger wind disperses the smoke.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":8000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":500,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233808,"modifiedTime":1671220962956,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gwuffGC4JZ8BbStz","name":"Berserker Handaxe","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-engraved-steel.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon. In addition, while you are attuned to this weapon, your hit point maximum increases by 1 for each level you have attained.\nCurse. This axe is cursed, and becoming attuned to it extends the curse to you. As long as you remain cursed, you are unwilling to part with the axe, keeping it within reach at all times. You also have disadvantage on attack rolls with weapons other than this one, unless no foe is within 60 feet of you that you can see or hear.\nWhenever a hostile creature damages you while the axe is in your possession, you must succeed on a DC 15 Wisdom saving throw or go berserk. While berserk, you must use your action each round to attack the creature nearest to you with the axe. If you can make extra attacks as part of the Attack action, you use those extra attacks, moving to attack the next nearest creature after you fell your current target.\nIf you have multiple possible targets, you attack one at random. You are berserk until you start your turn with no creatures within 60 feet of you that you can see or hear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"handaxe","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233808,"modifiedTime":1671220962960,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gyJ0imAckcWtCjyv","name":"Club +2","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +2","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"club","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233809,"modifiedTime":1671220962964,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"h0XLhuUQ0vSnW3DU","name":"Vicious Rapier","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"A thin tensile metal blade, light in weight but long in reach designed for quick darting attacks to target weak points in enemy defenses with lightning swiftness.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"fin":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233809,"modifiedTime":1671220962968,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"h8rS84jKsMHl9J1i","name":"Ioun Stone of Awareness","type":"equipment","img":"icons/commodities/gems/gem-rough-cushion-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Awareness. You can't be surprised while this dark blue rhomboid orbits your head.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":12000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233810,"modifiedTime":1671220962973,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hDF4RSCzMO8iI14x","name":"Ioun Stone of Leadership","type":"equipment","img":"icons/commodities/stone/ore-pile-purple.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Leadership. Your Charisma score increases by 2, to a maximum of 20, while this marbled pink and green sphere orbits your head.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":3000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[{"label":"Ioun Stone of Leadership","icon":"icons/commodities/stone/ore-pile-purple.webp","origin":"Compendium.dnd5e.items.hDF4RSCzMO8iI14x","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"3hbyQMgvW8GyQotV","changes":[{"key":"system.abilities.cha.value","mode":2,"value":"+2"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233810,"modifiedTime":1690480879261,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hFAVm9pTJDm0nu3g","name":"Broom of Flying","type":"consumable","img":"icons/skills/melee/hand-grip-staff-blue.webp","system":{"description":{"value":"Wondrous item\nThis wooden broom, which weighs 3 pounds, functions like a mundane broom until you stand astride it and speak its command word. It then hovers beneath you and can be ridden in the air. It has a flying speed of 50 feet. It can carry up to 400 pounds, but its flying speed becomes 30 feet while carrying over 200 pounds. The broom stops hovering when you land.\nYou can send the broom to travel alone to a destination within 1 mile of you if you speak the command word, name the location, and are familiar with that place. The broom comes back to you when you speak another command word, provided that the broom is still within 1 mile of you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":8000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":1,"long":null,"units":"mi"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233811,"modifiedTime":1671220962979,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hGrxC676XmlnS9y0","name":"Cloak of the Manta Ray","type":"equipment","img":"icons/equipment/back/cloak-heavy-fur-blue.webp","system":{"description":{"value":"Wondrous item\nWhile wearing this cloak with its hood up, you can breathe underwater, and you have a swimming speed of 60 feet.\nPulling the hood up or down requires an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":6000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Hood must be up."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"5","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233811,"modifiedTime":1671220962984,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hHX5qXva1ScCpBpL","name":"Net +2","type":"weapon","img":"icons/tools/fishing/net-gold.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack rolls made with this magic weapon.\nSpecial. A Large or smaller creature hit by a net is restrained until it is freed. A net has no effect on creatures that are formless, or creatures that are Huge or larger. A creature can use its action to make a DC 10 Strength check, freeing itself or another creature within its reach on a success. Dealing 5 slashing damage to the net (AC 10) also frees the creature without harming it, ending the effect and destroying the net. When you use an action, bonus action, or reaction to attack with a net, you can make only one attack regardless of the number of attacks you can normally make.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":15,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":10,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"net","properties":{"spc":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233812,"modifiedTime":1671220962988,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hJS8yEVkqgJjwfWa","name":"Potter's Tools","type":"tool","img":"icons/containers/kitchenware/vase-bottle-brown.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in pottery.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"potter","ability":"int","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233812,"modifiedTime":1671220962991,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hM84pZnpCqKfi8XH","name":"Cobbler's Tools","type":"tool","img":"icons/tools/hand/awl-steel-tan.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in cobblery.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"cobbler","ability":"int","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233813,"modifiedTime":1671220962994,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hOzuSDqmOIOx8z3Z","name":"Fishing Tackle","type":"loot","img":"icons/tools/fishing/hook-curved-barbed-steel-white.webp","system":{"description":{"value":"This kit includes a wooden rod, silken line, corkwood bobbers, steel hooks, lead sinkers, velvet lures, and narrow netting.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233813,"modifiedTime":1671220962997,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hSY1b8yi8JWw2blf","name":"Boots of Striding and Springing","type":"equipment","img":"icons/equipment/feet/boots-collared-rounded-brown.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile you wear these boots, your walking speed becomes 30 feet, unless your walking speed is higher, and your speed isn't reduced if you are encumbered or wearing heavy armor. In addition, you can jump three times the normal distance, though you can't jump farther than your remaining movement would allow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[{"label":"Boots of Striding and Springing","icon":"icons/equipment/feet/boots-collared-rounded-brown.webp","origin":"Compendium.dnd5e.items.hSY1b8yi8JWw2blf","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"ewBIkUaBn4meKsK5","changes":[{"key":"system.attributes.movement.walk","mode":4,"value":"30"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233814,"modifiedTime":1690480596552,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hWqImieUaLo08l9l","name":"Feather Token Bird","type":"consumable","img":"icons/commodities/materials/feather-yellow.webp","system":{"description":{"value":"Wondrous itemThis tiny object looks like a feather. Different types of feather tokens exist, each with a different single-use effect. The GM chooses the kind of token or determines it randomly from the @Compendium[dnd5e.tables.OEdr086W61t1DRJo]{Feather Token} table.Bird. You can use an action to toss the token 5 feet into the air. The token disappears and an enormous, multicolored bird takes its place. The bird has the statistics of a @Compendium[dnd5e.monsters.p980augbCIdpK9ZX]{Roc}, but it obeys your simple commands and can't attack. It can carry up to 500 pounds while flying at its maximum speed (16 miles an hour for a maximum of 144 miles per day, with a one-hour rest for every 3 hours of flying), or 1,000 pounds at half that speed. The bird disappears after flying its maximum distance for a day or if it drops to 0 hit points. You can dismiss the bird as an action.Foundry NoteThe 144 charges represent the 144 miles the bird can travel when being able to travel at maximum speed to enable accurate distance-tracking as required.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":3000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":144,"max":"144","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233814,"modifiedTime":1671220963006,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hdUzXzVPonOQzW81","name":"Greataxe +2","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod +2","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greataxe","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233815,"modifiedTime":1671220963010,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hdlBOEbEjiwUjTW5","name":"Ring of Djinni Summoning","type":"equipment","img":"icons/equipment/finger/ring-faceted-gold-purple.webp","system":{"description":{"value":"(Requires attunement)\nWhile wearing this ring, you can speak its command word as an action to summon a particular @Compendium[dnd5e.monsters.5P1VGAZQwOilwZQf]{Djinni} from the Elemental Plane of Air. The djinni appears in an unoccupied space you choose within 120 feet of you. It remains as long as you concentrate (as if concentrating on a spell), to a maximum of 1 hour, or until it drops to 0 hit points. It then returns to its home plane.\nWhile summoned, the djinni is friendly to you and your companions. It obeys any commands you give it, no matter what language you use. If you fail to command it, the djinni defends itself against attackers but takes no other actions.\nAfter the djinni departs, it can't be summoned again for 24 hours, and the ring becomes nonmagical if the djinni dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":45000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233815,"modifiedTime":1671220963014,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hf5j1meGsA33HkUj","name":"Mirror of Life Trapping","type":"consumable","img":"icons/magic/air/wind-vortex-swirl-purple.webp","system":{"description":{"value":"Wondrous item\nWhen this 4-foot-tall mirror is viewed indirectly, its surface shows faint images of creatures. The mirror weighs 50 pounds, and it has AC 11, 10 hit points, and vulnerability to bludgeoning damage. It shatters and is destroyed when reduced to 0 hit points.\nIf the mirror is hanging on a vertical surface and you are within 5 feet of it, you can use an action to speak its command word and activate it. It remains activated until you use an action to speak the command word again.\nAny creature other than you that sees its reflection in the activated mirror while within 30 feet of it must succeed on a DC 15 Charisma saving throw or be trapped, along with anything it is wearing or carrying, in one of the mirror's twelve extradimensional cells. This saving throw is made with advantage if the creature knows the mirror's nature, and constructs succeed on the saving throw automatically.\nAn extradimensional cell is an infinite expanse filled with thick fog that reduces visibility to 10 feet. Creatures trapped in the mirror's cells don't age, and they don't need to eat, drink, or sleep. A creature trapped within a cell can escape using magic that permits planar travel. Otherwise, the creature is confined to the cell until freed.\nIf the mirror traps a creature but its twelve extradimensional cells are already occupied, the mirror frees one trapped creature at random to accommodate the new prisoner. A freed creature appears in an unoccupied space within sight of the mirror but facing away from it. If the mirror is shattered, all creatures it contains are freed and appear in unoccupied spaces near it.\nWhile within 5 feet of the mirror, you can use an action to speak the name of one creature trapped in it or call out a particular cell by number. The creature named or contained in the named cell appears as an image on the mirror's surface. You and the creature can then communicate normally.\nIn a similar way, you can use an action to speak a second command word and free one creature trapped in the mirror. The freed creature appears, along with its possessions, in the unoccupied space nearest to the mirror and facing away from it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":50,"price":{"value":18000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word. Target must be able to see its reflection."},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":12,"max":"12","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233816,"modifiedTime":1671220963033,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hqVKZie7x9w3Kqds","name":"Spell Scroll 3rd Level","type":"consumable","img":"icons/sundries/scrolls/scroll-bound-gold-brown.webp","system":{"description":{"value":"A spell scroll bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can read the scroll and cast its spell without providing any material components. Otherwise, the scroll is unintelligible. Casting the spell by reading the scroll requires the spell's normal casting time. Once the spell is cast, the words on the scroll fade, and it crumbles to dust. If the casting is interrupted, the scroll is not lost.\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 13 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity.\nSave DC: 15Attack Bonus: +7.\nA wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 13 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Spell must be on the caster's spell list."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"7","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":15,"scaling":"flat"},"consumableType":"scroll"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233817,"modifiedTime":1671220963038,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hxfOtvFrY1PXHQN1","name":"Ring of Telekinesis","type":"equipment","img":"icons/equipment/finger/ring-inlay-red.webp","system":{"description":{"value":"(Requires attunement)\nWhile wearing this ring, you can cast the @Compendium[dnd5e.spells.HQfd7jJyULIoGxrZ]{Telekinesis} spell at will, but you can target only objects that aren't being worn or carried.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":80000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Target object cannot be currently worn or carried."},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233817,"modifiedTime":1671220963044,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"i2puCDRaTxkuFfB4","name":"Ring of Free Action","type":"equipment","img":"icons/equipment/finger/ring-cabochon-notched-gold-green.webp","system":{"description":{"value":"(Requires attunement)\nWhile you wear this ring, difficult terrain doesn't cost you extra movement. In addition, magic can neither reduce your speed nor cause you to be paralyzed or restrained.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":20000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233818,"modifiedTime":1671220963048,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"i3njMqHc689GvHDn","name":"Ring of X-ray Vision","type":"equipment","img":"icons/equipment/finger/ring-eye-silver-green.webp","system":{"description":{"value":"(Requires attunement)\nWhile wearing this ring, you can use an action to speak its command word. When you do so, you can see into and through solid matter for 1 minute. This vision has a radius of 30 feet. To you, solid objects within that radius appear transparent and don't prevent light from passing through them. The vision can penetrate 1 foot of stone, 1 inch of common metal, or up to 3 feet of wood or dirt. Thicker substances block the vision, as does a thin sheet of lead.\nWhenever you use the ring again before taking a long rest, you must succeed on a DC 15 Constitution saving throw or gain one level of exhaustion.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233818,"modifiedTime":1671220963052,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"i4NeNZ30ycwPDHMx","name":"Sickle","type":"weapon","img":"icons/weapons/sickles/sickle-curved.webp","system":{"description":{"value":"A crescent hooked blade mounted atop a short haft, light enough to be wielded in one hand for treshing crops or foes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"sickle","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233819,"modifiedTime":1671220963056,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"i89okN7GFTWHsvPy","name":"Herbalism Kit","type":"tool","img":"icons/containers/bags/pouch-leather-green.webp","system":{"description":{"value":"This kit contains a variety of instruments such as clippers, mortar and pestle, and pouches and vials used by herbalists to create remedies and potions. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to identify or apply herbs. Also, proficiency with this kit is required to create antitoxin and potions of healing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"herb","ability":"wis","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233819,"modifiedTime":1671220963060,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"iB3gunzgxZ8xK6Z5","name":"Talisman of Pure Good","type":"consumable","img":"icons/magic/life/ankh-gold-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement by a creature of good alignment)\nThis talisman is a mighty symbol of goodness. A creature that is neither good nor evil in alignment takes 6d6 radiant damage upon touching the talisman. An evil creature takes 8d6 radiant damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.\nIf you are a good cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.\nThe talisman has 7 charges. If you are wearing or holding it, you can use an action to expend 1 charge from it and choose one creature you can see on the ground within 120 feet of you. If the target is of evil alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman disperses into motes of golden light and is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":71680,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":7,"max":"7","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6","radiant"]],"versatile":"8d6"},"formula":"","save":{"ability":"dex","dc":20,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233820,"modifiedTime":1671220963064,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"iBuTM09KD9IoM5L8","name":"Dice Set","type":"tool","img":"icons/sundries/gaming/dice-runed-brown.webp","system":{"description":{"value":"This item encompasses a wide range of dice, both straight and weighted.\nIf you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"game","baseItem":"","ability":"dex","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233820,"modifiedTime":1671220963067,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"iIuNqnpWCHrLEKWj","name":"Net +3","type":"weapon","img":"icons/tools/fishing/net-gold.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack rolls made with this magic weapon.\nSpecial. A Large or smaller creature hit by a net is restrained until it is freed. A net has no effect on creatures that are formless, or creatures that are Huge or larger. A creature can use its action to make a DC 10 Strength check, freeing itself or another creature within its reach on a success. Dealing 5 slashing damage to the net (AC 10) also frees the creature without harming it, ending the effect and destroying the net. When you use an action, bonus action, or reaction to attack with a net, you can make only one attack regardless of the number of attacks you can normally make.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":15,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":10,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"net","properties":{"spc":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233821,"modifiedTime":1671220963075,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"iLt7wTWr4cJnQulJ","name":"Figurine of Wondrous Power (Ivory Goat of Traveling)","type":"consumable","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"Wondrous item\nA figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\nIvory Goats. These ivory statuettes of goats are always created in sets of three. Each goat looks unique and functions differently from the others.\nThe Goat of Traveling can become a Large goat with the same statistics as a @Compendium[dnd5e.monsters.rz8UTUnFT87BsAFR]{Riding Horse}. It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can't be used again until 7 days have passed, when it regains all its charges.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":24,"max":"24","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233821,"modifiedTime":1671220963082,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"iOMRrzfzFCfPGuD6","name":"Bag of Sand","type":"loot","img":"icons/containers/bags/coinpouch-simple-leather-silver-brown.webp","system":{"description":{"value":"A small bag of sand used by the scholarly to dry freshly inked letters and correspondence quickly and safely for quick dispatch.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.5,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233822,"modifiedTime":1671220963085,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"iRDmig2qZ7LdP0ug","name":"Mithral Scale Mail","type":"equipment","img":"icons/equipment/chest/breastplate-banded-steel.webp","system":{"description":{"value":"Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":45,"price":{"value":850,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"scalemail","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233822,"modifiedTime":1690538856644,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"idtlcnIWgwVdvp31","name":"Javelin +1","type":"weapon","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"javelin","properties":{"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233823,"modifiedTime":1671220963092,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ig5DOQtQYJPXJId4","name":"Ioun Stone of Fortitude","type":"equipment","img":"icons/commodities/gems/gem-rough-cushion-purple-pink.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Fortitude. Your Constitution score increases by 2, to a maximum of 20, while this pink rhomboid orbits your head.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":3000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[{"label":"Ioun Stone of Fortitude","icon":"icons/commodities/gems/gem-rough-cushion-purple-pink.webp","origin":"Compendium.dnd5e.items.ig5DOQtQYJPXJId4","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"FpwzPfzNKZokKZF4","changes":[{"key":"system.abilities.con.value","mode":2,"value":"+2"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233824,"modifiedTime":1690480758230,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"iiQxTvDOhPGW5spF","name":"Amulet of Health","type":"equipment","img":"icons/equipment/neck/pendant-faceted-red.webp","system":{"description":{"value":"Wondrous item (requires attunement)\nYour Constitution score is 19 while you wear this amulet. It has no effect on you if your Constitution is already 19 or higher without it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233824,"modifiedTime":1671220963102,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ijDzcDXfJAdj2uED","name":"Heavy Crossbow +1","type":"weapon","img":"icons/weapons/crossbows/crossbow-blue.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":18,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":100,"long":400,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"heavycrossbow","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233825,"modifiedTime":1671220963108,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"il2GNi8C0DvGLL9P","name":"Poisoner's Kit","type":"tool","img":"icons/containers/bags/pouch-gold-green.webp","system":{"description":{"value":"A poisoner's kit includes the vials, chemicals, and other equipment necessary for the creation of poisons. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to craft or use poisons.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"pois","ability":"wis","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233826,"modifiedTime":1671220963112,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"irtqrzaUCeshmTZp","name":"Vestments","type":"equipment","img":"icons/equipment/back/mantle-collared-black.webp","system":{"description":{"value":"Simple or ostentacious wear, often used by priests and other religious figures for use in rituals and ceremonies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"clothing","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233826,"modifiedTime":1671220963131,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"isKR904LkLaH4i6M","name":"Vicious Halberd","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"A spear-tipped metal shaft accompanied by a crescent blade, the halberd is a strong defensive weapon which allows a warrior to fend off foes using the reach of the shaft to attack from safe distance.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d10 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"halberd","properties":{"hvy":true,"two":true,"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233828,"modifiedTime":1671220963137,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"izF3kmyFEVI5TWhp","name":"Dart +3","type":"weapon","img":"icons/weapons/ammunition/arrows-war-red.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.25,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"dart","properties":{"fin":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233828,"modifiedTime":1671220963144,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"j2ZGEwx8MhHZXds4","name":"Belt of Dwarvenkind","type":"equipment","img":"icons/equipment/waist/belt-armored-steel.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this belt, you gain the following benefits:\n\nYour Constitution score increases by 2, to a maximum of 20.\nYou have advantage on Charisma (Persuasion) checks made to interact with dwarves.\n\nIn addition, while attuned to the belt, you have a 50 percent chance each day at dawn of growing a full beard if you're capable of growing one, or a visibly thicker beard if you already have one.If you aren't a dwarf, you gain the following additional benefits while wearing the belt:\n\nYou have advantage on saving throws against poison, and you have resistance against poison damage.\nYou have darkvision out to a range of 60 feet.\nYou can speak, read, and write Dwarvish.\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233829,"modifiedTime":1671220963151,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"jJU8vFhHLQeKe2wu","name":"Gem of Seeing","type":"consumable","img":"icons/commodities/gems/gem-rough-rose-teal.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThis gem has 3 charges. As an action, you can speak the gem's command word and expend 1 charge. For the next 10 minutes, you have truesight out to 120 feet when you peer through the gem.\nThe gem regains 1d3 expended charges daily at dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233829,"modifiedTime":1671220963159,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"jcQqI0pxLD2nNNQ4","name":"Whip +3","type":"weapon","img":"icons/weapons/misc/whip-red-yellow.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +3","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"whip","properties":{"fin":true,"rch":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233830,"modifiedTime":1671220963171,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"jeoZmDD9fuQdvC77","name":"Vicious Dart","type":"weapon","img":"icons/weapons/ammunition/arrows-war-red.webp","system":{"description":{"value":"A small thrown implement crafted with a short wooden shaft and crossed feathres with a sharp wooden or metal tip. Darts can be thrown with sufficient force to puncture the skin.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.25,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d4 +@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"dart","properties":{"fin":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233830,"modifiedTime":1671220963176,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"jf0XMx2vfEZzZuD7","name":"Mace +1","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"mace","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233831,"modifiedTime":1671220963184,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"jhjo20QoiD5exf09","name":"Calligrapher's Supplies","type":"tool","img":"icons/tools/scribal/pen-steel-grey-brown.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in calligraphy.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"calligrapher","ability":"int","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233831,"modifiedTime":1671220963197,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"jlI44g90pp4VazBU","name":"Block and Tackle","type":"consumable","img":"icons/weapons/sickles/sickle-hooked-wood.webp","system":{"description":{"value":"A set of pulleys with a cable threaded through them and a hook to attach to objects, a block and tackle allows you to hoist up to four times the weight you can normally lift.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233832,"modifiedTime":1671220963202,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"jmSC8I5awCoxNVv7","name":"Giant Slayer Greataxe","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"You gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":7000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod +1","slashing"]],"versatile":""},"formula":"2d6","save":{"ability":"str","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greataxe","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233833,"modifiedTime":1671220963206,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"jvKmgJYL33E8gev5","name":"Ioun Stone of Reserve","type":"equipment","img":"icons/commodities/gems/gem-rough-cushion-purple-pink.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Reserve. This vibrant purple prism stores spells cast into it, holding them until you use them. The stone can store up to 3 levels worth of spells at a time. When found, it contains 1d4 − 1 levels of stored spells chosen by the GM.\nAny creature can cast a spell of 1st through 3rd level into the stone by touching it as the spell is cast. The spell has no effect, other than to be stored in the stone. If the stone can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.\nWhile this stone orbits your head, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the stone is no longer stored in it, freeing up space.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233833,"modifiedTime":1671220963215,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"k2B9P3gm2NGjJ1m0","name":"Hide Armor +1","type":"equipment","img":"icons/equipment/chest/vest-cloth-tattered-tan.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":12,"price":{"value":1510,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"hide","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233834,"modifiedTime":1690538747075,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"k3T7tpcdzDyVKlF4","name":"Wand of the War Mage +2","type":"equipment","img":"icons/weapons/staves/staff-engraved-red.webp","system":{"description":{"value":"(Requires attunement by a spellcaster)\nWhile holding this wand, you gain a bonus to spell attack rolls of +2. In addition, you ignore half cover when making a spell attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":4800,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233834,"modifiedTime":1671220963233,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kBVK2IiZYRkEYtcM","name":"Greatsword +1","type":"weapon","img":"icons/weapons/swords/greatsword-guard-gem-blue.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233835,"modifiedTime":1671220963237,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kHjpHTKex95ULxUX","name":"Light Crossbow +1","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"lightcrossbow","properties":{"lgt":false,"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233835,"modifiedTime":1671220963247,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kKGJjVVlJVoakWgQ","name":"Potion of Force Resistance","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-labeled-blue.webp","system":{"description":{"value":"The potion is a plain indescriminate color and smells slightly foul.\nWhen you drink this potion, you gain resistance to Force type damage for 1 hour.\nFor other potions of resistance, roll on the @Compendium[dnd5e.tables.JzLOE4IxcmxjLLuz]{Potion of Resistance} table.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233836,"modifiedTime":1671220963250,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kNlvoSTcdMqxJPmI","name":"Battleaxe +3","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-engraved-steel.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","slashing"]],"versatile":"1d10 + @mod +3"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"battleaxe","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233837,"modifiedTime":1671220963254,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kOYXMf4GTtD7OqbD","name":"Dancing Scimitar","type":"weapon","img":"icons/skills/melee/maneuver-greatsword-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":4,"max":"4","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":true,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233837,"modifiedTime":1671220963264,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kTxi62RTrrdrIBr9","name":"Holy Avenger Rapier","type":"weapon","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"(Requires attunement by a paladin)\nYou gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":165000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod + 3","piercing"]],"versatile":""},"formula":"2d10","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233838,"modifiedTime":1671220963269,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kdkpSZMUHGXGM15H","name":"Signet Ring","type":"loot","img":"icons/equipment/finger/ring-cabochon-gold-orange.webp","system":{"description":{"value":"A ring with specific design to denote membership and rank within a house or organization.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233838,"modifiedTime":1671220963273,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"khyjT3dKyoEOf4eA","name":"Wand of Polymorph","type":"consumable","img":"icons/weapons/staves/staff-engraved-red.webp","system":{"description":{"value":"(Requires attunement by a spellcaster)\nThis wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the @Compendium[dnd5e.spells.04nMsTWkIFvkbXlY]{Polymorph} spell (save DC 15) from it.\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":32000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":7,"max":"7","per":"charges","recovery":"1d6 + 1","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":"1d4 +1"},"formula":"1d6 +1","save":{"ability":"wis","dc":15,"scaling":"flat"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233839,"modifiedTime":1671220963276,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kjTPoUeomTPWJ9h3","name":"Adamantine Chain Shirt","type":"equipment","img":"icons/equipment/chest/breastplate-scale-grey.webp","system":{"description":{"value":"This armor is reinforced with adamantine, one of the hardest substances in existence.\nWhile you're wearing it, any critical hit against you becomes a normal hit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":20,"price":{"value":550,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainshirt","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233839,"modifiedTime":1690538773030,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kpDbCYgUivh7NApp","name":"Spellguard Shield","type":"equipment","img":"icons/equipment/shield/kite-wooden-sigil-purple.webp","system":{"description":{"value":"(Requires attunement)\nWhile holding this shield, you have advantage on saving throws against spells and other magical effects, and spell attacks have disadvantage against you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":50000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233840,"modifiedTime":1690540006987,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kvD4ElYCfCKpjDeg","name":"Dwarven Thrower","type":"weapon","img":"icons/weapons/hammers/hammer-drilling-spiked.webp","system":{"description":{"value":"(Requires attunement by a dwarf)You gain a +3 bonus to attack and damage rolls made with this magic weapon. It has the thrown property with a normal range of 20 feet and a long range of 60 feet. When you hit with a ranged attack using this weapon, it deals an extra 1d8 damage or, if the target is a giant, 2d8 damage. Immediately after the attack, the weapon flies back to your hand.Foundry NoteTo apply the additional damage to a giant, please use the Other Formula one more time.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":18000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","bludgeoning"]],"versatile":"1d10 + @mod +3"},"formula":"1d8","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"warhammer","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":true,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true,"ada":false,"sil":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233841,"modifiedTime":1671220963288,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"l2T46xCqUbJvKE7A","name":"War Pick +1","type":"weapon","img":"icons/weapons/axes/pickaxe-double-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"warpick","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233841,"modifiedTime":1671220963292,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"l3V7V8VCXpmAAysQ","name":"Staff of the Magi","type":"weapon","img":"icons/weapons/staves/staff-engraved-red.webp","system":{"description":{"value":"(Requires attunement by a sorcerer, warlock, or wizard)This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While you hold it, you gain a +2 bonus to spell attack rolls.The staff has 50 charges for the following properties. It regains 4d6 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 20, the staff regains 1d12 + 1 charges.Spell Absorption. While holding the staff, you have advantage on saving throws against spells. In addition, you can use your reaction when another creature casts a spell that targets only you. If you do, the staff absorbs the magic of the spell, canceling its effect and gaining a number of charges equal to the absorbed spell's level. However, if doing so brings the staff's total number of charges above 50, the staff explodes as if you activated its Retributive Strike (see below).Spells. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} (7 charges), @Compendium[dnd5e.spells.15Fa6q1nH27XfbR8]{Dispel Magic} (3 charges), @Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball} (7th-level version, 7 charges), @Compendium[dnd5e.spells.FjYE214HTERCRZNm]{Flaming Sphere} (2 charges), @Compendium[dnd5e.spells.WN2LWEljYU6QqnRH]{Ice Storm} (4 charges), @Compendium[dnd5e.spells.1N8dDMMgZ1h1YJ3B]{Invisibility} (2 charges), @Compendium[dnd5e.spells.1nhIxh0DsJsntCfj]{Knock} (2 charges), @Compendium[dnd5e.spells.IyikgTEOTv701jgQ]{Lightning Bolt} (7th-level version, 7 charges), @Compendium[dnd5e.spells.d9MwcXi7Il3HROXd]{Passwall} (5 charges), @Compendium[dnd5e.spells.J6Jpw5XzB5aTeqnz]{Plane Shift} (7 charges), @Compendium[dnd5e.spells.HQfd7jJyULIoGxrZ]{Telekinesis} (5 charges), @Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire} (4 charges), or @Compendium[dnd5e.spells.UJJu9c2UvCzVljiP]{Web} (2 charges).You can also use an action to cast one of the following spells from the staff without using any charges: @Compendium[dnd5e.spells.8cse7rit0oswRPUP]{Arcane Lock}, @Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic}, @Compendium[dnd5e.spells.WahI41a3goVUg0x1]{Enlarge/Reduce}, @Compendium[dnd5e.spells.Bnn9Nzajixvow9xi]{Light}, @Compendium[dnd5e.spells.Utk1OQRwYkMkFRD3]{Mage Hand}, or @Compendium[dnd5e.spells.xmDBqZhRVrtLP8h2]{Protection from Evil and Good}.Retributive Strike. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.You have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.Distance from OriginDamage10 ft. away or closer8 x the number of charges in the staff11 to 20 ft. away6 x the number of charges in the staff21 to 30 ft. away4 x the number of charges in the staff","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":350000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":10,"max":"50","per":"charges","recovery":"4d6 + 2"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod + 2","bludgeoning"]],"versatile":"1d8 + @mod + 2"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true,"ada":false,"sil":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233842,"modifiedTime":1671220963297,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"l794iywHk8Wc6Uvi","name":"Book of Lore","type":"loot","img":"icons/sundries/books/book-plain-orange.webp","system":{"description":{"value":"A book containing historical accounts, information pertaining to a particular field of lore, myth, or legend.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233842,"modifiedTime":1671220963300,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"l88FXiodYofrJT8a","name":"Lance +1","type":"weapon","img":"icons/weapons/ammunition/arrow-head-war-flight.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.\nSpecial. You have disadvantage when you use a lance to attack a target within 5 feet of you. Also, a lance requires two hands to wield when you aren't mounted.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"lance","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":true,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233843,"modifiedTime":1671220963304,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lAcTZgNtpmks2Mo5","name":"Potion of Cloud Giant Strength","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-blue.webp","system":{"description":{"value":"This potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type.\nWhen you drink this potion, your Strength score changes to 27 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":1750,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233843,"modifiedTime":1671220963308,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lHS63sC6bypENNlR","name":"Flask","type":"backpack","img":"icons/consumables/drinks/tea-jug-gourd-brown.webp","system":{"description":{"value":"A flask holds 1 pint of liquid.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":1,"weightless":true},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233844,"modifiedTime":1671220963312,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lM5uo6R4gy8rJG5Y","name":"Vicious Javelin","type":"weapon","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"This light and flexible spear is designed for throwing, but is versatile enough to be used in melee combat as well.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"javelin","properties":{"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233844,"modifiedTime":1671220963315,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lN1VbnGFo3HNZXNb","name":"Half Plate Armor of Resistance","type":"equipment","img":"icons/equipment/chest/breastplate-cuirass-steel-grey.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":40,"price":{"value":6750,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"halfplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233845,"modifiedTime":1690539027525,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lPsueMv4ZoXqCYf9","name":"Wand of Wonder","type":"consumable","img":"icons/weapons/staves/staff-skull-brown.webp","system":{"description":{"value":"(Requires attunement by a spellcaster)\nThis wand has 7 charges. While holding it, you can use an action to expend 1 of its charges and choose a target within 120 feet of you. The target can be a creature, an object, or a point in space. Roll on the @Compendium[dnd5e.tables.X03rbSjVcNNJNqa8]{Wand of Wonder} table to discover what happens.\nIf the effect causes you to cast a spell from the wand, the spell's save DC is 15. If the spell normally has a range expressed in feet, its range becomes 120 feet if it isn't already. If an effect covers an area, you must center the spell on and include the target. If an effect has multiple possible subjects, the GM randomly determines which ones are affected.\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into dust and is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":24000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":7,"max":"7","per":"charges","recovery":"1d6 + 1","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":"1d4 +1"},"formula":"1d6 +1","save":{"ability":"dex","dc":15,"scaling":"flat"},"consumableType":"wand"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233845,"modifiedTime":1671220963332,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lSd5QHnIJbKvP1bh","name":"Apparatus of the Crab","type":"consumable","img":"icons/containers/barrels/barrel-walnut-steel-brown.webp","system":{"description":{"value":"Wondrous item\n \nThis item first appears to be a Large sealed iron barrel weighing 500 pounds. The barrel has a hidden catch, which can be found with a successful DC 20 Intelligence (Investigation) check. Releasing the catch unlocks a hatch at one end of the barrel, allowing two Medium or smaller creatures to crawl inside. Ten levers are set in a row at the far end, each in a neutral position, able to move either up or down. When certain levers are used, the apparatus transforms to resemble a giant lobster.\n \nThe Apparatus of the Crab is a Large object with the following statistics:\nAC: 20Hit Points: 200Speed: 30 ft., swim 30 ft. (or 0 ft. for both if the legs and tail aren't extended)Damage Immunities: poison, psychicTo be used as a vehicle, the apparatus requires one pilot. While the apparatus's hatch is closed, the compartment is airtight and watertight. The compartment holds enough air for 10 hours of breathing, divided by the number of breathing creatures inside.The apparatus floats on water. It can also go underwater to a depth of 900 feet. Below that, the vehicle takes 2d6 bludgeoning damage per minute from pressure.A creature in the compartment can use an action to move as many as two of the apparatus's levers up or down. After each use, a lever goes back to its neutral position. Each lever, from left to right, functions as show in the Apparatus of the Crab Levers table.Apparatus of the Crab Levers table:\n \n\n\n\n\nLever\nUp\nDown\n\n\n1\nLegs and tail extend, allowing the apparatus to walk and swim.\nLegs and tail retract, reducing the apparatus's speed to 0 and making it unable to benefit from bonuses to speed.\n\n\n2\nForward window shutter opens.\nForward window shutter closes.\n\n\n3\nSide window shutters open (two per side).\nSide window shutters close (two per side).\n\n\n4\nTwo claws extend from the front sides of the apparatus.\nThe claws retract.\n\n\n5\nEach extended claw makes the following melee weapon attack: +8 to hit, reach 5 ft., one target. Hit: 7 (2d6) bludgeoning damage.\nEach extended claw makes the following melee weapon attack: +8 to hit, reach 5 ft., one target. Hit: The target is Grappled (escape DC 15).\n\n\n6\nThe apparatus walks or swims forward.\nThe apparatus walks or swims backward.\n\n\n7\nThe apparatus turns 90 degrees left.\nThe apparatus turns 90 degrees right.\n\n\n8\nEyelike fixtures emit bright light in a 30-foot radius and dim light for an additional 30 feet.\nThe light turns off.\n\n\n9\nThe apparatus sinks as much as 20 feet in liquid.\nThe apparatus rises up to 20 feet in liquid.\n\n\n10\nThe rear hatch unseals and opens.\nThe rear hatch closes and seals.\n\n\n\n \n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":500,"price":{"value":10000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233846,"modifiedTime":1671220963338,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lTfo6OVvAY2iJ4oq","name":"Silver Horn of Valhalla","type":"consumable","img":"icons/tools/instruments/flute-simple-wood.webp","system":{"description":{"value":"Wondrous item\nYou can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a @Compendium[dnd5e.monsters.kz1t6xeXVwODpYb2]{Berserker}. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\nFour types of Horn of Valhalla are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly from the @Compendium[dnd5e.tables.RwerG95cIk2uRpsQ]{Horn of Valhalla} table.\nSilver Horn of Valhalla.This silver horn summons [[/r 3d4 + 3]] berserkers when blown and has no other requirements.\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":5600,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 +2",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233847,"modifiedTime":1671220963348,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"laVqttkGMW4B9654","name":"Emblem","type":"equipment","img":"icons/sundries/flags/banner-symbol-sun-gold-red.webp","system":{"description":{"value":"A symbol engraved or carefully inlaid on a shield or some other device representing a deity through which a true believer can call forth their power and in doing so spread the faith.\nSpellcasting Focus. A cleric or paladin can use a holy symbol as a spellcasting focus. To use the symbol in this way, the caster must hold it in hand, wear it visibly, or bear it on a shield.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"special","cost":null,"condition":"Holy symbol must be clearly visible."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"trinket","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233847,"modifiedTime":1671220963352,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lccm5AjIk91aIHbi","name":"Breastplate Armor of Resistance","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel-grey.webp","system":{"description":{"value":"(Requires attunement)\nYou have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":20,"price":{"value":6400,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"breastplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233848,"modifiedTime":1690538968668,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lcqqW2vGF6P8nJ77","name":"Whip +1","type":"weapon","img":"icons/weapons/misc/whip-red-yellow.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"whip","properties":{"fin":true,"rch":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233848,"modifiedTime":1671220963882,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lsiR1hVfISlC5YoB","name":"Staff of Fire","type":"weapon","img":"icons/weapons/staves/staff-engraved-red.webp","system":{"description":{"value":"(Requires attunement by a druid, sorcerer, warlock, or wizard)You have resistance to fire damage while you hold this staff.The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: @Compendium[dnd5e.spells.5SuJewoa1CRWaj1F]{Burning Hands} (1 charge), @Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball} (3 charges), or @Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire} (4 charges).The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff blackens, crumbles into cinders, and is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":16000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":10,"max":"10","per":"charges","recovery":"1d6 + 4"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233849,"modifiedTime":1671220963900,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"luTJgPXN5n0EN7iy","name":"Vicious Whip","type":"weapon","img":"icons/weapons/misc/whip-red-yellow.webp","system":{"description":{"value":"A tensile lash made of leather, cord, or chain which can lash out at nearby enemies, dealing lacerations and harrying them from a distance.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"whip","properties":{"fin":true,"rch":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233850,"modifiedTime":1671220963910,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lvLrkAR7k8DS7J3W","name":"Iron Flask","type":"consumable","img":"icons/consumables/potions/bottle-round-empty-glass.webp","system":{"description":{"value":"Wondrous item\nThis iron bottle has a brass stopper. You can use an action to speak the flask's command word, targeting a creature that you can see within 60 feet of you. If the target is native to a plane of existence other than the one you're on, the target must succeed on a DC 17 Wisdom saving throw or be trapped in the flask. If the target has been trapped by the flask before, it has advantage on the saving throw. Once trapped, a creature remains in the flask until released. The flask can hold only one creature at a time. A creature trapped in the flask doesn't need to breathe, eat, or drink and doesn't age.\nYou can use an action to remove the flask's stopper and release the creature the flask contains. The creature is friendly to you and your companions for 1 hour and obeys your commands for that duration. If you give no commands or give it a command that is likely to result in its death, it defends itself but otherwise takes no actions. At the end of the duration, the creature acts in accordance with its normal disposition and alignment.\nAn @Compendium[dnd5e.spells.3OZnNhunvRtPOQmH]{Identify} spell reveals that a creature is inside the flask, but the only way to determine the type of creature is to open the flask. A newly discovered bottle might already contain a creature chosen by the GM or determined randomly from the @Compendium[dnd5e.tables.JDtZNDaAirupdm2O]{Iron Flask} table.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":31000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233850,"modifiedTime":1671220963919,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lvaMqEhfidfHDGf5","name":"Cloak of Protection","type":"equipment","img":"icons/equipment/back/cloak-heavy-fur-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nYou gain a +1 bonus to AC and saving throws while you wear this cloak.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":3500,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"5","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[{"_id":"jxfin1rh71p1xjjv","changes":[{"key":"system.attributes.ac.bonus","mode":2,"value":"+1"},{"key":"system.bonuses.abilities.save","mode":2,"value":"+1"}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/equipment/back/cloak-heavy-fur-blue.webp","label":"+1 to AC & Saves","origin":"Compendium.dnd5e.items.lvaMqEhfidfHDGf5","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787233851,"modifiedTime":1674424596069,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"m1hJnK7CHsaJB26v","name":"Mace +2","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +2","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"mace","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233851,"modifiedTime":1671220963951,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"m7RubLd1lUcMjYgY","name":"Mace of Disruption","type":"weapon","img":"icons/magic/symbols/cog-shield-white-blue.webp","system":{"description":{"value":"(Requires attunement)\nWhen you hit a fiend or an undead with this magic weapon, that creature takes an extra 2d6 radiant damage. If the target has 25 hit points or fewer after taking this damage, it must succeed on a DC 15 Wisdom saving throw or be destroyed. On a successful save, the creature becomes frightened of you until the end of your next turn.\nWhile you hold this weapon, it sheds bright light in a 20-foot radius and dim light for an additional 20 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"2d6","save":{"ability":"wis","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"mace","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233852,"modifiedTime":1671220963959,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"mGIwk9FwTAJB6qTn","name":"Oathbow","type":"weapon","img":"icons/weapons/bows/longbow-recurve-leather-red.webp","system":{"description":{"value":"(Requires attunement)\nWhen you nock an arrow on this bow, it whispers in Elvish, \"Swift defeat to my enemies.\" When you use this weapon to make a ranged attack, you can, as a command phrase, say, \"Swift death to you who have wronged me.\" The target of your attack becomes your sworn enemy until it dies or until dawn seven days later. You can have only one such sworn enemy at a time. When your sworn enemy dies, you can choose a new one after the next dawn.\nWhen you make a ranged attack roll with this weapon against your sworn enemy, you have advantage on the roll. In addition, your target gains no benefit from cover, other than total cover, and you suffer no disadvantage due to long range. If the attack hits, your sworn enemy takes an extra 3d6 piercing damage.\nWhile your sworn enemy lives, you have disadvantage on attack rolls with all other weapons.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":3500,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command phrase."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"3d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"longbow","properties":{"amm":true,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233853,"modifiedTime":1671220963967,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"mQVYcHmMSoCUnBnM","name":"Bucket","type":"backpack","img":"icons/containers/misc/bucket-steel.webp","system":{"description":{"value":"A bucket holds 3 gallons of liquid or ½ cubic foot of solids.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":25,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233853,"modifiedTime":1671220963977,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"mYFfH24uzuKh4IPS","name":"Wind Fan","type":"consumable","img":"icons/commodities/treasure/trinket-wing-white.webp","system":{"description":{"value":"Wondrous item\nWhile holding this fan, you can use an action to cast the @Compendium[dnd5e.spells.FSMy6VAjDnXY9vWz]{Gust of Wind} spell (save DC 13) from it. Once used, the fan shouldn't be used again until the next dawn. Each time it is used again before then, it has a cumulative 20 percent chance of not working and tearing into useless, nonmagical tatters.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":"1d4 +1"},"formula":"1d5","save":{"ability":"str","dc":13,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233854,"modifiedTime":1671220963985,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"meJEfX3gZgtMX4x2","name":"Vial","type":"backpack","img":"icons/consumables/potions/vial-cork-empty.webp","system":{"description":{"value":"A vial can hold up to 4 ounces of liquid.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":0.25,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233854,"modifiedTime":1671220963991,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"mhFBTY0egW8AeCHe","name":"Potion of Hill Giant Strength","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-green.webp","system":{"description":{"value":"This potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type.\nWhen you drink this potion, your Strength score changes to 21 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":900,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233855,"modifiedTime":1671220963995,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"mkyltDYnuzNU3kmF","name":"Greatclub +3","type":"weapon","img":"icons/weapons/maces/mace-spiked-steel-grey.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"club","properties":{"two":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233855,"modifiedTime":1671220964031,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"mr96Z8YTI490ExhP","name":"Robe of the Archmagi","type":"equipment","img":"icons/magic/symbols/rune-sigil-black-pink.webp","system":{"description":{"value":"Wondrous item, (requires attunement by a sorcerer, warlock, or wizard)\nThis elegant garment is made from exquisite cloth of white, gray, or black and adorned with silvery runes. The robe's color corresponds to the alignment for which the item was created. A white robe was made for good, gray for neutral, and black for evil. You can't attune to a robe of the archmagi that doesn't correspond to your alignment. You gain these benefits while wearing the robe:\n\nIf you aren't wearing armor, your base Armor Class is 15 + your Dexterity modifier.\nYou have advantage on saving throws against spells and other magical effects.\nYour spell save DC and spell attack bonus each increase by 2.\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":34000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"none","cost":null,"condition":"Alignment must match the robe's to attune."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[{"_id":"x6gy8sik893jvxea","changes":[{"key":"system.attributes.ac.armor","mode":5,"value":"15","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/symbols/rune-sigil-black-pink.webp","label":"15 base AC","origin":"Compendium.dnd5e.items.mr96Z8YTI490ExhP","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233856,"modifiedTime":1671220964066,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"mtyw4NS1s7j2EJaD","name":"Spell Scroll 7th Level","type":"consumable","img":"icons/sundries/scrolls/scroll-bound-sealed-red-green.webp","system":{"description":{"value":"A spell scroll bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can read the scroll and cast its spell without providing any material components. Otherwise, the scroll is unintelligible. Casting the spell by reading the scroll requires the spell's normal casting time. Once the spell is cast, the words on the scroll fade, and it crumbles to dust. If the casting is interrupted, the scroll is not lost.\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 17 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity.\nSave DC: 18Attack Bonus: +10.\nA wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 17 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":2560,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Spell must be on the caster's spell list."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"10","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":18,"scaling":"flat"},"consumableType":"scroll"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233856,"modifiedTime":1671220964094,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"n1V07puo0RQxPGuF","name":"Hide Armor","type":"equipment","img":"icons/equipment/chest/vest-cloth-tattered-tan.webp","system":{"description":{"value":"This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":12,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"hide","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233857,"modifiedTime":1690538743475,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"n7fm71CN7qDIBEKk","name":"Adamantine Chain Mail","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"This armor is reinforced with adamantine, one of the hardest substances in existence.\nWhile you're wearing it, any critical hit against you becomes a normal hit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":55,"price":{"value":575,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainmail","speed":{"value":null,"conditions":""},"strength":13,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233858,"modifiedTime":1671220964115,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nAqDwI9GyXS1diiz","name":"Horseshoes of Speed","type":"consumable","img":"icons/tools/smithing/horseshoe-steel-blue.webp","system":{"description":{"value":"Wondrous item\nThese iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they increase the creature's walking speed by 30 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":8,"price":{"value":5000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233858,"modifiedTime":1671220964135,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nBFr5xTWeChM7xrb","name":"Giant Slayer Greatsword","type":"weapon","img":"icons/weapons/swords/greatsword-guard-gold-worn.webp","system":{"description":{"value":"You gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":7000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod +1","slashing"]],"versatile":""},"formula":"2d6","save":{"ability":"str","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233859,"modifiedTime":1671220964141,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nL0Y0X8SjF58OmBM","name":"Luck Blade Shortsword","type":"weapon","img":"icons/magic/light/projectile-beam-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\nLuck. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\nWish. The sword has 1d4 – 1 charges. While holding it, you can use an action to expend 1 charge and cast the @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":210000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 +@mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233859,"modifiedTime":1671220964146,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nMtmxeYrbyFdv0bg","name":"Figurine of Wondrous Power (Silver Raven)","type":"consumable","img":"icons/commodities/materials/feather-blue-grey.webp","system":{"description":{"value":"Wondrous item\nA figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\nSilver Raven. This silver statuette of a raven can become a @Compendium[dnd5e.monsters.LPdX5YLlwci0NDZx]{Raven} for up to 12 hours. Once it has been used, it can't be used again until 2 days have passed. While in raven form, the figurine allows you to cast the @Compendium[dnd5e.spells.X8w9EzYLGc4vQ1H2]{Animal Messenger} spell on it at will.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":5000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"12","units":"hour"},"cover":null,"target":{"value":2.5,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233860,"modifiedTime":1671220964165,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nSNhjX5F7f86AW1a","name":"Defender Greatsword","type":"weapon","img":"icons/weapons/polearms/spear-flared-silver-pink.webp","system":{"description":{"value":"(Requires attunement)You gain a +3 bonus to attack and damage rolls made with this magic weapon.The first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.Foundry NoteThe sword's bonus to attack and damage rolls have been included; please remember to manually subtract should the user transfer any of the bonus to their AC.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":24000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod +3","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233860,"modifiedTime":1671220964179,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nXWdGtzi8DXDLLsL","name":"Pitcher","type":"backpack","img":"icons/containers/kitchenware/jug-terracotta-orange.webp","system":{"description":{"value":"A pitcher holds 1 gallon of liquid.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":8.4,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233861,"modifiedTime":1671220964184,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nXWevqtV6p484N59","name":"Potion of Animal Friendship","type":"consumable","img":"icons/consumables/potions/potion-bottle-corked-labeled-green.webp","system":{"description":{"value":"Agitating this muddy liquid brings little bits into view: a fish scale, hummingbird tongue, a cat claw, or a squirrel hair.\nWhen you drink this potion, you can cast the @Compendium[dnd5e.spells.hDOENzjuj5WpLq7B]{Animal Friendship} spell (save DC 13) for 1 hour at will.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Beast must have an Intelligence of 3 or lower."},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"flat"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233862,"modifiedTime":1671220964187,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nY6CnKEHyJ5STgt5","name":"Vicious Greataxe","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"This enormous axe features two twin crescent blades mounted on either side of a tall spiked shaft. Designed to be wielded with two hands and cleave foes in twain.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d12 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greataxe","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233862,"modifiedTime":1671220964201,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nfIRTECQIG81CvM4","name":"Club","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"A stout knob of wood forms a simple, but effective, cudgel. These weapons are used to bludgeon foes, bruising flesh and breaking bones.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"club","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233863,"modifiedTime":1671220964208,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nk2MH16KcZmKp7FQ","name":"Ioun Stone of Mastery","type":"equipment","img":"icons/commodities/gems/gem-rough-cushion-green.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Mastery. Your proficiency bonus increases by 1 while this pale green prism orbits your head.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":15000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[{"label":"Ioun Stone of Mastery","icon":"icons/commodities/gems/gem-rough-cushion-green.webp","origin":"Compendium.dnd5e.items.nk2MH16KcZmKp7FQ","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"jNhlCgAz5EWLkZy6","changes":[{"key":"system.attributes.prof","mode":2,"value":"+1"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233863,"modifiedTime":1690481038713,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nl7cc7Z1HpSHbUdQ","name":"Halberd +1","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"halberd","properties":{"hvy":true,"two":true,"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233864,"modifiedTime":1671220964217,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nrvAo3TznyQrHS1t","name":"War Pick +3","type":"weapon","img":"icons/weapons/axes/pickaxe-double-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"warpick","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233864,"modifiedTime":1671220964231,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nsXZejlmgalj4he9","name":"Ring Mail","type":"equipment","img":"icons/equipment/chest/breastplate-banded-simple-leather-brown.webp","system":{"description":{"value":"This armor is leather armor with heavy rings sewn into it. The rings help reinforce the armor against blows from swords and axes. Ring mail is inferior to chain mail, and it's usually worn only by those who can't afford better armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":40,"price":{"value":30,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"ringmail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233865,"modifiedTime":1690539369755,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nvhk1quD0Dg1ZtSH","name":"Pipes of the Sewers","type":"consumable","img":"icons/tools/instruments/flute-simple-wood.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nYou must be proficient with wind instruments to use these pipes. While you are attuned to the pipes, ordinary rats and giant rats are indifferent toward you and will not attack you unless you threaten or harm them.\nThe pipes have 3 charges. If you play the pipes as an action, you can use a bonus action to expend 1 to 3 charges, calling forth one @Compendium[dnd5e.monsters.8ihbbjkaOFTPbI73]{Swarm of Rats} with each expended charge, provided that enough rats are within half a mile of you to be called in this fashion (as determined by the GM). If there aren't enough rats to form a swarm, the charge is wasted. Called swarms move toward the music by the shortest available route but aren't under your control otherwise. The pipes regain 1d3 expended charges daily at dawn.\nWhenever a swarm of rats that isn't under another creature's control comes within 30 feet of you while you are playing the pipes, you can make a Charisma check contested by the swarm's Wisdom check. If you lose the contest, the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours. If you win the contest, the swarm is swayed by the pipes' music and becomes friendly to you and your companions for as long as you continue to play the pipes each round as an action. A friendly swarm obeys your commands. If you issue no commands to a friendly swarm, it defends itself but otherwise takes no actions. If a friendly swarm starts its turn and can't hear the pipes' music, your control over that swarm ends, and the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"bonus","cost":1,"condition":"Proficiency with wind instruments."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":0.5,"long":null,"units":"mi"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"cha"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233865,"modifiedTime":1671220964244,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"o4Irx3hHiD3FnPbL","name":"Trident of Fish Command","type":"weapon","img":"icons/skills/ranged/arrows-flying-salvo-purple.webp","system":{"description":{"value":"(Requires attunement)\nThis trident is a magic weapon. It has 3 charges. While you carry it, you can use an action and expend 1 charge to cast @Compendium[dnd5e.spells.LrPvWHBPmiMQQsKB]{Dominate Beast} (save DC 15) from it on a beast that has an innate swimming speed. The trident regains 1d3 expended charges daily at dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":800,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3"},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"trident","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233866,"modifiedTime":1671220964253,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"oG4rvCuMstgl4Nez","name":"Hand Crossbow +3","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"handcrossbow","properties":{"amm":true,"lgt":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233867,"modifiedTime":1671220964267,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"oN4Glcmi4BhdAI3k","name":"Tome of Leadership and Influence","type":"consumable","img":"icons/sundries/books/book-embossed-clasp-gold-brown.webp","system":{"description":{"value":"Wondrous item\nThis book contains guidelines for influencing and charming others, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Charisma score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":100000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"hour","cost":48,"condition":"The book must be completed in 6 days or less."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233867,"modifiedTime":1671220964279,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"oNLfJNRQgUHpU8c7","name":"Pipes of Haunting","type":"consumable","img":"icons/tools/instruments/flute-simple-wood.webp","system":{"description":{"value":"Wondrous item\nYou must be proficient with wind instruments to use these pipes. They have 3 charges. You can use an action to play them and expend 1 charge to create an eerie, spellbinding tune. Each creature within 30 feet of you that hears you play must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. If you wish, all creatures in the area that aren't hostile toward you automatically succeed on the saving throw. A creature that fails the saving throw can repeat it at the end of each of its turns, ending the effect on itself on a success. A creature that succeeds on its saving throw is immune to the effect of these pipes for 24 hours.\nThe pipes regain 1d3 expended charges daily at dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":6000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Proficiency with wind instruments."},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233868,"modifiedTime":1671220964284,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"oSarKEU8x1AupB6z","name":"Deck of Many Things","type":"consumable","img":"icons/sundries/misc/admission-ticket-grey.webp","system":{"description":{"value":"Wondrous item\nUsually found in a box or pouch, this deck contains a number of cards made of ivory or vellum. Most (75 percent) of these decks have only thirteen cards, but the rest have twenty-two.\nBefore you draw a card, you must declare how many cards you intend to draw and then draw them randomly (you can use an altered deck of playing cards to simulate the deck). Any cards drawn in excess of this number have no effect. Otherwise, as soon as you draw a card from the deck, its magic takes effect. You must draw each card no more than 1 hour after the previous draw. If you fail to draw the chosen number, the remaining number of cards fly from the deck on their own and take effect all at once.\nOnce a card is drawn, it fades from existence. Unless the card is the Fool or the Jester, the card reappears in the deck, making it possible to draw the same card twice.\n\n\n\nPlaying Card\nCard\n\n\nAce of Diamonds\nVizier*\n\n\nKing of Diamonds\nSun\n\n\nQueen of Diamonds\nMoon\n\n\nJack of Diamonds\nStar\n\n\nTwo of Diamonds\nComet*\n\n\nAce of Hearts\nThe Fates*\n\n\nKing of Hearts\nThrone\n\n\nQueen of Hearts\nKey\n\n\nJack of Hearts\nKnight\n\n\nTwo of Hearts\nGem*\n\n\nAce of Clubs\nTalons*\n\n\nKing of Clubs\nThe Void\n\n\nQueen of Clubs\nFlames\n\n\nJack of Clubs\nSkull\n\n\nTwo of Clubs\nIdiot*\n\n\nAce of Spades\nDonjon*\n\n\nKing of Spades\nRuin\n\n\nQueen of Spades\nEuryale\n\n\nJack of Spades\nRogue\n\n\nTwo of Spades\nBalance*\n\n\nJoker (with TM)\nFool*\n\n\nJoker (without TM)\nJester\n\n\n\n*Found only in a deck with twenty-two cards\nBalance. Your mind suffers a wrenching alteration, causing your alignment to change. Lawful becomes chaotic, good becomes evil, and vice versa. If you are true neutral or unaligned, this card has no effect on you.\nComet. If you single-handedly defeat the next hostile monster or group of monsters you encounter, you gain experience points enough to gain one level. Otherwise, this card has no effect.\nDonjon. You disappear and become entombed in a state of suspended animation in an extradimensional sphere. Everything you were wearing and carrying stays behind in the space you occupied when you disappeared. You remain imprisoned until you are found and removed from the sphere. You can't be located by any divination magic, but a @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} can reveal the location of your prison. You draw no more cards.\nEuryale. The card's medusa-like visage curses you. You take a −2 penalty on saving throws while cursed in this way. Only a god or the magic of The Fates card can end this curse.\nThe Fates. Reality's fabric unravels and spins anew, allowing you to avoid or erase one event as if it never happened. You can use the card's magic as soon as you draw the card or at any other time before you die.\nFlames. A powerful devil becomes your enemy. The devil seeks your ruin and plagues your life, savoring your suffering before attempting to slay you. This enmity lasts until either you or the devil dies.\nFool. You lose 10,000 XP, discard this card, and draw from the deck again, counting both draws as one of your declared draws. If losing that much XP would cause you to lose a level, you instead lose an amount that leaves you with just enough XP to keep your level.\nGem. Twenty-five pieces of jewelry worth 2,000 gp each or fifty gems worth 1,000 gp each appear at your feet.\nIdiot. Permanently reduce your Intelligence by 1d4 + 1 (to a minimum score of 1). You can draw one additional card beyond your declared draws.\nJester. You gain 10,000 XP, or you can draw two additional cards beyond your declared draws.\nKey. A rare or rarer magic weapon with which you are proficient appears in your hands. The GM chooses the weapon.\nKnight. You gain the service of a 4th-level fighter who appears in a space you choose within 30 feet of you. The fighter is of the same race as you and serves you loyally until death, believing the fates have drawn him or her to you. You control this character.\nMoon. You are granted the ability to cast the @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell 1d3 times.\nRogue. A nonplayer character of the GM's choice becomes hostile toward you. The identity of your new enemy isn't known until the NPC or someone else reveals it. Nothing less than a @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell or divine intervention can end the NPC's hostility toward you.\nRuin. All forms of wealth that you carry or own, other than magic items, are lost to you. Portable property vanishes. Businesses, buildings, and land you own are lost in a way that alters reality the least. Any documentation that proves you should own something lost to this card also disappears.\nSkull. You summon an avatar of death - a ghostly humanoid skeleton clad in a tattered black robe and carrying a spectral scythe. It appears in a space of the GM's choice within 10 feet of you and attacks you, warning all others that you must win the battle alone. The avatar fights until you die or it drops to 0 hit points, whereupon it disappears. If anyone tries to help you, the helper summons its own avatar of death. A creature slain by an avatar of death can't be restored to life.\nAvatar of Death\nMedium undead, neutral evil\nArmor Class 20Hit Points half the hit point maximum of its summonerSpeed 60 ft., fly 60 ft. (hover)\n\n\n\nSTR\nDEX\nCON\nINT\nWIS\nCHA\n\n\n\n\n16 (+3)\n16 (+3)\n16 (+3)\n16 (+3)\n16 (+3)\n16 (+3)\n\n\n\nDamage Immunities necrotic, poisonCondition Immunities charmed, frightened, paralyzed, petrified, poisoned, unconsciousSenses darkvision 60 ft., truesight 60 ft., passive Perception 13Languages all languages known to its summonerChallenge -- (0 XP)\nIncorporeal Movement. The avatar can move through other creatures and objects as if they were difficult terrain. It takes 5 (1d10) force damage if it ends its turn inside an object.Turning Immunity. The avatar is immune to features that turn undead.\nActions\nReaping Scythe. The avatar sweeps its spectral scythe through a creature within 5 feet of it, dealing 7 (1d8 + 3) slashing damage plus 4 (1d8) necrotic damage.\n \nStar. Increase one of your ability scores by 2. The score can exceed 20 but can't exceed 24.\nSun. You gain 50,000 XP, and a wondrous item (which the GM determines randomly) appears in your hands.\nTalons. Every magic item you wear or carry disintegrates. Artifacts in your possession aren't destroyed but do vanish.\nThrone. You gain proficiency in the Persuasion skill, and you double your proficiency bonus on checks made with that skill. In addition, you gain rightful ownership of a small keep somewhere in the world. However, the keep is currently in the hands of monsters, which you must clear out before you can claim the keep as yours.\nVizier. At any time you choose within one year of drawing this card, you can ask a question in meditation and mentally receive a truthful answer to that question. Besides information, the answer helps you solve a puzzling problem or other dilemma. In other words, the knowledge comes with wisdom on how to apply it.\nThe Void. This black card spells disaster. Your soul is drawn from your body and contained in an object in a place of the GM's choice. One or more powerful beings guard the place. While your soul is trapped in this way, your body is incapacitated. A @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell can't restore your soul, but the spell reveals the location of the object that holds it. You draw no more cards.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":6120,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":22,"max":"22","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233868,"modifiedTime":1671220964301,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"oY8KbpGmB5H2Deoy","name":"Silk Rope (50 ft.)","type":"consumable","img":"icons/sundries/survival/rope-wrapped-red.webp","system":{"description":{"value":"Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233869,"modifiedTime":1671220964311,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"oYZNXHth1UYxPwVi","name":"Periapt of Proof against Poison","type":"equipment","img":"icons/equipment/neck/necklace-hook-brown.webp","system":{"description":{"value":"Wondrous item\nThis delicate silver chain has a brilliant-cut black gem pendant. While you wear it, poisons have no effect on you. You are immune to the poisoned condition and have immunity to poison damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.01,"price":{"value":5000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233869,"modifiedTime":1671220964317,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"odV5cq2HSLSCH69k","name":"Prayer Book","type":"loot","img":"icons/sundries/books/book-backed-silver-red.webp","system":{"description":{"value":"A book containing prayers and incantations dedicated to a specific power for the faithful to follow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233870,"modifiedTime":1671220964320,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"orHjq3XDPz4eXcov","name":"Dragon Slayer Greatsword","type":"weapon","img":"icons/skills/melee/strike-axe-blood-red.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod +1","slashing"]],"versatile":""},"formula":"3d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233870,"modifiedTime":1671220964339,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"osLzOwQdPtrK3rQH","name":"Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"A medium sized blade with a firm crossguard and a leather-wrapped handle. A versatile weapon which makes up in versatility what it lacks in reach.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233871,"modifiedTime":1671220964357,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"otYAEwhsANKHZAmk","name":"Gloves of Missile Snaring","type":"equipment","img":"icons/creatures/webs/web-spider-glowing-purple.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThese gloves seem to almost meld into your hands when you don them. When a ranged weapon attack hits you while you're wearing them, you can use your reaction to reduce the damage by 1d10 + your Dexterity modifier, provided that you have a free hand. If you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in that hand.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":3000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d10 + @mod","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233871,"modifiedTime":1671220964365,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"oxzUb5j1TMsccGW4","name":"Mantle of Spell Resistance","type":"equipment","img":"icons/magic/unholy/silhouette-robe-evil-power.webp","system":{"description":{"value":"(Requires attunement)\nYou have advantage on saving throws against spells while you wear this cloak.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":30000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233872,"modifiedTime":1671220964368,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ozYrQ5N4s81h35Fa","name":"Vicious Blowgun","type":"weapon","img":"icons/weapons/staves/staff-simple-brown.webp","system":{"description":{"value":"A primitive, but deadly, weapon favored by tribes and guerrila fighters. The darts fired from this gun can puncture and deliver lethal doses of venom.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":25,"long":100,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"blowgun","properties":{"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233872,"modifiedTime":1671220964372,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"p01JzD9RpIOkJiqK","name":"Rapier of Life Stealing","type":"weapon","img":"icons/creatures/claws/claw-curved-poison-purple.webp","system":{"description":{"value":"(Requires attunement)\nWhen you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Must roll a 20 and the target cannot be undead."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod","piercing"]],"versatile":""},"formula":"3d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233873,"modifiedTime":1671220964377,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"p2zChy24ZJdVqMSH","name":"Chain Shirt","type":"equipment","img":"icons/equipment/chest/breastplate-scale-grey.webp","system":{"description":{"value":"Made of interlocking metal rings, a chain shirt is worn between layers of clothing or leather. This armor offers modest protection to the wearer's upper body and allows the sound of the rings rubbing against one another to be muffled by outer layers.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":20,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainshirt","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233873,"modifiedTime":1690538776890,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"p9dtQU9wEZGumHSb","name":"Vicious Greatclub","type":"weapon","img":"icons/weapons/maces/mace-spiked-steel-grey.webp","system":{"description":{"value":"A larger variant of the simple club, a hefty wooden shaft with an enormous knot of wood upon the end deals crippling bludgeoning damage to unfortunate foes.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"club","properties":{"two":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233874,"modifiedTime":1671220964385,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"pC3202gDTy8G5i4r","name":"Vicious Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"A lengthy stright blade designed for slashing foes, the longsword is a highly versatile weapon that may also be wielded with two hands for more punishing strikes.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233875,"modifiedTime":1671220964400,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"pG6dddIcb9NmPrdt","name":"Longsword of Wounding","type":"weapon","img":"icons/magic/water/heart-ice-freeze.webp","system":{"description":{"value":"(Requires attunement)\nHit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"1d4","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233875,"modifiedTime":1671220964407,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"paqlMjggWkBIAeCe","name":"Amulet","type":"equipment","img":"icons/equipment/neck/pendant-bronze-gem-blue.webp","system":{"description":{"value":"An amulet depicting a symbol representing a deity through which a true believer can call forth their power and in doing so spread the faith.\nSpellcasting Focus. A cleric or paladin can use a holy symbol as a spellcasting focus. To use the symbol in this way, the caster must hold it in hand, wear it visibly, or bear it on a shield.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"special","cost":null,"condition":"Holy symbol must be clearly visible."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":null,"type":"trinket","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233876,"modifiedTime":1671220964411,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"psoZaItkOScMVaHL","name":"Oil Flask","type":"consumable","img":"icons/consumables/potions/bottle-bulb-empty-glass.webp","system":{"description":{"value":"Oil usually comes in a clay flask that holds 1 pint. As an action, you can splash the oil in this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact. Make a ranged attack against a target creature or object, treating the oil as an improvised weapon.\nOn a hit, the target is covered in oil. If the target takes any fire damage before the oil dries (after 1 minute), the target takes an additional 5 fire damage from the burning oil. You can also pour a flask of oil on the ground to cover a 5-foot-square area, provided that the surface is level.\nIf lit, the oil burns for 2 rounds and deals 5 fire damage to any creature that enters the area or ends its turn in the area. A creature can take this damage only once per turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":20,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233876,"modifiedTime":1671220964419,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"q24QnImAicnT9Byd","name":"Light Hammer +1","type":"weapon","img":"icons/weapons/hammers/hammer-war-spiked.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +1","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"lighthammer","properties":{"lgt":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233877,"modifiedTime":1671220964425,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"q3WqP3r2emnumyUF","name":"Sling +3","type":"weapon","img":"icons/weapons/slings/slingshot-wood.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +3","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"sling","properties":{"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233877,"modifiedTime":1671220964441,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qBSEGJyHxdKIlBfj","name":"Potion of Poison","type":"consumable","img":"icons/consumables/potions/potion-bottle-skull-label-poison-teal.webp","system":{"description":{"value":"This concoction looks, smells, and tastes like a potion of healing or other beneficial potion.However, it is actually poison masked by illusion magic. An identify spell reveals its true nature.If you drink it, you take 3d6 poison damage, and you must succeed on a DC 13 Constitution saving throw or be poisoned. At the start of each of your turns while you are poisoned in this way, you take 3d6 poison damage. At the end of each of your turns, you can repeat the saving throw. On a successful save, the poison damage you take on your subsequent turns decreases by 1d6. The poison ends when the damage decreases to 0.Foundry NoteTo apply the reduced damage from a successful Constitution save, please use the Other Formula (set at 1d6) as required.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":100,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"spec"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","poison"]],"versatile":""},"formula":"1d6","save":{"ability":"con","dc":13,"scaling":"flat"},"consumableType":"poison"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233878,"modifiedTime":1671220964452,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qBydtUUIkv520DT7","name":"Lute","type":"tool","img":"icons/tools/instruments/lute-gold-brown.webp","system":{"description":{"value":"A lute to evoke awe, wonder, or fear in your audience.\nIf you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":35,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"music","baseItem":"lute","ability":"cha","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233878,"modifiedTime":1671220964460,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qGH7YqWhi0tHisMi","name":"Luck Blade Rapier","type":"weapon","img":"icons/magic/light/projectile-beam-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\nLuck. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\nWish. The sword has 1d4 – 1 charges. While holding it, you can use an action to expend 1 charge and cast the @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":210000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233879,"modifiedTime":1671220964464,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qGRN4wvZLJ8uITf2","name":"Vicious Sling","type":"weapon","img":"icons/weapons/slings/slingshot-wood.webp","system":{"description":{"value":"A flexible lash of leather affixed to a wooden handle which is capable of flinging rocks or metal bullets with deadly velocity.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"sling","properties":{"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233879,"modifiedTime":1671220964468,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qMGkmzfLHfXd7DiJ","name":"Ring of Necrotic Resistance","type":"equipment","img":"icons/equipment/finger/ring-band-engraved-scrolls-silver.webp","system":{"description":{"value":"(Requires attunement)\nThis ring has been inlaid with a jet stone that seems to swallow any light that it catches.\nYou have resistance to necrotic damage while wearing this ring.\nFor other rings of resistance, roll on the @Compendium[dnd5e.tables.MdTxWyYVhTIgtNcG]{Ring of Resistance} table","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233881,"modifiedTime":1671220964472,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qMzHmlmha8qMDnEF","name":"Lamp","type":"consumable","img":"icons/sundries/lights/lantern-iron-yellow.webp","system":{"description":{"value":"A lamp casts bright light in a 15-foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"6","units":"hour"},"cover":null,"target":{"value":45,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233881,"modifiedTime":1671220964483,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qRMQH8lRE42JkugE","name":"Mithral Half Plate Armor","type":"equipment","img":"icons/equipment/chest/breastplate-cuirass-steel-grey.webp","system":{"description":{"value":"Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":40,"price":{"value":1550,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"halfplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233882,"modifiedTime":1690539030662,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qVHCzgVvOZAtuk4N","name":"Flame Tongue Scimitar","type":"weapon","img":"icons/magic/fire/projectile-bolt-zigzag-orange.webp","system":{"description":{"value":"(Requires attunement)\nYou can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"2d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233883,"modifiedTime":1671220964491,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qVuZznv0MnIjDU70","name":"Iron Horn of Valhalla","type":"consumable","img":"icons/tools/instruments/flute-simple-wood.webp","system":{"description":{"value":"Wondrous item\nYou can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a @Compendium[dnd5e.monsters.kz1t6xeXVwODpYb2]{Berserker}. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\nFour types of Horn of Valhalla are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly from the @Compendium[dnd5e.tables.RwerG95cIk2uRpsQ]{Horn of Valhalla} table.\nIron Horn of Valhalla.This iron horn summons [[/r 5d4 + 5]] berserkers when blown and requires proficiency with all martial weapons to be used.\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":14000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d4 +5",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233883,"modifiedTime":1671220964496,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qWlXDEgqdmdZWoab","name":"Shovel","type":"loot","img":"icons/tools/hand/shovel-spade-steel-grey.webp","system":{"description":{"value":"A tool resembling a spade with a broad blade and typically upturned sides, used for moving coals, earth, snow or other material.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233884,"modifiedTime":1671220964499,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qXcUKfCVxEvV3VU8","name":"Decanter of Endless Water","type":"consumable","img":"icons/consumables/potions/potion-flask-corked-blue.webp","system":{"description":{"value":"Wondrous item\nThis stoppered flask sloshes when shaken, as if it contains water. The decanter weighs 2 pounds.\nYou can use an action to remove the stopper and speak one of three command words, whereupon an amount of fresh water or salt water (your choice) pours out of the flask. The water stops pouring out at the start of your next turn. Choose from the following options:\n• \"Stream\" produces 1 gallon of water.\n• \"Fountain\" produces 5 gallons of water.\n• \"Geyser\" produces 30 gallons of water that gushes forth in a geyser 30 feet long and 1 foot wide. As a Bonus Action while holding the decanter, you can aim the geyser at a creature you can see within 30 feet of you. The target must succeed on a DC 13 Strength saving throw or take 1d4 bludgeoning damage and fall prone. Instead of a creature, you can target an object that isn't being worn or carried and that weighs no more than 200 pounds. The object is either knocked over or pushed up to 15 feet away from you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":135000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233884,"modifiedTime":1671220964509,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qaSro7kFhxD6INbZ","name":"Hand Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"A lightweight crossbow designed to be held in one hand or strapped to one's wrist to fire light bolts.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":75,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"handcrossbow","properties":{"amm":true,"lgt":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233885,"modifiedTime":1671220964514,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qcEiSj67zfbLvYdJ","name":"Pike +2","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-stone-worn.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":18,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"pike","properties":{"hvy":true,"rch":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233885,"modifiedTime":1671220964519,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qhdGVfT5j6u46mtk","name":"Greataxe +1","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greataxe","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233886,"modifiedTime":1671220964523,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qmuOeNsOKwkn6K8W","name":"Vicious Flail","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"A set of chain-linked spiked balls lashed to a stout wooden shaft. The flail deals devastating damage when whirled in a deadly arc.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d8+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"flail","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233886,"modifiedTime":1671220964545,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qw05Om9XWqTMoio2","name":"Ring of the Ram","type":"equipment","img":"icons/equipment/finger/ring-band-engraved-scrolls-silver.webp","system":{"description":{"value":"(Requires attunement)This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 to 3 of its charges to attack one creature you can see within 60 feet of you. The ring produces a spectral ram's head and makes its attack roll with a +7 bonus. On a hit, for each charge you spend, the target takes 2d10 force damage and is pushed 5 feet away from you.Alternatively, you can expend 1 to 3 of the ring's charges as an action to try to break an object you can see within 60 feet of you that isn't being worn or carried. The ring makes a Strength check with a +5 bonus for each charge you spend.Foundry NoteThe Other Formula is set to calculate 1d20 + 5 for one charge expended to make the Strength check. Please +5 per any extra charge as required.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"7","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10","force"]],"versatile":""},"formula":"1d20 +5","save":{"ability":"","dc":null,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233887,"modifiedTime":1671220964551,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"r8yK6SrWOz4hqF01","name":"Vicious Lance","type":"weapon","img":"icons/weapons/ammunition/arrow-head-war-flight.webp","system":{"description":{"value":"A shining steel tip to puncture the hardiest of foe's defences, driven in by the force of a galloping steed. Although best suited for mounted combat, the lance can be brought to lethal effect on foot in the right hands.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.\nSpecial. You have disadvantage when you use a lance to attack a target within 5 feet of you. Also, a lance requires two hands to wield when you aren't mounted.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d12 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"lance","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":true,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233887,"modifiedTime":1671220964562,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"r97KnMO7Zxgfdh3P","name":"Lance +3","type":"weapon","img":"icons/weapons/ammunition/arrow-head-war-flight.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.\nSpecial. You have disadvantage when you use a lance to attack a target within 5 feet of you. Also, a lance requires two hands to wield when you aren't mounted.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"lance","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":true,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233888,"modifiedTime":1671220964568,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rJKXDPikXSYXYgb5","name":"Net +1","type":"weapon","img":"icons/tools/fishing/net-gold.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack rolls made with this magic weapon.\nSpecial. A Large or smaller creature hit by a net is restrained until it is freed. A net has no effect on creatures that are formless, or creatures that are Huge or larger. A creature can use its action to make a DC 10 Strength check, freeing itself or another creature within its reach on a success. Dealing 5 slashing damage to the net (AC 10) also frees the creature without harming it, ending the effect and destroying the net. When you use an action, bonus action, or reaction to attack with a net, you can make only one attack regardless of the number of attacks you can normally make.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":15,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":10,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"net","properties":{"spc":true,"thr":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233888,"modifiedTime":1671220964579,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rLMflzmxpe8JGTOA","name":"Chain Mail","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"Made of interlocking metal rings, chain mail includes a layer of quilted fabric worn underneath the mail to prevent chafing and to cushion the impact of blows. The suit includes gauntlets.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":55,"price":{"value":75,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"chainmail","speed":{"value":null,"conditions":""},"strength":13,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233889,"modifiedTime":1671220964584,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rOG1OM2ihgPjOvFW","name":"Glaive","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"A crescent blade is mounted on the end of a tall metal shaft. This polearm provies the ability to attack with deadly efficiency from greater range than typical melee weapons.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"glaive","properties":{"hvy":true,"two":true,"rch":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233889,"modifiedTime":1671220964587,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rQ6sO7HDWzqMhSI3","name":"Spell Scroll Cantrip","type":"consumable","img":"icons/sundries/scrolls/scroll-bound-orange-tan.webp","system":{"description":{"value":"A spell scroll bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can read the scroll and cast its spell without providing any material components. Otherwise, the scroll is unintelligible. Casting the spell by reading the scroll requires the spell's normal casting time. Once the spell is cast, the words on the scroll fade, and it crumbles to dust. If the casting is interrupted, the scroll is not lost.\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 10 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity.\nSave DC: 13Attack Bonus: +5.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"common","identified":true,"activation":{"type":"action","cost":1,"condition":"Spell must be on the caster's spell list."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"5","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":13,"scaling":"flat"},"consumableType":"scroll"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233890,"modifiedTime":1671220964591,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rRMaaGZ7qbzqMvoI","name":"Bowl of Commanding Water Elementals","type":"consumable","img":"icons/magic/water/pseudopod-swirl-blue.webp","system":{"description":{"value":"Wondrous item\nWhile this bowl is filled with water, you can use an action to speak the bowl's command word and summon a @Compendium[dnd5e.monsters.namJz755U1EhvEJa]{Water Elemental}, as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell. The bowl can't be used this way again until the next dawn.\nThe bowl is about 1 foot in diameter and half as deep. It weighs 3 pounds and holds about 3 gallons.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":8000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233890,"modifiedTime":1671220964601,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rTbVrNcwApnuTz5E","name":"Glassblower's Tools","type":"tool","img":"icons/commodities/tech/metal-insert.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in glassblowing.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":30,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"glassblower","ability":"int","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233891,"modifiedTime":1671220964607,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rTn4p9nJr4Aq2GPB","name":"Potion of Invisibility","type":"consumable","img":"icons/consumables/potions/bottle-bulb-empty-glass.webp","system":{"description":{"value":"This potion's container looks empty but feels as though it holds liquid. \nWhen you drink it, you become invisible for 1 hour. Anything you wear or carry is invisible with you. The effect ends early if you attack or cast a spell.\n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":180,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233892,"modifiedTime":1671220964611,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rY9sRFQp5CFSfsat","name":"Helm of Comprehending Languages","type":"equipment","img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","system":{"description":{"value":"Wondrous item\nWhile wearing this helm, you can use an action to cast the @Compendium[dnd5e.spells.4dSvfvTy2ZIJ3K4k]{Comprehend Languages} spell from it at will.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233892,"modifiedTime":1671220964615,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rc9nkN6YOD7ogtEi","name":"Glaive +3","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +3","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"glaive","properties":{"hvy":true,"two":true,"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233893,"modifiedTime":1671220964618,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rhGulc3gEJhnuP31","name":"Helm of Brilliance","type":"equipment","img":"icons/magic/lightning/bolt-strike-smoke-yellow.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThis dazzling helm is set with 1d10 diamonds, 2d10 rubies, 3d10 fire opals, and 4d10 opals. Any gem pried from the helm crumbles to dust. When all the gems are removed or destroyed, the helm loses its magic.\nYou gain the following benefits while wearing it:\n\nYou can use an action to cast one of the following spells (save DC 18), using one of the helm's gems of the specified type as a component: @Compendium[dnd5e.spells.BP3GCwa66IAw1yTG]{Daylight} (opal), @Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball} (fire opal), @Compendium[dnd5e.spells.eGMhwmuleAM46C6L]{Prismatic Spray} (diamond), or @Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire} (ruby). The gem is destroyed when the spell is cast and disappears from the helm.\nAs long as it has at least one diamond, the helm emits dim light in a 30-foot radius when at least one undead is within that area. Any undead that starts its turn in that area takes 1d6 radiant damage.\nAs long as the helm has at least one ruby, you have resistance to fire damage.\nAs long as the helm has at least one fire opal, you can use an action and speak a command word to cause one weapon you are holding to burst into flames. The flames emit bright light in a 10-foot radius and dim light for an additional 10 feet. The flames are harmless to you and the weapon. When you hit with an attack using the blazing weapon, the target takes an extra 1d6 fire damage. The flames last until you use a bonus action to speak the command word again or until you drop or stow the weapon.\n\nRoll a d20 if you are wearing the helm and take fire damage as a result of failing a saving throw against a spell. On a roll of 1, the helm emits beams of light from its remaining gems. Each creature within 60 feet of the helm other than you must succeed on a DC 17 Dexterity saving throw or be struck by a beam, taking radiant damage equal to the number of gems in the helm. The helm and its gems are then destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233893,"modifiedTime":1671220964623,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rvxGvcUzoQXVNbAu","name":"Portable Hole","type":"consumable","img":"icons/magic/unholy/barrier-shield-glowing-pink.webp","system":{"description":{"value":"Wondrous item\nThis 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.\nYou 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 can't be used to create open passages. Any creature inside an open Portable Hole can exit the hole by climbing out of it.\nYou 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 what's in it, the hole weighs next to nothing.\nIf the hole is folded up, a creature within the hole's 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.\nPlacing 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 can't be reopened.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":8000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":3,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":10,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233894,"modifiedTime":1671220964648,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"s2kQs21J3cFg7ZSs","name":"Figurine of Wondrous Power (Ebony Fly)","type":"consumable","img":"icons/commodities/biological/legs-insect-brown.webp","system":{"description":{"value":"Wondrous item\nA figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\nEbony Fly. This ebony statuette is carved in the likeness of a horsefly. It can become a @Compendium[dnd5e.monsters.rLl22hYeAH3ljhdI]{Giant Fly} for up to 12 hours and can be ridden as a mount. Once it has been used, it can't be used again until 2 days have passed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":6000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"12","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233894,"modifiedTime":1671220964655,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"s4fR8bxQGSt4wbH7","name":"Cube of Force","type":"consumable","img":"icons/sundries/gaming/dice-runed-brown.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThis cube is about an inch across. Each face has a distinct marking on it that can be pressed. The cube starts with 36 charges, and it regains 1d20 expended charges daily at dawn.\nYou can use an action to press one of the cube's faces, expending a number of charges based on the chosen face, as shown in the Cube of Force Faces table. Each face has a different effect. If the cube has insufficient charges remaining, nothing happens. Otherwise, a barrier of invisible force springs into existence, forming a cube 15 feet on a side. The barrier is centered on you, moves with you, and lasts for 1 minute, until you use an action to press the cube's sixth face, or the cube runs out of charges. You can change the barrier's effect by pressing a different face of the cube and expending the requisite number of charges, resetting the duration.\nIf your movement causes the barrier to come into contact with a solid object that can't pass through the cube, you can't move any closer to that object as long as the barrier remains.\n\n\n\nFace\nCharges\nEffect\n\n\n1\n1\nGases, wind, and fog can't pass through the barrier.\n\n\n2\n2\nNonliving matter can't pass through the barrier. Walls, floors, and ceilings can pass through at your discretion.\n\n\n3\n3\nLiving matter can't pass through the barrier.\n\n\n4\n4\nSpell effects can't pass through the barrier.\n\n\n5\n5\nNothing can pass through the barrier. Walls, floors, and ceilings can pass through at your discretion.\n\n\n6\n0\nThe barrier deactivates.\n\n\n\nThe cube loses charges when the barrier is targeted by certain spells or comes into contact with certain spell or magic item effects, as shown in the table below.\n\n\n\nSpell or Item\nCharges Lost\n\n\n@Compendium[dnd5e.spells.HBHbOGKNVVprSlwn]{Disintegrate}\n1d12\n\n\n@Compendium[dnd5e.items.t7GfyRp3dB3lqS9i]{Horn of Blasting}\n1d10\n\n\n@Compendium[dnd5e.spells.d9MwcXi7Il3HROXd]{Passwall}\n1d6\n\n\n@Compendium[dnd5e.spells.eGMhwmuleAM46C6L]{Prismatic Spray}\n1d20\n\n\n@Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire}\n1d4\n\n\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":16000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Must have enough charges for the face pressed otherwise the Action is lost."},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cube"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":36,"max":"36","per":"charges","recovery":"1d20","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233895,"modifiedTime":1671220964662,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"sIiUbRJItYAs5gtA","name":"Dancing Longsword","type":"weapon","img":"icons/skills/melee/maneuver-greatsword-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":4,"max":"4","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":true,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233895,"modifiedTime":1671220964674,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"sP8CV5VNEcY1Yh1Q","name":"Adamantine Plate Armor","type":"equipment","img":"icons/equipment/chest/breastplate-collared-steel.webp","system":{"description":{"value":"This armor is reinforced with adamantine, one of the hardest substances in existence.\nWhile you're wearing it, any critical hit against you becomes a normal hit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":65,"price":{"value":2000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"plate","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233896,"modifiedTime":1690539416931,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"sSs3hSzkKBMNBgTs","name":"Shield","type":"equipment","img":"icons/equipment/shield/round-wooden-boss-steel-brown.webp","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233897,"modifiedTime":1690539664692,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"sXEkkTDXWQDUMzsC","name":"Censer of Controlling Air Elementals","type":"consumable","img":"icons/commodities/treasure/goblet-worn-gold.webp","system":{"description":{"value":"Wondrous item\nWhile incense is burning in this censer, you can use an action to speak the censer's command word and summon an @Compendium[dnd5e.monsters.banHjKDMCegbUwYE]{Air Elemental}, as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell. The censer can't be used this way again until the next dawn.\nThis 6-inch-wide, 1-foot-high vessel resembles a chalice with a decorated lid. It weighs 1 pound.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":8000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233897,"modifiedTime":1671220964695,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"sdHSbitJxgTX6aDG","name":"Greatsword of Life Stealing","type":"weapon","img":"icons/creatures/claws/claw-curved-poison-purple.webp","system":{"description":{"value":"(Requires attunement)\nWhen you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":1000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Must roll a 20 and the target cannot be undead."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 +@mod","slashing"]],"versatile":""},"formula":"3d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233898,"modifiedTime":1671220964699,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"setcTdSZ09rmsqMn","name":"Warhammer +3","type":"weapon","img":"icons/weapons/hammers/hammer-drilling-spiked.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","bludgeoning"]],"versatile":"1d10 + @mod +3"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"warhammer","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233899,"modifiedTime":1671220964706,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"sfegfmo59MHJg2YC","name":"Scimitar of Life Stealing","type":"weapon","img":"icons/creatures/claws/claw-curved-poison-purple.webp","system":{"description":{"value":"(Requires attunement)\nWhen you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":1000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Must roll a 20 and the target cannot be undead."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 +@mod","slashing"]],"versatile":""},"formula":"3d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"scimitar","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233899,"modifiedTime":1671220964715,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"skUih6tBvcBbORzA","name":"Mason's Tools","type":"tool","img":"icons/tools/hand/hammer-and-nail.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in masonry.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":8,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"mason","ability":"wis","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233900,"modifiedTime":1671220964771,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"skoUe223EvRYGPL6","name":"Medallion of Thoughts","type":"equipment","img":"icons/equipment/neck/pendant-bronze-gem-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nThe medallion has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the @Compendium[dnd5e.spells.ppWAAEul0QHtm4er]{Detect Thoughts} spell (save DC 13) from it. The medallion regains 1d3 expended charges daily at dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.01,"price":{"value":3000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"flat"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233901,"modifiedTime":1671220964778,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"sl6yiYSlqkHiVVSN","name":"Shortsword +1","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233901,"modifiedTime":1671220964782,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"sqcerAMszpe3hwyI","name":"Bronze Horn of Valhalla","type":"consumable","img":"icons/tools/instruments/flute-simple-wood.webp","system":{"description":{"value":"Wondrous item\nYou can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a @Compendium[dnd5e.monsters.kz1t6xeXVwODpYb2]{Berserker}. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\nFour types of Horn of Valhalla are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly from the @Compendium[dnd5e.tables.RwerG95cIk2uRpsQ]{Horn of Valhalla} table.\nBronze Horn of Valhalla.This bronze horn summons [[/r 4d4 + 4]] berserkers when blown and requires proficiency with all medium armor to be used.\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":11200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d4 +4",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233902,"modifiedTime":1671220964786,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"srTRzwTfWKO5opOo","name":"Portable Ram","type":"consumable","img":"icons/commodities/wood/bamboo-brown.webp","system":{"description":{"value":"You can use a portable ram to break down doors. When doing so, you gain a +4 bonus on the Strength check. One other character can help you use the ram, giving you advantage on this check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":35,"price":{"value":4,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["d20 + @abilities.str.mod +4",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233902,"modifiedTime":1671220964798,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"stlFCpqW3ZuAftTi","name":"Dancing Shortsword","type":"weapon","img":"icons/skills/melee/maneuver-greatsword-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":4,"max":"4","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":true,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233903,"modifiedTime":1671220964802,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"szNhDWpks5BhEXhT","name":"Ioun Stone of Regeneration","type":"equipment","img":"icons/commodities/stone/rock-chunk-pumice-white.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Regeneration. You regain 15 hit points at the end of each hour this pearly white spindle orbits your head, provided that you have at least 1 hit point.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":4000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233903,"modifiedTime":1671220964815,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"t5yP0d7YaKwuKKiH","name":"Yew Wand","type":"weapon","img":"icons/weapons/staves/staff-simple-brown.webp","system":{"description":{"value":"This wand or scepter has been carved from yew or another special wood and inscribed with powerful runes to invoke the power of nature by those who heed its call.\nSpellcasting Focus. A druidic focus is a special item designed to channel the power of spells from the druid's spell list. A druid can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"foc":true,"amm":false,"hvy":false,"fin":false,"fir":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233904,"modifiedTime":1671220964819,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"t7GfyRp3dB3lqS9i","name":"Horn of Blasting","type":"consumable","img":"icons/tools/instruments/flute-simple-wood.webp","system":{"description":{"value":"Wondrous item\nYou can use an action to speak the horn's command word and then blow the horn, which emits a thunderous blast in a 30-foot cone that is audible 600 feet away. Each creature in the cone must make a DC 15 Constitution saving throw. On a failed save, a creature takes 5d6 thunder damage and is deafened for 1 minute. On a successful save, a creature takes half as much damage and isn't deafened. Creatures and objects made of glass or crystal have disadvantage on the saving throw and take 10d6 thunder damage instead of 5d6.\nEach use of the horn's magic has a 20 percent chance of causing the horn to explode. The explosion deals 10d6 fire damage to the blower and destroys the horn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":450,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word and blow the horn."},"duration":{"value":"","units":""},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d6","thunder"]],"versatile":""},"formula":"10d6","save":{"ability":"con","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233904,"modifiedTime":1671220964823,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"t8L7B0JWamsvxhui","name":"Quarterstaff +1","type":"weapon","img":"icons/weapons/staves/staff-simple-gold.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","bludgeoning"]],"versatile":"1d8 + @mod +1"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"quarterstaff","properties":{"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233905,"modifiedTime":1671220964837,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"tC0kcqZT9HHAO0PD","name":"Pike","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-stone-worn.webp","system":{"description":{"value":"A sturdy blade mounted upon the end of a long metal haft. Designed as a defensive weapon with considerable reach to both fend off and menace foes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":18,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"pike","properties":{"hvy":true,"rch":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233905,"modifiedTime":1671220964854,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"tEWhsb2lYF4uvF0z","name":"Arrow +1","type":"consumable","img":"icons/weapons/ammunition/arrow-head-war.webp","system":{"description":{"value":"Ammunition used for bows of all varieties. It has been imbued with magic.\nYou have a bonus to attack and damage rolls made with this piece of magic ammunition. Once it hits a target, the ammunition is no longer magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.05,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233906,"modifiedTime":1671220964860,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"tFLmAPUDLxBY8jFO","name":"Nine Lives Stealer Greatsword","type":"weapon","img":"icons/weapons/swords/sword-broad-crystal-paired.webp","system":{"description":{"value":"(Requires attunement)You gain a +2 bonus to attack and damage rolls made with this magic weapon.The sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.Foundry NoteThe 9 charges reflect a fully charged blade. Please adjust accordingly as required.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":8000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Critical hit on a creature of 100 hit points or less. Undead and constructs are immune."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":9,"max":"9","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 +@mod +2","slashing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233908,"modifiedTime":1671220964867,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"tH5Rn0JVRG1zdmPa","name":"Orb","type":"weapon","img":"icons/commodities/gems/pearl-natural.webp","system":{"description":{"value":"This spherical talisman serves as a spellcasting focus, helping the practitioner to channel arcane, primal, or divine energies.\nSpellcasting Focus. An arcane focus is a special item designed to channel the power of arcane spells. A sorcerer, warlock, or wizard can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"foc":true,"amm":false,"hvy":false,"fin":false,"fir":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233909,"modifiedTime":1671220964871,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"tI3rWx4bxefNCexS","name":"Spell Scroll 6th Level","type":"consumable","img":"icons/sundries/scrolls/scroll-bound-sealed-red-green.webp","system":{"description":{"value":"A spell scroll bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can read the scroll and cast its spell without providing any material components. Otherwise, the scroll is unintelligible. Casting the spell by reading the scroll requires the spell's normal casting time. Once the spell is cast, the words on the scroll fade, and it crumbles to dust. If the casting is interrupted, the scroll is not lost.\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 16 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity.\nSave DC: 17Attack Bonus: +9.\nA wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 16 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":1280,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":"Spell must be on the caster's spell list."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"9","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":17,"scaling":"flat"},"consumableType":"scroll"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233909,"modifiedTime":1671220964876,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"tIwoSAGJlcuyiwaQ","name":"Dragon Scale Mail","type":"equipment","img":"icons/equipment/chest/breastplate-banded-steel.webp","system":{"description":{"value":"(Requires attunement)\nDragon Scale Mail is made of the scales of one kind of dragon. Sometimes dragons collect their cast-off scales and gift them to humanoids. Other times, hunters carefully skin and preserve the hide of a dead dragon. In either case, dragon scale mail is highly valued.\nWhile wearing this armor, you gain a +1 bonus to AC, you have advantage on saving throws against the Frightful Presence and Breath Weapons of dragons, and you have resistance to one damage type that is determined by the kind of dragon that provided the scales (see the table).\nAdditionally, you can focus your senses as an action to magically discern the distance and direction to the closest dragon within 30 miles of you that is of the same type as the armor. This special action can't be used again until the next dawn.\n\n\n\nDragon\nResistance\n\n\nBlack\nAcid\n\n\nBlue\nLightning\n\n\nBrass\nFire\n\n\nBronze\nLightning\n\n\nCopper\nAcid\n\n\nGold\nFire\n\n\nGreen\nPoison\n\n\nRed\nFire\n\n\nSilver\nCold\n\n\nWhite\nCold\n\n\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":45,"price":{"value":4000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"mi"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"scalemail","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233910,"modifiedTime":1690538818576,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"tJQXAJx92wL6GM1v","name":"Mithral Ring Mail","type":"equipment","img":"icons/equipment/chest/breastplate-banded-simple-leather-brown.webp","system":{"description":{"value":"Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":40,"price":{"value":830,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"ringmail","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233911,"modifiedTime":1690539366249,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"tTqixDDmzAfs995G","name":"Giant Slayer Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-red.webp","system":{"description":{"value":"You gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":7000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","piercing"]],"versatile":""},"formula":"2d6","save":{"ability":"str","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233912,"modifiedTime":1671220964898,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"tWJLHIL6ZIZUez9k","name":"Manacles","type":"consumable","img":"icons/sundries/survival/cuffs-shackles-steel.webp","system":{"description":{"value":"These metal restraints can bind a Small or Medium creature. Escaping the manacles requires a successful DC 20 Dexterity check. Breaking them requires a successful DC 20 Strength check. Each set of manacles comes with one key. Without the key, a creature proficient with thieves' tools can pick the manacles' lock with a successful DC 15 Dexterity check. Manacles have 15 hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":"Creature must be Small or Medium."},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":20,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233912,"modifiedTime":1671220964902,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"tfDxZIKDpOkz6pbx","name":"Grappling Hook","type":"loot","img":"icons/tools/fishing/hook-multi-steel-brown.webp","system":{"description":{"value":"A device with iron claws, can be used with rope for dragging or grasping.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233913,"modifiedTime":1671220964907,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"thkvJ5QBRORIwkkV","name":"Gem of Brightness","type":"consumable","img":"icons/commodities/gems/gem-faceted-octagon-yellow.webp","system":{"description":{"value":"Wondrous item\nThis prism has 50 charges. While you are holding it, you can use an action to speak one of three command words to cause one of the following effects:\n\nThe first command word causes the gem to shed bright light in a 30-foot radius and dim light for an additional 30 feet. This effect doesn't expend a charge. It lasts until you use a bonus action to repeat the command word or until you use another function of the gem.\nThe second command word expends 1 charge and causes the gem to fire a brilliant beam of light at one creature you can see within 60 feet of you. The creature must succeed on a DC 15 Constitution saving throw or become blinded for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\nThe third command word expends 5 charges and causes the gem to flare with blinding light in a 30- foot cone originating from it. Each creature in the cone must make a saving throw as if struck by the beam created with the second command word.\n\nWhen all of the gem's charges are expended, the gem becomes a nonmagical jewel worth 50 gp.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":5000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":"Command word."},"duration":{"value":"","units":""},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":30,"long":60,"units":"ft"},"uses":{"value":50,"max":"50","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233913,"modifiedTime":1671220964911,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"trmWAdUoR6Y2B7rA","name":"Hooded Lantern","type":"consumable","img":"icons/sundries/lights/lantern-iron-yellow.webp","system":{"description":{"value":"A hooded lantern casts bright light in a 30-foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil. As an action, you can lower the hood, reducing the light to dim light in a 5-foot radius.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"6","units":"hour"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233914,"modifiedTime":1671220964918,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"tt4WokZBZMGqgYm5","name":"Shortbow +2","type":"weapon","img":"icons/weapons/bows/shortbow-recurve.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"shortbow","properties":{"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233914,"modifiedTime":1671220964923,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"tut1jbW3UCsrUjCG","name":"Pole","type":"loot","img":"icons/commodities/wood/wood-pole.webp","system":{"description":{"value":"A ten-foot long pole of sturdy wood.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233915,"modifiedTime":1671220964937,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"twRJhPtDQe1HceFt","name":"Padded Armor +1","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":8,"price":{"value":1505,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"padded","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233915,"modifiedTime":1671220964947,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"u4ewpAFZjLrWrmQv","name":"Folding Boat","type":"consumable","img":"icons/environment/traps/cage-simple-wood.webp","system":{"description":{"value":"Wondrous item\nThis object appears as a wooden box that measures 12 inches long, 6 inches wide, and 6 inches deep. It weighs 4 pounds and floats. It can be opened to store items inside. This item also has three command words, each requiring you to use an action to speak it.\nOne command word causes the box to unfold into a boat 10 feet long, 4 feet wide, and 2 feet deep. The boat has one pair of oars, an anchor, a mast, and a lateen sail. The boat can hold up to four Medium creatures comfortably.\nThe second command word causes the box to unfold into a ship 24 feet long, 8 feet wide, and 6 feet deep. The ship has a deck, rowing seats, five sets of oars, a steering oar, an anchor, a deck cabin, and a mast with a square sail. The ship can hold fifteen Medium creatures comfortably.\nWhen the box becomes a vessel, its weight becomes that of a normal vessel its size, and anything that was stored in the box remains in the boat.\nThe third command word causes the folding boat to fold back into a box, provided that no creatures are aboard. Any objects in the vessel that can't fit inside the box remain outside the box as it folds. Any objects in the vessel that can fit inside the box do so.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":10000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233916,"modifiedTime":1671220964951,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"uHL99JKLUpTKAbz8","name":"Staff of Withering","type":"weapon","img":"icons/weapons/staves/staff-skull-brown.webp","system":{"description":{"value":"(Requires attunement)This staff has 3 charges and regains 1d3 expended charges daily at dawn.The staff can be wielded as a magic quarterstaff. On a hit, it deals damage as a normal quarterstaff, and you can expend 1 charge to deal an extra 2d10 necrotic damage to the target. In addition, the target must succeed on a DC 15 Constitution saving throw or have disadvantage for 1 hour on any ability check or saving throw that uses Strength or Constitution.Foundry NoteThe Other Formula button has been configured to roll the staff's necrotic damage if required.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":3000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"charges","recovery":"1d3"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":"1d8 + @mod"},"formula":"2d10","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true,"ada":false,"sil":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233917,"modifiedTime":1671220964956,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"uIHXYhnOwETlA5lT","name":"Shortsword +3","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"shortsword","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233917,"modifiedTime":1671220964961,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"uLY74ppOrTaWKwer","name":"Rapier +2","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"rapier","properties":{"fin":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233918,"modifiedTime":1671220964965,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"uRoHwk1c8e5xJjkV","name":"Sickle +2","type":"weapon","img":"icons/weapons/sickles/sickle-curved.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod +2","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"sickle","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233919,"modifiedTime":1671220964969,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"uVm7MiB71QblfnoY","name":"Ink Pen","type":"loot","img":"icons/tools/scribal/pen-steel-grey-brown.webp","system":{"description":{"value":"A deviced used in combination with ink to write or draw on a sheet of paper.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233919,"modifiedTime":1671220964973,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"uWUD93jwuO2Jxkti","name":"Arrow-Catching Shield","type":"equipment","img":"icons/equipment/shield/wardoor-wooden-boss-brown.webp","system":{"description":{"value":"You gain a +2 bonus to AC against ranged attacks while you wield this shield. This bonus is in addition to the shield's normal bonus to AC. In addition, whenever an attacker makes a ranged attack against a target within 5 feet of you, you can use your reaction to become the target of the attack instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":6000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"reaction","cost":1,"condition":"A ranged attack within 5 ft."},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"shield","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233920,"modifiedTime":1690539658859,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"uXOT4fYbgPY8DGdd","name":"Crystal","type":"weapon","img":"icons/commodities/gems/gem-rough-navette-yellow-green.webp","system":{"description":{"value":"This crystaline talisman serves as a spellcasting focus, helping the practitioner to channel arcane, primal, or divine energies.\nSpellcasting Focus. An arcane focus is a special item designed to channel the power of arcane spells. A sorcerer, warlock, or wizard can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"foc":true,"amm":false,"hvy":false,"fin":false,"fir":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233920,"modifiedTime":1671220964981,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ugzwHl8vYaPu2GNd","name":"Climber's Kit","type":"consumable","img":"icons/weapons/sickles/sickle-hooked-wood.webp","system":{"description":{"value":"A climber's kit includes special pitons, boot tips, gloves, and a harness. You can use the climber's kit as an action to anchor yourself; when you do, you can't fall more than 25 feet from the point where you anchored yourself, and you can't climb more than 25 feet away from that point without undoing the anchor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":12,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233921,"modifiedTime":1671220964984,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ukcKemEoTTRB9yLC","name":"Defender Longsword","type":"weapon","img":"icons/weapons/polearms/spear-flared-silver-pink.webp","system":{"description":{"value":"(Requires attunement)You gain a +3 bonus to attack and damage rolls made with this magic weapon.The first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.Foundry NoteThe sword's bonus to attack and damage rolls have been included; please remember to manually subtract should the user transfer any of the bonus to their AC.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":24000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +3","slashing"]],"versatile":"1d10 + @mod +3"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true,"ada":false,"sil":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233921,"modifiedTime":1671220965471,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"uuh4UH3Jx5CsFjdA","name":"Perfume","type":"loot","img":"icons/consumables/potions/bottle-bulb-corked-purple.webp","system":{"description":{"value":"A vial of aromatic perfume.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233922,"modifiedTime":1671220965496,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"uw6fINSmZ2j2o57A","name":"Tankard","type":"backpack","img":"icons/containers/kitchenware/mug-steel-wood-brown.webp","system":{"description":{"value":"It is a form of drinkware consisting of a large, roughly cynlindrical, drinking cup with a single handle.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":1,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233922,"modifiedTime":1671220965504,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"v4uNbmiz4ECTI89n","name":"Ioun Stone of Protection","type":"equipment","img":"icons/commodities/gems/gem-rough-ball-purple.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nAn Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\nStone of Protection. You gain a +1 bonus to AC while this dusty rose prism orbits your head.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":1200,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d3",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[{"label":"Ioun Stone of Protection","icon":"icons/commodities/gems/gem-rough-ball-purple.webp","origin":"Compendium.dnd5e.items.v4uNbmiz4ECTI89n","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"GWrRc9Yfqt7N24I6","changes":[{"key":"system.attributes.ac.bonus","mode":2,"value":"+1"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233950,"modifiedTime":1690481078298,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"vJvb6fx3JVPmhG8x","name":"Merchant's Scale","type":"loot","img":"icons/commodities/currency/coins-assorted-mix-silver.webp","system":{"description":{"value":"A scale includes a small balance, pans, and a suitable assortment of weights up to 2 pounds. With it, you can measure the exact weight of small objects, such as raw precious metals or trade goods, to help determine their worth.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233951,"modifiedTime":1671220965515,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"vZdLYfHlLcZqQ8zc","name":"Chime of Opening","type":"consumable","img":"icons/weapons/guns/gun-worn-steel.webp","system":{"description":{"value":"Wondrous item\nThis hollow metal tube measures about 1 foot long and weighs 1 pound. You can strike it as an action, pointing it at an object within 120 feet of you that can be opened, such as a door, lid, or lock. The chime issues a clear tone, and one lock or latch on the object opens unless the sound can't reach the object. If no locks or latches remain, the object itself opens.\nThe chime can be used ten times. After the tenth time, it cracks and becomes useless.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"The sound must reach the target."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":10,"max":"10","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233951,"modifiedTime":1671220965535,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"vmbB2SK6pQU2Vkzb","name":"Rod of Rulership","type":"consumable","img":"icons/skills/melee/hand-grip-staff-blue.webp","system":{"description":{"value":"(Requires attunement)\nYou can use an action to present the rod and command obedience from each creature of your choice that you can see within 120 feet of you. Each target must succeed on a DC 15 Wisdom saving throw or be charmed by you for 8 hours. While charmed in this way, the creature regards you as its trusted leader. If harmed by you or your companions, or commanded to do something contrary to its nature, a target ceases to be charmed in this way. The rod can't be used again until the next dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":16000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":15,"scaling":"flat"},"consumableType":"rod"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233953,"modifiedTime":1671220965543,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"vpenjFjUyEBLLlUc","name":"Trinket","type":"loot","img":"icons/commodities/materials/hair-tuft-white.webp","system":{"description":{"value":"A placeholder for the non-SRD items introduced on pg. 159, with the d100 table on 160-161.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233953,"modifiedTime":1671220965547,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"vsgmACFYINloIdPm","name":"Half Plate Armor","type":"equipment","img":"icons/equipment/chest/breastplate-cuirass-steel-grey.webp","system":{"description":{"value":"Half plate consists of shaped metal plates that cover most of the wearer's body. It does not include leg protection beyond simple greaves that are attached with leather straps.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":40,"price":{"value":750,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"halfplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233954,"modifiedTime":1690539014883,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"vuThcmO7MYlw5b9f","name":"Trident +1","type":"weapon","img":"icons/skills/melee/spear-tips-triple-orange.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","piercing"]],"versatile":"1d8 + @mod +1"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"trident","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233954,"modifiedTime":1671220965556,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"w56FIjFafs2rN6iK","name":"Mace of Smiting","type":"weapon","img":"icons/weapons/maces/mace-spiked-wood-grey.webp","system":{"description":{"value":"You gain a +1 bonus to attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use the mace to attack a construct.When you roll a 20 on an attack roll made with this weapon, the target takes an extra 2d6 bludgeoning damage, or 4d6 bludgeoning damage if it's a construct. If a construct has 25 hit points or fewer after taking this damage, it is destroyed.Foundry NoteThe bonus to attack and damage rolls has been set at the +1. In the instances of hitting a construct, please remember to +2 to both of these results. Additionally, on a hit of 20 against a construct, please use the Other Formula one more time.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":7000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +1","bludgeoning"]],"versatile":""},"formula":"2d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"mace","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233955,"modifiedTime":1671220965564,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"wBYmPQG3nZfD88aP","name":"Belt of Storm Giant Strength","type":"equipment","img":"icons/equipment/waist/sash-cloth-gold-purple.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this belt, your Strength score changes to 29. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":24000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"clothing","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[{"label":"Belt of Storm Giant Strength","icon":"icons/equipment/waist/sash-cloth-gold-purple.webp","origin":"Compendium.dnd5e.items.wBYmPQG3nZfD88aP","duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":false,"_id":"GjOniAcdINQsZbnX","changes":[{"key":"system.abilities.str.value","mode":4,"value":"29"}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.303","createdTime":1661787233955,"modifiedTime":1690480557337,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"wGDDt17DpBcXPuUD","name":"Hammer of Thunderbolts","type":"weapon","img":"icons/skills/melee/strike-hammer-destructive-blue.webp","system":{"description":{"value":"You gain a +1 bonus to attack and damage rolls made with this magic weapon (maul).\nGiant's Bane (requires attunement)\nYou must be wearing a Belt of Giant Strength (any variety) and Gauntlets of Ogre Power to attune to this weapon. The attunement ends if you take off either of those items. While you are attuned to this weapon and holding it, your Strength score increases by 4 and can exceed 20, but not 30.\nWhen you roll a 20 on an attack roll made with this weapon against a giant, the giant must succeed on a DC 17 Constitution saving throw or die.\nThe hammer also has 5 charges. While attuned to it, you can expend 1 charge and make a ranged weapon attack with the hammer, hurling it as if it had the thrown property with a normal range of 20 feet and a long range of 60 feet. If the attack hits, the hammer unleashes a thunderclap audible out to 300 feet. The target and every creature within 30 feet of it must succeed on a DC 17 Constitution saving throw or be stunned until the end of your next turn. The hammer regains 1d4 + 1 expended charges daily at dawn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":16000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":5,"max":"5","per":"charges","recovery":"1d4 + 1"},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 +@mod +1","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"con","dc":17,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"maul","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233956,"modifiedTime":1671220965574,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"wGKykLRS8UqChNXI","name":"Dimensional Shackles","type":"consumable","img":"icons/magic/unholy/orb-swirling-teal.webp","system":{"description":{"value":"Wondrous item\nYou can use an action to place these shackles on an incapacitated creature. The shackles adjust to fit a creature of Small to Large size. In addition to serving as mundane manacles, the shackles prevent a creature bound by them from using any method of extradimensional movement, including teleportation or travel to a different plane of existence. They don't prevent the creature from passing through an interdimensional portal.\nYou and any creature you designate when you use the shackles can use an action to remove them. Once every 30 days, the bound creature can make a DC 30 Strength (Athletics) check. On a success, the creature breaks free and destroys the shackles.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":3000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Creature of Small to Large and must be incapacitated."},"duration":{"value":"30","units":"day"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":30,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233957,"modifiedTime":1671220965579,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"wNKYbKYwOHbA7SH8","name":"Potion of Heroism","type":"consumable","img":"icons/consumables/potions/potion-bottle-corked-fancy-orange.webp","system":{"description":{"value":"This blue potion bubbles and steams as if boiling.For 1 hour after drinking it, you gain 10 temporary hit points that last for 1 hour. For the same duration, you are under the effect of the @Compendium[dnd5e.spells.8dzaICjGy6mTUaUr]{Bless} spell (no concentration required)Foundry NoteThe Other Formula button can be used to roll the bonus 1d4 received from Bless.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":180,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10","temphp"]],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233957,"modifiedTime":1671220965584,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"wNWK6yJMHG9ANqQV","name":"Blowgun","type":"weapon","img":"icons/weapons/staves/staff-simple-brown.webp","system":{"description":{"value":"A primitive, but deadly, weapon favored by tribes and guerrila fighters. The darts fired from this gun can puncture and deliver lethal doses of venom.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":25,"long":100,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"blowgun","properties":{"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233958,"modifiedTime":1671220965589,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"wa1VF8TXHmkrrR35","name":"Spell Scroll 5th Level","type":"consumable","img":"icons/sundries/scrolls/scroll-plain-red.webp","system":{"description":{"value":"A spell scroll bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can read the scroll and cast its spell without providing any material components. Otherwise, the scroll is unintelligible. Casting the spell by reading the scroll requires the spell's normal casting time. Once the spell is cast, the words on the scroll fade, and it crumbles to dust. If the casting is interrupted, the scroll is not lost.\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 15 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity.\nSave DC: 17Attack Bonus: +9.\nA wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 15 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":640,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Spell must be on the caster's spell list."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"9","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":17,"scaling":"flat"},"consumableType":"scroll"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233958,"modifiedTime":1671220965594,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"wgBKZNeRN1XsE9I7","name":"Flail +3","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod +3","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"flail","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233959,"modifiedTime":1671220965599,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"woWZ1sO5IUVGzo58","name":"Thieves' Tools","type":"tool","img":"icons/tools/hand/lockpicks-steel-grey.webp","system":{"description":{"value":"This set of tools includes a small file, a set of lock picks, a small mirror mounted on a metal handle, a set of narrow-bladed scissors, and a pair of pliers. Proficiency with these tools lets you add your proficiency bonus to any ability checks you make to disarm traps or open locks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"","baseItem":"thief","ability":"dex","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233959,"modifiedTime":1671220965608,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"wqVSRfkcTjuhvDyx","name":"Necklace of Prayer Beads","type":"equipment","img":"icons/equipment/neck/necklace-runed-white-red.webp","system":{"description":{"value":"Wondrous item, (requires attunement by a cleric, druid, or paladin)This necklace has 1d4 + 2 magic beads made from aquamarine, black pearl, or topaz. It also has many nonmagical beads made from stones such as amber, bloodstone, citrine, coral, jade, pearl, or quartz. If a magic bead is removed from the necklace, that bead loses its magic.Six types of magic beads exist. The GM decides the type of each bead on the necklace or determines it randomly. A necklace can have more than one bead of the same type. To use one, you must be wearing the necklace. Each bead contains a spell that you can cast from it as a bonus action (using your spell save DC if a save is necessary). Once a magic bead's spell is cast, that bead can't be used again until the next dawn.Use the @Compendium[dnd5e.tables.XHTUTUXdyzcPbodw]{Necklace of Prayer Beads} table and refer to the table below for detailed descriptions on each beadd20Bead of…SpellGuide Price per Bead (gp)1-6Blessing@Compendium[dnd5e.spells.8dzaICjGy6mTUaUr]{Bless}2,0007-12Curing@Compendium[dnd5e.spells.uUWb1wZgtMou0TVP]{Cure Wounds} (2nd level) or @Compendium[dnd5e.spells.F0GsG0SJzsIOacwV]{Lesser Restoration}4,00013-16Favor@Compendium[dnd5e.spells.WzvJ7G3cqvIubsLk]{Greater Restoration}32,00017-18Smiting@Compendium[dnd5e.spells.7UwUjJ6owIQkEPrs]{Branding Smite}1,50019Summons@Compendium[dnd5e.spells.fkREcytuZ8sngWtC]{Planar Ally}128,00020Wind Walking@Compendium[dnd5e.spells.8PJAsHmbu6UgDHC0]{Wind Walk}96,000Foundry NoteThe 6 charges reflect the maximum number of beads able to be found; please adjust as required.Additionally, the guide price is a guide only and should be adjusted accordingly to reflect the Dungeon Master's world.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.01,"price":{"value":0,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"bonus","cost":1,"condition":"The necklace must be currently worn."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":6,"max":"6","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233960,"modifiedTime":1671220965621,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"wtctR6tCcYbQPiS0","name":"Longsword of Life Stealing","type":"weapon","img":"icons/creatures/claws/claw-curved-poison-purple.webp","system":{"description":{"value":"(Requires attunement)\nWhen you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":1000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":"Must roll a 20 and the target cannot be undead."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"3d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"ada":false,"mgc":true,"sil":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233960,"modifiedTime":1671220965637,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"wwNpAz2KMukovewN","name":"Necklace of Adaptation","type":"equipment","img":"icons/equipment/neck/pendant-faceted-blue.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nWhile wearing this necklace, you can breathe normally in any environment, and you have advantage on saving throws made against harmful gases and vapors (such as @Compendium[dnd5e.spells.LkvI11Uue774QBKZ]{Cloudkill} and @Compendium[dnd5e.spells.TwlD4PLcltv7Xh7j]{Stinking Cloud} effects, inhaled poisons, and the breath weapons of some dragons).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.01,"price":{"value":1500,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233961,"modifiedTime":1671220965645,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"x12sDhylcf8843fT","name":"Light Crossbow +2","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"lightcrossbow","properties":{"lgt":false,"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233961,"modifiedTime":1671220965650,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"x1GUgZYjMubaFavx","name":"Crossbow Bolt +2","type":"consumable","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"This ammunition is used for all varieties of crossbow and is typically a short metal shaft with a narrow piercing tip. It has been imbued with magic.\nYou have a bonus to attack and damage rolls made with this piece of magic ammunition. Once it hits a target, the ammunition is no longer magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.075,"price":{"value":100,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233962,"modifiedTime":1671220965654,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"x7LfMrLafLKfemGH","name":"Ring of Jumping","type":"equipment","img":"icons/equipment/finger/ring-band-engraved-scrolls-silver.webp","system":{"description":{"value":"(Requires attunement)\nWhile wearing this ring, you can cast the @Compendium[dnd5e.spells.ZrTc23tToJ0JpH2h]{Jump} spell from it as a bonus action at will, but can target only yourself when you do so.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":2500,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":0,"type":"trinket","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233962,"modifiedTime":1671220965659,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"x9I9vdo4kafHDjcO","name":"Sling Bullet +3","type":"consumable","img":"icons/skills/ranged/bullets-triple-ball-yellow.webp","system":{"description":{"value":"A hardened pebble of stone, bone, or metal which can be flung at high velocity using a sling. It has been imbued with magic.\nYou have a bonus to attack and damage rolls made with this piece of magic ammunition. Once it hits a target, the ammunition is no longer magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.075,"price":{"value":400,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233963,"modifiedTime":1671220965670,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xDK9GQd2iqOGH8Sd","name":"Sprig of Mistletoe","type":"weapon","img":"icons/consumables/plants/fern-lady-green.webp","system":{"description":{"value":"A hardy sprig of mistletoe, holly, or some other sacred leaf, picked from a tree whose roots are sunken deep into a ley line. Those who heed nature's call are able to harness this connection to call forth the incredible power of nature.\nSpellcasting Focus. A druidic focus is a special item designed to channel the power of spells from the druid's spell list. A druid can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":true,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233963,"modifiedTime":1671220965676,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xEtBeZjJnkDXojQM","name":"Staff of Frost","type":"weapon","img":"icons/weapons/staves/staff-ornate-engraved-blue.webp","system":{"description":{"value":"(Requires attunement by a druid, sorcerer, warlock, or wizard)You have resistance to cold damage while you hold this staff.The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: @Compendium[dnd5e.spells.RpKjTlYASrfqUPVA]{Cone of Cold} (5 charges), @Compendium[dnd5e.spells.IBJmWjzbQGu7M4UX]{Fog Cloud} (1 charge), @Compendium[dnd5e.spells.WN2LWEljYU6QqnRH]{Ice Storm} (4 charges), or @Compendium[dnd5e.spells.fzZnVKLmBMo2f5up]{Wall of Ice} (4 charges).The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff turns to water and is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":26000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":10,"max":"10","per":"charges","recovery":"1d6 + 4"},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"mgc":true,"ada":false,"sil":false},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233964,"modifiedTime":1671220965681,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xKErqkLo4ASYr5EP","name":"Woodcarver's Tools","type":"tool","img":"icons/tools/hand/chisel-steel-brown.webp","system":{"description":{"value":"These special tools include the items needed to pursue a craft or trade in woodcarving.\nProficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"art","baseItem":"woodcarver","ability":"dex","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233965,"modifiedTime":1671220965685,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xMkP8BmFzElcsMaR","name":"Greatsword","type":"weapon","img":"icons/weapons/swords/greatsword-guard-gem-blue.webp","system":{"description":{"value":"A mighty two-handed blade is over four feet long an almost five inches wide. This weapon requires extensive martial training but those proficient in its use are formidable warriors.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"hvy":true,"two":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233965,"modifiedTime":1671220965689,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xbVpKtrQ6tJsPhXX","name":"Half Plate Armor +3","type":"equipment","img":"icons/equipment/chest/breastplate-cuirass-steel-grey.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":40,"price":{"value":24750,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"halfplate","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233966,"modifiedTime":1690539024399,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xjRSY2ECcc9viSz3","name":"Scarab of Protection","type":"consumable","img":"icons/environment/creatures/bug-larva-orange.webp","system":{"description":{"value":"Wondrous item, (requires attunement)\nIf you hold this beetle-shaped medallion in your hand for 1 round, an inscription appears on its surface revealing its magical nature. It provides two benefits while it is on your person:\n\nYou have advantage on saving throws against spells.\nThe scarab has 12 charges. If you fail a saving throw against a necromancy spell or a harmful effect originating from an undead creature, you can use your reaction to expend 1 charge and turn the failed save into a successful one. The scarab crumbles into powder and is destroyed when its last charge is expended.\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":36000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"reaction","cost":1,"condition":"Charges are consumed by necromancy spells or an undead caster."},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":12,"max":"12","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233967,"modifiedTime":1671220965704,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xjme5oSQZmdAy1fc","name":"Well of Many Worlds","type":"consumable","img":"icons/magic/water/bubbles-air-water-light.webp","system":{"description":{"value":"Wondrous item\nThis 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.\nYou can use an action to unfold and place the Well of Many Worlds on a solid surface, whereupon it creates a two-way portal to another world or plane of existence. Each time the item opens a portal, the GM decides where it leads. You can use an action to close an open portal by taking hold of the edges of the cloth and folding it up. Once a Well of Many Worlds has opened a portal, it can't do so again for 1d8 hours.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":250000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":3,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":"1d4 +1"},"formula":"1d8","save":{"ability":"","dc":null,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233967,"modifiedTime":1671220965711,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xw2kL7Puwg4wfjW3","name":"Giant Slayer Longsword","type":"weapon","img":"icons/weapons/swords/sword-guard-flanged-purple.webp","system":{"description":{"value":"You gain a +1 bonus to attack and damage rolls made with this magic weapon.\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":7000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +1","slashing"]],"versatile":"1d10 +@mod +1"},"formula":"2d6","save":{"ability":"str","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233968,"modifiedTime":1671220965716,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xw99pcqPBVwtMOLw","name":"Potion of Necrotic Resistance","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-pink.webp","system":{"description":{"value":"The potion is a plain indescriminate color and smells slightly foul.\nWhen you drink this potion, you gain resistance to Necrotic type damage for 1 hour.\nFor other potions of resistance, roll on the @Compendium[dnd5e.tables.JzLOE4IxcmxjLLuz]{Potion of Resistance} table.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233969,"modifiedTime":1671220965745,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xwUWrV15s9jLnmfZ","name":"Lock","type":"consumable","img":"icons/sundries/misc/lock-bronze-reinforced.webp","system":{"description":{"value":"A key is provided with the lock. Without the key, a creature proficient with thieves' tools can pick this lock with a successful DC 15 Dexterity check. Your DM may decide that better locks are available for higher prices.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"touch","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":15,"scaling":"flat"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233969,"modifiedTime":1671220965753,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xzZQIIxXjNJwNqnp","name":"Shield +2","type":"equipment","img":"icons/equipment/shield/heater-steel-spiral.webp","system":{"description":{"value":"While holding this shield, you have a bonus to AC of +2. This bonus is in addition to the shield's normal bonus to AC.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":6000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":4,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.2","coreVersion":"10.291","createdTime":1661787233970,"modifiedTime":1690539683046,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"yiYCqmD5n08NftYk","name":"Sun Blade","type":"weapon","img":"icons/magic/light/beam-strike-orange-gold.webp","system":{"description":{"value":"(Requires attunement)\nThis item appears to be a longsword hilt. While grasping the hilt, you can use a bonus action to cause a blade of pure radiance to spring into existence, or make the blade disappear. While the blade exists, this magic longsword has the finesse property. If you are proficient with shortswords or longswords, you are proficient with the Sun Blade.\nYou gain a +2 bonus to attack and damage rolls made with this weapon, which deals radiant damage instead of slashing damage. When you hit an undead with it, that target takes an extra 1d8 radiant damage.\nThe sword's luminous blade emits bright light in a 15-foot radius and dim light for an additional 15 feet. The light is sunlight. While the blade persists, you can use an action to expand or reduce its radius of bright and dim light by 5 feet each, to a maximum of 30 feet each or a minimum of 10 feet each.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":12000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod +2","radiant"]],"versatile":"1d10 + @mod +2"},"formula":"1d8","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"longsword","properties":{"ver":true,"amm":false,"hvy":false,"fin":true,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233970,"modifiedTime":1671220965763,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ykB6UKv5BuQnSRSL","name":"Frost Brand Greatsword","type":"weapon","img":"icons/skills/melee/strike-weapon-polearm-ice-blue.webp","system":{"description":{"value":"(Requires attunement)\nWhen you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":2200,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"],["1d6","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233971,"modifiedTime":1671220965768,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ykefWXBjq3y6y9Se","name":"Manual of Gainful Exercise","type":"consumable","img":"icons/sundries/books/book-embossed-jewel-gold-purple.webp","system":{"description":{"value":"Wondrous item\nThis book describes fitness exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Strength score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":100000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"hour","cost":48,"condition":"The book must be completed in 6 days or less."},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233971,"modifiedTime":1671220965773,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"yoFff2zdTloKx1if","name":"Pike +1","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-stone-worn.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":18,"price":{"value":1000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod +1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"pike","properties":{"hvy":true,"rch":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233972,"modifiedTime":1671220965778,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ytlsBjYsZ7OBSEBs","name":"Potion of Healing","type":"consumable","img":"icons/consumables/potions/potion-tube-corked-red.webp","system":{"description":{"value":"The potion's red liquid glimmers when agitated.\nYou regain 2d4+2 hit points when you drink this potion.\n \n ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"common","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + 2","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233972,"modifiedTime":1671220965786,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"yxHi57T5mmVt0oDr","name":"Bagpipes","type":"tool","img":"icons/sundries/survival/waterskin-leather-brown.webp","system":{"description":{"value":"A set of bagpipes to evoke awe, wonder, or fear in your audience.\nIf you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":30,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"toolType":"music","baseItem":"bagpipes","ability":"cha","chatFlavor":"","proficient":null,"bonus":""},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233973,"modifiedTime":1671220965794,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"z0lIRURcyDYt1kLK","name":"Flail +2","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":4000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 +@mod +2","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"flail","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233973,"modifiedTime":1671220965799,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"z67d1DZzqDPmgEwP","name":"Signal Whistle","type":"loot","img":"icons/tools/instruments/pipe-flute-brown.webp","system":{"description":{"value":"A whistle can produce specific noise. It can be heard half a mile away.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233974,"modifiedTime":1671220965807,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"z9SbsMIBZzuhZOqT","name":"Sling Bullet","type":"consumable","img":"icons/skills/ranged/bullets-triple-ball-yellow.webp","system":{"description":{"value":"A hardened pebble of stone, bone, or metal which can be flung at high velocity using a sling.Foundry NoteIt will usually be impossible to buy one sling bullet because they are worth less than a copper piece (5 bullets = 1 cp).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.075,"price":{"value":0.2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":"","autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233974,"modifiedTime":1671220965813,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"z9fFB1uaGJvcXTf7","name":"Trident +3","type":"weapon","img":"icons/skills/melee/spear-tips-triple-orange.webp","system":{"description":{"value":"Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.\nYou have a bonus to attack and damage rolls made with this magic weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":16000,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"3","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod +3","piercing"]],"versatile":"1d8 + @mod +3"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"trident","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":true,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233975,"modifiedTime":1671220965817,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zBX8LLC2CjC89Dzl","name":"Potion of Thunder Resistance","type":"consumable","img":"icons/consumables/potions/bottle-round-corked-yellow.webp","system":{"description":{"value":"The potion is a plain indescriminate color and smells slightly foul.\nWhen you drink this potion, you gain resistance to Thunder type damage for 1 hour.\nFor other potions of resistance, roll on the @Compendium[dnd5e.tables.JzLOE4IxcmxjLLuz]{Potion of Resistance} table.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233976,"modifiedTime":1671220965835,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zDJ4oEt5HArN1xmP","name":"Elemental Gem of Air","type":"consumable","img":"icons/commodities/gems/gem-rough-rose-teal.webp","system":{"description":{"value":"Wondrous item\nThis blue sapphire contains a mote of elemental energy. When you use an action to break the gem, an @Compendium[dnd5e.monsters.banHjKDMCegbUwYE]{Air Elemental}is summoned as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell, and the gem's magic is lost.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":960,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233976,"modifiedTime":1671220965840,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zIpNJyuOxp2raizE","name":"Splint Armor +2","type":"equipment","img":"icons/equipment/chest/breastplate-layered-steel.webp","system":{"description":{"value":"This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.\nYou have a bonus to AC while wearing this armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":60,"price":{"value":6200,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":19,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"splint","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233977,"modifiedTime":1671220965845,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zJ5LhDvTxYKzPIx4","name":"Sovereign Glue","type":"consumable","img":"icons/consumables/drinks/tea-jug-gourd-brown.webp","system":{"description":{"value":"Wondrous itemThis viscous, milky-white substance can form a permanent adhesive bond between any two objects. It must be stored in a jar or flask that has been coated inside with oil of slipperiness. When found, a container contains 1d6 + 1 ounces.One ounce of the glue can cover a 1-foot square surface. The glue takes 1 minute to set. Once it has done so, the bond it creates can be broken only by the application of universal solvent or oil of etherealness, or with a @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell.Foundry NoteThe 7 charges reflect the maximum amount a character can find. Please adjust as required.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.25,"price":{"value":400,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"legendary","identified":true,"activation":{"type":"action","cost":1,"condition":"Takes 1 minute to set."},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"ft","type":"square"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":7,"max":"7","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"trinket"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233977,"modifiedTime":1671220965850,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zSKorO6lwT7vs2uk","name":"Berserker Greataxe","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-engraved-steel.webp","system":{"description":{"value":"(Requires attunement)\nYou gain a +1 bonus to attack and damage rolls made with this magic weapon. In addition, while you are attuned to this weapon, your hit point maximum increases by 1 for each level you have attained.\nCurse. This axe is cursed, and becoming attuned to it extends the curse to you. As long as you remain cursed, you are unwilling to part with the axe, keeping it within reach at all times. You also have disadvantage on attack rolls with weapons other than this one, unless no foe is within 60 feet of you that you can see or hear.\nWhenever a hostile creature damages you while the axe is in your possession, you must succeed on a DC 15 Wisdom saving throw or go berserk. While berserk, you must use your action each round to attack the creature nearest to you with the axe. If you can make extra attacks as part of the Attack action, you use those extra attacks, moving to attack the next nearest creature after you fell your current target.\nIf you have multiple possible targets, you attack one at random. You are berserk until you start your turn with no creatures within 60 feet of you that you can see or hear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":6000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod +1","slashing"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greataxe","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233978,"modifiedTime":1671220965854,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zWSB0NCllWaSVoNT","name":"Dancing Greatsword","type":"weapon","img":"icons/skills/melee/maneuver-greatsword-yellow.webp","system":{"description":{"value":"(Requires attunement)\nYou can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":2000,"denomination":"gp"},"attunement":1,"equipped":false,"rarity":"veryRare","identified":true,"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":4,"max":"4","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"greatsword","properties":{"amm":false,"hvy":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":true,"spc":false,"thr":false,"two":true,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233978,"modifiedTime":1671220965866,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zgZkJAyFAfYmyn11","name":"Potion of Acid Resistance","type":"consumable","img":"icons/consumables/potions/bottle-bulb-corked-green.webp","system":{"description":{"value":"The potion is a plain indescriminate color and smells slightly foul.\nWhen you drink this potion, you gain resistance to Acidic type damage for 1 hour.\nFor other potions of resistance, roll on the @Compendium[dnd5e.tables.JzLOE4IxcmxjLLuz]{Potion of Resistance} table.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.1,"price":{"value":300,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"uncommon","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"charges","recovery":"","autoDestroy":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion"},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233979,"modifiedTime":1671220965874,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zibIgdxPz8QHSCg6","name":"Vicious Pike","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-stone-worn.webp","system":{"description":{"value":"A sturdy blade mounted upon the end of a long metal haft. Designed as a defensive weapon with considerable reach to both fend off and menace foes.\nWhen you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":18,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"rare","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":"2d6"},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"pike","properties":{"hvy":true,"rch":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"mgc":true},"proficient":null},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233979,"modifiedTime":1671220965886,"lastModifiedBy":"dnd5ebuilder0000"}} diff --git a/packs/monsterfeatures.db b/packs/monsterfeatures.db index af2eebcbd4..233334be3e 100644 --- a/packs/monsterfeatures.db +++ b/packs/monsterfeatures.db @@ -1,252 +1,252 @@ -{"_id":"0YuGSS8E8ElHLRyb","name":"Fire Form","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {type} can move through a space as narrow as 1 inch wide without squeezing. A creature that touches the {type} or hits it with a melee attack while within 5 ft. of it takes 5 (1d10) fire damage. In addition, the {type} can enter a hostile creature's space and stop there. The first time it enters a creature's space on a turn, that creature takes 5 (1d10) fire damage and catches fire; until someone takes an action to douse the fire, the creature takes 5 (1d10) fire damage at the start of each of its turns.A creature that touches the {type} or hits it with a melee attack while within 5 ft. of it takes fire damage. In addition, the {type} can enter a hostile creature's space and stop there. The first time it enters a creature's space on a turn, that creature takes fire damage and catches fire; until someone takes an action to douse the fire, the creature takes fire damage at the start of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/earth/lava-explosion-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234493,"modifiedTime":1672335656049,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"0awyZX05OnVLF4k2","name":"Blinding Spittle","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact.Each creature within 5 feet of the flash must succeed on a DC 13 Dexterity saving throw or be blinded until the end of the {creature}'s next turn.\n\nThe {creature} spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact. Each creature within 5 feet of the flash must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"flags":{},"img":"icons/magic/nature/root-vine-thorned-fire-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234495,"modifiedTime":1672335545635,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"0gl43AC57cvJaW7D","name":"Gnome Cunning","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on Intelligence, Wisdom, and Charisma saving throws against magic.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234495,"modifiedTime":1672335631189,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"0npeEcwmiVMdwGMV","name":"Damage Transfer","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While attached to a creature, the {creature} takes only half the damage dealt to it (rounded down) and that creature takes the other half.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/strike-ice-blades.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234496,"modifiedTime":1672335491944,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"0z5v1BfMqQl5Z7UW","name":"Corrode Metal","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nAny nonmagical weapon made of metal that hits the {type} corrodes. After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls.If its penalty drops to -5, the weapon is destroyed. Nonmagical ammunition made of metal that hits the {type} is destroyed after dealing damage. The {type} can eat through 2-inch-thick, nonmagical metal in 1 round.\n\nThe {type} corrodes metal.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/earth/orb-stone-smoke-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234496,"modifiedTime":1672335503971,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"108q5fJnnBRoLKfe","name":"Brave","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on saving throws against being Frightened.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/social/intimidation-impressing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234497,"modifiedTime":1672335538495,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"1XeF2VMMPw7QYffo","name":"Create Whirlwind","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nA 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the {creature} can see within 120 feet of it. The whirlwind lasts as long as the {creature} maintains concentration (as if concentrating on a spell).Any creature but the {creature} that enters the whirlwind must succeed on a DC 18 Strength saving throw or be restrained by it. The {creature} can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. The whirlwind ends if the {creature} loses sight of it.A creature can use its action to free a creature restrained by the whirlwind, including itself, by succeeding on a DC 18 Strength check. If the check succeeds, the creature is no longer restrained and moves to the nearest space outside the whirlwind.\n\nA 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the {creature} can see within 120 feet of it. Any creature but the {creature} that enters the whirlwind must make a Strength saving throw or be restrained by it. The {creature} can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. A creature can use its action to free a creature restrained by the whirlwind, including itself, by succeeding on a Strength check. If the check succeeds, the creature is no longer restrained and moves to the nearest space outside the whirlwind.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":18,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-tornado-cyclone-white.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234497,"modifiedTime":1672335497110,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"1w6k5iHV8QSz5w46","name":"Labyrinthine Recall","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can perfectly recall any path it has traveled.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-vortex-swirl-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234498,"modifiedTime":1672335855313,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"2l557y06401lwsqs","name":"Light Sensitivity","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While in bright light, the {creature} has disadvantage on attack rolls and Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/time/day-night-sunset-sunrise.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234498,"modifiedTime":1672335841725,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3iLXiqhhOgXOMMg7","name":"Ethereal Jaunt","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As a bonus action, the {creature} can magically shift from the Material Plane to the Ethereal Plane, or vice versa.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/lightning/orb-ball-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234499,"modifiedTime":1672335691371,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3lDp8DtWwNDHSvxX","name":"Amorphous","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can move through a space as narrow as 1 inch wide without squeezing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/slimes/slime-movement-dripping-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234499,"modifiedTime":1672335430564,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3mrPXaxalJxpxVrv","name":"Tunneler","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can burrow through solid rock at half its burrow speed and leaves a 10-foot-diameter tunnel in its wake.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/orb-glowing-yellow-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234500,"modifiedTime":1672336176227,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"43BnuqkQgg5l1Nfh","name":"Sleep Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\n**Sleep Breath.** The {type} exhales sleep gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n\nThe {type} exhales sleep gas in a 90-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/third-eye-blue-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234500,"modifiedTime":1672336287083,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"4Fap14HgvAwTAZuD","name":"Amphibious","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/environment/creatures/frog-spotted-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234501,"modifiedTime":1672335428669,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"4N7S29kDROQ932pG","name":"Steadfast","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can't be frightened while it can see an allied creature within 30 feet of it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234502,"modifiedTime":1672336234837,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"4UuuUKjATTixrZGP","name":"Steam Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} exhales scalding steam in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 52 (15d6) fire damage on a failed save, or half as much damage on a successful one.Being underwater doesn't grant resistance against this damage.The {creature} exhales scalding steam in a 60-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"flags":{},"img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234502,"modifiedTime":1672336232699,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"4v3xxn1jEEMRzLBG","name":"Reckless","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At the start of its turn, the {creature} can gain advantage on all melee weapon attack rolls during that turn, but attack rolls against it have advantage until the start of its next turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/social/intimidation-impressing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234503,"modifiedTime":1672336022974,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"59DUUDZet1J4PIlA","name":"Speak with Beasts and Plants","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can communicate with beasts and plants as if they shared a language.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234503,"modifiedTime":1672336276838,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5DJYFjGQCz5aSl5e","name":"Surprise Attack","ownership":{"default":0},"type":"feat","system":{"description":{"value":"If the {creature} surprises a creature and hits it with an attack during the first round of combat, the target takes an extra 7 (2d6) damage from the attack.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"flags":{},"img":"icons/magic/water/elemental-water.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234504,"modifiedTime":1672336215056,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5OYruoI92fxTOLts","name":"Searing Burst","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} emits magical, divine energy. Each creature of its choice in a 10-foot radius must make a DC 23 Dexterity saving throw, taking 14 (4d6) fire damage plus 14 (4d6) radiant damage on a failed save, or half as much damage on a successful one.\nThe {creature} emits magical, divine energy. Each creature of its choice in a 10-foot radius must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":2},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","fire"],["4d6","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":23,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-star-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234504,"modifiedTime":1672335991907,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5V7SCABXvIbnk2Zn","name":"Water Susceptibility","ownership":{"default":0},"type":"feat","system":{"description":{"value":"For every 5 ft. the {type} moves in water, or for every gallon of water splashed on it, it takes 1 cold damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/pseudopod-swirl-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234504,"modifiedTime":1672336135290,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5rr8YdsGtL8WxEuE","name":"Chomp","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} makes one bite attack or uses its Swallow.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":2},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/mouth-teeth-long-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234505,"modifiedTime":1672335515749,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"6HJpLJxctQdMLeuB","name":"Antennae","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} corrodes a nonmagical ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it. If the object is being worn or carried by a creature, the creature can make a DC 11 Dexterity saving throw to avoid the {creature}'s touch.If the object touched is either metal armor or a metal shield being worn or carried, its takes a permanent and cumulative -1 penalty to the AC it offers. Armor reduced to an AC of 10 or a shield that drops to a +0 bonus is destroyed. If the object touched is a held metal weapon, it rusts as described in the Rust Metal trait.The {creature} corrodes a ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"dex"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/tree-bare-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234505,"modifiedTime":1672335418948,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"6ej6jlwh8ryDEzlB","name":"Animate Chains","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nUp to four chains the {type} can see within 60 feet of it magically sprout razor-edged barbs and animate under the {type}'s control, provided that the chains aren't being worn or carried.Each animated chain is an object with AC 20, 20 hit points, resistance to piercing damage, and immunity to psychic and thunder damage. When the {type} uses Multiattack on its turn, it can use each animated chain to make one additional chain attack. An animated chain can grapple one creature of its own but can't make attacks while grappling. An animated chain reverts to its inanimate state if reduced to 0 hit points or if the {type} is incapacitated or dies.\n\nUp to four chains the {type} can see within 60 feet of it magically sprout razor-edged barbs and animate under the {type}'s control, provided that the chains aren't being worn or carried.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":4,"width":null,"units":"","type":"object"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"flags":{},"img":"icons/equipment/neck/choker-chain-thin-gold.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234506,"modifiedTime":1672335423463,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7HPC39yg8OYshJos","name":"Cast a Spell","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} casts a spell from its list of prepared spells, using a spell slot as normal.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":3,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":3},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/hand-sparks-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234506,"modifiedTime":1672335529673,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7NML6SkyvOsZ17iq","name":"Aggressive","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As a bonus action, the {creature} can move up to its speed toward a hostile creature that it can see.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/mouth-teeth-tongue-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234507,"modifiedTime":1672335438914,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7WfeHV27l7DMcuTG","name":"Flyby","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} doesn't provoke opportunity attacks when it flies out of an enemy's reach.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"Owl","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/bats-movement-flying-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234507,"modifiedTime":1672335649716,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7nbokvWfSckl2iWz","name":"Blind Senses","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can't use its blindsight while deafened and unable to smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234507,"modifiedTime":1672335556632,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8C6hkMXWLeymmJ5C","name":"Blinding Gaze","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} targets one creature it can see within 30 feet of it. If the target can see it, the target must succeed on a DC 15 Constitution saving throw or be blinded until magic such as the lesser restoration spell removes the blindness.\n\nThe {creature} targets one creature it can see within 30 feet of it. If the target can see it, the target must succeed on a Constitution saving throw or be blinded.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":3,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":3},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/third-eye-blue-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234509,"modifiedTime":1672335548494,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8FX2KlWyBAKEYGzs","name":"Relentless","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nIf the {creature} takes 7 damage or less that would reduce it to 0 hit points, it is reduced to 1 hit point instead. Recharges on a short or long rest.\n\nIf the {creature} takes damage that would reduce it to 0 hit points, it is reduced to 1 hit point instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/heart-ice-freeze.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234509,"modifiedTime":1672336008886,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8H0t1US0zvNPWtQ9","name":"Adhesive","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} adheres to anything that touches it. A Huge or smaller creature adhered to the {creature} is also grappled by it escape DC 13. Ability checks made to escape this grapple have disadvantage.The {creature} adheres to anything that touches it. A Huge or smaller creature adhered to the {creature} is also grappled by it. Make an escape check, with disadvantage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/slimes/slime-movement-dripping-pseudopods-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234510,"modifiedTime":1672335441736,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8l0R2MIYxWxYJT6O","name":"Shimmering Shield","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} creates a shimmering, magical field around itself or another creature it can see within 60 feet of it. The target gains a +2 bonus to AC until the end of the {creature}'s next turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":2},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-star-large-blue-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234510,"modifiedTime":1672336294896,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9W2baYpS2ahNYhjb","name":"Unarmed Strike (Legendary)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} makes one unarmed strike.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234510,"modifiedTime":1672336161859,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9uKShqfuA73duQsT","name":"Sneak Attack","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Once per turn.\nThe {creature} deals an extra 13 (4d6) damage when it hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 ft. of an ally of the {creature} that isn't incapacitated and the {creature} doesn't have disadvantage on the attack roll.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":"once per turn"},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/blade-tip-chipped-blood-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234511,"modifiedTime":1672336282691,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"AFYR2eZavzQUbZNb","name":"Water Form","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {type} can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/orb-water-bubbles.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234511,"modifiedTime":1672336138719,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ARWpuy82jh0daSDa","name":"Turn Immunity","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} is immune to features that turn undead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/flame-burning-creature-skeleton.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234512,"modifiedTime":1672336170951,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Av7H0ymGdPeTsnwV","name":"Regeneration","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} regains 10 hit points at the start of its turn if it has at least 1 hit point.The {creature} regains 10 hit points at the start of its turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/wounds/anatomy-organ-heart-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234513,"modifiedTime":1672336015899,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"B2kZOyrB7poB4liR","name":"Blood Frenzy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on melee attack rolls against any creature that doesn't have all its hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/wounds/blood-spurt-spray-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234513,"modifiedTime":1672335543399,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"BDnjS1sQi2pdARh8","name":"Stone Golem - Slow","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} targets one or more creatures it can see within 10 ft. of it. Each target must make a DC 17 Wisdom saving throw against this magic.On a failed save, a target can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the target can take either an action or a bonus action on its turn, not both. These effects last for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe {creature} targets one or more creatures it can see within 10 ft. of it. Each target must make a Wisdom saving throw against this magic. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"flags":{},"img":"icons/tools/navigation/watch-simple-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234514,"modifiedTime":1672336226974,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"BiasCPpNsaAVKzIj","name":"Paralyzing Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\n**Paralyzing Breath.** The {type} exhales paralyzing gas in a 60-foot cone. Each creature in that area must succeed on a DC 20 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe {type} exhales paralyzing gas in a 60-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":20,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/acid/projectile-smoke-glowing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234514,"modifiedTime":1672335786811,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"BnuDkgCOeGvAoYhy","name":"Rampage","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When the {creature} reduces a creature to 0 hit points with a melee attack on its turn, the {creature} can take a bonus action to move up to half its speed and make a bite attack.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/strike-axe-blood-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234514,"modifiedTime":1672336036678,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"BpwXJvMA7MfVQ7i6","name":"Rock Catching","ownership":{"default":0},"type":"feat","system":{"description":{"value":"If a rock or similar object is hurled at the {type}, the {type} can, with a successful DC 10 Dexterity saving throw, catch the missile and take no bludgeoning damage from it.If a rock or similar object is hurled at the {type}, the {type} can catch the missile and take no bludgeoning damage from it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":10,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234515,"modifiedTime":1672336002046,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"CvtGj6YimGuZdrhB","name":"Ooze Cube","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} takes up its entire space. Other creatures can enter the space, but a creature that does so is subjected to the {creature}'s Engulf and has disadvantage on the saving throw. Creatures inside the {creature} can be seen but have total cover.A creature within 5 feet of the {creature} can take an action to pull a creature or object out of the {creature}. Doing so requires a successful DC 12 Strength check, and the creature making the attempt takes 10 (3d6) acid damage. The {creature} can hold only one Large creature or up to four Medium or smaller creatures inside it at a time.\n\nThe {creature} takes up its entire space. Other creatures can enter the space, but a creature that does so is subjected to the {creature}'s Engulf and has disadvantage on the saving throw. Creatures inside the cube can be seen but have total cover. A creature within 5 feet of the {creature} can take an action to pull a creature or object out of the {creature}. Doing so requires a successful Strength check.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/barrier-ice-water-cube.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234515,"modifiedTime":1672335792413,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"DPrO7eVVxiKD8QWD","name":"Claw Attack","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} makes one claw attack.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/blood-slash-foam-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234516,"modifiedTime":1672335513298,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"E8SiDA7Z3Ybd6wt0","name":"Faultless Tracker","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} is given a quarry by its summoner. The {creature} knows the direction and distance to its quarry as long as the two of them are on the same plane of existence. The {creature} also knows the location of its summoner.\n\nThe stalker knows the direction and distance to its quarry as long as the two of them are on the same plane of existence.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234516,"modifiedTime":1672335675523,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"EMygUh5uRujWaFYK","name":"Ambusher","ownership":{"default":0},"type":"feat","system":{"description":{"value":"In the first round of a combat, the {creature} has advantage on attack rolls against any creature it has surprised.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/stealth-hide-eyes-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234517,"modifiedTime":1672335433142,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"EguIm3u5kkopYwEM","name":"Disrupt Life","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nEach non-{type} creature within 20 feet of the {creature} must make a DC 18 Constitution saving throw against this magic, taking 21 (6d6) necrotic damage on a failed save, or half as much damage on a successful one.\n\nEach non-{type} creature within 20 feet of the {creature} must make a Constitution saving throw against this magic.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":3,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":3},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/projectile-skull-fire-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234518,"modifiedTime":1672335722684,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Eh80lkzHiEOJP8FI","name":"Engulf","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} moves up to its speed. While doing so, it can enter Large or smaller creatures' spaces. Whenever the {creature} enters a creature's space, the creature must make a DC 12 Dexterity saving throw.On a successful save, the creature can choose to be pushed 5 feet back or to the side of the {creature}. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.On a failed save, the {creature} enters the creature's space, and the creature takes 10 (3d6) acid damage and is engulfed. The engulfed creature can't breathe, is restrained, and takes 21 (6d6) acid damage at the start of each of the {creature}'s turns. When the {creature} moves, the engulfed creature moves with it. An engulfed creature can try to escape by taking an action to make a DC 12 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the {creature}.\n\nWhenever the {creature} enters a creature's space, the creature must make a Dexterity saving throw. On a successful save, the creature can choose to be pushed 5 feet back or to the side of the {creature}. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"6d6","save":{"ability":"dex","dc":12,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/pseudopod-swirl-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234518,"modifiedTime":1672335701493,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"EmlE1a0rhucK2UT1","name":"Death Throes","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nWhen the {creature} dies, it explodes, and each creature within 30 feet of it must make a DC 20 Dexterity saving throw, taking 70 (20d6) fire damage on a failed save, or half as much damage on a successful one.The explosion ignites flammable objects in that area that aren't being worn or carried, and it destroys the {creature}'s weapons.\n\nWhen the {creature} dies, it explodes, and each creature within 30 feet of it must make a Dexterity saving throw. The explosion ignites flammable objects in that area that aren't being worn or carried, and it destroys the {creature}'s weapons.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":"Upon death"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":20,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/explosion-fireball-large-red-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234519,"modifiedTime":1672335731472,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Enhb3XowXPMsVapw","name":"Treasure Sense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can pinpoint, by scent, the location of precious metals and stones, such as coins and gems, within 60 ft. of it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/social/theft-pickpocket-bribery-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234519,"modifiedTime":1672336180777,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"EqoLg8T8EHvhJgKE","name":"Multiattack","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} makes a number of attacks in one action. These attacks can be of the same type or a mixed variety of its attack actions.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/blade-tips-triple-steel.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234520,"modifiedTime":1672335801543,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Ervkb8H99e2Beiae","name":"Vampire Weaknesses","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has the following flaws:Forbiddance. The {creature} can't enter a residence without an invitation from one of the occupants. Harmed by Running Water. The {creature} takes 20 acid damage if it ends its turn in running water. Stake to the Heart. If a piercing weapon made of wood is driven into the {creature}'s heart while the {creature} is incapacitated in its resting place, the {creature} is paralyzed until the stake is removed.Sunlight Hypersensitivity. The {creature} takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/encase-creature-monster-hold.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234520,"modifiedTime":1672336152412,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"F14aW2Ke3I5ZtSg4","name":"Sunlight Sensitivity","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While in sunlight, the {creature} has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-star-glow-blue-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234520,"modifiedTime":1672336222775,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"F3gzBbCW7U14zkBF","name":"Illumination","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} sheds bright light in a 10-foot radius and dim light for an additional 10 ft.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-star-glow-blue-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234521,"modifiedTime":1672335883340,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FHrFOjEfkdRm4u43","name":"Inscrutable","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} is immune to any effect that would sense its emotions or read its thoughts, as well as any divination spell that it refuses. Wisdom (Insight) checks made to ascertain the {creature}'s intentions or sincerity have disadvantage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/third-eye-blue-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234521,"modifiedTime":1672335869833,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FRIASnssihfMTZ7q","name":"Invisible Passage","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} magically turns invisible until she attacks or casts a spell, or until her concentration ends (as if concentrating on a spell). While invisible, she leaves no physical evidence of her passage, so she can be tracked only by magic. Any equipment she wears or carries is invisible with her.\n\nThe {creature} magically turns invisible. Any equipment she wears or carries is invisible with her.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/silhouette-stealth-shadow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234522,"modifiedTime":1672335861964,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FXHEc39G2d19opuE","name":"Spider Climb","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234522,"modifiedTime":1672336243265,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FzbCXXFlZVpcea4t","name":"Move (legendary)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} moves up to half its speed.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234523,"modifiedTime":1672335805837,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"GSgfXL9DyDA3GD0n","name":"Rust Metal","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Any nonmagical weapon made of metal that hits the {creature} corrodes. After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls. If its penalty drops to -5, the weapon is destroyed. Non magical ammunition made of metal that hits the {creature} is destroyed after dealing damage.Any nonmagical weapon made of metal that hits the {creature} corrodes. After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/blade-tip-chipped-blood-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234523,"modifiedTime":1672335996198,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"H306eluIH47Wfr0U","name":"Dreadful Glare","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} targets one creature it can see within 60 ft. of it. If the target can see the {creature}, it must succeed on a DC 11 Wisdom saving throw against this magic or become frightened until the end of the {creature}'s next turn.If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies (but not mummy lords) for the next 24 hours.\n\nThe {creature} targets one creature it can see within 60 ft. of it. If the target can see the {creature}, it must make a Wisdom saving throw against this magic.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":11,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/hand-eye-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234524,"modifiedTime":1672335713413,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"HMOOZRxolMmv91xm","name":"Mucous Cloud","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nWhile underwater, the {creature} is surrounded by transformative mucus. A creature that touches the {creature} or that hits it with a melee attack while within 5 ft. of it must make a DC 14 Constitution saving throw. On a failure, the creature is diseased for 1d4 hours. The diseased creature can breathe only underwater.\n\nWhile underwater, the {creature} is surrounded by transformative mucus. A creature that touches the {creature} or that hits it with a melee attack while within 5 ft. of it must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/bubbles-air-water-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234524,"modifiedTime":1672335803766,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Hc6MqLQhPTI1KOvm","name":"Magic Resistance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234525,"modifiedTime":1672335821479,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"IALpDTyYdDOzmDb5","name":"Luring Song","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} sings a magical melody. Every humanoid and giant within 300 ft. of the {creature} that can hear the song must succeed on a DC 11 Wisdom saving throw or be charmed until the song ends. The {creature} must take a bonus action on its subsequent turns to continue singing. It can stop singing at any time. The song ends if the {creature} is incapacitated.While charmed by the {creature}, a target is incapacitated and ignores the songs of other harpies. If the charmed target is more than 5 feet away from the {creature}, the target must move on its turn toward the {creature} by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage from a source other than the {creature}, the target can repeat the saving throw. A charmed target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.A target that successfully saves is immune to this {creature}'s song for the next 24 hours.\n\nThe {creature} sings a magical melody. Every humanoid and giant within 300 ft. of the {creature} that can hear the song must make a Wisdom saving throw. A creature can also repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"spec"},"cover":null,"target":{"value":300,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":11,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-vortex-swirl-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234525,"modifiedTime":1672335824733,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"IHh6n8uZBGqyRfZz","name":"Weakening Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\n**Weakening Breath.** The {type} exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 21 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe {type} exhales gas in a 60-foot cone. Each creature in that area must make a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":21,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/acid/projectile-smoke-glowing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234526,"modifiedTime":1672336133443,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"IwQRhCTgCfAADyt8","name":"Reel","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} pulls each creature grappled by it up to 25 ft. straight toward it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/sihouette-hold-beam-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234526,"modifiedTime":1672336020209,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"IwqUTWqdgrKEvohr","name":"Assassinate","ownership":{"default":0},"type":"feat","system":{"description":{"value":"During its first turn, the {creature} has advantage on attack rolls against any creature that hasn't taken a turn. Any hit the {creature} scores against a surprised creature is a critical hit.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/weapons/swords/sword-broad-crystal-paired.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234527,"modifiedTime":1672335414391,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"J1NxNTJ2qi05iAFF","name":"Legendary Resistance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"If the {type} fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/equipment/shield/kite-wooden-oak-glow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234527,"modifiedTime":1672335845863,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"J36uxDWfbkflPV7k","name":"Cunning Action","ownership":{"default":0},"type":"feat","system":{"description":{"value":"On each of its turns, the {creature} can use a bonus action to take the dash, disengage, or hide action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/silhouette-robe-evil-power.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234528,"modifiedTime":1672335493909,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"JAEclghgOT24pQD9","name":"Poison Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {type} exhales poisonous gas in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 56 (16d6) poison damage on a failed save, or half as much damage on a successful one.The {type} exhales poisonous gas in a 60-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"flags":{},"img":"icons/magic/acid/projectile-smoke-glowing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234528,"modifiedTime":1672336050640,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"JAnMheqgFhkLF2ET","name":"Sense Magic","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} senses magic within 120 feet of it at will. This trait otherwise works like the detect magic spell but isn't itself magical.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/projectile-ice-snowball.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234529,"modifiedTime":1672335987293,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"JRy507rS9wxT3GBh","name":"Slowing Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\n**Slowing Breath.** The {type} exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n\nThe {type} exhales gas in a 60-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234529,"modifiedTime":1672336285044,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"JcfHlAcfwSWnt7Ud","name":"Rejuvenation","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nIf it dies, the {creature} returns to life in 1d6 days and regains all its hit points.Only a wish spell can prevent this trait from functioning.\n\nIf it dies, the {creature} returns to life in 1d6 days and regains all its hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d6","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/debuff-energy-hold-levitate-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234529,"modifiedTime":1672336011174,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"JnLN0Rz60WHXk2Fr","name":"Keen Senses","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on Wisdom (Perception) checks that rely on sight, hearing, or smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-large-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234530,"modifiedTime":1672335857594,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"JsAys4RSGi4lN5Jy","name":"Change Shape","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {type} magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the {type}'s choice).In a new form, the {type} retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/silhouette-hold-change-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234530,"modifiedTime":1672335527261,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KMQAgNxBCAHrd2JU","name":"Antimagic Susceptibility","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} is incapacitated while in the area of an antimagic field.If targeted by dispel magic, the {creature} must succeed on a Constitution saving throw against the caster's spell save DC or fall unconscious for 1 minute.\n\nThe {creature} is incapacitated while in the area of an antimagic field.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/lightning/orb-ball-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234531,"modifiedTime":1672335416740,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KTsFgSQlDetDDm1f","name":"Lightning Absorption","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Whenever the {creature} is subjected to lightning damage, it takes no damage and instead regains a number of hit points equal to the lightning damage dealt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/lightning/bolt-strike-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234531,"modifiedTime":1672335839390,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KcUjvqIXZI3APp5a","name":"Breath Weapons","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\n(NOTE: THIS SHOULD BE USED ONLY IF THE CREATURE HAS MORE THAN ONE TYPE OF BREATH WEAPON, AND CONTAINS THE CHARGES FOR THOSE BREATH WEAPONS. EACH BREATH WEAPON ITSELF SHOULD ALSO BE ADDED.)The {type} uses one of the following breath weapons.**Fire Breath.** The {type} exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 45 (13d6) fire damage on a failed save, or half as much damage on a successful one.**Sleep Breath.** The {type} exhales sleep gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n\nThe {type} breathes in!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"flags":{},"img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234532,"modifiedTime":1672335533713,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KoBGbIkb2tMZv0ch","name":"Aberrant Ground","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe ground in a 10-foot radius around the {creature} is doughlike difficult terrain.Each creature that starts its turn in that area must succeed on a DC 10 Strength saving throw or have its speed reduced to 0 until the start of its next turn.\n\nThe ground in a 10-foot radius around the {creature} is doughlike difficult terrain. make a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":10,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-tornado-funnel-damage-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234532,"modifiedTime":1672335459239,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Kwt8YDIBHg6JO2v2","name":"Wall of Ice","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter.When the wall appears, each creature in its space is pushed out of it by the shortest route. The creature chooses which side of the wall to end up on, unless the creature is incapacitated. The creature then makes a DC 17 Dexterity saving throw, taking 35 (10d6) cold damage on a failed save, or half as much damage on a successful one.The wall lasts for 1 minute or until the {creature} is incapacitated or dies. The wall can be damaged and breached; each 10-foot section has AC 5, 30 hit points, vulnerability to fire damage, and immunity to acid, cold, necrotic, poison, and psychic damage. If a section is destroyed, it leaves behind a sheet of frigid air in the space the wall occupied. Whenever a creature finishes moving through the frigid air on a turn, willingly or otherwise, the creature must make a DC 17 Constitution saving throw, taking 17 (5d6) cold damage on a failed save, or half as much damage on a successful one. The frigid air dissipates when the rest of the wall vanishes.\n\nThe {creature} magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter. When the wall appears, each creature in its space is pushed out of it by the shortest route. The creature chooses which side of the wall to end up on, unless the creature is incapacitated. The creature then makes a Dexterity saving throw.The wall can be damaged and breached. If a section is destroyed, it leaves behind a sheet of frigid air in the space the wall occupied. Whenever a creature finishes moving through the frigid air on a turn, willingly or otherwise, the creature must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":"a solid surface it can see within 60 ft."},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"ft","type":"line"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"5d6","save":{"ability":"dex","dc":17,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/barrier-ice-crystal-wall-jagged-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234533,"modifiedTime":1672336144151,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Kx011zSOyhqEumH5","name":"Tail Swipe (Legendary)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} makes one tail attack.\n\nThe {creature} swipes its tail against its prey!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":1},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234534,"modifiedTime":1672336204525,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"L7myj23X3PFPUNh6","name":"Regional Effects","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234534,"modifiedTime":1672336013541,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LJTY3nl1cp9go4eT","name":"Fire Aura","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nAt the start of each of the {creature}'s turns, each creature within 5 feet of it takes 10 (3d6) fire damage, and flammable objects in the aura that aren't being worn or carried ignite.A creature that touches the {creature} or hits it with a melee attack while within 5 feet of it takes 10 (3d6) fire damage.\n\nAt the start of each of the {creature}'s turns, each creature within 5 feet of it takes fire damage, and flammable objects in the aura that aren't being worn or carried ignite. A creature that touches the {creature} or hits it with a melee attack while within 5 feet of it takes fire damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234535,"modifiedTime":1672335661674,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LO4nrudXAKJ4DbQI","name":"Channel Negative Energy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} magically unleashes negative energy. Creatures within 60 feet of the {creature}, including ones behind barriers and around corners, can't regain hit points until the end of the {creature}'s next turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":2},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/beam-impact-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234535,"modifiedTime":1672335525024,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LUHmtIDD1VTreFqI","name":"Incorporeal Movement","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} can move through other creatures and objects as if they were difficult terrain.It takes 5 (1d10) force damage if it ends its turn inside an object.\n\nThe {creature} can move through other creatures and objects as if they were difficult terrain.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/air-wave-gust-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234536,"modifiedTime":1672335876206,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LVnd9fq9cQj7rR0Q","name":"Lightning Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {type} exhales lightning in a 90-foot line that is 5 ft. wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.The {type} exhales lightning in a 90-foot line that is 5 ft. wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":19,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"flags":{},"img":"icons/magic/lightning/bolt-strike-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234536,"modifiedTime":1672335836200,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LkepRN2rP3Hp4orY","name":"Grasping Tendrils","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can have up to six tendrils at a time. Each tendril can be attacked (AC 20; 10 hit points; immunity to poison and psychic damage). Destroying a tendril deals no damage to the {creature}, which can extrude a replacement tendril on its next turn. A tendril can also be broken if a creature takes an action and succeeds on a DC 15 Strength check against it.The {creature} can have up to six tendrils at a time. Each tendril can be attacked. A tendril can also be broken if a creature takes an action and succeeds on a Strength check against it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/root-vine-entangle-foot-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234537,"modifiedTime":1672335626084,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LvSBjRKoCAKaAnQy","name":"Fey Ancestry","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on saving throws against being charmed, and magic can't put the {creature} to sleep.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/elk-moose-marked-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234537,"modifiedTime":1672335668695,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"M9XqZZGoTKawAsCl","name":"Underwater Camouflage","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on Dexterity (Stealth) checks made while underwater.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"Octopus","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/orb-ice-web.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234538,"modifiedTime":1672336157550,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MBOiQSnMr02wUpEN","name":"Limited Magic Immunity","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can't be affected or detected by spells of 6th level or lower unless it wishes to be. It has advantage on saving throws against all other spells and magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234538,"modifiedTime":1672335829042,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MFuiImIvLzYA3osc","name":"Immutable Form","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} is immune to any spell or effect that would alter its form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/orb-beam-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234539,"modifiedTime":1672335878637,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MLVEyA7VcWu9uXqV","name":"Fear Aura","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Any creature hostile to the {creature} that starts its turn within 20 feet of the {creature} must make a DC 21 Wisdom saving throw, unless the {creature} is incapacitated. On a failed save, the creature is frightened until the start of its next turn. If a creature's saving throw is successful, the creature is immune to the {creature}'s Fear Aura for the next 24 hours.Any creature hostile to the {creature} that starts its turn within 20 feet of the {creature} must make a Wisdom saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":21,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/elemental-water.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234539,"modifiedTime":1672335673682,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MqAVplIArAKzpnXB","name":"Pounce","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nIf the {creature} moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a DC 13 Strength saving throw or be knocked prone.If the target is prone, the {creature} can make one bite attack against it as a bonus action.\n\nIf the {creature} moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must make a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/claws/claw-talons-glowing-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234539,"modifiedTime":1672336046015,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NI3FPb5jQsePdlVl","name":"Possession","ownership":{"default":0},"type":"feat","system":{"description":{"value":"One humanoid that the {creature} can see within 5 ft. of it must succeed on a DC 13 Charisma saving throw or be possessed by the {creature}; the {creature} then disappears, and the target is incapacitated and loses control of its body. The {creature} now controls the body but doesn't deprive the target of awareness. The {creature} can't be targeted by any attack, spell, or other effect, except ones that turn {type}, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being charmed and frightened. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.The possession lasts until the body drops to 0 hit points, the {creature} ends it as a bonus action, or the {creature} is turned or forced out by an effect like the dispel evil and good spell. When the possession ends, the {creature} reappears in an unoccupied space within 5 ft. of the body. The target is immune to this {creature}'s Possession for 24 hours after succeeding on the saving throw or after the possession ends.One humanoid that the {creature} can see within 5 ft. of it must make a Charisma saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"spec"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":13,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"flags":{},"img":"icons/magic/control/fear-fright-monster-grin-purple-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234540,"modifiedTime":1672336048232,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NfTCXq8eRrqjhvAo","name":"Ethereal Stride","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} and up to three willing creatures within 5 feet of it magically enter the Ethereal Plane from the Material Plane, or vice versa.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/lightning/orb-ball-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234540,"modifiedTime":1672335686940,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NmWSgqxpYfhrvQKq","name":"Detect (Legendary)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} makes a Wisdom (Perception) check.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":1},"ability":"wis","actionType":"abil","attackBonus":"","chatFlavor":"The aboleth focuses its gaze!","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"d20+@skills.prc.total","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/eyes/lizard-single-slit-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234541,"modifiedTime":1672335727255,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NzHwrEuKnKxZ4NTP","name":"Split","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nWhen a {creature} that is Medium or larger is subjected to lightning or slashing damage, it splits into two new {creature}s if it has at least 10 Hit Points. Each new {creature} has Hit Points equal to half the original {creature}'s, rounded down. New {creature}s are one size smaller than the original pudding.\n\nThe {creature} splits into two new {creature}s. New {creature}s are one size smaller than the original {creature}.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/slimes/slime-movement-pseudopod-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234541,"modifiedTime":1672336241184,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"OejKD6LitlURecxp","name":"Psychic Drain","ownership":{"default":0},"type":"feat","system":{"description":{"value":"One creature charmed by the {creature} takes 10 (3d6) psychic damage, and the {creature} regains hit points equal to the damage the creature takes.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":2},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","psychic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/projectile-skull-flaming-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234542,"modifiedTime":1672336039782,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"OqRnKL4703RuReS1","name":"Shriek","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When bright light or a creature is within 30 feet of the {creature}, it emits a shriek audible within 300 feet of it. The {creature} continues to shriek until the disturbance moves out of range and for 1d4 of the {creature}'s turns afterwardWhen bright light or a creature is within 30 feet of the {creature}, it emits a shriek audible within 300 feet of it. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/mouth-teeth-human.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234542,"modifiedTime":1672336291499,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"OsPhT7jA5LlvUA6e","name":"Stench","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Any creature that starts its turn within 5 ft. of the {creature} must succeed on a DC 10 Constitution saving throw or be poisoned until the start of its next turn. On a successful saving throw, the creature is immune to the {creature}'s Stench for 24 hours.Any creature that starts its turn within 5 ft. of the {creature} must succeed on a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":10,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/commodities/tech/smoke-bomb-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234543,"modifiedTime":1672336230984,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Ouvju0Y3SoYb5EMR","name":"Flying Sword","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} releases its greatsword to hover magically in an unoccupied space within 5 ft. of it. If the {creature} can see the sword, the {creature} can mentally command it as a bonus action to fly up to 50 ft. and either make one attack against a target or return to the {creature}'s hands.If the hovering sword is targeted by any effect, the {creature} is considered to be holding it. The hovering sword falls if the {creature} dies.The {creature} releases its greatsword to hover magically in an unoccupied space within 5 ft. of it. If the hovering sword is targeted by any effect, the {creature} is considered to be holding it. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/weapons/swords/sword-runed-glowing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234543,"modifiedTime":1672335647897,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Ozz1xvw2ydiw4IJP","name":"Running Leap","ownership":{"default":0},"type":"feat","system":{"description":{"value":"With a 10-foot running start, the {creature} can long jump up to 25 ft.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234544,"modifiedTime":1672335999848,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"P0DMM1rgpoiBodDT","name":"Lair Actions","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/stealth-hide-eyes-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234544,"modifiedTime":1672335852792,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"PLBui1FCQuSlEqyI","name":"Reflective Carapace","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Any time the {creature} is targeted by a magic missile spell, a line spell, or a spell that requires a ranged attack roll, roll a d6. On a 1 to 5, the {creature} is unaffected.On a 6, the {creature} is unaffected, and the effect is reflected back at the caster as though it originated from the {creature}, turning the caster into the target.The {creature} is unaffected, and the effect is reflected back at the caster as though it originated from the {creature}, turning the caster into the target.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d6","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-pentagon-purple-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234545,"modifiedTime":1672335958324,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"PPzVD90vab60FqCt","name":"Teleport","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":2},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234545,"modifiedTime":1672336200251,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"PqVfFNyOPmecrS7N","name":"Nimble Escape","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can take the Disengage or Hide action as a bonus action on each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234546,"modifiedTime":1672335795741,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"QCNJD2GuOZSTT4Wt","name":"Roar","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different, as detailed below. Each creature within 500 feet of the {creature} and able to hear the roar must make a saving throw.**First Roar.** Each creature that fails a DC 18 Wisdom saving throw is frightened for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.**Second Roar.** Each creature that fails a DC 18 Wisdom saving throw is deafened and frightened for 1 minute. A frightened creature is paralyzed and can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.**Third Roar.** Each creature makes a DC 18 Constitution saving throw. On a failed save, a creature takes 44 (8d10) thunder damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone.\n\nThe {creature} emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different. Each creature within 500 feet of the {creature} and able to hear the roar must make a saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"creature"},"range":{"value":500,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/sonic/scream-wail-shout-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234546,"modifiedTime":1672336004217,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"QMGBV7OSnXqWLdhr","name":"Barbed Hide","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At the start of each of its turns, the {creature} deals 5 (1d10) piercing damage to any creature grappling it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234547,"modifiedTime":1672335570428,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"QOWoa60SwvsQJifN","name":"Berserk","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nWhenever the {creature} starts its turn with 60 hit points or fewer, roll a d6. On a 6, the {creature} goes berserk. On each of its turns while berserk, the {creature} attacks the nearest creature it can see.If no creature is near enough to move to and attack, the {creature} attacks an object, with preference for an object smaller than itself. Once the {creature} goes berserk, it continues to do so until it is destroyed or regains all its hit points.\n\nThe {creature} goes berserk. On each of its turns while berserk, the {creature} attacks the nearest creature it can see. If no creature is near enough to move to and attack, the {creature} attacks an object, with preference for an object smaller than itself.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d6","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/reptiles/lizard-mouth-glowing-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234547,"modifiedTime":1672335565693,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"QiM1nbPzbLzKnfmP","name":"Tentacle Slam","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} slams creatures grappled by it into each other or a solid surface. Each creature must succeed on a DC 14 Constitution saving throw or take 10 (2d6 + 3) bludgeoning damage and be stunned until the end of the {creature}'s next turn. On a successful save, the target takes half the bludgeoning damage and isn't stunned.The {creature} slams creatures grappled by it into each other or a solid surface. Each creature must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/undead-skeleton-deformed-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234548,"modifiedTime":1672336192418,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SGgVxdZbmsStfeGB","name":"Fey Charm","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} targets one humanoid or beast that she can see within 30 feet of her. If the target can see the {creature}, it must succeed on a DC 14 Wisdom saving throw or be magically charmed.The charmed creature regards the {creature} as a trusted friend to be heeded and protected. Although the target isn't under the {creature}'s control, it takes the {creature}'s requests or actions in the most favorable way it can.Each time the {creature} or its allies do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the {creature} dies, is on a different plane of existence from the target, or ends the effect as a bonus action. If a target's saving throw is successful, the target is immune to the {creature}'s Fey Charm for the next 24 hours. The {creature} can have no more than one humanoid and up to three beasts charmed at a time.\n\nThe {creature} targets one humanoid or beast that she can see within 30 feet of her. If the target can see the {creature}, it must make a Wisdom saving throw. Each time the {creature} or its allies do anything harmful to the target, it can repeat the saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":"one humanoid or beast"},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/consumables/plants/leaf-veins-glowing-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234548,"modifiedTime":1672335666423,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SlAF2AE4ZKoUvQql","name":"Create Specter","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} targets a humanoid within 10 feet of it that has been dead for no longer than 1 minute and died violently. The target's spirit rises as a specter in the space of its corpse or in the nearest unoccupied space. The specter is under the {creature}'s control. The {creature} can have no more than seven specters under its control at one time.The target's spirit rises as a specter in the space of its corpse or in the nearest unoccupied space. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/dragon-breath-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234548,"modifiedTime":1672335499576,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SrmR5UfLMFxTErTp","name":"Shielded Mind","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} is immune to scrying and to any effect that would sense its emotions, read its thoughts, or detect its location.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/control-influence-rally-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234549,"modifiedTime":1672336296900,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"T25IRJ66yUqi2F1m","name":"First Roar","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Each creature that fails a DC 18 Wisdom saving throw is frightened for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/sonic/scream-wail-shout-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234549,"modifiedTime":1672335653874,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"T2gLBBjrHTbLTdGc","name":"Wakeful","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When one of the {creature}'s heads is asleep, its other head is awake.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/eyes/lizard-single-slit-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234550,"modifiedTime":1672336146498,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"TVPqMOcoLNFBUMyG","name":"Acid Absorption","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Whenever the {creature} is subjected to acid damage, it takes no damage and instead regains a number of hit points equal to the acid damage dealt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/orb-smoking-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234551,"modifiedTime":1672335456646,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"TyDSfYTJeKv7c8lB","name":"Air Form","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {type} can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/debuff-energy-hold-levitate-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234552,"modifiedTime":1672335435297,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"UH57LTsTGDxl2oS6","name":"Fire Absorption","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Whenever the {creature} is subjected to fire damage, it takes no damage and instead regains a number of hit points equal to the fire damage dealt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/flame-burning-campfire-rocks.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234552,"modifiedTime":1672335663799,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"UYorz1ZrfuoTRknp","name":"Shark Telepathy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can magically command any shark within 120 feet of it, using a limited telepathy.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/orb-swirling-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234553,"modifiedTime":1672335980640,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"UjbgbOnd6ltjagZm","name":"Devil Sight","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Magical darkness doesn't impede the {creature}'s Darkvision.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/eye-slit-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234553,"modifiedTime":1672335724735,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Uvy7vla2EhYSfTl0","name":"Ignited Illumination","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As a bonus action, the {creature} can set itself ablaze or extinguish its flames. While ablaze, the {creature} sheds bright light in a 10-foot radius and dim light for an additional 10 ft.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/explosion-mushroom-nuke-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234554,"modifiedTime":1672335885761,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"V1lW1vnrTpVTDr6o","name":"Pack Tactics","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on an attack roll against a creature if at least one of the {creature}'s allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"Baboon","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/paw-print-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234555,"modifiedTime":1672335789570,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VYAnJjIgb5nPXfRr","name":"Undead Fortitude","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nIf damage reduces the {creature} to 0 hit points, it must make a Constitution saving throw with a DC of 5+the damage taken, unless the damage is radiant or from a critical hit. On a success, the {creature} drops to 1 hit point instead.\n\nIf damage reduces the {creature} to 0 hit points, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"con"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/acid/pouring-gas-smoke-liquid.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234556,"modifiedTime":1672336159442,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VbBHypDc0eLWbsNE","name":"Nightmare Haunting","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nWhile on the Ethereal Plane, the {creature} magically touches a sleeping humanoid on the Material Plane. A protection from evil and good spell cast on the target prevents this contact, as does a magic circle.As long as the contact persists, the target has dreadful visions. If these visions last for at least 1 hour, the target gains no benefit from its rest, and its hit point maximum is reduced by 5 (1d10). If this effect reduces the target's hit point maximum to 0, the target dies, and if the target was evil, its soul is trapped in the hag's soul bag. The reduction to the target's hit point maximum lasts until removed by the greater restoration spell or similar magic.\n\nWhile on the Ethereal Plane, the {creature} magically touches a sleeping humanoid on the Material Plane. As long as the contact persists, the target has dreadful visions.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"flags":{},"img":"icons/commodities/tech/smoke-bomb-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234556,"modifiedTime":1672335797625,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VhByyxHJN7MNQJRd","name":"Shapechanger","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can use its action to polymorph into a Small or Medium humanoid it has seen, or back into its true form.Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies.The {creature} can use its action to polymorph into a Small or Medium humanoid it has seen, or back into its true form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/silhouette-hold-change-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234556,"modifiedTime":1672335982772,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VrPyFE3Hhjh0QjIO","name":"Ephemeral","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can't wear or carry anything.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/orb-ice-web.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234557,"modifiedTime":1672335693650,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VvXrTnB2FscxqbG3","name":"Moan","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Each creature within 60 feet of the {creature} that can hear its moan and that isn't an {type} must succeed on a DC 13 Wisdom saving throw or become frightened until the end of the {creature}'s next turn. If a creature's saving throw is successful, the creature is immune to the {creature}'s moan for the next 24 hours.Each creature within 60 feet of the {creature} that can hear its moan and that isn't an {type} must make a Wisdom saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"radius"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"cha"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/projectile-skull-flaming-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234557,"modifiedTime":1672335809708,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WHnLJRaXfIW7Z28t","name":"Duergar Resilience","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on saving throws against poison, spells, and illusions, as well as to resist being charmed or paralyzed.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/control-influence-rally-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234558,"modifiedTime":1672335711131,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WbaKH3NLA3mvylfM","name":"Elemental Demise","ownership":{"default":0},"type":"feat","system":{"description":{"value":"If the {creature} dies, its body disintegrates into a warm breeze, leaving behind only equipment the {creature} was wearing or carrying.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/air-wave-gust-smoke-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234558,"modifiedTime":1672335703551,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WdpSeGqhZpptz37y","name":"Bite","ownership":{"default":0},"type":"weapon","system":{"description":{"value":"\nMelee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n\nThe {creature} attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"ada":false,"mgc":false,"sil":false},"proficient":true},"flags":{},"img":"icons/creatures/abilities/mouth-teeth-long-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234559,"modifiedTime":1672335563706,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"We6R4thWKYDRYlEc","name":"Ethereal Sight","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can see 60 ft. into the Ethereal Plane when it is on the Material Plane, and vice versa.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/eye-tendrils-web-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234560,"modifiedTime":1672335689629,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WqRzbokPG0am6AHb","name":"Charge","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nIf the {creature} moves at least 20 ft. straight toward a target and then hits it with a tusk attack on the same turn, the target takes an extra 3 (1d6) slashing damage.If the target is a creature, it must succeed on a DC 11 Strength saving throw or be knocked prone.\n\nIf the {creature} moves at least 20 ft. straight toward a target and then hits it with a tusk attack on the same turn, the target takes extra slashing damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":11,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234560,"modifiedTime":1672335522635,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WtQHjfWuFrsYEns3","name":"Third Roar","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Each creature makes a DC 18 Constitution saving throw. On a failed save, a creature takes 44 (8d10) thunder damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/sonic/scream-wail-shout-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234561,"modifiedTime":1672336187309,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"X96xsQjIolyHtV91","name":"Whirlwind of Sand","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} magically transforms into a whirlwind of sand, moves up to 60 feet, and reverts to its normal form. While in whirlwind form, the {creature} is immune to all damage, and it can't be grappled, petrified, knocked prone, restrained, or stunned. Equipment worn or carried by the {creature} remain in its possession.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":2},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/explosion-mushroom-nuke-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234561,"modifiedTime":1672336117138,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XFvk6ywwZWTkMmQR","name":"Dark Devotion","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on saving throws against being charmed or frightened.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/control-influence-rally-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234562,"modifiedTime":1672335489676,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XmLuhZYd9WnCWBlU","name":"Hellish Rejuvenation","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nA {creature} that dies in the Nine Hells sometimes comes back to comes back to life with all its hit points in 1d10 days unless it is killed by a good-aligned creature with a bless spell cast on that creature or its remains are sprinkled with holy water.\n\nA {creature} that dies in the Nine Hells sometimes comes back to life.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d10","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"Lemure","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/wounds/anatomy-organ-heart-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234562,"modifiedTime":1672335905764,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XwcFK21aM2BThgSk","name":"Fetid Cloud","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nA 10-foot radius of disgusting green gas extends out from the {creature}. The gas spreads around corners, and its area is lightly obscured. It lasts for 1 minute or until a strong wind disperses it.Any creature that starts its turn in that area must succeed on a DC 11 Constitution saving throw or be poisoned until the start of its next turn. While poisoned in this way, the target can take either an action or a bonus action on its turn, not both, and can't take reactions. 1 use per day.\n\nA 10-foot radius of disgusting green gas extends out from the {creature}. The gas spreads around corners, and its area is lightly obscured. Any creature that starts its turn in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/acid/projectile-glowing-bubbles.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234563,"modifiedTime":1672335671239,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Xwj2GPqTxngS0j2L","name":"Blasphemous Word","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} utters a blasphemous word. Each non-{type} creature within 10 feet of the {creature} that can hear the magical utterance must succeed on a DC 16 Constitution saving throw or be stunned until the end of the {creature}'s next turn.\n\nThe {creature} utters a blasphemous word. Each non-{type} creature within 10 feet of the {creature} that can hear the magical utterance must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":2},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":16,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-vortex-swirl-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234563,"modifiedTime":1672335560632,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YKC7pwYkJSKn1vuw","name":"Ice Walk","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {type} can move across and climb icy surfaces without needing to make an ability check. Additionally, difficult terrain composed of ice or snow doesn't cost it extra movement.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/water-iceberg-bubbles.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234564,"modifiedTime":1672335888117,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YShGyidij4sLpyzF","name":"Horrific Appearance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nAny humanoid that starts its turn within 30 feet of the {creature} and can see the {creature}'s true form must make a DC 11 Wisdom saving throw. On a failed save, the creature is frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, with disadvantage if the hag is within line of sight, ending the effect on itself on a success.If a creature's saving throw is successful or the effect ends for it, the creature is immune to the {creature}'s Horrific Appearance for the next 24 hours. Unless the target is surprised or the revelation of the hag's true form is sudden, the target can avert its eyes and avoid making the initial saving throw. Until the start of its next turn, a creature that averts its eyes has disadvantage on attack rolls against the {creature}.\n\nAny humanoid that starts its turn within 30 feet of the {creature} and can see the {creature}'s true form must make a Wisdom saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":30,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/unholy/demon-winged-cyclops-drooling.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234564,"modifiedTime":1672335895418,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Z7U6z4HD1ORlkTIJ","name":"Frost Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} exhales a 15-foot cone of cold air. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 5 (2d4) cold damage on a failed save, or half as much damage on a successful one.\n\nThe {creature} exhales a 15-foot cone of cold air. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":10,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"flags":{},"img":"icons/magic/air/wind-tornado-wall-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234565,"modifiedTime":1672335636492,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZIGTG2qhkJ54jEk4","name":"Haste","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nRecharge 5-6.\n\nUntil the end of its next turn, the {creature} magically gains a +2 bonus to its AC, has advantage on Dexterity saving throws, and can use an attack as a bonus action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"flags":{},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234565,"modifiedTime":1672335622871,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"aD3HKoBnJtZL6cDj","name":"Stunning Screech","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} emits a horrific screech. Each creature within 20 feet of it that can hear it and that isn't a {type} must succeed on a DC 14 Constitution saving throw or be stunned until the end of the {creature}'s next turn .\n\nThe {creature} emits a horrific screech. Each creature within 20 feet of it that can hear it and that isn't a {type} must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"creature"},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/toxins/cup-goblet-poisoned-spilled.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234566,"modifiedTime":1672336224908,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"aH5ncM30tP8tPQ24","name":"Swallow","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is also swallowed, and the grapple ends. While swallowed, the target is blinded and restrained, it has total cover against attacks and other effects outside the {creature}, and it takes 21 (6d6) acid damage at the start of each of the {creature}'s turns. A {creature} can have only one creature swallowed at a time.If the {creature} takes 30 damage or more on a single turn from the swallowed creature, the {creature} must succeed on a DC 14 Constitution saving throw at the end of that turn or regurgitate the creature, which falls prone in a space within 10 ft. of the {creature}. If the {creature} dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 15 ft. of movement, exiting prone.\n\nThe {creature} attacks with its Swallow.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/mouth-teeth-tongue-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234567,"modifiedTime":1672336212815,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ao6mxTJVYy7WaVgW","name":"Blinding Dust","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nBlinding dust and sand swirls magically around the {creature}. Each creature within 5 feet of the {creature} must succeed on a DC 16 Constitution saving throw or be blinded until the end of the creature's next turn.\n\nBlinding dust and sand swirls magically around the {creature}. Each creature within 5 feet of the {creature} must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":1},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"con"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/barrier-wall-explosion-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234567,"modifiedTime":1672335550516,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"bG5Z45jj4wz0N3T6","name":"Deadly leap","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nIf the {creature} jumps at least 15 ft. as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures.Each of those creatures must succeed on a DC 16 Strength or Dexterity saving throw (target's choice) or be knocked prone and take 14 (3d6 + 4) bludgeoning damage plus 14 (3d6 + 4) slashing damage. On a successful save, the creature takes only half the damage, isn't knocked prone, and is pushed 5 ft. out of the {creature}'s space into an unoccupied space of the creature's choice. If no unoccupied space is within range, the creature instead falls prone in the {creature}'s space.\n\nIf the {creature} jumps at least 15 ft. as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures. Each of those creatures must make a Strength or Dexterity saving throw (target's choice) or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":16,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/projectile-wave-arrow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234568,"modifiedTime":1672335740014,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"bGSW8IuWURWiWtxr","name":"Fire Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\n**Fire Breath.** The {type} exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 45 (13d6) fire damage on a failed save, or half as much damage on a successful one.\n\nThe {type} exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":18,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234568,"modifiedTime":1672335659330,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"boO7LJ0RRinoWHyT","name":"Limited Amphibiousness","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating.The {creature} can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/environment/creatures/frog-spotted-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234568,"modifiedTime":1672335831362,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"bojUXmNOZ2rJVujD","name":"Ink Cloud","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nA 20-foot-radius cloud of ink extends all around the {creature} if it is underwater. The area is heavily obscured for 1 minute, although a significant current can disperse the ink. After releasing the ink, the {creature} can use the Dash action as a bonus action. Recharges after a Short or Long Rest.\n\nA 20-foot-radius cloud of ink extends all around the {creature} if it is underwater.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"flags":{},"img":"icons/magic/unholy/orb-swirling-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234569,"modifiedTime":1672335874265,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"c4Q6NDCLJSNcNc9T","name":"Water Breathing","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can breathe only underwater.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"Octopus","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/projectile-water-ice-orb.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234569,"modifiedTime":1672336141867,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"cSA0EbjlxCbst4gJ","name":"Siege Monster","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {type} deals double damage to objects and structures.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/magical/construct-iron-stomping-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234570,"modifiedTime":1672336289181,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"cZm13DxOe9lZyGFT","name":"Corrosive Form","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nA creature that touches the {creature} or hits it with a melee attack while within 5 feet of it takes 4 (1d8) acid damage. Any nonmagical weapon made of metal or wood that hits the {creature} corrodes.After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls. If its penalty drops to -5, the weapon is destroyed. Nonmagical ammunition made of metal or wood that hits the {creature} is destroyed after dealing damage. The {creature} can eat through 2-inch-thick, nonmagical wood or metal in 1 round.\n\nA creature that touches the {creature} or hits it with a melee attack while within 5 feet of it takes acid damage. Any nonmagical weapon made of metal or wood that hits the pudding corrodes.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/earth/orb-stone-smoke-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234570,"modifiedTime":1672335501748,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"cl5sUkAIeJoAG4gh","name":"Leadership","ownership":{"default":0},"type":"feat","system":{"description":{"value":"For 1 minute, the {creature} can utter a special command or warning whenever a nonhostile creature that it can see within 30 ft. of it makes an attack roll or a saving throw. The creature can add a d4 to its roll provided it can hear and understand the {creature}. A creature can benefit from only one Leadership die at a time. This effect ends if the {creature} is incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"flags":{},"img":"icons/sundries/documents/document-sealed-red-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234571,"modifiedTime":1672335850907,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"cpnrDGQrqgPlSmwR","name":"Frightening Gaze","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} fixes its gaze on one creature it can see within 10 feet of it. The target must succeed on a DC 18 Wisdom saving throw against this magic or become grappled for 1 minute. The grappled target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to the {creature}'s gaze for the next 24 hours.\n\nThe {creature} fixes its gaze on one creature it can see within 10 feet of it. The target must make a Wisdom saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":2},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/silhouette-stealth-shadow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234571,"modifiedTime":1672335640862,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"cueeLXQ3W8gKHiLq","name":"Transparent","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nEven when the {creature} is in plain sight, it takes a successful DC 15 Wisdom (Perception) check to spot a {creature} that has neither moved nor attacked. A creature that tries to enter the {creature}'s space while unaware of the {creature} is surprised by the {creature}.\n\nEven when the {creature} is in plain sight, it takes a successful Wisdom (Perception) check to spot a {creature} that has neither moved nor attacked. A creature that tries to enter the {creature}'s space while unaware of the cube is surprised by the {creature}.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/silhouette-hold-change-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234572,"modifiedTime":1672336182664,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"cz1LUaiXG8GshgU9","name":"Angelic Weapons","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature}'s weapon attacks are magical. When the {creature} hits with any weapon, the weapon deals an extra 4d8 radiant damage (included in the attack).The {creature}'s weapon attacks are magical. When the {creature} hits with any weapon, the weapon deals extra radiant damage (included in the attack).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/dagger-rune-enchant-flame-strong-blue-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234572,"modifiedTime":1672335425867,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"czKwBo1qw5O2gCNy","name":"Tentacle Attack or Fling","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} makes one tentacle attack or uses its Fling.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/tentacles/tentacles-thing-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234573,"modifiedTime":1672336197999,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dA5X2eQuOtHywpQF","name":"Invisibility","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} magically turns invisible until it attacks, casts a spell, or uses its Enlarge, or until its concentration is broken, up to 1 hour (as if concentrating on a spell).\n\nThe {creature} magically turns invisible. Any equipment the {creature} wears or carries is invisible with it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/webs/webthin-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234573,"modifiedTime":1672335864557,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dPPLbo3Unu3TqZrs","name":"Gibbering","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} babbles incoherently while it can see any creature and isn't incapacitated. Each creature that starts its turn within 20 feet of the mouther and can hear the gibbering must succeed on a DC 10 Wisdom saving throw. On a failure, the creature can't take reactions until the start of its next turn and rolls a d8 to determine what it does during its turn.On a 1 to 4, the {creature} does nothing. On a 5 or 6, the creature takes no action or bonus action and uses all its movement to move in a randomly determined direction. On a 7 or 8, the creature makes a melee attack against a randomly determined creature within its reach or does nothing if it can't make such an attack.\n\nThe {creature} babbles incoherently while it can see any creature. Each creature that starts its turn within 20 feet of the {creature} and can hear the gibbering must succeed on a Wisdom saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d8","save":{"ability":"wis","dc":10,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/toxins/cup-goblet-poisoned-spilled.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234573,"modifiedTime":1672335634223,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dm2G9HupHZbZRvNm","name":"Children of the Night","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} magically calls 2d4 swarms of bats or rats, provided that the sun isn't up. While outdoors, the {creature} can call 3d6 wolves instead. The called creatures arrive in 1d4 rounds, acting as allies of the {creature} and obeying its spoken commands. The beasts remain for 1 hour, until the {creature} dies, or until the {creature} dismisses them as a bonus action.The {creature} magically calls swarms of bats or rats. While outdoors, the {creature} can call wolves instead. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/skull-trio-badge-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234574,"modifiedTime":1672335518512,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dvSoAF3bOeUeIrxf","name":"Multiple Heads","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} has five heads. While it has more than one head, the {creature} has advantage on saving throws against being blinded, charmed, deafened, frightened, stunned, and knocked unconscious. Whenever the {creature} takes 25 or more damage in a single turn, one of its heads dies. If all its heads die, the {creature} dies.At the end of its turn, it grows two heads for each of its heads that died since its last turn, unless it has taken fire damage since its last turn. The {creature} regains 10 hit points for each head regrown in this way.\n\nThe {creature} has five heads. While it has more than one head, the {creature} has advantage on saving throws against being blinded, charmed, deafened, frightened, stunned, and knocked unconscious.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/strike-sword-stabbed-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234574,"modifiedTime":1672335799733,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eL3OJmc4FuetizKO","name":"Swarm","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny {creature}. The swarm can't regain hit points or gain temporary hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"Bats","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/bats-movement-flying-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234575,"modifiedTime":1672336209124,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eVKgO2130oiJqsjY","name":"Telepathic Bond","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While the {creature} is on the same plane of existence as its master, it can magically convey what it senses to its master, and the two can communicate telepathically.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234575,"modifiedTime":1672336202508,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ebcmg4M5LsUYCqee","name":"Paralyzing Touch","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} uses its Paralyzing Touch.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":2},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/water-hand.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234576,"modifiedTime":1672336061779,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"f4yvSah35ixQOswD","name":"Standing Leap","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature}'s long jump is up to 30 ft. and its high jump is up to 15 ft., with or without a running start.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/environment/creatures/frog-spotted-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234576,"modifiedTime":1672336236951,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fUMY4b9snsiKl30e","name":"Freedom of Movement","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} ignores difficult terrain, and magical effects can't reduce its speed or cause it to be restrained. It can spend 5 feet of movement to escape from nonmagical restraints or being grappled.The {creature} ignores difficult terrain, and magical effects can't reduce its speed or cause it to be restrained. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234577,"modifiedTime":1672335645524,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fdmzHw875EzpXM2a","name":"Spellcasting","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} is a 1st-level spellcaster. Its spellcasting ability is Wisdom (spell save DC 12, +4 to hit with spell attacks). The {creature} has following cleric spells prepared:Cantrips (at will): light, sacred flame, thaumaturgy1st level (3 slots): bless, cure wounds, sanctuary\n\nThe {creature} is a spellcaster. Its spellcasting ability is Wisdom.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/projectiles-star-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234578,"modifiedTime":1672336245100,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"g4V02wJbEstUpwi9","name":"Tree Stride","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Once on her turn, the {creature} can use 10 feet of her movement to step magically into one living tree within her reach and emerge from a second living tree within 60 feet of the first tree, appearing in an unoccupied space within 5 feet of the second tree. Both trees must be Large or bigger.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/tree-spirit-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234578,"modifiedTime":1672336178492,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gM767AhU36B6LUGU","name":"Lightning Storm","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} magically creates three bolts of lightning, each of which can strike a target the {creature} can see within 120 feet of it. A target must make a DC 23 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.The {creature} magically creates three bolts of lightning, each of which can strike a target the {creature} can see within 120 feet of it. A target must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":3,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":23,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/lightning/bolts-forked-large-blue-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234579,"modifiedTime":1672335833216,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gWpp0N06HvS937Go","name":"Two Heads","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on Wisdom (Perception) checks and on saving throws against being blinded, charmed, deafened, frightened, stunned, and knocked unconscious.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/skull-horned-goat-pentagram-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234579,"modifiedTime":1672336166182,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gbcy9MyUF06iUC88","name":"Enslave","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} targets one creature it can see within 30 ft. of it. The target must succeed on a DC 14 Wisdom saving throw or be magically charmed by the {creature} until the {creature} dies or until it is on a different plane of existence from the target.The charmed target is under the {creature}'s control and can't take reactions, and the {creature} and the target can communicate telepathically with each other over any distance.Whenever the charmed target takes damage, the target can repeat the saving throw. On a success, the effect ends. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the {creature}.\n\nThe target must make a Wisdom saving throw. Whenever the target takes damage, the target can repeat the saving throw. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the {creature}.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"wis"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/hypnosis-mesmerism-watch.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234580,"modifiedTime":1672335696160,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gh5UPTS0L16fHYwB","name":"Iron Scent","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can pinpoint, by scent, the location of ferrous metal within 30 feet of it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/weapons/swords/sword-runed-glowing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234581,"modifiedTime":1672335859642,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gklxiU0PKYSM7RWv","name":"Heal Self","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} magically regains 11 (2d8+2) hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":3,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":3},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/life/ankh-gold-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234581,"modifiedTime":1672335620632,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gqrKcFwxHhmwrP2q","name":"Scare","ownership":{"default":0},"type":"feat","system":{"description":{"value":"One creature of the {creature}'s choice within 20 ft. of it must succeed on a DC 10 Wisdom saving throw or be frightened for 1 minute. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the {creature} is within line of sight, ending the effect on itself on a success.One creature of the {creature}'s choice within 20 ft. of it must make a Wisdom saving throw. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the {creature} is within line of sight, ending the effect on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":10,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/unholy/demon-winged-cyclops-drooling.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234582,"modifiedTime":1672335994225,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hMC7XCkDbzVMZ0QG","name":"Misty Escape","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When it drops to 0 hit points outside its resting place, the {creature} transforms into a cloud of mist (as in the Shapechanger trait) instead of falling unconscious, provided that it isn't in sunlight or running water. If it can't transform, it is destroyed.While it has 0 hit points in mist form, it can't revert to its {creature} form, and it must reach its resting place within 2 hours or be destroyed. Once in its resting place, it reverts to its {creature} form. It is then paralyzed until it regains at least 1 hit point. After spending 1 hour in its resting place with 0 hit points, it regains 1 hit point.A slain {creature} transforms into a cloud of mist (as in the Shapechanger trait) instead of falling unconscious.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-gray.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234582,"modifiedTime":1672335811934,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hkmTEk6klT6QL4K4","name":"Innate Spellcasting","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {type}'s innate spellcasting ability is Charisma. It can innately cast the following spells, requiring no material components:At will: detect magic, fog cloud, light3/day each: feather fall, fly, misty step, telekinesis1/day each: control weather, gaseous form","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/projectiles-star-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234583,"modifiedTime":1672335871990,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hu2pgYS1RD7hglvg","name":"Horror Nimbus","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} magically emits scintillating, multicolored light. Each creature within 15 feet of the {creature} that can see the light must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the {creature}'s Horror Nimbus for the next 24 hours.A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the {creature}'s Horror Nimbus for the next 24 hours.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":15,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"flags":{},"img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234583,"modifiedTime":1672335890789,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hxXzd3KCfnqnT89w","name":"Fling","ownership":{"default":0},"type":"feat","system":{"description":{"value":"One Large or smaller object held or creature grappled by the {creature} is thrown up to 60 feet in a random direction and knocked prone. If a thrown target strikes a solid surface, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 18 Dexterity saving throw or take the same damage and be knocked prone.One Large or smaller object held or creature grappled by the {creature} is thrown up to 60 feet in a random direction and knocked prone. If the target is thrown at another creature, that creature must make a Dexterity saving throw or take the same damage and be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/webs/webthin-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234584,"modifiedTime":1672335651727,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"i3viKtKcSVeWLJFJ","name":"Heated Weapons","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nWhen the {creature} hits with a metal melee weapon, it deals an extra 3 (1d6) fire damage (included in the attack).\n\nWhen the {creature} hits with a metal melee weapon, it deals extra fire damage (included in the attack).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/strike-sword-blood-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234585,"modifiedTime":1672335907816,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"i8WDjw4J1gJWQmqG","name":"Web","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Ranged Weapon Attack: +4 to hit, range 30/60 ft., one Large or smaller creature. Hit: The creature is restrained by webbing. As an action, the restrained creature can make a DC 11 Strength check, escaping from the webbing on a success. The effect ends if the webbing is destroyed. The webbing has AC 10, 5 hit points, is vulnerable to fire damage and immune to bludgeoning damage.The creature is restrained by webbing. As an action, the restrained creature can make a Strength check, escaping from the webbing on a success. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":11,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"flags":{},"img":"icons/creatures/webs/web-spider-glowing-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234585,"modifiedTime":1672336130965,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"iCae1IDxHvRmjEgi","name":"Heart Sight","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} touches a creature and magically knows the creature's current emotional state. If the target fails a DC 10 Charisma saving throw, the {creature} also knows the creature's alignment. Celestials, fiends, and undead automatically fail the saving throw.The {creature} touches a creature. target must make a Charisma saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234586,"modifiedTime":1672335615271,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"iDem2vV36tRkZUx0","name":"Probing Telepathy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"If a creature communicates telepathically with the {creature}, the {creature} learns the creature's greatest desires if the {creature} can see the creature.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234586,"modifiedTime":1672336043865,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"iFNpsEMJT66eLoat","name":"Heated Body","ownership":{"default":0},"type":"feat","system":{"description":{"value":"A creature that touches the {creature} or hits it with a melee attack while within 5 feet of it takes 5 (1d10) fire damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/earth/volcano-explosion-lava-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234587,"modifiedTime":1672335909941,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"iHOaiOqwUWIfCljJ","name":"Cold Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\n**Cold Breath.** The {type} exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 20 Constitution saving throw, taking 58 (13d8) cold damage on a failed save, or half as much damage on a successful one.\n\nThe {type} exhales an icy blast in a 60-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":20,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234587,"modifiedTime":1672335510515,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"iQGaWIinmYFPRF94","name":"Variable Illumination","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} sheds bright light in a 5- to 20-foot radius and dim light for an additional number of ft. equal to the chosen radius. The {creature} can alter the radius as a bonus action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-star-glow-blue-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234588,"modifiedTime":1672336149760,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"iVOxckt9448v7Ho5","name":"Tail Spike Regrowth","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has twenty-four tail spikes. Used spikes regrow when the {creature} finishes a long rest.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":24,"max":"24","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/wolf-shadow-black.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234588,"modifiedTime":1672336207186,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ihWvcWsnfqW2HFlA","name":"Spores","ownership":{"default":0},"type":"feat","system":{"description":{"value":"A 15-foot-radius cloud of toxic spores extends out from the {creature}. The spores spread around corners. Each creature in that area must succeed on a DC 14 Constitution saving throw or become poisoned. While poisoned in this way, a target takes 5 (1d10) poison damage at the start of each of its turns. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Emptying a vial of holy water on the target also ends the effect on it.A 15-foot-radius cloud of toxic spores extends out from the {creature}. The spores spread around corners. Each creature in that area must make a Constitution saving throw. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"flags":{},"img":"icons/magic/earth/orb-stone-smoke-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234588,"modifiedTime":1672336238832,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"iq0J225DCbHYU2hU","name":"Draining Kiss","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} kisses a creature charmed by it or a willing creature. The target must make a DC 15 Constitution saving throw against this magic, taking 32 (5d10 + 5) psychic damage on a failed save, or half as much damage on a successful one.The target's hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n\nThe target must make a Constitution saving throw against this magic.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-vortex-swirl-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234589,"modifiedTime":1672335715817,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"j1cPfWFNvxGoex9Z","name":"Stone Camouflage","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on Dexterity (Stealth) checks made to hide in rocky terrain.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/environment/settlement/stone-stairs.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234589,"modifiedTime":1672336229022,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"j6F0v4guYhRYWddT","name":"Animate Trees","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} magically animates one or two trees it can see within 60 feet of it. These trees have the same statistics as a {creature}, except they have Intelligence and Charisma scores of 1, they can't speak, and they have only the Slam action option. An animated tree acts as an ally of the {creature}. The tree remains animate for 1 day or until it dies; until the {creature} dies or is more than 120 feet from the tree; or until the {creature} takes a bonus action to turn it back into an inanimate tree. The tree then takes root if possible.The {creature} magically animates one or two trees it can see within 60 feet of it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/tree-spirit-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234590,"modifiedTime":1672335420956,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"jZgeHxCR8pF6FOmQ","name":"Enlarge","ownership":{"default":0},"type":"feat","system":{"description":{"value":"For 1 minute, the {creature} magically increases in size, along with anything it is wearing or carrying. While enlarged, the {creature} is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the {creature} lacks the room to become Large, it attains the maximum size possible in the space available.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"flags":{},"img":"icons/magic/control/energy-stream-link-large-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234591,"modifiedTime":1672335699110,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"jhAU6pb5GvbjwTX7","name":"Darkness Aura","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nA 15-foot radius of magical darkness extends out from the {creature}, moves with it, and spreads around corners. The darkness lasts as long as the {creature} maintains concentration, up to 10 minutes (as if concentrating on a spell).Darkvision can't penetrate this darkness, and no natural light can illuminate it. If any of the darkness overlaps with an area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled.\n\nA 15-foot radius of magical darkness extends out from the {creature}, moves with it, and spreads around corners. Darkvision can't penetrate this darkness, and no natural light can illuminate it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234591,"modifiedTime":1672335486969,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"jnKOUieu2UO1xHhT","name":"Snow Camouflage","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on Dexterity (Stealth) checks made to hide in snowy terrain.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/barrier-ice-crystal-wall-faceted.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234592,"modifiedTime":1672336279539,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kP9t6MAeUvBBmoM3","name":"Grappler","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on attack rolls against any creature grappled by it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234592,"modifiedTime":1672335628507,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kSgBb9r1TCfDIMY0","name":"Spell Storing","ownership":{"default":0},"type":"feat","system":{"description":{"value":"A spellcaster who wears the {creature}'s amulet can cause the {creature} to store one spell of 4th level or lower. To do so, the wearer must cast the spell on the {creature}. The spell has no effect but is stored within the {creature}. When commanded to do so by the wearer or when a situation arises that was predefined by the spellcaster, the {creature} casts the stored spell with any parameters set by the original caster, requiring no components. When the spell is cast or a new spell is stored, any previously stored spell is lost.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/shield-barrier-blades-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234593,"modifiedTime":1672336247267,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kZpl32DBmqxlRegX","name":"Acid Spray","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} spits acid in a line that is 30 ft. long and 5 ft. wide, provided that it has no creature grappled.Each creature in that line must make a DC 13 Dexterity saving throw, taking 10 (3d6) acid damage on a failed save, or half as much damage on a successful one.\n\nThe {creature} spits acid in a line that is 30 ft. long and 5 ft. wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"flags":{},"img":"icons/magic/acid/projectile-smoke-glowing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234593,"modifiedTime":1672335444093,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kfi26Jy0VLXv9TTm","name":"Parry","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} adds 2 to its AC against one melee attack that would hit it. To do so, the {creature} must see the attacker and be wielding a melee weapon.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234594,"modifiedTime":1672336059573,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kjF0btAMYHUAQgOt","name":"Web Sense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While in contact with a web, the {creature} knows the exact location of any other creature in contact with the same web.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/debuff-chains-ropes-net-white.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234594,"modifiedTime":1672336128334,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kyVgQNSa12loxVvr","name":"False Appearance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While the {creature} remains motionless, it is indistinguishable from a normal suit of armor.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/stealth-hide-eyes-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234595,"modifiedTime":1672335677470,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lBN86BToCJgkakL3","name":"Horrifying Visage","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Each non-{type} creature within 60 ft. of the {creature} that can see it must succeed on a DC 13 Wisdom saving throw or be frightened for 1 minute. If the save fails by 5 or more, the target also ages 1d4 x 10 years. A frightened target can repeat the saving throw at the end of each of its turns, ending the frightened condition on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this {creature}'s Horrifying Visage for the next 24 hours. The aging effect can be reversed with a greater restoration spell, but only within 24 hours of it occurring.Each non-{type} creature within 60 ft. of the {creature} that can see it must succeed make a Wisdom saving throw. A target can repeat the saving throw at the end of each of its turns, ending the condition on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/projectile-skull-fire-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234596,"modifiedTime":1672335893253,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lOJK48AtlIcfYPPB","name":"Divine Awareness","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} knows if it hears a lie.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/third-eye-blue-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234596,"modifiedTime":1672335720614,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lVrnjqBrv90VH96d","name":"Divine Eminence","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As a bonus action, the {creature} can expend a spell slot to cause its melee weapon attacks to magically deal an extra 10 (3d6) radiant damage to a target on a hit. This benefit lasts until the end of the turn. If the {creature} expends a spell slot of 2nd level or higher, the extra damage increases by 1d6 for each level above 1st.As a bonus action, the {creature} can expend a spell slot to cause its melee weapon attacks to magically deal an extra radiant damage to a target on a hit.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":"1d6"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/symbols/cog-shield-white-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234597,"modifiedTime":1672335718280,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lWnUAwBPfJf9WupM","name":"Second Roar","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Each creature that fails a DC 18 Wisdom saving throw is deafened and frightened for 1 minute. A frightened creature is paralyzed and can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/sonic/scream-wail-shout-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234597,"modifiedTime":1672335989726,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lhTQJsLKYUZT2gV5","name":"Reactive","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can take one reaction on every turn in combat.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/symbols/rune-sigil-black-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234598,"modifiedTime":1672336034357,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lwC6jwy9bXberyWo","name":"Hold Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can hold its breath for 15 minutes.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/pseudopod-swirl-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234598,"modifiedTime":1672335901417,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"m0FA3UM62hlTPVSA","name":"Freeze","ownership":{"default":0},"type":"feat","system":{"description":{"value":"If the {type} takes cold damage, it partially freezes; its speed is reduced by 20 ft. until the end of its next turn.If the {type} takes cold damage, it partially freezes.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/ice-crystal-white.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234599,"modifiedTime":1672335643328,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"mUwZfxiOyao1Xuxt","name":"Beast of Burden","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} is considered to be a Large animal for the purpose of determining its carrying capacity.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234599,"modifiedTime":1672335567763,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"miIjsa984tZ0Mil6","name":"Reactive Heads","ownership":{"default":0},"type":"feat","system":{"description":{"value":"For each head the {creature} has beyond one, it gets an extra reaction that can be used only for opportunity attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/skull-trio-badge-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234600,"modifiedTime":1672336032103,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nJHx2fudYhZeexDP","name":"Sure-Footed","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on Strength and Dexterity saving throws made against effects that would knock it prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/commodities/bones/hooves-cloven-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234600,"modifiedTime":1672336217894,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nKpLMXS9E10TSGhU","name":"Tentacles","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nOne creature grappled by the {creature} must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute.Until this poison ends, the target is paralyzed. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nOne creature grappled by the {creature} must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/tentacles/tentacles-thing-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234601,"modifiedTime":1672336189563,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nUVFUgyKK7fmQaFh","name":"Shadow Stealth","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While in dim light or darkness, the {creature} can take the Hide action as a bonus action.The {creature} can take the Hide action as a bonus action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":"In dim light or darkness"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/humanoid-cat-skulking-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234601,"modifiedTime":1672335985051,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nahRRxck9R5GVVFS","name":"Magic Weapons","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature}'s weapon attacks are magical.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/weapons/swords/sword-runed-glowing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234602,"modifiedTime":1672335819457,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nb6zOmwIIJBLz4iT","name":"Frightful Presence","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Each creature of the {type}'s choice that is within 120 feet of the {type} and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the {type}'s Frightful Presence for the next 24 hours.Each creature of the {type}'s choice that is within 120 feet of the {type} and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234602,"modifiedTime":1672335638732,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"net3yBKQoxl8bZ4r","name":"Death Burst","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nWhen the {creature} dies, it explodes in a burst of dust. Each creature within 5 ft. of it must then succeed on a DC 10 Constitution saving throw or be blinded for 1 minute. A blinded creature can repeat the saving throw on each of its turns, ending the effect on itself on a success.\n\nWhen the {creature} dies, it explodes in a burst of dust. Each creature within 5 ft. of it must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":"on death"},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":10,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-star-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234603,"modifiedTime":1672335737084,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"o8G8BNPJOWoCKzR5","name":"Death Glare","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} targets one frightened creature she can see within 30 ft. of her. If the target can see the {creature}, it must succeed on a DC 11 Wisdom saving throw against this magic or drop to 0 hit points.\n\nThe {creature} targets one frightened creature she can see within 30 ft. of her. If the target can see the {creature}, it must make a Wisdom saving throw against this magic.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/skull-humanoid-worn-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234604,"modifiedTime":1672335734961,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ocmSrMY2NX3e43uN","name":"Whirlwind","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nEach creature in the {type}'s space must make a DC 13 Strength saving throw. On a failure, a target takes 15 (3d8 + 2) bludgeoning damage and is flung up 20 feet away from the {type} in a random direction and knocked prone.If a thrown target strikes an object, such as a wall or floor, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 13 Dexterity saving throw or take the same damage and be knocked prone. If the saving throw is successful, the target takes half the bludgeoning damage and isn't flung away or knocked prone.\n\nEach creature in the {type}'s space must make a Strength saving throw. On a failure, a target is flung up 20 feet away from the {type} in a random direction and knocked prone. If the target is thrown at another creature, that creature must make a Dexterity saving throw or take the same damage and be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":4,"charged":true}},"flags":{},"img":"icons/magic/air/wind-tornado-cyclone-white.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234605,"modifiedTime":1672336120552,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"of2dTSnPwmhR52O7","name":"Reaping Scythe","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} sweeps its spectral scythe through a creature within 5 feet of it, dealing 7 (1d8 + 3) slashing damage plus 4 (1d8) necrotic damage.\n\nThe {creature} sweeps its spectral scythe through a creature within 5 feet of it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/strike-scythe-fire-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234605,"modifiedTime":1672336025257,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"oi1sikVSw463lQlp","name":"Turn Defiance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} and any ghouls within 30 ft. of it have advantage on saving throws against effects that turn undead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/dragon-breath-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234606,"modifiedTime":1672336174051,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"q8w1UF9woZDGIwvS","name":"Brute","ownership":{"default":0},"type":"feat","system":{"description":{"value":"A melee weapon deals one extra die of its damage when the {creature} hits with it (included in the attack).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234606,"modifiedTime":1672335531878,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qfWKOH5AawhmNSwl","name":"Intoxicating Touch","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nMelee Spell Attack:+5 to hit, reach 5 ft., one creature. Hit: The target is magically cursed for 1 hour. Until the curse ends, the target has disadvantage on Wisdom saving throws and all ability checks.\n\nThe target has disadvantage on Wisdom saving throws and all ability checks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/beam-hand-leaves-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234607,"modifiedTime":1672335867022,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"r2nM5I77LnSvkLvD","name":"Consume Life","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As a bonus action, the {creature} can target one creature it can see within 5 ft. of it that has 0 hit points and is still alive. The target must succeed on a DC 10 Constitution saving throw against this magic or die. If the target dies, the {creature} regains 10 (3d6) hit points.The {creature} can target one creature it can see within 5 ft. The target must succeed on a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/life/heart-glowing-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234607,"modifiedTime":1672335506336,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"r3Ugp8f5Ckw2EUHL","name":"Healing Touch","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} touches another creature. The target magically regains 20 (4d8 + 2) hit points and is freed from any curse, disease, poison, blindness, or deafness.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-star-glow-blue-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234608,"modifiedTime":1672335617695,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"r9aMLZ7F3gSRLgRr","name":"Turn Resistance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on saving throws against any effects that turn undead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/flame-burning-creature-skeleton.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234608,"modifiedTime":1672336168716,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rDoNJnKdY47x8MD4","name":"Etherealness","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/barrier-shield-glowing-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234609,"modifiedTime":1672335683807,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rUongiWD51ZopRk2","name":"Echolocation","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can't use its blindsight while deafened.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"Bat","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234609,"modifiedTime":1672335705674,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"re3oXQ3Xg4Z3Fr6O","name":"Hooves","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} makes one attack with its hooves.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/commodities/bones/hooves-cloven-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234610,"modifiedTime":1672335898349,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"s7kqggp9VLDb39nu","name":"Illusory Appearance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} covers herself and anything she is wearing or carrying with a magical illusion that makes her look like another creature of her general size and humanoid shape. The illusion ends if the {creature} takes a bonus action to end it or if she dies.The changes wrought by this effect fail to hold up to physical inspection. For example, the {creature} could appear to have smooth skin, but someone touching her would feel her rough flesh. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 20 Intelligence (Investigation) check to discern that the {creature} is disguised.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/humanoid-cat-skulking-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234610,"modifiedTime":1672335880972,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"sMgKJtbCLNSX7V80","name":"Whelm","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Each creature in the {type}'s space must make a DC 15 Strength saving throw. On a failure, a target takes 13 (2d8 + 4) bludgeoning damage. If it is Large or smaller, it is also grappled (escape DC 14). Until this grapple ends, the target is restrained and unable to breathe unless it can breathe water. If the saving throw is successful, the target is pushed out of the {type}'s space.The {type} can grapple one Large creature or up to two Medium or smaller creatures at one time. At the start of each of the {type}'s turns, each target grappled by it takes 13 (2d8 + 4) bludgeoning damage. A creature within 5 feet of the {type} can pull a creature or object out of it by taking an action to make a DC 14 Strength check and succeeding.Each creature in the {type}'s space must make a Strength saving throw. If it is Large or smaller, it is also grappled. Until this grapple ends, the target is restrained and unable to breathe unless it can breathe water. A creature within 5 feet of the {type} can pull a creature or object out of it by taking an action to make a Strength check and succeeding.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":14,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":4,"charged":true}},"flags":{},"img":"icons/magic/water/vortex-water-whirlpool.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234611,"modifiedTime":1672336123041,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"t0ojYPOlKEbPpYNc","name":"Phantasms","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} magically creates three illusory duplicates of itself if it isn't in bright light. The duplicates move with it and mimic its actions, shifting position so as to make it impossible to track which {creature} is the real one. If the {creature} is ever in an area of bright light, the duplicates disappear.Whenever any creature targets the {creature} with an attack or a harmful spell while a duplicate remains, that creature rolls randomly to determine whether it targets the {creature} or one of the duplicates. A creature is unaffected by this magical effect if it can't see or if it relies on senses other than sight.A duplicate has the {creature}'s AC and uses its saving throws. If an attack hits a duplicate, or if a duplicate fails a saving throw against an effect that deals damage, the duplicate disappears.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234611,"modifiedTime":1672336053064,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"tHvaJB8tXSriVXRm","name":"Blinding Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} exhales a 15-foot cone of blinding dust.Each creature in that area must succeed on a DC 10 Dexterity saving throw or be blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe {creature} exhales a 15-foot cone of blinding dust. Each creature in that area must make a Dexterity saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":10,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"flags":{},"img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234612,"modifiedTime":1672335553304,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"terEuqr148hQBkIq","name":"Legendary Actions","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The {creature} regains spent legendary actions at the start of its turn.\n\nThe {creature} can take 3 legendary actions.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/hand-sparks-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234612,"modifiedTime":1672335848580,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"twrIaUZ79Yn5qpML","name":"Bound","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} is magically bound to an amulet. As long as the {creature} and its amulet are on the same plane of existence, the amulet's wearer can telepathically call the {creature} to travel to it, and the {creature} knows the distance and direction to the amulet.If the {creature} is within 60 feet of the amulet's wearer, half of any damage the wearer takes (rounded up) is transferred to the {creature}.\n\nThe {creature} is magically bound to an amulet.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/equipment/neck/choker-chain-thick-silver.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234613,"modifiedTime":1672335540865,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"u1Tt4l4Mczgt3wOS","name":"Sunlight Weakness","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While in sunlight, the {creature} has disadvantage on attack rolls, ability checks, and saving throws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/time/day-night-sunset-sunrise.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234613,"modifiedTime":1672336220283,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"uEYSTOkpfr0OkKrD","name":"Unnerving Mask","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nWhen a creature the {type} can see starts its turn within 30 feet of the {type}, the {type} can create the illusion that it looks like one of the creature's departed loved ones or bitter enemies. If the creature can see the {type}, it must succeed on a DC 14 Wisdom saving throw or be Frightened until the end of its turn.\n\nThe {type} can create the illusion that it looks like one of the creature's departed loved ones or bitter enemies. Make a Wisdom saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/life/heart-shadow-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234614,"modifiedTime":1672336155418,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"uqoqQJ9NpMCPra6P","name":"Hellish Weapons","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature}'s weapon attacks are magical and deal an extra 13 (3d8) poison damage on a hit (included in the attacks).\n\nThe {creature}'s weapon attacks are magical and deal extra poison damage on a hit (included in the attacks).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/weapons/axes/axe-battle-eyes-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234614,"modifiedTime":1672335903792,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"uxFQ3TxO3isW5WKK","name":"Aversion of Fire","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nIf the {creature} takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn.\n\nIf the {creature} takes fire damage, it has disadvantage on some rolls.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/projectile-wave-arrow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234615,"modifiedTime":1672335411545,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"w5mFTTFsdKC7TXgg","name":"Read Thoughts","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} magically reads the surface thoughts of one creature within 60 ft. of it. The effect can penetrate barriers, but 3 ft. of wood or dirt, 2 ft. of stone, 2 inches of metal, or a thin sheet of lead blocks it.While the target is in range, the {creature} can continue reading its thoughts, as long as the {creature}'s concentration isn't broken (as if concentrating on a spell). While reading the target's mind, the {creature} has advantage on Wisdom (Insight) and Charisma (Deception, Intimidation, and Persuasion) checks against the target.\n\nThe {creature} magically reads the surface thoughts of one creature within 60 ft. of it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/hypnosis-mesmerism-watch.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234615,"modifiedTime":1672336027874,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"wkIN7WTeX8ebbjtv","name":"Petrifying Gaze","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nIf a creature starts its turn within 30 ft. of the {creature} and the two of them can see each other, the {creature} can force the creature to make a DC 12 Constitution saving throw if the {creature} isn't incapacitated. On a failed save, the creature magically begins to turn to stone and is restrained. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is petrified until freed by the greater restoration spell or other magic.A creature that isn't surprised can avert its eyes to avoid the saving throw at the start of its turn. If it does so, it can't see the {creature} until the start of its next turn, when it can avert its eyes again. If it looks at the {creature} in the meantime, it must immediately make the save. If the {creature} sees its reflection within 30 ft. of it in bright light, it mistakes itself for a rival and targets itself with its gaze.\n\nThe {creature} can force the creature to make a Constitution saving throw. It must repeat the saving throw at the end of its next turn. A creature that isn't surprised can avert its eyes to avoid the saving throw at the start of its turn. If it does so, it can't see the {creature} until the start of its next turn, when it can avert its eyes again. If it looks at the {creature} in the meantime, it must immediately make the save.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":12,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234615,"modifiedTime":1672336055212,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"wzgGJyVFGIcj1XAb","name":"Confer Fire Resistance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can grant resistance to fire damage to anyone riding it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/explosion-mushroom-nuke-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234616,"modifiedTime":1672335508712,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xOgrn5QXzSP4QN6V","name":"Evasion","ownership":{"default":0},"type":"feat","system":{"description":{"value":"If the {creature} is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, the {creature} instead takes no damage if it succeeds on the saving throw, and only half damage if it fails.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/pseudopod-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234617,"modifiedTime":1672335680206,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xmXYBevj0kuPa3Fo","name":"Petrifying Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} exhales petrifying gas in a 30-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw. On a failed save, a target begins to turn to stone and is restrained. The restrained target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is petrified until freed by the greater restoration spell or other magic.The {creature} exhales petrifying gas in a 30-foot cone. Each creature in that area must make a Constitution saving throw. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"perm"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"flags":{},"img":"icons/magic/air/fog-gas-smoke-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234617,"modifiedTime":1672336057332,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xna3UTd4EFLCZMt9","name":"Limited Telepathy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can magically transmit simple messages and images to any creature within 120 ft. of it that can understand a language. This form of telepathy doesn't allow the receiving creature to telepathically respond.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234618,"modifiedTime":1672335827087,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"y18y37F8ppFLGuLb","name":"Tentacle Disease","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nAfter 1 minute, the diseased creature's skin becomes translucent and slimy, the creature can't regain hit points unless it is underwater, and the disease can be removed only by heal or another disease-curing spell of 6th level or higher. When the creature is outside a body of water, it takes 6 (1d12) acid damage every 10 minutes unless moisture is applied to the skin before 10 minutes have passed.\n\nYou feel a surging pain rushing through your body!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/acid/projectile-glowing-bubbles.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234621,"modifiedTime":1672336195967,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"yD51x4dihnbHwfsj","name":"Trampling Charge","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nIf the {creature} moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a DC 12 Strength saving throw or be knocked prone. If the target is prone, the {creature} can make one stomp attack against it as a bonus action.\n\nIf the {creature} moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":12,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/cougar-pounce-stalk-black.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234621,"modifiedTime":1672336184983,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"yHcr3vlkmtInELj2","name":"Shield","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When a creature makes an Attack against the wearer of the {creature}'s Amulet, the {creature} grants a +2 bonus to the wearer's AC if the {creature} is within 5 feet of the wearer.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/equipment/shield/oval-wooden-boss-steel.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234622,"modifiedTime":1672336298878,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ykoo88OJOdfYH7mH","name":"Charm","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nOne humanoid the {creature} can see within 30 feet of it must make a Wisdom saving throw or be magically charmed for 1 day. The charmed target obeys the {creature}'s verbal or telepathic commands.If the target suffers any harm or receives a suicidal command, it can repeat the saving throw, ending the effect on a success. If the target successfully saves against the effect, or if the effect on it ends, the target is immune to this {creature}'s Charm for the next 24 hours. The {creature} can have only one target charmed at a time. If it charms another, the effect on the previous target ends.\n\nOne humanoid the {creature} can see within 30 feet of it must make a Wisdom saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"day"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-tornado-spiral-pink-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234622,"modifiedTime":1672335520716,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"yrpqazOHqI4BrYW4","name":"Earth Glide","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {type} can burrow through nonmagical, unworked earth and stone. While doing so, the {type} doesn't disturb the material it moves through.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234622,"modifiedTime":1672335708064,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zITrVwmnPpLoBZI1","name":"Web Walker","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} ignores movement restrictions caused by webbing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/tree-bare-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234623,"modifiedTime":1672336126229,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zRDERBe0lMbwyGwN","name":"Repulsion Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\n**Repulsion Breath.** The {type} exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 19 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the {type}.\n\nThe {type} exhales repulsion energy in a 30-foot cone. Each creature in that area must make a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":19,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/air-wave-gust-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234625,"modifiedTime":1672336006385,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zSBlyP5Vm1CAV5VO","name":"Two-Headed","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on Wisdom (Perception) checks and on saving throws against being blinded, charmed, deafened, frightened, stunned, or knocked unconscious.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234626,"modifiedTime":1672336164323,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zZkNtL97hn1P6OJC","name":"Mimicry","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} can mimic animal sounds and humanoid voices. A creature that hears the sounds can tell they are imitations with a successful DC 14 Wisdom (Insight) check.\n\nThe {creature} can mimic animal sounds and humanoid voices. A creature that hears the sounds can tell they are imitations with a successful Wisdom (Insight) check.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/birds/corvid-flying-wings-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234626,"modifiedTime":1672335814707,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zg0RZmAncKJqIpax","name":"Martial Advantage","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Once per turn, the {creature} can deal an extra 7 (2d6) damage to a creature it hits with a weapon attack if that creature is within 5 ft. of an ally of the {creature} that isn't incapacitated.Once per turn, the {creature} can deal extra damage to a creature it hits with a weapon attack if that creature is within 5 ft. of an ally of the {creature} that isn't incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234627,"modifiedTime":1672335817491,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zjcGly9P3Gn9MXt7","name":"Acid Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {type} exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.The {type} exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"flags":{},"img":"icons/magic/acid/projectile-smoke-glowing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234636,"modifiedTime":1672335453831,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"0YuGSS8E8ElHLRyb","name":"Fire Form","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {type} can move through a space as narrow as 1 inch wide without squeezing. A creature that touches the {type} or hits it with a melee attack while within 5 ft. of it takes 5 (1d10) fire damage. In addition, the {type} can enter a hostile creature's space and stop there. The first time it enters a creature's space on a turn, that creature takes 5 (1d10) fire damage and catches fire; until someone takes an action to douse the fire, the creature takes 5 (1d10) fire damage at the start of each of its turns.A creature that touches the {type} or hits it with a melee attack while within 5 ft. of it takes fire damage. In addition, the {type} can enter a hostile creature's space and stop there. The first time it enters a creature's space on a turn, that creature takes fire damage and catches fire; until someone takes an action to douse the fire, the creature takes fire damage at the start of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/earth/lava-explosion-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234493,"modifiedTime":1672335656049,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"0awyZX05OnVLF4k2","name":"Blinding Spittle","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact.Each creature within 5 feet of the flash must succeed on a DC 13 Dexterity saving throw or be blinded until the end of the {creature}'s next turn.\n\nThe {creature} spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact. Each creature within 5 feet of the flash must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"flags":{},"img":"icons/magic/nature/root-vine-thorned-fire-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234495,"modifiedTime":1672335545635,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"0gl43AC57cvJaW7D","name":"Gnome Cunning","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on Intelligence, Wisdom, and Charisma saving throws against magic.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234495,"modifiedTime":1672335631189,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"0npeEcwmiVMdwGMV","name":"Damage Transfer","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While attached to a creature, the {creature} takes only half the damage dealt to it (rounded down) and that creature takes the other half.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/strike-ice-blades.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234496,"modifiedTime":1672335491944,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"0z5v1BfMqQl5Z7UW","name":"Corrode Metal","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nAny nonmagical weapon made of metal that hits the {type} corrodes. After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls.If its penalty drops to -5, the weapon is destroyed. Nonmagical ammunition made of metal that hits the {type} is destroyed after dealing damage. The {type} can eat through 2-inch-thick, nonmagical metal in 1 round.\n\nThe {type} corrodes metal.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/earth/orb-stone-smoke-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234496,"modifiedTime":1672335503971,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"108q5fJnnBRoLKfe","name":"Brave","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on saving throws against being Frightened.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/social/intimidation-impressing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234497,"modifiedTime":1672335538495,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"1XeF2VMMPw7QYffo","name":"Create Whirlwind","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nA 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the {creature} can see within 120 feet of it. The whirlwind lasts as long as the {creature} maintains concentration (as if concentrating on a spell).Any creature but the {creature} that enters the whirlwind must succeed on a DC 18 Strength saving throw or be restrained by it. The {creature} can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. The whirlwind ends if the {creature} loses sight of it.A creature can use its action to free a creature restrained by the whirlwind, including itself, by succeeding on a DC 18 Strength check. If the check succeeds, the creature is no longer restrained and moves to the nearest space outside the whirlwind.\n\nA 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the {creature} can see within 120 feet of it. Any creature but the {creature} that enters the whirlwind must make a Strength saving throw or be restrained by it. The {creature} can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. A creature can use its action to free a creature restrained by the whirlwind, including itself, by succeeding on a Strength check. If the check succeeds, the creature is no longer restrained and moves to the nearest space outside the whirlwind.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":18,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-tornado-cyclone-white.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234497,"modifiedTime":1672335497110,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"1w6k5iHV8QSz5w46","name":"Labyrinthine Recall","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can perfectly recall any path it has traveled.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-vortex-swirl-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234498,"modifiedTime":1672335855313,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"2l557y06401lwsqs","name":"Light Sensitivity","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While in bright light, the {creature} has disadvantage on attack rolls and Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/time/day-night-sunset-sunrise.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234498,"modifiedTime":1672335841725,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3iLXiqhhOgXOMMg7","name":"Ethereal Jaunt","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As a bonus action, the {creature} can magically shift from the Material Plane to the Ethereal Plane, or vice versa.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/lightning/orb-ball-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234499,"modifiedTime":1672335691371,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3lDp8DtWwNDHSvxX","name":"Amorphous","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can move through a space as narrow as 1 inch wide without squeezing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/slimes/slime-movement-dripping-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234499,"modifiedTime":1672335430564,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3mrPXaxalJxpxVrv","name":"Tunneler","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can burrow through solid rock at half its burrow speed and leaves a 10-foot-diameter tunnel in its wake.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/orb-glowing-yellow-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234500,"modifiedTime":1672336176227,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"43BnuqkQgg5l1Nfh","name":"Sleep Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\n**Sleep Breath.** The {type} exhales sleep gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n\nThe {type} exhales sleep gas in a 90-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/third-eye-blue-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234500,"modifiedTime":1672336287083,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"4Fap14HgvAwTAZuD","name":"Amphibious","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/environment/creatures/frog-spotted-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234501,"modifiedTime":1672335428669,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"4N7S29kDROQ932pG","name":"Steadfast","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can't be frightened while it can see an allied creature within 30 feet of it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234502,"modifiedTime":1672336234837,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"4UuuUKjATTixrZGP","name":"Steam Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} exhales scalding steam in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 52 (15d6) fire damage on a failed save, or half as much damage on a successful one.Being underwater doesn't grant resistance against this damage.The {creature} exhales scalding steam in a 60-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"flags":{},"img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234502,"modifiedTime":1672336232699,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"4v3xxn1jEEMRzLBG","name":"Reckless","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At the start of its turn, the {creature} can gain advantage on all melee weapon attack rolls during that turn, but attack rolls against it have advantage until the start of its next turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/social/intimidation-impressing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234503,"modifiedTime":1672336022974,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"59DUUDZet1J4PIlA","name":"Speak with Beasts and Plants","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can communicate with beasts and plants as if they shared a language.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234503,"modifiedTime":1672336276838,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5DJYFjGQCz5aSl5e","name":"Surprise Attack","ownership":{"default":0},"type":"feat","system":{"description":{"value":"If the {creature} surprises a creature and hits it with an attack during the first round of combat, the target takes an extra 7 (2d6) damage from the attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"flags":{},"img":"icons/magic/water/elemental-water.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234504,"modifiedTime":1672336215056,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5OYruoI92fxTOLts","name":"Searing Burst","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} emits magical, divine energy. Each creature of its choice in a 10-foot radius must make a DC 23 Dexterity saving throw, taking 14 (4d6) fire damage plus 14 (4d6) radiant damage on a failed save, or half as much damage on a successful one.\nThe {creature} emits magical, divine energy. Each creature of its choice in a 10-foot radius must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":2},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","fire"],["4d6","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":23,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-star-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234504,"modifiedTime":1672335991907,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5V7SCABXvIbnk2Zn","name":"Water Susceptibility","ownership":{"default":0},"type":"feat","system":{"description":{"value":"For every 5 ft. the {type} moves in water, or for every gallon of water splashed on it, it takes 1 cold damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/pseudopod-swirl-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234504,"modifiedTime":1672336135290,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5rr8YdsGtL8WxEuE","name":"Chomp","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} makes one bite attack or uses its Swallow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":2},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/mouth-teeth-long-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234505,"modifiedTime":1672335515749,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"6HJpLJxctQdMLeuB","name":"Antennae","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} corrodes a nonmagical ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it. If the object is being worn or carried by a creature, the creature can make a DC 11 Dexterity saving throw to avoid the {creature}'s touch.If the object touched is either metal armor or a metal shield being worn or carried, its takes a permanent and cumulative -1 penalty to the AC it offers. Armor reduced to an AC of 10 or a shield that drops to a +0 bonus is destroyed. If the object touched is a held metal weapon, it rusts as described in the Rust Metal trait.The {creature} corrodes a ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"dex"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/tree-bare-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234505,"modifiedTime":1672335418948,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"6ej6jlwh8ryDEzlB","name":"Animate Chains","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nUp to four chains the {type} can see within 60 feet of it magically sprout razor-edged barbs and animate under the {type}'s control, provided that the chains aren't being worn or carried.Each animated chain is an object with AC 20, 20 hit points, resistance to piercing damage, and immunity to psychic and thunder damage. When the {type} uses Multiattack on its turn, it can use each animated chain to make one additional chain attack. An animated chain can grapple one creature of its own but can't make attacks while grappling. An animated chain reverts to its inanimate state if reduced to 0 hit points or if the {type} is incapacitated or dies.\n\nUp to four chains the {type} can see within 60 feet of it magically sprout razor-edged barbs and animate under the {type}'s control, provided that the chains aren't being worn or carried.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":4,"width":null,"units":"","type":"object"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"flags":{},"img":"icons/equipment/neck/choker-chain-thin-gold.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234506,"modifiedTime":1672335423463,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7HPC39yg8OYshJos","name":"Cast a Spell","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} casts a spell from its list of prepared spells, using a spell slot as normal.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":3,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":3},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/hand-sparks-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234506,"modifiedTime":1672335529673,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7NML6SkyvOsZ17iq","name":"Aggressive","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As a bonus action, the {creature} can move up to its speed toward a hostile creature that it can see.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/mouth-teeth-tongue-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234507,"modifiedTime":1672335438914,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7WfeHV27l7DMcuTG","name":"Flyby","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} doesn't provoke opportunity attacks when it flies out of an enemy's reach.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"Owl","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/bats-movement-flying-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234507,"modifiedTime":1672335649716,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7nbokvWfSckl2iWz","name":"Blind Senses","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can't use its blindsight while deafened and unable to smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234507,"modifiedTime":1672335556632,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8C6hkMXWLeymmJ5C","name":"Blinding Gaze","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} targets one creature it can see within 30 feet of it. If the target can see it, the target must succeed on a DC 15 Constitution saving throw or be blinded until magic such as the lesser restoration spell removes the blindness.\n\nThe {creature} targets one creature it can see within 30 feet of it. If the target can see it, the target must succeed on a Constitution saving throw or be blinded.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":3,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":3},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/third-eye-blue-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234509,"modifiedTime":1672335548494,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8FX2KlWyBAKEYGzs","name":"Relentless","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nIf the {creature} takes 7 damage or less that would reduce it to 0 hit points, it is reduced to 1 hit point instead. Recharges on a short or long rest.\n\nIf the {creature} takes damage that would reduce it to 0 hit points, it is reduced to 1 hit point instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/heart-ice-freeze.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234509,"modifiedTime":1672336008886,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8H0t1US0zvNPWtQ9","name":"Adhesive","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} adheres to anything that touches it. A Huge or smaller creature adhered to the {creature} is also grappled by it escape DC 13. Ability checks made to escape this grapple have disadvantage.The {creature} adheres to anything that touches it. A Huge or smaller creature adhered to the {creature} is also grappled by it. Make an escape check, with disadvantage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/slimes/slime-movement-dripping-pseudopods-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234510,"modifiedTime":1672335441736,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8l0R2MIYxWxYJT6O","name":"Shimmering Shield","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} creates a shimmering, magical field around itself or another creature it can see within 60 feet of it. The target gains a +2 bonus to AC until the end of the {creature}'s next turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":2},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-star-large-blue-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234510,"modifiedTime":1672336294896,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9W2baYpS2ahNYhjb","name":"Unarmed Strike (Legendary)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} makes one unarmed strike.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234510,"modifiedTime":1672336161859,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9uKShqfuA73duQsT","name":"Sneak Attack","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Once per turn.\nThe {creature} deals an extra 13 (4d6) damage when it hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 ft. of an ally of the {creature} that isn't incapacitated and the {creature} doesn't have disadvantage on the attack roll.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":"once per turn"},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/blade-tip-chipped-blood-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234511,"modifiedTime":1672336282691,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"AFYR2eZavzQUbZNb","name":"Water Form","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {type} can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/orb-water-bubbles.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234511,"modifiedTime":1672336138719,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ARWpuy82jh0daSDa","name":"Turn Immunity","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} is immune to features that turn undead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/flame-burning-creature-skeleton.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234512,"modifiedTime":1672336170951,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Av7H0ymGdPeTsnwV","name":"Regeneration","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} regains 10 hit points at the start of its turn if it has at least 1 hit point.The {creature} regains 10 hit points at the start of its turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/wounds/anatomy-organ-heart-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234513,"modifiedTime":1672336015899,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"B2kZOyrB7poB4liR","name":"Blood Frenzy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on melee attack rolls against any creature that doesn't have all its hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/wounds/blood-spurt-spray-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234513,"modifiedTime":1672335543399,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"BDnjS1sQi2pdARh8","name":"Stone Golem - Slow","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} targets one or more creatures it can see within 10 ft. of it. Each target must make a DC 17 Wisdom saving throw against this magic.On a failed save, a target can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the target can take either an action or a bonus action on its turn, not both. These effects last for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe {creature} targets one or more creatures it can see within 10 ft. of it. Each target must make a Wisdom saving throw against this magic. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"flags":{},"img":"icons/tools/navigation/watch-simple-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234514,"modifiedTime":1672336226974,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"BiasCPpNsaAVKzIj","name":"Paralyzing Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\n**Paralyzing Breath.** The {type} exhales paralyzing gas in a 60-foot cone. Each creature in that area must succeed on a DC 20 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe {type} exhales paralyzing gas in a 60-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":20,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/acid/projectile-smoke-glowing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234514,"modifiedTime":1672335786811,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"BnuDkgCOeGvAoYhy","name":"Rampage","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When the {creature} reduces a creature to 0 hit points with a melee attack on its turn, the {creature} can take a bonus action to move up to half its speed and make a bite attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/strike-axe-blood-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234514,"modifiedTime":1672336036678,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"BpwXJvMA7MfVQ7i6","name":"Rock Catching","ownership":{"default":0},"type":"feat","system":{"description":{"value":"If a rock or similar object is hurled at the {type}, the {type} can, with a successful DC 10 Dexterity saving throw, catch the missile and take no bludgeoning damage from it.If a rock or similar object is hurled at the {type}, the {type} can catch the missile and take no bludgeoning damage from it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":10,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234515,"modifiedTime":1672336002046,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"CvtGj6YimGuZdrhB","name":"Ooze Cube","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} takes up its entire space. Other creatures can enter the space, but a creature that does so is subjected to the {creature}'s Engulf and has disadvantage on the saving throw. Creatures inside the {creature} can be seen but have total cover.A creature within 5 feet of the {creature} can take an action to pull a creature or object out of the {creature}. Doing so requires a successful DC 12 Strength check, and the creature making the attempt takes 10 (3d6) acid damage. The {creature} can hold only one Large creature or up to four Medium or smaller creatures inside it at a time.\n\nThe {creature} takes up its entire space. Other creatures can enter the space, but a creature that does so is subjected to the {creature}'s Engulf and has disadvantage on the saving throw. Creatures inside the cube can be seen but have total cover. A creature within 5 feet of the {creature} can take an action to pull a creature or object out of the {creature}. Doing so requires a successful Strength check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/barrier-ice-water-cube.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234515,"modifiedTime":1672335792413,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"DPrO7eVVxiKD8QWD","name":"Claw Attack","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} makes one claw attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/blood-slash-foam-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234516,"modifiedTime":1672335513298,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"E8SiDA7Z3Ybd6wt0","name":"Faultless Tracker","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} is given a quarry by its summoner. The {creature} knows the direction and distance to its quarry as long as the two of them are on the same plane of existence. The {creature} also knows the location of its summoner.\n\nThe stalker knows the direction and distance to its quarry as long as the two of them are on the same plane of existence.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234516,"modifiedTime":1672335675523,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"EMygUh5uRujWaFYK","name":"Ambusher","ownership":{"default":0},"type":"feat","system":{"description":{"value":"In the first round of a combat, the {creature} has advantage on attack rolls against any creature it has surprised.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/stealth-hide-eyes-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234517,"modifiedTime":1672335433142,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"EguIm3u5kkopYwEM","name":"Disrupt Life","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nEach non-{type} creature within 20 feet of the {creature} must make a DC 18 Constitution saving throw against this magic, taking 21 (6d6) necrotic damage on a failed save, or half as much damage on a successful one.\n\nEach non-{type} creature within 20 feet of the {creature} must make a Constitution saving throw against this magic.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":3,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":3},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/projectile-skull-fire-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234518,"modifiedTime":1672335722684,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Eh80lkzHiEOJP8FI","name":"Engulf","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} moves up to its speed. While doing so, it can enter Large or smaller creatures' spaces. Whenever the {creature} enters a creature's space, the creature must make a DC 12 Dexterity saving throw.On a successful save, the creature can choose to be pushed 5 feet back or to the side of the {creature}. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.On a failed save, the {creature} enters the creature's space, and the creature takes 10 (3d6) acid damage and is engulfed. The engulfed creature can't breathe, is restrained, and takes 21 (6d6) acid damage at the start of each of the {creature}'s turns. When the {creature} moves, the engulfed creature moves with it. An engulfed creature can try to escape by taking an action to make a DC 12 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the {creature}.\n\nWhenever the {creature} enters a creature's space, the creature must make a Dexterity saving throw. On a successful save, the creature can choose to be pushed 5 feet back or to the side of the {creature}. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"6d6","save":{"ability":"dex","dc":12,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/pseudopod-swirl-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234518,"modifiedTime":1672335701493,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"EmlE1a0rhucK2UT1","name":"Death Throes","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nWhen the {creature} dies, it explodes, and each creature within 30 feet of it must make a DC 20 Dexterity saving throw, taking 70 (20d6) fire damage on a failed save, or half as much damage on a successful one.The explosion ignites flammable objects in that area that aren't being worn or carried, and it destroys the {creature}'s weapons.\n\nWhen the {creature} dies, it explodes, and each creature within 30 feet of it must make a Dexterity saving throw. The explosion ignites flammable objects in that area that aren't being worn or carried, and it destroys the {creature}'s weapons.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":"Upon death"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":20,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/explosion-fireball-large-red-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234519,"modifiedTime":1672335731472,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Enhb3XowXPMsVapw","name":"Treasure Sense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can pinpoint, by scent, the location of precious metals and stones, such as coins and gems, within 60 ft. of it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/social/theft-pickpocket-bribery-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234519,"modifiedTime":1672336180777,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"EqoLg8T8EHvhJgKE","name":"Multiattack","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} makes a number of attacks in one action. These attacks can be of the same type or a mixed variety of its attack actions.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/blade-tips-triple-steel.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234520,"modifiedTime":1672335801543,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Ervkb8H99e2Beiae","name":"Vampire Weaknesses","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has the following flaws:Forbiddance. The {creature} can't enter a residence without an invitation from one of the occupants. Harmed by Running Water. The {creature} takes 20 acid damage if it ends its turn in running water. Stake to the Heart. If a piercing weapon made of wood is driven into the {creature}'s heart while the {creature} is incapacitated in its resting place, the {creature} is paralyzed until the stake is removed.Sunlight Hypersensitivity. The {creature} takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/encase-creature-monster-hold.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234520,"modifiedTime":1672336152412,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"F14aW2Ke3I5ZtSg4","name":"Sunlight Sensitivity","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While in sunlight, the {creature} has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-star-glow-blue-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234520,"modifiedTime":1672336222775,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"F3gzBbCW7U14zkBF","name":"Illumination","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} sheds bright light in a 10-foot radius and dim light for an additional 10 ft.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-star-glow-blue-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234521,"modifiedTime":1672335883340,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FHrFOjEfkdRm4u43","name":"Inscrutable","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} is immune to any effect that would sense its emotions or read its thoughts, as well as any divination spell that it refuses. Wisdom (Insight) checks made to ascertain the {creature}'s intentions or sincerity have disadvantage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/third-eye-blue-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234521,"modifiedTime":1672335869833,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FRIASnssihfMTZ7q","name":"Invisible Passage","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} magically turns invisible until she attacks or casts a spell, or until her concentration ends (as if concentrating on a spell). While invisible, she leaves no physical evidence of her passage, so she can be tracked only by magic. Any equipment she wears or carries is invisible with her.\n\nThe {creature} magically turns invisible. Any equipment she wears or carries is invisible with her.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/silhouette-stealth-shadow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234522,"modifiedTime":1672335861964,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FXHEc39G2d19opuE","name":"Spider Climb","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234522,"modifiedTime":1672336243265,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FzbCXXFlZVpcea4t","name":"Move (legendary)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} moves up to half its speed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234523,"modifiedTime":1672335805837,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"GSgfXL9DyDA3GD0n","name":"Rust Metal","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Any nonmagical weapon made of metal that hits the {creature} corrodes. After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls. If its penalty drops to -5, the weapon is destroyed. Non magical ammunition made of metal that hits the {creature} is destroyed after dealing damage.Any nonmagical weapon made of metal that hits the {creature} corrodes. After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/blade-tip-chipped-blood-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234523,"modifiedTime":1672335996198,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"H306eluIH47Wfr0U","name":"Dreadful Glare","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} targets one creature it can see within 60 ft. of it. If the target can see the {creature}, it must succeed on a DC 11 Wisdom saving throw against this magic or become frightened until the end of the {creature}'s next turn.If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies (but not mummy lords) for the next 24 hours.\n\nThe {creature} targets one creature it can see within 60 ft. of it. If the target can see the {creature}, it must make a Wisdom saving throw against this magic.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":11,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/hand-eye-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234524,"modifiedTime":1672335713413,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"HMOOZRxolMmv91xm","name":"Mucous Cloud","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nWhile underwater, the {creature} is surrounded by transformative mucus. A creature that touches the {creature} or that hits it with a melee attack while within 5 ft. of it must make a DC 14 Constitution saving throw. On a failure, the creature is diseased for 1d4 hours. The diseased creature can breathe only underwater.\n\nWhile underwater, the {creature} is surrounded by transformative mucus. A creature that touches the {creature} or that hits it with a melee attack while within 5 ft. of it must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/bubbles-air-water-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234524,"modifiedTime":1672335803766,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Hc6MqLQhPTI1KOvm","name":"Magic Resistance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234525,"modifiedTime":1672335821479,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"IALpDTyYdDOzmDb5","name":"Luring Song","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} sings a magical melody. Every humanoid and giant within 300 ft. of the {creature} that can hear the song must succeed on a DC 11 Wisdom saving throw or be charmed until the song ends. The {creature} must take a bonus action on its subsequent turns to continue singing. It can stop singing at any time. The song ends if the {creature} is incapacitated.While charmed by the {creature}, a target is incapacitated and ignores the songs of other harpies. If the charmed target is more than 5 feet away from the {creature}, the target must move on its turn toward the {creature} by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage from a source other than the {creature}, the target can repeat the saving throw. A charmed target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.A target that successfully saves is immune to this {creature}'s song for the next 24 hours.\n\nThe {creature} sings a magical melody. Every humanoid and giant within 300 ft. of the {creature} that can hear the song must make a Wisdom saving throw. A creature can also repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"spec"},"cover":null,"target":{"value":300,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":11,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-vortex-swirl-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234525,"modifiedTime":1672335824733,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"IHh6n8uZBGqyRfZz","name":"Weakening Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\n**Weakening Breath.** The {type} exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 21 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe {type} exhales gas in a 60-foot cone. Each creature in that area must make a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":21,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/acid/projectile-smoke-glowing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234526,"modifiedTime":1672336133443,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"IwQRhCTgCfAADyt8","name":"Reel","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} pulls each creature grappled by it up to 25 ft. straight toward it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/sihouette-hold-beam-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234526,"modifiedTime":1672336020209,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"IwqUTWqdgrKEvohr","name":"Assassinate","ownership":{"default":0},"type":"feat","system":{"description":{"value":"During its first turn, the {creature} has advantage on attack rolls against any creature that hasn't taken a turn. Any hit the {creature} scores against a surprised creature is a critical hit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/weapons/swords/sword-broad-crystal-paired.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234527,"modifiedTime":1672335414391,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"J1NxNTJ2qi05iAFF","name":"Legendary Resistance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"If the {type} fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/equipment/shield/kite-wooden-oak-glow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234527,"modifiedTime":1672335845863,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"J36uxDWfbkflPV7k","name":"Cunning Action","ownership":{"default":0},"type":"feat","system":{"description":{"value":"On each of its turns, the {creature} can use a bonus action to take the dash, disengage, or hide action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/silhouette-robe-evil-power.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234528,"modifiedTime":1672335493909,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"JAEclghgOT24pQD9","name":"Poison Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {type} exhales poisonous gas in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 56 (16d6) poison damage on a failed save, or half as much damage on a successful one.The {type} exhales poisonous gas in a 60-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"flags":{},"img":"icons/magic/acid/projectile-smoke-glowing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234528,"modifiedTime":1672336050640,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"JAnMheqgFhkLF2ET","name":"Sense Magic","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} senses magic within 120 feet of it at will. This trait otherwise works like the detect magic spell but isn't itself magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/projectile-ice-snowball.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234529,"modifiedTime":1672335987293,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"JRy507rS9wxT3GBh","name":"Slowing Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\n**Slowing Breath.** The {type} exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n\nThe {type} exhales gas in a 60-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234529,"modifiedTime":1672336285044,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"JcfHlAcfwSWnt7Ud","name":"Rejuvenation","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nIf it dies, the {creature} returns to life in 1d6 days and regains all its hit points.Only a wish spell can prevent this trait from functioning.\n\nIf it dies, the {creature} returns to life in 1d6 days and regains all its hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d6","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/debuff-energy-hold-levitate-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234529,"modifiedTime":1672336011174,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"JnLN0Rz60WHXk2Fr","name":"Keen Senses","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on Wisdom (Perception) checks that rely on sight, hearing, or smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-large-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234530,"modifiedTime":1672335857594,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"JsAys4RSGi4lN5Jy","name":"Change Shape","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {type} magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the {type}'s choice).In a new form, the {type} retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/silhouette-hold-change-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234530,"modifiedTime":1672335527261,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KMQAgNxBCAHrd2JU","name":"Antimagic Susceptibility","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} is incapacitated while in the area of an antimagic field.If targeted by dispel magic, the {creature} must succeed on a Constitution saving throw against the caster's spell save DC or fall unconscious for 1 minute.\n\nThe {creature} is incapacitated while in the area of an antimagic field.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/lightning/orb-ball-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234531,"modifiedTime":1672335416740,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KTsFgSQlDetDDm1f","name":"Lightning Absorption","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Whenever the {creature} is subjected to lightning damage, it takes no damage and instead regains a number of hit points equal to the lightning damage dealt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/lightning/bolt-strike-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234531,"modifiedTime":1672335839390,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KcUjvqIXZI3APp5a","name":"Breath Weapons","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\n(NOTE: THIS SHOULD BE USED ONLY IF THE CREATURE HAS MORE THAN ONE TYPE OF BREATH WEAPON, AND CONTAINS THE CHARGES FOR THOSE BREATH WEAPONS. EACH BREATH WEAPON ITSELF SHOULD ALSO BE ADDED.)The {type} uses one of the following breath weapons.**Fire Breath.** The {type} exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 45 (13d6) fire damage on a failed save, or half as much damage on a successful one.**Sleep Breath.** The {type} exhales sleep gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n\nThe {type} breathes in!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"flags":{},"img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234532,"modifiedTime":1672335533713,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KoBGbIkb2tMZv0ch","name":"Aberrant Ground","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe ground in a 10-foot radius around the {creature} is doughlike difficult terrain.Each creature that starts its turn in that area must succeed on a DC 10 Strength saving throw or have its speed reduced to 0 until the start of its next turn.\n\nThe ground in a 10-foot radius around the {creature} is doughlike difficult terrain. make a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":10,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-tornado-funnel-damage-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234532,"modifiedTime":1672335459239,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Kwt8YDIBHg6JO2v2","name":"Wall of Ice","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter.When the wall appears, each creature in its space is pushed out of it by the shortest route. The creature chooses which side of the wall to end up on, unless the creature is incapacitated. The creature then makes a DC 17 Dexterity saving throw, taking 35 (10d6) cold damage on a failed save, or half as much damage on a successful one.The wall lasts for 1 minute or until the {creature} is incapacitated or dies. The wall can be damaged and breached; each 10-foot section has AC 5, 30 hit points, vulnerability to fire damage, and immunity to acid, cold, necrotic, poison, and psychic damage. If a section is destroyed, it leaves behind a sheet of frigid air in the space the wall occupied. Whenever a creature finishes moving through the frigid air on a turn, willingly or otherwise, the creature must make a DC 17 Constitution saving throw, taking 17 (5d6) cold damage on a failed save, or half as much damage on a successful one. The frigid air dissipates when the rest of the wall vanishes.\n\nThe {creature} magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter. When the wall appears, each creature in its space is pushed out of it by the shortest route. The creature chooses which side of the wall to end up on, unless the creature is incapacitated. The creature then makes a Dexterity saving throw.The wall can be damaged and breached. If a section is destroyed, it leaves behind a sheet of frigid air in the space the wall occupied. Whenever a creature finishes moving through the frigid air on a turn, willingly or otherwise, the creature must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":"a solid surface it can see within 60 ft."},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"ft","type":"line"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"5d6","save":{"ability":"dex","dc":17,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/barrier-ice-crystal-wall-jagged-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234533,"modifiedTime":1672336144151,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Kx011zSOyhqEumH5","name":"Tail Swipe (Legendary)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} makes one tail attack.\n\nThe {creature} swipes its tail against its prey!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":1},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234534,"modifiedTime":1672336204525,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"L7myj23X3PFPUNh6","name":"Regional Effects","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234534,"modifiedTime":1672336013541,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LJTY3nl1cp9go4eT","name":"Fire Aura","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nAt the start of each of the {creature}'s turns, each creature within 5 feet of it takes 10 (3d6) fire damage, and flammable objects in the aura that aren't being worn or carried ignite.A creature that touches the {creature} or hits it with a melee attack while within 5 feet of it takes 10 (3d6) fire damage.\n\nAt the start of each of the {creature}'s turns, each creature within 5 feet of it takes fire damage, and flammable objects in the aura that aren't being worn or carried ignite. A creature that touches the {creature} or hits it with a melee attack while within 5 feet of it takes fire damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234535,"modifiedTime":1672335661674,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LO4nrudXAKJ4DbQI","name":"Channel Negative Energy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} magically unleashes negative energy. Creatures within 60 feet of the {creature}, including ones behind barriers and around corners, can't regain hit points until the end of the {creature}'s next turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":2},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/beam-impact-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234535,"modifiedTime":1672335525024,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LUHmtIDD1VTreFqI","name":"Incorporeal Movement","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} can move through other creatures and objects as if they were difficult terrain.It takes 5 (1d10) force damage if it ends its turn inside an object.\n\nThe {creature} can move through other creatures and objects as if they were difficult terrain.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/air-wave-gust-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234536,"modifiedTime":1672335876206,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LVnd9fq9cQj7rR0Q","name":"Lightning Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {type} exhales lightning in a 90-foot line that is 5 ft. wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.The {type} exhales lightning in a 90-foot line that is 5 ft. wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":19,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"flags":{},"img":"icons/magic/lightning/bolt-strike-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234536,"modifiedTime":1672335836200,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LkepRN2rP3Hp4orY","name":"Grasping Tendrils","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can have up to six tendrils at a time. Each tendril can be attacked (AC 20; 10 hit points; immunity to poison and psychic damage). Destroying a tendril deals no damage to the {creature}, which can extrude a replacement tendril on its next turn. A tendril can also be broken if a creature takes an action and succeeds on a DC 15 Strength check against it.The {creature} can have up to six tendrils at a time. Each tendril can be attacked. A tendril can also be broken if a creature takes an action and succeeds on a Strength check against it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/root-vine-entangle-foot-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234537,"modifiedTime":1672335626084,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LvSBjRKoCAKaAnQy","name":"Fey Ancestry","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on saving throws against being charmed, and magic can't put the {creature} to sleep.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/elk-moose-marked-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234537,"modifiedTime":1672335668695,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"M9XqZZGoTKawAsCl","name":"Underwater Camouflage","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on Dexterity (Stealth) checks made while underwater.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"Octopus","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/orb-ice-web.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234538,"modifiedTime":1672336157550,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MBOiQSnMr02wUpEN","name":"Limited Magic Immunity","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can't be affected or detected by spells of 6th level or lower unless it wishes to be. It has advantage on saving throws against all other spells and magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234538,"modifiedTime":1672335829042,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MFuiImIvLzYA3osc","name":"Immutable Form","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} is immune to any spell or effect that would alter its form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/orb-beam-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234539,"modifiedTime":1672335878637,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MLVEyA7VcWu9uXqV","name":"Fear Aura","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Any creature hostile to the {creature} that starts its turn within 20 feet of the {creature} must make a DC 21 Wisdom saving throw, unless the {creature} is incapacitated. On a failed save, the creature is frightened until the start of its next turn. If a creature's saving throw is successful, the creature is immune to the {creature}'s Fear Aura for the next 24 hours.Any creature hostile to the {creature} that starts its turn within 20 feet of the {creature} must make a Wisdom saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":21,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/elemental-water.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234539,"modifiedTime":1672335673682,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MqAVplIArAKzpnXB","name":"Pounce","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nIf the {creature} moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a DC 13 Strength saving throw or be knocked prone.If the target is prone, the {creature} can make one bite attack against it as a bonus action.\n\nIf the {creature} moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must make a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/claws/claw-talons-glowing-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234539,"modifiedTime":1672336046015,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NI3FPb5jQsePdlVl","name":"Possession","ownership":{"default":0},"type":"feat","system":{"description":{"value":"One humanoid that the {creature} can see within 5 ft. of it must succeed on a DC 13 Charisma saving throw or be possessed by the {creature}; the {creature} then disappears, and the target is incapacitated and loses control of its body. The {creature} now controls the body but doesn't deprive the target of awareness. The {creature} can't be targeted by any attack, spell, or other effect, except ones that turn {type}, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being charmed and frightened. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.The possession lasts until the body drops to 0 hit points, the {creature} ends it as a bonus action, or the {creature} is turned or forced out by an effect like the dispel evil and good spell. When the possession ends, the {creature} reappears in an unoccupied space within 5 ft. of the body. The target is immune to this {creature}'s Possession for 24 hours after succeeding on the saving throw or after the possession ends.One humanoid that the {creature} can see within 5 ft. of it must make a Charisma saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"spec"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":13,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"flags":{},"img":"icons/magic/control/fear-fright-monster-grin-purple-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234540,"modifiedTime":1672336048232,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NfTCXq8eRrqjhvAo","name":"Ethereal Stride","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} and up to three willing creatures within 5 feet of it magically enter the Ethereal Plane from the Material Plane, or vice versa.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/lightning/orb-ball-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234540,"modifiedTime":1672335686940,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NmWSgqxpYfhrvQKq","name":"Detect (Legendary)","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} makes a Wisdom (Perception) check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":1},"ability":"wis","actionType":"abil","attackBonus":"","chatFlavor":"The aboleth focuses its gaze!","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"d20+@skills.prc.total","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/eyes/lizard-single-slit-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234541,"modifiedTime":1672335727255,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NzHwrEuKnKxZ4NTP","name":"Split","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nWhen a {creature} that is Medium or larger is subjected to lightning or slashing damage, it splits into two new {creature}s if it has at least 10 Hit Points. Each new {creature} has Hit Points equal to half the original {creature}'s, rounded down. New {creature}s are one size smaller than the original pudding.\n\nThe {creature} splits into two new {creature}s. New {creature}s are one size smaller than the original {creature}.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/slimes/slime-movement-pseudopod-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234541,"modifiedTime":1672336241184,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"OejKD6LitlURecxp","name":"Psychic Drain","ownership":{"default":0},"type":"feat","system":{"description":{"value":"One creature charmed by the {creature} takes 10 (3d6) psychic damage, and the {creature} regains hit points equal to the damage the creature takes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":2},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","psychic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/projectile-skull-flaming-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234542,"modifiedTime":1672336039782,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"OqRnKL4703RuReS1","name":"Shriek","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When bright light or a creature is within 30 feet of the {creature}, it emits a shriek audible within 300 feet of it. The {creature} continues to shriek until the disturbance moves out of range and for 1d4 of the {creature}'s turns afterwardWhen bright light or a creature is within 30 feet of the {creature}, it emits a shriek audible within 300 feet of it. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/mouth-teeth-human.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234542,"modifiedTime":1672336291499,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"OsPhT7jA5LlvUA6e","name":"Stench","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Any creature that starts its turn within 5 ft. of the {creature} must succeed on a DC 10 Constitution saving throw or be poisoned until the start of its next turn. On a successful saving throw, the creature is immune to the {creature}'s Stench for 24 hours.Any creature that starts its turn within 5 ft. of the {creature} must succeed on a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":10,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/commodities/tech/smoke-bomb-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234543,"modifiedTime":1672336230984,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Ouvju0Y3SoYb5EMR","name":"Flying Sword","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} releases its greatsword to hover magically in an unoccupied space within 5 ft. of it. If the {creature} can see the sword, the {creature} can mentally command it as a bonus action to fly up to 50 ft. and either make one attack against a target or return to the {creature}'s hands.If the hovering sword is targeted by any effect, the {creature} is considered to be holding it. The hovering sword falls if the {creature} dies.The {creature} releases its greatsword to hover magically in an unoccupied space within 5 ft. of it. If the hovering sword is targeted by any effect, the {creature} is considered to be holding it. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/weapons/swords/sword-runed-glowing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234543,"modifiedTime":1672335647897,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Ozz1xvw2ydiw4IJP","name":"Running Leap","ownership":{"default":0},"type":"feat","system":{"description":{"value":"With a 10-foot running start, the {creature} can long jump up to 25 ft.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234544,"modifiedTime":1672335999848,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"P0DMM1rgpoiBodDT","name":"Lair Actions","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/stealth-hide-eyes-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234544,"modifiedTime":1672335852792,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"PLBui1FCQuSlEqyI","name":"Reflective Carapace","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Any time the {creature} is targeted by a magic missile spell, a line spell, or a spell that requires a ranged attack roll, roll a d6. On a 1 to 5, the {creature} is unaffected.On a 6, the {creature} is unaffected, and the effect is reflected back at the caster as though it originated from the {creature}, turning the caster into the target.The {creature} is unaffected, and the effect is reflected back at the caster as though it originated from the {creature}, turning the caster into the target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d6","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-pentagon-purple-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234545,"modifiedTime":1672335958324,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"PPzVD90vab60FqCt","name":"Teleport","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":2},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234545,"modifiedTime":1672336200251,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"PqVfFNyOPmecrS7N","name":"Nimble Escape","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can take the Disengage or Hide action as a bonus action on each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234546,"modifiedTime":1672335795741,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"QCNJD2GuOZSTT4Wt","name":"Roar","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different, as detailed below. Each creature within 500 feet of the {creature} and able to hear the roar must make a saving throw.**First Roar.** Each creature that fails a DC 18 Wisdom saving throw is frightened for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.**Second Roar.** Each creature that fails a DC 18 Wisdom saving throw is deafened and frightened for 1 minute. A frightened creature is paralyzed and can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.**Third Roar.** Each creature makes a DC 18 Constitution saving throw. On a failed save, a creature takes 44 (8d10) thunder damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone.\n\nThe {creature} emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different. Each creature within 500 feet of the {creature} and able to hear the roar must make a saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"creature"},"range":{"value":500,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/sonic/scream-wail-shout-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234546,"modifiedTime":1672336004217,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"QMGBV7OSnXqWLdhr","name":"Barbed Hide","ownership":{"default":0},"type":"feat","system":{"description":{"value":"At the start of each of its turns, the {creature} deals 5 (1d10) piercing damage to any creature grappling it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234547,"modifiedTime":1672335570428,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"QOWoa60SwvsQJifN","name":"Berserk","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nWhenever the {creature} starts its turn with 60 hit points or fewer, roll a d6. On a 6, the {creature} goes berserk. On each of its turns while berserk, the {creature} attacks the nearest creature it can see.If no creature is near enough to move to and attack, the {creature} attacks an object, with preference for an object smaller than itself. Once the {creature} goes berserk, it continues to do so until it is destroyed or regains all its hit points.\n\nThe {creature} goes berserk. On each of its turns while berserk, the {creature} attacks the nearest creature it can see. If no creature is near enough to move to and attack, the {creature} attacks an object, with preference for an object smaller than itself.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d6","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/reptiles/lizard-mouth-glowing-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234547,"modifiedTime":1672335565693,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"QiM1nbPzbLzKnfmP","name":"Tentacle Slam","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} slams creatures grappled by it into each other or a solid surface. Each creature must succeed on a DC 14 Constitution saving throw or take 10 (2d6 + 3) bludgeoning damage and be stunned until the end of the {creature}'s next turn. On a successful save, the target takes half the bludgeoning damage and isn't stunned.The {creature} slams creatures grappled by it into each other or a solid surface. Each creature must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/undead-skeleton-deformed-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234548,"modifiedTime":1672336192418,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SGgVxdZbmsStfeGB","name":"Fey Charm","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} targets one humanoid or beast that she can see within 30 feet of her. If the target can see the {creature}, it must succeed on a DC 14 Wisdom saving throw or be magically charmed.The charmed creature regards the {creature} as a trusted friend to be heeded and protected. Although the target isn't under the {creature}'s control, it takes the {creature}'s requests or actions in the most favorable way it can.Each time the {creature} or its allies do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the {creature} dies, is on a different plane of existence from the target, or ends the effect as a bonus action. If a target's saving throw is successful, the target is immune to the {creature}'s Fey Charm for the next 24 hours. The {creature} can have no more than one humanoid and up to three beasts charmed at a time.\n\nThe {creature} targets one humanoid or beast that she can see within 30 feet of her. If the target can see the {creature}, it must make a Wisdom saving throw. Each time the {creature} or its allies do anything harmful to the target, it can repeat the saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":"one humanoid or beast"},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/consumables/plants/leaf-veins-glowing-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234548,"modifiedTime":1672335666423,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SlAF2AE4ZKoUvQql","name":"Create Specter","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} targets a humanoid within 10 feet of it that has been dead for no longer than 1 minute and died violently. The target's spirit rises as a specter in the space of its corpse or in the nearest unoccupied space. The specter is under the {creature}'s control. The {creature} can have no more than seven specters under its control at one time.The target's spirit rises as a specter in the space of its corpse or in the nearest unoccupied space. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/dragon-breath-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234548,"modifiedTime":1672335499576,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SrmR5UfLMFxTErTp","name":"Shielded Mind","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} is immune to scrying and to any effect that would sense its emotions, read its thoughts, or detect its location.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/control-influence-rally-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234549,"modifiedTime":1672336296900,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"T25IRJ66yUqi2F1m","name":"First Roar","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Each creature that fails a DC 18 Wisdom saving throw is frightened for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/sonic/scream-wail-shout-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234549,"modifiedTime":1672335653874,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"T2gLBBjrHTbLTdGc","name":"Wakeful","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When one of the {creature}'s heads is asleep, its other head is awake.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/eyes/lizard-single-slit-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234550,"modifiedTime":1672336146498,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"TVPqMOcoLNFBUMyG","name":"Acid Absorption","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Whenever the {creature} is subjected to acid damage, it takes no damage and instead regains a number of hit points equal to the acid damage dealt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/orb-smoking-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234551,"modifiedTime":1672335456646,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"TyDSfYTJeKv7c8lB","name":"Air Form","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {type} can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/debuff-energy-hold-levitate-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234552,"modifiedTime":1672335435297,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"UH57LTsTGDxl2oS6","name":"Fire Absorption","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Whenever the {creature} is subjected to fire damage, it takes no damage and instead regains a number of hit points equal to the fire damage dealt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/flame-burning-campfire-rocks.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234552,"modifiedTime":1672335663799,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"UYorz1ZrfuoTRknp","name":"Shark Telepathy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can magically command any shark within 120 feet of it, using a limited telepathy.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/orb-swirling-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234553,"modifiedTime":1672335980640,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"UjbgbOnd6ltjagZm","name":"Devil Sight","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Magical darkness doesn't impede the {creature}'s Darkvision.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/eye-slit-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234553,"modifiedTime":1672335724735,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Uvy7vla2EhYSfTl0","name":"Ignited Illumination","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As a bonus action, the {creature} can set itself ablaze or extinguish its flames. While ablaze, the {creature} sheds bright light in a 10-foot radius and dim light for an additional 10 ft.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/explosion-mushroom-nuke-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234554,"modifiedTime":1672335885761,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"V1lW1vnrTpVTDr6o","name":"Pack Tactics","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on an attack roll against a creature if at least one of the {creature}'s allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"Baboon","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/paw-print-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234555,"modifiedTime":1672335789570,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VYAnJjIgb5nPXfRr","name":"Undead Fortitude","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nIf damage reduces the {creature} to 0 hit points, it must make a Constitution saving throw with a DC of 5+the damage taken, unless the damage is radiant or from a critical hit. On a success, the {creature} drops to 1 hit point instead.\n\nIf damage reduces the {creature} to 0 hit points, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"con"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/acid/pouring-gas-smoke-liquid.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234556,"modifiedTime":1672336159442,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VbBHypDc0eLWbsNE","name":"Nightmare Haunting","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nWhile on the Ethereal Plane, the {creature} magically touches a sleeping humanoid on the Material Plane. A protection from evil and good spell cast on the target prevents this contact, as does a magic circle.As long as the contact persists, the target has dreadful visions. If these visions last for at least 1 hour, the target gains no benefit from its rest, and its hit point maximum is reduced by 5 (1d10). If this effect reduces the target's hit point maximum to 0, the target dies, and if the target was evil, its soul is trapped in the hag's soul bag. The reduction to the target's hit point maximum lasts until removed by the greater restoration spell or similar magic.\n\nWhile on the Ethereal Plane, the {creature} magically touches a sleeping humanoid on the Material Plane. As long as the contact persists, the target has dreadful visions.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"flags":{},"img":"icons/commodities/tech/smoke-bomb-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234556,"modifiedTime":1672335797625,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VhByyxHJN7MNQJRd","name":"Shapechanger","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can use its action to polymorph into a Small or Medium humanoid it has seen, or back into its true form.Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies.The {creature} can use its action to polymorph into a Small or Medium humanoid it has seen, or back into its true form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/silhouette-hold-change-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234556,"modifiedTime":1672335982772,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VrPyFE3Hhjh0QjIO","name":"Ephemeral","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can't wear or carry anything.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/orb-ice-web.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234557,"modifiedTime":1672335693650,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VvXrTnB2FscxqbG3","name":"Moan","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Each creature within 60 feet of the {creature} that can hear its moan and that isn't an {type} must succeed on a DC 13 Wisdom saving throw or become frightened until the end of the {creature}'s next turn. If a creature's saving throw is successful, the creature is immune to the {creature}'s moan for the next 24 hours.Each creature within 60 feet of the {creature} that can hear its moan and that isn't an {type} must make a Wisdom saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"radius"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"cha"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/projectile-skull-flaming-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234557,"modifiedTime":1672335809708,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WHnLJRaXfIW7Z28t","name":"Duergar Resilience","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on saving throws against poison, spells, and illusions, as well as to resist being charmed or paralyzed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/control-influence-rally-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234558,"modifiedTime":1672335711131,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WbaKH3NLA3mvylfM","name":"Elemental Demise","ownership":{"default":0},"type":"feat","system":{"description":{"value":"If the {creature} dies, its body disintegrates into a warm breeze, leaving behind only equipment the {creature} was wearing or carrying.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/air-wave-gust-smoke-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234558,"modifiedTime":1672335703551,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WdpSeGqhZpptz37y","name":"Bite","ownership":{"default":0},"type":"weapon","system":{"description":{"value":"\nMelee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n\nThe {creature} attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"ada":false,"mgc":false,"sil":false},"proficient":true},"flags":{},"img":"icons/creatures/abilities/mouth-teeth-long-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234559,"modifiedTime":1672335563706,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"We6R4thWKYDRYlEc","name":"Ethereal Sight","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can see 60 ft. into the Ethereal Plane when it is on the Material Plane, and vice versa.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/eye-tendrils-web-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234560,"modifiedTime":1672335689629,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WqRzbokPG0am6AHb","name":"Charge","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nIf the {creature} moves at least 20 ft. straight toward a target and then hits it with a tusk attack on the same turn, the target takes an extra 3 (1d6) slashing damage.If the target is a creature, it must succeed on a DC 11 Strength saving throw or be knocked prone.\n\nIf the {creature} moves at least 20 ft. straight toward a target and then hits it with a tusk attack on the same turn, the target takes extra slashing damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":11,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234560,"modifiedTime":1672335522635,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WtQHjfWuFrsYEns3","name":"Third Roar","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Each creature makes a DC 18 Constitution saving throw. On a failed save, a creature takes 44 (8d10) thunder damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/sonic/scream-wail-shout-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234561,"modifiedTime":1672336187309,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"X96xsQjIolyHtV91","name":"Whirlwind of Sand","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} magically transforms into a whirlwind of sand, moves up to 60 feet, and reverts to its normal form. While in whirlwind form, the {creature} is immune to all damage, and it can't be grappled, petrified, knocked prone, restrained, or stunned. Equipment worn or carried by the {creature} remain in its possession.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":2},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/explosion-mushroom-nuke-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234561,"modifiedTime":1672336117138,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XFvk6ywwZWTkMmQR","name":"Dark Devotion","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on saving throws against being charmed or frightened.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/control-influence-rally-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234562,"modifiedTime":1672335489676,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XmLuhZYd9WnCWBlU","name":"Hellish Rejuvenation","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nA {creature} that dies in the Nine Hells sometimes comes back to comes back to life with all its hit points in 1d10 days unless it is killed by a good-aligned creature with a bless spell cast on that creature or its remains are sprinkled with holy water.\n\nA {creature} that dies in the Nine Hells sometimes comes back to life.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d10","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"Lemure","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/wounds/anatomy-organ-heart-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234562,"modifiedTime":1672335905764,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XwcFK21aM2BThgSk","name":"Fetid Cloud","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nA 10-foot radius of disgusting green gas extends out from the {creature}. The gas spreads around corners, and its area is lightly obscured. It lasts for 1 minute or until a strong wind disperses it.Any creature that starts its turn in that area must succeed on a DC 11 Constitution saving throw or be poisoned until the start of its next turn. While poisoned in this way, the target can take either an action or a bonus action on its turn, not both, and can't take reactions. 1 use per day.\n\nA 10-foot radius of disgusting green gas extends out from the {creature}. The gas spreads around corners, and its area is lightly obscured. Any creature that starts its turn in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/acid/projectile-glowing-bubbles.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234563,"modifiedTime":1672335671239,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Xwj2GPqTxngS0j2L","name":"Blasphemous Word","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} utters a blasphemous word. Each non-{type} creature within 10 feet of the {creature} that can hear the magical utterance must succeed on a DC 16 Constitution saving throw or be stunned until the end of the {creature}'s next turn.\n\nThe {creature} utters a blasphemous word. Each non-{type} creature within 10 feet of the {creature} that can hear the magical utterance must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":2},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":16,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-vortex-swirl-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234563,"modifiedTime":1672335560632,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YKC7pwYkJSKn1vuw","name":"Ice Walk","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {type} can move across and climb icy surfaces without needing to make an ability check. Additionally, difficult terrain composed of ice or snow doesn't cost it extra movement.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/water-iceberg-bubbles.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234564,"modifiedTime":1672335888117,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YShGyidij4sLpyzF","name":"Horrific Appearance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nAny humanoid that starts its turn within 30 feet of the {creature} and can see the {creature}'s true form must make a DC 11 Wisdom saving throw. On a failed save, the creature is frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, with disadvantage if the hag is within line of sight, ending the effect on itself on a success.If a creature's saving throw is successful or the effect ends for it, the creature is immune to the {creature}'s Horrific Appearance for the next 24 hours. Unless the target is surprised or the revelation of the hag's true form is sudden, the target can avert its eyes and avoid making the initial saving throw. Until the start of its next turn, a creature that averts its eyes has disadvantage on attack rolls against the {creature}.\n\nAny humanoid that starts its turn within 30 feet of the {creature} and can see the {creature}'s true form must make a Wisdom saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":30,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/unholy/demon-winged-cyclops-drooling.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234564,"modifiedTime":1672335895418,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Z7U6z4HD1ORlkTIJ","name":"Frost Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} exhales a 15-foot cone of cold air. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 5 (2d4) cold damage on a failed save, or half as much damage on a successful one.\n\nThe {creature} exhales a 15-foot cone of cold air. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":10,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"flags":{},"img":"icons/magic/air/wind-tornado-wall-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234565,"modifiedTime":1672335636492,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZIGTG2qhkJ54jEk4","name":"Haste","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nRecharge 5-6.\n\nUntil the end of its next turn, the {creature} magically gains a +2 bonus to its AC, has advantage on Dexterity saving throws, and can use an attack as a bonus action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"flags":{},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234565,"modifiedTime":1672335622871,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"aD3HKoBnJtZL6cDj","name":"Stunning Screech","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} emits a horrific screech. Each creature within 20 feet of it that can hear it and that isn't a {type} must succeed on a DC 14 Constitution saving throw or be stunned until the end of the {creature}'s next turn .\n\nThe {creature} emits a horrific screech. Each creature within 20 feet of it that can hear it and that isn't a {type} must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"creature"},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/toxins/cup-goblet-poisoned-spilled.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234566,"modifiedTime":1672336224908,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"aH5ncM30tP8tPQ24","name":"Swallow","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is also swallowed, and the grapple ends. While swallowed, the target is blinded and restrained, it has total cover against attacks and other effects outside the {creature}, and it takes 21 (6d6) acid damage at the start of each of the {creature}'s turns. A {creature} can have only one creature swallowed at a time.If the {creature} takes 30 damage or more on a single turn from the swallowed creature, the {creature} must succeed on a DC 14 Constitution saving throw at the end of that turn or regurgitate the creature, which falls prone in a space within 10 ft. of the {creature}. If the {creature} dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 15 ft. of movement, exiting prone.\n\nThe {creature} attacks with its Swallow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/mouth-teeth-tongue-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234567,"modifiedTime":1672336212815,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ao6mxTJVYy7WaVgW","name":"Blinding Dust","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nBlinding dust and sand swirls magically around the {creature}. Each creature within 5 feet of the {creature} must succeed on a DC 16 Constitution saving throw or be blinded until the end of the creature's next turn.\n\nBlinding dust and sand swirls magically around the {creature}. Each creature within 5 feet of the {creature} must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":1},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"con"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/barrier-wall-explosion-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234567,"modifiedTime":1672335550516,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"bG5Z45jj4wz0N3T6","name":"Deadly leap","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nIf the {creature} jumps at least 15 ft. as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures.Each of those creatures must succeed on a DC 16 Strength or Dexterity saving throw (target's choice) or be knocked prone and take 14 (3d6 + 4) bludgeoning damage plus 14 (3d6 + 4) slashing damage. On a successful save, the creature takes only half the damage, isn't knocked prone, and is pushed 5 ft. out of the {creature}'s space into an unoccupied space of the creature's choice. If no unoccupied space is within range, the creature instead falls prone in the {creature}'s space.\n\nIf the {creature} jumps at least 15 ft. as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures. Each of those creatures must make a Strength or Dexterity saving throw (target's choice) or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":16,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/projectile-wave-arrow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234568,"modifiedTime":1672335740014,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"bGSW8IuWURWiWtxr","name":"Fire Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\n**Fire Breath.** The {type} exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 45 (13d6) fire damage on a failed save, or half as much damage on a successful one.\n\nThe {type} exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":18,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234568,"modifiedTime":1672335659330,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"boO7LJ0RRinoWHyT","name":"Limited Amphibiousness","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating.The {creature} can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/environment/creatures/frog-spotted-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234568,"modifiedTime":1672335831362,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"bojUXmNOZ2rJVujD","name":"Ink Cloud","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nA 20-foot-radius cloud of ink extends all around the {creature} if it is underwater. The area is heavily obscured for 1 minute, although a significant current can disperse the ink. After releasing the ink, the {creature} can use the Dash action as a bonus action. Recharges after a Short or Long Rest.\n\nA 20-foot-radius cloud of ink extends all around the {creature} if it is underwater.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"flags":{},"img":"icons/magic/unholy/orb-swirling-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234569,"modifiedTime":1672335874265,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"c4Q6NDCLJSNcNc9T","name":"Water Breathing","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can breathe only underwater.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"Octopus","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/projectile-water-ice-orb.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234569,"modifiedTime":1672336141867,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"cSA0EbjlxCbst4gJ","name":"Siege Monster","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {type} deals double damage to objects and structures.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/magical/construct-iron-stomping-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234570,"modifiedTime":1672336289181,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"cZm13DxOe9lZyGFT","name":"Corrosive Form","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nA creature that touches the {creature} or hits it with a melee attack while within 5 feet of it takes 4 (1d8) acid damage. Any nonmagical weapon made of metal or wood that hits the {creature} corrodes.After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls. If its penalty drops to -5, the weapon is destroyed. Nonmagical ammunition made of metal or wood that hits the {creature} is destroyed after dealing damage. The {creature} can eat through 2-inch-thick, nonmagical wood or metal in 1 round.\n\nA creature that touches the {creature} or hits it with a melee attack while within 5 feet of it takes acid damage. Any nonmagical weapon made of metal or wood that hits the pudding corrodes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/earth/orb-stone-smoke-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234570,"modifiedTime":1672335501748,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"cl5sUkAIeJoAG4gh","name":"Leadership","ownership":{"default":0},"type":"feat","system":{"description":{"value":"For 1 minute, the {creature} can utter a special command or warning whenever a nonhostile creature that it can see within 30 ft. of it makes an attack roll or a saving throw. The creature can add a d4 to its roll provided it can hear and understand the {creature}. A creature can benefit from only one Leadership die at a time. This effect ends if the {creature} is incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"flags":{},"img":"icons/sundries/documents/document-sealed-red-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234571,"modifiedTime":1672335850907,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"cpnrDGQrqgPlSmwR","name":"Frightening Gaze","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} fixes its gaze on one creature it can see within 10 feet of it. The target must succeed on a DC 18 Wisdom saving throw against this magic or become grappled for 1 minute. The grappled target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to the {creature}'s gaze for the next 24 hours.\n\nThe {creature} fixes its gaze on one creature it can see within 10 feet of it. The target must make a Wisdom saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":2},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/silhouette-stealth-shadow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234571,"modifiedTime":1672335640862,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"cueeLXQ3W8gKHiLq","name":"Transparent","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nEven when the {creature} is in plain sight, it takes a successful DC 15 Wisdom (Perception) check to spot a {creature} that has neither moved nor attacked. A creature that tries to enter the {creature}'s space while unaware of the {creature} is surprised by the {creature}.\n\nEven when the {creature} is in plain sight, it takes a successful Wisdom (Perception) check to spot a {creature} that has neither moved nor attacked. A creature that tries to enter the {creature}'s space while unaware of the cube is surprised by the {creature}.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/silhouette-hold-change-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234572,"modifiedTime":1672336182664,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"cz1LUaiXG8GshgU9","name":"Angelic Weapons","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature}'s weapon attacks are magical. When the {creature} hits with any weapon, the weapon deals an extra 4d8 radiant damage (included in the attack).The {creature}'s weapon attacks are magical. When the {creature} hits with any weapon, the weapon deals extra radiant damage (included in the attack).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/dagger-rune-enchant-flame-strong-blue-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234572,"modifiedTime":1672335425867,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"czKwBo1qw5O2gCNy","name":"Tentacle Attack or Fling","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} makes one tentacle attack or uses its Fling.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/tentacles/tentacles-thing-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234573,"modifiedTime":1672336197999,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dA5X2eQuOtHywpQF","name":"Invisibility","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} magically turns invisible until it attacks, casts a spell, or uses its Enlarge, or until its concentration is broken, up to 1 hour (as if concentrating on a spell).\n\nThe {creature} magically turns invisible. Any equipment the {creature} wears or carries is invisible with it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/webs/webthin-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234573,"modifiedTime":1672335864557,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dPPLbo3Unu3TqZrs","name":"Gibbering","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} babbles incoherently while it can see any creature and isn't incapacitated. Each creature that starts its turn within 20 feet of the mouther and can hear the gibbering must succeed on a DC 10 Wisdom saving throw. On a failure, the creature can't take reactions until the start of its next turn and rolls a d8 to determine what it does during its turn.On a 1 to 4, the {creature} does nothing. On a 5 or 6, the creature takes no action or bonus action and uses all its movement to move in a randomly determined direction. On a 7 or 8, the creature makes a melee attack against a randomly determined creature within its reach or does nothing if it can't make such an attack.\n\nThe {creature} babbles incoherently while it can see any creature. Each creature that starts its turn within 20 feet of the {creature} and can hear the gibbering must succeed on a Wisdom saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d8","save":{"ability":"wis","dc":10,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/toxins/cup-goblet-poisoned-spilled.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234573,"modifiedTime":1672335634223,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dm2G9HupHZbZRvNm","name":"Children of the Night","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} magically calls 2d4 swarms of bats or rats, provided that the sun isn't up. While outdoors, the {creature} can call 3d6 wolves instead. The called creatures arrive in 1d4 rounds, acting as allies of the {creature} and obeying its spoken commands. The beasts remain for 1 hour, until the {creature} dies, or until the {creature} dismisses them as a bonus action.The {creature} magically calls swarms of bats or rats. While outdoors, the {creature} can call wolves instead. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/skull-trio-badge-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234574,"modifiedTime":1672335518512,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dvSoAF3bOeUeIrxf","name":"Multiple Heads","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} has five heads. While it has more than one head, the {creature} has advantage on saving throws against being blinded, charmed, deafened, frightened, stunned, and knocked unconscious. Whenever the {creature} takes 25 or more damage in a single turn, one of its heads dies. If all its heads die, the {creature} dies.At the end of its turn, it grows two heads for each of its heads that died since its last turn, unless it has taken fire damage since its last turn. The {creature} regains 10 hit points for each head regrown in this way.\n\nThe {creature} has five heads. While it has more than one head, the {creature} has advantage on saving throws against being blinded, charmed, deafened, frightened, stunned, and knocked unconscious.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/strike-sword-stabbed-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234574,"modifiedTime":1672335799733,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eL3OJmc4FuetizKO","name":"Swarm","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny {creature}. The swarm can't regain hit points or gain temporary hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"Bats","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/bats-movement-flying-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234575,"modifiedTime":1672336209124,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eVKgO2130oiJqsjY","name":"Telepathic Bond","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While the {creature} is on the same plane of existence as its master, it can magically convey what it senses to its master, and the two can communicate telepathically.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234575,"modifiedTime":1672336202508,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ebcmg4M5LsUYCqee","name":"Paralyzing Touch","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} uses its Paralyzing Touch.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":2},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/water-hand.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234576,"modifiedTime":1672336061779,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"f4yvSah35ixQOswD","name":"Standing Leap","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature}'s long jump is up to 30 ft. and its high jump is up to 15 ft., with or without a running start.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/environment/creatures/frog-spotted-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234576,"modifiedTime":1672336236951,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fUMY4b9snsiKl30e","name":"Freedom of Movement","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} ignores difficult terrain, and magical effects can't reduce its speed or cause it to be restrained. It can spend 5 feet of movement to escape from nonmagical restraints or being grappled.The {creature} ignores difficult terrain, and magical effects can't reduce its speed or cause it to be restrained. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234577,"modifiedTime":1672335645524,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fdmzHw875EzpXM2a","name":"Spellcasting","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} is a 1st-level spellcaster. Its spellcasting ability is Wisdom (spell save DC 12, +4 to hit with spell attacks). The {creature} has following cleric spells prepared:Cantrips (at will): light, sacred flame, thaumaturgy1st level (3 slots): bless, cure wounds, sanctuary\n\nThe {creature} is a spellcaster. Its spellcasting ability is Wisdom.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/projectiles-star-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234578,"modifiedTime":1672336245100,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"g4V02wJbEstUpwi9","name":"Tree Stride","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Once on her turn, the {creature} can use 10 feet of her movement to step magically into one living tree within her reach and emerge from a second living tree within 60 feet of the first tree, appearing in an unoccupied space within 5 feet of the second tree. Both trees must be Large or bigger.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/tree-spirit-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234578,"modifiedTime":1672336178492,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gM767AhU36B6LUGU","name":"Lightning Storm","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} magically creates three bolts of lightning, each of which can strike a target the {creature} can see within 120 feet of it. A target must make a DC 23 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.The {creature} magically creates three bolts of lightning, each of which can strike a target the {creature} can see within 120 feet of it. A target must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":3,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":23,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/lightning/bolts-forked-large-blue-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234579,"modifiedTime":1672335833216,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gWpp0N06HvS937Go","name":"Two Heads","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on Wisdom (Perception) checks and on saving throws against being blinded, charmed, deafened, frightened, stunned, and knocked unconscious.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/skull-horned-goat-pentagram-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234579,"modifiedTime":1672336166182,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gbcy9MyUF06iUC88","name":"Enslave","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} targets one creature it can see within 30 ft. of it. The target must succeed on a DC 14 Wisdom saving throw or be magically charmed by the {creature} until the {creature} dies or until it is on a different plane of existence from the target.The charmed target is under the {creature}'s control and can't take reactions, and the {creature} and the target can communicate telepathically with each other over any distance.Whenever the charmed target takes damage, the target can repeat the saving throw. On a success, the effect ends. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the {creature}.\n\nThe target must make a Wisdom saving throw. Whenever the target takes damage, the target can repeat the saving throw. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the {creature}.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"wis"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/hypnosis-mesmerism-watch.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234580,"modifiedTime":1672335696160,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gh5UPTS0L16fHYwB","name":"Iron Scent","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can pinpoint, by scent, the location of ferrous metal within 30 feet of it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/weapons/swords/sword-runed-glowing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234581,"modifiedTime":1672335859642,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gklxiU0PKYSM7RWv","name":"Heal Self","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} magically regains 11 (2d8+2) hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":3,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":3},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/life/ankh-gold-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234581,"modifiedTime":1672335620632,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gqrKcFwxHhmwrP2q","name":"Scare","ownership":{"default":0},"type":"feat","system":{"description":{"value":"One creature of the {creature}'s choice within 20 ft. of it must succeed on a DC 10 Wisdom saving throw or be frightened for 1 minute. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the {creature} is within line of sight, ending the effect on itself on a success.One creature of the {creature}'s choice within 20 ft. of it must make a Wisdom saving throw. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the {creature} is within line of sight, ending the effect on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":10,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/unholy/demon-winged-cyclops-drooling.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234582,"modifiedTime":1672335994225,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hMC7XCkDbzVMZ0QG","name":"Misty Escape","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When it drops to 0 hit points outside its resting place, the {creature} transforms into a cloud of mist (as in the Shapechanger trait) instead of falling unconscious, provided that it isn't in sunlight or running water. If it can't transform, it is destroyed.While it has 0 hit points in mist form, it can't revert to its {creature} form, and it must reach its resting place within 2 hours or be destroyed. Once in its resting place, it reverts to its {creature} form. It is then paralyzed until it regains at least 1 hit point. After spending 1 hour in its resting place with 0 hit points, it regains 1 hit point.A slain {creature} transforms into a cloud of mist (as in the Shapechanger trait) instead of falling unconscious.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-gray.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234582,"modifiedTime":1672335811934,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hkmTEk6klT6QL4K4","name":"Innate Spellcasting","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {type}'s innate spellcasting ability is Charisma. It can innately cast the following spells, requiring no material components:At will: detect magic, fog cloud, light3/day each: feather fall, fly, misty step, telekinesis1/day each: control weather, gaseous form","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/projectiles-star-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234583,"modifiedTime":1672335871990,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hu2pgYS1RD7hglvg","name":"Horror Nimbus","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} magically emits scintillating, multicolored light. Each creature within 15 feet of the {creature} that can see the light must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the {creature}'s Horror Nimbus for the next 24 hours.A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the {creature}'s Horror Nimbus for the next 24 hours.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":15,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"flags":{},"img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234583,"modifiedTime":1672335890789,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hxXzd3KCfnqnT89w","name":"Fling","ownership":{"default":0},"type":"feat","system":{"description":{"value":"One Large or smaller object held or creature grappled by the {creature} is thrown up to 60 feet in a random direction and knocked prone. If a thrown target strikes a solid surface, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 18 Dexterity saving throw or take the same damage and be knocked prone.One Large or smaller object held or creature grappled by the {creature} is thrown up to 60 feet in a random direction and knocked prone. If the target is thrown at another creature, that creature must make a Dexterity saving throw or take the same damage and be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/webs/webthin-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234584,"modifiedTime":1672335651727,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"i3viKtKcSVeWLJFJ","name":"Heated Weapons","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nWhen the {creature} hits with a metal melee weapon, it deals an extra 3 (1d6) fire damage (included in the attack).\n\nWhen the {creature} hits with a metal melee weapon, it deals extra fire damage (included in the attack).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/strike-sword-blood-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234585,"modifiedTime":1672335907816,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"i8WDjw4J1gJWQmqG","name":"Web","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Ranged Weapon Attack: +4 to hit, range 30/60 ft., one Large or smaller creature. Hit: The creature is restrained by webbing. As an action, the restrained creature can make a DC 11 Strength check, escaping from the webbing on a success. The effect ends if the webbing is destroyed. The webbing has AC 10, 5 hit points, is vulnerable to fire damage and immune to bludgeoning damage.The creature is restrained by webbing. As an action, the restrained creature can make a Strength check, escaping from the webbing on a success. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":11,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"flags":{},"img":"icons/creatures/webs/web-spider-glowing-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234585,"modifiedTime":1672336130965,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"iCae1IDxHvRmjEgi","name":"Heart Sight","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} touches a creature and magically knows the creature's current emotional state. If the target fails a DC 10 Charisma saving throw, the {creature} also knows the creature's alignment. Celestials, fiends, and undead automatically fail the saving throw.The {creature} touches a creature. target must make a Charisma saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234586,"modifiedTime":1672335615271,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"iDem2vV36tRkZUx0","name":"Probing Telepathy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"If a creature communicates telepathically with the {creature}, the {creature} learns the creature's greatest desires if the {creature} can see the creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234586,"modifiedTime":1672336043865,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"iFNpsEMJT66eLoat","name":"Heated Body","ownership":{"default":0},"type":"feat","system":{"description":{"value":"A creature that touches the {creature} or hits it with a melee attack while within 5 feet of it takes 5 (1d10) fire damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/earth/volcano-explosion-lava-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234587,"modifiedTime":1672335909941,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"iHOaiOqwUWIfCljJ","name":"Cold Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\n**Cold Breath.** The {type} exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 20 Constitution saving throw, taking 58 (13d8) cold damage on a failed save, or half as much damage on a successful one.\n\nThe {type} exhales an icy blast in a 60-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":20,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234587,"modifiedTime":1672335510515,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"iQGaWIinmYFPRF94","name":"Variable Illumination","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} sheds bright light in a 5- to 20-foot radius and dim light for an additional number of ft. equal to the chosen radius. The {creature} can alter the radius as a bonus action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-star-glow-blue-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234588,"modifiedTime":1672336149760,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"iVOxckt9448v7Ho5","name":"Tail Spike Regrowth","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has twenty-four tail spikes. Used spikes regrow when the {creature} finishes a long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":24,"max":"24","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/wolf-shadow-black.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234588,"modifiedTime":1672336207186,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ihWvcWsnfqW2HFlA","name":"Spores","ownership":{"default":0},"type":"feat","system":{"description":{"value":"A 15-foot-radius cloud of toxic spores extends out from the {creature}. The spores spread around corners. Each creature in that area must succeed on a DC 14 Constitution saving throw or become poisoned. While poisoned in this way, a target takes 5 (1d10) poison damage at the start of each of its turns. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Emptying a vial of holy water on the target also ends the effect on it.A 15-foot-radius cloud of toxic spores extends out from the {creature}. The spores spread around corners. Each creature in that area must make a Constitution saving throw. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"flags":{},"img":"icons/magic/earth/orb-stone-smoke-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234588,"modifiedTime":1672336238832,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"iq0J225DCbHYU2hU","name":"Draining Kiss","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} kisses a creature charmed by it or a willing creature. The target must make a DC 15 Constitution saving throw against this magic, taking 32 (5d10 + 5) psychic damage on a failed save, or half as much damage on a successful one.The target's hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n\nThe target must make a Constitution saving throw against this magic.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-vortex-swirl-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234589,"modifiedTime":1672335715817,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"j1cPfWFNvxGoex9Z","name":"Stone Camouflage","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on Dexterity (Stealth) checks made to hide in rocky terrain.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/environment/settlement/stone-stairs.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234589,"modifiedTime":1672336229022,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"j6F0v4guYhRYWddT","name":"Animate Trees","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} magically animates one or two trees it can see within 60 feet of it. These trees have the same statistics as a {creature}, except they have Intelligence and Charisma scores of 1, they can't speak, and they have only the Slam action option. An animated tree acts as an ally of the {creature}. The tree remains animate for 1 day or until it dies; until the {creature} dies or is more than 120 feet from the tree; or until the {creature} takes a bonus action to turn it back into an inanimate tree. The tree then takes root if possible.The {creature} magically animates one or two trees it can see within 60 feet of it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/tree-spirit-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234590,"modifiedTime":1672335420956,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"jZgeHxCR8pF6FOmQ","name":"Enlarge","ownership":{"default":0},"type":"feat","system":{"description":{"value":"For 1 minute, the {creature} magically increases in size, along with anything it is wearing or carrying. While enlarged, the {creature} is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the {creature} lacks the room to become Large, it attains the maximum size possible in the space available.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"flags":{},"img":"icons/magic/control/energy-stream-link-large-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234591,"modifiedTime":1672335699110,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"jhAU6pb5GvbjwTX7","name":"Darkness Aura","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nA 15-foot radius of magical darkness extends out from the {creature}, moves with it, and spreads around corners. The darkness lasts as long as the {creature} maintains concentration, up to 10 minutes (as if concentrating on a spell).Darkvision can't penetrate this darkness, and no natural light can illuminate it. If any of the darkness overlaps with an area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled.\n\nA 15-foot radius of magical darkness extends out from the {creature}, moves with it, and spreads around corners. Darkvision can't penetrate this darkness, and no natural light can illuminate it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234591,"modifiedTime":1672335486969,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"jnKOUieu2UO1xHhT","name":"Snow Camouflage","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on Dexterity (Stealth) checks made to hide in snowy terrain.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/barrier-ice-crystal-wall-faceted.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234592,"modifiedTime":1672336279539,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kP9t6MAeUvBBmoM3","name":"Grappler","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on attack rolls against any creature grappled by it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234592,"modifiedTime":1672335628507,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kSgBb9r1TCfDIMY0","name":"Spell Storing","ownership":{"default":0},"type":"feat","system":{"description":{"value":"A spellcaster who wears the {creature}'s amulet can cause the {creature} to store one spell of 4th level or lower. To do so, the wearer must cast the spell on the {creature}. The spell has no effect but is stored within the {creature}. When commanded to do so by the wearer or when a situation arises that was predefined by the spellcaster, the {creature} casts the stored spell with any parameters set by the original caster, requiring no components. When the spell is cast or a new spell is stored, any previously stored spell is lost.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/shield-barrier-blades-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234593,"modifiedTime":1672336247267,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kZpl32DBmqxlRegX","name":"Acid Spray","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} spits acid in a line that is 30 ft. long and 5 ft. wide, provided that it has no creature grappled.Each creature in that line must make a DC 13 Dexterity saving throw, taking 10 (3d6) acid damage on a failed save, or half as much damage on a successful one.\n\nThe {creature} spits acid in a line that is 30 ft. long and 5 ft. wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"flags":{},"img":"icons/magic/acid/projectile-smoke-glowing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234593,"modifiedTime":1672335444093,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kfi26Jy0VLXv9TTm","name":"Parry","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} adds 2 to its AC against one melee attack that would hit it. To do so, the {creature} must see the attacker and be wielding a melee weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234594,"modifiedTime":1672336059573,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kjF0btAMYHUAQgOt","name":"Web Sense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While in contact with a web, the {creature} knows the exact location of any other creature in contact with the same web.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/debuff-chains-ropes-net-white.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234594,"modifiedTime":1672336128334,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kyVgQNSa12loxVvr","name":"False Appearance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While the {creature} remains motionless, it is indistinguishable from a normal suit of armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/stealth-hide-eyes-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234595,"modifiedTime":1672335677470,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lBN86BToCJgkakL3","name":"Horrifying Visage","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Each non-{type} creature within 60 ft. of the {creature} that can see it must succeed on a DC 13 Wisdom saving throw or be frightened for 1 minute. If the save fails by 5 or more, the target also ages 1d4 x 10 years. A frightened target can repeat the saving throw at the end of each of its turns, ending the frightened condition on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this {creature}'s Horrifying Visage for the next 24 hours. The aging effect can be reversed with a greater restoration spell, but only within 24 hours of it occurring.Each non-{type} creature within 60 ft. of the {creature} that can see it must succeed make a Wisdom saving throw. A target can repeat the saving throw at the end of each of its turns, ending the condition on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/projectile-skull-fire-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234596,"modifiedTime":1672335893253,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lOJK48AtlIcfYPPB","name":"Divine Awareness","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} knows if it hears a lie.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/third-eye-blue-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234596,"modifiedTime":1672335720614,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lVrnjqBrv90VH96d","name":"Divine Eminence","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As a bonus action, the {creature} can expend a spell slot to cause its melee weapon attacks to magically deal an extra 10 (3d6) radiant damage to a target on a hit. This benefit lasts until the end of the turn. If the {creature} expends a spell slot of 2nd level or higher, the extra damage increases by 1d6 for each level above 1st.As a bonus action, the {creature} can expend a spell slot to cause its melee weapon attacks to magically deal an extra radiant damage to a target on a hit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":"1d6"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/symbols/cog-shield-white-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234597,"modifiedTime":1672335718280,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lWnUAwBPfJf9WupM","name":"Second Roar","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Each creature that fails a DC 18 Wisdom saving throw is deafened and frightened for 1 minute. A frightened creature is paralyzed and can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/sonic/scream-wail-shout-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234597,"modifiedTime":1672335989726,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lhTQJsLKYUZT2gV5","name":"Reactive","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can take one reaction on every turn in combat.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/symbols/rune-sigil-black-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234598,"modifiedTime":1672336034357,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lwC6jwy9bXberyWo","name":"Hold Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can hold its breath for 15 minutes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/pseudopod-swirl-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234598,"modifiedTime":1672335901417,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"m0FA3UM62hlTPVSA","name":"Freeze","ownership":{"default":0},"type":"feat","system":{"description":{"value":"If the {type} takes cold damage, it partially freezes; its speed is reduced by 20 ft. until the end of its next turn.If the {type} takes cold damage, it partially freezes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/ice-crystal-white.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234599,"modifiedTime":1672335643328,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"mUwZfxiOyao1Xuxt","name":"Beast of Burden","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} is considered to be a Large animal for the purpose of determining its carrying capacity.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234599,"modifiedTime":1672335567763,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"miIjsa984tZ0Mil6","name":"Reactive Heads","ownership":{"default":0},"type":"feat","system":{"description":{"value":"For each head the {creature} has beyond one, it gets an extra reaction that can be used only for opportunity attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/skull-trio-badge-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234600,"modifiedTime":1672336032103,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nJHx2fudYhZeexDP","name":"Sure-Footed","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on Strength and Dexterity saving throws made against effects that would knock it prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/commodities/bones/hooves-cloven-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234600,"modifiedTime":1672336217894,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nKpLMXS9E10TSGhU","name":"Tentacles","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nOne creature grappled by the {creature} must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute.Until this poison ends, the target is paralyzed. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nOne creature grappled by the {creature} must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/tentacles/tentacles-thing-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234601,"modifiedTime":1672336189563,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nUVFUgyKK7fmQaFh","name":"Shadow Stealth","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While in dim light or darkness, the {creature} can take the Hide action as a bonus action.The {creature} can take the Hide action as a bonus action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":"In dim light or darkness"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/humanoid-cat-skulking-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234601,"modifiedTime":1672335985051,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nahRRxck9R5GVVFS","name":"Magic Weapons","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature}'s weapon attacks are magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/weapons/swords/sword-runed-glowing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234602,"modifiedTime":1672335819457,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nb6zOmwIIJBLz4iT","name":"Frightful Presence","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Each creature of the {type}'s choice that is within 120 feet of the {type} and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the {type}'s Frightful Presence for the next 24 hours.Each creature of the {type}'s choice that is within 120 feet of the {type} and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234602,"modifiedTime":1672335638732,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"net3yBKQoxl8bZ4r","name":"Death Burst","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nWhen the {creature} dies, it explodes in a burst of dust. Each creature within 5 ft. of it must then succeed on a DC 10 Constitution saving throw or be blinded for 1 minute. A blinded creature can repeat the saving throw on each of its turns, ending the effect on itself on a success.\n\nWhen the {creature} dies, it explodes in a burst of dust. Each creature within 5 ft. of it must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":"on death"},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":10,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-star-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234603,"modifiedTime":1672335737084,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"o8G8BNPJOWoCKzR5","name":"Death Glare","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} targets one frightened creature she can see within 30 ft. of her. If the target can see the {creature}, it must succeed on a DC 11 Wisdom saving throw against this magic or drop to 0 hit points.\n\nThe {creature} targets one frightened creature she can see within 30 ft. of her. If the target can see the {creature}, it must make a Wisdom saving throw against this magic.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/death/skull-humanoid-worn-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234604,"modifiedTime":1672335734961,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ocmSrMY2NX3e43uN","name":"Whirlwind","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nEach creature in the {type}'s space must make a DC 13 Strength saving throw. On a failure, a target takes 15 (3d8 + 2) bludgeoning damage and is flung up 20 feet away from the {type} in a random direction and knocked prone.If a thrown target strikes an object, such as a wall or floor, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 13 Dexterity saving throw or take the same damage and be knocked prone. If the saving throw is successful, the target takes half the bludgeoning damage and isn't flung away or knocked prone.\n\nEach creature in the {type}'s space must make a Strength saving throw. On a failure, a target is flung up 20 feet away from the {type} in a random direction and knocked prone. If the target is thrown at another creature, that creature must make a Dexterity saving throw or take the same damage and be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":4,"charged":true}},"flags":{},"img":"icons/magic/air/wind-tornado-cyclone-white.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234605,"modifiedTime":1672336120552,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"of2dTSnPwmhR52O7","name":"Reaping Scythe","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} sweeps its spectral scythe through a creature within 5 feet of it, dealing 7 (1d8 + 3) slashing damage plus 4 (1d8) necrotic damage.\n\nThe {creature} sweeps its spectral scythe through a creature within 5 feet of it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/strike-scythe-fire-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234605,"modifiedTime":1672336025257,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"oi1sikVSw463lQlp","name":"Turn Defiance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} and any ghouls within 30 ft. of it have advantage on saving throws against effects that turn undead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/dragon-breath-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234606,"modifiedTime":1672336174051,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"q8w1UF9woZDGIwvS","name":"Brute","ownership":{"default":0},"type":"feat","system":{"description":{"value":"A melee weapon deals one extra die of its damage when the {creature} hits with it (included in the attack).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234606,"modifiedTime":1672335531878,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qfWKOH5AawhmNSwl","name":"Intoxicating Touch","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nMelee Spell Attack:+5 to hit, reach 5 ft., one creature. Hit: The target is magically cursed for 1 hour. Until the curse ends, the target has disadvantage on Wisdom saving throws and all ability checks.\n\nThe target has disadvantage on Wisdom saving throws and all ability checks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/beam-hand-leaves-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234607,"modifiedTime":1672335867022,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"r2nM5I77LnSvkLvD","name":"Consume Life","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As a bonus action, the {creature} can target one creature it can see within 5 ft. of it that has 0 hit points and is still alive. The target must succeed on a DC 10 Constitution saving throw against this magic or die. If the target dies, the {creature} regains 10 (3d6) hit points.The {creature} can target one creature it can see within 5 ft. The target must succeed on a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/life/heart-glowing-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234607,"modifiedTime":1672335506336,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"r3Ugp8f5Ckw2EUHL","name":"Healing Touch","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} touches another creature. The target magically regains 20 (4d8 + 2) hit points and is freed from any curse, disease, poison, blindness, or deafness.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-star-glow-blue-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234608,"modifiedTime":1672335617695,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"r9aMLZ7F3gSRLgRr","name":"Turn Resistance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on saving throws against any effects that turn undead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/flame-burning-creature-skeleton.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234608,"modifiedTime":1672336168716,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rDoNJnKdY47x8MD4","name":"Etherealness","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/barrier-shield-glowing-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234609,"modifiedTime":1672335683807,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rUongiWD51ZopRk2","name":"Echolocation","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can't use its blindsight while deafened.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"Bat","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234609,"modifiedTime":1672335705674,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"re3oXQ3Xg4Z3Fr6O","name":"Hooves","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} makes one attack with its hooves.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":null,"amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/commodities/bones/hooves-cloven-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234610,"modifiedTime":1672335898349,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"s7kqggp9VLDb39nu","name":"Illusory Appearance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} covers herself and anything she is wearing or carrying with a magical illusion that makes her look like another creature of her general size and humanoid shape. The illusion ends if the {creature} takes a bonus action to end it or if she dies.The changes wrought by this effect fail to hold up to physical inspection. For example, the {creature} could appear to have smooth skin, but someone touching her would feel her rough flesh. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 20 Intelligence (Investigation) check to discern that the {creature} is disguised.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/humanoid-cat-skulking-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234610,"modifiedTime":1672335880972,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"sMgKJtbCLNSX7V80","name":"Whelm","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Each creature in the {type}'s space must make a DC 15 Strength saving throw. On a failure, a target takes 13 (2d8 + 4) bludgeoning damage. If it is Large or smaller, it is also grappled (escape DC 14). Until this grapple ends, the target is restrained and unable to breathe unless it can breathe water. If the saving throw is successful, the target is pushed out of the {type}'s space.The {type} can grapple one Large creature or up to two Medium or smaller creatures at one time. At the start of each of the {type}'s turns, each target grappled by it takes 13 (2d8 + 4) bludgeoning damage. A creature within 5 feet of the {type} can pull a creature or object out of it by taking an action to make a DC 14 Strength check and succeeding.Each creature in the {type}'s space must make a Strength saving throw. If it is Large or smaller, it is also grappled. Until this grapple ends, the target is restrained and unable to breathe unless it can breathe water. A creature within 5 feet of the {type} can pull a creature or object out of it by taking an action to make a Strength check and succeeding.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":14,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":4,"charged":true}},"flags":{},"img":"icons/magic/water/vortex-water-whirlpool.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234611,"modifiedTime":1672336123041,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"t0ojYPOlKEbPpYNc","name":"Phantasms","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} magically creates three illusory duplicates of itself if it isn't in bright light. The duplicates move with it and mimic its actions, shifting position so as to make it impossible to track which {creature} is the real one. If the {creature} is ever in an area of bright light, the duplicates disappear.Whenever any creature targets the {creature} with an attack or a harmful spell while a duplicate remains, that creature rolls randomly to determine whether it targets the {creature} or one of the duplicates. A creature is unaffected by this magical effect if it can't see or if it relies on senses other than sight.A duplicate has the {creature}'s AC and uses its saving throws. If an attack hits a duplicate, or if a duplicate fails a saving throw against an effect that deals damage, the duplicate disappears.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234611,"modifiedTime":1672336053064,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"tHvaJB8tXSriVXRm","name":"Blinding Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} exhales a 15-foot cone of blinding dust.Each creature in that area must succeed on a DC 10 Dexterity saving throw or be blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe {creature} exhales a 15-foot cone of blinding dust. Each creature in that area must make a Dexterity saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":10,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"flags":{},"img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234612,"modifiedTime":1672335553304,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"terEuqr148hQBkIq","name":"Legendary Actions","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The {creature} regains spent legendary actions at the start of its turn.\n\nThe {creature} can take 3 legendary actions.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/hand-sparks-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234612,"modifiedTime":1672335848580,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"twrIaUZ79Yn5qpML","name":"Bound","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} is magically bound to an amulet. As long as the {creature} and its amulet are on the same plane of existence, the amulet's wearer can telepathically call the {creature} to travel to it, and the {creature} knows the distance and direction to the amulet.If the {creature} is within 60 feet of the amulet's wearer, half of any damage the wearer takes (rounded up) is transferred to the {creature}.\n\nThe {creature} is magically bound to an amulet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/equipment/neck/choker-chain-thick-silver.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234613,"modifiedTime":1672335540865,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"u1Tt4l4Mczgt3wOS","name":"Sunlight Weakness","ownership":{"default":0},"type":"feat","system":{"description":{"value":"While in sunlight, the {creature} has disadvantage on attack rolls, ability checks, and saving throws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/time/day-night-sunset-sunrise.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234613,"modifiedTime":1672336220283,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"uEYSTOkpfr0OkKrD","name":"Unnerving Mask","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nWhen a creature the {type} can see starts its turn within 30 feet of the {type}, the {type} can create the illusion that it looks like one of the creature's departed loved ones or bitter enemies. If the creature can see the {type}, it must succeed on a DC 14 Wisdom saving throw or be Frightened until the end of its turn.\n\nThe {type} can create the illusion that it looks like one of the creature's departed loved ones or bitter enemies. Make a Wisdom saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/life/heart-shadow-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234614,"modifiedTime":1672336155418,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"uqoqQJ9NpMCPra6P","name":"Hellish Weapons","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature}'s weapon attacks are magical and deal an extra 13 (3d8) poison damage on a hit (included in the attacks).\n\nThe {creature}'s weapon attacks are magical and deal extra poison damage on a hit (included in the attacks).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/weapons/axes/axe-battle-eyes-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234614,"modifiedTime":1672335903792,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"uxFQ3TxO3isW5WKK","name":"Aversion of Fire","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nIf the {creature} takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn.\n\nIf the {creature} takes fire damage, it has disadvantage on some rolls.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/projectile-wave-arrow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234615,"modifiedTime":1672335411545,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"w5mFTTFsdKC7TXgg","name":"Read Thoughts","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} magically reads the surface thoughts of one creature within 60 ft. of it. The effect can penetrate barriers, but 3 ft. of wood or dirt, 2 ft. of stone, 2 inches of metal, or a thin sheet of lead blocks it.While the target is in range, the {creature} can continue reading its thoughts, as long as the {creature}'s concentration isn't broken (as if concentrating on a spell). While reading the target's mind, the {creature} has advantage on Wisdom (Insight) and Charisma (Deception, Intimidation, and Persuasion) checks against the target.\n\nThe {creature} magically reads the surface thoughts of one creature within 60 ft. of it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/hypnosis-mesmerism-watch.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234615,"modifiedTime":1672336027874,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"wkIN7WTeX8ebbjtv","name":"Petrifying Gaze","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nIf a creature starts its turn within 30 ft. of the {creature} and the two of them can see each other, the {creature} can force the creature to make a DC 12 Constitution saving throw if the {creature} isn't incapacitated. On a failed save, the creature magically begins to turn to stone and is restrained. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is petrified until freed by the greater restoration spell or other magic.A creature that isn't surprised can avert its eyes to avoid the saving throw at the start of its turn. If it does so, it can't see the {creature} until the start of its next turn, when it can avert its eyes again. If it looks at the {creature} in the meantime, it must immediately make the save. If the {creature} sees its reflection within 30 ft. of it in bright light, it mistakes itself for a rival and targets itself with its gaze.\n\nThe {creature} can force the creature to make a Constitution saving throw. It must repeat the saving throw at the end of its next turn. A creature that isn't surprised can avert its eyes to avoid the saving throw at the start of its turn. If it does so, it can't see the {creature} until the start of its next turn, when it can avert its eyes again. If it looks at the {creature} in the meantime, it must immediately make the save.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":12,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234615,"modifiedTime":1672336055212,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"wzgGJyVFGIcj1XAb","name":"Confer Fire Resistance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can grant resistance to fire damage to anyone riding it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/explosion-mushroom-nuke-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234616,"modifiedTime":1672335508712,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xOgrn5QXzSP4QN6V","name":"Evasion","ownership":{"default":0},"type":"feat","system":{"description":{"value":"If the {creature} is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, the {creature} instead takes no damage if it succeeds on the saving throw, and only half damage if it fails.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/pseudopod-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234617,"modifiedTime":1672335680206,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xmXYBevj0kuPa3Fo","name":"Petrifying Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} exhales petrifying gas in a 30-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw. On a failed save, a target begins to turn to stone and is restrained. The restrained target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is petrified until freed by the greater restoration spell or other magic.The {creature} exhales petrifying gas in a 30-foot cone. Each creature in that area must make a Constitution saving throw. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"perm"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"flags":{},"img":"icons/magic/air/fog-gas-smoke-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234617,"modifiedTime":1672336057332,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xna3UTd4EFLCZMt9","name":"Limited Telepathy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} can magically transmit simple messages and images to any creature within 120 ft. of it that can understand a language. This form of telepathy doesn't allow the receiving creature to telepathically respond.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234618,"modifiedTime":1672335827087,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"y18y37F8ppFLGuLb","name":"Tentacle Disease","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nAfter 1 minute, the diseased creature's skin becomes translucent and slimy, the creature can't regain hit points unless it is underwater, and the disease can be removed only by heal or another disease-curing spell of 6th level or higher. When the creature is outside a body of water, it takes 6 (1d12) acid damage every 10 minutes unless moisture is applied to the skin before 10 minutes have passed.\n\nYou feel a surging pain rushing through your body!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/acid/projectile-glowing-bubbles.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234621,"modifiedTime":1672336195967,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"yD51x4dihnbHwfsj","name":"Trampling Charge","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nIf the {creature} moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a DC 12 Strength saving throw or be knocked prone. If the target is prone, the {creature} can make one stomp attack against it as a bonus action.\n\nIf the {creature} moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":12,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/cougar-pounce-stalk-black.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234621,"modifiedTime":1672336184983,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"yHcr3vlkmtInELj2","name":"Shield","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When a creature makes an Attack against the wearer of the {creature}'s Amulet, the {creature} grants a +2 bonus to the wearer's AC if the {creature} is within 5 feet of the wearer.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/equipment/shield/oval-wooden-boss-steel.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234622,"modifiedTime":1672336298878,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ykoo88OJOdfYH7mH","name":"Charm","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nOne humanoid the {creature} can see within 30 feet of it must make a Wisdom saving throw or be magically charmed for 1 day. The charmed target obeys the {creature}'s verbal or telepathic commands.If the target suffers any harm or receives a suicidal command, it can repeat the saving throw, ending the effect on a success. If the target successfully saves against the effect, or if the effect on it ends, the target is immune to this {creature}'s Charm for the next 24 hours. The {creature} can have only one target charmed at a time. If it charms another, the effect on the previous target ends.\n\nOne humanoid the {creature} can see within 30 feet of it must make a Wisdom saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"day"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-tornado-spiral-pink-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234622,"modifiedTime":1672335520716,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"yrpqazOHqI4BrYW4","name":"Earth Glide","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {type} can burrow through nonmagical, unworked earth and stone. While doing so, the {type} doesn't disturb the material it moves through.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234622,"modifiedTime":1672335708064,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zITrVwmnPpLoBZI1","name":"Web Walker","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} ignores movement restrictions caused by webbing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/tree-bare-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234623,"modifiedTime":1672336126229,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zRDERBe0lMbwyGwN","name":"Repulsion Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\n**Repulsion Breath.** The {type} exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 19 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the {type}.\n\nThe {type} exhales repulsion energy in a 30-foot cone. Each creature in that area must make a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":19,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/air-wave-gust-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234625,"modifiedTime":1672336006385,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zSBlyP5Vm1CAV5VO","name":"Two-Headed","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {creature} has advantage on Wisdom (Perception) checks and on saving throws against being blinded, charmed, deafened, frightened, stunned, or knocked unconscious.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234626,"modifiedTime":1672336164323,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zZkNtL97hn1P6OJC","name":"Mimicry","ownership":{"default":0},"type":"feat","system":{"description":{"value":"\nThe {creature} can mimic animal sounds and humanoid voices. A creature that hears the sounds can tell they are imitations with a successful DC 14 Wisdom (Insight) check.\n\nThe {creature} can mimic animal sounds and humanoid voices. A creature that hears the sounds can tell they are imitations with a successful Wisdom (Insight) check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/birds/corvid-flying-wings-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234626,"modifiedTime":1672335814707,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zg0RZmAncKJqIpax","name":"Martial Advantage","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Once per turn, the {creature} can deal an extra 7 (2d6) damage to a creature it hits with a weapon attack if that creature is within 5 ft. of an ally of the {creature} that isn't incapacitated.Once per turn, the {creature} can deal extra damage to a creature it hits with a weapon attack if that creature is within 5 ft. of an ally of the {creature} that isn't incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234627,"modifiedTime":1672335817491,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zjcGly9P3Gn9MXt7","name":"Acid Breath","ownership":{"default":0},"type":"feat","system":{"description":{"value":"The {type} exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.The {type} exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"flat"},"type":{"value":"monster","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"flags":{},"img":"icons/magic/acid/projectile-smoke-glowing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234636,"modifiedTime":1672335453831,"lastModifiedBy":"dnd5ebuilder0000"}} diff --git a/packs/monsters.db b/packs/monsters.db index 516c6db1fc..5af7fe1b11 100644 --- a/packs/monsters.db +++ b/packs/monsters.db @@ -1,324 +1,324 @@ -{"_id":"0m8QyDN52qw9zzOM","name":"Gargoyle","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":52,"min":0,"max":52,"temp":null,"tempmax":0,"formula":"7d8 + 21"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":["ada","mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["exhaustion","petrified","poisoned"],"custom":""},"languages":{"value":["terran"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Gargoyle","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"sXPmgYwYgosoytUu","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the gargoyle remains motion less, it is indistinguishable from an inanimate statue.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yczO5JpGxAk51Gp8","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The gargoyle makes two attacks: one with its bite and one with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"A6GBvah75Y7fGjc5","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.The Gargoyle attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ipJwA0j2zfzmq5GW","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.The Gargoyle attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232548,"modifiedTime":1672596090881,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"13K3XK2A3wwxVKLD","name":"Spy","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":27,"min":0,"max":27,"temp":0,"tempmax":0,"formula":"6d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Alignment","race":"","type":{"value":"humanoid","subtype":"Any Race","swarm":"","custom":""},"environment":"","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"any two"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":2,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Spy","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"93TfWPoMzBoaneMx","name":"Cunning Action","type":"feat","img":"icons/magic/unholy/silhouette-robe-evil-power.webp","system":{"description":{"value":"On each of its turns, the spy can use a bonus action to take the dash, disengage, or hide action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J36uxDWfbkflPV7k"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TEgU7pKAAA0f35Yw","name":"Sneak Attack","type":"feat","img":"icons/skills/melee/blade-tip-chipped-blood-red.webp","system":{"description":{"value":"The spy deals an extra 7 (2d6) damage when it hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 ft. of an ally of the spy that isn't incapacitated and the spy doesn't have disadvantage on the attack roll.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.9uKShqfuA73duQsT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NAmhPf8w89iV8CsY","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The spy makes two melee attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BhYnUUBoU3ESkl1B","name":"Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\nThe Spy attacks with their Shortsword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.osLzOwQdPtrK3rQH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"q6pfCQyaPQSw2waZ","name":"Hand Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"\nRanged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\nThe Spy attacks with their Hand Crossbow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":75,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"lgt":true,"fin":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.qaSro7kFhxD6INbZ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232550,"modifiedTime":1672596090930,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"1ES45ODWg3pCrkzv","name":"Bulette","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":94,"min":0,"max":94,"temp":0,"tempmax":0,"formula":"9d10 + 45"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":40,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":60,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Bulette","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"r4KUyv5cYwjHqNl3","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 30 (4d12 + 4) piercing damage.\nThe Bulette attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d12 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xZeM7pLE9OPzdhBY","name":"Standing Leap","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The bulette's long jump is up to 30 ft. and its high jump is up to 15 ft., with or without a running start.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.f4yvSah35ixQOswD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Keg9oouX6Vbl9tms","name":"Deadly leap","type":"feat","img":"icons/magic/fire/projectile-wave-arrow.webp","system":{"description":{"value":"\nIf the bulette jumps at least 15 ft. as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures.\nEach of those creatures must succeed on a DC 16 Strength or Dexterity saving throw (target's choice) or be knocked prone and take 14 (3d6 + 4) bludgeoning damage plus 14 (3d6 + 4) slashing damage. On a successful save, the creature takes only half the damage, isn't knocked prone, and is pushed 5 ft. out of the bulette's space into an unoccupied space of the creature's choice. If no unoccupied space is within range, the creature instead falls prone in the bulette's space.\n\nIf the bulette jumps at least 15 ft. as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures. Each of those creatures must make a Strength or Dexterity saving throw (target's choice) or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6 + @mod","bludgeoning"],["3d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":16,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bG5Z45jj4wz0N3T6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232552,"modifiedTime":1672596090980,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"1OQbxoZI5BtlB2ME","name":"Drider","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":123,"min":0,"max":123,"temp":0,"tempmax":0,"formula":"13d10 + 52"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"wis"},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":6,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["elvish","undercommon"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Drider","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"3Fnspq3GjJ5g41lM","name":"Fey Ancestry","type":"feat","img":"icons/creatures/mammals/elk-moose-marked-green.webp","system":{"description":{"value":"The drider has advantage on saving throws against being charmed, and magic can't put the drider to sleep.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LvSBjRKoCAKaAnQy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uRaC62ut3Hk63e7m","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The drider's innate spellcasting ability is Wisdom (spell save DC 13). The drider can innately cast the following spells, requiring no material components:\nAt will: dancing lights\n1/day each: darkness, faerie fire","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3wBoA7GvO2fw1Qnu","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The drider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tnQSw6SXTbUKi6vN","name":"Sunlight Sensitivity","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"While in sunlight, the drider has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.F14aW2Ke3I5ZtSg4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4fZJqIbZDoAx8Yix","name":"Web Walker","type":"feat","img":"icons/magic/nature/tree-bare-glow-yellow.webp","system":{"description":{"value":"The drider ignores movement restrictions caused by webbing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zITrVwmnPpLoBZI1"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ThVO3VFsGgg3GLc5","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The drider makes three attacks, either with its longsword or its longbow. It can replace one of those attacks with a bite attack.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rUvv8Vnh7XbqbCLd","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one creature. Hit: 2 (1d4) piercing damage plus 9 (2d8) poison damage.\nThe Drider attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","piercing"],["2d8","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xqwxVn28J0zx8Y7H","name":"Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\nThe Drider attacks with its Longsword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3XAtYmmaED1rxaaE","name":"Longbow","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"\nRanged Weapon Attack: +6 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) poison damage.\nThe Drider attacks with its Longbow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"],["1d8","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3cymOVja8jXbzrdT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CAxSzHWizrafT033","name":"Dancing Lights","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create up to four torch-sized lights within range, making them appear as torches, lanterns, or glowing orbs that hover in the air for the duration. You can also combine the four lights into one glowing vaguely humanoid form of Medium size. Whichever form you choose, each light sheds dim light in a 10-foot radius.As a bonus action on your turn, you can move the lights up to 60 feet to a new spot within range. A light must be within 20 feet of another light created by this spell, and a light winks out if it exceeds the spell's range.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of phosphorus or wychwood, or a glowworm","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.CAxSzHWizrafT033"}},"img":"icons/magic/fire/projectile-meteor-salvo-strong-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234094,"modifiedTime":1661791115983,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"S7VbUetIfVT7B6Eq","name":"Darkness","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Magical darkness spreads from a point you choose within range to fill a 15-foot-radius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and nonmagical light can't illuminate it.If the point you choose is on an object you are holding or one that isn't being worn or carried, the darkness emanates from the object and moves with it. Completely covering the source of the darkness with an opaque object, such as a bowl or a helm, blocks the darkness.If any of this spell's area overlaps with an area of light created by a spell of 2nd level or lower, the spell that created the light is dispelled.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Bat fur and a drop of pitch or piece of coal","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.S7VbUetIfVT7B6Eq"}},"img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234139,"modifiedTime":1661791115984,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"nqBDWkVOfcGZt4YU","name":"Faerie Fire","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Each object in a 20-foot cube within range is outlined in blue, green, or violet light (your choice). Any creature in the area when the spell is cast is also outlined in light if it fails a Dexterity saving throw. For the duration, objects and affected creatures shed dim light in a 10-foot radius.Any attack roll against an affected creature or object has advantage if the attacker can see it, and the affected creature or object can't benefit from being invisible.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.nqBDWkVOfcGZt4YU"}},"img":"icons/magic/fire/projectile-meteor-salvo-strong-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234222,"modifiedTime":1661791115985,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232553,"modifiedTime":1672596091083,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"1cwfYaACm5F0l4y3","name":"Merrow","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":45,"min":0,"max":45,"temp":0,"tempmax":0,"formula":"6d10 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["abyssal","aquan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Merrow","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Kxa2DcVskilkNOH9","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The merrow can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1CXV3h3U6qnpZ7cU","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The merrow makes two attacks: one with its bite and one with its claws or harpoon.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"doFYltsiw2Fgp5gn","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.The Merrow attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bbB0SMNW3l2SHEz5","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 9 (2d4 + 4) slashing damage.The Merrow attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7XgQY1kwKPuoWX7t","name":"Harpoon","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage. If the target is a Huge or smaller creature, it must succeed on a Strength contest against the merrow or be pulled up to 20 feet toward the merrow.The Merrow attacks with its Harpoon. If the target is a Huge or smaller creature, it must make a Strength contest against the merrow or be pulled up to 20 feet toward the merrow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232556,"modifiedTime":1672596091138,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"1vaBSMUfOy6JPJ14","name":"Drow","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":13,"min":0,"max":13,"temp":0,"tempmax":0,"formula":"3d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"humanoid","subtype":"Elf","swarm":"","custom":""},"environment":"Underdark","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["elvish","undercommon"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Drow","displayName":0,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Jwx7Sfs5m3RDWckF","name":"Fey Ancestry","type":"feat","img":"icons/creatures/mammals/elk-moose-marked-green.webp","system":{"description":{"value":"The drow has advantage on saving throws against being charmed, and magic can't put the drow to sleep.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LvSBjRKoCAKaAnQy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"A4OySWt5j3QXyAPW","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The drow's spellcasting ability is Charisma (spell save DC 11). It can innately cast the following spells, requiring no material components:\nAt will: dancing lights\n1/day each: darkness, faerie fire","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Up2YzkDn0uBKQj6K","name":"Sunlight Sensitivity","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.F14aW2Ke3I5ZtSg4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"G2nFsJdp1Q3gshyr","name":"Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.The Drow attacks with its Shortsword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.osLzOwQdPtrK3rQH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LqnhZjRtRqhLIFTm","name":"Hand Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.The target must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the target is also unconscious while poisoned in this way. The target wakes up if it takes damage or if another creature takes an action to shake it awake.The Drow attacks with its Hand Crossbow. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.qaSro7kFhxD6INbZ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"S684g3gtaxOsMxME","name":"Chain Shirt","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"Made of interlocking metal rings, a chain shirt is worn between layers of clothing or leather. This armor offers modest protection to the wearer's upper body and allows the sound of the rings rubbing against one another to be muffled by outer layers.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":20,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.p2zChy24ZJdVqMSH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"S7VbUetIfVT7B6Eq","name":"Darkness","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Magical darkness spreads from a point you choose within range to fill a 15-foot-radius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and nonmagical light can't illuminate it.If the point you choose is on an object you are holding or one that isn't being worn or carried, the darkness emanates from the object and moves with it. Completely covering the source of the darkness with an opaque object, such as a bowl or a helm, blocks the darkness.If any of this spell's area overlaps with an area of light created by a spell of 2nd level or lower, the spell that created the light is dispelled.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Bat fur and a drop of pitch or piece of coal","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.S7VbUetIfVT7B6Eq"}},"img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234139,"modifiedTime":1661791116009,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"nqBDWkVOfcGZt4YU","name":"Faerie Fire","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Each object in a 20-foot cube within range is outlined in blue, green, or violet light (your choice). Any creature in the area when the spell is cast is also outlined in light if it fails a Dexterity saving throw. For the duration, objects and affected creatures shed dim light in a 10-foot radius.Any attack roll against an affected creature or object has advantage if the attacker can see it, and the affected creature or object can't benefit from being invisible.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":11,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.nqBDWkVOfcGZt4YU"}},"img":"icons/magic/fire/projectile-meteor-salvo-strong-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234222,"modifiedTime":1661791116010,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"CAxSzHWizrafT033","name":"Dancing Lights","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create up to four torch-sized lights within range, making them appear as torches, lanterns, or glowing orbs that hover in the air for the duration. You can also combine the four lights into one glowing vaguely humanoid form of Medium size. Whichever form you choose, each light sheds dim light in a 10-foot radius.As a bonus action on your turn, you can move the lights up to 60 feet to a new spot within range. A light must be within 20 feet of another light created by this spell, and a light winks out if it exceeds the spell's range.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of phosphorus or wychwood, or a glowworm","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.CAxSzHWizrafT033"}},"img":"icons/magic/fire/projectile-meteor-salvo-strong-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234094,"modifiedTime":1661791116011,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232558,"modifiedTime":1672596091242,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"1zzRQps9jZdLZGqI","name":"Ice Devil","type":"npc","img":"","system":{"abilities":{"str":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":180,"min":0,"max":180,"temp":null,"tempmax":0,"formula":"19d10 + 76"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"Devil","swarm":"","custom":""},"environment":"","cr":14,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["cold","fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["infernal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ice Devil","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"DV4KS0OE541vGOtI","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 12 (2d6 + 5) piercing damage plus 10 (3d6) cold damage.The Ice Devil attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"],["3d6","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WAGF3evP6GTYDvM0","name":"Devil's Sight","type":"feat","img":"icons/magic/perception/eye-slit-pink.webp","system":{"description":{"value":"Magical darkness doesn't impede the devil's darkvision.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"IKaEdLLHwVL0s9UP","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The devil has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nCTze3rZpWcTeuYQ","name":"Wall of Ice","type":"feat","img":"icons/magic/water/barrier-ice-crystal-wall-jagged-blue.webp","system":{"description":{"value":"\nThe devil magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter.\nWhen the wall appears, each creature in its space is pushed out of it by the shortest route. The creature chooses which side of the wall to end up on, unless the creature is incapacitated. The creature then makes a DC 17 Dexterity saving throw, taking 35 (10d6) cold damage on a failed save, or half as much damage on a successful one.\nThe wall lasts for 1 minute or until the devil is incapacitated or dies. The wall can be damaged and breached; each 10-foot section has AC 5, 30 hit points, vulnerability to fire damage, and immunity to acid, cold, necrotic, poison, and psychic damage. If a section is destroyed, it leaves behind a sheet of frigid air in the space the wall occupied. Whenever a creature finishes moving through the frigid air on a turn, willingly or otherwise, the creature must make a DC 17 Constitution saving throw, taking 17 (5d6) cold damage on a failed save, or half as much damage on a successful one. The frigid air dissipates when the rest of the wall vanishes.\n\nThe devil magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter.When the wall appears, each creature in its space is pushed out of it by the shortest route. The creature chooses which side of the wall to end up on, unless the creature is incapacitated. The creature then makes a Dexterity saving throw.\nThe wall can be damaged and breached. If a section is destroyed, it leaves behind a sheet of frigid air in the space the wall occupied. Whenever a creature finishes moving through the frigid air on a turn, willingly or otherwise, the creature must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":"a solid surface it can see within 60 ft."},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"ft","type":"line"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d6","cold"]],"versatile":""},"formula":"5d6","save":{"ability":"dex","dc":17,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Kwt8YDIBHg6JO2v2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AQ551xglVn90BdwU","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nMelee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage plus 10 (3d6) cold damage.\nThe Ice Devil attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"],["3d6","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"E6iXljYXLdQyfk1l","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 10 (2d4 + 5) slashing damage plus 10 (3d6) cold damage.\nThe Ice Devil attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","slashing"],["3d6","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vLQAjoewGE5MAHn2","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The devil makes three attacks: one with its bite, one with its claws, and one with its tail.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232559,"modifiedTime":1672596091301,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"28gU50HtG8Kp7uIz","name":"Spider","type":"npc","img":"","system":{"abilities":{"str":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"1d4 - 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":20,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":30,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Spider","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"0Oap13hi3sDNwVZn","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The spider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ysV0KgiPcJOYCdMh","name":"Bite","type":"weapon","img":"icons/creatures/abilities/fang-tooth-venomous.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 1 piercing damage.The target must succeed on a DC 9 Constitution saving throw or take 2 (1d4) poison damage.The Spider attacks with its Bite. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"],["1d4","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":9,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JxuVwnSxsKwGVL0x","name":"Web Sense","type":"feat","img":"icons/magic/perception/eye-tendrils-web-purple.webp","system":{"description":{"value":"While in contact with a web, the spider knows the exact location of any other creature in contact with the same web.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kjF0btAMYHUAQgOt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GQ8a63ou7VwIGrvv","name":"Web Walker","type":"feat","img":"icons/creatures/webs/web-spider-glowing-purple.webp","system":{"description":{"value":"The spider ignores movement restrictions caused by webbing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zITrVwmnPpLoBZI1"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232561,"modifiedTime":1672596091346,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"2MZNHeOZweXAYbv1","name":"Xorn","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":22,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":73,"min":0,"max":73,"temp":null,"tempmax":0,"formula":"7d8 + 42"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":20,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":60,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["piercing","slashing"],"bypasses":["ada","mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["terran"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Xorn","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ODAa1IROPs40MUI2","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 13 (3d6 + 3) piercing damage.The Xorn attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LRjB7lk0aa4TOd16","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.The Xorn attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"a5CLV8aL4SowIich","name":"Earth Glide","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The xorn can burrow through nonmagical, unworked earth and stone. While doing so, the xorn doesn't disturb the material it moves through.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yrpqazOHqI4BrYW4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kRGZU8eMwOBt3kVd","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The xorn makes three claw attacks and one bite attack.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ryNcNrIgtkYHRKWj","name":"Stone Camouflage","type":"feat","img":"icons/environment/settlement/stone-stairs.webp","system":{"description":{"value":"The xorn has advantage on Dexterity (Stealth) checks made to hide in rocky terrain.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.j1cPfWFNvxGoex9Z"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"x6Hd2pSXy7TDwgjR","name":"Treasure Sense","type":"feat","img":"icons/skills/social/theft-pickpocket-bribery-brown.webp","system":{"description":{"value":"The xorn can pinpoint, by scent, the location of precious metals and stones, such as coins and gems, within 60 ft. of it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Enhb3XowXPMsVapw"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232563,"modifiedTime":1672596091393,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"35Y64PEFFdvQS0ra","name":"Ancient Bronze Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":29,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":27,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":22,"calc":"natural","formula":""},"hp":{"value":444,"min":0,"max":444,"temp":0,"tempmax":0,"formula":"24d20+192"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Coastal","cr":22,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"grg","di":{"value":["lightning"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Ancient Bronze Dragon","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"8ATtkPLmg7NooADy","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lxwKTlmSXPr3wkUF","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"J1T00n4aCL5ybwJS","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"17bKqeydGVM0tR6p","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+16 to hit,, 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage.The Ancient Bronze Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qd5qScYvDjNbDERs","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+16 to hit,, 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.The Ancient Bronze Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Vu2UkFmxzWB17KtN","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+16 to hit,, 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.The Ancient Bronze Dragon attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QUlBJuNL7JOevT7b","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":20,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"oVxtfa5RF6ibpTIt","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Lightning Breath.** The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.\n**Repulsion Breath.** The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 23 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"X15z14jf8Wmtjz2i","name":"Lightning Breath","type":"feat","img":"icons/magic/lightning/bolt-strike-blue.webp","system":{"description":{"value":"\n**Lightning Breath.** The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":120,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["16d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":23,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LVnd9fq9cQj7rR0Q"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"e2kQ63WuGtictHXG","name":"Repulsion Breath","type":"feat","img":"icons/magic/air/air-wave-gust-blue.webp","system":{"description":{"value":"\n**Repulsion Breath.** The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 23 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n\nThe dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must make a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":23,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zRDERBe0lMbwyGwN"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YNplj2D0sAC6OT7z","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LxYk4BFUh3Qo9b9U","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KgtmSzFoi9FmWEvj","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lUgfHIerFG9DvYSB","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 24 Dexterity saving throw or take 16 ([[/r 2d6+9]]) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":24,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"b7ej3RkphhDGh617","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uVSCMztRY9x8FkWs","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232565,"modifiedTime":1672596091491,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3UUNbGiG2Yf1ZPxM","name":"Octopus","type":"npc","img":"","system":{"abilities":{"str":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":3,"min":0,"max":3,"temp":0,"tempmax":0,"formula":"1d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":5,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":30,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Octopus","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"SLnyx0Ta2ksVM9QL","name":"Tentacles","type":"weapon","img":"icons/creatures/tentacles/tentacles-thing-green.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 1 bludgeoning damage.The target is grappled (escape DC 10). Until this grapple ends, the octopus can't use its tentacles on another target.The Octopus attacks with its Tentacles. The target is grappled . Until this grapple ends, the octopus can't use its tentacles on another target.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nKpLMXS9E10TSGhU"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TKztZERtXehbxu2q","name":"Hold Breath","type":"feat","img":"icons/magic/water/pseudopod-swirl-blue.webp","system":{"description":{"value":"While out of water, the octopus can hold its breath for 30 minutes.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lwC6jwy9bXberyWo"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ODM4yi5BKpC4Hohw","name":"Underwater Camouflage","type":"feat","img":"icons/magic/water/orb-ice-web.webp","system":{"description":{"value":"The octopus has advantage on Dexterity (Stealth) checks made while underwater.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.M9XqZZGoTKawAsCl"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LZOszBNIg9oMej4l","name":"Water Breathing","type":"feat","img":"icons/magic/water/projectile-water-ice-orb.webp","system":{"description":{"value":"The octopus can breathe only underwater.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.c4Q6NDCLJSNcNc9T"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8qYBpaA8c3BuBujY","name":"Ink Cloud","type":"feat","img":"icons/magic/unholy/orb-swirling-teal.webp","system":{"description":{"value":"A 5-foot-radius cloud of ink extends all around the octopus if it is underwater. The area is heavily obscured for 1 minute, although a significant current can disperse the ink. After releasing the ink, the octopus can use the Dash action as a bonus action.A 5-foot-radius cloud of ink extends all around the octopus if it is underwater.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bojUXmNOZ2rJVujD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232567,"modifiedTime":1672596091536,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3YwmvDupMwycWNCO","name":"Giant Crocodile","type":"npc","img":"","system":{"abilities":{"str":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":85,"min":0,"max":85,"temp":0,"tempmax":0,"formula":"9d12 + 27"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":50,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Swamp","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Crocodile","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Mgvz3Hm49kujtR0M","name":"Hold Breath","type":"feat","img":"icons/magic/water/pseudopod-swirl-blue.webp","system":{"description":{"value":"The crocodile can hold its breath for 30 minutes.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lwC6jwy9bXberyWo"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YSeYSzU3P0FooGIw","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The crocodile makes two attacks: one with its bite and one with its tail.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"u7eurp95tuW3tYGl","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 21 (3d10 + 5) piercing damage.\nThe target is grappled (escape DC 16). Until this grapple ends, the target is restrained, and the crocodile can't bite another target.\n\nThe Giant Crocodile attacks with its Bite. If successful, the target is grappled. Until this grapple ends, the target is restrained, and the crocodile can't bite another target.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VkCVMF2SvsuYWWYg","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 10 ft., one target not grappled by the crocodile. Hit: 14 (2d8 + 5) bludgeoning damage.\nIf the target is a creature, it must succeed on a DC 16 Strength saving throw or be knocked prone.\n\nThe Giant Crocodile attacks with its Tail. If the target is a creature, it must make a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":16,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232570,"modifiedTime":1672596091594,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3fzQVYQhXxCXRa2o","name":"Gelatinous Cube","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":6,"calc":"natural","formula":""},"hp":{"value":84,"min":0,"max":84,"temp":0,"tempmax":0,"formula":"8d10 + 40"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":15,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":"Blind beyond this radius"},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"ooze","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["blinded","charmed","deafened","frightened","prone","exhaustion"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Gelatinous Cube","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"m8prrQUwqGwX6Jyk","name":"Ooze Cube","type":"feat","img":"icons/magic/water/barrier-ice-water-cube.webp","system":{"description":{"value":"The cube takes up its entire space. Other creatures can enter the space, but a creature that does so is subjected to the cube's Engulf and has disadvantage on the saving throw. Creatures inside the cube can be seen but have total cover.A creature within 5 feet of the cube can take an action to pull a creature or object out of the cube. Doing so requires a successful DC 12 Strength check, and the creature making the attempt takes 10 (3d6) acid damage. The cube can hold only one Large creature or up to four Medium or smaller creatures inside it at a time.The cube takes up its entire space. Other creatures can enter the space, but a creature that does so is subjected to the cube's Engulf and has disadvantage on the saving throw. Creatures inside the cube can be seen but have total cover. A creature within 5 feet of the cube can take an action to pull a creature or object out of the cube. Doing so requires a successful Strength check.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.CvtGj6YimGuZdrhB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ISZmp6ev081hhUxT","name":"Transparent","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"Even when the cube is in plain sight, it takes a successful DC 15 Wisdom (Perception) check to spot a cube that has neither moved nor attacked. A creature that tries to enter the cube's space while unaware of the cube is surprised by the cube.Even when the cube is in plain sight, it takes a successful Wisdom (Perception) check to spot a cube that has neither moved nor attacked. A creature that tries to enter the cube's space while unaware of the cube is surprised by the cube.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.cueeLXQ3W8gKHiLq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"t2KRGzsjV4Wwp0wj","name":"Pseudopod","type":"weapon","img":"icons/creatures/slimes/slime-movement-dripping-pseudopods-green.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 10 (3d6) acid damage.The Gelatinous Cube attacks with its Pseudopod.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6PuULfBzy5vpBSFI","name":"Engulf","type":"feat","img":"icons/magic/water/pseudopod-swirl-blue.webp","system":{"description":{"value":"The cube moves up to its speed. While doing so, it can enter Large or smaller creatures' spaces. Whenever the cube enters a creature's space, the creature must make a DC 12 Dexterity saving throw.On a successful save, the creature can choose to be pushed 5 feet back or to the side of the cube. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.On a failed save, the cube enters the creature's space, and the creature takes 10 (3d6) acid damage and is engulfed. The engulfed creature can't breathe, is restrained, and takes 21 (6d6) acid damage at the start of each of the cube's turns. When the cube moves, the engulfed creature moves with it.An engulfed creature can try to escape by taking an action to make a DC 12 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the cube.Whenever the cube enters a creature's space, the creature must make a Dexterity saving throw. On a successful save, the creature can choose to be pushed 5 feet back or to the side of the cube. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","acid"]],"versatile":""},"formula":"6d6","save":{"ability":"dex","dc":12,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Eh80lkzHiEOJP8FI"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232572,"modifiedTime":1672596091639,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3o2rQBqpzjIHmrBW","name":"Erinyes","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":153,"min":0,"max":153,"temp":null,"tempmax":0,"formula":"18d8 + 72"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"Devil","swarm":"","custom":""},"environment":"","cr":12,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["infernal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Erinyes","displayName":0,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"BeB04w7ftFRDaMQ6","name":"Hellish Weapons","type":"feat","img":"icons/weapons/axes/axe-battle-eyes-red.webp","system":{"description":{"value":"\nThe erinyes's weapon attacks are magical and deal an extra 13 (3d8) poison damage on a hit (included in the attacks).\n\nThe erinyes's weapon attacks are magical and deal extra poison damage on a hit (included in the attacks).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.uqoqQJ9NpMCPra6P"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dvoOA7jzBnq2Lxza","name":"Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"Melee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage, or 9 (1d10 + 4) slashing damage if used with two hands, plus 13 (3d8) poison damage.The Erinyes attacks with its Longsword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"],["3d8","poison"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"W7sEr3m8MBrzYq2v","name":"Parry","type":"feat","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"The erinyes adds 4 to its AC against one melee Attack that would hit it. To do so, the erinyes must see the attacker and be wielding a melee weapon.The erinyes adds 4 to its AC against one melee Attack that would hit it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kfi26Jy0VLXv9TTm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WharT2ReFy2FYTG0","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The erinyes has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qO61ofcSoMF4uxk8","name":"Plate Armor","type":"equipment","img":"icons/equipment/chest/breastplate-cuirass-steel-grey.webp","system":{"description":{"value":"Plate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":65,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.OjkIqlW2UpgFcjZa"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CElneYmOXIzyfv2a","name":"Longbow","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"\nRanged Weapon Attack: +7 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 13 (3d8) poison damage.\nThe target must succeed on a DC 14 Constitution saving throw or be poisoned. The poison lasts until it is removed by the lesser restoration spell or similar magic.\n\nThe Erinyes attacks with its Longbow. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"],["3d8","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3cymOVja8jXbzrdT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Fp0Jye7Qwk8KOvH7","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The erinyes makes three attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232573,"modifiedTime":1672596091689,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3uIursokd3KdZrW3","name":"Adult White Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":22,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":22,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":200,"min":0,"max":200,"temp":0,"tempmax":0,"formula":"16d12 + 96"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":30,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Arctic","cr":13,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":["cold"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Adult White Dragon","displayName":0,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"9BSey1ZiD31ClK2C","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"542eNLhAx7XYJErk","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) cold damage.The Adult White Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["1d8","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FhUOX8awKhQrGBV0","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.The Adult White Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lQ57BVbUiVe2tJcL","name":"Cold Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d8",""]],"versatile":""},"formula":"","save":{"ability":"con","dc":19,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iHOaiOqwUWIfCljJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CwDVyMam0aPSvRyx","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nKX7IFrwLJsAsWXU","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 ft. of the dragon and aware of it must succeed on a DC 14 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FeXPnKNku7x5oGMv","name":"Ice Walk","type":"feat","img":"icons/magic/water/water-iceberg-bubbles.webp","system":{"description":{"value":"The dragon can move across and climb icy surfaces without needing to make an ability check. Additionally, difficult terrain composed of ice or snow doesn't cost it extra movement.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.YKC7pwYkJSKn1vuw"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6AiskuquLuemBSzo","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7JtKHjp4ib2tL3Qu","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2TDIeRNe4vEJPgi6","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QAzUtpWvNd9ptDjZ","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pwOLYvuj5c9fEQAH","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.The Adult White Dragon attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6HVXfjsMra3fHVLb","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dEBTjqEC02PwvqOV","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"\nThe dragon makes a tail attack.\n\nThe dragon slams its long tail against its foe!","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232575,"modifiedTime":1672596091793,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"45Z5kogZEhawX1Ey","name":"Fire Giant","type":"npc","img":"","system":{"abilities":{"str":{"value":25,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":9,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":23,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":162,"min":0,"max":162,"temp":null,"tempmax":0,"formula":"13d12 + 78"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"giant","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":9,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["giant"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Fire Giant","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"P38O0pGKUKXuYgd0","name":"Plate Armor","type":"equipment","img":"icons/equipment/chest/breastplate-cuirass-steel-grey.webp","system":{"description":{"value":"Plate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":65,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.OjkIqlW2UpgFcjZa"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vgN2DlqQtt77mxKO","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The giant makes two greatsword attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"c8b8jy3sM3Z8gxm0","name":"Greatsword","type":"weapon","img":"icons/weapons/swords/greatsword-guard-gem-blue.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 10 ft., one target. Hit: 28 (6d6 + 7) slashing damage.The Fire Giant attacks with its Greatsword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.xMkP8BmFzElcsMaR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DgNvJ2F0HSMya3hp","name":"Rock","type":"weapon","img":"icons/magic/earth/projectile-stone-ball-brown.webp","system":{"description":{"value":"Ranged Weapon Attack: +11 to hit, range 60/240 ft., one target. Hit: 29 (4d10 + 7) bludgeoning damage.The Fire Giant attacks with its Rock.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":240,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232577,"modifiedTime":1672596091842,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"4EODJbmPlpnNGVR7","name":"Deer","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":4,"min":0,"max":4,"temp":0,"tempmax":0,"formula":"1d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Deer","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"EyXnPvAdgwKZz6LT","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 2 (1d4) piercing damage.\nThe Deer attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232579,"modifiedTime":1672596091887,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"4OeZZguYgJcsZoM9","name":"Plesiosaurus","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":68,"min":0,"max":68,"temp":0,"tempmax":0,"formula":"8d10 + 24"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Plesiosaurus","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"RbcK5H5JO9EnIiCA","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 10 ft., one target. Hit: 14 (3d6 + 4) piercing damage.The Plesiosaurus attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PtGDikGuH6rHkITy","name":"Hold Breath","type":"feat","img":"icons/magic/water/pseudopod-swirl-blue.webp","system":{"description":{"value":"The plesiosaurus can hold its breath for 1 hour.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lwC6jwy9bXberyWo"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232580,"modifiedTime":1672596091924,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"4ZlUHt4xmB7GdPfk","name":"Giant Vulture","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"3d10 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"Understands Common but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Vulture","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"AB0XlPm529Z5WEyY","name":"Keen Sight and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The vulture has advantage on Wisdom (Perception) checks that rely on sight or smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"m4B7gGdnTcIHeRpH","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The vulture has advantage on an attack roll against a creature if at least one of the vulture's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5kigRXx2FSlzVUWm","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The vulture makes two attacks: one with its beak and one with its talons.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"t6TG4rgkOXBefYZQ","name":"Beak","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (2d4 + 2) piercing damage.\nThe Giant Vulture attacks with its Beak.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AXKWmB2ZU1hebo5S","name":"Talons","type":"weapon","img":"icons/creatures/claws/claw-scaled-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage.\nThe Giant Vulture attacks with its Talons.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232581,"modifiedTime":1672596091964,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"4tl0s2SnaLjkoDiI","name":"Giant Wasp","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":13,"min":0,"max":13,"temp":0,"tempmax":0,"formula":"3d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":50,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Wasp","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"L1TmhBXd2UrVxExn","name":"Sting","type":"weapon","img":"icons/creatures/abilities/fang-tooth-venomous.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 5 (1d6 + 2) piercing damage.\nThe target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but poisoned for 1 hour, even after regaining hit points, and is paralyzed while poisoned in this way.\n\nThe Giant Wasp attacks with its Sting. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"3d6"},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232583,"modifiedTime":1672596092043,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"4udpeEneFSZK9NTB","name":"Swarm of Spiders","type":"npc","img":"","system":{"abilities":{"str":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"5d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":20,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"tiny","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","grappled","paralyzed","petrified","prone","restrained","stunned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Swarm of Spiders","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"72ha7NWOEA4qIOdY","name":"Swarm","type":"feat","img":"icons/creatures/invertebrates/fly-wasp-mosquito-green.webp","system":{"description":{"value":"The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eL3OJmc4FuetizKO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qoIR278ckqhlVaNr","name":"Bites","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 0 ft., one target in the swarm's space. Hit: 10 (4d4) piercing damage, or 5 (2d4) piercing damage if the swarm has half of its hit points or fewer.\nThe Swarm of Spiders attacks with a flurry of Bites.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d4","piercing"]],"versatile":"2d4"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KYBcEhA6mh3gqPG8","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The swarm can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LPkqp4g22PENqi8b","name":"Web Sense","type":"feat","img":"icons/creatures/webs/web-spider-glowing-purple.webp","system":{"description":{"value":"While in contact with a web, the swarm knows the exact location of any other creature in contact with the same web.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kjF0btAMYHUAQgOt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KyittoVFeC2HA9By","name":"Web Walker","type":"feat","img":"icons/magic/nature/tree-bare-glow-yellow.webp","system":{"description":{"value":"The swarm ignores movement restrictions caused by webbing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zITrVwmnPpLoBZI1"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232584,"modifiedTime":1672596092092,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"55PkbskG5iBZGrgR","name":"Elk","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":13,"min":0,"max":13,"temp":0,"tempmax":0,"formula":"2d10 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Elk","displayName":0,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"slVyUWagsSZ5CXSh","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nIf the elk moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 7 (2d6) damage.\nIf the target is a creature, it must succeed on a DC 13 Strength saving throw or be knocked prone.\n\nIf the elk moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6",""]],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"05Vs3AiPgtQkX84S","name":"Ram","type":"weapon","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) bludgeoning damage.\nThe Elk attacks with its Ram.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FneLrX10GhkE2o4E","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one prone creature. Hit: 8 (2d4 + 3) bludgeoning damage.\nThe Elk attacks with its Hooves.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232586,"modifiedTime":1672596092137,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"57DofLgRQx16ARoc","name":"Lizardfolk","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":"13"},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"4d8 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"humanoid","subtype":"Lizardfolk","swarm":"","custom":""},"environment":"Forest","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Lizardfolk","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"14epJr1iwk3pnPVs","name":"Hold Breath","type":"feat","img":"icons/magic/water/pseudopod-swirl-blue.webp","system":{"description":{"value":"The lizardfolk can hold its breath for 15 minutes.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lwC6jwy9bXberyWo"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"s88qLjZemkFRnB8Y","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The lizardfolk makes two melee attacks, each one with a different weapon.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9x43sdgtqX8bOdiy","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.The Lizardfolk attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9T0RdBc0Tvsj6wJW","name":"Heavy Club","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.The Lizardfolk attacks with its Heavy Club.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bPnovVAPXO7MdagI","name":"Javelin","type":"weapon","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.The Lizardfolk attacks with its Javelin.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DWLMnODrnHn8IbAG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kZJqCMW6SxV5C0nu","name":"Spiked Shield","type":"weapon","img":"icons/equipment/shield/oval-wooden-boss-steel.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.The Lizardfolk attacks with its Spiked Shield.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sSs3hSzkKBMNBgTs","name":"Shield","type":"equipment","img":"icons/equipment/shield/oval-wooden-boss-steel.webp","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232587,"modifiedTime":1672596092185,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5P1VGAZQwOilwZQf","name":"Djinni","type":"npc","img":"","system":{"abilities":{"str":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":22,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":161,"min":0,"max":161,"temp":0,"tempmax":0,"formula":"14d10 + 84"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":90,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Coastal","cr":11,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["lightning","thunder"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["auran"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Djinni","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"fL3AlIo9kQ591fz5","name":"Elemental Demise","type":"feat","img":"icons/magic/air/air-wave-gust-smoke-yellow.webp","system":{"description":{"value":"If the djinni dies, its body disintegrates into a warm breeze, leaving behind only equipment the djinni was wearing or carrying.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WbaKH3NLA3mvylfM"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PvddSEYCJ3fSHEOr","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The djinni's innate spellcasting ability is Charisma (spell save DC 17, +9 to hit with spell attacks). It can innately cast the following spells, requiring no material components:\nAt will: detect evil and good, detect magic, thunderwave\n3/day each: create food and water (can create wine instead of water), tongues, wind walk\n1/day each: conjure elemental (air elemental only), creation, gaseous form, invisibility, major image, plane shift","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Q7JcaZkLaYQq4CE5","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The djinni makes three scimitar attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DGP7lnAJT1cv8SA4","name":"Scimitar","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage plus 3 (1d6) lightning or thunder damage (djinni's choice).The Djinni attacks with its Scimitar.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"],["1d6","lightning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.fbC0Mg1a73wdFbqO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nE7YNnVM7srBcdfl","name":"Create Whirlwind","type":"feat","img":"icons/magic/air/wind-tornado-cyclone-white.webp","system":{"description":{"value":"\nA 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the djinni can see within 120 feet of it. The whirlwind lasts as long as the djinni maintains concentration (as if concentrating on a spell).\nAny creature but the djinni that enters the whirlwind must succeed on a DC 18 Strength saving throw or be restrained by it. The djinni can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. The whirlwind ends if the djinni loses sight of it.\nA creature can use its action to free a creature restrained by the whirlwind, including itself, by succeeding on a DC 18 Strength check. If the check succeeds, the creature is no longer restrained and moves to the nearest space outside the whirlwind.\n\nA 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the djinni can see within 120 feet of it. Any creature but the djinni that enters the whirlwind must make a Strength saving throw or be restrained by it. The djinni can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. A creature can use its action to free a creature restrained by the whirlwind, including itself, by succeeding on a Strength check. If the check succeeds, the creature is no longer restrained and moves to the nearest space outside the whirlwind.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.1XeF2VMMPw7QYffo"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gr4aC1723KRzCJ5z","name":"Conjure Air Elemental","type":"spell","img":"icons/magic/symbols/runes-star-pentagon-orange.webp","system":{"description":{"value":"You call forth an air elemental servant. Choose an area of air that fills a 10-foot cube within range. An elemental of challenge rating 5 or lower appropriate to the area you chose appears in an unoccupied space within 10 feet of it. For example, a fire elemental emerges from a bonfire, and an earth elemental rises up from the ground. The elemental disappears when it drops to 0 hit points or when the spell ends.\nThe elemental is friendly to you and your companions for the duration. Roll initiative for the elemental, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the elemental, it defends itself from hostile creatures but otherwise takes no actions.\nIf your concentration is broken, the elemental doesn't disappear. Instead, you lose control of the elemental, it becomes hostile toward you and your companions, and it might attack. An uncontrolled elemental can't be dismissed by you, and it disappears 1 hour after you summoned it.\nHigher Levels. When you cast this spell using a spell slot of 6th level or higher, the challenge rating increases by 1 for each slot level above 5th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":"an area of air, earth, fire, or water that fills a 10-foot cube within range"},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"Burning incense for air, soft clay for earth, sulfur and phosphorus for fire, or water and sand for water.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Mzh95utKDPIrjiH8","name":"Detect Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Mzh95utKDPIrjiH8"}},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234128,"modifiedTime":1661791116031,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116031,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WTbOQBsarsL1LuXJ","name":"Thunderwave","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A wave of thunderous force sweeps out from you. Each creature in a 15-foot cube originating from you must make a Constitution saving throw. On a failed save, a creature takes 2d8 thunder damage and is pushed 10 feet away from you. On a successful save, the creature takes half as much damage and isn't pushed.In addition, unsecured objects that are completely within the area of effect are automatically pushed 10 feet away from you by the spell's effect, and the spell emits a thunderous boom audible out to 300 feet.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cube"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","thunder"]],"versatile":""},"formula":"","save":{"ability":"con","dc":17,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.WTbOQBsarsL1LuXJ"}},"img":"icons/magic/lightning/bolt-forked-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234152,"modifiedTime":1661791116033,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"BV0mpbHh29IbbIj5","name":"Create Food and Water","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create 45 pounds of food and 30 gallons of water on the ground or in containers within range, enough to sustain up to fifteen humanoids or five steeds for 24 hours. The food is bland but nourishing, and spoils if uneaten after 24 hours. The water is clean and doesn't go bad.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.BV0mpbHh29IbbIj5"}},"img":"icons/magic/nature/leaf-glow-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234092,"modifiedTime":1661791116033,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"gopnZvS0c2jD5FP8","name":"Tongues","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell grants the creature you touch the ability to understand any spoken language it hears. Moreover, when the target speaks, any creature that knows at least one language and can hear the target understands what it says.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"div","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small clay model of a ziggurat","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gopnZvS0c2jD5FP8"}},"img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234193,"modifiedTime":1661791116034,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"8PJAsHmbu6UgDHC0","name":"Wind Walk","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You and up to ten willing creatures you can see within range assume a gaseous form for the Duration, appearing as wisps of cloud. While in this cloud form, a creature has a flying speed of 300 feet and has resistance to damage from nonmagical weapons. The only Actions a creature can take in this form are the Dash action or to revert to its normal form. Reverting takes 1 minute, during which time a creature is Incapacitated and can't move. Until the spell ends, a creature can revert to cloud form, which also requires the 1-minute transformation.\n If a creature is in cloud form and flying when the effect ends, the creature descends 60 feet per round for 1 minute until it lands, which it does safely. If it can't land after 1 minute, the creature falls the remaining distance.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":11,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Fire and holy water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.8PJAsHmbu6UgDHC0"}},"img":"icons/magic/air/wind-swirl-gray-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234079,"modifiedTime":1661791116035,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"lnaGnxMzpYnbw1uU","name":"Creation","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You pull wisps of shadow material from the Shadowfell to create a nonliving object of vegetable matter within 'range': soft goods, rope, wood, or something similar. You can also use this spell to create mineral objects such as stone, crystal, or metal. The object created must be no larger than a 5-foot cube, and the object must be of a form and material that you have seen before.The duration depends on the object's material. If the object is composed of multiple materials, use the shortest duration.\n\nVegetable matter - 1 day\nStone or crystal - 12 hours\nPrecious metals - 1 hour\nGems - 10 minutes\nAdamantine or mithral - 1 minute\n\nUsing any material created by this spell as another spell's material component causes that spell to fail.Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the cube increases by 5 feet for each slot level above 5th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"spec"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"cube"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A tiny piece of matter of the same type of the item you plan to create.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.lnaGnxMzpYnbw1uU"}},"img":"icons/magic/nature/vines-thorned-entwined-glow-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234217,"modifiedTime":1661791116037,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"2IWiZAJtOGDoKjiz","name":"Gaseous Form","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You transform a willing creature you touch, along with everything it's wearing and carrying, into a misty cloud for the duration. The spell ends if the creature drops to 0 hit points. An incorporeal creature isn't affected.While in this form, the target's only method of movement is a flying speed of 10 feet. The target can enter and occupy the space of another creature. The target has resistance to nonmagical damage, and it has advantage on Strength, Dexterity, and Constitution saving throws. The target can pass through small holes, narrow openings, and even mere cracks, though it treats liquids as though they were solid surfaces. The target can't fall and remains hovering in the air even when stunned or otherwise incapacitated.While in the form of a misty cloud, the target can't talk or manipulate objects, and any objects it was carrying or holding can't be dropped, used, or otherwise interacted with. The target can't attack or cast spells.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of gauze and a wisp of smoke","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.2IWiZAJtOGDoKjiz"}},"img":"icons/magic/air/fog-gas-smoke-dense-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234058,"modifiedTime":1661791116037,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"1N8dDMMgZ1h1YJ3B","name":"Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An eyelash encased in gum arabic","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.1N8dDMMgZ1h1YJ3B"}},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234056,"modifiedTime":1661791116038,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"nslx2nT3p4lNkmdp","name":"Major Image","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 20-foot cube. The image appears at a spot that you can see within range and lasts for the duration. It seems completely real, including sounds, smells, and temperature appropriate to the thing depicted. You can't create sufficient heat or cold to cause damage, a sound loud enough to deal thunder damage or deafen a creature, or a smell that might sicken a creature (like a troglodyte's stench).As long as you are within range of the illusion, you can use your action to cause the image to move to any other spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking. Similarly, you can cause the illusion to make different sounds at different times, even making it carry on a conversation, for example.Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and its other sensory qualities become faint to the creature.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the spell lasts until dispelled, without requiring your concentration.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of fleece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.nslx2nT3p4lNkmdp"}},"img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234222,"modifiedTime":1661791116040,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"J6Jpw5XzB5aTeqnz","name":"Plane Shift","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You and up to eight willing creatures who link hands in a circle are transported to a different plane of existence. You can specify a target destination in general terms, such as the City of Brass on the Elemental Plane of Fire or the palace of Dispater on the second level of the Nine Hells, and you appear in or near that destination. If you are trying to reach the City of Brass, for example, you might arrive in its Street of Steel, before its Gate of Ashes, or looking at the city from across the Sea of Fire, at the DM's discretion.Alternatively, if you know the sigil sequence of a teleportation circle on another plane of existence, this spell can take you to that circle. If the teleportation circle is too small to hold all the creatures you transported, they appear in the closest unoccupied spaces next to the circle.You can use this spell to banish an unwilling creature to another plane. Choose a creature within your reach and make a melee spell attack against it. On a hit, the creature must make a Charisma saving throw. If the creature fails this save, it is transported to a random location on the plane of existence you specify. A creature so transported must find its own way back to your current plane of existence.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":8,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":17,"scaling":"spell"},"level":7,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A forked, metal rod worth at least 250 gp, attuned to a particular plane of existence","consumed":false,"cost":250,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.J6Jpw5XzB5aTeqnz"}},"img":"icons/magic/symbols/runes-star-pentagon-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234111,"modifiedTime":1661791116041,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232589,"modifiedTime":1672596092302,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5SgVGhQBswgWRwsF","name":"Nightmare","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":68,"min":0,"max":68,"temp":0,"tempmax":0,"formula":"8d10 + 24"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":90,"swim":0,"walk":60,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"fiend","subtype":"","swarm":"","custom":""},"environment":"","cr":3,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"understands Abyssal, Common, and Infernal but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Nightmare","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ez0lp4uo2fLOc5Yf","name":"Confer Fire Resistance","type":"feat","img":"icons/magic/fire/explosion-mushroom-nuke-orange.webp","system":{"description":{"value":"The nightmare can grant resistance to fire damage to anyone riding it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.wzgGJyVFGIcj1XAb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YXCQq6M3IGaLDz2M","name":"Illumination","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"The nightmare sheds bright light in a 10-foot radius and dim light for an additional 10 feet.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.F3gzBbCW7U14zkBF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lzv29dS3tAUUuVlI","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage plus 7 (2d6) fire damage.The Nightmare attacks with its Hooves.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+@mod","bludgeoning"],["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XtK73VCT1s8abvjs","name":"Ethereal Stride","type":"feat","img":"icons/magic/lightning/orb-ball-purple.webp","system":{"description":{"value":"The nightmare and up to three willing creatures within 5 feet of it magically enter the Ethereal Plane from the Material Plane, or vice versa.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.NfTCXq8eRrqjhvAo"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232592,"modifiedTime":1672596092354,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5TmstVMURpVtmNR3","name":"Half-Red Dragon Veteran","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":65,"min":0,"max":65,"temp":0,"tempmax":0,"formula":"10d8 + 20"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Alignment","race":"","type":{"value":"humanoid","subtype":"Human","swarm":"","custom":""},"environment":"","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["fire"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Half-Red Dragon Veteran","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"gMtQsYeAPMGoYGrm","name":"Plate Armor","type":"equipment","img":"icons/equipment/chest/breastplate-cuirass-steel-grey.webp","system":{"description":{"value":"Plate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":65,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.OjkIqlW2UpgFcjZa"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MTqXmkJOXkp4bFMQ","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The veteran makes two longsword attacks. If it has a shortsword drawn, it can also make a shortsword attack.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"93eWZ75LncoC5U8d","name":"Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\nThe Half-Red Dragon Veteran attacks with its Longsword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"-1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","slashing"]],"versatile":"1d10+@mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pl7hO2z20EnTaPZt","name":"Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.The Half-Red Dragon Veteran attacks with its Shortsword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"-1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":true,"fir":false,"foc":false,"hvy":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.osLzOwQdPtrK3rQH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Jt9HuwZdYUCmEH5q","name":"Heavy Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-blue.webp","system":{"description":{"value":"Ranged Weapon Attack: +3 to hit, range 100/400 ft., one target. Hit: 6 (1d10 + 1) piercing damage.The Half-Red Dragon Veteran attacks with its Heavy Crossbow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":18,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":100,"long":400,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"-1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":true,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":true,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.RmP0mYRn2J7K26rX"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"68Y4sNHbVetQN3wa","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"The veteran exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.The veteran exhales fire in a 15-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["7d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":15,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232594,"modifiedTime":1672596092397,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5kZNNWzZ6HrfKuWf","name":"Centaur","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":45,"min":0,"max":45,"temp":0,"tempmax":0,"formula":"6d10 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Good","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["elvish","sylvan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Centaur","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"uhqyN44IRWXixgxU","name":"Pike","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-stone-worn.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 10 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\nThe Centaur attacks with its Pike.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":18,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"hvy":true,"rch":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.tC0kcqZT9HHAO0PD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ICbiLFrPjwIfA1Nj","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\nThe Centaur attacks with its Hooves.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"v7ForWMLPJp1u78X","name":"Longbow","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"\nRanged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\nThe Centaur attacks with its Longbow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3cymOVja8jXbzrdT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iYlIoEDfSCrggrca","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The centaur makes two attacks: one with its pike and one with its hooves or two with its longbow.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4R48w4DH2CqCpmED","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nIf the centaur moves at least 30 ft. straight toward a target and then hits it with a pike attack on the same turn, the target takes an extra 10 (3d6) piercing damage.\nIf the centaur moves at least 30 ft. straight toward a target and then hits it with a pike attack on the same turn, the target takes extra piercing damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232596,"modifiedTime":1672596092445,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5ngbctIMeEnuC1p1","name":"Kobold","type":"npc","img":"","system":{"abilities":{"str":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":5,"min":0,"max":5,"temp":0,"tempmax":0,"formula":"2d6 - 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"humanoid","subtype":"Kobold","swarm":"","custom":""},"environment":"Forest","cr":0.125,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Kobold","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"HlRML24gXEmuamg9","name":"Sunlight Sensitivity","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.F14aW2Ke3I5ZtSg4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pZLDhUyfsObRKMpP","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The kobold has advantage on an attack roll against a creature if at least one of the kobold's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"io78wguVwNy9VfZ4","name":"Dagger","type":"weapon","img":"icons/weapons/daggers/dagger-jeweled-purple.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.The Kobold attacks with its Dagger.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":true,"fir":false,"foc":false,"hvy":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.0E565kQUBmndJ1a2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0yHcZm2TzgOyt3fI","name":"Sling","type":"weapon","img":"icons/weapons/slings/slingshot-wood.webp","system":{"description":{"value":"Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 4 (1d4 + 2) bludgeoning damage.The Kobold attacks with its Sling.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":true,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3gynWO9sN4OLGMWD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232598,"modifiedTime":1672596092492,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"68bAMIpe4jvDeR9G","name":"Storm Giant","type":"npc","img":"","system":{"abilities":{"str":{"value":29,"proficient":1,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":230,"min":0,"max":230,"temp":0,"tempmax":0,"formula":"20d12 + 100"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":50,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"giant","subtype":"","swarm":"","custom":""},"environment":"Coastal","cr":13,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":["lightning","thunder"],"bypasses":[],"custom":""},"dr":{"value":["cold"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","giant"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Storm Giant","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"PMXLrGDWGu9amL2X","name":"Scale Mail","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"This armor consists of a coat and leggings (and perhaps a separate skirt) of leather covered with overlapping pieces of metal, much like the scales of a fish. The suit includes gauntlets.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":45,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.XmnlF5fgIO3tg6TG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3vDo83oAycRGB85G","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The giant can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iwN0z7f5LF9AAbRJ","name":"Greatsword","type":"weapon","img":"icons/weapons/swords/greatsword-guard-gem-blue.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 30 (6d6 + 9) slashing damage.The Storm Giant attacks with its Greatsword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.xMkP8BmFzElcsMaR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2tzFjiAiXJLEpuCn","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The giant's innate spellcasting ability is Charisma (spell save DC 17). It can innately cast the following spells, requiring no material components:\nAt will: detect magic, feather fall, levitate, light\n3/day each: control weather, water breathing","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"k0g8uqoYdJ4LVxcn","name":"Lightning Strike","type":"weapon","img":"icons/magic/lightning/bolt-forked-blue-yellow.webp","system":{"description":{"value":"The giant hurls a magical lightning bolt at a point it can see within 500 feet of it. Each creature within 10 feet of that point must make a DC 17 Dexterity saving throw, taking 54 (12d8) lightning damage on a failed save, or half as much damage on a successful one.The Storm Giant attacks with its Lightning Strike. Each creature within 10 feet of that point must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":500,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d8","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KUffpBEiNWnVK3W6","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The giant makes two greatsword attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bRdk2uZ6iTuNGUIL","name":"Rock","type":"weapon","img":"icons/magic/earth/projectile-stone-ball-brown.webp","system":{"description":{"value":"Ranged Weapon Attack: +14 to hit, range 60/240 ft., one target. Hit: 35 (4d12 + 9) bludgeoning damage.The Storm Giant attacks with its Rock.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":240,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d12 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116062,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pub0OWVEB71XQx1n","name":"Feather Fall","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose up to five falling creatures within range. A falling creature's rate of descent slows to 60 feet per round until the spell ends. If the creature lands before the spell ends, it takes no falling damage and can land on its feet, and the spell ends for that creature.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":"which you take when you or a creature within 60 feet of you falls"},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small feather or piece of down","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.pub0OWVEB71XQx1n"}},"img":"icons/magic/air/wind-swirl-pink-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234229,"modifiedTime":1661791116064,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MRxldJd6C4bsBo3O","name":"Levitate","ownership":{"default":0},"type":"spell","system":{"description":{"value":"One creature or object of your choice that you can see within range rises vertically, up to 20 feet, and remains suspended there for the duration. The spell can levitate a target that weighs up to 500 pounds. An unwilling creature that succeeds on a Constitution saving throw is unaffected.The target can move only by pushing or pulling against a fixed object or surface within reach (such as a wall or a ceiling), which allows it to move as if it were climbing. You can change the target's altitude by up to 20 feet in either direction on your turn. If you are the target, you can move up or down as part of your move. Otherwise, you can use your action to move the target, which must remain within the spell's range.When the spell ends, the target floats gently to the ground if it is still aloft.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":17,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Either a small leather loop or a piece of golden wire bent into a cup shape with a long shank on one end","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.MRxldJd6C4bsBo3O"}},"img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234127,"modifiedTime":1661791116064,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Bnn9Nzajixvow9xi","name":"Light","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":17,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A firefly or phosphorescent moss.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Bnn9Nzajixvow9xi"}},"img":"icons/magic/light/explosion-star-small-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234093,"modifiedTime":1661791116065,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ZPd73HtKF3At11jh","name":"Control Weather","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You take control of the weather within 5 miles of you for the duration. You must be outdoors to cast this spell. Moving to a place where you don't have a clear path to the sky ends the spell early.When you cast the spell, you change the current weather conditions, which are determined by the DM based on the climate and season. You can change precipitation, temperature, and wind. It takes 1d4 x 10 minutes for the new conditions to take effect. Once they do so, you can change the conditions again. When the spell ends, the weather gradually returns to normal.When you change the weather conditions, find a current condition on the following tables and change its stage by one, up or down. When changing the wind, you can change its direction.Conditions\n\nClear\nLight clouds\nOvercast or ground fog\nRain, hail, or snow\nTorrential rain, driving hail, or blizzard\n\nTemperature\n\nUnbearable heat\nHot\nWarm\nCool\nCold\nArctic cold\n\nWind\n\nCalm\nModerate wind\nStrong wind\nGale\nStorm\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":5,"width":null,"units":"mi","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Burning incense and bits of earth and wood mixed in water.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ZPd73HtKF3At11jh"}},"img":"icons/magic/air/wind-tornado-cyclone-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234163,"modifiedTime":1661791116067,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"13uVuBQP6VaiSPvC","name":"Water Breathing","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell grants up to ten willing creatures you can see within range the ability to breathe underwater until the spell ends. Affected creatures also retain their normal mode of respiration.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A short reed or piece of straw","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.13uVuBQP6VaiSPvC"}},"img":"icons/magic/water/pseudopod-swirl-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234054,"modifiedTime":1661791116068,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232600,"modifiedTime":1672596092591,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"6oc29m5uzzzb0pk3","name":"Vrock","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":104,"min":0,"max":104,"temp":null,"tempmax":0,"formula":"11d10 + 44"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"fiend","subtype":"Demon","swarm":"","custom":""},"environment":"","cr":6,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","fire","lightning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["abyssal"],"custom":"telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Vrock","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"mViCCkDhb1mA9oO6","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The vrock has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"oWzM562ozNrlfOZe","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The vrock makes two attacks: one with its beak and one with its talons.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JwAFMjU7vHDDL2Ib","name":"Beak","type":"weapon","img":"icons/commodities/bones/beak-hooked-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.The Vrock attacks with its Beak.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"H5JJE8uS39dTI3Vg","name":"Talons","type":"weapon","img":"icons/creatures/claws/claw-scaled-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.The Vrock attacks with its Talons.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eEVWpD5omMdUkWLu","name":"Spores","type":"feat","img":"icons/magic/earth/orb-stone-smoke-teal.webp","system":{"description":{"value":"A 15-foot-radius cloud of toxic spores extends out from the vrock. The spores spread around corners. Each creature in that area must succeed on a DC 14 Constitution saving throw or become poisoned. While poisoned in this way, a target takes 5 (1d10) poison damage at the start of each of its turns. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Emptying a vial of holy water on the target also ends the effect on it.A 15-foot-radius cloud of toxic spores extends out from the vrock. The spores spread around corners. Each creature in that area must make a Constitution saving throw. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.ihWvcWsnfqW2HFlA"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ijd3GKLRlMzwoSe1","name":"Stunning Screech","type":"feat","img":"icons/skills/toxins/cup-goblet-poisoned-spilled.webp","system":{"description":{"value":"The vrock emits a horrific screech. Each creature within 20 feet of it that can hear it and that isn't a demon must succeed on a DC 14 Constitution saving throw or be stunned until the end of the vrock's next turn .The vrock emits a horrific screech. Each creature within 20 feet of it that can hear it and that isn't a demon must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.aD3HKoBnJtZL6cDj"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232602,"modifiedTime":1672596092645,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"6qnT52lZtZblgGw8","name":"Hobgoblin","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"humanoid","subtype":"Goblinoid","swarm":"","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","goblin"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Hobgoblin","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Y73kGtiKbGevpBCo","name":"Martial Advantage","type":"feat","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"Once per turn, the hobgoblin can deal an extra 7 (2d6) damage to a creature it hits with a weapon attack if that creature is within 5 ft. of an ally of the hobgoblin that isn't incapacitated.Once per turn, the hobgoblin can deal extra damage to a creature it hits with a weapon attack if that creature is within 5 ft. of an ally of the hobgoblin that isn't incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zg0RZmAncKJqIpax"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"is4wHu9FG6SPackl","name":"Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage, or 6 (1d10 + 1) slashing damage if used with two hands.\n\nThe Hobgoblin attacks with its Longsword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ahUVLSMfFY5mqJ66","name":"Longbow","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"\nRanged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n\nThe Hobgoblin attacks with its Longbow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3cymOVja8jXbzrdT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"H7NwPMCFCLtZxIh7","name":"Chain Mail","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"Made of interlocking metal rings, chain mail includes a layer of quilted fabric worn underneath the mail to prevent chafing and to cushion the impact of blows. The suit includes gauntlets.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":55,"price":{"value":75,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":13,"stealth":true,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.rLMflzmxpe8JGTOA"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sSs3hSzkKBMNBgTs","name":"Shield","type":"equipment","img":"icons/equipment/shield/oval-wooden-boss-steel.webp","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232603,"modifiedTime":1672596092699,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"6wbasdWWqtXeIAyD","name":"Gynosphinx","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":136,"min":0,"max":136,"temp":null,"tempmax":0,"formula":"16d10 + 48"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":"int"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Neutral","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":11,"spellLevel":9,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["psychic"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened"],"custom":""},"languages":{"value":["common"],"custom":"Sphinx"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":2,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":2,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":4,"override":null},"spell2":{"value":3,"override":null},"spell3":{"value":3,"override":null},"spell4":{"value":3,"override":null},"spell5":{"value":1,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":0,"max":0},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Gynosphinx","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"nt4mvfC9IXqg5p7q","name":"Inscrutable","type":"feat","img":"icons/magic/perception/third-eye-blue-red.webp","system":{"description":{"value":"The sphinx is immune to any effect that would sense its emotions or read its thoughts, as well as any divination spell that it refuses. Wisdom (Insight) checks made to ascertain the sphinx's intentions or sincerity have disadvantage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FHrFOjEfkdRm4u43"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZbjUur2xbAx0BCSv","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The sphinx's weapon attacks are magical.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kvyuqG5WztblcJXb","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"\nThe sphinx is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save DC 16, +8 to hit with spell attacks). It requires no material components to cast its spells. The sphinx has the following wizard spells prepared:\nCantrips (at will): mage hand, minor illusion, prestidigitation\n1st level (4 slots): detect magic, identify, shield\n2nd level (3 slots): darkness, locate object, suggestion\n3rd level (3 slots): dispel magic, remove curse, tongues\n4th level (3 slots): banishment, greater invisibility\n5th level (1 slot): legend lore\n\nThe sphinx is a spellcaster. Its spellcasting ability is Intelligence.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hVUH6pBt7hYD84ez","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The sphinx makes two claw attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gVFZXBtgx450yiH7","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\nThe Gynosphinx attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rH7NbL1u2RarHKKb","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe sphinx can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The sphinx regains spent legendary actions at the start of its turn.\n\nThe sphinx can take 3 legendary actions.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MlIAHfLIUfQZK5vT","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Sw2aAeas52cJ4uHZ","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7ttJw5cEHPyb5ETl","name":"Claw Attack","type":"feat","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"The sphinx makes one claw attack.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.DPrO7eVVxiKD8QWD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"udtRN8dgOiBhUuZh","name":"Teleport","type":"feat","img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","system":{"description":{"value":"The sphinx magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.PPzVD90vab60FqCt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"V0O6My4SjXUmirH6","name":"Cast a Spell","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The sphinx casts a spell from its list of prepared spells, using a spell slot as normal.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":3,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":3},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.7HPC39yg8OYshJos"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Utk1OQRwYkMkFRD3","name":"Mage Hand","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.The hand can't attack, activate magic items, or carry more than 10 pounds.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Utk1OQRwYkMkFRD3"}},"img":"icons/magic/water/water-hand.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234148,"modifiedTime":1661791116091,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"oIzA2MEHwxhtQneU","name":"Minor Illusion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a sound or an image of an object within range that lasts for the duration. The illusion also ends if you dismiss it as an action or cast this spell again.If you create a sound, its volume can range from a whisper to a scream. It can be your voice, someone else's voice, a lion's roar, a beating of drums, or any other sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends.If you create an image of an object—such as a chair, muddy footprints, or a small chest—it must be no larger than a 5-foot cube. The image can't create sound, light, smell, or any other sensory effect. Physical interaction with the image reveals it to be an illusion, because things can pass through it.If a creature uses its action to examine the sound or image, the creature can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the illusion becomes faint to the creature.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"cube"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"ill","components":{"vocal":false,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of fleece.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.oIzA2MEHwxhtQneU"}},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234224,"modifiedTime":1661791116092,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"udsLtG0BugXHR2JQ","name":"Prestidigitation","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell is a minor magical trick that novice spellcasters use for practice. You create one of the following magical effects within range:\n\nYou create an instantaneous, harmless sensory effect, such as a shower of sparks, a puff of wind, faint musical notes, or an odd odor.\nYou instantaneously light or snuff out a candle, a torch, or a small campfire.\nYou instantaneously clean or soil an object no larger than 1 cubic foot.\nYou chill, warm, or flavor up to 1 cubic foot of nonliving material for 1 hour.\nYou make a color, a small mark, or a symbol appear on an object or a surface for 1 hour.\nYou create a nonmagical trinket or an illusory image that can fit in your hand and that lasts until the end of your next turn.\n\nIf you cast this spell multiple times, you can have up to three of its non-instantaneous effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.udsLtG0BugXHR2JQ"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234236,"modifiedTime":1661791116092,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116092,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"3OZnNhunvRtPOQmH","name":"Identify","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You choose one object that you must touch throughout the casting of the spell. If it is a magic item or some other magic-imbued object, you learn its properties and how to use them, whether it requires attunement to use, and how many charges it has, if any. You learn whether any spells are affecting the item and what they are. If the item was created by a spell, you learn which spell created it.If you instead touch a creature throughout the casting, you learn what spells, if any, are currently affecting it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A pearl worth at least 100gp and an owl feather","consumed":false,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.3OZnNhunvRtPOQmH"}},"img":"icons/magic/light/explosion-star-small-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234064,"modifiedTime":1661791116093,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"z1mx84ONwkXKUZd7","name":"Shield","type":"spell","img":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","system":{"description":{"value":"An invisible barrier of magical force appears and protects you. Until the start of your next turn, you have a +5 bonus to AC, including against the triggering attack, and you take no damage from magic missile.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":"Which you take when you are hit by an attack or targeted by the magic missile spell"},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"6pbotGIvqQkraPva","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"5","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"rounds":1,"seconds":null,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","label":"Shield","origin":"Item.FlLKKv7bQBlIAs11","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.z1mx84ONwkXKUZd7"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234244,"modifiedTime":1661791116093,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"15Fa6q1nH27XfbR8","name":"Dispel Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose one creature, object, or magical effect within range. Any spell of 3rd level or lower on the target ends. For each spell of 4th level or higher on the target, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a successful check, the spell ends.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you automatically end the effects of a spell on the target if the spell's level is equal to or less than the level of the spell slot you used.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.15Fa6q1nH27XfbR8"}},"img":"icons/skills/melee/strike-blade-knife-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234054,"modifiedTime":1661791116094,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"S7VbUetIfVT7B6Eq","name":"Darkness","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Magical darkness spreads from a point you choose within range to fill a 15-foot-radius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and nonmagical light can't illuminate it.If the point you choose is on an object you are holding or one that isn't being worn or carried, the darkness emanates from the object and moves with it. Completely covering the source of the darkness with an opaque object, such as a bowl or a helm, blocks the darkness.If any of this spell's area overlaps with an area of light created by a spell of 2nd level or lower, the spell that created the light is dispelled.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Bat fur and a drop of pitch or piece of coal","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.S7VbUetIfVT7B6Eq"}},"img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234139,"modifiedTime":1661791116094,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"SleYkHovQ8NagmeV","name":"Locate Object","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Describe or name an object that is familiar to you. You sense the direction to the object's location, as long as that object is within 1,000 feet of you. If the object is in motion, you know the direction of its movement.The spell can locate a specific object known to you, as long as you have seen it up close—within 30 feet—at least once. Alternatively, the spell can locate the nearest object of a particular kind, such as a certain kind of apparel, jewelry, furniture, tool, or weapon.This spell can't locate an object if any thickness of lead, even a thin sheet, blocks a direct path between you and the object.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A forked twig","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.SleYkHovQ8NagmeV"}},"img":"icons/magic/earth/projectile-stone-boulder-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234143,"modifiedTime":1661791116095,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"zMAWdyc8UVb37BK4","name":"Suggestion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You suggest a course of activity (limited to a sentence or two) and magically influence a creature you can see within range that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act ends the spell.The target must make a Wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do.You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a knight give her warhorse to the first beggar she meets. If the condition isn't met before the spell expires, the activity isn't performed.If you or any of your companions damage the target, the spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":16,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A snake's tongue and either a bit of honeycomb or a drop of sweet oil","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.zMAWdyc8UVb37BK4"}},"img":"icons/magic/air/air-burst-spiral-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234245,"modifiedTime":1661791116095,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"XZhdgVK3cLoxNCQl","name":"Remove Curse","ownership":{"default":0},"type":"spell","system":{"description":{"value":"At your touch, all curses affecting one creature or object end. If the object is a cursed magic item, its curse remains, but the spell breaks its owner's Attunement to the object so it can be removed or discarded.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.XZhdgVK3cLoxNCQl"}},"img":"icons/magic/life/heart-cross-strong-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234157,"modifiedTime":1661791116095,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"gopnZvS0c2jD5FP8","name":"Tongues","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell grants the creature you touch the ability to understand any spoken language it hears. Moreover, when the target speaks, any creature that knows at least one language and can hear the target understands what it says.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"div","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small clay model of a ziggurat","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gopnZvS0c2jD5FP8"}},"img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234193,"modifiedTime":1661791116096,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pxpb2eOB6bv4phAf","name":"Banishment","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to send one creature that you can see within range to another plane of existence. The target must succeed on a Charisma saving throw or be banished.If the target is native to the plane of existence you're on, you banish the target to a harmless demiplane. While there, the target is incapacitated. The target remains there until the spell ends, at which point the target reappears in the space it left or in the nearest unoccupied space if that space is occupied.If the target is native to a different plane of existence than the one you're on, the target is banished with a faint popping noise, returning to its home plane. If the spell ends before 1 minute has passed, the target reappears in the space it left or in the nearest unoccupied space if that space is occupied. Otherwise, the target doesn't return.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":16,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An item distasteful to the target","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.pxpb2eOB6bv4phAf"}},"img":"icons/magic/control/energy-stream-link-spiral-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234230,"modifiedTime":1661791116096,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"tEpDmYZNGc9f5OhJ","name":"Greater Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You or a creature you touch becomes Invisible until the spell ends. Anything the target is wearing or carrying is Invisible as long as it is on the target's person.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.tEpDmYZNGc9f5OhJ"}},"img":"icons/magic/air/fog-gas-smoke-swirling-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234234,"modifiedTime":1661791116096,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"W4Qx5z0id6da0vqg","name":"Legend Lore","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Name or describe a person, place, or object. The spell brings to your mind a brief summary of the significant lore about the thing you named. The lore might consist of current tales, forgotten stories, or even secret lore that has never been widely known. If the thing you named isn't of legendary importance, you gain no information. The more information you already have about the thing, the more precise and detailed the information you receive is.The information you learn is accurate but might be couched in figurative language. For example, if you have a mysterious magic axe on hand, the spell might yield this information: \"Woe to the evildoer whose hand touches the axe, for even the haft slices the hand of the evil ones. Only a true Child of Stone, lover and beloved of Moradin, may awaken the true powers of the axe, and only with the sacred word Rudnogg on the lips.\"","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Incense worth at least 250gp, which the spell consumes, and four ivory strips worth at least 50gp each.","consumed":true,"cost":450,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.W4Qx5z0id6da0vqg"}},"img":"icons/magic/symbols/runes-star-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234150,"modifiedTime":1661791116097,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"6pbotGIvqQkraPva","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"5","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":678,"rounds":1,"seconds":null,"combat":null,"turns":null,"startRound":2,"startTurn":1},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","label":"Shield","origin":"Compendium.dnd5e.monsters.6wbasdWWqtXeIAyD.Item.z1mx84ONwkXKUZd7","tint":null,"transfer":false,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232605,"modifiedTime":1672596092813,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7198siHjPJf8g0cG","name":"Wyvern","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":110,"min":0,"max":110,"temp":0,"tempmax":0,"formula":"13d10 + 39"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":6,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Wyvern","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"vnO8N4pro9PVOOQn","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The wyvern makes two attacks: one with its bite and one with its stinger. While flying, it can use its claws in place of one other attack.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"j1LTHxGLXWdnEbwq","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+7 to hit,, 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage.\nThe Wyvern attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Wa8BU72wRqyBCqkI","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\nThe Wyvern attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HzLuzqlmtBSeSS4Q","name":"Stinger","type":"weapon","img":"icons/creatures/abilities/fang-tooth-venomous.webp","system":{"description":{"value":"\nMelee Weapon Attack:+7 to hit,, 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage.\nThe target must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\n\nThe Wyvern attacks with its Stinger. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":"7d6"},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"rch":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232608,"modifiedTime":1672596092870,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7EmUVycEASn7SFL0","name":"Violet Fungus","type":"npc","img":"","system":{"abilities":{"str":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":5,"calc":"natural","formula":""},"hp":{"value":18,"min":0,"max":18,"temp":0,"tempmax":0,"formula":"4d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":5,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":"Blind beyond this radius"},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"plant","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["blinded","deafened","frightened"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Violet Fungus","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"OEx9iy4HDipiYsPt","name":"Rotting Touch","type":"weapon","img":"icons/creatures/claws/claw-curved-poison-purple.webp","system":{"description":{"value":"Melee Weapon Attack:+2 to hit,, 10 ft., one creature. Hit: 4 (1d8) necrotic damage.The Violet Fungus attacks with its Rotting Touch.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wjDktLNTUnueuX2X","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The fungus makes 1d4 Rotting Touch attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fZgfSlczUTtrCNEb","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the violet fungus remains motionless, it is indistinguishable from an ordinary fungus.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232610,"modifiedTime":1672596092910,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7KJ5vjnp0FJrdu6T","name":"Warhorse Skeleton","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"3d10 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":60,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":["bludgeoning"],"bypasses":[],"custom":""},"ci":{"value":["poisoned","exhaustion"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Warhorse Skeleton","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"sIgV1p8nM1z4VZgY","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.The Warhorse Skeleton attacks with its Hooves.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232611,"modifiedTime":1672596092988,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7tRhrxuknTpHpYcA","name":"Werewolf","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":58,"min":0,"max":58,"temp":null,"tempmax":0,"formula":"9d8 + 18"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"humanoid","subtype":"Human, Shapechanger","swarm":"","custom":""},"environment":"Forest","cr":3,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common"],"custom":"(can't speak in wolf form)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Werewolf","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"tWfR8uJNnQxpXgDw","name":"Bite (Wolf or Hybrid Form Only)","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage. If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with werewolf lycanthropy.The Werewolf attacks with its Bite. If the target is a humanoid, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"abhGXKzA0XGprXED","name":"Multiattack (Humanoid or Hybrid Form Only)","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The werewolf makes two attacks: one with its bite and one with its claws or spear.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TiKtAuqd6urQ45Ds","name":"Spear (Humanoid Form Only)","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"\nMelee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one creature. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.\n\nThe Werewolf attacks with its Spear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"thr":true,"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"36H4LGNMMEYS1Irm","name":"Claws (Hybrid Form Only)","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 7 (2d4 + 2) slashing damage.The Werewolf attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2kHNI1T4gg879fDv","name":"Shapechanger","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The werewolf can use its action to polymorph into a wolf-humanoid hybrid or into a wolf, or back into its true form, which is humanoid. Its statistics, other than its AC, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies.The werewolf can use its action to polymorph, or return to its true form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9v8vBxcPazXyBUmo","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The werewolf has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232613,"modifiedTime":1672596093030,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7vswgicsiMfS4ZTS","name":"Adult Brass Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":172,"min":0,"max":172,"temp":0,"tempmax":0,"formula":"15d12 + 75"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":30,"climb":0,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":13,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Adult Brass Dragon","displayName":0,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Rr34cx78OgioMSHH","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack: +11 to hit, reach,.0 ft., one target. Hit: 17 (2d10 + 6) piercing damage.The Adult Brass Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HOTavLfsvvI26Ele","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\n**Fire Breath.** The dragon exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 45 (13d6) fire damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["13d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Gx6DVWF7D9lzZjse","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.The Adult Brass Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jM7XLTjt7QeJ8B7U","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"cVkEgorVxYQJkS8M","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute.A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":16,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Mmn2SNmzahxtikN3","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"86DJipzmvkhxDoKr","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MUTDiPrzhDqLYlKU","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rR1dMvZqWVQTgCVw","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.The Adult Brass Dragon attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"StCQbn2czecQteRM","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nThe dragon makes a tail attack.\n\nThe dragon slams its long tail against its foe!","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ge1y4jlE3zGCsy6K","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"\n\nThe dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 19 Dexterity saving throw or take 13 (2d6+6) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.\n\n\nThe dragon beats its wings!","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":19,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"37PM2SkkUbzzambk","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"asAmhLPOTnfZhb5I","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Fire Breath.** The dragon exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 45 (13d6) fire damage on a failed save, or half as much damage on a successful one.\n**Sleep Breath.** The dragon exhales sleep gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"K7XKtsJS8WUoEE0u","name":"Sleep Breath","type":"feat","img":"icons/magic/perception/third-eye-blue-red.webp","system":{"description":{"value":"\n**Sleep Breath.** The dragon exhales sleep gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n\nThe dragon exhales sleep gas in a 90-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.43BnuqkQgg5l1Nfh"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VOrehjcYVau3aE1g","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232616,"modifiedTime":1672596093131,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"85ahD1jEo9B3POaQ","name":"Young Green Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":136,"min":0,"max":136,"temp":0,"tempmax":0,"formula":"16d10 + 48"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":8,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Young Green Dragon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"6VIuuNCntP3W9Tki","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0Ob35HZxhSF7p2ys","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 7 (2d6) poison damage.The Young Green Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["2d6","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WvvHslcDhMq7MD1s","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.The Young Green Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ux1Gv0S29JzRaD27","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PIXokIK4tYPwua2G","name":"Poison Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"The dragon exhales poisonous gas in a 30-foot cone. Each creature in that area must make a DC 14 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.The dragon exhales poisonous gas in a 30-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d6","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JAEclghgOT24pQD9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232619,"modifiedTime":1672596093178,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8ExSFCar5Lbhdo7u","name":"Guardian Naga","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":127,"min":0,"max":127,"temp":0,"tempmax":0,"formula":"15d10 + 45"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"wis"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":10,"spellLevel":11,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","poisoned"],"custom":""},"languages":{"value":["celestial","common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":4,"override":null},"spell2":{"value":3,"override":null},"spell3":{"value":3,"override":null},"spell4":{"value":3,"override":null},"spell5":{"value":2,"override":null},"spell6":{"value":1,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Guardian Naga","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"GkVxLIsamEXICEeT","name":"Rejuvenation","type":"feat","img":"icons/magic/control/debuff-energy-hold-levitate-green.webp","system":{"description":{"value":"If it dies, the naga returns to life in 1d6 days and regains all its hit points. Only a wish spell can prevent this trait from functioning.If it dies, the naga returns to life in 1d6 days and regains all its hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d6","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JcfHlAcfwSWnt7Ud"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wtPKdh22QAc93kgt","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"\nThe naga is an 11th-level spellcaster. Its spellcasting ability is Wisdom (spell save DC 16, +8 to hit with spell attacks), and it needs only verbal components to cast its spells. It has the following cleric spells prepared:\nCantrips (at will): mending, sacred flame, thaumaturgy\n1st level (4 slots): command, cure wounds, shield of faith\n2nd level (3 slots): calm emotions, hold person\n3rd level (3 slots): bestow curse, clairvoyance\n4th level (3 slots): banishment, freedom of movement\n5th level (2 slots): flame strike, geas\n6th level (1 slot): true seeing\n\nThe naga is an spellcaster. Its spellcasting ability is Wisdom.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hQFQz2LiNGpxcRvw","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+8 to hit,, 10 ft., one creature. Hit: 8 (1d8 + 4) piercing damage.The target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.The Guardian Naga attacks with its Bite. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"10d8","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PtPZ5aBQPEfbbvla","name":"Spit Poison","type":"weapon","img":"icons/magic/acid/dissolve-drip-droplet-smoke.webp","system":{"description":{"value":"Ranged Weapon Attack: +8 to hit, range 15/30 ft., one creature. Hit: The target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.The Guardian Naga attacks with its Spit Poison. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":30,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d8","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kjmjY0zlE6IEiQVL","name":"Mending","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell repairs a single break or tear in an object you touch, such as a broken chain link, two halves of a broken key, a torn cloak, or a leaking wineskin. As long as the break or tear is no larger than 1 foot in any dimension, you mend it, leaving no trace of the former damage.This spell can physically repair a magic item or construct, but the spell can't restore magic to such an object.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Two lodestones","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.kjmjY0zlE6IEiQVL"}},"img":"icons/magic/air/wind-stream-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234215,"modifiedTime":1661791116132,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"n9pJzTDsAwQxJVRl","name":"Sacred Flame","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Flame-like radiance descends on a creature that you can see within range. The target must succeed on a Dexterity saving throw or take 1d8 radiant damage. The target gains no benefit from cover for this saving throw.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":16,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.n9pJzTDsAwQxJVRl"}},"img":"icons/magic/light/beam-rays-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234221,"modifiedTime":1661791116132,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MUO1uYN7JR1hm4dR","name":"Thaumaturgy","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create one of the following magical effects within range:\n\nYour voice booms up to three times as loud as normal for 1 minute.\nYou cause flames to flicker, brighten, dim, or change color for 1 minute.\nYou cause harmless tremors in the ground for 1 minute.\nYou create a sound that originates from a point of your choice within range.\nYou cause an unlocked door or window to fly open or slam shut.\nYou alter the appearance of your eyes for 1 minute.\n\nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234127,"modifiedTime":1661791116133,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"arzCrMRgcNiQuh43","name":"Command","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You speak a one-word command to a creature you can see within range. The target must succeed on a Wisdom saving throw or follow the command on its next turn. The spell has no effect if the target is undead, if it doesn't understand your language, or if your command is directly harmful to it.Some typical commands and their effects follow. You might issue a command other than one described here. If you do so, the DM determines how the target behaves. If the target can't follow your command, the spell ends.Approach. The target moves toward you by the shortest and most direct route, ending its turn if it moves within 5 feet of you.Drop. The target drops whatever it is holding and then ends its turn.Flee. The target spends its turn moving away from you by the fastest available means.Grovel. The target falls prone and then ends its turn.Halt. The target doesn't move and takes no actions. A flying creature stays aloft, provided that it is able to do so. If it must move to stay aloft, it flies the minimum distance needed to remain in the air.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":16,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.arzCrMRgcNiQuh43"}},"img":"icons/magic/fire/explosion-fireball-small-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234169,"modifiedTime":1661791116133,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"uUWb1wZgtMou0TVP","name":"Cure Wounds","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch regains a number of hit points equal to 1d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.uUWb1wZgtMou0TVP"}},"img":"icons/magic/life/heart-cross-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234236,"modifiedTime":1661791116134,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"jZ6JNykRtdQ90MOo","name":"Shield of Faith","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A shimmering field appears and surrounds a creature of your choice within range, granting it a +2 bonus to AC for the duration.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small parchment with a bit of holy text written on it.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.jZ6JNykRtdQ90MOo"}},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234212,"modifiedTime":1661791116134,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"3MYDjS6k9IYL0aTj","name":"Calm Emotions","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to suppress strong emotions in a group of people. Each humanoid in a 20-foot-radius sphere centered on a point you choose within range must make a Charisma saving throw; a creature can choose to fail this saving throw if it wishes. If a creature fails its saving throw, choose one of the following two effects. You can suppress any effect causing a target to be charmed or frightened. When this spell ends, any suppressed effect resumes, provided that its duration has not expired in the meantime.Alternatively, you can make a target indifferent about creatures of your choice that it is hostile toward. This indifference ends if the target is attacked or harmed by a spell or if it witnesses any of its friends being harmed. When the spell ends, the creature becomes hostile again, unless the DM rules otherwise.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":16,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.3MYDjS6k9IYL0aTj"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234063,"modifiedTime":1661791116134,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"3Lo9boi7P2ro6QV4","name":"Hold Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a humanoid that you can see within range. The target must succeed on a Wisdom saving throw or be paralyzed for the duration. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional humanoid for each slot level above 2nd. The humanoids must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":16,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small, straight piece of iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.3Lo9boi7P2ro6QV4"}},"img":"icons/magic/control/debuff-chains-ropes-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234063,"modifiedTime":1661791116135,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pO4zGe5LmFIYqJiL","name":"Bestow Curse","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature, and that creature must succeed on a Wisdom saving throw or become cursed for the duration of the spell. When you cast this spell, choose the nature of the curse from the following options:\n\nChoose one ability score. While cursed, the target has disadvantage on ability checks and saving throws made with that ability score.\nWhile cursed, the target has disadvantage on attack rolls against you.\nWhile cursed, the target must make a Wisdom saving throw at the start of each of its turns. If it fails, it wastes its action that turn doing nothing.\nWhile the target is cursed, your attacks and spells deal an extra 1d8 necrotic damage to the target.\n\nA remove curse spell ends this effect. At the DM's option, you may choose an alternative curse effect, but it should be no more powerful than those described above. The DM has final say on such a curse's effect.At Higher Levels. If you cast this spell using a spell slot of 4th level or higher, the duration is concentration, up to 10 minutes. If you use a spell slot of 5th level or higher, the duration is 8 hours. If you use a spell slot of 7th level or higher, the duration is 24 hours. If you use a 9th level spell slot, the spell lasts until it is dispelled. Using a spell slot of 5th level or higher grants a duration that doesn't require concentration.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":16,"scaling":"spell"},"level":3,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.pO4zGe5LmFIYqJiL"}},"img":"icons/magic/control/buff-flight-wings-runes-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234226,"modifiedTime":1661791116135,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"cg50KpBkBdPK6vPL","name":"Clairvoyance","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create an invisible sensor within range in a location familiar to you (a place you have visited or seen before) or in an obvious location that is unfamiliar to you (such as behind a door, around a corner, or in a grove of trees). The sensor remains in place for the duration, and it can't be attacked or otherwise interacted with.When you cast the spell, you choose seeing or hearing. You can use the chosen sense through the sensor as if you were in its space. As your action, you can switch between seeing and hearing.A creature that can see the sensor (such as a creature benefiting from see invisibility or truesight) sees a luminous, intangible orb about the size of your fist.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":1,"long":null,"units":"mi"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A focus worth at least 100gp, either a jeweled horn for hearing or a glass eye for seeing.","consumed":false,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.cg50KpBkBdPK6vPL"}},"img":"icons/magic/perception/eye-ringed-glow-angry-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234175,"modifiedTime":1661791116136,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pxpb2eOB6bv4phAf","name":"Banishment","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to send one creature that you can see within range to another plane of existence. The target must succeed on a Charisma saving throw or be banished.If the target is native to the plane of existence you're on, you banish the target to a harmless demiplane. While there, the target is incapacitated. The target remains there until the spell ends, at which point the target reappears in the space it left or in the nearest unoccupied space if that space is occupied.If the target is native to a different plane of existence than the one you're on, the target is banished with a faint popping noise, returning to its home plane. If the spell ends before 1 minute has passed, the target reappears in the space it left or in the nearest unoccupied space if that space is occupied. Otherwise, the target doesn't return.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":16,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An item distasteful to the target","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.pxpb2eOB6bv4phAf"}},"img":"icons/magic/control/energy-stream-link-spiral-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234230,"modifiedTime":1661791116136,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"da0a1t2FqaTjRZGT","name":"Freedom of Movement","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a willing creature. For the Duration, the target's Movement is unaffected by difficult terrain, and Spells and other magical Effects can neither reduce the target's speed nor cause the target to be Paralyzed or Restrained.The target can also spend 5 feet of Movement to automatically escape from nonmagical restraints, such as Manacles or a creature that has it Grappled. Finally, being Underwater imposes no penalties on the target's movement or attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A leather strap, bound around the arm or a similar appendage","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.da0a1t2FqaTjRZGT"}},"img":"icons/skills/melee/strike-blade-knife-white-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234180,"modifiedTime":1661791116136,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"5e1xTohkzqFqbYH4","name":"Flame Strike","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A vertical column of divine fire roars down from the heavens in a location you specify. Each creature in a 10-foot-radius, 40-foot-high Cylinder centered on a point within range must make a Dexterity saving throw. A creature takes 4d6 fire damage and 4d6 radiant damage on a failed save, or half as much damage on a successful one.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the fire damage or the radiant damage (your choice) increases by 1d6 for each slot level above 5th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"cylinder"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","radiant"],["4d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":16,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of sulfur","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.5e1xTohkzqFqbYH4"}},"img":"icons/magic/light/beam-rays-red-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234070,"modifiedTime":1661791116136,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"JQyigMNPiDnGI18b","name":"Geas","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You place a magical command on a creature that you can see within range, forcing it to carry out some service or refrain from some action or course of activity as you decide. If the creature can understand you, it must succeed on a Wisdom saving throw or become Charmed by you for the Duration. While the creature is charmed by you, it takes 5d10 psychic damage each time it acts in a manner directly counter to your instructions, but no more than once each day. A creature that can't understand you is unaffected by the spell.You can issue any command you choose, short of an activity that would result in certain death. Should you issue a suicidal command, the spell ends.You can end the spell early by using an action to dismiss it. A Remove Curse, Greater Restoration, or wish spell also ends it.At Higher Levels. When you cast this spell using a spell slot of 7th or 8th level, the Duration is 1 year. When you cast this spell using a spell slot of 9th level, the spell lasts until it is ended by one of the Spells mentioned above.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"30","units":"day"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d10","psychic"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":16,"scaling":"spell"},"level":5,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.JQyigMNPiDnGI18b"}},"img":"icons/magic/air/air-burst-spiral-large-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234114,"modifiedTime":1661791116137,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"XzkJpE6XpZfKjODD","name":"True Seeing","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell gives the willing creature you touch the ability to see things as they actually are. For the duration, the creature has truesight, notices secret doors hidden by magic, and can see into the Ethereal Plane, all out to a range of 120 feet.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"An ointment for the eyes that costs 25gp; is made from mushroom powder, saffron, and fat; and is consumed by the spell","consumed":true,"cost":25,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.XzkJpE6XpZfKjODD"}},"img":"icons/magic/perception/eye-ringed-glow-angry-large-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234160,"modifiedTime":1661791116137,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232621,"modifiedTime":1672596093283,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8KSVpQZyzius93ko","name":"Will-o'-Wisp","type":"npc","img":"","system":{"abilities":{"str":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":28,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":null,"tempmax":0,"formula":"9d4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":["lightning","poison"],"bypasses":[],"custom":""},"dr":{"value":["acid","bludgeoning","cold","fire","necrotic","piercing","slashing","thunder"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["grappled","paralyzed","poisoned","prone","restrained","unconscious","exhaustion"],"custom":""},"languages":{"value":[],"custom":"Languages it knew in life"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Will-o'-Wisp","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"RAnyTfj3CGaiGK3W","name":"Consume Life","type":"feat","img":"icons/magic/life/heart-glowing-red.webp","system":{"description":{"value":"As a bonus action, the will-o'-wisp can target one creature it can see within 5 ft. of it that has 0 hit points and is still alive. The target must succeed on a DC 10 Constitution saving throw against this magic or die. If the target dies, the will-o'-wisp regains 10 (3d6) hit points.The will-o'-wisp can target one creature it can see within 5 ft. The target must succeed on a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","healing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.r2nM5I77LnSvkLvD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4wbSkOyE4ZqKLPQ6","name":"Ephemeral","type":"feat","img":"icons/magic/water/orb-ice-web.webp","system":{"description":{"value":"The will-o'-wisp can't wear or carry anything.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VrPyFE3Hhjh0QjIO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MGdIOXhRAQQRrAcO","name":"Incorporeal Movement","type":"feat","img":"icons/skills/movement/feet-winged-boots-brown.webp","system":{"description":{"value":"The will-o'-wisp can move through other creatures and objects as if they were difficult terrain.It takes 5 (1d10) force damage if it ends its turn inside an object.The will-o'-wisp can move through other creatures and objects as if they were difficult terrain.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LUHmtIDD1VTreFqI"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3Sr6MrVgbTGw66Aa","name":"Variable Illumination","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"The will-o'-wisp sheds bright light in a 5- to 20-foot radius and dim light for an additional number of ft. equal to the chosen radius. The will-o'-wisp can alter the radius as a bonus action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iQGaWIinmYFPRF94"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"np6oHDOwHQFsSn5B","name":"Shock","type":"weapon","img":"icons/magic/lightning/bolt-forked-teal.webp","system":{"description":{"value":"Melee Spell Attack:+4 to hit,, 5 ft., one creature. Hit: 9 (2d8) lightning damage.The Will-o'-Wisp attacks with its Shock.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","lightning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vJR81iEOZYNMuAdz","name":"Invisibility","type":"feat","img":"icons/magic/unholy/orb-glowing-yellow-purple.webp","system":{"description":{"value":"The will-o'-wisp and its light magically become invisible until it attacks or uses its Consume Life, or until its concentration ends (as if concentrating on a spell).The will-o'-wisp and its light magically become invisible.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.dA5X2eQuOtHywpQF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232624,"modifiedTime":1672596093340,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8MD1vRBTcgSXXk3u","name":"Magmin","type":"npc","img":"","system":{"abilities":{"str":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":9,"min":0,"max":9,"temp":null,"tempmax":0,"formula":"2d6 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Neutral","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"sm","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["ignan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Magmin","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"0xdLfPJEHYwh8MIT","name":"Death Burst","type":"feat","img":"icons/magic/light/explosion-star-glow-yellow.webp","system":{"description":{"value":"When the magmin dies, it explodes in a burst of fire and magma. Each creature within 10 ft. of it must make a DC 11 Dexterity saving throw, taking 7 (2d6) fire damage on a failed save, or half as much damage on a successful one. Flammable objects that aren't being worn or carried in that area are ignited.When the magmin dies, it explodes in a burst of fire and magma. Each creature within 10 ft. of it must make a Dexterity saving throw. Flammable objects that aren't being worn or carried in that area are ignited.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":"death"},"duration":{"value":"","units":""},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.net3yBKQoxl8bZ4r"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rlA41r2MlaqmVjvf","name":"Ignited Illumination","type":"feat","img":"icons/magic/fire/explosion-mushroom-nuke-orange.webp","system":{"description":{"value":"As a bonus action, the magmin can set itself ablaze or extinguish its flames. While ablaze, the magmin sheds bright light in a 10-foot radius and dim light for an additional 10 ft.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Uvy7vla2EhYSfTl0"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"th3hfRWQ3PT9f3Gs","name":"Touch","type":"weapon","img":"icons/magic/fire/flame-burning-fist-strike.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (2d6) fire damage. The Magmin attacks with its Touch. If the target is a creature or a flammable object, it ignites. Until a target takes an action to douse the fire, the target takes 3 (1d6) fire damage at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","fire"]],"versatile":""},"formula":"1d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232626,"modifiedTime":1672596093385,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8MuL8xisavJW9bnw","name":"Giant Ape","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":157,"min":0,"max":157,"temp":0,"tempmax":0,"formula":"15d12 + 60"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":40,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":7,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Ape","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"NOajNyilBv8JIEVp","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The ape makes two fist attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"N86NeUNsfvruyJGq","name":"Fist","type":"weapon","img":"icons/magic/fire/flame-burning-fist-strike.webp","system":{"description":{"value":"\nMelee Weapon Attack:+9 to hit,, 10 ft., one target. Hit: 22 (3d10 + 6) bludgeoning damage.\nThe Giant Ape attacks with its Fist.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CVDcFc8ZcjYVl1EV","name":"Rock","type":"weapon","img":"icons/magic/earth/projectile-stone-ball-brown.webp","system":{"description":{"value":"\nRanged Weapon Attack: +9 to hit, range 50/100 ft., one target. Hit: 30 (7d6 + 6) bludgeoning damage.\nThe Giant Ape attacks with its Rock.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":50,"long":100,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["7d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":true,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232627,"modifiedTime":1672596093430,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8RgUhb31VvjUNZU1","name":"Crab","type":"npc","img":"","system":{"abilities":{"str":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":2,"min":0,"max":2,"temp":0,"tempmax":0,"formula":"1d4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":20,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Coastal","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Crab","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"gvfgesIscW0VALbY","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+0 to hit,, 5 ft., one target. Hit: 1 bludgeoning damage.\nThe Crab attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ciz8wAZjqxPnu5Pe","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The crab can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232629,"modifiedTime":1672596093471,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8SMQl75HLjhuSeau","name":"Fire Elemental","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":102,"min":0,"max":102,"temp":null,"tempmax":0,"formula":"12d10 + 36"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["grappled","paralyzed","petrified","poisoned","prone","restrained","unconscious","exhaustion"],"custom":""},"languages":{"value":["ignan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Fire Elemental","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"yud1cnEVQ9KxbmWc","name":"Fire Form","type":"feat","img":"icons/magic/earth/lava-explosion-orange.webp","system":{"description":{"value":"The elemental can move through a space as narrow as 1 inch wide without squeezing. A creature that touches the elemental or hits it with a melee attack while within 5 ft. of it takes 5 (1d10) fire damage. In addition, the elemental can enter a hostile creature's space and stop there. The first time it enters a creature's space on a turn, that creature takes 5 (1d10) fire damage and catches fire; until someone takes an action to douse the fire, the creature takes 5 (1d10) fire damage at the start of each of its turns.A creature that touches the elemental or hits it with a melee attack while within 5 ft. of it takes fire damage. In addition, the elemental can enter a hostile creature's space and stop there. The first time it enters a creature's space on a turn, that creature takes fire damage and catches fire; until someone takes an action to douse the fire, the creature takes fire damage at the start of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.0YuGSS8E8ElHLRyb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iQt3J3ZnHDoeaEIR","name":"Illumination","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"The elemental sheds bright light in a 30-foot radius and dim light in an additional 30 ft..","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.F3gzBbCW7U14zkBF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AW3qP6nJk45lOHe3","name":"Water Susceptibility","type":"feat","img":"icons/magic/water/pseudopod-swirl-blue.webp","system":{"description":{"value":"For every 5 ft. the elemental moves in water, or for every gallon of water splashed on it, it takes 1 cold damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.5V7SCABXvIbnk2Zn"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PRiFJLZbvIt2nkTk","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The elemental makes two touch attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fdt2FIirmBRCpRBm","name":"Touch","type":"weapon","img":"icons/magic/fire/flame-burning-fist-strike.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 5 (1d10) fire damage at the start of each of its turns.The Fire Elemental attacks with its Touch. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes fire damage at the start of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6+@mod","fire"]],"versatile":""},"formula":"1d10","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232630,"modifiedTime":1672596093514,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8VXxqeBvN54rPh81","name":"Giant Weasel","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":9,"min":0,"max":9,"temp":0,"tempmax":0,"formula":"2d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.125,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Weasel","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"MWoEhaUMfZJAQH2R","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The weasel has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BrbVh5Sx3clXLHIi","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage.\nThe Giant Weasel attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232632,"modifiedTime":1672596093551,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8aCTKP5qaBPFOqxM","name":"Crocodile","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":19,"min":0,"max":19,"temp":0,"tempmax":0,"formula":"3d10 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Swamp","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Crocodile","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"L0k8pFgKxxEEMEOY","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 7 (1d10 + 2) piercing damage.\nThe target is grappled (escape DC 12). Until this grapple ends, the target is restrained, and the crocodile can't bite another target.\n\nThe Crocodile attacks with its Bite. If successful, the target is grappled. Until this grapple ends, the target is restrained, and the crocodile can't bite another target.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vuDMChx74s6CMCab","name":"Hold Breath","type":"feat","img":"icons/magic/water/pseudopod-swirl-blue.webp","system":{"description":{"value":"The crocodile can hold its breath for 15 minutes.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lwC6jwy9bXberyWo"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232633,"modifiedTime":1672596093588,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8ihbbjkaOFTPbI73","name":"Swarm of Rats","type":"npc","img":"","system":{"abilities":{"str":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":24,"min":0,"max":24,"temp":0,"tempmax":0,"formula":"7d8 - 7"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":30,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"tiny","custom":""},"environment":"Swamp","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","grappled","paralyzed","petrified","prone","restrained","stunned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Swarm of Rats","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"EsvdwAvnKR0SGP6R","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The swarm has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ARmqveDkUL48Hupc","name":"Swarm","type":"feat","img":"icons/creatures/invertebrates/fly-wasp-mosquito-green.webp","system":{"description":{"value":"The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny rat. The swarm can't regain hit points or gain temporary hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eL3OJmc4FuetizKO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ESv9NuVeZhnEW1ua","name":"Bites","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+2 to hit,, 0 ft., one target in the swarm's space. Hit: 7 (2d6) piercing damage, or 3 (1d6) piercing damage if the swarm has half of its hit points or fewer.\nThe Swarm of Rats attacks with a flurry of Bites.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","piercing"]],"versatile":"1d6"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232635,"modifiedTime":1672596093627,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8pX2JhWUpTNNRBVx","name":"Gibbering Mouther","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":9,"calc":"natural","formula":""},"hp":{"value":67,"min":0,"max":67,"temp":0,"tempmax":0,"formula":"9d8 + 27"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":10,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"aberration","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["prone"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Gibbering Mouther","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"yxlzyXTpsEf4QiI9","name":"Aberrant Ground","type":"feat","img":"icons/magic/air/wind-tornado-funnel-damage-blue.webp","system":{"description":{"value":"The ground in a 10-foot radius around the mouther is doughlike difficult terrain. Each creature that starts its turn in that area must succeed on a DC 10 Strength saving throw or have its speed reduced to 0 until the start of its next turn.The ground in a 10-foot radius around the mouther is doughlike difficult terrain. make a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":10,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KoBGbIkb2tMZv0ch"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SzwWnAgr25vDeHKu","name":"Gibbering","type":"feat","img":"icons/skills/toxins/cup-goblet-poisoned-spilled.webp","system":{"description":{"value":"The mouther babbles incoherently while it can see any creature and isn't incapacitated. Each creature that starts its turn within 20 feet of the mouther and can hear the gibbering must succeed on a DC 10 Wisdom saving throw. On a failure, the creature can't take reactions until the start of its next turn and rolls a d8 to determine what it does during its turn. On a 1 to 4, the creature does nothing. On a 5 or 6, the creature takes no action or bonus action and uses all its movement to move in a randomly determined direction. On a 7 or 8, the creature makes a melee attack against a randomly determined creature within its reach or does nothing if it can't make such an attack.The mouther babbles incoherently while it can see any creature. Each creature that starts its turn within 20 feet of the mouther and can hear the gibbering must succeed on a Wisdom saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d8","save":{"ability":"wis","dc":10,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.dPPLbo3Unu3TqZrs"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qlBBeTku9uoaEv8G","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The gibbering mouther makes one bite attack and, if it can, uses its Blinding Spittle.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lfUDtJ8hdeULQzqa","name":"Bites","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+2 to hit,, 5 ft., one creature. Hit: 17 (5d6) piercing damage. If the target is Medium or smaller, it must succeed on a DC 10 Strength saving throw or be knocked prone. If the target is killed by this damage, it is absorbed into the mouther.The Gibbering Mouther attacks with its Bites. If the target is Medium or smaller, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d6","piercing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":10,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KQRvDGowc6ihejLu","name":"Blinding Spittle","type":"feat","img":"icons/magic/nature/root-vine-thorned-fire-purple.webp","system":{"description":{"value":"The mouther spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact. Each creature within 5 feet of the flash must succeed on a DC 13 Dexterity saving throw or be blinded until the end of the mouther's next turn.The mouther spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact. Each creature within 5 feet of the flash must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.0awyZX05OnVLF4k2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232636,"modifiedTime":1672596093670,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8xhuJXYMnlQD7LF6","name":"Satyr","type":"npc","img":"","system":{"abilities":{"str":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":31,"min":0,"max":31,"temp":0,"tempmax":0,"formula":"7d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Neutral","race":"","type":{"value":"fey","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","elvish","sylvan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":2,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Satyr","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"bAm4BNi3o137SAmd","name":"Shortbow","type":"weapon","img":"icons/weapons/bows/shortbow-recurve.webp","system":{"description":{"value":"This two handed bow is somewhat smaller than the traditional longbow variant, making it well suited for rapid attacks while on the move or mounted from horseback.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.GJv6WkD7D2J6rP6M"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"198fJNFbhjGeZ8UZ","name":"Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"A medium sized blade with a firm crossguard and a leather-wrapped handle. A versatile weapon which makes up in versatility what it lacks in reach.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.osLzOwQdPtrK3rQH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vd2pvVVxaLhqrWqe","name":"Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jgHhzAjFiPXlluVM","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The satyr has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2btvWgv8WIkadZjh","name":"Ram","type":"weapon","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 6 (2d4 + 1) bludgeoning damage.The Satyr attacks with its Ram.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232638,"modifiedTime":1672596093716,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9bHoR8k5D2DKHaF3","name":"Giant Eagle","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":26,"min":0,"max":26,"temp":0,"tempmax":0,"formula":"4d10 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Good","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"Giant Eagle; Common and Auran (understands but cannot speak)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Eagle","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"qOh4l0rSZlQOEhyc","name":"Keen Sight","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The eagle has advantage on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QaRbm71tWEQzR4GK","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The eagle makes two attacks: one with its beak and one with its talons.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vyI1tbobhrYMxj76","name":"Beak","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\nThe Giant Eagle attacks with its Beak.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sh91NilUd5bUZyiG","name":"Talons","type":"weapon","img":"icons/creatures/claws/claw-scaled-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\nThe Giant Eagle attacks with its Talons.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232640,"modifiedTime":1672596093761,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9g4N9sjyh8Ql46to","name":"Hill Giant","type":"npc","img":"","system":{"abilities":{"str":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":105,"min":0,"max":105,"temp":0,"tempmax":0,"formula":"10d12 + 40"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"giant","subtype":"","swarm":"","custom":""},"environment":"Hill","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["giant"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Hill Giant","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"1k58ryEYEYijhYOb","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The giant makes two greatclub attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"250gOq5bpqIHb7rw","name":"Greatclub","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"Melee Weapon Attack:+8 to hit,, 10 ft., one target. Hit: 18 (3d8 + 5) bludgeoning damage.The Hill Giant attacks with its Greatclub.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QRCsxkCwWNwswL9o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lpyNJHYnhFtpLgo9","name":"Rock","type":"weapon","img":"icons/magic/earth/projectile-stone-ball-brown.webp","system":{"description":{"value":"Ranged Weapon Attack: +8 to hit, range 60/240 ft., one target. Hit: 21 (3d10 + 5) bludgeoning damage.The Hill Giant attacks with its Rock.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":240,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232641,"modifiedTime":1672596093803,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9ggQBmAKXraOtz7S","name":"Bearded Devil","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":52,"min":0,"max":52,"temp":null,"tempmax":0,"formula":"8d8 + 16"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"Devil","swarm":"","custom":""},"environment":"","cr":3,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["infernal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Bearded Devil","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"xt4Cm1tg8Xfodhdt","name":"Devil's Sight","type":"feat","img":"icons/magic/perception/eye-slit-pink.webp","system":{"description":{"value":"Magical darkness doesn't impede the devil's Darkvision.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"u1abloZz4RhCI9rk","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The devil has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PIggvpkBTTCDGOHp","name":"Steadfast","type":"feat","img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","system":{"description":{"value":"The devil can't be frightened while it can see an allied creature within 30 feet of it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4N7S29kDROQ932pG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ndwCjJFBLTujojCl","name":"Beard","type":"weapon","img":"icons/creatures/tentacles/tentacles-thing-green.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage.\nThe target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. While poisoned in this way, the target can't regain hit points. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe Bearded Devil attacks with its Beard. The target must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":12,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RgZ4lGrNf9AaIyrG","name":"Glaive","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 10 ft., one target. Hit: 8 (1d10 + 3) slashing damage.\nIf the target is a creature other than an undead or a construct, it must succeed on a DC 12 Constitution saving throw or lose 5 (1d10) hit points at the start of each of its turns due to an infernal wound.\nEach time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 5 (1d10). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.\n\nThe Bearded Devil attacks with its Glaive. If the target is a creature other than an undead or a construct, it must make a Constitution saving throw. Any creature can take an action to stanch the wound with a successful Wisdom (Medicine) check.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","slashing"]],"versatile":""},"formula":"1d10","save":{"ability":"con","dc":12,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"hvy":true,"two":true,"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.rOG1OM2ihgPjOvFW"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iRRniNGmcgkUi4oH","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The devil makes two attacks: one with its beard and one with its glaive.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232643,"modifiedTime":1672596093849,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"AJiJW7K957aJJCN6","name":"Blood Hawk","type":"npc","img":"","system":{"abilities":{"str":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":7,"min":0,"max":7,"temp":0,"tempmax":0,"formula":"2d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":0.125,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Blood Hawk","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"TePImx0XTnaVC3HB","name":"Keen Sight","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The hawk has advantage on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"The hawk focuses its gaze!","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"2d20kh + @skills.prc.total","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"H3wZQRau9dswB1Fr","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The hawk has advantage on an attack roll against a creature if at least one of the hawk's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Jt0l1S2jZWGIiXjE","name":"Beak","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\nThe Blood Hawk attacks with its Beak.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232645,"modifiedTime":1672596093892,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"AOJvmk1IchxNxQzP","name":"Giant Crab","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":13,"min":0,"max":13,"temp":0,"tempmax":0,"formula":"3d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Coastal","cr":0.125,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Crab","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"NsbkrfEUPw2pbRZ3","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The crab can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7qDtYuaBNQ3zOnBC","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage.\nThe target is grappled (escape DC 11). The crab has two claws, each of which can grapple only one target.\n\nThe Giant Crab attacks with its Claw. The target is grappled.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232647,"modifiedTime":1672596093929,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"AijNdqMurWxDxUSl","name":"Panther","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":13,"min":0,"max":13,"temp":0,"tempmax":0,"formula":"3d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":40,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Panther","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"vS7OqBXfpfbsx5Rh","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The panther has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6UmjtTyihpEERg1I","name":"Pounce","type":"feat","img":"icons/creatures/claws/claw-talons-glowing-orange.webp","system":{"description":{"value":"If the panther moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a DC 12 Strength saving throw or be knocked prone. If the target is prone, the panther can make one bite attack against it as a bonus action.If the panther moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must make a Strength saving throw. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":12,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.MqAVplIArAKzpnXB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"c7iYo6g3A6DP8V4w","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.The Panther attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"t4bERcqBVDvjJ2gx","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 4 (1d4 + 2) slashing damage.The Panther attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232648,"modifiedTime":1672596093969,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"AnseLn7HwuP97grf","name":"Bone Devil","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":142,"min":0,"max":142,"temp":null,"tempmax":0,"formula":"15d10 + 60"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":40,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"Devil","swarm":"","custom":""},"environment":"","cr":9,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["infernal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Bone Devil","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"KjxsSFx9xv2HLtMX","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 10 ft., one target. Hit: 8 (1d8 + 4) slashing damage.\nThe Bone Devil attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"rch":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iFHGL8wlqBtZAdHr","name":"Sting","type":"weapon","img":"icons/creatures/abilities/fang-tooth-venomous.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 10 ft., one target. Hit: 13 (2d8 + 4) piercing damage plus 17 (5d6) poison damage.\nThe target must succeed on a DC 14 Constitution saving throw or become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success .\n\nThe Bone Devil attacks with its Sting. the target must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success .","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","piercing"],["5d6","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"rch":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"aj4Bg2H8CNydNhMB","name":"Devil Sight","type":"feat","img":"icons/magic/perception/eye-slit-pink.webp","system":{"description":{"value":"Magical darkness doesn't impede the devil's Darkvision.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.UjbgbOnd6ltjagZm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hQXiIJrlHh2rb2k9","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The devil has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sC1dqjfFZKnDmhec","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The devil makes three attacks: two with its claws and one with its sting.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232650,"modifiedTime":1672596094012,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Aw2wmqGIatxe2ImI","name":"Cloud Giant","type":"npc","img":"","system":{"abilities":{"str":{"value":27,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":22,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":200,"min":0,"max":200,"temp":0,"tempmax":0,"formula":"16d12 + 96"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Good Evil(50%) or Neutral Evil(50%)","race":"","type":{"value":"giant","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":9,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","giant"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Cloud Giant","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"4xg2sYoD5Z4lRmkT","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The giant has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WFfPQjdkfYdIIiZT","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The giant's innate spellcasting ability is Charisma. It can innately cast the following spells, requiring no material components:\nAt will: detect magic, fog cloud, light\n3/day each: feather fall, fly, misty step, telekinesis\n1/day each: control weather, gaseous form","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pH1i4SwsZRV3rq3v","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The giant makes two morningstar attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Jr0CfxY8xuFT6hoa","name":"Morningstar","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"\nMelee Weapon Attack:+12 to hit,, 10 ft., one target. Hit: 21 (3d8 + 8) piercing damage.\nThe Cloud Giant attacks with its Morningstar.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":40,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.dX8AxCh9o0A9CkT3"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NXgSHbDNtVbxsItU","name":"Rock","type":"weapon","img":"icons/magic/earth/projectile-stone-ball-brown.webp","system":{"description":{"value":"\nRanged Weapon Attack: +12 to hit, range 60/240 ft., one target. Hit: 30 (4d10 + 8) bludgeoning damage.\nThe Cloud Giant attacks with its Rock.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":240,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"improv","baseItem":"","properties":{"amm":true,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116159,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"IBJmWjzbQGu7M4UX","name":"Fog Cloud","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a 20-foot-radius Sphere of fog centered on a point within range. The sphere spreads around corners, and its area is heavily obscured. It lasts for the Duration or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the radius of the fog increases by 20 feet for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.IBJmWjzbQGu7M4UX"}},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234109,"modifiedTime":1661791116159,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Bnn9Nzajixvow9xi","name":"Light","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":15,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A firefly or phosphorescent moss.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Bnn9Nzajixvow9xi"}},"img":"icons/magic/light/explosion-star-small-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234093,"modifiedTime":1661791116160,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pub0OWVEB71XQx1n","name":"Feather Fall","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose up to five falling creatures within range. A falling creature's rate of descent slows to 60 feet per round until the spell ends. If the creature lands before the spell ends, it takes no falling damage and can land on its feet, and the spell ends for that creature.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":"which you take when you or a creature within 60 feet of you falls"},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small feather or piece of down","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.pub0OWVEB71XQx1n"}},"img":"icons/magic/air/wind-swirl-pink-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234229,"modifiedTime":1661791116160,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"yfbK8gZqESlaoY5t","name":"Fly","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a willing creature. The target gains a flying speed of 60 feet for the Duration. When the spell ends, the target falls if it is still aloft, unless it can stop the fall.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A wing feather from any bird","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.yfbK8gZqESlaoY5t"}},"img":"icons/magic/control/energy-stream-link-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234243,"modifiedTime":1661791116160,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"wqfAVANuQonNBgnL","name":"Misty Step","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Briefly surrounded by silvery mist, you teleport up to 30 feet to an unoccupied space that you can see.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"space"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.wqfAVANuQonNBgnL"}},"img":"icons/magic/control/debuff-energy-snare-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234238,"modifiedTime":1661791116160,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"HQfd7jJyULIoGxrZ","name":"Telekinesis","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You gain the ability to move or manipulate creatures or objects by thought. When you cast the spell, and as your action each round for the Duration, you can exert your will on one creature or object that you can see within range, causing the appropriate effect below. You can affect the same target round after round, or choose a new one at any time. If you switch targets, the prior target is no longer affected by the spell.Creature. You can try to move a Huge or smaller creature. Make an ability check with your spellcasting ability contested by the creature's Strength check. If you win the contest, you move the creature up to 30 feet in any direction, including upward but not beyond the range of this spell. Until the end of your next turn, the creature is Restrained in your telekinetic grip. A creature lifted upward is suspended in mid-air.On subsequent rounds, you can use your action to attempt to maintain your telekinetic grip on the creature by repeating the contest.Object. You can try to move an object that weighs up to 1,000 pounds. If the object isn't being worn or carried, you automatically move it up to 30 feet in any direction, but not beyond the range of this spell.If the object is worn or carried by a creature, you must make an ability check with your Spellcasting ability contested by that creature's Strength check. If you succeed, you pull the object away from that creature and can move it up to 30 feet in any direction but not beyond the range of this spell.You can exert fine control on Objects with your telekinetic grip, such as manipulating a simple tool, opening a door or a container, stowing or retrieving an item from an open container, or pouring the contents from a vial.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.HQfd7jJyULIoGxrZ"}},"img":"icons/magic/control/debuff-energy-hold-levitate-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234107,"modifiedTime":1661791116161,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ZPd73HtKF3At11jh","name":"Control Weather","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You take control of the weather within 5 miles of you for the duration. You must be outdoors to cast this spell. Moving to a place where you don't have a clear path to the sky ends the spell early.When you cast the spell, you change the current weather conditions, which are determined by the DM based on the climate and season. You can change precipitation, temperature, and wind. It takes 1d4 x 10 minutes for the new conditions to take effect. Once they do so, you can change the conditions again. When the spell ends, the weather gradually returns to normal.When you change the weather conditions, find a current condition on the following tables and change its stage by one, up or down. When changing the wind, you can change its direction.Conditions\n\nClear\nLight clouds\nOvercast or ground fog\nRain, hail, or snow\nTorrential rain, driving hail, or blizzard\n\nTemperature\n\nUnbearable heat\nHot\nWarm\nCool\nCold\nArctic cold\n\nWind\n\nCalm\nModerate wind\nStrong wind\nGale\nStorm\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":5,"width":null,"units":"mi","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Burning incense and bits of earth and wood mixed in water.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ZPd73HtKF3At11jh"}},"img":"icons/magic/air/wind-tornado-cyclone-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234163,"modifiedTime":1661791116162,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"2IWiZAJtOGDoKjiz","name":"Gaseous Form","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You transform a willing creature you touch, along with everything it's wearing and carrying, into a misty cloud for the duration. The spell ends if the creature drops to 0 hit points. An incorporeal creature isn't affected.While in this form, the target's only method of movement is a flying speed of 10 feet. The target can enter and occupy the space of another creature. The target has resistance to nonmagical damage, and it has advantage on Strength, Dexterity, and Constitution saving throws. The target can pass through small holes, narrow openings, and even mere cracks, though it treats liquids as though they were solid surfaces. The target can't fall and remains hovering in the air even when stunned or otherwise incapacitated.While in the form of a misty cloud, the target can't talk or manipulate objects, and any objects it was carrying or holding can't be dropped, used, or otherwise interacted with. The target can't attack or cast spells.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of gauze and a wisp of smoke","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.2IWiZAJtOGDoKjiz"}},"img":"icons/magic/air/fog-gas-smoke-dense-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234058,"modifiedTime":1661791116162,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232651,"modifiedTime":1672596094113,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"AyvniEKtyroOe83p","name":"Copper Dragon Wyrmling","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":16,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"4d8 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":60,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["acid"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Copper Dragon Wyrmling","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"BQZkHEsVvkPuGJKq","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.The Copper Dragon Wyrmling attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6mcnEM9hUPlfUT9x","name":"Breath Weapons","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Acid Breath.** The dragon exhales acid in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 18 (4d8) acid damage on a failed save, or half as much damage on a successful one.\n**Slowing Breath.** The dragon exhales gas in a 1 5-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xwWjmumhVKXd0vQM","name":"Acid Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\n**Acid Breath.** The dragon exhales acid in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 18 (4d8) acid damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales acid in an 20-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8","acid"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zjcGly9P3Gn9MXt7"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FNphFmvaLB9QD8Ta","name":"Slowing Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\n**Slowing Breath.** The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n\nThe dragon exhales gas in a 15-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JRy507rS9wxT3GBh"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232654,"modifiedTime":1672596094176,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"B7lBOr1AahNZs4a6","name":"Archmage","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":99,"min":0,"max":99,"temp":null,"tempmax":0,"formula":"18d8 + 18"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"int"},"details":{"biography":{"value":"","public":""},"alignment":"","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"","cr":12,"spellLevel":18,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":"damage from spells"},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"(Any 6 Languages)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":2,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":2,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":4,"override":null},"spell2":{"value":3,"override":null},"spell3":{"value":3,"override":null},"spell4":{"value":3,"override":null},"spell5":{"value":3,"override":null},"spell6":{"value":1,"override":null},"spell7":{"value":1,"override":null},"spell8":{"value":1,"override":null},"spell9":{"value":1,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Archmage","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"gSrKQbka5aLxlcJz","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"\nThe archmage is an 18th-level spellcaster. Its spellcasting ability is Intelligence (spell save DC 17, +9 to hit with spell attacks). The archmage can cast disguise self and invisibility at will and has the following wizard spells prepared:\n• Cantrips (at will): fire bolt, light, mage hand, prestidigitation, shocking grasp\n• 1st level (4 slots): detect magic, identify, mage armor*, magic missile\n• 2nd level (3 slots): detect thoughts, mirror image, misty step\n• 3rd level (3 slots): counterspell,fly, lightning bolt\n• 4th level (3 slots): banishment, fire shield, stoneskin*\n• 5th level (3 slots): cone of cold, scrying, wall of force\n• 6th level (1 slot): globe of invulnerability\n• 7th level (1 slot): teleport\n• 8th level (1 slot): mind blank*\n• 9th level (1 slot): time stop* \n*-The archmage casts these spells on itself before combat.\n\nThe archmage is an spellcaster. Its spellcasting ability is Intelligence.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Wa6dckSFp3pY8yH5","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The archmage has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vgTunE3gLps5Q595","name":"Dagger","type":"weapon","img":"icons/weapons/daggers/dagger-jeweled-purple.webp","system":{"description":{"value":"\nMelee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\nThe Archmage attacks with their Dagger.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.0E565kQUBmndJ1a2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EOmsUcFQJTfG2oio","name":"Fire Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You hurl a mote of fire at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried.This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.EOmsUcFQJTfG2oio"}},"img":"icons/magic/fire/projectile-fireball-smoke-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234100,"modifiedTime":1661791116187,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Bnn9Nzajixvow9xi","name":"Light","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":17,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A firefly or phosphorescent moss.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Bnn9Nzajixvow9xi"}},"img":"icons/magic/light/explosion-star-small-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234093,"modifiedTime":1661791116188,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Utk1OQRwYkMkFRD3","name":"Mage Hand","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.The hand can't attack, activate magic items, or carry more than 10 pounds.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Utk1OQRwYkMkFRD3"}},"img":"icons/magic/water/water-hand.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234148,"modifiedTime":1661791116188,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"udsLtG0BugXHR2JQ","name":"Prestidigitation","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell is a minor magical trick that novice spellcasters use for practice. You create one of the following magical effects within range:\n\nYou create an instantaneous, harmless sensory effect, such as a shower of sparks, a puff of wind, faint musical notes, or an odd odor.\nYou instantaneously light or snuff out a candle, a torch, or a small campfire.\nYou instantaneously clean or soil an object no larger than 1 cubic foot.\nYou chill, warm, or flavor up to 1 cubic foot of nonliving material for 1 hour.\nYou make a color, a small mark, or a symbol appear on an object or a surface for 1 hour.\nYou create a nonmagical trinket or an illusory image that can fit in your hand and that lasts until the end of your next turn.\n\nIf you cast this spell multiple times, you can have up to three of its non-instantaneous effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.udsLtG0BugXHR2JQ"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234236,"modifiedTime":1661791116188,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"XvbiNhNqXXIFisIy","name":"Shocking Grasp","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Lightning springs from your hand to deliver a shock to a creature you try to touch. Make a melee spell attack against the target. You have advantage on the attack roll if the target is wearing armor made of metal. On a hit, the target takes 1d8 lightning damage, and it can't take reactions until the start of its next turn.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","lightning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.XvbiNhNqXXIFisIy"}},"img":"icons/magic/lightning/bolt-forked-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234159,"modifiedTime":1661791116189,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116189,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"3OZnNhunvRtPOQmH","name":"Identify","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You choose one object that you must touch throughout the casting of the spell. If it is a magic item or some other magic-imbued object, you learn its properties and how to use them, whether it requires attunement to use, and how many charges it has, if any. You learn whether any spells are affecting the item and what they are. If the item was created by a spell, you learn which spell created it.If you instead touch a creature throughout the casting, you learn what spells, if any, are currently affecting it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A pearl worth at least 100gp and an owl feather","consumed":false,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.3OZnNhunvRtPOQmH"}},"img":"icons/magic/light/explosion-star-small-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234064,"modifiedTime":1661791116189,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"CKZTpZlxj7hjjo2H","name":"Mage Armor","type":"spell","img":"icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp","system":{"description":{"value":"You touch a willing creature who isn't wearing armor, and a protective magical force surrounds it until the spell ends. The target's base AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor or if you dismiss the spell as an action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A piece of cured leather","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"cfwMU7LuOJ619Lny","changes":[{"key":"system.attributes.ac.calc","value":"mage","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp","label":"Mage Armor","origin":"Compendium.dnd5e.spells.CKZTpZlxj7hjjo2H","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.CKZTpZlxj7hjjo2H"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234095,"modifiedTime":1661791116190,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"41JIhpDyM9Anm7cs","name":"Magic Missile","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create three glowing darts of magical force. Each dart hits a creature of your choice that you can see within range. A dart deals 1d4 + 1 force damage to its target. The darts all strike simultaneously, and you can direct them to hit one creature or several.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the spell creates one more dart for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + 1","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.41JIhpDyM9Anm7cs"}},"img":"icons/magic/fire/projectile-meteor-salvo-light-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234065,"modifiedTime":1661791116192,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ppWAAEul0QHtm4er","name":"Detect Thoughts","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you can read the thoughts of certain creatures. When you cast the spell and as your action on each turn until the spell ends, you can focus your mind on any one creature that you can see within 30 feet of you. If the creature you choose has an Intelligence of 3 or lower or doesn't speak any language, the creature is unaffected.You initially learn the surface thoughts of the creature—what is most on its mind in that moment. As an action, you can either shift your attention to another creature's thoughts or attempt to probe deeper into the same creature's mind. If you probe deeper, the target must make a Wisdom saving throw. If it fails, you gain insight into its reasoning (if any), its emotional state, and something that looms large in its mind (such as something it worries over, loves, or hates). If it succeeds, the spell ends. Either way, the target knows that you are probing into its mind, and unless you shift your attention to another creature's thoughts, the creature can use its action on its turn to make an Intelligence check contested by your Intelligence check; if it succeeds, the spell ends.Questions verbally directed at the target creature naturally shape the course of its thoughts, so this spell is particularly effective as part of an interrogation.You can also use this spell to detect the presence of thinking creatures you can't see. When you cast the spell or as your action during the duration, you can search for thoughts within 30 feet of you. The spell can penetrate barriers, but 2 feet of rock, 2 inches of any metal other than lead, or a thin sheet of lead blocks you. You can't detect a creature with an Intelligence of 3 or lower or one that doesn't speak any language.Once you detect the presence of a creature in this way, you can read its thoughts for the rest of the duration as described above, even if you can't see it, but it must still be within range.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A copper piece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ppWAAEul0QHtm4er"}},"img":"icons/magic/light/explosion-star-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234229,"modifiedTime":1661791116192,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"X4c8xCkmF8U9HUMz","name":"Mirror Image","type":"spell","img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","system":{"description":{"value":"Three illusory duplicates of yourself appear in your space. Until the spell ends, the duplicates move with you and mimic your actions, shifting position so it's impossible to track which image is real. You can use your action to dismiss the illusory duplicates.\nEach time a creature targets you with an attack during the spell's duration, roll a [[/r 1d20 # Mirror Image Check]] to determine whether the attack instead targets one of your duplicates.\nIf you have three duplicates, you must roll a 6 or higher to change the attack's target to a duplicate. With two duplicates, you must roll an 8 or higher. With one duplicate, you must roll an 11 or higher.\nA duplicate's AC equals 10 + your Dexterity modifier. If an attack hits a duplicate, the duplicate is destroyed. A duplicate can be destroyed only by an attack that hits it. It ignores all other damage and effects. The spell ends when all three duplicates are destroyed.\nA creature is unaffected by this spell if it can't see, if it relies on senses other than sight, such as blindsight, or if it can perceive illusions as false, as with truesight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d20","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.X4c8xCkmF8U9HUMz"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234155,"modifiedTime":1661791116193,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"wqfAVANuQonNBgnL","name":"Misty Step","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Briefly surrounded by silvery mist, you teleport up to 30 feet to an unoccupied space that you can see.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"space"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.wqfAVANuQonNBgnL"}},"img":"icons/magic/control/debuff-energy-snare-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234238,"modifiedTime":1661791116193,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Ek45cBpVXvJdv1Qy","name":"Counterspell","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to interrupt a creature in the process of casting a spell. If the creature is casting a spell of 3rd level or lower, its spell fails and has no effect. If it is casting a spell of 4th level or higher, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a success, the creature's spell fails and has no effect.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the interrupted spell has no effect if its level is less than or equal to the level of the spell slot you used.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":"which you take when you see a creature within 60 feet of you casting a spell"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d20 + @mod","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":false,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Ek45cBpVXvJdv1Qy"}},"img":"icons/skills/melee/strike-blade-hooked-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234102,"modifiedTime":1661791116193,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"yfbK8gZqESlaoY5t","name":"Fly","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a willing creature. The target gains a flying speed of 60 feet for the Duration. When the spell ends, the target falls if it is still aloft, unless it can stop the fall.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A wing feather from any bird","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.yfbK8gZqESlaoY5t"}},"img":"icons/magic/control/energy-stream-link-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234243,"modifiedTime":1661791116194,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"IyikgTEOTv701jgQ","name":"Lightning Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A stroke of lightning forming a line 100 feet long and 5 feet wide blasts out from you in a direction you choose. Each creature in the line must make a Dexterity saving throw. A creature takes 8d6 lightning damage on a failed save, or half as much damage on a successful one.The lightning ignites flammable objects in the area that aren't being worn or carried.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d6","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":17,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of fur and a rod of amber, crystal, or glass","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.IyikgTEOTv701jgQ"}},"img":"icons/magic/lightning/bolt-forked-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234110,"modifiedTime":1661791116194,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pxpb2eOB6bv4phAf","name":"Banishment","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to send one creature that you can see within range to another plane of existence. The target must succeed on a Charisma saving throw or be banished.If the target is native to the plane of existence you're on, you banish the target to a harmless demiplane. While there, the target is incapacitated. The target remains there until the spell ends, at which point the target reappears in the space it left or in the nearest unoccupied space if that space is occupied.If the target is native to a different plane of existence than the one you're on, the target is banished with a faint popping noise, returning to its home plane. If the spell ends before 1 minute has passed, the target reappears in the space it left or in the nearest unoccupied space if that space is occupied. Otherwise, the target doesn't return.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":17,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An item distasteful to the target","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.pxpb2eOB6bv4phAf"}},"img":"icons/magic/control/energy-stream-link-spiral-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234230,"modifiedTime":1661791116194,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"avD5XUtkBPQQR97c","name":"Fire Shield","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Thin and wispy flames wreathe your body for the Duration, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. You can end the spell early by using an action to dismiss it.\nThe flames provide you with a warm shield or a chill shield, as you choose. The warm shield grants you Resistance to cold damage, and the chill shield grants you resistance to fire damage.\nIn addition, whenever a creature within 5 feet of you hits you with a melee Attack, the shield erupts with flame. The attacker takes 2d8 fire damage from a warm shield, or 2d8 cold damage from a cold shield.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of phosphorus or a firefly","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.avD5XUtkBPQQR97c"}},"img":"icons/magic/defensive/shield-barrier-flaming-pentagon-red.webp","effects":[{"_id":"lVKx8swB08jm6IFE","flags":{},"changes":[{"key":"system.traits.dr.value","value":"cold","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":600,"rounds":null,"turns":null,"startRound":null,"startTurn":null,"combat":null},"icon":"icons/magic/defensive/shield-barrier-flaming-pentagon-red.webp","label":"Warm Shield","origin":"Item.OtcTsffCQaOFkr9K","tint":null,"transfer":true,"sort":0},{"_id":"UUXwEKSPX4nYfDzo","flags":{},"changes":[{"key":"system.traits.dr.value","value":"fire","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":600,"rounds":null,"turns":null,"startRound":null,"startTurn":null,"combat":null},"icon":"icons/magic/defensive/shield-barrier-flaming-pentagon-blue.webp","label":"Chill Shield","origin":"Item.OtcTsffCQaOFkr9K","tint":null,"transfer":true,"sort":0}],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234170,"modifiedTime":1661791116195,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ReMbjfeOKoSj3O79","name":"Stoneskin","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell turns the flesh of a willing creature you touch as hard as stone. Until the spell ends, the target has resistance to nonmagical bludgeoning, piercing, and slashing damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Diamond dust worth 100 gp, which the spell consumes","consumed":true,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ReMbjfeOKoSj3O79"}},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","effects":[{"label":"Stoneskin","icon":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","origin":"Compendium.dnd5e.spells.ReMbjfeOKoSj3O79","duration":{"startTime":null,"seconds":3600,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":true,"_id":"cSVCA9h5OEo5lfBE","changes":[{"key":"system.traits.dr.value","mode":2,"value":"bludgeoning","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"piercing","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"slashing","priority":null},{"key":"system.traits.dr.bypasses","mode":2,"value":"mgc","priority":null}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234137,"modifiedTime":1661791116195,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"RpKjTlYASrfqUPVA","name":"Cone of Cold","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A blast of cold air erupts from your hands. Each creature in a 60-foot cone must make a Constitution saving throw. A creature takes 8d8 cold damage on a failed save, or half as much damage on a successful one.A creature killed by this spell becomes a frozen statue until it thaws.Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d8","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":17,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small crystal or glass cone","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.RpKjTlYASrfqUPVA"}},"img":"icons/magic/water/projectiles-ice-faceted-shard-salvo-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234138,"modifiedTime":1661791116195,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"fVbCxFRaORalHB20","name":"Scrying","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You can see and hear a particular creature you choose that is on the same plane of existence as you. The target must make a Wisdom saving throw, which is modified by how well you know the target and the sort of physical connection you have to it. If a target knows you're casting this spell, it can fail the saving throw voluntarily if it wants to be observed.\n\n\n\nKnowledge\nSave Modifier\n\n\nSecondhand (you have heard of the target)\n+5\n\n\nFirsthand (you have met the target)\n+0\n\n\nFamiliar (you know the target well)\n-5\n\n\n\n\n\n\n\nConnection\nSave Modifier\n\n\nLikeness or picture\n-2\n\n\nPossession or garment\n-4\n\n\nBody part, lock of hair, bit of nail, or the like\n-10\n\n\n\nOn a successful save, the target isn't affected, and you can't use this spell against it again for 24 hours.On a failed save, the spell creates an Invisible sensor within 10 feet of the target. You can see and hear through the sensor as if you were there. The sensor moves with the target, remaining within 10 feet of it for the Duration. A creature that can see Invisile Objects sees the sensor as a luminous orb about the size of your fist.Instead of targeting a creature, you can choose a location you have seen before as the target of this spell. When you do, the sensor appears at that location and doesn't move.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A focus worth at least 1,000 gp, such as a crystal ball, a silver mirror, or a font filled with holy water.","consumed":false,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.fVbCxFRaORalHB20"}},"img":"icons/magic/perception/eye-ringed-glow-angry-large-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234189,"modifiedTime":1661791116198,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"o9ZCvuD2B1OTcubb","name":"Wall of Force","ownership":{"default":0},"type":"spell","system":{"description":{"value":"An invisible wall of force springs into existence at a point you choose within range. The wall appears in any orientation you choose, as a horizontal or vertical barrier or at an angle. It can be free floating or resting on a solid surface. You can form it into a hemispherical dome or a sphere with a radius of up to 10 feet, or you can shape a flat surface made up of ten 10-foot-by-10-foot panels. Each panel must be contiguous with another panel. In any form, the wall is 1/4 inch thick. It lasts for the Duration. If the wall cuts through a creature's space when it appears, the creature is pushed to one side of the wall (your choice which side).Nothing can physically pass through the wall. It is immune to all damage and can't be dispelled by Dispel Magic. A Disintegrate spell destroys the wall instantly, however. The wall also extends into the Ethereal Plane, blocking ethereal travel through the wall.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"wall"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A pinch of powder made by crushing clear gemstone","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.o9ZCvuD2B1OTcubb"}},"img":"icons/magic/light/beam-rays-magenta-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234223,"modifiedTime":1661791116199,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WmQpxfjZwF3MGUby","name":"Globe of Invulnerability","ownership":{"default":0},"type":"spell","system":{"description":{"value":"An immobile, faintly shimmering barrier springs into existence in a 10-foot radius around you and remains for the Duration.Any spell of 5th level or lower cast from outside the barrier can't affect creatures or Objects within it, even if the spell is cast using a higher level spell slot. Such a spell can target creatures and Objects within the barrier, but the spell has no effect on them. Similarly, the area within the barrier is excluded from the areas affected by such Spells.At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the barrier blocks Spells of one level higher for each slot level above 6th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A glass or crystal bead that shatters when the spell ends","consumed":true,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.WmQpxfjZwF3MGUby"}},"img":"icons/magic/defensive/shield-barrier-flaming-pentagon-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234154,"modifiedTime":1661791116199,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"L4J89JXqbKs6puEV","name":"Teleport","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell instantly transports you and up to eight willing creatures of your choice that you can see within range, or a single object that you can see within range, to a destination you select. If you target an object, it must be able to fit entirely inside a 10-foot cube, and it can't be held or carried by an unwilling creature.The destination you choose must be known to you, and it must be on the same plane of existence as you. Your familiarity with the destination determines whether you arrive there successfully. The DM rolls d100 and consults the table.\n\n\n\nFamiliarity\nMishap\nSimilar Area\nOff Target\nOn Target\n\n\nPermanent circle\n-\n-\n-\n01-100\n\n\nAssociated object\n-\n-\n-\n01-100\n\n\nVery familiar\n01-05\n06-13\n14-24\n25-100\n\n\nSeen casually\n01-33\n34-43\n44-53\n54-100\n\n\nViewed once\n01-43\n44-53\n54-73\n74-100\n\n\nDescription\n01-43\n44-53\n54-73\n74-100\n\n\nFalse destination\n01-50\n51-100\n-\n-\n\n\n\nFamiliarity. \"Permanent circle\" means a permanent Teleportation Circle whose sigil sequence you know. \"Associated object\" means that you possess an object taken from the desired destination within the last six months, such as a book from a wizard's library, bed linen from a royal suite, or a chunk of marble from a lich's Secret tomb.\"Very familiar\" is a place you have been very often, a place you have carefully studied, or a place you can see when you cast the spell. \"Seen casually\" is someplace you have seen more than once but with which you aren't very familiar. \"Viewed once\" is a place you have seen once, possibly using magic. \"Description\" is a place whose location and appearance you know through someone else's description, perhaps from a map.\"False destination\" is a place that doesn't exist. Perhaps you tried to scry an enemy's sanctum but instead viewed an illusion, or you are attempting to teleport to a familiar location that no longer exists.On Target. You and your group (or the target object) appear where you want to.Off Target. You and your group (or the target object) appear a random distance away from the destination in a random direction. Distance off target is 1d10 × 1d10 percent of the distance that was to be traveled. For example, if you tried to travel 120 miles, landed off target, and rolled a 5 and 3 on the two d10s, then you would be off target by 15 percent, or 18 miles. The DM determines the direction off target randomly by rolling a d8 and designating 1 as north, 2 as northeast, 3 as east, and so on around the points of the compass. If you were teleporting to a coastal city and wound up 18 miles out at sea, you could be in trouble.Similar Area. You and your group (or the target object) wind up in a different area that's visually or thematically similar to the target area. If you are heading for your home laboratory, for example, you might wind up in another wizard's laboratory or in an alchemical supply shop that has many of the same tools and implements as your laboratory. Generally, you appear in the closest similar place, but since the spell has no range limit, you could conceivably wind up anywhere on the plane.Mishap. The spell's unpredictable magic results in a difficult journey. Each teleporting creature (or the target object) takes 3d10 force damage, and the DM rerolls on the table to see where you wind up (multiple mishaps can occur, dealing damage each time).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":9,"width":null,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d100","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.L4J89JXqbKs6puEV"}},"img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234119,"modifiedTime":1661791116204,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"bllEWfm9xfEKynhv","name":"Mind Blank","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Until the spell ends, one willing creature you touch is immune to psychic damage, any effect that would sense its emotions or read its thoughts, Divination Spells, and the Charmed condition. The spell even foils Wish spells and Spells or Effects of similar power used to affect the target's mind or to gain information about the target.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.bllEWfm9xfEKynhv"}},"img":"icons/magic/air/air-burst-spiral-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234171,"modifiedTime":1661791116206,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"JYuRBwxpoFhXduvD","name":"Time Stop","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You briefly stop the flow of time for everyone but yourself. No time passes for other creatures, while you take 1d4 + 1 turns in a row, during which you can use Actions and move as normal.This spell ends if one of the Actions you use during this period, or any Effects that you create during this period, affects a creature other than you or an object being worn or carried by someone other than you. In addition, the spell ends if you move to a place more than 1,000 feet from the location where you cast it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4+1","save":{"ability":"","dc":null,"scaling":"spell"},"level":9,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.JYuRBwxpoFhXduvD"}},"img":"icons/magic/time/clock-stopwatch-white-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234114,"modifiedTime":1661791116206,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"1N8dDMMgZ1h1YJ3B","name":"Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An eyelash encased in gum arabic","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.1N8dDMMgZ1h1YJ3B"}},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234056,"modifiedTime":1661791116207,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"A3q2gTNqG6fvNGrv","name":"Disguise Self","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You make yourself—including your clothing, armor, weapons, and other belongings on your person—look different until the spell ends or until you use your action to dismiss it. You can seem 1 foot shorter or taller and can appear thin, fat, or in between. You can't change your body type, so you must adopt a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you.The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to your outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel your head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair.To discern that you are disguised, a creature can use its action to inspect your appearance and must succeed on an Intelligence (Investigation) check against your spell save DC.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.A3q2gTNqG6fvNGrv"}},"img":"icons/magic/control/debuff-energy-hold-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234086,"modifiedTime":1661791116207,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"cfwMU7LuOJ619Lny","changes":[{"key":"system.attributes.ac.calc","value":"mage","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":678,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":2,"startTurn":1},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp","label":"Mage Armor","origin":"Compendium.dnd5e.monsters.B7lBOr1AahNZs4a6.Item.CKZTpZlxj7hjjo2H","transfer":false,"flags":{},"tint":null,"sort":0},{"_id":"lVKx8swB08jm6IFE","flags":{},"changes":[{"key":"system.traits.dr.value","value":"cold","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":678,"seconds":600,"rounds":null,"turns":null,"startRound":2,"startTurn":1,"combat":null},"icon":"icons/magic/defensive/shield-barrier-flaming-pentagon-red.webp","label":"Warm Shield","origin":"Compendium.dnd5e.monsters.B7lBOr1AahNZs4a6.Item.avD5XUtkBPQQR97c","tint":null,"transfer":false,"sort":0},{"_id":"UUXwEKSPX4nYfDzo","flags":{},"changes":[{"key":"system.traits.dr.value","value":"fire","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":678,"seconds":600,"rounds":null,"turns":null,"startRound":2,"startTurn":1,"combat":null},"icon":"icons/magic/defensive/shield-barrier-flaming-pentagon-blue.webp","label":"Chill Shield","origin":"Compendium.dnd5e.monsters.B7lBOr1AahNZs4a6.Item.avD5XUtkBPQQR97c","tint":null,"transfer":false,"sort":0},{"label":"Stoneskin","icon":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","origin":"Compendium.dnd5e.monsters.B7lBOr1AahNZs4a6.Item.ReMbjfeOKoSj3O79","duration":{"startTime":0,"seconds":3600,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":true,"_id":"4KtXvy5OXy2qUidh","changes":[{"key":"system.traits.dr.value","mode":2,"value":"bludgeoning","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"piercing","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"slashing","priority":null},{"key":"system.traits.dr.bypasses","mode":2,"value":"mgc","priority":null}],"tint":null,"transfer":false,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232655,"modifiedTime":1672596094305,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"BAT6ld8qJZetpycL","name":"Spirit Naga","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":75,"min":0,"max":75,"temp":0,"tempmax":0,"formula":"10d10 + 20"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"int"},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":8,"spellLevel":10,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","poisoned"],"custom":""},"languages":{"value":["abyssal","common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":4,"override":4},"spell2":{"value":3,"override":null},"spell3":{"value":3,"override":null},"spell4":{"value":3,"override":null},"spell5":{"value":2,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Spirit Naga","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"aap2fFb4b7uX3XAO","name":"Bite","type":"weapon","img":"icons/creatures/abilities/fang-tooth-venomous.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 10 ft., one creature. Hit: 7 (1d6 + 4) piercing damage.The target must make a DC 13 Constitution saving throw, taking 31 (7d8) poison damage on a failed save, or half as much damage on a successful one.The Spirit Naga attacks with its Bite. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"],["7d8","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"con"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WqOflwn1ubAMkGdQ","name":"Rejuvenation","type":"feat","img":"icons/magic/control/debuff-energy-hold-levitate-green.webp","system":{"description":{"value":"If it dies, the naga returns to life in 1d6 days and regains all its hit points. Only a wish spell can prevent this trait from functioning.If it dies, the naga returns to life in 1d6 days and regains all its hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JcfHlAcfwSWnt7Ud"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Fla0ZsaY2HvXWqbR","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"\nThe naga is a 10th-level spellcaster. Its spellcasting ability is Intelligence (spell save DC 14, +6 to hit with spell attacks), and it needs only verbal components to cast its spells. It has the following wizard spells prepared:\n• Cantrips (at will): mage hand, minor illusion, ray of frost\n• 1st level (4 slots): charm person, detect magic, sleep\n• 2nd level (3 slots): detect thoughts, hold person\n• 3rd level (3 slots): lightning bolt, water breathing\n• 4th level (3 slots): blight, dimension door\n• 5th level (2 slots): dominate person\n\nThe naga is a spellcaster. Its spellcasting ability is Intelligence and it needs only verbal components to cast its spells.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Utk1OQRwYkMkFRD3","name":"Mage Hand","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.The hand can't attack, activate magic items, or carry more than 10 pounds.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Utk1OQRwYkMkFRD3"}},"img":"icons/magic/water/water-hand.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234148,"modifiedTime":1661791116262,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"oIzA2MEHwxhtQneU","name":"Minor Illusion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a sound or an image of an object within range that lasts for the duration. The illusion also ends if you dismiss it as an action or cast this spell again.If you create a sound, its volume can range from a whisper to a scream. It can be your voice, someone else's voice, a lion's roar, a beating of drums, or any other sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends.If you create an image of an object—such as a chair, muddy footprints, or a small chest—it must be no larger than a 5-foot cube. The image can't create sound, light, smell, or any other sensory effect. Physical interaction with the image reveals it to be an illusion, because things can pass through it.If a creature uses its action to examine the sound or image, the creature can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the illusion becomes faint to the creature.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"cube"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":14,"scaling":"spell"},"level":0,"school":"ill","components":{"vocal":false,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of fleece.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.oIzA2MEHwxhtQneU"}},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234224,"modifiedTime":1661791116262,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ctW81uiX56xZR2c5","name":"Ray of Frost","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A frigid beam of blue-white light streaks toward a creature within range. Make a ranged spell attack against the target. On a hit, it takes 1d8 cold damage, and its speed is reduced by 10 feet until the start of your next turn.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ctW81uiX56xZR2c5"}},"img":"icons/magic/light/beam-rays-blue-small.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234176,"modifiedTime":1661791116262,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"eS7XnnApoxRxYXPs","name":"Charm Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to charm a humanoid you can see within range. It must make a Wisdom saving throw, and does so with advantage if you or your companions are fighting it. If it fails the saving throw, it is charmed by you until the spell ends or until you or your companions do anything harmful to it. The charmed creature regards you as a friendly acquaintance. When the spell ends, the creature knows it was charmed by you.\n At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.eS7XnnApoxRxYXPs"}},"img":"icons/magic/fire/explosion-fireball-medium-purple-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234185,"modifiedTime":1661791116263,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116263,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"KhwiSi9fwVfUPtku","name":"Sleep","type":"spell","img":"icons/magic/light/explosion-star-small-pink.webp","system":{"description":{"value":"This spell sends creatures into a magical slumber. Roll 5d8; the total is how many hit points of creatures this spell can affect. Creatures within 20 feet of a point you choose within range are affected in ascending order of their current hit points (ignoring unconscious creatures).Starting with the creature that has the lowest current hit points, each creature affected by this spell falls unconscious until the spell ends, the sleeper takes damage, or someone uses an action to shake or slap the sleeper awake. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.Undead and creatures immune to being charmed aren't affected by this spell.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d8 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of fine sand, rose petals, or a cricket.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"2d8"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.KhwiSi9fwVfUPtku"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234117,"modifiedTime":1661791116263,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ppWAAEul0QHtm4er","name":"Detect Thoughts","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you can read the thoughts of certain creatures. When you cast the spell and as your action on each turn until the spell ends, you can focus your mind on any one creature that you can see within 30 feet of you. If the creature you choose has an Intelligence of 3 or lower or doesn't speak any language, the creature is unaffected.You initially learn the surface thoughts of the creature—what is most on its mind in that moment. As an action, you can either shift your attention to another creature's thoughts or attempt to probe deeper into the same creature's mind. If you probe deeper, the target must make a Wisdom saving throw. If it fails, you gain insight into its reasoning (if any), its emotional state, and something that looms large in its mind (such as something it worries over, loves, or hates). If it succeeds, the spell ends. Either way, the target knows that you are probing into its mind, and unless you shift your attention to another creature's thoughts, the creature can use its action on its turn to make an Intelligence check contested by your Intelligence check; if it succeeds, the spell ends.Questions verbally directed at the target creature naturally shape the course of its thoughts, so this spell is particularly effective as part of an interrogation.You can also use this spell to detect the presence of thinking creatures you can't see. When you cast the spell or as your action during the duration, you can search for thoughts within 30 feet of you. The spell can penetrate barriers, but 2 feet of rock, 2 inches of any metal other than lead, or a thin sheet of lead blocks you. You can't detect a creature with an Intelligence of 3 or lower or one that doesn't speak any language.Once you detect the presence of a creature in this way, you can read its thoughts for the rest of the duration as described above, even if you can't see it, but it must still be within range.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A copper piece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ppWAAEul0QHtm4er"}},"img":"icons/magic/light/explosion-star-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234229,"modifiedTime":1661791116266,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"3Lo9boi7P2ro6QV4","name":"Hold Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a humanoid that you can see within range. The target must succeed on a Wisdom saving throw or be paralyzed for the duration. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional humanoid for each slot level above 2nd. The humanoids must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small, straight piece of iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.3Lo9boi7P2ro6QV4"}},"img":"icons/magic/control/debuff-chains-ropes-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234063,"modifiedTime":1661791116266,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"IyikgTEOTv701jgQ","name":"Lightning Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A stroke of lightning forming a line 100 feet long and 5 feet wide blasts out from you in a direction you choose. Each creature in the line must make a Dexterity saving throw. A creature takes 8d6 lightning damage on a failed save, or half as much damage on a successful one.The lightning ignites flammable objects in the area that aren't being worn or carried.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d6","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":14,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of fur and a rod of amber, crystal, or glass","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.IyikgTEOTv701jgQ"}},"img":"icons/magic/lightning/bolt-forked-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234110,"modifiedTime":1661791116266,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"13uVuBQP6VaiSPvC","name":"Water Breathing","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell grants up to ten willing creatures you can see within range the ability to breathe underwater until the spell ends. Affected creatures also retain their normal mode of respiration.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A short reed or piece of straw","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.13uVuBQP6VaiSPvC"}},"img":"icons/magic/water/pseudopod-swirl-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234054,"modifiedTime":1661791116267,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pybg5MNc3lkerH4Y","name":"Blight","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Necromantic energy washes over a creature of your choice that you can see within range, draining moisture and vitality from it. The target must make a Constitution saving throw. The target takes 8d8 necrotic damage on a failed save, or half as much damage on a successful one. This spell has no effect on undead or constructs.If you target a plant creature or a magical plant, it makes the saving throw with disadvantage, and the spell deals maximum damage to it.If you target a nonmagical plant that isn't a creature, such as a tree or shrub, it doesn't make a saving throw, it simply withers and dies.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d8","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"spell"},"level":4,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.pybg5MNc3lkerH4Y"}},"img":"icons/magic/unholy/strike-beam-blood-large-red-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234230,"modifiedTime":1661791116268,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"A4RsPuSvB9wFtz1j","name":"Dimension Door","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You teleport yourself from your current location to any other spot within range. You arrive at exactly the spot desired. It can be a place you can see, one you can visualize, or one you can describe by stating distance and direction, such as \"200 feet straight downward\" or \"upward to the northwest at a 45-degree angle, 300 feet.\"You can bring along objects as long as their weight doesn't exceed what you can carry. You can also bring one willing creature of your size or smaller who is carrying gear up to its carrying capacity. The creature must be within 5 feet of you when you cast this spell.If you would arrive in a place already occupied by an object or a creature, you and any creature traveling with you each take 4d6 force damage, and the spell fails to teleport you.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":500,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.A4RsPuSvB9wFtz1j"}},"img":"icons/magic/air/air-burst-spiral-large-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234087,"modifiedTime":1661791116268,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"91Sw6vOIaO7U8DvM","name":"Dominate Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to beguile a humanoid that you can see within range. It must succeed on a Wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw.While the target is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability.You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time you can also cause the creature to use a reaction, but this requires you to use your own reaction as well.Each time the target takes damage, it makes a new Wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.At Higher Levels. When you cast this spell using a 6th-level spell slot, the duration is concentration, up to 10 minutes. When you use a 7th-level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 8th level or higher, the duration is concentration, up to 8 hours.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"spell"},"level":5,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.91Sw6vOIaO7U8DvM"}},"img":"icons/magic/air/air-burst-spiral-large-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234083,"modifiedTime":1661791116268,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232659,"modifiedTime":1672596094432,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"BUCfQ7ihaXX75Vai","name":"Dust Mephit","type":"npc","img":"","system":{"abilities":{"str":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":17,"min":0,"max":17,"temp":0,"tempmax":0,"formula":"5d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":30,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"sm","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":["fire"],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["auran","terran"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Dust Mephit","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"v3i1DaUS4Bkc8Ser","name":"Death Burst","type":"feat","img":"icons/magic/light/explosion-star-glow-yellow.webp","system":{"description":{"value":"\nWhen the mephit dies, it explodes in a burst of dust. Each creature within 5 ft. of it must then succeed on a DC 10 Constitution saving throw or be blinded for 1 minute. A blinded creature can repeat the saving throw on each of its turns, ending the effect on itself on a success.\n\nWhen the mephit dies, it explodes in a burst of dust. Each creature within 5 ft. of it must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":"on death"},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":10,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.net3yBKQoxl8bZ4r"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"muKb2wMq6khBe1yH","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The mephit can innately cast sleep, requiring no material components. Its innate spellcasting ability is Charisma.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lazTMrXNUpGCrKdR","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 4 (1d4 + 2) slashing damage.\n\nThe Dust Mephit attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RTpPc5fs27dBqDuj","name":"Blinding Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\nThe mephit exhales a 15-foot cone of blinding dust.\nEach creature in that area must succeed on a DC 10 Dexterity saving throw or be blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe mephit exhales a 15-foot cone of blinding dust. Each creature in that area must make a Dexterity saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":10,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.tHvaJB8tXSriVXRm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KhwiSi9fwVfUPtku","name":"Sleep","type":"spell","img":"icons/magic/light/explosion-star-small-pink.webp","system":{"description":{"value":"This spell sends creatures into a magical slumber. Roll 5d8; the total is how many hit points of creatures this spell can affect. Creatures within 20 feet of a point you choose within range are affected in ascending order of their current hit points (ignoring unconscious creatures).Starting with the creature that has the lowest current hit points, each creature affected by this spell falls unconscious until the spell ends, the sleeper takes damage, or someone uses an action to shake or slap the sleeper awake. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.Undead and creatures immune to being charmed aren't affected by this spell.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d8 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of fine sand, rose petals, or a cricket.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":"2d8"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.KhwiSi9fwVfUPtku"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234117,"modifiedTime":1661791116287,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232661,"modifiedTime":1672596094498,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Bupo3E9X5Ptx6XeT","name":"Draft Horse","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":19,"min":0,"max":19,"temp":0,"tempmax":0,"formula":"3d10 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Urban","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Draft Horse","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"alpha":1,"light":{"alpha":0.5,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"reverse":false,"type":null},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.3},"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"dJyouOu3yDwHTXEX","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 9 (2d4 + 4) bludgeoning damage.\nThe Draft Horse attacks with its Hooves.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232663,"modifiedTime":1672596094547,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Buxe6dDK5Mw7kxe6","name":"Frost Giant","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":138,"min":0,"max":138,"temp":null,"tempmax":0,"formula":"12d12 + 60"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"giant","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":8,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":["cold"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["giant"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Frost Giant","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"gCi538awNcOfcZf7","name":"Rock","type":"weapon","img":"icons/magic/earth/projectile-stone-ball-brown.webp","system":{"description":{"value":"\nRanged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.\nThe Frost Giant attacks with its Rock.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":240,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9LXx1CaY98oYrwWK","name":"Patchwork Armor","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":12,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.1","coreVersion":"10.284","createdTime":null,"modifiedTime":1662588021210,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"LVOGKiIm4UTD4fpj","name":"Greataxe","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 10 ft., one target. Hit: 25 (3d12 + 6) slashing damage.The Frost Giant attacks with its Greataxe.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d12+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.1Lxk6kmoRhG8qQ0u"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"i49lwJ84vB720EPW","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The giant makes two greataxe attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232665,"modifiedTime":1672596094588,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"CHEUjiYrVM9X0vIT","name":"Acolyte","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":9,"min":0,"max":9,"temp":0,"tempmax":0,"formula":"2d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"wis"},"details":{"biography":{"value":"","public":""},"alignment":"Any","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"","cr":0.25,"spellLevel":1,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"Any one language (usually common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":2,"override":2},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Acolyte","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"alpha":1,"light":{"alpha":0.5,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"reverse":false,"type":null},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.3},"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"38I6bGoguRRefN6W","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"\nThe acolyte is a 1st-level spellcaster. Its spellcasting ability is Wisdom (spell save DC 12, +4 to hit with spell attacks). The acolyte has following cleric spells prepared:• Cantrips (at will): light, sacred flame, thaumaturgy• 1st level (3 slots): bless, cure wounds, sanctuary\n\nThe acolyte is a spellcaster. Its spellcasting ability is Wisdom.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"swpThURVHnaQRjfY","name":"Club","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"\nMelee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 2 (1d4) bludgeoning damage.\nThe Acolyte attacks with their Club.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"lgt":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.nfIRTECQIG81CvM4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Bnn9Nzajixvow9xi","name":"Light","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":12,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A firefly or phosphorescent moss.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Bnn9Nzajixvow9xi"}},"img":"icons/magic/light/explosion-star-small-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234093,"modifiedTime":1661791116300,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"n9pJzTDsAwQxJVRl","name":"Sacred Flame","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Flame-like radiance descends on a creature that you can see within range. The target must succeed on a Dexterity saving throw or take 1d8 radiant damage. The target gains no benefit from cover for this saving throw.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":12,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.n9pJzTDsAwQxJVRl"}},"img":"icons/magic/light/beam-rays-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234221,"modifiedTime":1661791116301,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MUO1uYN7JR1hm4dR","name":"Thaumaturgy","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create one of the following magical effects within range:\n\nYour voice booms up to three times as loud as normal for 1 minute.\nYou cause flames to flicker, brighten, dim, or change color for 1 minute.\nYou cause harmless tremors in the ground for 1 minute.\nYou create a sound that originates from a point of your choice within range.\nYou cause an unlocked door or window to fly open or slam shut.\nYou alter the appearance of your eyes for 1 minute.\n\nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234127,"modifiedTime":1661791116301,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"8dzaICjGy6mTUaUr","name":"Bless","type":"spell","img":"icons/magic/control/buff-flight-wings-blue.webp","system":{"description":{"value":"You bless up to three creatures of your choice within range. Whenever a target makes an attack roll or a saving throw before the spell ends, the target can roll 1d4 and add the number rolled to the attack roll or saving throw.\nHigher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":3,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A sprinkling of holy water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"effects":[{"_id":"8rP3gwmXVTgZqYZE","flags":{},"changes":[{"key":"system.bonuses.abilities.save","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.mwak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.msak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rsak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rwak.attack","mode":2,"value":"+1d4","priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":60,"rounds":10,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/control/buff-flight-wings-blue.webp","label":"Bless","origin":"Item.kZZAZ6kp9YzgPQEe","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.8dzaICjGy6mTUaUr"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234081,"modifiedTime":1661791116301,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"gvdA9nPuWLck4tBl","name":"Sanctuary","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You ward a creature within range against attack. Until the spell ends, any creature who targets the warded creature with an attack or a harmful spell must first make a Wisdom saving throw. On a failed save, the creature must choose a new target or lose the attack or spell. This spell doesn't protect the warded creature from area effects, such as the explosion of a Fireball.If the warded creature makes an attack or casts a spell that affects an enemy creature, this spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":12,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small silver mirror","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gvdA9nPuWLck4tBl"}},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234193,"modifiedTime":1661791116302,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"uUWb1wZgtMou0TVP","name":"Cure Wounds","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch regains a number of hit points equal to 1d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.uUWb1wZgtMou0TVP"}},"img":"icons/magic/life/heart-cross-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234236,"modifiedTime":1661791116302,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"8rP3gwmXVTgZqYZE","flags":{},"changes":[{"key":"system.bonuses.abilities.save","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.mwak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.msak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rsak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rwak.attack","mode":2,"value":"+1d4","priority":null}],"disabled":true,"duration":{"startTime":678,"seconds":60,"rounds":10,"combat":null,"turns":null,"startRound":2,"startTurn":1},"icon":"icons/magic/control/buff-flight-wings-blue.webp","label":"Bless","origin":"Compendium.dnd5e.monsters.CHEUjiYrVM9X0vIT.Item.8dzaICjGy6mTUaUr","tint":null,"transfer":false,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232667,"modifiedTime":1672596094680,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"CqQ6pXQA5WXZNOm3","name":"Harpy","type":"npc","img":"","system":{"abilities":{"str":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":38,"min":0,"max":38,"temp":0,"tempmax":0,"formula":"7d8 + 7"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":40,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Harpy","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"9efeESJpU7Zmfcyo","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The harpy makes two attacks: one with its claws and one with its club.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WqD5jsrWCeNHoD9O","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 6 (2d4 + 1) slashing damage.The Harpy attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ywVQhULZvd4Jn51c","name":"Club","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 3 (1d4 + 1) bludgeoning damage.\nThe Harpy attacks with its Club.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.nfIRTECQIG81CvM4"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011421660,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"QeobH0xuWk2yWmsb","name":"Luring Song","type":"feat","img":"icons/magic/air/wind-vortex-swirl-purple.webp","system":{"description":{"value":"\nThe harpy sings a magical melody. Every humanoid and giant within 300 ft. of the harpy that can hear the song must succeed on a DC 11 Wisdom saving throw or be charmed until the song ends. The harpy must take a bonus action on its subsequent turns to continue singing. It can stop singing at any time. The song ends if the harpy is incapacitated.\nWhile charmed by the harpy, a target is incapacitated and ignores the songs of other harpies. If the charmed target is more than 5 feet away from the harpy, the target must move on its turn toward the harpy by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage from a source other than the harpy, the target can repeat the saving throw. A charmed target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.\nA target that successfully saves is immune to this harpy's song for the next 24 hours.\n\nThe harpy sings a magical melody. Every humanoid and giant within 300 ft. of the harpy that can hear the song must make a Wisdom saving throw. A creature can also repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"spec"},"cover":null,"target":{"value":300,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.IALpDTyYdDOzmDb5"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232669,"modifiedTime":1672596094727,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"CrnUJhTbkdZjCZsH","name":"Wererat","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":33,"min":0,"max":33,"temp":null,"tempmax":0,"formula":"6d8 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"humanoid","subtype":"Human, Shapechanger","swarm":"","custom":""},"environment":"Forest","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common"],"custom":"(can't speak in rat form)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Wererat","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"PhdUmTsYUeWSSDNN","name":"Shapechanger","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The wererat can use its action to polymorph into a rat-humanoid hybrid or into a giant rat, or back into its true form, which is humanoid. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies.The wererat can use its action to polymorph, or return to its true form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UwlU9Zhwf94gPX0n","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The wererat has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ykZaywAeuqtWHAqQ","name":"Multiattack (Humanoid or Hybrid Form Only)","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The wererat makes two attacks, only one of which can be a bite.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ldz0yUpzhV9Xlhss","name":"Bite (Rat or Hybrid Form Only)","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage. If the target is a humanoid, it must succeed on a DC 11 Constitution saving throw or be cursed with wererat lycanthropy.The Wererat attacks with its Bite. If the target is a humanoid, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YJi7nfridP2LjdJs","name":"Hand Crossbow (Humanoid or Hybrid Form Only)","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"\nRanged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n\nThe Wererat attacks with its Hand Crossbow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":75,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"lgt":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":true},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wpyEts6pBAxoD0Gh","name":"Shortsword (Humanoid or Hybrid Form Only)","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n\nThe Wererat attacks with its Shortsword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232671,"modifiedTime":1672596094776,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Cy3A0rsNMPLZozam","name":"Thug","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":32,"min":0,"max":32,"temp":0,"tempmax":0,"formula":"5d8 + 10"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any non-good alignment","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"any one language (usually Common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Thug","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"wonRQjOkc9E7RYtd","name":"Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OE8y8otGDFop6Fzt","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The thug has advantage on an attack roll against a creature if at least one of the thug's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"cac4FpQc3XabBwTj","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The thug makes two melee attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9INT7D1zulhfsok7","name":"Heavy Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-blue.webp","system":{"description":{"value":"\nRanged Weapon Attack: +2 to hit, range 100/400 ft., one target. Hit: 5 (1d10) piercing damage.\nThe Thug attacks with their Heavy Crossbow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":18,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":100,"long":400,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.RmP0mYRn2J7K26rX"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6gRu9IFFkvxesFfK","name":"Mace","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 5 (1d6 + 2) bludgeoning damage.\nThe Thug attacks with their Mace.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Ajyq6nGwF7FtLhDQ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232672,"modifiedTime":1672596094822,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"D5UqYD1EnTrJaMTO","name":"Knight","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":52,"min":0,"max":52,"temp":0,"tempmax":0,"formula":"8d8 + 16"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Alignment","race":"","type":{"value":"humanoid","subtype":"Any Race","swarm":"","custom":""},"environment":"","cr":3,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"any one language (usually Common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Knight","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Y4OikSWAB33cwfR2","name":"Plate Armor","type":"equipment","img":"icons/equipment/chest/breastplate-cuirass-steel-grey.webp","system":{"description":{"value":"Plate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":65,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.OjkIqlW2UpgFcjZa"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"46b7R0DbKIsxvWcv","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The knight makes two melee attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iPLa96izrYFiVtaO","name":"Greatsword","type":"weapon","img":"icons/weapons/swords/greatsword-guard-gem-blue.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\nThe Knight attacks with its Greatsword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.xMkP8BmFzElcsMaR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"m68xw5aGQ7awxfYf","name":"Heavy Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-blue.webp","system":{"description":{"value":"\nRanged Weapon Attack: +2 to hit, range 100/400 ft., one target. Hit: 5 (1d10) piercing damage.\nThe Knight attacks with its Heavy Crossbow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":18,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":100,"long":400,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.RmP0mYRn2J7K26rX"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FK0ZF8egty0u713z","name":"Leadership","type":"feat","img":"icons/sundries/documents/document-sealed-red-yellow.webp","system":{"description":{"value":"For 1 minute, the knight can utter a special command or warning whenever a nonhostile creature that it can see within 30 ft. of it makes an attack roll or a saving throw. The creature can add a d4 to its roll provided it can hear and understand the knight. A creature can benefit from only one Leadership die at a time. This effect ends if the knight is incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.cl5sUkAIeJoAG4gh"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AxY9pWHDr2M1SPCC","name":"Parry","type":"feat","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"\nThe knight adds 2 to its AC against one melee Attack that would hit it. To do so, the knight must see the attacker and be wielding a melee weapon.\n\nThe knight adds 2 to its AC against one melee Attack that would hit it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"none"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kfi26Jy0VLXv9TTm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Sp9AkcXsLCN09C9v","name":"Brave","type":"feat","img":"icons/skills/social/intimidation-impressing.webp","system":{"description":{"value":"The knight has advantage on saving throws against being frightened.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.108q5fJnnBRoLKfe"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232674,"modifiedTime":1672596094867,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"D5WjGwKskeUT8HXa","name":"Black Bear","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":19,"min":0,"max":19,"temp":0,"tempmax":0,"formula":"3d8 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Black Bear","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ojB2xDcEAx6QHZAu","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The bear has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZBWu2XGwEnsaVNsH","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The bear makes two attacks: one with its bite and one with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8VdhUFhUE9m12piC","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\nThe Black Bear attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gaxofmkFqQG1zqK9","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage.\nThe Black Bear attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232676,"modifiedTime":1672596094908,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"D5rwVIxmfFrdyyxT","name":"Poisonous Snake","type":"npc","img":"","system":{"abilities":{"str":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":2,"min":0,"max":2,"temp":0,"tempmax":0,"formula":"1d4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.125,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Poisonous Snake","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"obYv0JJqJiMTsoIF","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 1 piercing damage.The target must make a DC 10 Constitution saving throw, taking 5 (2d4) poison damage on a failed save, or half as much damage on a successful one.The Poisonous Snake attacks with its Bite. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":"2d4"},"formula":"","save":{"ability":"con","dc":10,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232678,"modifiedTime":1672596094945,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"DDO9lDCDtNHkfShP","name":"Vampire","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":16,"calc":"natural","formula":""},"hp":{"value":144,"min":0,"max":144,"temp":null,"tempmax":0,"formula":"17d8 + 68"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"undead","subtype":"Shapechanger","swarm":"","custom":""},"environment":"Urban","cr":13,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","necrotic","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"the languages it knew in life"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Vampire","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"BqG5guVa93LaOAn1","name":"Shapechanger","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"\nIf the vampire isn't in sun light or running water, it can use its action to polymorph into a Tiny bat or a Medium cloud of mist, or back into its true form.\nWhile in bat form, the vampire can't speak, its walking speed is 5 feet, and it has a flying speed of 30 feet. Its statistics, other than its size and speed, are unchanged. Anything it is wearing transforms with it, but nothing it is carrying does. It reverts to its true form if it dies. While in mist form, the vampire can't take any actions, speak, or manipulate objects. It is weightless, has a flying speed of 20 feet, can hover, and can enter a hostile creature's space and stop there. In addition, if air can pass through a space, the mist can do so without squeezing, and it can't pass through water. It has advantage on Strength, Dexterity, and Constitution saving throws, and it is immune to all nonmagical damage, except the damage it takes from sunlight.\n\nThe vampire can use its action to polymorph or return to its true form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JaohF91Eok1kSEIG","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the vampire fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pVlKFunmE2qxO0pe","name":"Misty Escape","type":"feat","img":"icons/magic/air/fog-gas-smoke-swirling-gray.webp","system":{"description":{"value":"When it drops to 0 hit points outside its resting place, the vampire transforms into a cloud of mist (as in the Shapechanger trait) instead of falling unconscious, provided that it isn't in sunlight or running water. If it can't transform, it is destroyed.While it has 0 hit points in mist form, it can't revert to its vampire form, and it must reach its resting place within 2 hours or be destroyed. Once in its resting place, it reverts to its vampire form. It is then paralyzed until it regains at least 1 hit point. After spending 1 hour in its resting place with 0 hit points, it regains 1 hit point.A slain vampire transforms into a cloud of mist (as in the Shapechanger trait) instead of falling unconscious.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hMC7XCkDbzVMZ0QG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BDnluJG7T7FfBjsQ","name":"Regeneration","type":"feat","img":"icons/skills/wounds/anatomy-organ-heart-red.webp","system":{"description":{"value":"The vampire regains 20 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or running water. If the vampire takes radiant damage or damage from holy water, this trait doesn't function at the start of the vampire's next turn.The vampire regains 20 hit points at the start of its turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["20","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Av7H0ymGdPeTsnwV"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jc3NboVcwuEiXOYn","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The vampire can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RLsKLdfdmHajHSwD","name":"Vampire Weaknesses","type":"feat","img":"icons/magic/control/encase-creature-monster-hold.webp","system":{"description":{"value":"The vampire has the following flaws:\nForbiddance. The vampire can't enter a residence without an invitation from one of the occupants. \nHarmed by Running Water. The vampire takes 20 acid damage if it ends its turn in running water. \nStake to the Heart. If a piercing weapon made of wood is driven into the vampire's heart while the vampire is incapacitated in its resting place, the vampire is paralyzed until the stake is removed.\nSunlight Hypersensitivity. The vampire takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Ervkb8H99e2Beiae"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"siO3h9XOkgPVi78F","name":"Multiattack (Vampire Form Only)","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The vampire makes two attacks, only one of which can be a bite attack.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jYBYvv9EF1UnOvqZ","name":"Unarmed Strike (Vampire Form Only)","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 5 ft., one creature. Hit: 8 (1d8 + 4) bludgeoning damage. Instead of dealing damage, the vampire can grapple the target (escape DC 18).The Vampire attacks with its Unarmed Strike.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uqHuj7Pjf2sjny21","name":"Bite (Bat or Vampire Form Only)","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 7 (1d6 + 4) piercing damage plus 10 (3d6) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. A humanoid slain in this way and then buried in the ground rises the following night as a vampire spawn under the vampire's control.The Vampire attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6+@mod","piercing"],["3d6","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RHezeN7HzNf2oKYP","name":"Charm","type":"feat","img":"icons/creatures/eyes/human-single-blue.webp","system":{"description":{"value":"The vampire targets one humanoid it can see within 30 ft. of it. If the target can see the vampire, the target must succeed on a DC 17 Wisdom saving throw against this magic or be charmed by the vampire. The charmed target regards the vampire as a trusted friend to be heeded and protected. Although the target isn't under the vampire's control, it takes the vampire's requests or actions in the most favorable way it can, and it is a willing target for the vampire's bite attack.Each time the vampire or the vampire's companions do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the vampire is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect.The vampire targets one humanoid it can see within 30 ft. of it. If the target can see the vampire, the target must make a Wisdom saving throw against this magic.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.ykoo88OJOdfYH7mH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"c9z4o0fkxq37v8KY","name":"Children of the Night","type":"feat","img":"icons/magic/death/skull-trio-badge-purple.webp","system":{"description":{"value":"The vampire magically calls 2d4 swarms of bats or rats, provided that the sun isn't up. While outdoors, the vampire can call 3d6 wolves instead. The called creatures arrive in 1d4 rounds, acting as allies of the vampire and obeying its spoken commands. The beasts remain for 1 hour, until the vampire dies, or until the vampire dismisses them as a bonus action.The vampire magically calls swarms of bats or rats. While outdoors, the vampire can call wolves instead. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.dm2G9HupHZbZRvNm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rQOFEdWpVwJWS2U4","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe vampire can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The vampire regains spent legendary actions at the start of its turn.\n\nThe vampire can take 3 legendary actions.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hNBduaMwPI3vordA","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zV0DTNKndsVldLsV","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"o4v4mHxP82HTbIOX","name":"Move","type":"feat","img":"icons/skills/movement/feet-winged-boots-brown.webp","system":{"description":{"value":"The vampire moves up to its speed without provoking opportunity attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rEmbKJQ6mpvnUPOO","name":"Unarmed Strike","type":"feat","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"The vampire makes one unarmed strike.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.GsuvwoekKZatfKwF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pW4iNTQphTJ3litv","name":"Bite","type":"feat","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"The vampire makes a bite attack.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232679,"modifiedTime":1672596095031,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"E9CvDPDg5dFEpVjS","name":"Guard","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Alignment","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"","cr":0.125,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"any one language (usually Common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Guard","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"2reHgwNJRFbhmxqA","name":"Chain Shirt","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"Made of interlocking metal rings, a chain shirt is worn between layers of clothing or leather. This armor offers modest protection to the wearer's upper body and allows the sound of the rings rubbing against one another to be muffled by outer layers.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":20,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.p2zChy24ZJdVqMSH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sSs3hSzkKBMNBgTs","name":"Shield","type":"equipment","img":"icons/equipment/shield/oval-wooden-boss-steel.webp","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"92uVNexE43Z8D18r","name":"Spear","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"\nMelee or Ranged Weapon Attack: +3 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 4 (1d6 + 1) piercing damage or 5 (1d8 + 1) piercing damage if used with two hands to make a melee attack.\nThe Guard attacks with its Spear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"thr":true,"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.OG4nBBydvmfWYXIk"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232681,"modifiedTime":1672596095076,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"EI8w6XjzCZICkox9","name":"Eagle","type":"npc","img":"","system":{"abilities":{"str":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":3,"min":0,"max":3,"temp":0,"tempmax":0,"formula":"1d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Eagle","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"IffB1JYSLbOfFeCr","name":"Keen Sight","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The eagle has advantage on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Eagle","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FeybcW5pMzYjWRqq","name":"Talons","type":"weapon","img":"icons/creatures/claws/claw-scaled-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 4 (1d4 + 2) slashing damage.\nThe Eagle attacks with its Talons.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232683,"modifiedTime":1672596095113,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"EIgAW1dWVPpyWLUh","name":"Pegasus","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":59,"min":0,"max":59,"temp":0,"tempmax":0,"formula":"7d10 + 21"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":90,"swim":0,"walk":60,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"celestial","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"understands Celestial, Common, Elvish, and Sylvan but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Pegasus","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"1HxBbZFsegOJ0cgu","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.The Pegasus attacks with its Hooves.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232690,"modifiedTime":1672596095149,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"EMvcuOpu7ABCmBWi","name":"Assassin","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":78,"min":0,"max":78,"temp":null,"tempmax":0,"formula":"12d8 + 24"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any non-good","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"","cr":8,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["poison"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["cant","custom"],"custom":"any two languages"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Assassin","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"D4VxUJfO4pVUiCNj","name":"Studded Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-rivited-red.webp","system":{"description":{"value":"Made from tough but flexible leather, studded leather is reinforced with close-set rivets or spikes.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":13,"price":{"value":45,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.TIV3B1vbrVHIhQAm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ld00NpZe8Zl4J4Pi","name":"Assassinate","type":"feat","img":"icons/weapons/swords/sword-broad-crystal-paired.webp","system":{"description":{"value":"During its first turn, the assassin has advantage on attack rolls against any creature that hasn't taken a turn. Any hit the assassin scores against a surprised creature is a critical hit.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.IwqUTWqdgrKEvohr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"crRphULq6iIdlq88","name":"Evasion","type":"feat","img":"icons/magic/water/pseudopod-teal.webp","system":{"description":{"value":"If the assassin is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, the assassin instead takes no damage if it succeeds on the saving throw, and only half damage if it fails.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.xOgrn5QXzSP4QN6V"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EcECOhaJIpCtN2o7","name":"Sneak Attack","type":"feat","img":"icons/skills/melee/blade-tip-chipped-blood-red.webp","system":{"description":{"value":"Once per turn.\nThe assassin deals an extra 13 (4d6) damage when it hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 ft. of an ally of the assassin that isn't incapacitated and the assassin doesn't have disadvantage on the attack roll.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":"once per turn"},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.9uKShqfuA73duQsT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zaYTSI1nKtzBnQwf","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The assassin makes two shortsword attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Kbg12IJ0YW79vP06","name":"Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\nThe target must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\n\nThe Assassin attacks with their Shortsword. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"7d6","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.osLzOwQdPtrK3rQH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rNQK7okIBNZ2zDvD","name":"Light Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"\nRanged Weapon Attack: +6 to hit, range 80/320 ft., one target. Hit: 7 (1d8 + 3) piercing damage.\nThe target must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\n\nThe Assassin attacks with its Light Crossbow. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":0},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"7d6","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"lgt":true,"two":true,"amm":true,"fin":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.ddWvQRLmnnIS0eLF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232691,"modifiedTime":1672596095190,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ESEm3fGUfSKjzVUc","name":"Ice Mephit","type":"npc","img":"","system":{"abilities":{"str":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":21,"min":0,"max":21,"temp":0,"tempmax":0,"formula":"6d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":30,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Arctic","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"sm","di":{"value":["cold","poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":["bludgeoning","fire"],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["aquan","auran"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ice Mephit","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"D4cqlN9pDyQwRvWP","name":"Death Burst","type":"feat","img":"icons/magic/light/explosion-star-glow-yellow.webp","system":{"description":{"value":"When the mephit dies, it explodes in a burst of jagged ice. Each creature within 5 ft. of it must make a DC 10 Dexterity saving throw, taking 4 (1d8) slashing damage on a failed save, or half as much damage on a successful one.When the mephit dies, it explodes in a burst of jagged ice. Each creature within 5 ft. of it must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":"death"},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","slashing"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":10,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.net3yBKQoxl8bZ4r"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CG9kMpmgbBE0ePpO","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the mephit remains motionless, it is indistinguishable from an ordinary shard of ice.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qSKvifcPZvWEyQwS","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The mephit can innately cast fog cloud, requiring no material components. Its innate spellcasting ability is Charisma.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YEZPqZegxKiGO0Gq","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) cold damage.The Ice Mephit attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4+@mod","slashing"],["1d4","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1mD9NcCf8ZMQtsrU","name":"Frost Breath","type":"feat","img":"icons/magic/air/wind-tornado-wall-blue.webp","system":{"description":{"value":"The mephit exhales a 15-foot cone of cold air. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 5 (2d4) cold damage on a failed save, or half as much damage on a successful one.The mephit exhales a 15-foot cone of cold air. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4","cold"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":10,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Z7U6z4HD1ORlkTIJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"IBJmWjzbQGu7M4UX","name":"Fog Cloud","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a 20-foot-radius Sphere of fog centered on a point within range. The sphere spreads around corners, and its area is heavily obscured. It lasts for the Duration or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the radius of the fog increases by 20 feet for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.IBJmWjzbQGu7M4UX"}},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234109,"modifiedTime":1661791116325,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232693,"modifiedTime":1672596095240,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ET4PEVEiNJLU4f7c","name":"Wraith","type":"npc","img":"","system":{"abilities":{"str":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":67,"min":0,"max":67,"temp":null,"tempmax":0,"formula":"9d8 + 27"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":0,"units":"ft","hover":true},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["necrotic","poison"],"bypasses":[],"custom":""},"dr":{"value":["acid","bludgeoning","cold","fire","lightning","piercing","slashing","thunder"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","grappled","paralyzed","petrified","poisoned","prone","restrained","exhaustion"],"custom":""},"languages":{"value":[],"custom":"the languages it knew in life"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Wraith","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"RADMbiPme1Hrfu8E","name":"Create Specter","type":"feat","img":"icons/creatures/abilities/dragon-breath-purple.webp","system":{"description":{"value":"The wraith targets a humanoid within 10 feet of it that has been dead for no longer than 1 minute and died violently. The target's spirit rises as a specter in the space of its corpse or in the nearest unoccupied space. The specter is under the wraith's control. The wraith can have no more than seven specters under its control at one time.The target's spirit rises as a specter in the space of its corpse or in the nearest unoccupied space. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.SlAF2AE4ZKoUvQql"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"idILnIUj76QH9v8w","name":"Incorporeal Movement","type":"feat","img":"icons/skills/movement/feet-winged-boots-brown.webp","system":{"description":{"value":"The wraith can move through other creatures and objects as if they were difficult terrain. It takes 5 (1d10) force damage if it ends its turn inside an object.The wraith can move through other creatures and objects as if they were difficult terrain.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LUHmtIDD1VTreFqI"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xZPFtf2vCYraWXVe","name":"Wraith - Life Drain","type":"weapon","img":"icons/magic/unholy/strike-hand-glow-pink.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one creature. Hit: 21 (4d8 + 3) necrotic damage. The target must succeed on a DC 14 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.The Wraith attacks with its Life Drain. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8 + @mod","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3ERjE4pz2bgxXIPi","name":"Sunlight Sensitivity","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"While in sunlight, the wraith has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.F14aW2Ke3I5ZtSg4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232695,"modifiedTime":1672596095283,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"EYiQZ3rFL25fEJY5","name":"Dire Wolf","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":37,"min":0,"max":37,"temp":0,"tempmax":0,"formula":"5d10 + 10"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Dire Wolf","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"K0u6bJqRtcj0cSzK","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The wolf has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"weFcATmtqqUJ39Pw","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The wolf has advantage on an attack roll against a creature if at least one of the wolf's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tx9xPDEQ8osJq6ZQ","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\nIf the target is a creature, it must succeed on a DC 13 Strength saving throw or be knocked prone.\n\nThe Dire Wolf attacks with its Bite. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232697,"modifiedTime":1672596095322,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"EZgiprHXA2D7Uyb3","name":"Frog","type":"npc","img":"","system":{"abilities":{"str":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"1d4 - 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":20,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":30,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Frog","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"8Y7gW0cyZLIzdvQb","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The frog can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3CnWEl3LzMTy99vo","name":"Standing Leap","type":"feat","img":"icons/magic/fire/barrier-wall-explosion-orange.webp","system":{"description":{"value":"The frog's long jump is up to 10 ft. and its high jump is up to 5 ft., with or without a running start.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Frog","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.f4yvSah35ixQOswD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232699,"modifiedTime":1672596095359,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"EpYl7qifM5pq6W6B","name":"Cockatrice","type":"npc","img":"","system":{"abilities":{"str":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":27,"min":0,"max":27,"temp":0,"tempmax":0,"formula":"6d6 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":40,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Cockatrice","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"gpxvIs8yjQ4awt4s","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one creature. Hit: 3 (1d4 + 1) piercing damage.The target must succeed on a DC 11 Constitution saving throw against being magically petrified. On a failed save, the creature begins to turn to stone and is restrained. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is petrified for 24 hours.The Cockatrice attacks with its Bite. The target must make a Constitution saving throw. On a failed save, it must repeat the saving throw at the end of its next turn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":true,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"ada":false,"mgc":false,"sil":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232700,"modifiedTime":1672596095392,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"EqJUA3Z3181RSSFU","name":"Flying Sword","type":"npc","img":"","system":{"abilities":{"str":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":17,"min":0,"max":17,"temp":0,"tempmax":0,"formula":"5d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":50,"swim":0,"walk":0,"units":"ft","hover":true},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":"Blind beyond this radius"},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"construct","subtype":"","swarm":"","custom":""},"environment":"","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"sm","di":{"value":["poison","psychic"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["blinded","charmed","deafened","frightened","paralyzed","petrified","poisoned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Flying Sword","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"alpha":1,"light":{"alpha":0.5,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"reverse":false,"type":null},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.3},"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"KFvtNOH2AMQIWRps","name":"Antimagic Susceptibility","type":"feat","img":"icons/magic/lightning/orb-ball-purple.webp","system":{"description":{"value":"The sword is incapacitated while in the area of an antimagic field. If targeted by dispel magic, the sword must succeed on a Constitution saving throw against the caster's spell save DC or fall unconscious for 1 minute.The sword is incapacitated while in the area of an antimagic field.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KMQAgNxBCAHrd2JU"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EY5bnNsvwwHGfCk1","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the sword remains motionless and isn't flying, it is indistinguishable from a normal sword.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"D2cJQHQa8UQp99Wt","name":"Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage.\nThe Flying Sword attacks!","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232702,"modifiedTime":1672596095429,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"F0yILX4xKKt4dxKY","name":"Reef Shark","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"4d8 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":0,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Reef Shark","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"vFBjTLrkdsB0llcn","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The shark has advantage on an attack roll against a creature if at least one of the shark's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nA5rxVuopudrZgZB","name":"Water Breathing","type":"feat","img":"icons/magic/water/projectile-water-ice-orb.webp","system":{"description":{"value":"The shark can breathe only underwater.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.c4Q6NDCLJSNcNc9T"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9xaHEynEl0adgcJ4","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\nThe Reef Shark attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232703,"modifiedTime":1672596095468,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FQMFuzzSh73d0Nrd","name":"Camel","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":9,"calc":"natural","formula":""},"hp":{"value":15,"min":0,"max":15,"temp":0,"tempmax":0,"formula":"2d10 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":0.125,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Camel","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"XY89jRSGIvqLmLmw","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 2 (1d4) bludgeoning damage.\nThe Camel attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232704,"modifiedTime":1672596095506,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FWSDiq9SZsdiBAa8","name":"Sea Horse","type":"npc","img":"","system":{"abilities":{"str":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"1d4 - 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":20,"walk":0,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Sea Horse","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"PBYkvhJmi5ACi2MO","name":"Water Breathing","type":"feat","img":"icons/magic/water/bubbles-air-water-blue.webp","system":{"description":{"value":"The sea horse can breathe only underwater.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.c4Q6NDCLJSNcNc9T"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232706,"modifiedTime":1672596095540,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FayqbnjBMszO6Pat","name":"Tiger","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":37,"min":0,"max":37,"temp":0,"tempmax":0,"formula":"5d10 + 10"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Tiger","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"G2GfXsv9MMfL3lc5","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The tiger has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wklAUVakX97y0z2S","name":"Pounce","type":"feat","img":"icons/creatures/claws/claw-talons-glowing-orange.webp","system":{"description":{"value":"\nIf the tiger moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a DC 13 Strength saving throw or be knocked prone.\nIf the target is prone, the panther can make one bite attack against it as a bonus action.\n\nIf the tiger moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must make a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.MqAVplIArAKzpnXB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YypXtXEL61FqWYOP","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.\nThe Tiger attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7GCnVtakQo6iZyn7","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage.\nThe Tiger attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232707,"modifiedTime":1672596095579,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FzvZ6xl3U9GoL9ju","name":"Young Brass Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":110,"min":0,"max":110,"temp":0,"tempmax":0,"formula":"13d10 + 39"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":20,"climb":0,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":6,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Young Brass Dragon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"dYJy66Ftt58qpTUi","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.The Young Brass Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"h8ocFdixa3iZVj0m","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Fire Breath.** The dragon exhales fire in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 42 (12d6) fire damage on a failed save, or half as much damage on a successful one.\n**Sleep Breath.** The dragon exhales sleep gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw or fall unconscious for 5 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"oXGdDIdmBZe6g4Uo","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\n**Fire Breath.** The dragon exhales fire in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 42 (12d6) fire damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales fire in a 40-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":"Breath weapon must be charged"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":40,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JPo2TKHFQ4pJKZqr","name":"Sleep Breath","type":"feat","img":"icons/magic/perception/third-eye-blue-red.webp","system":{"description":{"value":"\n**Sleep Breath.** The dragon exhales sleep gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw or fall unconscious for 5 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n\nThe dragon exhales sleep gas in a 30-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":"Breath Weapon must be charged"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.43BnuqkQgg5l1Nfh"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YHom7FFObzrKEBLQ","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.The Young Brass Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"oyNvUJRyGRVF22t8","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232709,"modifiedTime":1672596095622,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"G9PENY6nw0xRxCJW","name":"Unicorn","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":67,"min":0,"max":67,"temp":0,"tempmax":0,"formula":"9d10 + 18"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"celestial","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","paralyzed","poisoned"],"custom":""},"languages":{"value":["celestial","elvish","sylvan"],"custom":"Telepathy 60 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Unicorn","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"iWDQPwdffkW06c2Y","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"If the unicorn moves at least 20 ft. straight toward a target and then hits it with a horn attack on the same turn, the target takes an extra 9 (2d8) piercing damage. If the target is a creature, it must succeed on a DC 15 Strength saving throw or be knocked prone.If the unicorn moves at least 20 ft. straight toward a target and then hits it with a horn attack on the same turn, the target takes extra piercing damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","piercing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":15,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8yPzMeXvBJC2POQK","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The unicorn's innate spellcasting ability is Charisma (spell save DC 14). The unicorn can innately cast the following spells, requiring no components:\nAt will: detect evil and good, druidcraft, pass without trace\n1/day each: calm emotions, dispel evil and good, entangle","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MW3V6fHknXOLuVxU","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The unicorn has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hyiKyfKiplfTQ0ZX","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The unicorn's weapon attacks are magical.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vnAmgF7ZkpmDIJSc","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The unicorn makes two attacks: one with its hooves and one with its horn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"f7m44y4TqYYcunMj","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"Melee Weapon Attack: +7 to hit, reach 5 ft ., one target. Hit: 11 (2d6 + 4) bludgeoning damage.The Unicorn attacks with its Hooves.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ORrGdhTLKLTKK3BH","name":"Horn","type":"weapon","img":"icons/commodities/bones/horn-simple-grey.webp","system":{"description":{"value":"Melee Weapon Attack: +7 to hit, reach 5 ft ., one target. Hit: 8 (1d8 + 4) piercing damage.The Unicorn attacks with its Horn.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.aa9KuBy4dst7WIW9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uCaHWOOBeJEyR1ay","name":"Healing Touch","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"The unicorn touches another creature with its horn. The target magically regains 11 (2d8 + 2) hit points. In addition, the touch removes all diseases and neutralizes all poisons afflicting the target.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+2","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.r3Ugp8f5Ckw2EUHL"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"W5ceTePXIPlUuiEY","name":"Teleport","type":"feat","img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","system":{"description":{"value":"The unicorn magically teleports itself and up to three willing creatures it can see within 5 ft. of it, along with any equipment they are wearing or carrying, to a location the unicorn is familiar with, up to 1 mile away.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":3,"width":null,"units":"","type":"creature"},"range":{"value":1,"long":null,"units":"mi"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.PPzVD90vab60FqCt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uGNhUMAmD8L5AD1M","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe unicorn can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The unicorn regains spent legendary actions at the start of its turn.\n\nThe unicorn can take 3 legendary actions.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"A9f9DUM9Sh0qLYlF","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MdpCZRnBOnzgAKPg","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UNbcqlW8Siek0Fpm","name":"Hooves","type":"feat","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"The unicorn makes one attack with its hooves.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ps56FcAJxi2L3QdZ","name":"Shimmering Shield","type":"feat","img":"icons/magic/light/explosion-star-large-blue-yellow.webp","system":{"description":{"value":"The unicorn creates a shimmering, magical field around itself or another creature it can see within 60 feet of it. The target gains a +2 bonus to AC until the end of the unicorn's next turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.8l0R2MIYxWxYJT6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Plfy8GZ08uqupxe6","name":"Heal Self","type":"feat","img":"icons/magic/life/ankh-gold-blue.webp","system":{"description":{"value":"The unicorn magically regains 11 (2d8+2) hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":3,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":3},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+2","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.gklxiU0PKYSM7RWv"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Mzh95utKDPIrjiH8","name":"Detect Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Mzh95utKDPIrjiH8"}},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234128,"modifiedTime":1661791116345,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"SbSvZKkJASyk8jKo","name":"Druidcraft","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Whispering to the spirits of Nature, you create one of the following Effects within range:\n\nYou create a tiny, harmless sensory effect that predicts what the weather will be at your location for the next 24 hours. The effect might manifest as a golden orb for clear skies, a cloud for rain, Falling snowflakes for snow, and so on. This effect persists for 1 round.\nYou instantly make a flower blossom, a seed pod open, or a leaf bud bloom.\nYou create an Instantaneous, harmless sensory effect, such as Falling leaves, a puff of wind, the sound of a small animal, or the faint odor of skunk. The effect must fit in a 5-foot cube.\nYou instantly light or snuff out a Candle, a torch, or a small campfire.\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.SbSvZKkJASyk8jKo"}},"img":"icons/magic/nature/vines-thorned-glow-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234141,"modifiedTime":1661791116345,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pRMvmknwLf2tdMTj","name":"Pass without Trace","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A veil of shadows and Silence radiates from you, masking you and your companions from detection. For the Duration, each creature you choose within 30 feet of you (including you) has a +10 bonus to Dexterity (Stealth) checks and can't be tracked except by magical means. A creature that receives this bonus leaves behind no tracks or other traces of its passage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Ashes from a burned leaf of mistletoe and a sprig of spruce","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.pRMvmknwLf2tdMTj"}},"img":"icons/magic/air/fog-gas-smoke-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234227,"modifiedTime":1661791116345,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"3MYDjS6k9IYL0aTj","name":"Calm Emotions","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to suppress strong emotions in a group of people. Each humanoid in a 20-foot-radius sphere centered on a point you choose within range must make a Charisma saving throw; a creature can choose to fail this saving throw if it wishes. If a creature fails its saving throw, choose one of the following two effects. You can suppress any effect causing a target to be charmed or frightened. When this spell ends, any suppressed effect resumes, provided that its duration has not expired in the meantime.Alternatively, you can make a target indifferent about creatures of your choice that it is hostile toward. This indifference ends if the target is attacked or harmed by a spell or if it witnesses any of its friends being harmed. When the spell ends, the creature becomes hostile again, unless the DM rules otherwise.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":14,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.3MYDjS6k9IYL0aTj"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234063,"modifiedTime":1661791116345,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"TkJ8Wtg1L7TZtspm","name":"Dispel Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Shimmering energy surrounds and protects you from fey, Undead, and creatures originating from Beyond the Material Plane. For the Duration, Celestials, Elementals, fey, Fiends, and undead have disadvantage on Attack rolls against you.You can end the spell early by using either of the following special functions.Break Enchantment. As your action, you touch a creature you can reach that is Charmed, Frightened, or possessed by a Celestial, an elemental, a fey, a fiend, or an Undead. The creature you touch is no longer charmed, frightened, or possessed by such creatures.Dismissal. As your action, make a melee spell Attack against a Celestial, an elemental, a fey, a fiend, or an Undead you can reach. On a hit, you attempt to drive the creature back to its home plane. The creature must succeed on a Charisma saving throw or be sent back to its home plane (if it isn't there already). If they aren't on their home plane, undead are sent to the Shadowfell, and fey are sent to the Feywild.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":14,"scaling":"spell"},"level":5,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Holy water or powdered silver and iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.TkJ8Wtg1L7TZtspm"}},"img":"icons/magic/air/air-burst-spiral-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234146,"modifiedTime":1661791116346,"lastModifiedBy":"dnd5ebuilder0000"}},{"name":"Entangle","type":"spell","img":"icons/magic/nature/vines-thorned-curled-glow-green.webp","system":{"description":{"value":"Grasping weeds and vines sprout from the ground in a 20-foot square starting from a point within range. For the Duration, these Plants turn the ground in the area into difficult terrain.A creature in the area when you cast the spell must succeed on a Strength saving throw or be Restrained by the entangling Plants until the spell ends. A creature restrained by the plants can use its action to make a Strength check against your spell save DC. On a success, it frees itself.When the spell ends, the conjured Plants wilt away.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":14,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[],"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gMrWeG8fMDPRFiVe"}},"_id":"gMrWeG8fMDPRFiVe","folder":null,"sort":0,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234191,"modifiedTime":1661791116346,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232710,"modifiedTime":1672596095722,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"GP8JMSDugRxuLOD2","name":"Adult Green Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":207,"min":0,"max":207,"temp":0,"tempmax":0,"formula":"18d12 + 90"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":15,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Adult Green Dragon","displayName":0,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"iSMssiqxkZFEt2ch","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dOplnQbE1lIu7Rt8","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dhanHpeimPZOKFTP","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZJR61a1mg2JHdHE0","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+11 to hit,, 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 7 (2d6) poison damage.\nThe Adult Green Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["2d6","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"I4ycwNCADZj1bun0","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.The Adult Green Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HwjAaKkl4iBsFB24","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.The Adult Green Dragon attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"k9uTT39kBp2sDDUE","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours .Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":16,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WAglSb6wsm8V1iCd","name":"Poison Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"The dragon exhales poisonous gas in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 56 (16d6) poison damage on a failed save, or half as much damage on a successful one.The dragon exhales poisonous gas in a 60-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["16d6","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JAEclghgOT24pQD9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jls6tBzceKBhLIJ9","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hj8x2cAmsCz65VMp","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jp6U9gVAnEqYxjal","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nThe dragon makes a tail attack.\n\nThe dragon slams its long tail against its foe!","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mjuHphDtsXPuLymt","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"\nThe dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 19 Dexterity saving throw or take 15 (2d6+6) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.\n\nThe dragon beats its wings!","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":19,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"N0yg5M0tfiYJqxjz","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7HzyoXYLdWSACePR","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232713,"modifiedTime":1672596095831,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"GlaCGcgIP6YjBjGc","name":"Noble","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":9,"min":0,"max":9,"temp":0,"tempmax":0,"formula":"2d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Alignment","race":"","type":{"value":"humanoid","subtype":"Any Race","swarm":"","custom":""},"environment":"","cr":0.125,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"any two languages"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Noble","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"87olpriernjyGLbC","name":"Breastplate","type":"equipment","img":"icons/equipment/chest/breastplate-layered-steel-black.webp","system":{"description":{"value":"This armor consists of a fitted metal chest piece worn with supple leather. Although it leaves the legs and arms relatively unprotected, this armor provides good protection for the wearer's vital organs while leaving the wearer relatively unencumbered.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":20,"price":{"value":400,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.SK2HATQ4abKUlV8i"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"f12lOXuMaI21HDrz","name":"Rapier","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 5 (1d8 + 1) piercing damage.The Noble attacks with its Rapier.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":true,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Tobce1hexTnDk4sV"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HhLmdqeivyDnsemN","name":"Parry","type":"feat","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"The noble adds 2 to its AC against one melee Attack that would hit it. To do so, the noble must see the attacker and be wielding a melee weapon.The noble adds 2 to its AC against one melee Attack that would hit it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kfi26Jy0VLXv9TTm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232715,"modifiedTime":1672596095876,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"GpeQYtlo8oGvGlkM","name":"Grimlock","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":"10 ft. while deafened (blind beyond this radius)"},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"humanoid","subtype":"Grimlock","swarm":"","custom":""},"environment":"Underdark","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["blinded"],"custom":""},"languages":{"value":["undercommon"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Grimlock","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"MqBAJfU738aXBgBE","name":"Blind Senses","type":"feat","img":"icons/magic/control/hypnosis-mesmerism-eye.webp","system":{"description":{"value":"The grimlock can't use its blindsight while deafened and unable to smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.7nbokvWfSckl2iWz"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GUsD8GdOLhuqFUih","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The grimlock has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"B7KYqupW3iRUpWAU","name":"Stone Camouflage","type":"feat","img":"icons/environment/settlement/stone-stairs.webp","system":{"description":{"value":"The grimlock has advantage on Dexterity (Stealth) checks made to hide in rocky terrain.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.j1cPfWFNvxGoex9Z"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"aEWZXCiyNusgb3Ro","name":"Spiked Bone Club","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 5 (1d4 + 3) bludgeoning damage plus 2 (1d4) piercing damage.The Grimlock attacks with its Spiked Bone Club.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","bludgeoning"],["1d4","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232716,"modifiedTime":1672596095914,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"GxgIVRX5GbVTifiF","name":"Giant Scorpion","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":52,"min":0,"max":52,"temp":0,"tempmax":0,"formula":"7d10 + 14"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":3,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Scorpion","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"wpqra38jsZPRAuov","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The scorpion makes three attacks: two with its claws and one with its sting.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OJ2b64O3e1nni21W","name":"Claw","type":"weapon","img":"icons/commodities/claws/claw-pincer-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 6 (1d8 + 2) bludgeoning damage.\nThe target is grappled (escape DC 12). The scorpion has two claws, each of which can grapple only one target.\n\nThe Giant Scorpion attacks with its Claw. The target is grappled.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":false,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"q6uVUHWyzht5OpwV","name":"Sting","type":"weapon","img":"icons/creatures/abilities/stinger-poison-green.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 7 (1d10 + 2) piercing damage.\nThe target must make a DC 12 Constitution saving throw, taking 22 (4d10) poison damage on a failed save, or half as much damage on a successful one.\n\nThe Giant Scorpion attacks with its Sting. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"4d10","save":{"ability":"con","dc":12,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":false,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232718,"modifiedTime":1672596095952,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"HB49mCOVBXwWeKWQ","name":"Orc","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":15,"min":0,"max":15,"temp":0,"tempmax":0,"formula":"2d8 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"humanoid","subtype":"Orc","swarm":"","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","orc"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Orc","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"MY9hQkOnh2onjZEh","name":"Hide Armor","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":12,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.n1V07puo0RQxPGuF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Go8ESMzuWcYaFcqE","name":"Aggressive","type":"feat","img":"icons/creatures/abilities/mouth-teeth-tongue-purple.webp","system":{"description":{"value":"As a bonus action, the orc can move up to its speed toward a hostile creature that it can see.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.7NML6SkyvOsZ17iq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bGmBlXrvTBQgPMBJ","name":"Greataxe","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 9 (1d12 + 3) slashing damage.The Orc attacks with its Greataxe.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":30,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.1Lxk6kmoRhG8qQ0u"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SrRZ2hBUcaXZiRab","name":"Javelin","type":"weapon","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"Melee or Ranged Weapon Attack: +5 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 6 (1d6 + 3) piercing damage.The Orc attacks with its Javelin.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":true},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DWLMnODrnHn8IbAG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232720,"modifiedTime":1672596095993,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"HPUO3weiwRQnql0d","name":"Cloaker","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":78,"min":0,"max":78,"temp":0,"tempmax":0,"formula":"12d10 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":40,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Neutral","race":"","type":{"value":"aberration","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":8,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["deep","undercommon"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Cloaker","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"afXMbT7smRaCJbhc","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one creature. Hit: 10 (2d6 + 3) piercing damage, and if the target is Large or smaller, the cloaker attaches to it. If the cloaker has advantage against the target, the cloaker attaches to the target's head, and the target is blinded and unable to breathe while the cloaker is attached. While attached, the cloaker can make this attack only against the target and has advantage on the attack roll. The cloaker can detach itself by spending 5 feet of its movement. A creature, including the target, can take its action to detach the cloaker by succeeding on a DC 16 Strength check.The Cloaker attacks with its Bite. A creature, including the target, can take its action to detach the cloaker by succeeding on a Strength check.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Dfy6ujJALd2FPxNy","name":"Damage Transfer","type":"feat","img":"icons/magic/water/strike-ice-blades.webp","system":{"description":{"value":"While attached to a creature, the cloaker takes only half the damage dealt to it (rounded down) and that creature takes the other half.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.0npeEcwmiVMdwGMV"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"i7LEQhKLh7yPIldc","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the cloaker remains motionless without its underside exposed, it is indistinguishable from a dark leather cloak.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DxtSFI4LS6w1gzQP","name":"Light Sensitivity","type":"feat","img":"icons/magic/time/day-night-sunset-sunrise.webp","system":{"description":{"value":"While in bright light, the cloaker has disadvantage on attack rolls and Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.2l557y06401lwsqs"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"E76WCem1q8Dt8qkE","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The cloaker makes two attacks: one with its bite and one with its tail.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZRvdvg8n7pQdJ1Mj","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 10 ft., one creature. Hit: 7 (1d8 + 3) slashing damage.The Cloaker attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Jiua0A8CFeKc7Zun","name":"Moan","type":"feat","img":"icons/magic/death/projectile-skull-flaming-green.webp","system":{"description":{"value":"Each creature within 60 feet of the cloaker that can hear its moan and that isn't an aberration must succeed on a DC 13 Wisdom saving throw or become frightened until the end of the cloaker's next turn. If a creature's saving throw is successful, the creature is immune to the cloaker's moan for the next 24 hours.Each creature within 60 feet of the cloaker that can hear its moan and that isn't an aberration must make a Wisdom saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"radius"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"cha"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VvXrTnB2FscxqbG3"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UYqrfrW4pmBsmtiQ","name":"Phantasms","type":"feat","img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","system":{"description":{"value":"The cloaker magically creates three illusory duplicates of itself if it isn't in bright light. The duplicates move with it and mimic its actions, shifting position so as to make it impossible to track which cloaker is the real one. If the cloaker is ever in an area of bright light, the duplicates disappear.\nWhenever any creature targets the cloaker with an attack or a harmful spell while a duplicate remains, that creature rolls randomly to determine whether it targets the cloaker or one of the duplicates. A creature is unaffected by this magical effect if it can't see or if it relies on senses other than sight.\nA duplicate has the cloaker's AC and uses its saving throws. If an attack hits a duplicate, or if a duplicate fails a saving throw against an effect that deals damage, the duplicate disappears.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.t0ojYPOlKEbPpYNc"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232722,"modifiedTime":1672596096080,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"HlddcPm4cWptj3ka","name":"Tyrannosaurus Rex","type":"npc","img":"","system":{"abilities":{"str":{"value":25,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":136,"min":0,"max":136,"temp":0,"tempmax":0,"formula":"13d12 + 52"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":8,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Tyrannosaurus Rex","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.3,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"O8pEyHMhxCwROJ6O","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 33 (4d12 + 7) piercing damage. If the target is a Medium or smaller creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the tyrannosaurus can't bite another target.The Tyrannosaurus Rex attacks with its Bite. If the target is a Medium or smaller creature, it is grappled. Until this grapple ends, the target is restrained, and the tyrannosaurus can't bite another target.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d12 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Fi45qe2ncVZHNq43","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The tyrannosaurus makes two attacks: one with its bite and one with its tail. It can't make both attacks against the same target.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jw9SyNUWRzgHe37B","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.The Tyrannosaurus Rex attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232724,"modifiedTime":1672596096123,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Hm4o2FgPZsdbXjLq","name":"Flesh Golem","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":9,"calc":"natural","formula":""},"hp":{"value":93,"min":0,"max":93,"temp":null,"tempmax":0,"formula":"11d8 + 44"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"construct","subtype":"","swarm":"","custom":""},"environment":"","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["bludgeoning","lightning","piercing","poison","slashing"],"bypasses":["ada","mgc"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","paralyzed","petrified","poisoned","exhaustion"],"custom":""},"languages":{"value":["custom"],"custom":"understands the languages of its creator but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Flesh Golem","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"AwiZrSjLzs3aNC33","name":"Berserk","type":"feat","img":"icons/creatures/reptiles/lizard-mouth-glowing-red.webp","system":{"description":{"value":"Whenever the golem starts its turn with 40 hit points or fewer, roll a d6. On a 6, the golem goes berserk. On each of its turns while berserk, the golem attacks the nearest creature it can see. If no creature is near enough to move to and attack, the golem attacks an object, with preference for an object smaller than itself. Once the golem goes berserk, it continues to do so until it is destroyed or regains all its hit points. The golem's creator, if within 60 feet of the berserk golem, can try to calm it by speaking firmly and persuasively. The golem must be able to hear its creator, who must take an action to make a DC 15 Charisma (Persuasion) check. If the check succeeds, the golem ceases being berserk. If it takes damage while still at 40 hit points or fewer, the golem might go berserk again.The golem goes berserk. On each of its turns while berserk, the golem attacks the nearest creature it can see. If no creature is near enough to move to and attack, the golem attacks an object, with preference for an object smaller than itself.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d6","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.QOWoa60SwvsQJifN"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ee9WvQyqy1lRYtuj","name":"Aversion of Fire","type":"feat","img":"icons/magic/fire/projectile-wave-arrow.webp","system":{"description":{"value":"If the golem takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn.If the golem takes fire damage, it has disadvantage on some rolls.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.uxFQ3TxO3isW5WKK"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NnEyJiIMUFY8ovfl","name":"Immutable Form","type":"feat","img":"icons/magic/unholy/orb-beam-pink.webp","system":{"description":{"value":"The golem is immune to any spell or effect that would alter its form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.MFuiImIvLzYA3osc"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"27csbMlmaIFdMcTA","name":"Lightning Absorption","type":"feat","img":"icons/magic/lightning/bolt-strike-blue.webp","system":{"description":{"value":"Whenever the golem is subjected to lightning damage, it takes no damage and instead regains a number of hit points equal to the lightning damage dealt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KTsFgSQlDetDDm1f"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EAWR3fONAFox5cvp","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The golem has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"R8MFu1EkI4xBgXXr","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The golem's weapon attacks are magical.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mCNNxLGdzy54omRW","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The golem makes two slam attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mjn0iMGrjGTOn42w","name":"Slam","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.The Flesh Golem attacks with its Slam.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232725,"modifiedTime":1672596096160,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Hn8FFLEzscgT7azz","name":"Giant Centipede","type":"npc","img":"","system":{"abilities":{"str":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":4,"min":0,"max":4,"temp":0,"tempmax":0,"formula":"1d6 + 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Centipede","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"8EvqvqLumOBhrjeD","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage.\nThe target must succeed on a DC 11 Constitution saving throw or take 10 (3d6) poison damage. If the poison damage reduces the target to 0 hit points, the target is stable but poisoned for 1 hour, even after regaining hit points, and is paralyzed while poisoned in this way.\n\nThe Giant Centipede attacks with its Bite. The target must succeed on a DC 11 Constitution saving throw or take poison damage. If the poison damage reduces the target to 0 hit points, the target is stable but poisoned for 1 hour, even after regaining hit points, and is paralyzed while poisoned in this way.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":"3d6"},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232727,"modifiedTime":1672596096198,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"I2x01hzOjVN4NUjf","name":"Lizard","type":"npc","img":"","system":{"abilities":{"str":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":2,"min":0,"max":2,"temp":0,"tempmax":0,"formula":"1d4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":20,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":30,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Lizard","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"AlO7NtMS64z0faPM","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+0 to hit,, 5 ft., one target. Hit: 1 piercing damage.\nThe Lizard attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232729,"modifiedTime":1672596096235,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"IZMbiAHqQpzPo0CX","name":"Black Dragon Wyrmling","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":33,"min":0,"max":33,"temp":0,"tempmax":0,"formula":"6d8 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["acid"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Black Dragon Wyrmling","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ABS9Om2RejM5wrRF","name":"Acid Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"The dragon exhales acid in a 15-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 22 (5d8) acid damage on a failed save, or half as much damage on a successful one.Each creature in that line must make a DC 11 Dexterity saving throw, taking 22 (5d8) acid damage on a failed save, or half as much damage on a successful one.The dragon exhales acid in a 15-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8","acid"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zjcGly9P3Gn9MXt7"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"50udgXso5dIQmQfv","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dmLvn6VGNA20rMvC","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) acid damage.The Black Dragon Wyrmling attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"],["1d4","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232730,"modifiedTime":1672596096280,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"IiEDPMWqBlzkggYD","name":"Azer","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":"15"},"hp":{"value":39,"min":0,"max":39,"temp":0,"tempmax":0,"formula":"6d8 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Neutral","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["ignan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Azer","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":10,"coloration":1,"dim":20,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"sSs3hSzkKBMNBgTs","name":"Shield","type":"equipment","img":"icons/equipment/shield/oval-wooden-boss-steel.webp","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"P0pbiook7Q79UYqQ","name":"Heated Body","type":"feat","img":"icons/magic/earth/volcano-explosion-lava-yellow.webp","system":{"description":{"value":"A creature that touches the azer or hits it with a melee attack while within 5 feet of it takes 5 (1d10) fire damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iFNpsEMJT66eLoat"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WRygAnkpMeaqiw70","name":"Heated Weapons","type":"feat","img":"icons/skills/melee/strike-sword-blood-red.webp","system":{"description":{"value":"\nWhen the azer hits with a metal melee weapon, it deals an extra 3 (1d6) fire damage (included in the attack).\n\nWhen the azer hits with a metal melee weapon, it deals extra fire damage (included in the attack).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.i3viKtKcSVeWLJFJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"oPddwb4BScCEDanp","name":"Illumination","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"The azer sheds bright light in a 10-foot radius and dim light for an additional 10 ft.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.F3gzBbCW7U14zkBF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YvzdCGQeCV1XOcUt","name":"Warhammer","type":"weapon","img":"icons/weapons/hammers/hammer-drilling-spiked.webp","system":{"description":{"value":"\n\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage, or 8 (1d10 + 3) bludgeoning damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.\n\n\nA heavy metal hammer capable of being wielded with a single hand with a shield or in two hands to deliver crushing concussive blows.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","bludgeoning"],["1d6","fire"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.F0Df164Xv1gWcYt0"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232732,"modifiedTime":1672596096323,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Ixo5shumxy4I9qyD","name":"Giant Toad","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":39,"min":0,"max":39,"temp":0,"tempmax":0,"formula":"6d10 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":30,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Toad","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"rNhsbUDaAVVoxquv","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The toad can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zEtaamYVRSqu81fy","name":"Standing Leap","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The toad's long jump is up to 20 ft. and its high jump is up to 10 ft., with or without a running start.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.f4yvSah35ixQOswD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lYSWskOMRCVLyWLZ","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 5 (1d10) poison damage.\nThe target is grappled (escape DC 13). Until this grapple ends, the target is restrained, and the toad can't bite another target.\n\nThe Giant Toad attacks with its Bite. The target is grappled. Until this grapple ends, the target is restrained, and the toad can't bite another target.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"],["1d10","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6aBDwlIsxceFMXxL","name":"Swallow","type":"feat","img":"icons/creatures/abilities/mouth-teeth-tongue-purple.webp","system":{"description":{"value":"\nThe toad makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is swallowed, and the grapple ends.\nThe swallowed target is blinded and restrained, it has total cover against attacks and other effects outside the toad, and it takes 10 (3d6) acid damage at the start of each of the toad's turns. The toad can have only one target swallowed at a time. If the toad dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 5 ft. of movement, exiting prone.\n\nThe Giant Toad attacks with its Swallow.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.aH5ncM30tP8tPQ24"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232734,"modifiedTime":1672596096363,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"IyIybE5t2adMEVUM","name":"Ghast","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":36,"min":0,"max":36,"temp":0,"tempmax":0,"formula":"8d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["necrotic"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","poisoned","exhaustion"],"custom":""},"languages":{"value":["common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ghast","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"gBiHo206x7uGoySO","name":"Stench","type":"feat","img":"icons/commodities/tech/smoke-bomb-purple.webp","system":{"description":{"value":"Any creature that starts its turn within 5 ft. of the ghast must succeed on a DC 10 Constitution saving throw or be poisoned until the start of its next turn. On a successful saving throw, the creature is immune to the ghast's Stench for 24 hours.Any creature that starts its turn within 5 ft. of the ghast must succeed on a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":10,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.OsPhT7jA5LlvUA6e"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WjqNhFTYP9w4gGHd","name":"Turn Defiance","type":"feat","img":"icons/creatures/abilities/dragon-breath-purple.webp","system":{"description":{"value":"The ghast and any ghouls within 30 ft. of it have advantage on saving throws against effects that turn undead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.oi1sikVSw463lQlp"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nSgLkorv2oln5BIt","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one creature. Hit: 12 (2d8 + 3) piercing damage.The Ghast attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"-2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ricjyd1SKzeQ5gQE","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage. If the target is a creature other than an undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.The Ghast attacks with its Claws. If the target is a creature other than an undead, it must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232735,"modifiedTime":1672596096402,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"J1QVPd8POvcPaqx4","name":"Silver Dragon Wyrmling","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":45,"min":0,"max":45,"temp":0,"tempmax":0,"formula":"6d8 + 18"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":10,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["cold"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Silver Dragon Wyrmling","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"x7uPzThV97uQxTun","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.The Silver Dragon Wyrmling attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"W386vxVMsDz3Gr9l","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Cold Breath.** The dragon exhales an icy blast in a 15-foot cone. Each creature in that area must make a DC 13 Constitution saving throw, taking 18 (4d8) cold damage on a failed save, or half as much damage on a successful one.\n**Paralyzing Breath.** The dragon exhales paralyzing gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DRZQX4YLhabLlxIR","name":"Cold Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\n**Cold Breath.** The dragon exhales an icy blast in a 15-foot cone. Each creature in that area must make a DC 13 Constitution saving throw, taking 18 (4d8) cold damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales an icy blast in a 15-foot cone. Each creature in that area must make a Constitution saving throw","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iHOaiOqwUWIfCljJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lq8qwetpVyoHKCyi","name":"Paralyzing Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\n**Paralyzing Breath.** The dragon exhales paralyzing gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon exhales paralyzing gas in a 15-foot cone. Each creature in that area make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.BiasCPpNsaAVKzIj"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232737,"modifiedTime":1672596096455,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"J8xjoG4Dxb8WkHtV","name":"Veteran","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":58,"min":0,"max":58,"temp":0,"tempmax":0,"formula":"9d8 + 18"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Alignment","race":"","type":{"value":"humanoid","subtype":"Any Race","swarm":"","custom":""},"environment":"","cr":3,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"any one language (usually Common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Veteran","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"0otc04A190Q8hTBK","name":"Splint Armor","type":"equipment","img":"icons/equipment/chest/breastplate-layered-steel.webp","system":{"description":{"value":"This armor is made of narrow vertical strips of metal riveted to a backing of leather that is worn over cloth padding. Flexible chain mail protects the joints.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":60,"price":{"value":200,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":17,"type":"heavy","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.cKpJmsJmU8YaiuqG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WaEunPCFG0EddNTt","name":"Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\nThe Veteran attacks with their Longsword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wziRdUn3HafZKJ8o","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The veteran makes two longsword attacks. If it has a shortsword drawn, it can also make a shortsword attack.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"cXf5q5xw30ICGxZg","name":"Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.The Veteran attacks with its Shortsword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.osLzOwQdPtrK3rQH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6jQ7YUixkwBq2Fh8","name":"Heavy Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-blue.webp","system":{"description":{"value":"Ranged Weapon Attack: +3 to hit, range 100/400 ft., one target. Hit: 6 (1d10 + 1) piercing damage.The Veteran attacks with its Heavy Crossbow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":100,"long":400,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 +@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":true,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.RmP0mYRn2J7K26rX"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232739,"modifiedTime":1672596096501,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"J9hgSaZODGjrNl9B","name":"Wereboar","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":78,"min":0,"max":78,"temp":null,"tempmax":0,"formula":"12d8 + 24"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"humanoid","subtype":"Human, Shapechanger","swarm":"","custom":""},"environment":"Grassland","cr":4,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common"],"custom":"(can't speak in boar form)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Wereboar","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"TizBVS6hRuBa8JYY","name":"Charge (Boar or Hybrid Form Only)","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"If the wereboar moves at least 15 feet straight toward a target and then hits it with its tusks on the same turn, the target takes an extra 7 (2d6) slashing damage. If the target is a creature, it must succeed on a DC 13 Strength saving throw or be knocked prone.If the wereboar moves at least 15 feet straight toward a target and then hits it with its tusks on the same turn, the target takes extra slashing damage. If the target is a creature, it must make aStrength saving throw or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","slashing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"599WNlvXk7snLj4O","name":"Multiattack (Humanoid or Hybrid Form Only)","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The wereboar makes two attacks, only one of which can be with its tusks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NwivB5zd15WhthVJ","name":"Relentless","type":"feat","img":"icons/magic/death/skull-horned-goat-pentagram-red.webp","system":{"description":{"value":"If the wereboar takes 14 damage or less that would reduce it to 0 hit points, it is reduced to 1 hit point instead.If the wereboar takes damage that would reduce it to 0 hit points, it is reduced to 1 hit point instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.8FX2KlWyBAKEYGzs"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zzskoOXzAiMDZfbc","name":"Shapechanger","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The wereboar can use its action to polymorph into a boar-humanoid hybrid or into a boar, or back into its true form, which is humanoid. Its statistics, other than its AC, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies.The wereboar can use its action to polymorph, or return to its true form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3TD2NpdjIDJxeLl9","name":"Tusks (Boar or Hybrid Form Only)","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage. If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with wereboar lycanthropy.The Wereboar attacks with its Tusks. If the target is a humanoid, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dtdXnvp5cptFkGPu","name":"Maul (Humanoid or Hybrid Form Only)","type":"weapon","img":"icons/weapons/maces/mace-spiked-wood-grey.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.\n\nThe Wereboar attacks with its Maul.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232741,"modifiedTime":1672596096549,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"JW8bXggOMBx1S6tF","name":"Baboon","type":"npc","img":"","system":{"abilities":{"str":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":3,"min":0,"max":3,"temp":0,"tempmax":0,"formula":"1d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Baboon","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"yb6o6KfKlg9bGhqA","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The baboon has advantage on an attack roll against a creature if at least one of the baboon's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Baboon","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EXVZptAEHLscbODF","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+1 to hit,, 5 ft., one target. Hit: 1 (1d4 - 1) piercing damage.\nThe Baboon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232742,"modifiedTime":1672596096591,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"K15Yl8JmB5iPircc","name":"Druid","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":27,"min":0,"max":27,"temp":0,"tempmax":0,"formula":"5d8 + 5"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"wis"},"details":{"biography":{"value":"","public":""},"alignment":"any","race":"","type":{"value":"humanoid","subtype":"Any Race","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":4,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["druidic","custom"],"custom":"any two languages"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":4,"override":null},"spell2":{"value":3,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Druid","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"07sdy4qaaW4MaB8W","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"\nThe druid is a 4th-level spellcaster. Its spellcasting ability is Wisdom (spell save DC 12, +4 to hit with spell attacks).\nIt has the following druid spells prepared:\nCantrips (at will): druidcraft, produce flame, shillelagh\n 1st level (4 slots): entangle, longstrider, speak with animals, thunderwave\n2nd level (3 slots): animal messenger, barkskin\n\nThe druid is a spellcaster. Its spellcasting ability is Wisdom.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KUP8WEfLxlcY7K2x","name":"Quarterstaff","type":"weapon","img":"icons/weapons/staves/staff-simple-gold.webp","system":{"description":{"value":"\nMelee Weapon Attack: +2 to hit (+4 to hit with shillelagh), reach 5 ft., one target. Hit: 3 (1d6) bludgeoning damage, or 6 (1d8 + 2) bludgeoning damage with shillelagh or if wielded with two hands.\nThe Druid attacks with its Quarterstaff.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.g2dWN7PQiMRYWzyk"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SbSvZKkJASyk8jKo","name":"Druidcraft","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Whispering to the spirits of Nature, you create one of the following Effects within range:\n\nYou create a tiny, harmless sensory effect that predicts what the weather will be at your location for the next 24 hours. The effect might manifest as a golden orb for clear skies, a cloud for rain, Falling snowflakes for snow, and so on. This effect persists for 1 round.\nYou instantly make a flower blossom, a seed pod open, or a leaf bud bloom.\nYou create an Instantaneous, harmless sensory effect, such as Falling leaves, a puff of wind, the sound of a small animal, or the faint odor of skunk. The effect must fit in a 5-foot cube.\nYou instantly light or snuff out a Candle, a torch, or a small campfire.\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.SbSvZKkJASyk8jKo"}},"img":"icons/magic/nature/vines-thorned-glow-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234141,"modifiedTime":1661791116365,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"eCPQuQkIabFKTl9u","name":"Produce Flame","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A flickering flame appears in your hand. The flame remains there for the Duration and harms neither you nor your Equipment. The flame sheds bright light in a 10-foot radius and dim light for an additional 10 feet. The spell ends if you dismiss it as an action or if you cast it again.You can also Attack with the flame, although doing so ends the spell. When you cast this spell, or as an action on a later turn, you can hurl the flame at a creature within 30 feet of you. Make a ranged spell Attack. On a hit, the target takes 1d8 fire damage.This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.eCPQuQkIabFKTl9u"}},"img":"icons/magic/fire/explosion-fireball-medium-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234183,"modifiedTime":1661791116365,"lastModifiedBy":"dnd5ebuilder0000"}},{"name":"Entangle","type":"spell","img":"icons/magic/nature/vines-thorned-curled-glow-green.webp","system":{"description":{"value":"Grasping weeds and vines sprout from the ground in a 20-foot square starting from a point within range. For the Duration, these Plants turn the ground in the area into difficult terrain.A creature in the area when you cast the spell must succeed on a Strength saving throw or be Restrained by the entangling Plants until the spell ends. A creature restrained by the plants can use its action to make a Strength check against your spell save DC. On a success, it frees itself.When the spell ends, the conjured Plants wilt away.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":12,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[],"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gMrWeG8fMDPRFiVe"}},"_id":"gMrWeG8fMDPRFiVe","folder":null,"sort":0,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234191,"modifiedTime":1661791116366,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"B0pnIcc52O6G8hi8","name":"Longstrider","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature. The target's speed increases by 10 feet until the spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of dirt","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.B0pnIcc52O6G8hi8"}},"img":"icons/magic/air/wind-stream-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234090,"modifiedTime":1661791116366,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"aL1F8fvYLtNzUbKu","name":"Speak with Animals","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You gain the ability to comprehend and verbally communicate with beasts for the duration. The knowledge and awareness of many beasts is limited by their intelligence, but at minimum, beasts can give you information about nearby locations and monsters, including whatever they can perceive or have perceived within the past day. You might be able to persuade a beast to perform a small favor for you, at the DM's discretion.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.aL1F8fvYLtNzUbKu"}},"img":"icons/magic/nature/wolf-paw-glow-small-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234167,"modifiedTime":1661791116366,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WTbOQBsarsL1LuXJ","name":"Thunderwave","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A wave of thunderous force sweeps out from you. Each creature in a 15-foot cube originating from you must make a Constitution saving throw. On a failed save, a creature takes 2d8 thunder damage and is pushed 10 feet away from you. On a successful save, the creature takes half as much damage and isn't pushed.In addition, unsecured objects that are completely within the area of effect are automatically pushed 10 feet away from you by the spell's effect, and the spell emits a thunderous boom audible out to 300 feet.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cube"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","thunder"]],"versatile":""},"formula":"","save":{"ability":"con","dc":12,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.WTbOQBsarsL1LuXJ"}},"img":"icons/magic/lightning/bolt-forked-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234152,"modifiedTime":1661791116367,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"X8w9EzYLGc4vQ1H2","name":"Animal Messenger","ownership":{"default":0},"type":"spell","system":{"description":{"value":"By means of this spell, you use an animal to deliver a message. Choose a Tiny beast you can see within range, such as a squirrel, a blue jay, or a bat. You specify a location, which you must have visited, and a recipient who matches a general description, such as \"a man or woman dressed in the uniform of the town guard\" or \"a red-haired dwarf wearing a pointed hat.\" You also speak a message of up to twenty-five words. The target beast travels for the duration of the spell toward the specified location, covering about 50 miles per 24 hours for a flying messenger, or 25 miles for other animals.When the messenger arrives, it delivers your message to the creature that you described, replicating the sound of your voice. The messenger speaks only to a creature matching the description you gave. If the messenger doesn't reach its destination before the spell ends, the message is lost, and the beast makes its way back to where you cast this spell.At Higher Levels. If you cast this spell using a spell slot of 3rd level or higher, the duration of the spell increases by 48 hours for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A morsel of food.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.X8w9EzYLGc4vQ1H2"}},"img":"icons/magic/nature/wolf-paw-glow-small-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234156,"modifiedTime":1661791116367,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"VzgFzcmocr1X1cp4","name":"Shillelagh","ownership":{"default":0},"type":"spell","system":{"description":{"value":"The wood of a club or quarterstaff you are holding is imbued with nature's power. For the duration, you can use your spellcasting ability instead of Strength for the attack and damage rolls of melee attacks using that weapon, and the weapon's damage die becomes a d8. The weapon also becomes magical, if it isn't already. The spell ends if you cast it again or if you let go of the weapon.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A shamrock leaf, and a club or quarterstaff","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.VzgFzcmocr1X1cp4"}},"img":"icons/magic/fire/dagger-rune-enchant-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234149,"modifiedTime":1661791116367,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"JPwIEfgUPVebr5AH","name":"Barkskin","type":"spell","img":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","system":{"description":{"value":"You touch a willing creature. Until the spell ends, the target's skin has a rough, bark-like appearance, and the target's AC can't be less than 16, regardless of what kind of armor it is wearing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A handful of oak bark","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"uM6rgctYpcbCVSkn","flags":{},"changes":[{"key":"system.attributes.ac.formula","value":"16","mode":5,"priority":null},{"key":"system.attributes.ac.calc","value":"custom","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":3600,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","label":"Barkskin","origin":"Item.VQMKMnQDw5rzL0zp","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.JPwIEfgUPVebr5AH"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234113,"modifiedTime":1661791116367,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"uM6rgctYpcbCVSkn","flags":{},"changes":[{"key":"system.attributes.ac.formula","value":"16","mode":5,"priority":null},{"key":"system.attributes.ac.calc","value":"custom","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":678,"seconds":3600,"combat":null,"rounds":null,"turns":null,"startRound":2,"startTurn":1},"icon":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","label":"Barkskin","origin":"Compendium.dnd5e.monsters.K15Yl8JmB5iPircc.Item.JPwIEfgUPVebr5AH","tint":null,"transfer":false,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232744,"modifiedTime":1672596096691,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"K4vsSlHqbBAHUDHY","name":"Hydra","type":"npc","img":"","system":{"abilities":{"str":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":172,"min":0,"max":172,"temp":0,"tempmax":0,"formula":"15d12 + 75"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Swamp","cr":8,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Hydra","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"xr59rWl3oCOLdQBQ","name":"Hold Breath","type":"feat","img":"icons/magic/water/orb-water-transparent.webp","system":{"description":{"value":"The hydra can hold its breath for 1 hour.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lwC6jwy9bXberyWo"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fsAeJDaI0a6sBeFk","name":"Multiple Heads","type":"feat","img":"icons/skills/melee/strike-sword-stabbed-brown.webp","system":{"description":{"value":"\nThe hydra has five heads. While it has more than one head, the hydra has advantage on saving throws against being blinded, charmed, deafened, frightened, stunned, and knocked unconscious. \nWhenever the hydra takes 25 or more damage in a single turn, one of its heads dies. If all its heads die, the hydra dies.\nAt the end of its turn, it grows two heads for each of its heads that died since its last turn, unless it has taken fire damage since its last turn. The hydra regains 10 hit points for each head regrown in this way.\n\nThe hydra has five heads. While it has more than one head, the hydra has advantage on saving throws against being blinded, charmed, deafened, frightened, stunned, and knocked unconscious.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.dvSoAF3bOeUeIrxf"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bE965DuMt1ReAulm","name":"Reactive Heads","type":"feat","img":"icons/magic/death/skull-trio-badge-purple.webp","system":{"description":{"value":"For each head the hydra has beyond one, it gets an extra reaction that can be used only for opportunity attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.miIjsa984tZ0Mil6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"cLcVpNuZOHIxLfPP","name":"Wakeful","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"While the hydra sleeps, at least one of its heads is awake.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.T2gLBBjrHTbLTdGc"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"USl5HDilKxVI4BHh","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The hydra makes as many bite attacks as it has heads.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fYE4f0Oa2I0MetId","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+8 to hit,, 10 ft., one target. Hit: 10 (1d10 + 5) piercing damage.The Hydra attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232746,"modifiedTime":1672596096742,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"K5cKmPoFkpuOotis","name":"Ape","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":19,"min":0,"max":19,"temp":0,"tempmax":0,"formula":"3d8 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ape","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"hbxC3Wg3H8cSIvM0","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The ape makes two fist attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jxC1VNaCf2VXlD6C","name":"Fist","type":"weapon","img":"icons/magic/fire/flame-burning-fist-strike.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) bludgeoning damage.\nThe Ape attacks with its Fist.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NsTx3MUaYkEI2t8M","name":"Rock","type":"weapon","img":"icons/magic/earth/projectile-stone-ball-brown.webp","system":{"description":{"value":"\nRanged Weapon Attack: +5 to hit, range 25/50 ft., one target. Hit: 6 (1d6 + 3) bludgeoning damage.\nThe Ape attacks with its Rock.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":25,"long":50,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":true,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232749,"modifiedTime":1672596096785,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KC4tYOolARhajP18","name":"Swarm of Centipedes","type":"npc","img":"","system":{"abilities":{"str":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"5d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":20,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"tiny","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","grappled","paralyzed","petrified","prone","restrained","stunned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Swarm of Centipedes","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"jGCUdUnQs3nyBZLD","name":"Swarm","type":"feat","img":"icons/creatures/invertebrates/fly-wasp-mosquito-green.webp","system":{"description":{"value":"The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Bats","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eL3OJmc4FuetizKO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"E6zkvUOJARx1t0nc","name":"Bites","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 0 ft., one target in the swarm's space. Hit: 10 (4d4) piercing damage, or 5 (2d4) piercing damage if the swarm has half of its hit points or fewer.\nA creature reduced to 0 hit points by a swarm of centipedes is stable but poisoned for 1 hour, even after regaining hit points, and paralyzed while poisoned in this way.\n\nThe Swarm of Centipedes attacks with a flurry of Bites.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d4","piercing"]],"versatile":"2d4"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232750,"modifiedTime":1672596096826,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KCvt4FdOVJbuZ3T0","name":"Tarrasque","type":"npc","img":"","system":{"abilities":{"str":{"value":30,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":30,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":25,"calc":"natural","formula":""},"hp":{"value":676,"min":0,"max":676,"temp":null,"tempmax":0,"formula":"33d20 + 330"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":120,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"Titan","swarm":"","custom":""},"environment":"Urban","cr":30,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"grg","di":{"value":["bludgeoning","fire","piercing","poison","slashing"],"bypasses":["mgc"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","paralyzed","poisoned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Tarrasque","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Lq4Toyg4sjkdU4e2","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the tarrasque fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":3},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QmAWameRMoj0gDKt","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The tarrasque has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tE9TjxIMLnqDisjv","name":"Reflective Carapace","type":"feat","img":"icons/magic/defensive/shield-barrier-flaming-pentagon-orange-purple.webp","system":{"description":{"value":"Any time the tarrasque is targeted by a magic missile spell, a line spell, or a spell that requires a ranged attack roll, roll a d6. On a 1 to 5, the tarrasque is unaffected.On a 6, the tarrasque is unaffected, and the effect is reflected back at the caster as though it originated from the tarrasque, turning the caster into the target.The tarrasque is unaffected, and the effect is reflected back at the caster as though it originated from the tarrasque, turning the caster into the target.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d6","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.PLBui1FCQuSlEqyI"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wSqPYa5GWfBsLRbY","name":"Siege Monster","type":"feat","img":"icons/creatures/magical/construct-iron-stomping-yellow.webp","system":{"description":{"value":"The tarrasque deals double damage to objects and structures.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.cSA0EbjlxCbst4gJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Eb4utmmDfdnqLOZV","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The tarrasque can use its Frightful Presence. It then makes five attacks: one with its bite, two with its claws, one with its horns, and one with its tail. It can use its Swallow instead of its bite.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"suUr7bJqBqE7xk2F","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+19 to hit,, 10 ft., one target. Hit: 36 (4d12 + 10) piercing damage. If the target is a creature, it is grappled (escape DC 20). Until this grapple ends, the target is restrained, and the tarrasque can't bite another target.The Tarrasque attacks with its Bite. If the target is a creature, it is grappled. Until this grapple ends, the target is restrained, and the tarrasque can't bite another target.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d12+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7DRko62ztr6FjZLA","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+19 to hit,, 15 ft., one target. Hit: 28 (4d8 + 10) slashing damage.The Tarrasque attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"E1RZdzEY2qnG2jLn","name":"Horns","type":"weapon","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"Melee Weapon Attack:+19 to hit,, 10 ft., one target. Hit: 32 (4d10 + 10) piercing damage.The Tarrasque attacks with its Horns.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Lo4LU9FBxez1Nzqm","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+19 to hit,, 20 ft., one target. Hit: 24 (4d6 + 10) bludgeoning damage. If the target is a creature, it must succeed on a DC 20 Strength saving throw or be knocked prone.The Tarrasque attacks with its Tail. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":20,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3mtn5D2GoD19WDVW","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the tarrasque's choice within 120 feet of it and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute.A creature can repeat the saving throw at the end of each of its turns, with disadvantage if the tarrasque is within line of sight, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the tarrasque's Frightful Presence for the next 24 hours.Each creature of the tarrasque's choice within 120 feet of it and aware of it must succeed on a Wisdom saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7ycN6rrAEJQP3ZOs","name":"Swallow","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"The tarrasque makes one bite attack against a Large or smaller creature it is grappling. If the attack hits, the target takes the bite's damage, the target is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the tarrasque, and it takes 56 (16d6) acid damage at the start of each of the tarrasque's turns.If the tarrasque takes 60 damage or more on a single turn from a creature inside it, the tarrasque must succeed on a DC 20 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the tarrasque. If the tarrasque dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 30 feet of movement, exiting prone.The Tarrasque attacks with its Swallow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":"Large or smaller creature it is grappling"},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["16d6","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.aH5ncM30tP8tPQ24"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9OZ6Zm76HXyRSKlP","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sBnQiUt83GYUkKBw","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe tarrasque can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The tarrasque regains spent legendary actions at the start of its turn.\n\nThe tarrasque can take 3 legendary actions.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UUapff5kwkff2TJP","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XFNRU61XBt7FvXAM","name":"Attack","type":"feat","img":"icons/skills/melee/blood-slash-foam-red.webp","system":{"description":{"value":"The tarrasque makes one claw attack or tail attack.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wYuyOwVFLle1u78H","name":"Move","type":"feat","img":"icons/skills/movement/feet-winged-boots-brown.webp","system":{"description":{"value":"The tarrasque moves up to half its speed.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wqgAyjgICylYksGZ","name":"Chomp","type":"feat","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"The tarrasque makes one bite attack or uses its Swallow.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.5rr8YdsGtL8WxEuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232752,"modifiedTime":1672596096922,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KH6ZrUiUOKQCOlRH","name":"Green Dragon Wyrmling","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":38,"min":0,"max":38,"temp":0,"tempmax":0,"formula":"7d8 + 7"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Green Dragon Wyrmling","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"pFFlq9KvfXzAxhU8","name":"Poison Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"The dragon exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 11 Constitution saving throw, taking 21 (6d6) poison damage on a failed save, or half as much damage on a successful one.The dragon exhales poisonous gas in a 15-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JAEclghgOT24pQD9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zii9P95YmeE6b4km","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 3 (1d6) poison damage.The Green Dragon Wyrmling attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"],["1d6","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8U6fHYSsBSDhYHpr","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232755,"modifiedTime":1672596096967,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KLCkHep28HBfdsky","name":"Ettin","type":"npc","img":"","system":{"abilities":{"str":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":85,"min":0,"max":85,"temp":0,"tempmax":0,"formula":"10d10 + 30"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"giant","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":4,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["giant","orc"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ettin","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"hon1LZGigQRl2jBn","name":"Two Heads","type":"feat","img":"icons/magic/death/skull-horned-goat-pentagram-red.webp","system":{"description":{"value":"The ettin has advantage on Wisdom (Perception) checks and on saving throws against being blinded, charmed, deafened, frightened, stunned, and knocked unconscious.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.gWpp0N06HvS937Go"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0NvLts9eWaCvcOOn","name":"Wakeful","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"When one of the ettin's heads is asleep, its other head is awake.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.T2gLBBjrHTbLTdGc"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FcbmWHMk3H4MGdxy","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The ettin makes two attacks: one with its battleaxe and one with its morningstar.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"T1QQrbvnvnM73eIe","name":"Battleaxe","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-engraved-steel.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.The Ettin attacks with its Battleaxe.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.I0WocDSuNpGJayPb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5ri5zr7IJKsaZNF7","name":"Morningstar","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 14 (2d8 + 5) piercing damage.The Ettin attacks with its Morningstar.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.dX8AxCh9o0A9CkT3"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232756,"modifiedTime":1672596097006,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KOHVWl5RU9XBR8Jb","name":"Dryad","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":16,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"5d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"fey","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["elvish","sylvan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Dryad","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Wkv8laBNYgkdA7lL","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The dryad's innate spellcasting ability is Charisma (spell save DC 14). The dryad can innately cast the following spells, requiring no material components:\nAt will: druidcraft\n3/day each: entangle, goodberry\n1/day each: barkskin, pass without trace, shillelagh","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JExoadfmCtQH6vsK","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The dryad has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"beL4bLUcyTb1Sxgz","name":"Speak with Beasts and Plants","type":"feat","img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","system":{"description":{"value":"The dryad can communicate with beasts and plants as if they shared a language.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.59DUUDZet1J4PIlA"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wwQTeXOmFLO2MW0Y","name":"Tree Stride","type":"feat","img":"icons/magic/nature/tree-spirit-green.webp","system":{"description":{"value":"Once on her turn, the dryad can use 10 feet of her movement to step magically into one living tree within her reach and emerge from a second living tree within 60 feet of the first tree, appearing in an unoccupied space within 5 feet of the second tree. Both trees must be Large or bigger.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.g4V02wJbEstUpwi9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DNPx6Myd5rHTGu4a","name":"Club","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"\nMelee Weapon Attack: +2 to hit (+6 to hit with shillelagh), reach 5 ft., one target. Hit: 2 (1d4) bludgeoning damage, or 8 (1d8 + 4) bludgeoning damage with shillelagh.\n\nThe Dryad attacks with its Club.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + 4","bludgeoning"]],"versatile":"1d8 + 4"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"lgt":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.nfIRTECQIG81CvM4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OdzhvEDeD06BWsZS","name":"Fey Charm","type":"feat","img":"icons/consumables/plants/leaf-veins-glowing-green.webp","system":{"description":{"value":"\nThe dryad targets one humanoid or beast that she can see within 30 feet of her. If the target can see the dryad, it must succeed on a DC 14 Wisdom saving throw or be magically charmed.\nThe charmed creature regards the dryad as a trusted friend to be heeded and protected. Although the target isn't under the dryad's control, it takes the dryad's requests or actions in the most favorable way it can.Each time the dryad or its allies do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the dryad dies, is on a different plane of existence from the target, or ends the effect as a bonus action. If a target's saving throw is successful, the target is immune to the dryad's Fey Charm for the next 24 hours.The dryad can have no more than one humanoid and up to three beasts charmed at a time.\n\nThe dryad targets one humanoid or beast that she can see within 30 feet of her. If the target can see the dryad, it must make a Wisdom saving throw. Each time the dryad or its allies do anything harmful to the target, it can repeat the saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":"one humanoid or beast"},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.SGgVxdZbmsStfeGB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"name":"Entangle","type":"spell","img":"icons/magic/nature/vines-thorned-curled-glow-green.webp","system":{"description":{"value":"Grasping weeds and vines sprout from the ground in a 20-foot square starting from a point within range. For the Duration, these Plants turn the ground in the area into difficult terrain.A creature in the area when you cast the spell must succeed on a Strength saving throw or be Restrained by the entangling Plants until the spell ends. A creature restrained by the plants can use its action to make a Strength check against your spell save DC. On a success, it frees itself.When the spell ends, the conjured Plants wilt away.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":14,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[],"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gMrWeG8fMDPRFiVe"}},"_id":"gMrWeG8fMDPRFiVe","folder":null,"sort":0,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234191,"modifiedTime":1661791116394,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"SbSvZKkJASyk8jKo","name":"Druidcraft","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Whispering to the spirits of Nature, you create one of the following Effects within range:\n\nYou create a tiny, harmless sensory effect that predicts what the weather will be at your location for the next 24 hours. The effect might manifest as a golden orb for clear skies, a cloud for rain, Falling snowflakes for snow, and so on. This effect persists for 1 round.\nYou instantly make a flower blossom, a seed pod open, or a leaf bud bloom.\nYou create an Instantaneous, harmless sensory effect, such as Falling leaves, a puff of wind, the sound of a small animal, or the faint odor of skunk. The effect must fit in a 5-foot cube.\nYou instantly light or snuff out a Candle, a torch, or a small campfire.\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.SbSvZKkJASyk8jKo"}},"img":"icons/magic/nature/vines-thorned-glow-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234141,"modifiedTime":1661791116394,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Qf6CAZkc7ms4ZY3e","name":"Goodberry","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Up to ten berries appear in your hand and are infused with magic for the duration. A creature can use its action to eat one berry. Eating a berry restores 1 hit point, and the berry provides enough nourishment to sustain a creature for one day.The berries lose their potency if they have not been consumed within 24 hours of the casting of this spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A spring of mistletoe","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Qf6CAZkc7ms4ZY3e"}},"img":"icons/magic/nature/leaf-glow-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234136,"modifiedTime":1661791116394,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"JPwIEfgUPVebr5AH","name":"Barkskin","type":"spell","img":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","system":{"description":{"value":"You touch a willing creature. Until the spell ends, the target's skin has a rough, bark-like appearance, and the target's AC can't be less than 16, regardless of what kind of armor it is wearing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A handful of oak bark","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"uM6rgctYpcbCVSkn","flags":{},"changes":[{"key":"system.attributes.ac.formula","value":"16","mode":5,"priority":null},{"key":"system.attributes.ac.calc","value":"custom","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":3600,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","label":"Barkskin","origin":"Item.VQMKMnQDw5rzL0zp","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.JPwIEfgUPVebr5AH"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234113,"modifiedTime":1661791116395,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pRMvmknwLf2tdMTj","name":"Pass without Trace","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A veil of shadows and Silence radiates from you, masking you and your companions from detection. For the Duration, each creature you choose within 30 feet of you (including you) has a +10 bonus to Dexterity (Stealth) checks and can't be tracked except by magical means. A creature that receives this bonus leaves behind no tracks or other traces of its passage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Ashes from a burned leaf of mistletoe and a sprig of spruce","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.pRMvmknwLf2tdMTj"}},"img":"icons/magic/air/fog-gas-smoke-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234227,"modifiedTime":1661791116395,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"VzgFzcmocr1X1cp4","name":"Shillelagh","ownership":{"default":0},"type":"spell","system":{"description":{"value":"The wood of a club or quarterstaff you are holding is imbued with nature's power. For the duration, you can use your spellcasting ability instead of Strength for the attack and damage rolls of melee attacks using that weapon, and the weapon's damage die becomes a d8. The weapon also becomes magical, if it isn't already. The spell ends if you cast it again or if you let go of the weapon.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A shamrock leaf, and a club or quarterstaff","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.VzgFzcmocr1X1cp4"}},"img":"icons/magic/fire/dagger-rune-enchant-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234149,"modifiedTime":1661791116395,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"uM6rgctYpcbCVSkn","flags":{},"changes":[{"key":"system.attributes.ac.formula","value":"16","mode":5,"priority":null},{"key":"system.attributes.ac.calc","value":"custom","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":678,"seconds":3600,"combat":null,"rounds":null,"turns":null,"startRound":2,"startTurn":1},"icon":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","label":"Barkskin","origin":"Compendium.dnd5e.monsters.KOHVWl5RU9XBR8Jb.Item.JPwIEfgUPVebr5AH","tint":null,"transfer":false,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232758,"modifiedTime":1672596097101,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KUpbXdn1XmHEeOPk","name":"Merfolk","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"humanoid","subtype":"Merfolk","swarm":"","custom":""},"environment":"Underwater","cr":0.125,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["aquan","common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Merfolk","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"LNKGvXlnCZFO9bEv","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The merfolk can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sN28gnBGF2TVdd53","name":"Spear","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"Melee or Ranged Weapon Attack: +2 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 3 (1d6) piercing damage, or 4 (1d8) piercing damage if used with two hands to make a melee attack.The Merfolk attacks with its Spear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6","piercing"]],"versatile":"1d8"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"thr":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":true},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.OG4nBBydvmfWYXIk"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232760,"modifiedTime":1672596097143,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KXG5XLIwKhn1V0Y5","name":"Swarm of Quippers","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":28,"min":0,"max":28,"temp":0,"tempmax":0,"formula":"8d8 - 8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":0,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"tiny","custom":""},"environment":"Underwater","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","grappled","paralyzed","petrified","prone","restrained","stunned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Swarm of Quippers","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"4Zbr0ZIgWS4WFshO","name":"Blood Frenzy","type":"feat","img":"icons/skills/wounds/blood-spurt-spray-red.webp","system":{"description":{"value":"The swarm has advantage on melee attack rolls against any creature that doesn't have all its hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.B2kZOyrB7poB4liR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QPJWgfVwJ8tu5zsa","name":"Swarm","type":"feat","img":"icons/creatures/invertebrates/fly-wasp-mosquito-green.webp","system":{"description":{"value":"The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny quipper. The swarm can't regain hit points or gain temporary hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eL3OJmc4FuetizKO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"oAc2jxMRMdek0hTs","name":"Water Breathing","type":"feat","img":"icons/magic/water/projectile-water-ice-orb.webp","system":{"description":{"value":"The swarm can breathe only underwater.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.c4Q6NDCLJSNcNc9T"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hZiOYQNCqAFq0sD6","name":"Bites","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 0 ft., one creature in the swarm's space. Hit: 14 (4d6) piercing damage, or 7 (2d6) piercing damage if the swarm has half of its hit points or fewer.\nThe Swarm of Quippers attacks with a flurry of Bites.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","piercing"]],"versatile":"2d6"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232762,"modifiedTime":1672596097179,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KtM6IV9I5l1MWUDk","name":"Chain Devil","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":16,"calc":"natural","formula":""},"hp":{"value":85,"min":0,"max":85,"temp":null,"tempmax":0,"formula":"10d8 + 40"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"Devil","swarm":"","custom":""},"environment":"","cr":8,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["infernal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Chain Devil","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"9SWi4zPVGsMD5l2Y","name":"Chain","type":"weapon","img":"icons/tools/fasteners/chain-steel-grey.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 10 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\nThe target is grappled (escape DC 14) if the devil isn't already grappling a creature. Until this grapple ends, the target is restrained and takes 7 (2d6) piercing damage at the start of each of its turns.\n\nThe Chain Devil attacks with its Chain. The target is grappled if the devil isn't already grappling a creature. Until this grapple ends, the target is restrained.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"2d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"c8fbl1Kc5O3GNTus","name":"Unnerving Mask","type":"feat","img":"icons/magic/life/heart-shadow-red.webp","system":{"description":{"value":"\nWhen a creature the devil can see starts its turn within 30 feet of the devil, the devil can create the illusion that it looks like one of the creature's departed loved ones or bitter enemies. If the creature can see the devil, it must succeed on a DC 14 Wisdom saving throw or be Frightened until the end of its turn.\n\nThe devil can create the illusion that it looks like one of the creature's departed loved ones or bitter enemies. make a Wisdom saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.uEYSTOkpfr0OkKrD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FkvVIJjzEPFMgvsc","name":"Devil's Sight","type":"feat","img":"icons/magic/perception/eye-slit-pink.webp","system":{"description":{"value":"Magical darkness doesn't impede the devil's Darkvision.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZZ4l35Sr34AL2Ett","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The creature has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AGKUD82KJZaMKVRt","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The devil makes two attacks with its chains.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"B9KJpn20n0tG4xit","name":"Animate Chains","type":"feat","img":"icons/equipment/neck/choker-chain-thin-gold.webp","system":{"description":{"value":"\nUp to four chains the devil can see within 60 feet of it magically sprout razor-edged barbs and animate under the devil's control, provided that the chains aren't being worn or carried.\nEach animated chain is an object with AC 20, 20 hit points, resistance to piercing damage, and immunity to psychic and thunder damage. When the devil uses Multiattack on its turn, it can use each animated chain to make one additional chain attack. An animated chain can grapple one creature of its own but can't make attacks while grappling. An animated chain reverts to its inanimate state if reduced to 0 hit points or if the devil is incapacitated or dies.\n\nUp to four chains the devil can see within 60 feet of it magically sprout razor-edged barbs and animate under the devil's control, provided that the chains aren't being worn or carried.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":4,"width":null,"units":"","type":"object"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.6ej6jlwh8ryDEzlB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232763,"modifiedTime":1672596097220,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"L1w8yBkInMscfJ3F","name":"Oni","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":110,"min":0,"max":110,"temp":0,"tempmax":0,"formula":"13d10 + 39"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":30,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"giant","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":7,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","giant"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":2,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Oni","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"m65uENAa93Pz8lLl","name":"Chain Mail","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"Made of interlocking metal rings, chain mail includes a layer of quilted fabric worn underneath the mail to prevent chafing and to cushion the impact of blows. The suit includes gauntlets.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":55,"price":{"value":75,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":13,"stealth":true,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.rLMflzmxpe8JGTOA"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FC0FNE8O4rnbth8s","name":"Glaive","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 10 ft., one target. Hit: 15 (2d10 + 4) slashing damage, or 9 (1d10 + 4) slashing damage in Small or Medium form.The Oni attacks with its Glaive.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.rOG1OM2ihgPjOvFW"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"q7J7PERrJb2vxtlt","name":"Claw (Oni Form Only)","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage.The Oni attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HiGvFK1bT8zkJA3r","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The oni's innate spellcasting ability is Charisma (spell save DC 13). The oni can innately cast the following spells, requiring no material components:\nAt will: darkness, invisibility\n1/day each: charm person, cone of cold, gaseous form, sleep","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7YSwI62Budsr6HzO","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The oni makes two attacks, either with its claws or its glaive.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8liUuXPhjNLKYMMx","name":"Regeneration","type":"feat","img":"icons/skills/wounds/anatomy-organ-heart-red.webp","system":{"description":{"value":"The oni regains 10 hit points at the start of its turn if it has at least 1 hit point.The oni regains 10 hit points at the start of its turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Av7H0ymGdPeTsnwV"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HJDOmnRX2zQuXraB","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"the oni's weapon attacks are magical.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QGNzJqfTHnbhjzFN","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The oni magically polymorphs into a Small or Medium humanoid, into a Large giant, or back into its true form. Other than its size, its statistics are the same in each form. The only equipment that is transformed is its glaive, which shrinks so that it can be wielded in humanoid form. If the oni dies, it reverts to its true form, and its glaive reverts to its normal size.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"S7VbUetIfVT7B6Eq","name":"Darkness","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Magical darkness spreads from a point you choose within range to fill a 15-foot-radius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and nonmagical light can't illuminate it.If the point you choose is on an object you are holding or one that isn't being worn or carried, the darkness emanates from the object and moves with it. Completely covering the source of the darkness with an opaque object, such as a bowl or a helm, blocks the darkness.If any of this spell's area overlaps with an area of light created by a spell of 2nd level or lower, the spell that created the light is dispelled.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Bat fur and a drop of pitch or piece of coal","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.S7VbUetIfVT7B6Eq"}},"img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234139,"modifiedTime":1661791116422,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"1N8dDMMgZ1h1YJ3B","name":"Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An eyelash encased in gum arabic","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.1N8dDMMgZ1h1YJ3B"}},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234056,"modifiedTime":1661791116423,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"eS7XnnApoxRxYXPs","name":"Charm Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to charm a humanoid you can see within range. It must make a Wisdom saving throw, and does so with advantage if you or your companions are fighting it. If it fails the saving throw, it is charmed by you until the spell ends or until you or your companions do anything harmful to it. The charmed creature regards you as a friendly acquaintance. When the spell ends, the creature knows it was charmed by you.\n At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.eS7XnnApoxRxYXPs"}},"img":"icons/magic/fire/explosion-fireball-medium-purple-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234185,"modifiedTime":1661791116423,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"RpKjTlYASrfqUPVA","name":"Cone of Cold","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A blast of cold air erupts from your hands. Each creature in a 60-foot cone must make a Constitution saving throw. A creature takes 8d8 cold damage on a failed save, or half as much damage on a successful one.A creature killed by this spell becomes a frozen statue until it thaws.Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d8","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small crystal or glass cone","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.RpKjTlYASrfqUPVA"}},"img":"icons/magic/water/projectiles-ice-faceted-shard-salvo-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234138,"modifiedTime":1661791116423,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"2IWiZAJtOGDoKjiz","name":"Gaseous Form","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You transform a willing creature you touch, along with everything it's wearing and carrying, into a misty cloud for the duration. The spell ends if the creature drops to 0 hit points. An incorporeal creature isn't affected.While in this form, the target's only method of movement is a flying speed of 10 feet. The target can enter and occupy the space of another creature. The target has resistance to nonmagical damage, and it has advantage on Strength, Dexterity, and Constitution saving throws. The target can pass through small holes, narrow openings, and even mere cracks, though it treats liquids as though they were solid surfaces. The target can't fall and remains hovering in the air even when stunned or otherwise incapacitated.While in the form of a misty cloud, the target can't talk or manipulate objects, and any objects it was carrying or holding can't be dropped, used, or otherwise interacted with. The target can't attack or cast spells.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of gauze and a wisp of smoke","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.2IWiZAJtOGDoKjiz"}},"img":"icons/magic/air/fog-gas-smoke-dense-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234058,"modifiedTime":1661791116423,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"KhwiSi9fwVfUPtku","name":"Sleep","type":"spell","img":"icons/magic/light/explosion-star-small-pink.webp","system":{"description":{"value":"This spell sends creatures into a magical slumber. Roll 5d8; the total is how many hit points of creatures this spell can affect. Creatures within 20 feet of a point you choose within range are affected in ascending order of their current hit points (ignoring unconscious creatures).Starting with the creature that has the lowest current hit points, each creature affected by this spell falls unconscious until the spell ends, the sleeper takes damage, or someone uses an action to shake or slap the sleeper awake. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.Undead and creatures immune to being charmed aren't affected by this spell.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d8 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of fine sand, rose petals, or a cricket.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":"2d8"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.KhwiSi9fwVfUPtku"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234117,"modifiedTime":1661791116424,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232765,"modifiedTime":1672596097327,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LPdX5YLlwci0NDZx","name":"Raven","type":"npc","img":"","system":{"abilities":{"str":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"1d4 - 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":50,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Swamp","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Raven","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"nDvgtu7NSNCrREAv","name":"Mimicry","type":"feat","img":"icons/creatures/birds/corvid-flying-wings-purple.webp","system":{"description":{"value":"The raven can mimic simple sounds it has heard, such as a person whispering, a baby crying, or an animal chittering. A creature that hears the sounds can tell they are imitations with a successful Wisdom (Insight) check.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Raven","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zZkNtL97hn1P6OJC"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"p8JmuP7pndzbZVzj","name":"Beak","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 1 piercing damage.\nThe Raven attacks with its Beak.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232767,"modifiedTime":1672596097374,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LTomFUTBrkRi0Pj5","name":"Efreeti","type":"npc","img":"","system":{"abilities":{"str":{"value":22,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":24,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":200,"min":0,"max":200,"temp":0,"tempmax":0,"formula":"16d10 + 112"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":11,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["ignan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Efreeti","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Fr77Z90cITQsMV3N","name":"Elemental Demise","type":"feat","img":"icons/magic/air/air-wave-gust-smoke-yellow.webp","system":{"description":{"value":"If the efreeti dies, its body disintegrates in a flash of fire and puff of smoke, leaving behind only equipment the djinni was wearing or carrying.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WbaKH3NLA3mvylfM"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gb5HcbKlmYUvLAsk","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The efreeti's innate spell casting ability is Charisma (spell save DC 15, +7 to hit with spell attacks). It can innately cast the following spells, requiring no material components:\nAt will: detect magic\n3/day: enlarge/reduce, tongues\n1/day each: conjure elemental (fire elemental only), gaseous form, invisibility, major image, plane shift, wall of fire","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gWEMjYhRVIEnKbZH","name":"Conjure Elemental (fire elemental only)","type":"spell","img":"icons/magic/symbols/runes-star-pentagon-orange.webp","system":{"description":{"value":"You call forth an elemental servant. Choose an area of air, earth, fire, or water that fills a 10-foot cube within range. An elemental of challenge rating 5 or lower appropriate to the area you chose appears in an unoccupied space within 10 feet of it. For example, a fire elemental emerges from a bonfire, and an earth elemental rises up from the ground. The elemental disappears when it drops to 0 hit points or when the spell ends.The elemental is friendly to you and your companions for the duration. Roll initiative for the elemental, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the elemental, it defends itself from hostile creatures but otherwise takes no actions.If your concentration is broken, the elemental doesn't disappear. Instead, you lose control of the elemental, it becomes hostile toward you and your companions, and it might attack. An uncontrolled elemental can't be dismissed by you, and it disappears 1 hour after you summoned it.Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the challenge rating increases by 1 for each slot level above 5th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":"an area of air, earth, fire, or water that fills a 10-foot cube within range"},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.1LkZvINag7KqBmDR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2NzoIyouATBfPgdc","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The efreeti makes two scimitar attacks or uses its Hurl Flame twice.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tR7JGJjIz6H1oerb","name":"Scimitar","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage plus 7 (2d6) fire damage.The Efreeti attacks with its Scimitar.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6+@mod","slashing"],["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":true,"fir":false,"foc":false,"hvy":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.fbC0Mg1a73wdFbqO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9D7vAr8iJbSa4g5N","name":"Hurl Flame","type":"weapon","img":"icons/magic/fire/blast-jet-stream-splash.webp","system":{"description":{"value":"Ranged Spell Attack:+7 to hit,, 120 ft., one target. Hit: 17 (5d6) fire damage.The Efreeti attacks with its Hurl Flame.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116443,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WahI41a3goVUg0x1","name":"Enlarge/Reduce","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You cause a creature or an object you can see within range to grow larger or smaller for the Duration. Choose either a creature or an object that is neither worn nor carried. If the target is unwilling, it can make a Constitution saving throw. On a success, the spell has no effect.If the target is a creature, everything it is wearing and carrying changes size with it. Any item dropped by an affected creature returns to normal size at once.Enlarge. The target's size doubles in all dimensions, and its weight is multiplied by eight. This growth increases its size by one category—from Medium to Large, for example. If there isn't enough room for the target to double its size, the creature or object attains the maximum possible size in the space available. Until the spell ends, the target also has advantage on Strength Checks and Strength Saving Throws. The target's Weapons also grow to match its new size. While these Weapons are enlarged, the target's attacks with them deal 1d4 extra damage.Reduce. The target's size is halved in all dimensions, and its weight is reduced to one-eighth of normal. This reduction decreases its size by one category—from Medium to Small, for example. Until the spell ends, the target also has disadvantage on Strength Checks and Strength Saving Throws. The target's Weapons also shrink to match its new size. While these Weapons are reduced, the target's attacks with them deal 1d4 less damage (this can't reduce the damage below 1).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A pinch of powdered iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.WahI41a3goVUg0x1"}},"img":"icons/magic/control/energy-stream-link-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234153,"modifiedTime":1661791116444,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"gopnZvS0c2jD5FP8","name":"Tongues","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell grants the creature you touch the ability to understand any spoken language it hears. Moreover, when the target speaks, any creature that knows at least one language and can hear the target understands what it says.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"div","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small clay model of a ziggurat","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gopnZvS0c2jD5FP8"}},"img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234193,"modifiedTime":1661791116444,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"2IWiZAJtOGDoKjiz","name":"Gaseous Form","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You transform a willing creature you touch, along with everything it's wearing and carrying, into a misty cloud for the duration. The spell ends if the creature drops to 0 hit points. An incorporeal creature isn't affected.While in this form, the target's only method of movement is a flying speed of 10 feet. The target can enter and occupy the space of another creature. The target has resistance to nonmagical damage, and it has advantage on Strength, Dexterity, and Constitution saving throws. The target can pass through small holes, narrow openings, and even mere cracks, though it treats liquids as though they were solid surfaces. The target can't fall and remains hovering in the air even when stunned or otherwise incapacitated.While in the form of a misty cloud, the target can't talk or manipulate objects, and any objects it was carrying or holding can't be dropped, used, or otherwise interacted with. The target can't attack or cast spells.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of gauze and a wisp of smoke","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.2IWiZAJtOGDoKjiz"}},"img":"icons/magic/air/fog-gas-smoke-dense-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234058,"modifiedTime":1661791116444,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"1N8dDMMgZ1h1YJ3B","name":"Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An eyelash encased in gum arabic","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.1N8dDMMgZ1h1YJ3B"}},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234056,"modifiedTime":1661791116444,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"nslx2nT3p4lNkmdp","name":"Major Image","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 20-foot cube. The image appears at a spot that you can see within range and lasts for the duration. It seems completely real, including sounds, smells, and temperature appropriate to the thing depicted. You can't create sufficient heat or cold to cause damage, a sound loud enough to deal thunder damage or deafen a creature, or a smell that might sicken a creature (like a troglodyte's stench).As long as you are within range of the illusion, you can use your action to cause the image to move to any other spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking. Similarly, you can cause the illusion to make different sounds at different times, even making it carry on a conversation, for example.Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and its other sensory qualities become faint to the creature.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the spell lasts until dispelled, without requiring your concentration.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of fleece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.nslx2nT3p4lNkmdp"}},"img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234222,"modifiedTime":1661791116445,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"J6Jpw5XzB5aTeqnz","name":"Plane Shift","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You and up to eight willing creatures who link hands in a circle are transported to a different plane of existence. You can specify a target destination in general terms, such as the City of Brass on the Elemental Plane of Fire or the palace of Dispater on the second level of the Nine Hells, and you appear in or near that destination. If you are trying to reach the City of Brass, for example, you might arrive in its Street of Steel, before its Gate of Ashes, or looking at the city from across the Sea of Fire, at the DM's discretion.Alternatively, if you know the sigil sequence of a teleportation circle on another plane of existence, this spell can take you to that circle. If the teleportation circle is too small to hold all the creatures you transported, they appear in the closest unoccupied spaces next to the circle.You can use this spell to banish an unwilling creature to another plane. Choose a creature within your reach and make a melee spell attack against it. On a hit, the creature must make a Charisma saving throw. If the creature fails this save, it is transported to a random location on the plane of existence you specify. A creature so transported must find its own way back to your current plane of existence.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":8,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":15,"scaling":"spell"},"level":7,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A forked, metal rod worth at least 250 gp, attuned to a particular plane of existence","consumed":false,"cost":250,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.J6Jpw5XzB5aTeqnz"}},"img":"icons/magic/symbols/runes-star-pentagon-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234111,"modifiedTime":1661791116445,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"X3DrXgxjwI2dvkD6","name":"Wall of Fire","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a wall of fire on a solid surface within range. You can make the wall up to 60 feet long, 20 feet high, and 1 foot thick, or a ringed wall up to 20 feet in diameter, 20 feet high, and 1 foot thick. The wall is opaque and lasts for the duration.When the wall appears, each creature within its area must make a Dexterity saving throw. On a failed save, a creature takes 5d8 fire damage, or half as much damage on a successful save.One side of the wall, selected by you when you cast this spell, deals 5d8 fire damage to each creature that ends its turn within 10 feet of that side or inside the wall. A creature takes the same damage when it enters the wall for the first time on a turn or ends its turn there. The other side of the wall deals no damage.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"wall"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":15,"scaling":"spell"},"level":4,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small piece of phosphorous","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.X3DrXgxjwI2dvkD6"}},"img":"icons/magic/air/fog-gas-smoke-swirling-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234155,"modifiedTime":1661791116445,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232769,"modifiedTime":1672596097471,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"M4eX4Mu5IHCr3TMf","name":"Adult Black Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":195,"min":0,"max":195,"temp":0,"tempmax":0,"formula":"17d12 + 85"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Swamp","cr":14,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":["acid"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Adult Black Dragon","displayName":0,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"P47jJ8bjQulsbdUg","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"amUUCouL69OK1GZU","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) acid damage.The Adult Black Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["1d8","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uXxifk618IakGfYG","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.The Adult Black Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"t9FrDQLVCU8x4obw","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.The Adult Black Dragon attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"A3azHlbNcHLRgogu","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Xlzm4nSYrmGB03GH","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6gjpG1ezpMNyJDGc","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6bromElr0abqNXJL","name":"Acid Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"The dragon exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.The dragon exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d8","acid"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zjcGly9P3Gn9MXt7"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tWGObm0RZMwSrQLU","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LgqLdk3VQOVcO5UI","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\n\nMelee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8+7) bludgeoning damage.\n\n\nThe dragon slams its long tail against its foe!","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kFPbmQZGCKfWRXpq","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"\nThe dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 19 Dexterity saving throw or take 13 (2d6+6) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.\n\nThe dragon beats its wings!","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":18,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RnqMV5Ur5n9S3wIt","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"cqasTMQJDj2XBMse","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Wgu6mm84tNNWdiEH","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232772,"modifiedTime":1672596097571,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MADGs8pWMVyyFOf1","name":"Horned Devil","type":"npc","img":"","system":{"abilities":{"str":{"value":22,"proficient":1,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":178,"min":0,"max":178,"temp":null,"tempmax":0,"formula":"17d10 + 85"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"Devil","swarm":"","custom":""},"environment":"","cr":11,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["infernal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Horned Devil","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"g8r9DZeHyfNzerHP","name":"Fork","type":"weapon","img":"icons/tools/cooking/fork-steel-grey.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 15 (2d8 + 6) piercing damage.The Horned Devil attacks with its Fork.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"smHERNgdj5yGNQuD","name":"Devil's Sight","type":"feat","img":"icons/magic/perception/eye-slit-pink.webp","system":{"description":{"value":"Magical darkness doesn't impede the devil's darkvision.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gq4SqLPtYhhtWidm","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The devil has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VpvOoT7mbR0XNZiL","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 10 (1d8 + 6) piercing damage. If the target is a creature other than an undead or a construct, it must succeed on a DC 17 Constitution saving throw or lose 10 (3d6) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 10 (3d6). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.The Horned Devil attacks with its Tail. If the target is a creature other than an undead or a construct, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"3d6","save":{"ability":"con","dc":17,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9FAl5YGUTmt1RnEF","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The devil makes three melee attacks: two with its fork and one with its tail. It can use Hurl Flame in place of any melee attack.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GFYzWSyeuW9O4a0I","name":"Hurl Flame","type":"weapon","img":"icons/magic/fire/blast-jet-stream-splash.webp","system":{"description":{"value":"\nRanged Spell Attack:+7 to hit,, 150 ft., one target. Hit: 14 (4d6) fire damage.\nIf the target is a flammable object that isn't being worn or carried, it also catches fire.\n\nThe Horned Devil attacks with its Hurl Flame. If the target is a flammable object that isn't being worn or carried, it also catches fire.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232774,"modifiedTime":1672596097618,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MAoCGF5VkQwhmgvI","name":"Manticore","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":68,"min":0,"max":68,"temp":0,"tempmax":0,"formula":"8d10 + 24"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":50,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":3,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Manticore","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"7GyypGVW1RhhbcqC","name":"Tail Spike Regrowth","type":"feat","img":"icons/creatures/mammals/wolf-shadow-black.webp","system":{"description":{"value":"The manticore has twenty-four tail spikes. Used spikes regrow when the manticore finishes a long rest.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":24,"max":"24","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iVOxckt9448v7Ho5"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Wr6BSqrXAJZu28sp","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The manticore makes three attacks: one with its bite and two with its claws or three with its tail spikes.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"thSJXAlyfHGmVWN5","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage.The Manticore attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4WFf0M2tCPwiLPxG","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.The Manticore attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bYJjJPKhiDOTMlmS","name":"Tail Spike","type":"weapon","img":"icons/commodities/bones/horn-worn-white.webp","system":{"description":{"value":"Ranged Weapon Attack: +5 to hit, range 100/200 ft., one target. Hit: 7 (1d8 + 3) piercing damage.The Manticore attacks with its Tail Spike.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":100,"long":200,"units":"ft"},"uses":{"value":24,"max":"24","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232776,"modifiedTime":1672596097666,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MO382D2sxtAIuUC5","name":"Adult Gold Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":27,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":25,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":24,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":256,"min":0,"max":256,"temp":0,"tempmax":0,"formula":"19d12 + 133"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":17,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Adult Gold Dragon","displayName":0,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"EDuUEVF5kjzG5YQZ","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OFL5IcvfcWfE3Vmp","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TUvgGNvTgO6MlepM","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tx5M41t7JlSuVQ9R","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.The Adult Gold Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ORrcO13EbgjVvNjA","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.The Adult Gold Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FXYoii0YU2Y7CqBa","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.The Adult Gold Dragon attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"v92F1DGzRWSEMPxH","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":21,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GTmsKSKk8kTlQXkT","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Fire Breath.** The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 66 (12d10) fire damage on a failed save, or half as much damage on a successful one.\n**Weakening Breath.** The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 21 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zoAkmBfD677QYuSh","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\n**Fire Breath.** The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 66 (12d10) fire damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales fire in a 60-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d10","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":21,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KfnqUfoAw7IVzVpy","name":"Weakening Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\n**Weakening Breath.** The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 21 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon exhales gas in a 60-foot cone. Each creature in that area must make a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":21,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.IHh6n8uZBGqyRfZz"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Fyvg74zRJWn05uhK","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RNFCtDcWoF0NAvl2","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QtK9Z8y5x78hUIxF","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FehkcXNr3EsmJMif","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nThe dragon makes a tail attack.\n\nThe dragon slams its long tail against its foe!","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"G0aqIC7Haxea184o","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"\nThe dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 22 Dexterity saving throw or take 15 (2d6+8) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.\n\nThe dragon beats its wings!","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"cone"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod",""]],"versatile":""},"formula":"","save":{"ability":"dex","dc":22,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jAr1sQYarE6ySAbR","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eo41KZmfDzUstx4g","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232777,"modifiedTime":1672596097762,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MUpBNDoJEr09bLaO","name":"Sprite","type":"npc","img":"","system":{"abilities":{"str":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":2,"min":0,"max":2,"temp":0,"tempmax":0,"formula":"1d4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":40,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Good","race":"","type":{"value":"fey","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","elvish","sylvan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Sprite","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"alpha":1,"light":{"alpha":0.5,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"reverse":false,"type":null},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.3},"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"qlTIjSkjmEDQTj1x","name":"Leather Armor (tiny)","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YN8cO9SCNOIFJcmw","name":"Shortbow","type":"weapon","img":"icons/weapons/bows/shortbow-recurve.webp","system":{"description":{"value":"Ranged Weapon Attack: +6 to hit, range 40/160 ft., one target. Hit: 1 piercing damage.The Sprite attacks with its Shortbow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":40,"long":160,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":10,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.GJv6WkD7D2J6rP6M"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mT8SL7VHsG6qY5G7","name":"Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"Melee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 1 slashing damage.The Sprite attacks with its Longsword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qLd01BTjVwH6NUfH","name":"Invisibility","type":"feat","img":"icons/creatures/webs/webthin-blue.webp","system":{"description":{"value":"The sprite magically turns invisible until it attacks or casts a spell, or until its concentration ends (as if concentrating on a spell). Any equipment the sprite wears or carries is invisible with it.The sprite magically turns invisible. Any equipment the sprite wears or carries is invisible with it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.dA5X2eQuOtHywpQF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qJHrH8Q3q1JB5xe5","name":"Heart Sight","type":"feat","img":"icons/magic/control/hypnosis-mesmerism-eye.webp","system":{"description":{"value":"The sprite touches a creature and magically knows the creature's current emotional state. If the target fails a DC 10 Charisma saving throw, the sprite also knows the creature's alignment. Celestials, fiends, and undead automatically fail the saving throw.The sprite touches a creature. target must make a Charisma saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iCae1IDxHvRmjEgi"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232779,"modifiedTime":1672596097811,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MWlwLlKXh8jUUxOL","name":"Giant Shark","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":126,"min":0,"max":126,"temp":0,"tempmax":0,"formula":"11d12 + 55"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":50,"walk":0,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Shark","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"0r0ClOXv3FyCYvTr","name":"Blood Frenzy","type":"feat","img":"icons/skills/wounds/blood-spurt-spray-red.webp","system":{"description":{"value":"The shark has advantage on melee attack rolls against any creature that doesn't have all its hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.B2kZOyrB7poB4liR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VMKAbY9Znfzav7Ou","name":"Water Breathing","type":"feat","img":"icons/magic/water/projectile-water-ice-orb.webp","system":{"description":{"value":"The shark can breathe only underwater.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.c4Q6NDCLJSNcNc9T"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fGIh2Vq3XhIzacIg","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+9 to hit,, 5 ft., one target. Hit: 22 (3d10 + 6) piercing damage.\nThe Giant Shark attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232781,"modifiedTime":1672596097854,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MZYCPIVoBs918qGZ","name":"Jackal","type":"npc","img":"","system":{"abilities":{"str":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":3,"min":0,"max":3,"temp":0,"tempmax":0,"formula":"1d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Jackal","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"fBpB1lIZvuqLD74z","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The jackal has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Jackal","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JX4jbwWlO8zaTc4s","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The jackal has advantage on an attack roll against a creature if at least one of the jackal's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Jackal","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ggHLjL39tb62Bwxy","name":"Bite","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+1 to hit,, 5 ft., one target. Hit: 1 (1d4 - 1) piercing damage.\nThe Jackal attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232783,"modifiedTime":1672596098520,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MiYRAIHwm9It1in8","name":"Mammoth","type":"npc","img":"","system":{"abilities":{"str":{"value":24,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":126,"min":0,"max":126,"temp":0,"tempmax":0,"formula":"11d12 + 55"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Arctic","cr":6,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Mammoth","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"4LYRJH02EsSnZUNc","name":"Trampling Charge","type":"feat","img":"icons/creatures/abilities/cougar-pounce-stalk-black.webp","system":{"description":{"value":"\nIf the mammoth moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a DC 18 Strength saving throw or be knocked prone. If the target is prone, the mammoth can make one stomp attack against it as a bonus action.\n\nIf the mammoth moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yD51x4dihnbHwfsj"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"S7i3GTdoo6tyc2wL","name":"Gore","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 25 (4d8 + 7) piercing damage.\nThe Mammoth attacks with its Gore.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Hx541foatcQiMSZj","name":"Stomp","type":"weapon","img":"icons/creatures/abilities/cougar-pounce-stalk-black.webp","system":{"description":{"value":"\nMelee Weapon Attack:+10 to hit,, 5 ft., one prone creature. Hit: 29 (4d10 + 7) bludgeoning damage.\nThe Mammoth attacks with its Stomp.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232784,"modifiedTime":1672596098575,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MnoL59nOOfYatAkQ","name":"Lamia","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":97,"min":0,"max":97,"temp":0,"tempmax":0,"formula":"13d10 + 26"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":4,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["abyssal","common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":2,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Lamia","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"72qxug7ywesnINin","name":"Disguise Self (any humanoid form)","type":"spell","img":"icons/magic/control/debuff-energy-hold-teal-blue.webp","system":{"description":{"value":"You make yourself—including your clothing, armor, weapons, and other belongings on your person—look different until the spell ends or until you use your action to dismiss it. You can seem 1 foot shorter or taller and can appear thin, fat, or in between. You can't change your body type, so you must adopt a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you.The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to your outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel your head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair.To discern that you are disguised, a creature can use its action to inspect your appearance and must succeed on an Intelligence (Investigation) check against your spell save DC.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":13,"scaling":"spell"},"level":1,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.A3q2gTNqG6fvNGrv"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mSRxk4sD2tHfYAUo","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The lamia's innate spellcasting ability is Charisma (spell save DC 13). It can innately cast the following spells, requiring no material components:\nAt will: disguise self (any humanoid form), major image\n3/day each: charm person, mirror image, scrying, suggestion\n1/day: geas","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LjPDX0VIEJRv0boG","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The lamia makes two attacks: one with its claws and one with its dagger or Intoxicating Touch.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lqr5NeudKmKQfSpZ","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.The Lamia attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jMTZfqYRB58CwXyw","name":"Dagger","type":"weapon","img":"icons/weapons/daggers/dagger-jeweled-purple.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage.The Lamia attacks with its Dagger.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":true,"fir":false,"foc":false,"hvy":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.0E565kQUBmndJ1a2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"cd8MN5gJkmUn1RTE","name":"Intoxicating Touch","type":"feat","img":"icons/magic/nature/beam-hand-leaves-green.webp","system":{"description":{"value":"Melee Spell Attack:+5 to hit,, 5 ft., one creature. Hit: The target is magically cursed for 1 hour. Until the curse ends, the target has disadvantage on Wisdom saving throws and all ability checks.The target has disadvantage on Wisdom saving throws and all ability checks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.qfWKOH5AawhmNSwl"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nslx2nT3p4lNkmdp","name":"Major Image","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 20-foot cube. The image appears at a spot that you can see within range and lasts for the duration. It seems completely real, including sounds, smells, and temperature appropriate to the thing depicted. You can't create sufficient heat or cold to cause damage, a sound loud enough to deal thunder damage or deafen a creature, or a smell that might sicken a creature (like a troglodyte's stench).As long as you are within range of the illusion, you can use your action to cause the image to move to any other spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking. Similarly, you can cause the illusion to make different sounds at different times, even making it carry on a conversation, for example.Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and its other sensory qualities become faint to the creature.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the spell lasts until dispelled, without requiring your concentration.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of fleece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.nslx2nT3p4lNkmdp"}},"img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234222,"modifiedTime":1661791116466,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"eS7XnnApoxRxYXPs","name":"Charm Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to charm a humanoid you can see within range. It must make a Wisdom saving throw, and does so with advantage if you or your companions are fighting it. If it fails the saving throw, it is charmed by you until the spell ends or until you or your companions do anything harmful to it. The charmed creature regards you as a friendly acquaintance. When the spell ends, the creature knows it was charmed by you.\n At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.eS7XnnApoxRxYXPs"}},"img":"icons/magic/fire/explosion-fireball-medium-purple-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234185,"modifiedTime":1661791116466,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"X4c8xCkmF8U9HUMz","name":"Mirror Image","type":"spell","img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","system":{"description":{"value":"Three illusory duplicates of yourself appear in your space. Until the spell ends, the duplicates move with you and mimic your actions, shifting position so it's impossible to track which image is real. You can use your action to dismiss the illusory duplicates.\nEach time a creature targets you with an attack during the spell's duration, roll a [[/r 1d20 # Mirror Image Check]] to determine whether the attack instead targets one of your duplicates.\nIf you have three duplicates, you must roll a 6 or higher to change the attack's target to a duplicate. With two duplicates, you must roll an 8 or higher. With one duplicate, you must roll an 11 or higher.\nA duplicate's AC equals 10 + your Dexterity modifier. If an attack hits a duplicate, the duplicate is destroyed. A duplicate can be destroyed only by an attack that hits it. It ignores all other damage and effects. The spell ends when all three duplicates are destroyed.\nA creature is unaffected by this spell if it can't see, if it relies on senses other than sight, such as blindsight, or if it can perceive illusions as false, as with truesight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d20","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.X4c8xCkmF8U9HUMz"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234155,"modifiedTime":1661791116466,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"fVbCxFRaORalHB20","name":"Scrying","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You can see and hear a particular creature you choose that is on the same plane of existence as you. The target must make a Wisdom saving throw, which is modified by how well you know the target and the sort of physical connection you have to it. If a target knows you're casting this spell, it can fail the saving throw voluntarily if it wants to be observed.\n\n\n\nKnowledge\nSave Modifier\n\n\nSecondhand (you have heard of the target)\n+5\n\n\nFirsthand (you have met the target)\n+0\n\n\nFamiliar (you know the target well)\n-5\n\n\n\n\n\n\n\nConnection\nSave Modifier\n\n\nLikeness or picture\n-2\n\n\nPossession or garment\n-4\n\n\nBody part, lock of hair, bit of nail, or the like\n-10\n\n\n\nOn a successful save, the target isn't affected, and you can't use this spell against it again for 24 hours.On a failed save, the spell creates an Invisible sensor within 10 feet of the target. You can see and hear through the sensor as if you were there. The sensor moves with the target, remaining within 10 feet of it for the Duration. A creature that can see Invisile Objects sees the sensor as a luminous orb about the size of your fist.Instead of targeting a creature, you can choose a location you have seen before as the target of this spell. When you do, the sensor appears at that location and doesn't move.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A focus worth at least 1,000 gp, such as a crystal ball, a silver mirror, or a font filled with holy water.","consumed":false,"cost":1000,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.fVbCxFRaORalHB20"}},"img":"icons/magic/perception/eye-ringed-glow-angry-large-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234189,"modifiedTime":1661791116467,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"zMAWdyc8UVb37BK4","name":"Suggestion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You suggest a course of activity (limited to a sentence or two) and magically influence a creature you can see within range that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act ends the spell.The target must make a Wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do.You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a knight give her warhorse to the first beggar she meets. If the condition isn't met before the spell expires, the activity isn't performed.If you or any of your companions damage the target, the spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A snake's tongue and either a bit of honeycomb or a drop of sweet oil","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.zMAWdyc8UVb37BK4"}},"img":"icons/magic/air/air-burst-spiral-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234245,"modifiedTime":1661791116468,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"JQyigMNPiDnGI18b","name":"Geas","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You place a magical command on a creature that you can see within range, forcing it to carry out some service or refrain from some action or course of activity as you decide. If the creature can understand you, it must succeed on a Wisdom saving throw or become Charmed by you for the Duration. While the creature is charmed by you, it takes 5d10 psychic damage each time it acts in a manner directly counter to your instructions, but no more than once each day. A creature that can't understand you is unaffected by the spell.You can issue any command you choose, short of an activity that would result in certain death. Should you issue a suicidal command, the spell ends.You can end the spell early by using an action to dismiss it. A Remove Curse, Greater Restoration, or wish spell also ends it.At Higher Levels. When you cast this spell using a spell slot of 7th or 8th level, the Duration is 1 year. When you cast this spell using a spell slot of 9th level, the spell lasts until it is ended by one of the Spells mentioned above.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"30","units":"day"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d10","psychic"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":5,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.JQyigMNPiDnGI18b"}},"img":"icons/magic/air/air-burst-spiral-large-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234114,"modifiedTime":1661791116468,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232786,"modifiedTime":1672596098671,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NAISFPoNNgUCsEyW","name":"Zombie","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":6,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":8,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"3d8 + 9"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Urban","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":[],"custom":"understands the languages it knew in life but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Zombie","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Ed7XgnZu9qRs3qdn","name":"Slam","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage.The Zombie attacks with its Slam.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RDeCoZRniQBNq0rX","name":"Undead Fortitude","type":"feat","img":"icons/magic/acid/pouring-gas-smoke-liquid.webp","system":{"description":{"value":"If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5+the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead.If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VYAnJjIgb5nPXfRr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232788,"modifiedTime":1672596098715,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NB6wUgVqeOQtsQKu","name":"Treant","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":16,"calc":"natural","formula":""},"hp":{"value":138,"min":0,"max":138,"temp":0,"tempmax":0,"formula":"12d12 + 60"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"plant","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":9,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing"],"bypasses":[],"custom":""},"dv":{"value":["fire"],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","druidic","elvish","sylvan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Treant","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"8uUyRr6Ho7Yvx8pP","name":"Animate Trees","type":"feat","img":"icons/magic/nature/tree-spirit-green.webp","system":{"description":{"value":"The treant magically animates one or two trees it can see within 60 feet of it. These trees have the same statistics as a treant, except they have Intelligence and Charisma scores of 1, they can't speak, and they have only the Slam action option. An animated tree acts as an ally of the treant. The tree remains animate for 1 day or until it dies; until the treant dies or is more than 120 feet from the tree; or until the treant takes a bonus action to turn it back into an inanimate tree. The tree then takes root if possible.The treant magically animates one or two trees it can see within 60 feet of it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.j6F0v4guYhRYWddT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"skQsBSPby8pLZSLI","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the treant remains motionless, it is indistinguishable from a normal tree.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BLz58sp79C2HvinU","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The treant makes two slam attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eTROJriR9B5abIZy","name":"Treant - Rock","type":"weapon","img":"icons/magic/earth/projectile-boulder-yellow.webp","system":{"description":{"value":"Ranged Weapon Attack: +10 to hit, range 60/180 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.The Treant attacks with its Rock.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":180,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RMsSkfIx97Hnqf37","name":"Siege Monster","type":"feat","img":"icons/creatures/magical/construct-iron-stomping-yellow.webp","system":{"description":{"value":"The treant deals double damage to objects and structures.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.cSA0EbjlxCbst4gJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lisZZTaupqInGEi1","name":"Slam","type":"weapon","img":"icons/magic/nature/tree-animated-strike.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 16 (3d6 + 6) bludgeoning damage.The Treant attacks with its Slam.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232789,"modifiedTime":1672596098767,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NmQLj0zv4FmfuSan","name":"Young Bronze Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":142,"min":0,"max":142,"temp":null,"tempmax":0,"formula":"15d10 + 60"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Coastal","cr":8,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["lightning"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Young Bronze Dragon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"E7PndURmnBqGibjl","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"22lf3TLPObmD4s6h","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+8 to hit,, 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage.The Young Bronze Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LMfwpBb1Pg7CLItO","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Lightning Breath.** The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 15 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.\n**Repulsion Breath.** The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 15 Strength saving throw. On a failed save, the creature is pushed 40 feet away from the dragon.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Eahi8ih9q0jF1XW2","name":"Lightning Breath","type":"feat","img":"icons/magic/lightning/bolt-strike-blue.webp","system":{"description":{"value":"\n*Lightning Breath.** The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 15 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":15,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LVnd9fq9cQj7rR0Q"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"h48EplFcKFZxJWjO","name":"Repulsion Breath","type":"feat","img":"icons/magic/air/air-wave-gust-blue.webp","system":{"description":{"value":"\n**Repulsion Breath.** The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 15 Strength saving throw. On a failed save, the creature is pushed 40 feet away from the dragon.\n\nThe dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must make a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":15,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zRDERBe0lMbwyGwN"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LGFPSpA0pvVpj3cF","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.The Young Bronze Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xDjzXK9dbD2EV8hi","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232791,"modifiedTime":1672596098812,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NpvwE1feOHyEqAbP","name":"Giant Constrictor Snake","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":60,"min":0,"max":60,"temp":0,"tempmax":0,"formula":"8d12 + 8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Constrictor Snake","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"qB9j7Epq7UVkGWzY","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage.\nThe Giant Constrictor Snake attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3FIKn37A037kPgzc","name":"Constrict","type":"weapon","img":"icons/creatures/reptiles/serpent-horned-green.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one creature. Hit: 13 (2d8 + 4) bludgeoning damage.\nThe target is grappled (escape DC 16). Until this grapple ends, the creature is restrained, and the snake can't constrict another target.\n\nThe Giant Constrictor Snake attacks with its Constrict. The target is grappled. Until this grapple ends, the creature is restrained, and the snake can't constrict another target.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232793,"modifiedTime":1672596098852,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NwQpeeaMxAC3fRft","name":"Black Pudding","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":7,"calc":"natural","formula":""},"hp":{"value":85,"min":0,"max":85,"temp":0,"tempmax":0,"formula":"10d10 + 30"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":20,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":"Blind beyond this radius"},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"ooze","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":4,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["acid","cold","lightning","slashing"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["blinded","charmed","deafened","frightened","prone","exhaustion"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Black Pudding","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Na7qo8robmcacNZI","name":"Amorphous","type":"feat","img":"icons/creatures/slimes/slime-movement-dripping-purple.webp","system":{"description":{"value":"The pudding can move through a space as narrow as 1 inch wide without squeezing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.3lDp8DtWwNDHSvxX"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wvlDMuDDdk7peoPa","name":"Corrosive Form","type":"feat","img":"icons/magic/earth/orb-stone-smoke-teal.webp","system":{"description":{"value":"\nA creature that touches the pudding or hits it with a melee attack while within 5 feet of it takes 4 (1d8) acid damage. Any nonmagical weapon made of metal or wood that hits the pudding corrodes.\nAfter dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls. If its penalty drops to -5, the weapon is destroyed. Nonmagical ammunition made of metal or wood that hits the pudding is destroyed after dealing damage. The pudding can eat through 2-inch-thick, nonmagical wood or metal in 1 round.\n\nA creature that touches the pudding or hits it with a melee attack while within 5 feet of it takes acid damage. Any nonmagical weapon made of metal or wood that hits the pudding corrodes.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.cZm13DxOe9lZyGFT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"06FRVwBFMJYhZ94o","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The pudding can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"v6ZspnPr8G5hApkL","name":"Pseudopod","type":"weapon","img":"icons/creatures/slimes/slime-movement-dripping-pseudopods-green.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) bludgeoning damage plus 18 (4d8) acid damage.\nIn addition, nonmagical armor worn by the target is partly dissolved and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.\n\nThe Black Pudding attacks with its Pseudopod. In addition, nonmagical armor worn by the target is partly dissolved and takes a permanent and cumulative -1 penalty to the AC it offers.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"],["4d8","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VcVWWSlfTBeXWh3T","name":"Split","type":"feat","img":"icons/creatures/slimes/slime-movement-pseudopod-green.webp","system":{"description":{"value":"\nWhen a pudding that is Medium or larger is subjected to lightning or slashing damage, it splits into two new puddings if it has at least 10 Hit Points. Each new pudding has Hit Points equal to half the original pudding's, rounded down. New puddings are one size smaller than the original pudding.\n\nThe pudding splits into two new puddings. New puddings are one size smaller than the original pudding.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.NzHwrEuKnKxZ4NTP"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232795,"modifiedTime":1672596098892,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"O3ABqI55Ir1du1Xa","name":"Scout","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":16,"min":0,"max":16,"temp":0,"tempmax":0,"formula":"3d8 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Alignment","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"any one language (usually Common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":2,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Scout","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"qnFVVlRzucX7BNga","name":"Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PQGwUNCJ7EkJAE8V","name":"Keen Hearing and Sight","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The scout has advantage on Wisdom (Perception) checks that rely on hearing or sight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YO57HtdvpuGxJANB","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The scout makes two melee attacks or two ranged attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YDoOa6D6QDoR2Htu","name":"Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\nThe Scout attacks with their Shortsword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.osLzOwQdPtrK3rQH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"E2fYrhLigMeVH09l","name":"Longbow","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"\nRanged Weapon Attack: +4 to hit, ranged 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\nThe Scout attacks with their Longbow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3cymOVja8jXbzrdT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232797,"modifiedTime":1672596098933,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"OBujQLLPSmlJiZnL","name":"Ghoul","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"5d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","poisoned","exhaustion"],"custom":""},"languages":{"value":["common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ghoul","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"E5cmqIqRIwyTkhgp","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+2 to hit,, 5 ft., one creature. Hit: 9 (2d6 + 2) piercing damage.The Ghoul attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"-2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ArxzPC3rsBztgUvI","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage. If the target is a creature other than an elf or undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.The Ghoul attacks with its Claws. If the target is a creature other than an elf or undead, it must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232798,"modifiedTime":1672596098975,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"OGPHF4sCVOAi87TU","name":"Glabrezu","type":"npc","img":"","system":{"abilities":{"str":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":157,"min":0,"max":157,"temp":null,"tempmax":0,"formula":"15d10 + 75"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":"int"},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"fiend","subtype":"Demon","swarm":"","custom":""},"environment":"","cr":9,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","fire","lightning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["abyssal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Glabrezu","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"9kqiKxbLXk7Ved3q","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The glabrezu's spellcasting ability is Intelligence (spell save DC 16). The glabrezu can innately cast the following spells, requiring no material components:\nAt will: darkness, detect magic, dispel magic\n1/day each: confusion, fly, power word stun","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7a3DRiT1Ku9AnAQO","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The glabrezu has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MCquBpEbQDXKRAju","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The glabrezu makes four attacks: two with its pincers and two with its fists. Alternatively, it makes two attacks with its pincers and casts one spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pEUD99mri5iDNGH7","name":"Pincer","type":"weapon","img":"icons/commodities/claws/claw-pincer-red.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 10 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage. If the target is a Medium or smaller creature, it is grappled (escape DC 15). The glabrezu has two pincers, each of which can grapple only one target.The Glabrezu attacks with its Pincer. If the target is a Medium or smaller creature, it is grappled.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VGFZM2Zvp0NT5Yb9","name":"Fist","type":"weapon","img":"icons/magic/fire/flame-burning-fist-strike.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 5 ft., one target. Hit: 7 (2d4 + 2) bludgeoning damage.The Glabrezu attacks with its Fist.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod -3","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"S7VbUetIfVT7B6Eq","name":"Darkness","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Magical darkness spreads from a point you choose within range to fill a 15-foot-radius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and nonmagical light can't illuminate it.If the point you choose is on an object you are holding or one that isn't being worn or carried, the darkness emanates from the object and moves with it. Completely covering the source of the darkness with an opaque object, such as a bowl or a helm, blocks the darkness.If any of this spell's area overlaps with an area of light created by a spell of 2nd level or lower, the spell that created the light is dispelled.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Bat fur and a drop of pitch or piece of coal","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.S7VbUetIfVT7B6Eq"}},"img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234139,"modifiedTime":1661791116486,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116487,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"15Fa6q1nH27XfbR8","name":"Dispel Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose one creature, object, or magical effect within range. Any spell of 3rd level or lower on the target ends. For each spell of 4th level or higher on the target, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a successful check, the spell ends.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you automatically end the effects of a spell on the target if the spell's level is equal to or less than the level of the spell slot you used.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.15Fa6q1nH27XfbR8"}},"img":"icons/skills/melee/strike-blade-knife-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234054,"modifiedTime":1661791116487,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"9hQXdMSmerkTsHDe","name":"Confusion","type":"spell","img":"icons/magic/air/wind-tornado-cyclone-purple-pink.webp","system":{"description":{"value":"This spell assaults and twists creatures' minds, spawning delusions and provoking uncontrolled action. Each creature in a 10-foot-radius sphere centered on a point you choose within range must succeed on a Wisdom saving throw when you cast this spell or be affected by it.\nAn affected target can't take reactions and must roll [[/r 1d10]] at the start of each of its turns to determine its behavior for that turn.\n\n\n\nd10\nBehaviour\n\n\n\n\n1\nThe creature uses all its movement to move in a random direction. To determine the direction, roll [[/r 1d8]] and assign a direction to each die face. The creature doesn't take an action this turn.\n\n\n2-6\nThe creature doesn't move or take actions this turn.\n\n\n7-8\nThe creature uses its action to make a melee attack against a randomly determined creature within its reach. If there is no creature within its reach, the creature does nothing this turn.\n\n\n9-10\nThe creature can act and move normally. \n\n\n\nAt Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the radius of the sphere increases by 5 feet for each slot level above 4th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"sphere"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d10","save":{"ability":"wis","dc":16,"scaling":"spell"},"level":4,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Three walnut shells.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.9hQXdMSmerkTsHDe"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234085,"modifiedTime":1661791116491,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"yfbK8gZqESlaoY5t","name":"Fly","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a willing creature. The target gains a flying speed of 60 feet for the Duration. When the spell ends, the target falls if it is still aloft, unless it can stop the fall.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A wing feather from any bird","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.yfbK8gZqESlaoY5t"}},"img":"icons/magic/control/energy-stream-link-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234243,"modifiedTime":1661791116492,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"35j2QIMmIk6aEdxj","name":"Power Word Stun","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You speak a word of power that can overwhelm the mind of one creature you can see within range, leaving it dumbfounded. If the target has 150 Hit Points or fewer, it is Stunned. Otherwise, the spell has no effect.The stunned target must make a Constitution saving throw at the end of each of its turns. On a successful save, this stunning effect ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":16,"scaling":"spell"},"level":8,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.35j2QIMmIk6aEdxj"}},"img":"icons/magic/control/debuff-chains-ropes-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234062,"modifiedTime":1661791116492,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232800,"modifiedTime":1672596099071,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"OQqybZoMeDFn5AFD","name":"Sea Hag","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":52,"min":0,"max":52,"temp":0,"tempmax":0,"formula":"7d8 + 21"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"fey","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["aquan","common","giant"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Sea Hag","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"VlvfR7YD6twoSRhg","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The hag can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XeAyeJsNjKZKPWEN","name":"Horrific Appearance","type":"feat","img":"icons/creatures/unholy/demon-winged-cyclops-drooling.webp","system":{"description":{"value":"\nAny humanoid that starts its turn within 30 feet of the hag and can see the hag's true form must make a DC 11 Wisdom saving throw. On a failed save, the creature is frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, with disadvantage if the hag is within line of sight, ending the effect on itself on a success.\nIf a creature's saving throw is successful or the effect ends for it, the creature is immune to the hag's Horrific Appearance for the next 24 hours. Unless the target is surprised or the revelation of the hag's true form is sudden, the target can avert its eyes and avoid making the initial saving throw. Until the start of its next turn, a creature that averts its eyes has disadvantage on attack rolls against the hag.\n\nAny humanoid that starts its turn within 30 feet of the hag and can see the hag's true form must make a Wisdom saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":30,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.YShGyidij4sLpyzF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"a75Ba80yp6Y28AJQ","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.The Sea Hag attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7AGmP2dRLYmORUX7","name":"Death Glare","type":"feat","img":"icons/magic/death/skull-humanoid-worn-teal.webp","system":{"description":{"value":"The hag targets one frightened creature she can see within 30 ft. of her. If the target can see the hag, it must succeed on a DC 11 Wisdom saving throw against this magic or drop to 0 hit points.The hag targets one frightened creature she can see within 30 ft. of her. If the target can see the hag, it must make a Wisdom saving throw against this magic.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.o8G8BNPJOWoCKzR5"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8s0lGEYZGFEpwt12","name":"Illusory Appearance","type":"feat","img":"icons/magic/unholy/silhouette-robe-evil-power.webp","system":{"description":{"value":"The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like an ugly creature of her general size and humanoid shape. The effect ends if the hag takes a bonus action to end it or if she dies.\nThe changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have no claws, but someone touching her hand might feel the claws. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 16 Intelligence (Investigation) check to discern that the hag is disguised.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.s7kqggp9VLDb39nu"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232802,"modifiedTime":1672596099113,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"P6qC8jB3pnEH0tIE","name":"Chuul","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":16,"calc":"natural","formula":""},"hp":{"value":93,"min":0,"max":93,"temp":0,"tempmax":0,"formula":"11d10 + 33"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"aberration","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":4,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":[],"custom":"Understands Deep Speech but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Chuul","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"7lnXqe8AnWhtnQh7","name":"Pincer","type":"weapon","img":"icons/commodities/claws/claw-pincer-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\nThe target is grappled (escape DC 14) if it is a Large or smaller creature and the chuul doesn't have two other creatures grappled.\n\nThe Chuul attacks with its Pincer. The target is grappled if it is a Large or smaller creature.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XUzROtGqVZS61Ofm","name":"Tentacles","type":"feat","img":"icons/creatures/tentacles/tentacles-thing-green.webp","system":{"description":{"value":"\nOne creature grappled by the chuul must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute.\nUntil this poison ends, the target is paralyzed. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nOne creature grappled by the chuul must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nKpLMXS9E10TSGhU"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uMZgFW5l9JQmFBp8","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The chuul can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OtOJ4eSobUE30d2S","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The chuul makes two pincer attacks. If the chuul is grappling a creature, the chuul can also use its tentacles once.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"03oy1y5rwobZdg46","name":"Sense Magic","type":"feat","img":"icons/magic/water/projectile-ice-snowball.webp","system":{"description":{"value":"The chuul senses magic within 120 feet of it at will. This trait otherwise works like the detect magic spell but isn't itself magical.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JAnMheqgFhkLF2ET"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232804,"modifiedTime":1672596099151,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"PH78NBdvoaszAb61","name":"Death Dog","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":39,"min":0,"max":39,"temp":0,"tempmax":0,"formula":"6d8 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Death Dog","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"TKV9mS1lvqMAyCaB","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\nIf the target is a creature, it must succeed on a DC 12 Constitution saving throw against disease or become poisoned until the disease is cured. Every 24 hours that elapse, the creature must repeat the saving throw, reducing its hit point maximum by 5 (1d10) on a failure. This reduction lasts until the disease is cured. The creature dies if the disease reduces its hit point maximum to 0.\n\nThe Death Dog attacks with its Bite. If the target is a creature, it must make a Constitution saving throw. Every 24 hours that elapse, the creature must repeat the saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":12,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xpakQFJhIVCQz3Si","name":"Two-Headed","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"The dog has advantage on Wisdom (Perception) checks and on saving throws against being blinded, charmed, deafened, frightened, stunned, or knocked unconscious.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zSBlyP5Vm1CAV5VO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EHX3CeEnlmzwnnK5","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dog makes two bite attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232805,"modifiedTime":1672596099187,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"PHO4J98zK2p4KNyc","name":"Pony","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Urban","cr":0.125,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Pony","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"bDVZoB8Y0b3nkveO","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (2d4 + 2) bludgeoning damage.The Pony attacks with its Hooves.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232806,"modifiedTime":1672596099222,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"PVD5wRdyO7iCJPs1","name":"Priest","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":27,"min":0,"max":27,"temp":0,"tempmax":0,"formula":"5d8 + 5"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":25,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"wis"},"details":{"biography":{"value":"","public":""},"alignment":"Any Alignment","race":"","type":{"value":"humanoid","subtype":"Any Race","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":5,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"any two languages"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":2,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":4,"override":null},"spell2":{"value":3,"override":null},"spell3":{"value":2,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Priest","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"bndaCEOeIP8RgbU1","name":"Chain Shirt","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"Made of interlocking metal rings, a chain shirt is worn between layers of clothing or leather. This armor offers modest protection to the wearer's upper body and allows the sound of the rings rubbing against one another to be muffled by outer layers.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":20,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.p2zChy24ZJdVqMSH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"J12x6xIwx1aCEm1e","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The priest is a 5th-level spellcaster. Its spellcasting ability is Wisdom (spell save DC 13, +5 to hit with spell attacks). The priest has the following cleric spells prepared:\nCantrips (at will): light, sacred flame, thaumaturgy\n1st level (4 slots): cure wounds, guiding bolt, sanctuary\n2nd level (3 slots): lesser restoration, spiritual weapon\n3rd level (2 slots): dispel magic, spirit guardians","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9LzZrzdWIZpjFIGV","name":"Divine Eminence","type":"feat","img":"icons/magic/symbols/cog-shield-white-blue.webp","system":{"description":{"value":"As a bonus action, the priest can expend a spell slot to cause its melee weapon attacks to magically deal an extra 10 (3d6) radiant damage to a target on a hit. This benefit lasts until the end of the turn. If the priest expends a spell slot of 2nd level or higher, the extra damage increases by 1d6 for each level above 1st.As a bonus action, the priest can expend a spell slot to cause its melee weapon attacks to magically deal an extra radiant damage to a target on a hit.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","radiant"]],"versatile":"1d6"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lVrnjqBrv90VH96d"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"B0jROhxuoqvfmz2B","name":"Mace","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Melee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 3 (1d6) bludgeoning damage.The Priest attacks with its Mace.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Ajyq6nGwF7FtLhDQ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"n9pJzTDsAwQxJVRl","name":"Sacred Flame","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Flame-like radiance descends on a creature that you can see within range. The target must succeed on a Dexterity saving throw or take 1d8 radiant damage. The target gains no benefit from cover for this saving throw.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.n9pJzTDsAwQxJVRl"}},"img":"icons/magic/light/beam-rays-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234221,"modifiedTime":1661791116513,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MUO1uYN7JR1hm4dR","name":"Thaumaturgy","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create one of the following magical effects within range:\n\nYour voice booms up to three times as loud as normal for 1 minute.\nYou cause flames to flicker, brighten, dim, or change color for 1 minute.\nYou cause harmless tremors in the ground for 1 minute.\nYou create a sound that originates from a point of your choice within range.\nYou cause an unlocked door or window to fly open or slam shut.\nYou alter the appearance of your eyes for 1 minute.\n\nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234127,"modifiedTime":1661791116513,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"7buEm5KhI5lP8m1z","name":"Guiding Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A flash of light streaks toward a creature of your choice within range. Make a ranged spell attack against the target. On a hit, the target takes 4d6 radiant damage, and the next attack roll made against this target before the end of your next turn has advantage, thanks to the mystical dim light glittering on the target until then.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.7buEm5KhI5lP8m1z"}},"img":"icons/magic/fire/projectile-fireball-smoke-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234075,"modifiedTime":1661791116513,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"gvdA9nPuWLck4tBl","name":"Sanctuary","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You ward a creature within range against attack. Until the spell ends, any creature who targets the warded creature with an attack or a harmful spell must first make a Wisdom saving throw. On a failed save, the creature must choose a new target or lose the attack or spell. This spell doesn't protect the warded creature from area effects, such as the explosion of a Fireball.If the warded creature makes an attack or casts a spell that affects an enemy creature, this spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small silver mirror","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gvdA9nPuWLck4tBl"}},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234193,"modifiedTime":1661791116514,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"F0GsG0SJzsIOacwV","name":"Lesser Restoration","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature and can end either one disease or one condition afflicting it. The condition can be blinded, deafened, paralyzed, or poisoned.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.F0GsG0SJzsIOacwV"}},"img":"icons/magic/life/heart-cross-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234103,"modifiedTime":1661791116514,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"JbxsYXxSOTZbf9I0","name":"Spiritual Weapon","type":"spell","img":"icons/magic/fire/dagger-rune-enchant-flame-purple.webp","system":{"description":{"value":"You create a floating, spectral weapon within range that lasts for the duration or until you cast this spell again. When you cast the spell, you can make a melee spell attack against a creature within 5 feet of the weapon. On a hit, the target takes force damage equal to 1d8 + your spellcasting ability modifier.As a bonus action on your turn, you can move the weapon up to 20 feet and repeat the attack against a creature within 5 feet of it.The weapon can take whatever form you choose. Clerics of deities who are associated with a particular weapon (as St. Cuthbert is known for his mace and Thor for his hammer) make this spell's effect resemble that weapon.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for every two slot levels above the 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"square"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["floor(@item.level / 2)d8 + @mod","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.JbxsYXxSOTZbf9I0"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234115,"modifiedTime":1661791116514,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"15Fa6q1nH27XfbR8","name":"Dispel Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose one creature, object, or magical effect within range. Any spell of 3rd level or lower on the target ends. For each spell of 4th level or higher on the target, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a successful check, the spell ends.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you automatically end the effects of a spell on the target if the spell's level is equal to or less than the level of the spell slot you used.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.15Fa6q1nH27XfbR8"}},"img":"icons/skills/melee/strike-blade-knife-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234054,"modifiedTime":1661791116515,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"uCud2s4TjMfjiXUb","name":"Spirit Guardians","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You call forth spirits to protect you. They flit around you to a distance of 15 feet for the duration. If you are good or neutral, their spectral form appears angelic or fey (your choice). If you are evil, they appear fiendish.When you cast this spell, you can designate any number of creatures you can see to be unaffected by it. An affected creature's speed is halved in the area, and when the creature enters the area for the first time on a turn or starts its turn there, it must make a Wisdom saving throw. On a failed save, the creature takes 3d8 radiant damage (if you are good or neutral) or 3d8 necrotic damage (if you are evil). On a successful save, the creature takes half as much damage.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":3,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A holy symbol","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.uCud2s4TjMfjiXUb"}},"img":"icons/magic/light/projectile-bolts-salvo-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234235,"modifiedTime":1661791116515,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Bnn9Nzajixvow9xi","name":"Light","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A firefly or phosphorescent moss.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Bnn9Nzajixvow9xi"}},"img":"icons/magic/light/explosion-star-small-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234093,"modifiedTime":1661791116515,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"uUWb1wZgtMou0TVP","name":"Cure Wounds","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch regains a number of hit points equal to 1d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.uUWb1wZgtMou0TVP"}},"img":"icons/magic/life/heart-cross-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234236,"modifiedTime":1661791116516,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232808,"modifiedTime":1672596099322,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"PcZ0QjIG6bHpffp9","name":"Swarm of Bats","type":"npc","img":"","system":{"abilities":{"str":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"5d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":30,"swim":0,"walk":0,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"tiny","custom":""},"environment":"","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","grappled","paralyzed","petrified","prone","restrained","stunned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Swarm of Bats","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"0NpX1YUDTXjgIm23","name":"Bites","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 0 ft., one creature in the swarm's space. Hit: 5 (2d4) piercing damage, or 2 (1d4) piercing damage if the swarm has half of its hit points or fewer.\nThe Swarm of Bats attacks with a flurry of Bites.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4","piercing"]],"versatile":"1d4"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"cBVltbg8hNBBuTZ7","name":"Swarm","type":"feat","img":"icons/creatures/mammals/bats-movement-flying-purple.webp","system":{"description":{"value":"The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny bat. The swarm can't regain hit points or gain temporary hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Bats","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eL3OJmc4FuetizKO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AKRFqSGc4D9j3Mhl","name":"Keen Hearing","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The swarm has advantage on Wisdom (Perception) checks that rely on hearing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Bats","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tRdXVBesxDaXdhqP","name":"Echolocation","type":"feat","img":"icons/magic/control/hypnosis-mesmerism-eye.webp","system":{"description":{"value":"The swarm can't use its blindsight while deafened.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Bats","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.rUongiWD51ZopRk2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232810,"modifiedTime":1672596099371,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"PtotS52HpHX596cZ","name":"Purple Worm","type":"npc","img":"","system":{"abilities":{"str":{"value":28,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":22,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":247,"min":0,"max":247,"temp":0,"tempmax":0,"formula":"15d20 + 90"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":30,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":30,"tremorsense":60,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":15,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"grg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Purple Worm","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ZgUj67GknsWFnbAR","name":"Tunneler","type":"feat","img":"icons/magic/unholy/orb-glowing-yellow-purple.webp","system":{"description":{"value":"The worm can burrow through solid rock at half its burrow speed and leaves a 10-foot-diameter tunnel in its wake.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.3mrPXaxalJxpxVrv"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Uo4oxB1xZmJcWVsZ","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The worm makes two attacks: one with its bite and one with its stinger.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dlzFJ5UjbMAfJ6Sb","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 10 ft., one target. Hit: 22 (3d8 + 9) piercing damage. If the target is a Large or smaller creature, it must succeed on a DC 19 Dexterity saving throw or be swallowed by the worm. A swallowed creature is blinded and restrained, it has total cover against attacks and other effects outside the worm, and it takes 21 (6d6) acid damage at the start of each of the worm's turns.If the worm takes 30 damage or more on a single turn from a creature inside it, the worm must succeed on a DC 21 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the worm. If the worm dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 20 feet of movement, exiting prone.The Purple Worm attacks with its Bite. If the target is a Large or smaller creature, it must make a Dexterity saving throw. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8+@mod","piercing"]],"versatile":""},"formula":"6d6","save":{"ability":"dex","dc":19,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yOjkK3f9jt2fYu3M","name":"Tail Stinger","type":"weapon","img":"icons/creatures/abilities/stinger-poison-green.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 10 ft., one creature. Hit: 19 (3d6 + 9) piercing damage.The target must make a DC 19 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.The Purple Worm attacks with its Tail Stinger. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6+@mod","piercing"]],"versatile":""},"formula":"12d6","save":{"ability":"con","dc":19,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232812,"modifiedTime":1672596099414,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"PuPo4H4Dcxigf0fY","name":"Specter","type":"npc","img":"","system":{"abilities":{"str":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":null,"tempmax":0,"formula":"5d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["necrotic","poison"],"bypasses":[],"custom":""},"dr":{"value":["acid","bludgeoning","cold","fire","lightning","piercing","slashing","thunder"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","grappled","paralyzed","petrified","poisoned","prone","restrained","unconscious","exhaustion"],"custom":""},"languages":{"value":[],"custom":"Understands all languages it knew in life but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Specter","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"FpoS5qzlgE3YPZGN","name":"Incorporeal Movement","type":"feat","img":"icons/skills/movement/feet-winged-boots-brown.webp","system":{"description":{"value":"The specter can move through other creatures and objects as if they were difficult terrain.It takes 5 (1d10) force damage if it ends its turn inside an object.The specter can move through other creatures and objects as if they were difficult terrain.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LUHmtIDD1VTreFqI"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pxm7rAqI5ackW8Oy","name":"Life Drain","type":"weapon","img":"icons/magic/unholy/strike-hand-glow-pink.webp","system":{"description":{"value":"Melee Spell Attack:+4 to hit,, 5 ft., one creature. Hit: 10 (3d6) necrotic damage. The target must succeed on a DC 10 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the creature finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.The Specter attacks with its Life Drain.The target must make a Constitution saving throw. ","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6 + @mod","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":10,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1FbU02rRuNLnEDXC","name":"Sunlight Sensitivity","type":"feat","img":"icons/magic/time/day-night-sunset-sunrise.webp","system":{"description":{"value":"While in sunlight, the specter has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.F14aW2Ke3I5ZtSg4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232813,"modifiedTime":1672596099451,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"QGcQYZbVl4bWzi4E","name":"Shadow","type":"npc","img":"","system":{"abilities":{"str":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":16,"min":0,"max":16,"temp":null,"tempmax":0,"formula":"3d8 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["necrotic","poison"],"bypasses":[],"custom":""},"dr":{"value":["acid","bludgeoning","cold","fire","lightning","piercing","slashing","thunder"],"bypasses":["mgc"],"custom":""},"dv":{"value":["radiant"],"bypasses":[],"custom":""},"ci":{"value":["frightened","grappled","paralyzed","petrified","poisoned","prone","restrained","exhaustion"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Shadow","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"fo1ZqyGz5iv51Rj1","name":"Amorphous","type":"feat","img":"icons/creatures/slimes/slime-movement-dripping-purple.webp","system":{"description":{"value":"The shadow can move through a space as narrow as 1 inch wide without squeezing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":10,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.3lDp8DtWwNDHSvxX"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Xa0lRW8VhYHTAQT0","name":"Shadow Stealth","type":"feat","img":"icons/creatures/mammals/humanoid-cat-skulking-teal.webp","system":{"description":{"value":"\nWhile in dim light or darkness, the shadow can take the Hide action as a bonus action.\n\nThe shadow can take the Hide action as a bonus action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":"In dim light or darkness"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":10,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nUVFUgyKK7fmQaFh"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BrzbftAD7eqZXWA8","name":"Sunlight Weakness","type":"feat","img":"icons/magic/time/day-night-sunset-sunrise.webp","system":{"description":{"value":"While in sunlight, the shadow has disadvantage on attack rolls, ability checks, and saving throws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":10,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.u1Tt4l4Mczgt3wOS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2OUOBIN4TJDoL0sJ","name":"Strength Drain","type":"weapon","img":"icons/magic/unholy/strike-hand-glow-pink.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 9 (2d6 + 2) necrotic damage.The target's Strength score is reduced by 1d4. The target dies if this reduces its Strength to 0. Otherwise, the reduction lasts until the target finishes a short or long rest.If a non-evil humanoid dies from this attack, a new shadow rises from the corpse 1d4 hours later.The Shadow attacks with its Strength Drain.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":10,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232815,"modifiedTime":1672596099489,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"QSytPah5WKoFJ1zt","name":"Young Gold Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":178,"min":0,"max":178,"temp":0,"tempmax":0,"formula":"17d10 + 85"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":10,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Young Gold Dragon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"At4ZIy9ucx4umj5Y","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"IiZoBYBEjE5gGjeD","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.The Young Gold Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7lHaAZMjuTYZ6w6J","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Fire Breath.** The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 55 (10d10) fire damage on a failed save, or half as much damage on a successful one.\n**Weakening Breath.** The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qRuJSlOzJITBzcjv","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.The Young Gold Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VmQbXjALjJwKhT91","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AedUiopUrkxaTl7S","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\n**Fire Breath.** The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 55 (10d10) fire damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales fire in a 30-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":"Breath Weapon must be charged"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d10","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":17,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0D1CWFdQeP5vpXLz","name":"Weakening Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\n**Weakening Breath.** The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon exhales gas in a 30-foot cone. Each creature in that area must make a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":"Breath Weapon must be charged"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.IHh6n8uZBGqyRfZz"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232816,"modifiedTime":1672596099532,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"QtJairF0h18BRhEM","name":"Bugbear","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":27,"min":0,"max":27,"temp":0,"tempmax":0,"formula":"5d8 + 5"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","goblin"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Bugbear","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"0ZKRgrkQppv6MYIq","name":"Morningstar","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 11 (2d8 + 2) piercing damage.\nNOTE: the stats of this weapon have changed reflecting it being wielded by a creature with the \"Brute\" feature.\n\nThe Bugbear attacks with its Morningstar.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.dX8AxCh9o0A9CkT3"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CgwJLpd3sHn21cUQ","name":"Surprise Attack","type":"feat","img":"icons/magic/water/elemental-water.webp","system":{"description":{"value":"If the bugbear surprises a creature and hits it with an attack during the first round of combat, the target takes an extra 7 (2d6) damage from the attack.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.5DJYFjGQCz5aSl5e"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BsMLwJ3gDd0jADY3","name":"Brute","type":"feat","img":"icons/skills/melee/unarmed-punch-fist.webp","system":{"description":{"value":"A melee weapon deals one extra die of its damage when the bugbear hits with it (included in the attack).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.q8w1UF9woZDGIwvS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SvFPSD4QGfNEvB0c","name":"Hide Armor","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":12,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.n1V07puo0RQxPGuF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sSs3hSzkKBMNBgTs","name":"Shield","type":"equipment","img":"icons/equipment/shield/oval-wooden-boss-steel.webp","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xwZYlJUYOv2J044p","name":"Javelin","type":"weapon","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 9 (2d6 + 2) piercing damage in melee or 5 (1d6 + 2) piercing damage at range.The Bugbear attacks with its Javelin.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":"1d6 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":true},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DWLMnODrnHn8IbAG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232818,"modifiedTime":1672596099578,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"R2GPY9BhRmmwZwkh","name":"Gnoll","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"5d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"humanoid","subtype":"Gnoll","swarm":"","custom":""},"environment":"Grassland","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["gnoll"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Gnoll","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"WlaPkHNlq3vBfxnk","name":"Hide Armor","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":12,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.n1V07puo0RQxPGuF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sSs3hSzkKBMNBgTs","name":"Shield","type":"equipment","img":"icons/equipment/shield/oval-wooden-boss-steel.webp","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iBhjlawEB5iwUmoS","name":"Rampage","type":"feat","img":"icons/skills/melee/strike-axe-blood-red.webp","system":{"description":{"value":"When the gnoll reduces a creature to 0 hit points with a melee attack on its turn, the gnoll can take a bonus action to move up to half its speed and make a bite attack.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.BnuDkgCOeGvAoYhy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fVB2xcZ4wVwiqEYf","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage.The Gnoll attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lsZzJMqxUIjbczLM","name":"Spear","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.The Gnoll attacks with its Spear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","piercing"]],"versatile":"1d6+@mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"thr":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":true},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.OG4nBBydvmfWYXIk"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2Squ8wLvm5nSzA8w","name":"Longbow","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"Ranged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.The Gnoll attacks with its Longbow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3cymOVja8jXbzrdT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232821,"modifiedTime":1672596099634,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"RCv5y7iWlfNxkinx","name":"Pit Fiend","type":"npc","img":"","system":{"abilities":{"str":{"value":26,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":24,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":22,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":24,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":300,"min":0,"max":300,"temp":null,"tempmax":0,"formula":"24d10 + 168"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"Devil","swarm":"","custom":""},"environment":"","cr":20,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["infernal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Pit Fiend","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"wkqjn4bqhPIUUo7k","name":"Fear Aura","type":"feat","img":"icons/magic/water/elemental-water.webp","system":{"description":{"value":"Any creature hostile to the pit fiend that starts its turn within 20 feet of the pit fiend must make a DC 21 Wisdom saving throw, unless the pit fiend is incapacitated. On a failed save, the creature is frightened until the start of its next turn. If a creature's saving throw is successful, the creature is immune to the pit fiend's Fear Aura for the next 24 hours.Any creature hostile to the pit fiend that starts its turn within 20 feet of the pit fiend must make a Wisdom saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":21,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.MLVEyA7VcWu9uXqV"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2MKXiCJeOrUJIEto","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The pit fiend has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TT2YmAw82Sj1WNKn","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The pit fiend's weapon attacks are magical.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2Wh1GHIIzBfCm8md","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The pit fiend's spellcasting ability is Charisma (spell save DC 21). The pit fiend can innately cast the following spells, requiring no material components:\nAt will: detect magic, fireball\n3/day each: hold monster, wall of fire","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BFv56pkQ54pdTkYM","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The pit fiend makes four attacks: one with its bite, one with its claw, one with its mace, and one with its tail.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GjIQl7UOQUtsrj2v","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 5 ft., one target. Hit: 22 (4d6 + 8) piercing damage.The target must succeed on a DC 21 Constitution saving throw or become poisoned. While poisoned in this way, the target can't regain hit points, and it takes 21 (6d6) poison damage at the start of each of its turns. The poisoned target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.The Pit Fiend attacks with its Bite. The target must succeed on a DC 21 Constitution saving throw or become poisoned. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6 + @mod","piercing"]],"versatile":""},"formula":"6d6","save":{"ability":"con","dc":21,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RkuPEGbAXHhxfNWJ","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack: +14 to hit, reach 10 ft. , one target. Hit: 17 (2d8 + 8) slashing damage.The Pit Fiend attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gpjBebqxqbQA35st","name":"Mace","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 15 (2d6 + 8) bludgeoning damage plus 21 (6d6) fire damage.The Pit Fiend attacks with its Mace.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"],["6d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Ajyq6nGwF7FtLhDQ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Gh1DbMpJiaTlTwWp","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nMelee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 24 (3d10 + 8) bludgeoning damage.\nThe Pit Fiend attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116539,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ztgcdrWPshKRpFd0","name":"Fireball","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A bright streak flashes from your pointing finger to a point you choose within range and then blossoms with a low roar into an explosion of flame. Each creature in a 20-foot-radius sphere centered on that point must make a Dexterity saving throw. A target takes 8d6 fire damage on a failed save, or half as much damage on a successful one.The fire spreads around corners. It ignites flammable objects in the area that aren't being worn or carried.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":21,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A tiny ball of bat guano and sulfur","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ztgcdrWPshKRpFd0"}},"img":"icons/magic/fire/projectile-fireball-smoke-large-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234246,"modifiedTime":1661791116540,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"l9Ju5KE7bbn3WpTm","name":"Hold Monster","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a creature that you can see within range. The target must succeed on a Wisdom saving throw or be Paralyzed for the Duration. This spell has no effect on Undead. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, you can target one additional creature for each slot level above 5th. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":21,"scaling":"spell"},"level":5,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small, straight piece of iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.l9Ju5KE7bbn3WpTm"}},"img":"icons/magic/control/debuff-chains-ropes-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234216,"modifiedTime":1661791116540,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"X3DrXgxjwI2dvkD6","name":"Wall of Fire","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a wall of fire on a solid surface within range. You can make the wall up to 60 feet long, 20 feet high, and 1 foot thick, or a ringed wall up to 20 feet in diameter, 20 feet high, and 1 foot thick. The wall is opaque and lasts for the duration.When the wall appears, each creature within its area must make a Dexterity saving throw. On a failed save, a creature takes 5d8 fire damage, or half as much damage on a successful save.One side of the wall, selected by you when you cast this spell, deals 5d8 fire damage to each creature that ends its turn within 10 feet of that side or inside the wall. A creature takes the same damage when it enters the wall for the first time on a turn or ends its turn there. The other side of the wall deals no damage.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"wall"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":21,"scaling":"spell"},"level":4,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small piece of phosphorous","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.X3DrXgxjwI2dvkD6"}},"img":"icons/magic/air/fog-gas-smoke-swirling-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234155,"modifiedTime":1661791116540,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232823,"modifiedTime":1672596099731,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"RenLfmDT2XlbCF4x","name":"Ogre Zombie","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":6,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":8,"calc":"natural","formula":""},"hp":{"value":85,"min":0,"max":85,"temp":0,"tempmax":0,"formula":"9d10 + 36"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["custom"],"custom":"understands Common and Giant but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ogre Zombie","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Gj35Y1i6Ph90Wn3R","name":"Morningstar","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.The Ogre Zombie attacks with its Morningstar.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.dX8AxCh9o0A9CkT3"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NPmV7puA7Yg3esqg","name":"Undead Fortitude","type":"feat","img":"icons/magic/acid/pouring-gas-smoke-liquid.webp","system":{"description":{"value":"If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5+the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead.If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VYAnJjIgb5nPXfRr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232825,"modifiedTime":1672596099777,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"S0zDrv6lbnwWaz9E","name":"Swarm of Insects","type":"npc","img":"","system":{"abilities":{"str":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"5d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":20,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"tiny","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","grappled","paralyzed","petrified","prone","restrained","stunned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Swarm of Insects","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"neAokA0n390MXPMQ","name":"Swarm","type":"feat","img":"icons/creatures/invertebrates/fly-wasp-mosquito-green.webp","system":{"description":{"value":"The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Bats","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eL3OJmc4FuetizKO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1yXz3JunJtlQs6vV","name":"Bites","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 0 ft., one target in the swarm's space. Hit: 10 (4d4) piercing damage, or 5 (2d4) piercing damage if the swarm has half of its hit points or fewer.\nThe Swarm of Insects attacks with a flurry of Bites.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d4","piercing"]],"versatile":"2d4"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232826,"modifiedTime":1672596099814,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SBCe2BSa6opTS5M4","name":"Rhinoceros","type":"npc","img":"","system":{"abilities":{"str":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":45,"min":0,"max":45,"temp":0,"tempmax":0,"formula":"6d10 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Rhinoceros","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"e1ZjZT7dyExUSEOu","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nIf the rhinoceros moves at least 20 ft. straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 9 (2d8) bludgeoning damage.\nIf the target is a creature, it must succeed on a DC 15 Strength saving throw or be knocked prone.\n\nIf the rhinoceros moves at least 20 ft. straight toward a target and then hits it with a gore attack on the same turn, the target takes extra bludgeoning damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":15,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uFv78t6CwySS1gio","name":"Gore","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.\nThe Rhinoceros attacks with its Gore.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232828,"modifiedTime":1672596099855,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SMfgOsfPgf6rb01k","name":"Flying Snake","type":"npc","img":"","system":{"abilities":{"str":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":5,"min":0,"max":5,"temp":0,"tempmax":0,"formula":"2d4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.125,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Flying Snake","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"5d7uD5cYAPtlPrWh","name":"Flyby","type":"feat","img":"icons/creatures/mammals/bats-movement-flying-purple.webp","system":{"description":{"value":"The snake doesn't provoke opportunity attacks when it flies out of an enemy's reach.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Owl","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.7WfeHV27l7DMcuTG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ITtDDLuoOyJbDQpA","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 1 piercing damage plus 7 (3d4) poison damage.\nThe Flying Snake attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"],["3d4","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232829,"modifiedTime":1672596099891,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SNT0JNVSngUTsj4m","name":"Ancient Blue Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":29,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":27,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":22,"calc":"natural","formula":""},"hp":{"value":481,"min":0,"max":481,"temp":0,"tempmax":0,"formula":"26d20+208"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":40,"climb":0,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":23,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"grg","di":{"value":["lightning"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Ancient Blue Dragon","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"OUkdlIHkMVy9284v","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gbM7g0hyrF6MMYqR","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"F29wEcjTlpKWcfO3","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+16 to hit,, 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage plus 10 (2d10) lightning damage.\nThe Ancient Blue Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["2d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uDd2aKkvwMwZfncQ","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BOsuBiKE1Enpl4xl","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BLj6WOTkgYmTEfj1","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Hoc6KiovAZiBi5HV","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+16 to hit,, 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.The Ancient Blue Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NhYVY7hHFu2YsFpN","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"834XVlRwHOXkE2rK","name":"Lightning Breath","type":"feat","img":"icons/magic/lightning/bolt-strike-blue.webp","system":{"description":{"value":"The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":120,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["16d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LVnd9fq9cQj7rR0Q"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rwLwUWCVufdiKDaK","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+16 to hit,, 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.The Ancient Blue Dragon attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qUJb6VyY5ITDA0TL","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZF7ixqLMH0gc0qlL","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 24 Dexterity saving throw or take 16 ([[/r 2d6+9]]) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"IzwKf1Ux0tSzK1F7","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232831,"modifiedTime":1672596099981,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SOin81NWijHRvXFK","name":"Stone Giant","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":126,"min":0,"max":126,"temp":0,"tempmax":0,"formula":"11d12 + 55"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"giant","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":7,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["giant"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":2,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Stone Giant","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Tm2NY0eSI6InRcsa","name":"Greatclub","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 15 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.The Stone Giant attacks with its Greatclub.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QRCsxkCwWNwswL9o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"W7aeXkpOJ1TwM0dq","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The giant makes two greatclub attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eiNNUlTgJyVFcQkO","name":"Rock","type":"weapon","img":"icons/magic/earth/projectile-stone-ball-brown.webp","system":{"description":{"value":"Ranged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage. If the target is a creature, it must succeed on a DC 17 Strength saving throw or be knocked prone.The Stone Giant attacks with its Rock. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":240,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HxKKuoyc6AYGLsIX","name":"Rock Catching","type":"feat","img":"icons/skills/melee/unarmed-punch-fist.webp","system":{"description":{"value":"If a rock or similar object is hurled at the giant, the giant can, with a successful DC 10 Dexterity saving throw, catch the missile and take no bludgeoning damage from it.If a rock or similar object is hurled at the giant, the giant can catch the missile and take no bludgeoning damage from it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":10,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.BpwXJvMA7MfVQ7i6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zqsYu35qYHNNeTWE","name":"Stone Camouflage","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"The giant has advantage on Dexterity (Stealth) checks made to hide in rocky terrain.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.j1cPfWFNvxGoex9Z"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232833,"modifiedTime":1672596100027,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SXXvwaLBNuzBymp3","name":"Axe Beak","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":19,"min":0,"max":19,"temp":0,"tempmax":0,"formula":"3d10 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Axe Beak","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"alpha":1,"light":{"alpha":0.5,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"reverse":false,"type":null},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.3},"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"FsSMPLEC46UKCf7T","name":"Beak","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 6 (1d8 + 2) slashing damage.\nThe Axe Beak attacks with its Beak.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232835,"modifiedTime":1672596100062,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SoK7l5zJQKxTVgLL","name":"Giant Bat","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"4d10"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Bat","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"UfsuvLGCWiYxrys1","name":"Echolocation","type":"feat","img":"icons/magic/control/hypnosis-mesmerism-eye.webp","system":{"description":{"value":"The bat can't use its blindsight while deafened.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.rUongiWD51ZopRk2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6xCOiR7PxQkaDGY4","name":"Keen Hearing","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The bat has advantage on Wisdom (Perception) checks that rely on hearing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"r77BXFVYT1LuJCZs","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 5 (1d6 + 2) piercing damage.\nThe Giant Bat attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232836,"modifiedTime":1672596100097,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SqZRuJ8lt2KGJBbq","name":"Commoner","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":4,"min":0,"max":4,"temp":0,"tempmax":0,"formula":"1d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"any one language (usually Common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Commoner","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"HwktDnB8qdr0BYGZ","name":"Club","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"\nMelee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 2 (1d4) bludgeoning damage.\nThe Commoner attacks with their Club.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"lgt":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.nfIRTECQIG81CvM4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232838,"modifiedTime":1672596100133,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SsuCaF2fIEoDdFA3","name":"Giant Boar","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":42,"min":0,"max":42,"temp":0,"tempmax":0,"formula":"5d10 + 15"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Boar","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"1ArcmRCn5G0t6sOo","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nIf the boar moves at least 20 ft. straight toward a target and then hits it with a tusk attack on the same turn, the target takes an extra 7 (2d6) slashing damage.\nIf the target is a creature, it must succeed on a DC 13 Strength saving throw or be knocked prone.\n\nIf the boar moves at least 20 ft. straight toward a target and then hits it with a tusk attack on the same turn, the target takes extra slashing damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","slashing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"byaGAd7ILpgsQ7Un","name":"Relentless","type":"feat","img":"icons/magic/water/heart-ice-freeze.webp","system":{"description":{"value":"\nIf the boar takes 10 damage or less that would reduce it to 0 hit points, it is reduced to 1 hit point instead. Recharges after a short or long rest.\n\nIf the boar takes damage that would reduce it to 0 hit points, it is reduced to 1 hit point instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.8FX2KlWyBAKEYGzs"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zHwaxxXcDz8AE8Bj","name":"Tusk","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\nThe Giant Boar attacks with its Tusk.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232839,"modifiedTime":1672596100169,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"T1xZTDCGuvMBSq8d","name":"Warhorse","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":19,"min":0,"max":19,"temp":0,"tempmax":0,"formula":"3d10 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":60,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Urban","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Warhorse","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"1KyNbDtLLrcA5lj0","name":"Trampling Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nIf the horse moves at least 20 ft. straight toward a creature and then hits it with a hooves attack on the same turn, that target must succeed on a DC 14 Strength saving throw or be knocked prone. If the target is prone, the horse can make another attack with its hooves against it as a bonus action.\n\nIf the horse moves at least 20 ft. straight toward a creature and then hits it with a hooves attack on the same turn, that target must succeed on Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yD51x4dihnbHwfsj"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7MiLYgDyM2Rm3nEb","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\nThe Warhorse attacks with its Hooves.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232841,"modifiedTime":1672596100206,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"T2PExQE84ZcIbAXz","name":"Hippogriff","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":19,"min":0,"max":19,"temp":0,"tempmax":0,"formula":"3d10 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Hippogriff","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.3,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"b4iE9smYUMqyqVi6","name":"Keen Sight","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The hippogriff has advantage on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bUWbRbY7TpLSL1kO","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The hippogriff makes two attacks: one with its beak and one with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CNurXa30GaCRT8MC","name":"Beak","type":"weapon","img":"icons/commodities/bones/beak-hooked-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.The Hippogriff attacks with its Beak.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pJN1LKPv23YgFC8w","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.The Hippogriff attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232843,"modifiedTime":1672596100248,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"TaK6nQMGqZ0y8gt7","name":"Shrieker","type":"npc","img":"","system":{"abilities":{"str":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":5,"calc":"natural","formula":""},"hp":{"value":13,"min":0,"max":13,"temp":0,"tempmax":0,"formula":"3d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":0,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":"Blind beyond this radius"},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"plant","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["blinded","deafened","frightened"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Shrieker","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Cvw6LMtbxmSBvVoZ","name":"Shriek","type":"feat","img":"icons/creatures/abilities/mouth-teeth-human.webp","system":{"description":{"value":"When bright light or a creature is within 30 feet of the shrieker, it emits a shriek audible within 300 feet of it. The shrieker continues to shriek until the disturbance moves out of range and for 1d4 of the shrieker's turns afterwardWhen bright light or a creature is within 30 feet of the shrieker, it emits a shriek audible within 300 feet of it. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.OqRnKL4703RuReS1"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NAyTy2HfzqvHtjRh","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the shrieker remains motionless, it is indistinguishable from an ordinary fungus.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232845,"modifiedTime":1672596100285,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"TjWQOgI3A4UAl7lC","name":"Goblin","type":"npc","img":"","system":{"abilities":{"str":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":7,"min":0,"max":7,"temp":0,"tempmax":0,"formula":"2d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"humanoid","subtype":"Goblinoid","swarm":"","custom":""},"environment":"Underdark","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","goblin"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Goblin","displayName":0,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Ti3XQOmTKdgcnpAa","name":"Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sSs3hSzkKBMNBgTs","name":"Shield","type":"equipment","img":"icons/equipment/shield/oval-wooden-boss-steel.webp","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SxVatHq02vURYDt3","name":"Nimble Escape","type":"feat","img":"icons/skills/movement/feet-winged-boots-brown.webp","system":{"description":{"value":"The goblin can take the Disengage or Hide action as a bonus action on each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.PqVfFNyOPmecrS7N"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"S6UTTLu0bEB32HNG","name":"Scimitar","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.\nThe Goblin attacks with its Scimitar.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.fbC0Mg1a73wdFbqO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YqS3dsIlpWb2Q2UI","name":"Shortbow","type":"weapon","img":"icons/weapons/bows/shortbow-recurve.webp","system":{"description":{"value":"\nRanged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\nThe Goblin attacks with its Shortbow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.GJv6WkD7D2J6rP6M"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232846,"modifiedTime":1672596100326,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"UFW8M3JHzHkxUEGM","name":"Mummy Lord","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":97,"min":0,"max":97,"temp":null,"tempmax":0,"formula":"13d8 + 39"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"wis"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":15,"spellLevel":10,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["bludgeoning","necrotic","piercing","poison","slashing"],"bypasses":["mgc"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":["fire"],"bypasses":[],"custom":""},"ci":{"value":["charmed","exhaustion","frightened","paralyzed","poisoned"],"custom":""},"languages":{"value":[],"custom":"the languages it knew in life"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":4,"override":null},"spell2":{"value":3,"override":null},"spell3":{"value":3,"override":null},"spell4":{"value":3,"override":null},"spell5":{"value":2,"override":null},"spell6":{"value":1,"override":1},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":0,"max":0},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Mummy Lord","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.3,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Os0eEymWpLTVR2Xv","name":"Blinding Dust","type":"feat","img":"icons/magic/fire/barrier-wall-explosion-orange.webp","system":{"description":{"value":"\nBlinding dust and sand swirls magically around the mummy lord. Each creature within 5 feet of the mummy lord must succeed on a DC 16 Constitution saving throw or be blinded until the end of the creature's next turn.\n\nBlinding dust and sand swirls magically around the mummy lord. Each creature within 5 feet of the mummy lord must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":16,"scaling":"con"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.ao6mxTJVYy7WaVgW"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3PBv68cIzTlrzcYe","name":"Blasphemous Word","type":"feat","img":"icons/magic/air/wind-vortex-swirl-purple.webp","system":{"description":{"value":"\nThe mummy lord utters a blasphemous word. Each non-undead creature within 10 feet of the mummy lord that can hear the magical utterance must succeed on a DC 16 Constitution saving throw or be stunned until the end of the mummy lord's next turn.\n\nThe mummy lord utters a blasphemous word. Each non-undead creature within 10 feet of the mummy lord that can hear the magical utterance must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":16,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Xwj2GPqTxngS0j2L"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sjY1jcYS6PdmZYKH","name":"Channel Negative Energy","type":"feat","img":"icons/magic/unholy/beam-impact-purple.webp","system":{"description":{"value":"The mummy lord magically unleashes negative energy. Creatures within 60 feet of the mummy lord, including ones behind barriers and around corners, can't regain hit points until the end of the mummy lord's next turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LO4nrudXAKJ4DbQI"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JxFTskCIHyVwp7fF","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The mummy lord has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AEc5FXdpe3M7KHQI","name":"Rejuvenation","type":"feat","img":"icons/magic/control/debuff-energy-hold-levitate-green.webp","system":{"description":{"value":"A destroyed mummy lord gains a new body in 24 hours if its heart is intact, regaining all its hit points and becoming active again. The new body appears within 5 feet of the mummy lord's heart.A destroyed mummy lord gains a new body in 24 hours.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JcfHlAcfwSWnt7Ud"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FeMPdVmbrjP2L3CO","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"\nThe mummy lord is a 10th-level spellcaster. Its spellcasting ability is Wisdom (spell save DC 17, +9 to hit with spell attacks). The mummy lord has the following cleric spells prepared:\nCantrips (at will): sacred flame, thaumaturgy\n1st level (4 slots): command, guiding bolt, shield of faith\n2nd level (3 slots): hold person, silence, spiritual weapon\n3rd level (3 slots): animate dead, dispel magic\n4th level (3 slots): divination, guardian of faith\n5th level (2 slots): contagion, insect plague\n6th level (1 slot): harm\n\nThe mummy lord is a spellcaster. Its spellcasting ability is Wisdom.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xZSeAPj02NKne0AK","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The mummy can use its Dreadful Glare and makes one attack with its rotting fist.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"M6t9H8pMhzQxM9qv","name":"Rotting Fist","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 5 ft., one target. Hit: 14 (3d6 + 4) bludgeoning damage plus 21 (6d6) necrotic damage. If the target is a creature, it must succeed on a DC 16 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.The Mummy Lord attacks with its Rotting Fist. If the target is a creature, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6+@mod","bludgeoning"],["6d6","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":16,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yHydHrxw4vlDlyjf","name":"Dreadful Glare","type":"feat","img":"icons/magic/perception/hand-eye-pink.webp","system":{"description":{"value":"The mummy lord targets one creature it can see within 60 feet of it. If the target can see the mummy lord, it must succeed on a DC 16 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies and mummy lords for the next 24 hours.The mummy lord targets one creature it can see within 60 ft. of it. If the target can see the mummy, it must make a Wisdom saving throw against this magic.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":16,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.H306eluIH47Wfr0U"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"und47mebgauAcPu4","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe mummy lord can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The mummy lord regains spent legendary actions at the start of its turn.\n\nThe mummy lord can take 3 legendary actions.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NMN6cq7RkU8ccxKF","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"IL0u33pW96t5O04m","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MVq9wNMasHT5Cr1J","name":"Attack","type":"feat","img":"icons/skills/melee/weapons-crossed-swords-white-blue.webp","system":{"description":{"value":"The mummy lord makes one attack with its Rotting Fist or uses its Dreadful Glare.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"o7UvUGPaF9cnGcQi","name":"Whirlwind of Sand","type":"feat","img":"icons/magic/fire/explosion-mushroom-nuke-orange.webp","system":{"description":{"value":"The mummy lord magically transforms into a whirlwind of sand, moves up to 60 feet, and reverts to its normal form. While in whirlwind form, the mummy lord is immune to all damage, and it can't be grappled, petrified, knocked prone, restrained, or stunned. Equipment worn or carried by the mummy lord remain in its possession.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.X96xsQjIolyHtV91"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"n9pJzTDsAwQxJVRl","name":"Sacred Flame","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Flame-like radiance descends on a creature that you can see within range. The target must succeed on a Dexterity saving throw or take 1d8 radiant damage. The target gains no benefit from cover for this saving throw.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":17,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.n9pJzTDsAwQxJVRl"}},"img":"icons/magic/light/beam-rays-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234221,"modifiedTime":1661791116566,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MUO1uYN7JR1hm4dR","name":"Thaumaturgy","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create one of the following magical effects within range:\n\nYour voice booms up to three times as loud as normal for 1 minute.\nYou cause flames to flicker, brighten, dim, or change color for 1 minute.\nYou cause harmless tremors in the ground for 1 minute.\nYou create a sound that originates from a point of your choice within range.\nYou cause an unlocked door or window to fly open or slam shut.\nYou alter the appearance of your eyes for 1 minute.\n\nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234127,"modifiedTime":1661791116567,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"arzCrMRgcNiQuh43","name":"Command","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You speak a one-word command to a creature you can see within range. The target must succeed on a Wisdom saving throw or follow the command on its next turn. The spell has no effect if the target is undead, if it doesn't understand your language, or if your command is directly harmful to it.Some typical commands and their effects follow. You might issue a command other than one described here. If you do so, the DM determines how the target behaves. If the target can't follow your command, the spell ends.Approach. The target moves toward you by the shortest and most direct route, ending its turn if it moves within 5 feet of you.Drop. The target drops whatever it is holding and then ends its turn.Flee. The target spends its turn moving away from you by the fastest available means.Grovel. The target falls prone and then ends its turn.Halt. The target doesn't move and takes no actions. A flying creature stays aloft, provided that it is able to do so. If it must move to stay aloft, it flies the minimum distance needed to remain in the air.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.arzCrMRgcNiQuh43"}},"img":"icons/magic/fire/explosion-fireball-small-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234169,"modifiedTime":1661791116567,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"7buEm5KhI5lP8m1z","name":"Guiding Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A flash of light streaks toward a creature of your choice within range. Make a ranged spell attack against the target. On a hit, the target takes 4d6 radiant damage, and the next attack roll made against this target before the end of your next turn has advantage, thanks to the mystical dim light glittering on the target until then.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.7buEm5KhI5lP8m1z"}},"img":"icons/magic/fire/projectile-fireball-smoke-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234075,"modifiedTime":1661791116568,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"jZ6JNykRtdQ90MOo","name":"Shield of Faith","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A shimmering field appears and surrounds a creature of your choice within range, granting it a +2 bonus to AC for the duration.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small parchment with a bit of holy text written on it.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.jZ6JNykRtdQ90MOo"}},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234212,"modifiedTime":1661791116568,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"3Lo9boi7P2ro6QV4","name":"Hold Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a humanoid that you can see within range. The target must succeed on a Wisdom saving throw or be paralyzed for the duration. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional humanoid for each slot level above 2nd. The humanoids must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small, straight piece of iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.3Lo9boi7P2ro6QV4"}},"img":"icons/magic/control/debuff-chains-ropes-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234063,"modifiedTime":1661791116568,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"5VhqFROQYjr1P9lp","name":"Silence","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the Duration, no sound can be created within or pass through a 20-foot-radius sphere centered on a point you choose within range. Any creature or object entirely inside the sphere is immune to thunder damage, and creatures are Deafened while entirely inside it. Casting a Spell that includes a verbal component is impossible there.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.5VhqFROQYjr1P9lp"}},"img":"icons/magic/symbols/runes-triangle-magenta.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234069,"modifiedTime":1661791116568,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"JbxsYXxSOTZbf9I0","name":"Spiritual Weapon","type":"spell","img":"icons/magic/fire/dagger-rune-enchant-flame-purple.webp","system":{"description":{"value":"You create a floating, spectral weapon within range that lasts for the duration or until you cast this spell again. When you cast the spell, you can make a melee spell attack against a creature within 5 feet of the weapon. On a hit, the target takes force damage equal to 1d8 + your spellcasting ability modifier.As a bonus action on your turn, you can move the weapon up to 20 feet and repeat the attack against a creature within 5 feet of it.The weapon can take whatever form you choose. Clerics of deities who are associated with a particular weapon (as St. Cuthbert is known for his mace and Thor for his hammer) make this spell's effect resemble that weapon.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for every two slot levels above the 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"square"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["floor(@item.level / 2)d8 + @mod","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.JbxsYXxSOTZbf9I0"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234115,"modifiedTime":1661791116569,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"oyE5nVppa5mde5gT","name":"Animate Dead","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell creates an undead servant. Choose a pile of bones or a corpse of a Medium or Small humanoid within range. Your spell imbues the target with a foul mimicry of life, raising it as an undead creature. The target becomes a skeleton if you chose bones or a zombie if you chose a corpse (the DM has the creature's game statistics).On each of your turns, you can use a bonus action to mentally command any creature you made with this spell if the creature is within 60 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete.The creature is under your control for 24 hours, after which it stops obeying any command you've given it. To maintain control of the creature for another 24 hours, you must cast this spell on the creature again before the current 24-hour period ends. This use of the spell reasserts your control over up to four creatures you have animated with this spell, rather than animating a new one.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you animate or reassert control over two additional undead creatures for each slot level above 3rd. Each of the creatures must come from a different corpse or pile of bones.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A drop of blood, a piece of flesh, and a pinch of bone dust","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.oyE5nVppa5mde5gT"}},"img":"icons/magic/control/fear-fright-monster-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234225,"modifiedTime":1661791116569,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"15Fa6q1nH27XfbR8","name":"Dispel Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose one creature, object, or magical effect within range. Any spell of 3rd level or lower on the target ends. For each spell of 4th level or higher on the target, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a successful check, the spell ends.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you automatically end the effects of a spell on the target if the spell's level is equal to or less than the level of the spell slot you used.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.15Fa6q1nH27XfbR8"}},"img":"icons/skills/melee/strike-blade-knife-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234054,"modifiedTime":1661791116570,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"XqzXSKNR75ZdYTA9","name":"Divination","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your magic and an offering put you in contact with a god or a god's servants. You ask a single question concerning a specific goal, event, or activity to occur within 7 days. The DM offers a truthful reply. The reply might be a short phrase, a cryptic rhyme, or an omen.The spell doesn't take into account any possible circumstances that might change the outcome, such as the casting of additional spells or the loss or gain of a companion.If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get a random reading. The DM makes this roll in secret.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"Incense and a sacrificial offering appropiate to your religion, together worth at least 25gp, which the spell consumes","consumed":true,"cost":25,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.XqzXSKNR75ZdYTA9"}},"img":"icons/magic/light/beam-rays-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234159,"modifiedTime":1661791116570,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"TgHsuhNasPbhu8MO","name":"Guardian of Faith","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A Large Spectral Guardian appears and hovers for the Duration in an unoccupied space of your choice that you can see within range. The guardian occupies that space and is indistinct except for a gleaming sword and shield emblazoned with the symbol of your deity.Any creature hostile to you that moves to a space within 10 feet of the guardian for the first time on a turn must succeed on a Dexterity saving throw. The creature takes 20 radiant damage on a failed save, or half as much damage on a successful one. The guardian vanishes when it has dealt a total of 60 damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["20","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":4,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.TgHsuhNasPbhu8MO"}},"img":"icons/magic/control/buff-flight-wings-runes-blue-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234145,"modifiedTime":1661791116571,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"CjIq8Ed7bu3vVwT1","name":"Contagion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your touch inflicts disease. Make a melee spell attack against a creature within your reach. On a hit, you afflict the creature with a disease of your choice from any of the ones described below.At the end of each of the target's turns, it must make a Constitution saving throw. After failing three of these saving throws, the disease's effects last for the duration, and the creature stops making these saves. After succeeding on three of these saving throws, the creature recovers from the disease, and the spell ends.Since this spell induces a natural disease in its target, any effect that removes a disease or otherwise ameliorates a disease's effects apply to it.Blinding Sickness. Pain grips the creature's mind, and its eyes turn milky white. The creature has disadvantage on Wisdom checks and Wisdom saving throws and is blinded.Filth Fever. A raging fever sweeps through the creature's body. The creature has disadvantage on Strength checks, Strength saving throws, and attack rolls that use Strength.Flesh Rot. The creature's flesh decays. The creature has disadvantage on Charisma checks and vulnerability to all damage.Mindfire. The creature's mind becomes feverish. The creature has disadvantage on Intelligence checks and Intelligence saving throws, and the creature behaves as if under the effects of the confusion spell during combat.Seizure. The creature is overcome with shaking. The creature has disadvantage on Dexterity checks, Dexterity saving throws, and attack rolls that use Dexterity.Slimy Doom. The creature begins to bleed uncontrollably. The creature has disadvantage on Constitution checks and Constitution saving throws. In addition, whenever the creature takes damage, it is stunned until the end of its next turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"7","units":"day"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":17,"scaling":"spell"},"level":5,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.CjIq8Ed7bu3vVwT1"}},"img":"icons/magic/unholy/strike-beam-blood-large-red-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234097,"modifiedTime":1661791116571,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"OVikYmSdHliAG2YD","name":"Insect Plague","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Swarming, biting locusts fill a 20-foot-radius Sphere centered on a point you choose within range. The sphere spreads around corners. The sphere remains for the Duration, and its area is lightly obscured. The sphere's area is difficult terrain.When the area appears, each creature in it must make a Constitution saving throw. A creature takes 4d10 piercing damage on a failed save, or half as much damage on a successful one. A creature must also make this saving throw when it enters the spell's area for the first time on a turn or ends its turn there.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d10 for each slot level above 5th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":300,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":17,"scaling":"spell"},"level":5,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A few grains of sugar, some kernels of grain, and a smear of fat","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d10"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.OVikYmSdHliAG2YD"}},"img":"icons/magic/nature/leaf-glow-maple-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234131,"modifiedTime":1661791116572,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"tMH6Ivn4GmE1naMj","name":"Harm","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You unleash a virulent disease on a creature that you can see within range. The target must make a Constitution saving throw. On a failed save, it takes 14d6 necrotic damage, or half as much damage on a successful save. The damage can't reduce the target's Hit Points below 1. If the target fails the saving throw, its hit point maximum is reduced for 1 Hour by an amount equal to the necrotic damage it took. Any effect that removes a disease allows a creature's hit point maximum to return to normal before that time passes.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["14d6","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":17,"scaling":"spell"},"level":6,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.tMH6Ivn4GmE1naMj"}},"img":"icons/magic/unholy/strike-beam-blood-large-red-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234234,"modifiedTime":1661791116572,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232849,"modifiedTime":1672596100453,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"UR2gWLFHmFwG7ReH","name":"Awakened Tree","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":59,"min":0,"max":59,"temp":0,"tempmax":0,"formula":"7d12 + 14"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"plant","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing"],"bypasses":[],"custom":""},"dv":{"value":["fire"],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"one language known by its creator"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Awakened Tree","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Q90HYHsZp8MD2iv2","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the tree remains motionless, it is indistinguishable from a normal tree.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WEesSpitzLnaCknL","name":"Slam","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 10 ft., one target. Hit: 14 (3d6 + 4) bludgeoning damage.\nThe Awakened Tree attacks with its Slam.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232853,"modifiedTime":1672596100508,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"UTuKdTah1DKfPwWe","name":"Constrictor Snake","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":13,"min":0,"max":13,"temp":0,"tempmax":0,"formula":"2d10 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Constrictor Snake","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"hZOM2L6WMmk8QOfO","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 5 (1d6 + 2) piercing damage.\nThe Constrictor Snake attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"haXdYCAfGXo0iVqC","name":"Constrict","type":"weapon","img":"icons/creatures/reptiles/serpent-horned-green.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 6 (1d8 + 2) bludgeoning damage. The target is grappled (escape DC 14). Until this grapple ends, the creature is restrained, and the snake can't constrict another target.\nThe Constrictor Snake attacks with its Constrict. The target is grappled. Until this grapple ends, the creature is restrained, and the snake can't constrict another target.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232854,"modifiedTime":1672596100544,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"UthHOT7QfZfEIUue","name":"Steam Mephit","type":"npc","img":"","system":{"abilities":{"str":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":21,"min":0,"max":21,"temp":0,"tempmax":0,"formula":"6d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":30,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"sm","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["aquan","ignan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Steam Mephit","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"QrN7UxINx4UCaPIC","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+2 to hit,, 5 ft., one creature. Hit: 2 (1d4) slashing damage plus 2 (1d4) fire damage.The Steam Mephit attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","slashing"],["1d4","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QWi0q0cSzHEp8VqB","name":"Death Burst","type":"feat","img":"icons/magic/light/explosion-star-glow-yellow.webp","system":{"description":{"value":"When the mephit dies, it explodes in a cloud of steam. Each creature within 5 ft. of the mephit must succeed on a DC 10 Dexterity saving throw or take 4 (1d8) fire damage.When the mephit dies, it explodes in a cloud of steam. Each creature within 5 ft. of the mephit must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":"on death"},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":10,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.net3yBKQoxl8bZ4r"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AVlovjg4AFAbd6rY","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The mephit can innately cast blur, requiring no material components. Its innate spellcasting ability is Charisma.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RnLjEUZ0gBxcH2T3","name":"Steam Breath","type":"feat","img":"icons/magic/air/wind-tornado-wall-blue.webp","system":{"description":{"value":"The mephit exhales a 15-foot cone of scalding steam. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 4 (1d8) fire damage on a failed save, or half as much damage on a successful one.The mephit exhales a 15-foot cone of scalding steam. Each creature in that area must succeed on a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":10,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4UuuUKjATTixrZGP"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UDUnlfPsOAbq2RSE","name":"Blur","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your body becomes blurred, shifting and wavering to all who can see you. For the duration, any creature has disadvantage on attack rolls against you. An attacker is immune to this effect if it doesn't rely on sight, as with blindsight, or can see through illusions, as with truesight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.UDUnlfPsOAbq2RSE"}},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234147,"modifiedTime":1661791116593,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232856,"modifiedTime":1672596100584,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VBkp2rGQKvMcCOus","name":"Worg","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":26,"min":0,"max":26,"temp":0,"tempmax":0,"formula":"4d10 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["goblin","custom"],"custom":"Worg"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Worg","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"oWGcJqNGhbIOeRjU","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The worg has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UnONIXYgZcE3Jya0","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\nIf the target is a creature, it must succeed on a DC 13 Strength saving throw or be knocked prone.\n\nThe Worg attacks with its Bite. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232858,"modifiedTime":1672596100623,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VBzqw2rOUvTuNOPI","name":"Remorhaz","type":"npc","img":"","system":{"abilities":{"str":{"value":24,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":195,"min":0,"max":195,"temp":0,"tempmax":0,"formula":"17d12 + 85"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":20,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":60,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Arctic","cr":11,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":["cold","fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Remorhaz","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Qcgc4zckQ7c1Ky8t","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-fire-orange.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 10 ft., one target. Hit: 40 (6d10 + 7) piercing damage plus 10 (3d6) fire damage. If the target is a creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the remorhaz can't bite another target.The Remorhaz attacks with its Bite. If the target is a creature, it is grappled. Until this grapple ends, the target is restrained, and the remorhaz can't bite another target.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d10 + @mod","piercing"],["3d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"usmJdksgWhPnjq94","name":"Heated Body","type":"feat","img":"icons/magic/fire/flame-burning-campfire-rocks.webp","system":{"description":{"value":"A creature that touches the remorhaz or hits it with a melee attack while within 5 feet of it takes 10 (3d6) fire damage.A creature that touches the remorhaz or hits it with a melee attack while within 5 feet of it takes fire damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iFNpsEMJT66eLoat"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kT6wF3F49uuWgP3h","name":"Swallow","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"The remorhaz makes one bite attack against a Medium or smaller creature it is grappling. If the attack hits, that creature takes the bite's damage and is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the remorhaz, and it takes 21 (6d6) acid damage at the start of each of the remorhaz's turns.The Remorhaz attacks with its Swallow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.aH5ncM30tP8tPQ24"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232860,"modifiedTime":1672596100663,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VCuG0Z3MrO8kfDU0","name":"Adult Bronze Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":25,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":23,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":212,"min":0,"max":212,"temp":0,"tempmax":0,"formula":"17d12 + 102"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Coastal","cr":15,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":["lightning"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Adult Bronze Dragon","displayName":0,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"KVwqxZJAuhE9M5kP","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zMFGBLVpXSZC1Vjm","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+12 to hit,, 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage.The Adult Bronze Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZEeiaB4lQMzRas3i","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Sn1RpgmvWb3DPz66","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"P0ycd36lowML3rTc","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+12 to hit,, 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.The Adult Bronze Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"irNLCfkryOmVWf25","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+12 to hit,, 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.The Adult Bronze Dragon attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"m7dF0hheApwoJLpp","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZDVExJaMLcCwOcyq","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ApCOq8kdcdR2lgPa","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Lightning Breath.** The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n**Repulsion Breath.** The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 19 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Irqf7lAff02Flboj","name":"Lightning Breath","type":"feat","img":"icons/magic/lightning/bolt-strike-blue.webp","system":{"description":{"value":"\n**Lightning Breath.** The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":19,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LVnd9fq9cQj7rR0Q"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TlmOXrpIxG13apJr","name":"Repulsion Breath","type":"feat","img":"icons/magic/air/air-wave-gust-blue.webp","system":{"description":{"value":"\n**Repulsion Breath.** The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 19 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n\nThe dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must make a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":19,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zRDERBe0lMbwyGwN"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jwbM0YJCiaOuH9fv","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7UhgJ951z7hjLmBu","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":"wis","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JOKHSoiYvCINS119","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nThe dragon makes a tail attack.\n\nThe dragon slams its long tail against its foe!","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ls6rBLfLiVx1xTaD","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"\nThe dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 20 Dexterity saving throw or take 16 (2d6+7) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.\n\nThe dragon beats its wings!","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":20,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WoixfK4f9t5yZ9XN","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ygGwKyrOo5J2gWKh","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232862,"modifiedTime":1672596100761,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VVXly3ue0i3YgGrB","name":"Giant Owl","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":19,"min":0,"max":19,"temp":0,"tempmax":0,"formula":"3d10 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":5,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"Giant Owl; Understands Common, Elvish, and Sylvan but can't speak them"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Owl","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"KPd0M35kARcddw1j","name":"Flyby","type":"feat","img":"icons/creatures/mammals/bats-movement-flying-purple.webp","system":{"description":{"value":"The owl doesn't provoke opportunity attacks when it flies out of an enemy's reach.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Owl","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.7WfeHV27l7DMcuTG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"u75qrcQ8DsrUULkS","name":"Keen Hearing and Sight","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The owl has advantage on Wisdom (Perception) checks that rely on hearing or sight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6jw1NtpZQXIesO4Y","name":"Talons","type":"weapon","img":"icons/creatures/claws/claw-scaled-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 8 (2d6 + 1) slashing damage.\nThe Giant Owl attacks with its Talons.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232864,"modifiedTime":1672596100805,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Vk7uHVkJ5b26gaTh","name":"Mule","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Hill","cr":0.125,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Mule","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"nIYcqw8lbaWP1sSJ","name":"Beast of Burden","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"The mule is considered to be a Large animal for the purpose of determining its carrying capacity.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.mUwZfxiOyao1Xuxt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PWqvlPCG9P9edPYi","name":"Sure-Footed","type":"feat","img":"icons/magic/nature/root-vine-entangle-foot-green.webp","system":{"description":{"value":"The mule has advantage on Strength and Dexterity saving throws made against effects that would knock it prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nJHx2fudYhZeexDP"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ou2VI9ORGu2JnZqj","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 4 (1d4 + 2) bludgeoning damage.\nThe Mule attacks with its Hooves.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232865,"modifiedTime":1672596100842,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VmdyZDjqAc8vdncY","name":"Succubus/Incubus","type":"npc","img":"","system":{"abilities":{"str":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":66,"min":0,"max":66,"temp":null,"tempmax":0,"formula":"12d8 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"int"},"details":{"biography":{"value":"","public":""},"alignment":"neutral evil","race":"","type":{"value":"fiend","subtype":"Shapechanger","swarm":"","custom":""},"environment":"","cr":4,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","fire","lightning","piercing","poison","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["abyssal","common","infernal"],"custom":"Telepathy 60 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":2,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":2,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Succubus/Incubus","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"P3P1EukfOip32dtd","name":"Telepathic Bond","type":"feat","img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","system":{"description":{"value":"The fiend ignores the range restriction on its telepathy when communicating with a creature it has charmed. The two don't even need to be on the same plane of existence.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eVKgO2130oiJqsjY"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZVMVqd01HraMcenH","name":"Shapechanger","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The fiend can use its action to polymorph into a Small or Medium humanoid, or back into its true form. Without wings, the fiend loses its flying speed. Other than its size and speed, its statistics are the same in each form.Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies.The fiend can use its action to polymorph into a humanoid, or back into its true form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"oSlFzVMu0fdEfYt1","name":"Claw (Fiend Form Only)","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.The Succubus/Incubus attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2bFCfFfjRNmhyE8A","name":"Charm","type":"feat","img":"icons/magic/air/wind-tornado-spiral-pink-purple.webp","system":{"description":{"value":"One humanoid the fiend can see within 30 feet of it must make a Wisdom saving throw or be magically charmed for 1 day. The charmed target obeys the fiend's verbal or telepathic commands.If the target suffers any harm or receives a suicidal command, it can repeat the saving throw, ending the effect on a success. If the target successfully saves against the effect, or if the effect on it ends, the target is immune to this fiend's Charm for the next 24 hours.The fiend can have only one target charmed at a time. If it charms another, the effect on the previous target ends.One humanoid the fiend can see within 30 feet of it must make a Wisdom saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"day"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.ykoo88OJOdfYH7mH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eb0O9cQ8N6lovLyI","name":"Draining Kiss","type":"feat","img":"icons/magic/air/wind-vortex-swirl-purple.webp","system":{"description":{"value":"The fiend kisses a creature charmed by it or a willing creature. The target must make a DC 15 Constitution saving throw against this magic, taking 32 (5d10 + 5) psychic damage on a failed save, or half as much damage on a successful one. The target's hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.The target must make a Constitution saving throw against this magic.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d10 + @mod","psychic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iq0J225DCbHYU2hU"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"s1s5asgUorljP7SV","name":"Etherealness","type":"feat","img":"icons/magic/unholy/barrier-shield-glowing-pink.webp","system":{"description":{"value":"The fiend magically enters the Ethereal Plane from the Material Plane, or vice versa.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.rDoNJnKdY47x8MD4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232867,"modifiedTime":1672596100885,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WJsxqbHU28D64lWT","name":"Rust Monster","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":27,"min":0,"max":27,"temp":0,"tempmax":0,"formula":"5d8 + 5"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Rust Monster","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"IPdRnqMb4ZjhHAm4","name":"Iron Scent","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The rust monster can pinpoint, by scent, the location of ferrous metal within 30 feet of it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.gh5UPTS0L16fHYwB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dobpPU4kb00zSkQt","name":"Rust Metal","type":"feat","img":"icons/skills/melee/blade-tip-chipped-blood-red.webp","system":{"description":{"value":"Any nonmagical weapon made of metal that hits the rust monster corrodes. After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls. If its penalty drops to -5, the weapon is destroyed. Non magical ammunition made of metal that hits the rust monster is destroyed after dealing damage.Any nonmagical weapon made of metal that hits the rust monster corrodes. After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.GSgfXL9DyDA3GD0n"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZFTo8KoUDrqeFg7l","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 5 (1d8 + 1) piercing damage.The Rust Monster attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yxwZ9AtLMKZ61sTz","name":"Antennae","type":"feat","img":"icons/magic/nature/tree-bare-glow-yellow.webp","system":{"description":{"value":"The rust monster corrodes a nonmagical ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it. If the object is being worn or carried by a creature, the creature can make a DC 11 Dexterity saving throw to avoid the rust monster's touch.If the object touched is either metal armor or a metal shield being worn or carried, its takes a permanent and cumulative -1 penalty to the AC it offers. Armor reduced to an AC of 10 or a shield that drops to a +0 bonus is destroyed. If the object touched is a held metal weapon, it rusts as described in the Rust Metal trait.The rust monster corrodes a ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":11,"scaling":"dex"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.6HJpLJxctQdMLeuB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232869,"modifiedTime":1672596100925,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WOdeacKCYVhgLDuN","name":"Weasel","type":"npc","img":"","system":{"abilities":{"str":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"1d4 - 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Weasel","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"yCp6Ire7GPbpAwpZ","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The weasel has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Weasel","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qQmFFG5fOGkUEeu2","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one creature. Hit: 1 piercing damage.\nThe Weasel attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232870,"modifiedTime":1672596100965,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Wcsjbl25uiUsyQwn","name":"Ankheg","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":39,"min":0,"max":39,"temp":0,"tempmax":0,"formula":"6d10 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":10,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":60,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ankheg","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"mGamlcdui038L6gU","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage plus 3 (1d6) acid damage.\nIf the target is a Large or smaller creature, it is grappled (escape DC 13). Until this grapple ends, the ankheg can bite only the grappled creature and has advantage on attack rolls to do so.\n\nThe Ankheg attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"],["1d6","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XZwZexkrBLOzLo1Q","name":"Acid Spray","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\nThe ankheg spits acid in a line that is 30 ft. long and 5 ft. wide, provided that it has no creature grappled.\nEach creature in that line must make a DC 13 Dexterity saving throw, taking 10 (3d6) acid damage on a failed save, or half as much damage on a successful one.\n\nThe ankheg spits acid in a line that is 30 ft. long and 5 ft. wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","acid"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kZpl32DBmqxlRegX"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232872,"modifiedTime":1672596101002,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XEByBLeOkDgL3mrr","name":"Planetar","type":"npc","img":"","system":{"abilities":{"str":{"value":24,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":24,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":22,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":25,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":200,"min":0,"max":200,"temp":null,"tempmax":0,"formula":"16d10 + 112"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":120,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"celestial","subtype":"","swarm":"","custom":""},"environment":"","cr":16,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","radiant","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","exhaustion","frightened"],"custom":""},"languages":{"value":[],"custom":"All; Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Planetar","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"sDvx0IybgYa8Q4WG","name":"Angelic Weapons","type":"feat","img":"icons/magic/fire/dagger-rune-enchant-flame-strong-blue-yellow.webp","system":{"description":{"value":"The planetar's weapon attacks are magical. When the planetar hits with any weapon, the weapon deals an extra 5d8 radiant damage (included in the attack).The planetar's weapon attacks are magical. When the planetar hits with any weapon, the weapon deals extra radiant damage (included in the attack).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.cz1LUaiXG8GshgU9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2kBUlTLMlwq3KoUB","name":"Divine Awareness","type":"feat","img":"icons/magic/perception/third-eye-blue-red.webp","system":{"description":{"value":"The planetar knows if it hears a lie.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lOJK48AtlIcfYPPB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9hrSczyYfl4fSrpZ","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The planetar's spellcasting ability is Charisma (spell save DC 20). The planetar can innately cast the following spells, requiring no material components:\nAt will: detect evil and good, invisibility (self only)\n3/day each: blade barrier, dispel evil and good, flame strike, raise dead\n1/day each: commune, control weather, insect plague","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2C0408CEBtrZW8ji","name":"Invisibility (self only)","type":"spell","img":"icons/magic/air/fog-gas-smoke-blue-dense-white.webp","system":{"description":{"value":"A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"level","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.1N8dDMMgZ1h1YJ3B"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5sDIEn5aplaeXax7","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The planetar has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LyxrhwvzMW4YbiYE","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The planetar makes two melee attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BBLXs9hiUvtRaP16","name":"Greatsword","type":"weapon","img":"icons/weapons/swords/greatsword-guard-gem-blue.webp","system":{"description":{"value":"Melee Weapon Attack:+12 to hit,, 5 ft., one target. Hit: 21 (4d6 + 7) slashing damage plus 22 (5d8) radiant damage.The Planetar attacks with its Greatsword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6 + @mod","slashing"],["5d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.xMkP8BmFzElcsMaR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VJz6sW3vOJcEL4IS","name":"Healing Touch","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"The planetar touches another creature. The target magically regains 30 (6d8 + 3) hit points and is freed from any curse, disease, poison, blindness, or deafness.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"touch","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":4,"max":"4","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d8+3","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.r3Ugp8f5Ckw2EUHL"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Mzh95utKDPIrjiH8","name":"Detect Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Mzh95utKDPIrjiH8"}},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234128,"modifiedTime":1661791116611,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"dLJhxDfeyOsc3zsY","name":"Blade Barrier","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a vertical wall of whirling, razor-sharp blades made of magical energy. The wall appears within range and lasts for the duration. You can make a straight wall up to 100 feet long, 20 feet high, and 5 feet thick, or a ringed wall up to 60 feet in diameter, 20 feet high, and 5 feet thick. The wall provides three-quarters cover to creatures behind it, and its space is difficult terrain.When a creature enters the wall's area for the first time on a turn or starts its turn there, the creature must make a Dexterity saving throw. On a failed save, the creature takes 6d10 slashing damage. On a successful save, the creature takes half as much damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"wall"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d10","slashing"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":20,"scaling":"spell"},"level":6,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.dLJhxDfeyOsc3zsY"}},"img":"icons/magic/light/projectile-beams-salvo-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234179,"modifiedTime":1661791116612,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"TkJ8Wtg1L7TZtspm","name":"Dispel Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Shimmering energy surrounds and protects you from fey, Undead, and creatures originating from Beyond the Material Plane. For the Duration, Celestials, Elementals, fey, Fiends, and undead have disadvantage on Attack rolls against you.You can end the spell early by using either of the following special functions.Break Enchantment. As your action, you touch a creature you can reach that is Charmed, Frightened, or possessed by a Celestial, an elemental, a fey, a fiend, or an Undead. The creature you touch is no longer charmed, frightened, or possessed by such creatures.Dismissal. As your action, make a melee spell Attack against a Celestial, an elemental, a fey, a fiend, or an Undead you can reach. On a hit, you attempt to drive the creature back to its home plane. The creature must succeed on a Charisma saving throw or be sent back to its home plane (if it isn't there already). If they aren't on their home plane, undead are sent to the Shadowfell, and fey are sent to the Feywild.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":20,"scaling":"spell"},"level":5,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Holy water or powdered silver and iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.TkJ8Wtg1L7TZtspm"}},"img":"icons/magic/air/air-burst-spiral-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234146,"modifiedTime":1661791116612,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"5e1xTohkzqFqbYH4","name":"Flame Strike","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A vertical column of divine fire roars down from the heavens in a location you specify. Each creature in a 10-foot-radius, 40-foot-high Cylinder centered on a point within range must make a Dexterity saving throw. A creature takes 4d6 fire damage and 4d6 radiant damage on a failed save, or half as much damage on a successful one.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the fire damage or the radiant damage (your choice) increases by 1d6 for each slot level above 5th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"cylinder"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","radiant"],["4d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":20,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of sulfur","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.5e1xTohkzqFqbYH4"}},"img":"icons/magic/light/beam-rays-red-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234070,"modifiedTime":1661791116612,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"AGFMPAmuzwWO6Dfz","name":"Raise Dead","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You return a dead creature you touch to life, provided that it has been dead no longer than 10 days. If the creature's soul is both willing and at liberty to rejoin the body, the creature returns to life with 1 hit point.This spell also neutralizes any poisons and cures nonmagical diseases that affected the creature at the time it died. This spell doesn't, however, remove magical diseases, curses, or similar effects; if these aren't first removed prior to casting the spell, they take effect when the creature returns to life. The spell can't return an undead creature to life.This spell closes all mortal wounds, but it doesn't restore missing body parts. If the creature is lacking body parts or organs integral for its survival—its head, for instance—the spell automatically fails.Coming back from the dead is an ordeal. The target takes a −4 penalty to all attack rolls, saving throws, and ability checks. Every time the target finishes a long rest, the penalty is reduced by 1 until it disappears.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A diamond worth at least 500gp, which the spell consumes.","consumed":true,"cost":500,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.AGFMPAmuzwWO6Dfz"}},"img":"icons/magic/life/heart-cross-strong-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234087,"modifiedTime":1661791116613,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"d54VDyFulD9xxY7J","name":"Commune","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You contact your deity or a divine proxy and ask up to three questions that can be answered with a yes or no. You must ask your questions before the spell ends. You receive a correct answer for each question.Divine beings aren't necessarily omniscient, so you might receive \"unclear\" as an answer if a question pertains to information that lies beyond the deity's knowledge. In a case where a one-word answer could be misleading or contrary to the deity's interests, the DM might offer a short phrase as an answer instead.If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get no answer. The DM makes this roll in secret.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"Incense and a vial of holy or unholy water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.d54VDyFulD9xxY7J"}},"img":"icons/magic/control/debuff-energy-hold-levitate-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234177,"modifiedTime":1661791116613,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ZPd73HtKF3At11jh","name":"Control Weather","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You take control of the weather within 5 miles of you for the duration. You must be outdoors to cast this spell. Moving to a place where you don't have a clear path to the sky ends the spell early.When you cast the spell, you change the current weather conditions, which are determined by the DM based on the climate and season. You can change precipitation, temperature, and wind. It takes 1d4 x 10 minutes for the new conditions to take effect. Once they do so, you can change the conditions again. When the spell ends, the weather gradually returns to normal.When you change the weather conditions, find a current condition on the following tables and change its stage by one, up or down. When changing the wind, you can change its direction.Conditions\n\nClear\nLight clouds\nOvercast or ground fog\nRain, hail, or snow\nTorrential rain, driving hail, or blizzard\n\nTemperature\n\nUnbearable heat\nHot\nWarm\nCool\nCold\nArctic cold\n\nWind\n\nCalm\nModerate wind\nStrong wind\nGale\nStorm\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":5,"width":null,"units":"mi","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Burning incense and bits of earth and wood mixed in water.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ZPd73HtKF3At11jh"}},"img":"icons/magic/air/wind-tornado-cyclone-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234163,"modifiedTime":1661791116614,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"OVikYmSdHliAG2YD","name":"Insect Plague","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Swarming, biting locusts fill a 20-foot-radius Sphere centered on a point you choose within range. The sphere spreads around corners. The sphere remains for the Duration, and its area is lightly obscured. The sphere's area is difficult terrain.When the area appears, each creature in it must make a Constitution saving throw. A creature takes 4d10 piercing damage on a failed save, or half as much damage on a successful one. A creature must also make this saving throw when it enters the spell's area for the first time on a turn or ends its turn there.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d10 for each slot level above 5th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":300,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":20,"scaling":"spell"},"level":5,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A few grains of sugar, some kernels of grain, and a smear of fat","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":"1d10"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.OVikYmSdHliAG2YD"}},"img":"icons/magic/nature/leaf-glow-maple-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234131,"modifiedTime":1661791116614,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232875,"modifiedTime":1672596101101,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XfQMBoTh892XSnCX","name":"Swarm of Poisonous Snakes","type":"npc","img":"","system":{"abilities":{"str":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":36,"min":0,"max":36,"temp":0,"tempmax":0,"formula":"8d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"tiny","custom":""},"environment":"Forest","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","grappled","paralyzed","petrified","prone","restrained","stunned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Swarm of Poisonous Snakes","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"SFmH90jkxaUoPJjk","name":"Swarm","type":"feat","img":"icons/creatures/invertebrates/fly-wasp-mosquito-green.webp","system":{"description":{"value":"The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny snake. The swarm can't regain hit points or gain temporary hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Bats","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eL3OJmc4FuetizKO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OyLoUiIl3p2j4p59","name":"Bites","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 0 ft., one creature in the swarm's space. Hit: 7 (2d6) piercing damage, or 3 (1d6) piercing damage if the swarm has half of its hit points or fewer.\nThe target must make a DC 10 Constitution saving throw, taking 14 (4d6) poison damage on a failed save, or half as much damage on a successful one.\n\nThe Swarm of Poisonous Snakes attacks with a flurry of Bites. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","piercing"]],"versatile":"1d6"},"formula":"4d6","save":{"ability":"con","dc":10,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232877,"modifiedTime":1672596101150,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XiSWKZzAUxdmFOLL","name":"Avatar of Death","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":20,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"Half of Summoner Max."},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":60,"units":"ft","hover":true},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":60,"units":"ft","special":""},"spellcasting":"int"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":1,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["necrotic","poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","paralyzed","petrified","poisoned","unconscious"],"custom":""},"languages":{"value":[],"custom":"All languages known to its summoner"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Avatar of Death","displayName":0,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"tXHiE3pxHbBF8bS6","name":"Incorporeal Movement","type":"feat","img":"icons/magic/air/air-wave-gust-blue.webp","system":{"description":{"value":"\nThe avatar can move through other creatures and objects as if they were difficult terrain.\nIt takes 5 (1d10) force damage if it ends its turn inside an object.\n\nThe avatar can move through other creatures and objects as if they were difficult terrain.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LUHmtIDD1VTreFqI"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1rEzqo8fiLbeFE07","name":"Turn Immunity","type":"feat","img":"icons/magic/fire/flame-burning-creature-skeleton.webp","system":{"description":{"value":"The avatar is immune to features that turn undead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.ARWpuy82jh0daSDa"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"d7ERliHkrcvQAF1X","name":"Reaping Scythe","type":"feat","img":"icons/skills/melee/strike-scythe-fire-green.webp","system":{"description":{"value":"\nThe avatar sweeps its spectral scythe through a creature within 5 feet of it, dealing 7 (1d8 + 3) slashing damage plus 4 (1d8) necrotic damage.\n\nThe avatar sweeps its spectral scythe through a creature within 5 feet of it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"],["1d8","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.of2dTSnPwmhR52O7"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232878,"modifiedTime":1672596101187,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Y0vxQVF7w2P38FK2","name":"Scorpion","type":"npc","img":"","system":{"abilities":{"str":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"1d4 - 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Scorpion","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ltue5DUb1SZfphHE","name":"Sting","type":"weapon","img":"icons/creatures/abilities/stinger-poison-green.webp","system":{"description":{"value":"\nMelee Weapon Attack:+2 to hit,, 5 ft., one creature. Hit: 1 piercing damage.\nThe target must make a DC 9 Constitution saving throw, taking 4 (1d8) poison damage on a failed save, or half as much damage on a successful one.\n\nThe Scorpion attacks with its Sting. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"1d8","save":{"ability":"con","dc":9,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232880,"modifiedTime":1672596101222,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YOqhbf8WsX0jH9Fu","name":"Clay Golem","type":"npc","img":"","system":{"abilities":{"str":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":133,"min":0,"max":133,"temp":null,"tempmax":0,"formula":"14d10 + 56"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"construct","subtype":"","swarm":"","custom":""},"environment":"","cr":9,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["acid","bludgeoning","piercing","poison","psychic","slashing"],"bypasses":["ada","mgc"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","paralyzed","petrified","poisoned","exhaustion"],"custom":""},"languages":{"value":[],"custom":"Understands the languages of its creator but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Clay Golem","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"vEEJei0CNaNbfQ2w","name":"Slam","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage.\nIf the target is a creature, it must succeed on a DC 15 Constitution saving throw or have its hit point maximum reduced by an amount equal to the damage taken. The target dies if this attack reduces its hit point maximum to 0. The reduction lasts until removed by the greater restoration spell or other magic.\n\nThe Clay Golem attacks with its Slam. If the target is a creature, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GOADsI5dGE3ah0Vi","name":"Haste","type":"feat","img":"icons/skills/movement/feet-winged-boots-brown.webp","system":{"description":{"value":"\nRecharge 5-6.\n\nUntil the end of its next turn, the golem magically gains a +2 bonus to its AC, has advantage on Dexterity saving throws, and can use its slam attack as a bonus action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.ZIGTG2qhkJ54jEk4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"91uPF10lBpn5EOhn","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The golem has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"K5xMZVNv8m2Pw87E","name":"Berserk","type":"feat","img":"icons/creatures/reptiles/lizard-mouth-glowing-red.webp","system":{"description":{"value":"\nWhenever the golem starts its turn with 60 hit points or fewer, roll a d6. On a 6, the golem goes berserk. On each of its turns while berserk, the golem attacks the nearest creature it can see.\nIf no creature is near enough to move to and attack, the golem attacks an object, with preference for an object smaller than itself. Once the golem goes berserk, it continues to do so until it is destroyed or regains all its hit points.\n\nThe golem goes berserk. On each of its turns while berserk, the golem attacks the nearest creature it can see. If no creature is near enough to move to and attack, the golem attacks an object, with preference for an object smaller than itself.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d6","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.QOWoa60SwvsQJifN"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"og0rfDmwPObM3ulb","name":"Immutable Form","type":"feat","img":"icons/magic/unholy/orb-beam-pink.webp","system":{"description":{"value":"The golem is immune to any spell or effect that would alter its form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.MFuiImIvLzYA3osc"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"J1NgIuQWtR4G9JKd","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The golem's weapon attacks are magical.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hftXBQthz8jMjFTs","name":"Acid Absorption","type":"feat","img":"icons/magic/unholy/orb-smoking-green.webp","system":{"description":{"value":"Whenever the golem is subjected to acid damage, it takes no damage and instead regains a number of hit points equal to the acid damage dealt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.TVPqMOcoLNFBUMyG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"g0R4u7liRAurxB04","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The golem makes two slam attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232881,"modifiedTime":1672596101263,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YTpL2c3NO4sOn2UA","name":"Mastiff","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":5,"min":0,"max":5,"temp":0,"tempmax":0,"formula":"1d8 + 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0.125,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Mastiff","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"F1Rua6pTBYdDfVob","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The mastiff has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QLJgy1aF5ijBEp4K","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) piercing damage.\nIf the target is a creature, it must succeed on a DC 11 Strength saving throw or be knocked prone.\n\nThe Mastiff attacks with its Bite. If the target is a creature, it must succeed on a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232883,"modifiedTime":1672596101303,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YUaprnengdFDNG8P","name":"Swarm of Wasps","type":"npc","img":"","system":{"abilities":{"str":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"5d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":30,"swim":0,"walk":5,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"tiny","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","grappled","paralyzed","petrified","prone","restrained","stunned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Swarm of Wasps","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"kQMM3DSzE6UDZWZd","name":"Swarm","type":"feat","img":"icons/creatures/invertebrates/fly-wasp-mosquito-green.webp","system":{"description":{"value":"The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Bats","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eL3OJmc4FuetizKO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bmjRGkZH4lnTX72M","name":"Bites","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 0 ft., one target in the swarm's space. Hit: 10 (4d4) piercing damage, or 5 (2d4) piercing damage if the swarm has half of its hit points or fewer.\nThe Swarm of Wasps attacks with a flurry of Bites.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d4","piercing"]],"versatile":"2d4"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232885,"modifiedTime":1672596101338,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Z0GiAv3bJxTjUfjM","name":"Giant Fire Beetle","type":"npc","img":"","system":{"abilities":{"str":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":4,"min":0,"max":4,"temp":0,"tempmax":0,"formula":"1d6 + 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Fire Beetle","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":10,"coloration":1,"dim":20,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ytajTMHqbOxc0BvA","name":"Bite","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+1 to hit,, 5 ft., one target. Hit: 2 (1d6 - 1) slashing damage.\nThe Giant Fire Beetle attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"t1I5Ss8xvBplViSy","name":"Illumination","type":"feat","img":"icons/magic/light/beam-strike-orange-gold.webp","system":{"description":{"value":"The beetle sheds bright light in a 10-foot radius and dim light for an additional 10 feet.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Fire Beetle","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.F3gzBbCW7U14zkBF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232886,"modifiedTime":1672596101374,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZHAFrnCwCz17dmLc","name":"Troll","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":84,"min":0,"max":84,"temp":0,"tempmax":0,"formula":"8d10 + 40"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"giant","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["giant"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Troll","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.3,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"R7DpgLP3aFNmAgOc","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 7 (1d6 + 4) piercing damage.The Troll attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ahGwFmyt6nItUOAK","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.The Troll attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"N3vrbUmlL4FEARJ8","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The troll has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BA9WmovILanbvacP","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The troll makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yWYB2iyRA61AjcVJ","name":"Regeneration","type":"feat","img":"icons/skills/wounds/anatomy-organ-heart-red.webp","system":{"description":{"value":"\nThe troll regains 10 hit points at the start of its turn. If the troll takes acid or fire damage, this trait doesn't function at the start of the troll's next turn. The troll dies only if it starts its turn with 0 hit points and doesn't regenerate.\n\nThe troll regains 10 hit points at the start of its turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Av7H0ymGdPeTsnwV"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232889,"modifiedTime":1672596101414,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZM1P6LoYSwMiIJN9","name":"Deep Gnome","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":16,"min":0,"max":16,"temp":0,"tempmax":0,"formula":"3d6 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"int"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Good","race":"","type":{"value":"humanoid","subtype":"Gnome","swarm":"","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["gnomish","terran","undercommon"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Deep Gnome","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"mhIdpV6rtYYjOBN5","name":"Chain Shirt","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"Made of interlocking metal rings, a chain shirt is worn between layers of clothing or leather. This armor offers modest protection to the wearer's upper body and allows the sound of the rings rubbing against one another to be muffled by outer layers.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":20,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.p2zChy24ZJdVqMSH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8Yo6JM2NfjkpC8Hz","name":"Stone Camouflage","type":"feat","img":"icons/environment/settlement/stone-stairs.webp","system":{"description":{"value":"The gnome has advantage on Dexterity (Stealth) checks made to hide in rocky terrain.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.j1cPfWFNvxGoex9Z"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JCSej95QR8svWsYz","name":"Gnome Cunning","type":"feat","img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","system":{"description":{"value":"The gnome has advantage on Intelligence, Wisdom, and Charisma saving throws against magic.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.0gl43AC57cvJaW7D"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AqLTSMp6MlcNK666","name":"War Pick","type":"weapon","img":"icons/weapons/axes/pickaxe-double-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\nThe Deep Gnome (Svirfneblin) attacks with its War Pick.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.2YdfjN1PIIrSHZii"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pnfC0DIa1eqXGjku","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The gnome's innate spellcasting ability is Intelligence (spell save DC 11). It can innately cast the following spells, requiring no material components:\nAt will: nondetection (self only)\n1/day each: blindness/deafness, blur, disguise self","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YuhirWYJsQfL6zo5","name":"Poisoned Dart","type":"weapon","img":"icons/weapons/ammunition/arrows-war-red.webp","system":{"description":{"value":"\nRanged Weapon Attack: +4 to hit, range 30/120 ft., one creature. Hit: 4 (1d4 + 2) piercing damage.\nThe target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe Deep Gnome (Svirfneblin) attacks with its Poisoned Dart. The target must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.25,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":12,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"fin":true,"thr":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"aU62xVUBYkAQWIHv","name":"Nondetection","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the Duration, you hide a target that you touch from Divination magic. The target can be a willing creature or a place or an object no larger than 10 feet in any dimension. The target can't be targeted by any divination magic or perceived through magical Scrying sensors.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of diamond dust worth 25 gp sprinkled over the target, which the spell consumes","consumed":true,"cost":25,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.aU62xVUBYkAQWIHv"}},"img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234168,"modifiedTime":1661791116635,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"zwGsAv6kmwzYGhh3","name":"Blindness/Deafness","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You can blind or deafen a foe. Choose one creature that you can see within range to make a Constitution saving throw. If it fails, the target is either blinded or deafened (your choice) for the duration. At the end of each of its turns, the target can make a Constitution saving throw. On a success, the spell ends.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":11,"scaling":"spell"},"level":2,"school":"nec","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.zwGsAv6kmwzYGhh3"}},"img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234247,"modifiedTime":1661791116636,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"UDUnlfPsOAbq2RSE","name":"Blur","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your body becomes blurred, shifting and wavering to all who can see you. For the duration, any creature has disadvantage on attack rolls against you. An attacker is immune to this effect if it doesn't rely on sight, as with blindsight, or can see through illusions, as with truesight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.UDUnlfPsOAbq2RSE"}},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234147,"modifiedTime":1661791116636,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"A3q2gTNqG6fvNGrv","name":"Disguise Self","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You make yourself—including your clothing, armor, weapons, and other belongings on your person—look different until the spell ends or until you use your action to dismiss it. You can seem 1 foot shorter or taller and can appear thin, fat, or in between. You can't change your body type, so you must adopt a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you.The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to your outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel your head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair.To discern that you are disguised, a creature can use its action to inspect your appearance and must succeed on an Intelligence (Investigation) check against your spell save DC.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":11,"scaling":"spell"},"level":1,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.A3q2gTNqG6fvNGrv"}},"img":"icons/magic/control/debuff-energy-hold-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234086,"modifiedTime":1661791116636,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232890,"modifiedTime":1672596101511,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZQTCZfTV9ZoTjNCU","name":"Homunculus","type":"npc","img":"","system":{"abilities":{"str":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":5,"min":0,"max":5,"temp":0,"tempmax":0,"formula":"2d4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":40,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"construct","subtype":"","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","poisoned"],"custom":""},"languages":{"value":[],"custom":"Understands the languages of its creator but cannot speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Homunculus","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"1uXv78I9YByiz6rV","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 1 piercing damage.The target must succeed on a DC 10 Constitution saving throw or be poisoned for 1 minute. If the saving throw fails by 5 or more, the target is instead poisoned for 5 (1d10) minutes and unconscious while poisoned in this way.The Homunculus attacks with its Bite.The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":10,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5bFYYcQnfN1KtOwr","name":"Telepathic Bond","type":"feat","img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","system":{"description":{"value":"While the homunculus is on the same plane of existence as its master, it can magically convey what it senses to its master, and the two can communicate telepathically.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eVKgO2130oiJqsjY"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232892,"modifiedTime":1672596101554,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZW39DE2zI3TXVYC9","name":"Giant Poisonous Snake","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Poisonous Snake","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"GlOJaYXJFUP0Hd80","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 10 ft., one target. Hit: 6 (1d4 + 4) piercing damage.\nThe target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n\nThe Giant Poisonous Snake attacks with its Bite. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":"3d6"},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"rch":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232894,"modifiedTime":1672596101590,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZaP1H91t4FzbRqR5","name":"Couatl","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":97,"min":0,"max":97,"temp":null,"tempmax":0,"formula":"13d8 + 39"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":90,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"celestial","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":4,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["bludgeoning","piercing","psychic","slashing"],"bypasses":["mgc"],"custom":""},"dr":{"value":["radiant"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"All; Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Couatl","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"7M1OrMoMMTCEKxta","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 5 ft., one creature. Hit: 8 (1d6 + 5) piercing damage.\nThe target must succeed on a DC 13 Constitution saving throw or be poisoned for 24 hours. Until this poison ends, the target is unconscious. Another creature can use an action to shake the target awake.\n\nThe Couatl attacks with its Bite. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8LkzioyaScFxfst7","name":"Constrict","type":"weapon","img":"icons/creatures/reptiles/serpent-horned-green.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 10 ft., one Medium or smaller creature. Hit: 10 (2d6 + 3) bludgeoning damage.\nThe target is grappled (escape DC 15). Until this grapple ends, the target is restrained, and the couatl can't constrict another target.\n\nThe Couatl attacks with its Constrict. The target is grappled. Until this grapple ends, the target is restrained, and the couatl can't constrict another target.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":true,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iw2q07K1D0X01DZO","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The couatl magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the couatl's choice).\nIn a new form, the couatl retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and other actions are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks. If the new form has a bite attack, the couatl can use its bite in that form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"J40yeoOnwpvtVpHt","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The couatl's spellcasting ability is Charisma (spell save DC 14). It can innately cast the following spells, requiring only verbal components:\nAt will: detect evil and good, detect magic, detect thoughts\n3/day each: bless, create food and water, cure wounds, lesser restoration, protection from poison, sanctuary, shield\n1/day each: dream, greater restoration, scrying","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3qE2LLHPANSEPmIN","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The couatl's weapon attacks are magical.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MGh9IkfXNn7FmwL5","name":"Shielded Mind","type":"feat","img":"icons/magic/control/control-influence-rally-purple.webp","system":{"description":{"value":"The couatl is immune to scrying and to any effect that would sense its emotions, read its thoughts, or detect its location.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.SrmR5UfLMFxTErTp"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Mzh95utKDPIrjiH8","name":"Detect Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Mzh95utKDPIrjiH8"}},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234128,"modifiedTime":1661791116658,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116658,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ppWAAEul0QHtm4er","name":"Detect Thoughts","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you can read the thoughts of certain creatures. When you cast the spell and as your action on each turn until the spell ends, you can focus your mind on any one creature that you can see within 30 feet of you. If the creature you choose has an Intelligence of 3 or lower or doesn't speak any language, the creature is unaffected.You initially learn the surface thoughts of the creature—what is most on its mind in that moment. As an action, you can either shift your attention to another creature's thoughts or attempt to probe deeper into the same creature's mind. If you probe deeper, the target must make a Wisdom saving throw. If it fails, you gain insight into its reasoning (if any), its emotional state, and something that looms large in its mind (such as something it worries over, loves, or hates). If it succeeds, the spell ends. Either way, the target knows that you are probing into its mind, and unless you shift your attention to another creature's thoughts, the creature can use its action on its turn to make an Intelligence check contested by your Intelligence check; if it succeeds, the spell ends.Questions verbally directed at the target creature naturally shape the course of its thoughts, so this spell is particularly effective as part of an interrogation.You can also use this spell to detect the presence of thinking creatures you can't see. When you cast the spell or as your action during the duration, you can search for thoughts within 30 feet of you. The spell can penetrate barriers, but 2 feet of rock, 2 inches of any metal other than lead, or a thin sheet of lead blocks you. You can't detect a creature with an Intelligence of 3 or lower or one that doesn't speak any language.Once you detect the presence of a creature in this way, you can read its thoughts for the rest of the duration as described above, even if you can't see it, but it must still be within range.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A copper piece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ppWAAEul0QHtm4er"}},"img":"icons/magic/light/explosion-star-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234229,"modifiedTime":1661791116659,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"8dzaICjGy6mTUaUr","name":"Bless","type":"spell","img":"icons/magic/control/buff-flight-wings-blue.webp","system":{"description":{"value":"You bless up to three creatures of your choice within range. Whenever a target makes an attack roll or a saving throw before the spell ends, the target can roll 1d4 and add the number rolled to the attack roll or saving throw.\nHigher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":3,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A sprinkling of holy water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"effects":[{"_id":"8rP3gwmXVTgZqYZE","flags":{},"changes":[{"key":"system.bonuses.abilities.save","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.mwak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.msak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rsak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rwak.attack","mode":2,"value":"+1d4","priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":60,"rounds":10,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/control/buff-flight-wings-blue.webp","label":"Bless","origin":"Item.kZZAZ6kp9YzgPQEe","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.8dzaICjGy6mTUaUr"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234081,"modifiedTime":1661791116659,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"BV0mpbHh29IbbIj5","name":"Create Food and Water","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create 45 pounds of food and 30 gallons of water on the ground or in containers within range, enough to sustain up to fifteen humanoids or five steeds for 24 hours. The food is bland but nourishing, and spoils if uneaten after 24 hours. The water is clean and doesn't go bad.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.BV0mpbHh29IbbIj5"}},"img":"icons/magic/nature/leaf-glow-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234092,"modifiedTime":1661791116659,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"uUWb1wZgtMou0TVP","name":"Cure Wounds","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch regains a number of hit points equal to 1d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.uUWb1wZgtMou0TVP"}},"img":"icons/magic/life/heart-cross-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234236,"modifiedTime":1661791116660,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"F0GsG0SJzsIOacwV","name":"Lesser Restoration","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature and can end either one disease or one condition afflicting it. The condition can be blinded, deafened, paralyzed, or poisoned.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.F0GsG0SJzsIOacwV"}},"img":"icons/magic/life/heart-cross-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234103,"modifiedTime":1661791116660,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"gvdA9nPuWLck4tBl","name":"Sanctuary","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You ward a creature within range against attack. Until the spell ends, any creature who targets the warded creature with an attack or a harmful spell must first make a Wisdom saving throw. On a failed save, the creature must choose a new target or lose the attack or spell. This spell doesn't protect the warded creature from area effects, such as the explosion of a Fireball.If the warded creature makes an attack or casts a spell that affects an enemy creature, this spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small silver mirror","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gvdA9nPuWLck4tBl"}},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234193,"modifiedTime":1661791116660,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"z1mx84ONwkXKUZd7","name":"Shield","type":"spell","img":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","system":{"description":{"value":"An invisible barrier of magical force appears and protects you. Until the start of your next turn, you have a +5 bonus to AC, including against the triggering attack, and you take no damage from magic missile.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":"Which you take when you are hit by an attack or targeted by the magic missile spell"},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"6pbotGIvqQkraPva","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"5","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"rounds":1,"seconds":null,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","label":"Shield","origin":"Item.FlLKKv7bQBlIAs11","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.z1mx84ONwkXKUZd7"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234244,"modifiedTime":1661791116660,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"kSPRpeIx3w3nihrF","name":"Dream","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell shapes a creature's dreams. Choose a creature known to you as the target of this spell. The target must be on the same plane of existence as you. Creatures that don't sleep, such as elves, can't be contacted by this spell. You, or a willing creature you touch, enters a trance state, acting as a messenger. While in the trance, the messenger is aware of his or her surroundings, but can't take Actions or move.If the target is asleep, the messenger appears in the target's dreams and can converse with the target as long as it remains asleep, through the Duration of the spell. The messenger can also shape The Environment of the dream, creating landscapes, Objects, and other images. The messenger can emerge from the trance at any time, ending the effect of the spell early. The target recalls the dream perfectly upon waking. If the target is awake when you cast the spell, the messenger knows it, and can either end the trance (and the spell) or wait for the target to fall asleep, at which point the messenger appears in the target's dreams.You can make the messenger appear monstrous and terrifying to the target. If you do, the messenger can deliver a message of no more than ten words and then the target must make a Wisdom saving throw. On a failed save, echoes of the phantasmal monstrosity spawn a nightmare that lasts the Duration of the target's sleep and prevents the target from gaining any benefit from that rest. In addition, when the target wakes up, it takes 3d6 psychic damage.If you have a body part, lock of hair, clipping from a nail, or similar portion of the target's body, the target makes its saving throw with disadvantage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","psychic"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"spell"},"level":5,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A handful of sand, a dab of ink, and a writing quill plucked from a sleeping bird","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.kSPRpeIx3w3nihrF"}},"img":"icons/magic/air/fog-gas-smoke-swirling-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234214,"modifiedTime":1661791116661,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WzvJ7G3cqvIubsLk","name":"Greater Restoration","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You imbue a creature you touch with positive energy to undo a debilitating effect. You can reduce the target's Exhaustion level by one, or end one of the following Effects on the target:\n\nOne effect that Charmed or Petrified the target\nOne curse, including the target's Attunement to a cursed magic item\nAny reduction to one of the target's Ability Scores\nOne effect reducing the target's hit point maximum\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"diamond dust worth at least 100gp, which the spell consumes","consumed":true,"cost":100,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.WzvJ7G3cqvIubsLk"}},"img":"icons/magic/life/heart-cross-strong-flame-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234154,"modifiedTime":1661791116661,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"fVbCxFRaORalHB20","name":"Scrying","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You can see and hear a particular creature you choose that is on the same plane of existence as you. The target must make a Wisdom saving throw, which is modified by how well you know the target and the sort of physical connection you have to it. If a target knows you're casting this spell, it can fail the saving throw voluntarily if it wants to be observed.\n\n\n\nKnowledge\nSave Modifier\n\n\nSecondhand (you have heard of the target)\n+5\n\n\nFirsthand (you have met the target)\n+0\n\n\nFamiliar (you know the target well)\n-5\n\n\n\n\n\n\n\nConnection\nSave Modifier\n\n\nLikeness or picture\n-2\n\n\nPossession or garment\n-4\n\n\nBody part, lock of hair, bit of nail, or the like\n-10\n\n\n\nOn a successful save, the target isn't affected, and you can't use this spell against it again for 24 hours.On a failed save, the spell creates an Invisible sensor within 10 feet of the target. You can see and hear through the sensor as if you were there. The sensor moves with the target, remaining within 10 feet of it for the Duration. A creature that can see Invisile Objects sees the sensor as a luminous orb about the size of your fist.Instead of targeting a creature, you can choose a location you have seen before as the target of this spell. When you do, the sensor appears at that location and doesn't move.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A focus worth at least 1,000 gp, such as a crystal ball, a silver mirror, or a font filled with holy water.","consumed":false,"cost":1000,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.fVbCxFRaORalHB20"}},"img":"icons/magic/perception/eye-ringed-glow-angry-large-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234189,"modifiedTime":1661791116662,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MAxM77CDUu8dgIRQ","name":"Protection from Poison","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature. If it is poisoned, you neutralize the poison. If more than one poison afflicts the target, you neutralize one poison that you know is present, or you neutralize one at random.For the duration, the target has advantage on saving throws against being poisoned, and it has resistance to poison damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.MAxM77CDUu8dgIRQ"}},"img":"icons/magic/defensive/shield-barrier-glowing-triangle-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234123,"modifiedTime":1661791116662,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"8rP3gwmXVTgZqYZE","flags":{},"changes":[{"key":"system.bonuses.abilities.save","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.mwak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.msak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rsak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rwak.attack","mode":2,"value":"+1d4","priority":null}],"disabled":true,"duration":{"startTime":678,"seconds":60,"rounds":10,"combat":null,"turns":null,"startRound":2,"startTurn":1},"icon":"icons/magic/control/buff-flight-wings-blue.webp","label":"Bless","origin":"Compendium.dnd5e.monsters.ZaP1H91t4FzbRqR5.Item.8dzaICjGy6mTUaUr","tint":null,"transfer":false,"sort":0},{"_id":"6pbotGIvqQkraPva","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"5","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":678,"rounds":1,"seconds":null,"combat":null,"turns":null,"startRound":2,"startTurn":1},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","label":"Shield","origin":"Compendium.dnd5e.monsters.ZaP1H91t4FzbRqR5.Item.z1mx84ONwkXKUZd7","tint":null,"transfer":false,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232895,"modifiedTime":1672596101693,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZyIBOoZZD0nDaO2s","name":"Adult Red Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":27,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":25,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":256,"min":0,"max":256,"temp":0,"tempmax":0,"formula":"19d12 + 133"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":40,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":17,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Adult Red Dragon","displayName":0,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"MN60UTO1pjltasYN","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nF4ZHYj37UstHCUT","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ftqEpCKoioTST72K","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours .Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":16,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tD8Vmsb4B5eqTOJA","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 63 (18d6) fire damage on a failed save, or half as much damage on a successful one.The dragon exhales fire in a 60-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["18d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":21,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"060hAjIEDdMDfVoE","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 7 (2d6) fire damage.The Adult Red Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pzDFBmC7wfQsMJzw","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.The Adult Red Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DF0doZR8pYSjsrme","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.The Adult Red Dragon attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LESSs8CLEr1DEuLM","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1PppVLNAsjADU0Za","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ut9yaZWaSkU7bT1h","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nThe dragon makes a tail attack.\n\nThe dragon slams its long tail against its foe!","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Q5JDbGOejqXyeaCj","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"\nThe dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 22 Dexterity saving throw or take 15 (2d6+8) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.\n\nThe dragon beats its wings!","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":22,"scaling":"str"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yCGYa27YqTLhQK0I","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NQk4f6iqTeJaFaT0","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232898,"modifiedTime":1672596101801,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"aAqfEHPiVbhMwZ6j","name":"Giant Hyena","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":45,"min":0,"max":45,"temp":0,"tempmax":0,"formula":"6d10 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Hyena","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"QY2OI39oNi9VUuAY","name":"Rampage","type":"feat","img":"icons/skills/melee/strike-axe-blood-red.webp","system":{"description":{"value":"When the hyena reduces a creature to 0 hit points with a melee attack on its turn, the hyena can take a bonus action to move up to half its speed and make a bite attack.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.BnuDkgCOeGvAoYhy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"X9XQ405Nx5lHP20E","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\nThe Giant Hyena attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232901,"modifiedTime":1672596101847,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"aKt7vFAS1J0x3FQm","name":"Ettercap","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":44,"min":0,"max":44,"temp":0,"tempmax":0,"formula":"8d8 + 8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ettercap","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.3,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"vTDqx7A0xzxkZCqc","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The ettercap can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"u8VMOaHAAGlnnYyt","name":"Web Sense","type":"feat","img":"icons/magic/control/debuff-chains-ropes-net-white.webp","system":{"description":{"value":"While in contact with a web, the ettercap knows the exact location of any other creature in contact with the same web.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kjF0btAMYHUAQgOt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6dw8RLKtxKrHd41q","name":"Web Walker","type":"feat","img":"icons/magic/nature/tree-bare-glow-yellow.webp","system":{"description":{"value":"The ettercap ignores movement restrictions caused by webbing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zITrVwmnPpLoBZI1"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6eqd5bKL0SgwqRnm","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The ettercap makes two attacks: one with its bite and one with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qpUx52QbFUCSPSln","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage plus 4 (1d8) poison damage. The target must succeed on a DC 11 Constitution saving throw or be poisoned for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.The Ettercap attacks with its Bite. The target must make a Constitution saving throw. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","piercing"],["1d8","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"T8XMTiCIOQP4dYEp","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage.The Ettercap attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Sv5UJkCfY00yfFOE","name":"Web","type":"feat","img":"icons/creatures/webs/web-spider-glowing-purple.webp","system":{"description":{"value":"Ranged Weapon Attack: +4 to hit, range 30/60 ft., one Large or smaller creature. Hit: The creature is restrained by webbing. As an action, the restrained creature can make a DC 11 Strength check, escaping from the webbing on a success. The effect ends if the webbing is destroyed. The webbing has AC 10, 5 hit points, is vulnerable to fire damage and immune to bludgeoning damage.The creature is restrained by webbing. As an action, the restrained creature can make a Strength check, escaping from the webbing on a success. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.i8WDjw4J1gJWQmqG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232903,"modifiedTime":1672596101890,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"aTITHYYxthuZBPBn","name":"Ancient White Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":26,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":26,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":20,"calc":"natural","formula":""},"hp":{"value":333,"min":0,"max":333,"temp":0,"tempmax":0,"formula":"18d20+144"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":30,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Arctic","cr":20,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"grg","di":{"value":["cold"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Ancient White Dragon","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"NB88hf8oRtLwBolX","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) cold damage.The Ancient White Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["2d8","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Cz5xqvQ50f5zxuNY","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.The Ancient White Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VtIk8lLDM4Qj3uOl","name":"Cold Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 72 (l6d8) cold damage on a failed save, or half as much damage on a successful one.The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["16d8","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":22,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iHOaiOqwUWIfCljJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2LAZaoPDRIvnHwtf","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sYtyFXYWqxWT1uUI","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours .Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"cone"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":16,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fgHGU46JtSboc23B","name":"Ice Walk","type":"feat","img":"icons/magic/water/water-iceberg-bubbles.webp","system":{"description":{"value":"The dragon can move across and climb icy surfaces without needing to make an ability check. Additionally, difficult terrain composed of ice or snow doesn't cost it extra movement.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.YKC7pwYkJSKn1vuw"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hixTmzxSmaFgXDMy","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rtz0KAuj9DeBKT8A","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"b8vjJzQ5ha5CqneP","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UGfL5qnzzi2y2pNj","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Q3Nd59qtQ5rsGs6c","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.The Ancient White Dragon attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zu4q8DV9mStLmBeN","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DQGSNN2zFqmnBy9R","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 22 Dexterity saving throw or take 15 ([[/r 2d6+8]]) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":22,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"aHpjkoAnU66iriJW","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232905,"modifiedTime":1672596101991,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"azCbLQt5LAYwTI7U","name":"Brass Dragon Wyrmling","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":16,"calc":"natural","formula":""},"hp":{"value":16,"min":0,"max":16,"temp":0,"tempmax":0,"formula":"3d8 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":15,"climb":0,"fly":60,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Brass Dragon Wyrmling","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"K4qz0HVrX4JxcUvf","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.The Brass Dragon Wyrmling attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JmVLjWM4G6OOQxl4","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Fire Breath.** The dragon exhales fire in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 14 (4d6) fire damage on a failed save, or half as much damage on a successful one.\n**Sleep Breath.** The dragon exhales sleep gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw or fall unconscious for 1 minute. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Z7rjC1RhE8VwXz4Z","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\n**Fire Breath.** The dragon exhales fire in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 14 (4d6) fire damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales fire in an 20-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"z0g5kgBSkb9qHd6S","name":"Sleep Breath","type":"feat","img":"icons/magic/perception/third-eye-blue-red.webp","system":{"description":{"value":"\n**Sleep Breath.** The dragon exhales sleep gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw or fall unconscious for 1 minute. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n\nThe dragon exhales sleep gas in a 15-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.43BnuqkQgg5l1Nfh"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232907,"modifiedTime":1672596102040,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"banHjKDMCegbUwYE","name":"Air Elemental","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":90,"min":0,"max":90,"temp":null,"tempmax":0,"formula":"12d10 + 24"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":90,"swim":0,"walk":0,"units":"ft","hover":true},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","lightning","piercing","slashing","thunder"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["grappled","paralyzed","petrified","poisoned","prone","restrained","unconscious","exhaustion"],"custom":""},"languages":{"value":["auran"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Air Elemental","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"8FHVwYBJY7dxIv9D","name":"Air Form","type":"feat","img":"icons/magic/control/debuff-energy-hold-levitate-yellow.webp","system":{"description":{"value":"The elemental can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.TyDSfYTJeKv7c8lB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"IyR3c30mCbL8VMCo","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The elemental makes two slam attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qzLZFBO75loU77TZ","name":"Slam","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.\nThe Air Elemental attacks with its Slam.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PVdWTEQBuiAglD7l","name":"Whirlwind","type":"feat","img":"icons/magic/air/wind-tornado-cyclone-white.webp","system":{"description":{"value":"\nEach creature in the elemental's space must make a DC 13 Strength saving throw. On a failure, a target takes 15 (3d8 + 2) bludgeoning damage and is flung up 20 feet away from the elemental in a random direction and knocked prone.\nIf a thrown target strikes an object, such as a wall or floor, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 13 Dexterity saving throw or take the same damage and be knocked prone. If the saving throw is successful, the target takes half the bludgeoning damage and isn't flung away or knocked prone.\n\nEach creature in the elemental's space must make a Strength saving throw. On a failure, a target is flung up 20 feet away from the elemental in a random direction and knocked prone. If the target is thrown at another creature, that creature must make a Dexterity saving throw or take the same damage and be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":4,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.ocmSrMY2NX3e43uN"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232909,"modifiedTime":1672596102082,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"bcapsJdIhY5WktpT","name":"Young Black Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":127,"min":0,"max":127,"temp":0,"tempmax":0,"formula":"15d10 + 45"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Swamp","cr":7,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["acid"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Young Black Dragon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"963t1Gp9Nsy3UY9D","name":"Acid Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"The dragon exhales acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 49 (11d8) acid damage on a failed save, or half as much damage on a successful one.Each creature in that line must make a DC 14 Dexterity saving throw, taking 49 (11d8) acid damage on a failed save, or half as much damage on a successful one.The dragon exhales acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["11d8","acid"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zjcGly9P3Gn9MXt7"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KRrrjifJpxjJ0zKy","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kuTDtAq2QL2Tmr4h","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) acid damage.The Young Black Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["1d8","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gy0FMKec2tea9YI1","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.The Young Black Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ApR7vtoU4ec7UulE","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232910,"modifiedTime":1672596102136,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"bfh29vIEoGzI240e","name":"Lich","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":135,"min":0,"max":135,"temp":null,"tempmax":0,"formula":"18d8 + 54"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":"int"},"details":{"biography":{"value":"","public":""},"alignment":"Any Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"","cr":21,"spellLevel":18,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["bludgeoning","piercing","poison","slashing"],"bypasses":["mgc"],"custom":""},"dr":{"value":["cold","lightning","necrotic"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","exhaustion","frightened","paralyzed","poisoned"],"custom":""},"languages":{"value":["common","custom"],"custom":"5 other languages"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":2,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":4,"override":null},"spell2":{"value":3,"override":null},"spell3":{"value":3,"override":null},"spell4":{"value":3,"override":null},"spell5":{"value":3,"override":null},"spell6":{"value":1,"override":null},"spell7":{"value":1,"override":null},"spell8":{"value":1,"override":null},"spell9":{"value":1,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Lich","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.3,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"6PwbK4d0W11LsEkf","name":"Cantrip","type":"feat","img":"icons/magic/unholy/strike-hand-glow-pink.webp","system":{"description":{"value":"The lich casts a cantrip.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dJLqLsCek3uxbzuX","name":"Paralyzing Touch","type":"feat","img":"icons/magic/water/water-hand.webp","system":{"description":{"value":"The lich uses its Paralyzing Touch.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.ebcmg4M5LsUYCqee"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Uox2GEp5GMXOOXOc","name":"Frightening Gaze","type":"feat","img":"icons/magic/perception/silhouette-stealth-shadow.webp","system":{"description":{"value":"\nThe lich fixes its gaze on one creature it can see within 10 feet of it. The target must succeed on a DC 18 Wisdom saving throw against this magic or become grappled for 1 minute. The grappled target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to the lich's gaze for the next 24 hours.\n\nThe lich fixes its gaze on one creature it can see within 10 feet of it. The target must make a Wisdom saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.cpnrDGQrqgPlSmwR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sXU9KTYnmgi08EQw","name":"Disrupt Life","type":"feat","img":"icons/magic/death/projectile-skull-fire-purple.webp","system":{"description":{"value":"\nEach non-undead creature within 20 feet of the lich must make a DC 18 Constitution saving throw against this magic, taking 21 (6d6) necrotic damage on a failed save, or half as much damage on a successful one.\n\nEach non-undead creature within 20 feet of the lich must make a Constitution saving throw against this magic.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":3,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":3},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EguIm3u5kkopYwEM"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YfFIobyElKqcizgt","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the lich fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"stk9i3rPK7z99CDf","name":"Rejuvenation","type":"feat","img":"icons/magic/control/debuff-energy-hold-levitate-green.webp","system":{"description":{"value":"If it has a phylactery, a destroyed lich gains a new body in 1d10 days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the phylactery.A destroyed lich gains a new body in 1d10 days, regaining all its hit points and becoming active again.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d10","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JcfHlAcfwSWnt7Ud"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UMoMhboTLq75ZJW8","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"\nThe lich is an 18th-level spellcaster. Its spellcasting ability is Intelligence (spell save DC 20, +12 to hit with spell attacks). The lich has the following wizard spells prepared:\nCantrips (at will): mage hand, prestidigitation, ray of frost\n1st level (4 slots): detect magic, magic missile, shield, thunderwave\n2nd level (3 slots): detect thoughts, invisibility, acid arrow, mirror image\n3rd level (3 slots): animate dead, counterspell, dispel magic, fireball\n4th level (3 slots): blight, dimension door\n5th level (3 slots): cloudkill, scrying\n6th level (1 slot): disintegrate, globe of invulnerability\n7th level (1 slot): finger of death, plane shift\n8th level (1 slot): dominate monster, power word stun\n9th level (1 slot): power word kill\n\nThe lich is an spellcaster. Its spellcasting ability is Intelligence.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KDSrdpdFPDKnh80y","name":"Paralyzing Touch","type":"weapon","img":"icons/magic/water/water-hand.webp","system":{"description":{"value":"Melee Spell Attack:+12 to hit,, 5 ft., one creature. Hit: 10 (3d6) cold damage. The target must succeed on a DC 18 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.The Lich attacks with its Paralyzing Touch. The target must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"int","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.ebcmg4M5LsUYCqee"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Rry67emsoMMjvQQz","name":"Turn Resistance","type":"feat","img":"icons/magic/fire/flame-burning-creature-skeleton.webp","system":{"description":{"value":"The lich has advantage on saving throws against any effect that turns undead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.r9aMLZ7F3gSRLgRr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GvT7gczoJ6QCocrA","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe lich can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The lich regains spent legendary actions at the start of its turn.\n\nThe lich can take 3 legendary actions.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TB52r9CGyQ5lewor","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XbzBKNTXHSUjzWtt","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Utk1OQRwYkMkFRD3","name":"Mage Hand","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.The hand can't attack, activate magic items, or carry more than 10 pounds.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Utk1OQRwYkMkFRD3"}},"img":"icons/magic/water/water-hand.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234148,"modifiedTime":1661791116704,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"udsLtG0BugXHR2JQ","name":"Prestidigitation","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell is a minor magical trick that novice spellcasters use for practice. You create one of the following magical effects within range:\n\nYou create an instantaneous, harmless sensory effect, such as a shower of sparks, a puff of wind, faint musical notes, or an odd odor.\nYou instantaneously light or snuff out a candle, a torch, or a small campfire.\nYou instantaneously clean or soil an object no larger than 1 cubic foot.\nYou chill, warm, or flavor up to 1 cubic foot of nonliving material for 1 hour.\nYou make a color, a small mark, or a symbol appear on an object or a surface for 1 hour.\nYou create a nonmagical trinket or an illusory image that can fit in your hand and that lasts until the end of your next turn.\n\nIf you cast this spell multiple times, you can have up to three of its non-instantaneous effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.udsLtG0BugXHR2JQ"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234236,"modifiedTime":1661791116705,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ctW81uiX56xZR2c5","name":"Ray of Frost","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A frigid beam of blue-white light streaks toward a creature within range. Make a ranged spell attack against the target. On a hit, it takes 1d8 cold damage, and its speed is reduced by 10 feet until the start of your next turn.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ctW81uiX56xZR2c5"}},"img":"icons/magic/light/beam-rays-blue-small.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234176,"modifiedTime":1661791116705,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116705,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"41JIhpDyM9Anm7cs","name":"Magic Missile","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create three glowing darts of magical force. Each dart hits a creature of your choice that you can see within range. A dart deals 1d4 + 1 force damage to its target. The darts all strike simultaneously, and you can direct them to hit one creature or several.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the spell creates one more dart for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + 1","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.41JIhpDyM9Anm7cs"}},"img":"icons/magic/fire/projectile-meteor-salvo-light-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234065,"modifiedTime":1661791116706,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"z1mx84ONwkXKUZd7","name":"Shield","type":"spell","img":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","system":{"description":{"value":"An invisible barrier of magical force appears and protects you. Until the start of your next turn, you have a +5 bonus to AC, including against the triggering attack, and you take no damage from magic missile.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":"Which you take when you are hit by an attack or targeted by the magic missile spell"},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"6pbotGIvqQkraPva","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"5","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"rounds":1,"seconds":null,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","label":"Shield","origin":"Item.FlLKKv7bQBlIAs11","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.z1mx84ONwkXKUZd7"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234244,"modifiedTime":1661791116706,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WTbOQBsarsL1LuXJ","name":"Thunderwave","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A wave of thunderous force sweeps out from you. Each creature in a 15-foot cube originating from you must make a Constitution saving throw. On a failed save, a creature takes 2d8 thunder damage and is pushed 10 feet away from you. On a successful save, the creature takes half as much damage and isn't pushed.In addition, unsecured objects that are completely within the area of effect are automatically pushed 10 feet away from you by the spell's effect, and the spell emits a thunderous boom audible out to 300 feet.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cube"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","thunder"]],"versatile":""},"formula":"","save":{"ability":"con","dc":20,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.WTbOQBsarsL1LuXJ"}},"img":"icons/magic/lightning/bolt-forked-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234152,"modifiedTime":1661791116706,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"4H6YgYdKgnX6ZQ8M","name":"Acid Arrow","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A shimmering green arrow streaks toward a target within range and bursts in a spray of acid. Make a ranged spell Attack against the target. On a hit, the target takes 4d4 acid damage immediately and 2d4 acid damage at the end of its next turn. On a miss, the arrow splashes the target with acid for half as much of the initial damage and no damage at the end of its next turn.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage (both initial and later) increases by 1d4 for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d4","acid"]],"versatile":"2d4"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"powdered rhubarb leaf and an adder's stomach","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d4"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.4H6YgYdKgnX6ZQ8M"}},"img":"icons/magic/acid/projectile-bolts-salvo-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234066,"modifiedTime":1661791116706,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ppWAAEul0QHtm4er","name":"Detect Thoughts","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you can read the thoughts of certain creatures. When you cast the spell and as your action on each turn until the spell ends, you can focus your mind on any one creature that you can see within 30 feet of you. If the creature you choose has an Intelligence of 3 or lower or doesn't speak any language, the creature is unaffected.You initially learn the surface thoughts of the creature—what is most on its mind in that moment. As an action, you can either shift your attention to another creature's thoughts or attempt to probe deeper into the same creature's mind. If you probe deeper, the target must make a Wisdom saving throw. If it fails, you gain insight into its reasoning (if any), its emotional state, and something that looms large in its mind (such as something it worries over, loves, or hates). If it succeeds, the spell ends. Either way, the target knows that you are probing into its mind, and unless you shift your attention to another creature's thoughts, the creature can use its action on its turn to make an Intelligence check contested by your Intelligence check; if it succeeds, the spell ends.Questions verbally directed at the target creature naturally shape the course of its thoughts, so this spell is particularly effective as part of an interrogation.You can also use this spell to detect the presence of thinking creatures you can't see. When you cast the spell or as your action during the duration, you can search for thoughts within 30 feet of you. The spell can penetrate barriers, but 2 feet of rock, 2 inches of any metal other than lead, or a thin sheet of lead blocks you. You can't detect a creature with an Intelligence of 3 or lower or one that doesn't speak any language.Once you detect the presence of a creature in this way, you can read its thoughts for the rest of the duration as described above, even if you can't see it, but it must still be within range.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":20,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A copper piece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ppWAAEul0QHtm4er"}},"img":"icons/magic/light/explosion-star-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234229,"modifiedTime":1661791116707,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"1N8dDMMgZ1h1YJ3B","name":"Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An eyelash encased in gum arabic","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.1N8dDMMgZ1h1YJ3B"}},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234056,"modifiedTime":1661791116707,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"X4c8xCkmF8U9HUMz","name":"Mirror Image","type":"spell","img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","system":{"description":{"value":"Three illusory duplicates of yourself appear in your space. Until the spell ends, the duplicates move with you and mimic your actions, shifting position so it's impossible to track which image is real. You can use your action to dismiss the illusory duplicates.\nEach time a creature targets you with an attack during the spell's duration, roll a [[/r 1d20 # Mirror Image Check]] to determine whether the attack instead targets one of your duplicates.\nIf you have three duplicates, you must roll a 6 or higher to change the attack's target to a duplicate. With two duplicates, you must roll an 8 or higher. With one duplicate, you must roll an 11 or higher.\nA duplicate's AC equals 10 + your Dexterity modifier. If an attack hits a duplicate, the duplicate is destroyed. A duplicate can be destroyed only by an attack that hits it. It ignores all other damage and effects. The spell ends when all three duplicates are destroyed.\nA creature is unaffected by this spell if it can't see, if it relies on senses other than sight, such as blindsight, or if it can perceive illusions as false, as with truesight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d20","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.X4c8xCkmF8U9HUMz"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234155,"modifiedTime":1661791116707,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"oyE5nVppa5mde5gT","name":"Animate Dead","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell creates an undead servant. Choose a pile of bones or a corpse of a Medium or Small humanoid within range. Your spell imbues the target with a foul mimicry of life, raising it as an undead creature. The target becomes a skeleton if you chose bones or a zombie if you chose a corpse (the DM has the creature's game statistics).On each of your turns, you can use a bonus action to mentally command any creature you made with this spell if the creature is within 60 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete.The creature is under your control for 24 hours, after which it stops obeying any command you've given it. To maintain control of the creature for another 24 hours, you must cast this spell on the creature again before the current 24-hour period ends. This use of the spell reasserts your control over up to four creatures you have animated with this spell, rather than animating a new one.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you animate or reassert control over two additional undead creatures for each slot level above 3rd. Each of the creatures must come from a different corpse or pile of bones.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A drop of blood, a piece of flesh, and a pinch of bone dust","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.oyE5nVppa5mde5gT"}},"img":"icons/magic/control/fear-fright-monster-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234225,"modifiedTime":1661791116708,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Ek45cBpVXvJdv1Qy","name":"Counterspell","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to interrupt a creature in the process of casting a spell. If the creature is casting a spell of 3rd level or lower, its spell fails and has no effect. If it is casting a spell of 4th level or higher, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a success, the creature's spell fails and has no effect.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the interrupted spell has no effect if its level is less than or equal to the level of the spell slot you used.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":"which you take when you see a creature within 60 feet of you casting a spell"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d20 + @mod","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":false,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Ek45cBpVXvJdv1Qy"}},"img":"icons/skills/melee/strike-blade-hooked-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234102,"modifiedTime":1661791116708,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"15Fa6q1nH27XfbR8","name":"Dispel Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose one creature, object, or magical effect within range. Any spell of 3rd level or lower on the target ends. For each spell of 4th level or higher on the target, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a successful check, the spell ends.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you automatically end the effects of a spell on the target if the spell's level is equal to or less than the level of the spell slot you used.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.15Fa6q1nH27XfbR8"}},"img":"icons/skills/melee/strike-blade-knife-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234054,"modifiedTime":1661791116708,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ztgcdrWPshKRpFd0","name":"Fireball","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A bright streak flashes from your pointing finger to a point you choose within range and then blossoms with a low roar into an explosion of flame. Each creature in a 20-foot-radius sphere centered on that point must make a Dexterity saving throw. A target takes 8d6 fire damage on a failed save, or half as much damage on a successful one.The fire spreads around corners. It ignites flammable objects in the area that aren't being worn or carried.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":20,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A tiny ball of bat guano and sulfur","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ztgcdrWPshKRpFd0"}},"img":"icons/magic/fire/projectile-fireball-smoke-large-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234246,"modifiedTime":1661791116709,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pybg5MNc3lkerH4Y","name":"Blight","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Necromantic energy washes over a creature of your choice that you can see within range, draining moisture and vitality from it. The target must make a Constitution saving throw. The target takes 8d8 necrotic damage on a failed save, or half as much damage on a successful one. This spell has no effect on undead or constructs.If you target a plant creature or a magical plant, it makes the saving throw with disadvantage, and the spell deals maximum damage to it.If you target a nonmagical plant that isn't a creature, such as a tree or shrub, it doesn't make a saving throw, it simply withers and dies.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d8","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":20,"scaling":"spell"},"level":4,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.pybg5MNc3lkerH4Y"}},"img":"icons/magic/unholy/strike-beam-blood-large-red-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234230,"modifiedTime":1661791116710,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"A4RsPuSvB9wFtz1j","name":"Dimension Door","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You teleport yourself from your current location to any other spot within range. You arrive at exactly the spot desired. It can be a place you can see, one you can visualize, or one you can describe by stating distance and direction, such as \"200 feet straight downward\" or \"upward to the northwest at a 45-degree angle, 300 feet.\"You can bring along objects as long as their weight doesn't exceed what you can carry. You can also bring one willing creature of your size or smaller who is carrying gear up to its carrying capacity. The creature must be within 5 feet of you when you cast this spell.If you would arrive in a place already occupied by an object or a creature, you and any creature traveling with you each take 4d6 force damage, and the spell fails to teleport you.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":500,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.A4RsPuSvB9wFtz1j"}},"img":"icons/magic/air/air-burst-spiral-large-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234087,"modifiedTime":1661791116712,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"LkvI11Uue774QBKZ","name":"Cloudkill","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a 20-foot-radius sphere of poisonous, yellow-green fog centered on a point you choose within range. The fog spreads around corners. It lasts for the duration or until strong wind disperses the fog, ending the spell. Its area is heavily obscured.When a creature enters the spell's area for the first time on a turn or starts its turn there, that creature must make a Constitution saving throw. The creature takes 5d8 poison damage on a failed save, or half as much damage on a successful one. Creatures are affected even if they hold their breath or don't need to breathe.The fog moves 10 feet away from you at the start of each of your turns, rolling along the surface of the ground. The vapors, being heavier than air, sink to the lowest level of the land, even pouring down openings.Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":20,"scaling":"spell"},"level":5,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.LkvI11Uue774QBKZ"}},"img":"icons/magic/air/fog-gas-smoke-swirling-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234121,"modifiedTime":1661791116713,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"fVbCxFRaORalHB20","name":"Scrying","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You can see and hear a particular creature you choose that is on the same plane of existence as you. The target must make a Wisdom saving throw, which is modified by how well you know the target and the sort of physical connection you have to it. If a target knows you're casting this spell, it can fail the saving throw voluntarily if it wants to be observed.\n\n\n\nKnowledge\nSave Modifier\n\n\nSecondhand (you have heard of the target)\n+5\n\n\nFirsthand (you have met the target)\n+0\n\n\nFamiliar (you know the target well)\n-5\n\n\n\n\n\n\n\nConnection\nSave Modifier\n\n\nLikeness or picture\n-2\n\n\nPossession or garment\n-4\n\n\nBody part, lock of hair, bit of nail, or the like\n-10\n\n\n\nOn a successful save, the target isn't affected, and you can't use this spell against it again for 24 hours.On a failed save, the spell creates an Invisible sensor within 10 feet of the target. You can see and hear through the sensor as if you were there. The sensor moves with the target, remaining within 10 feet of it for the Duration. A creature that can see Invisile Objects sees the sensor as a luminous orb about the size of your fist.Instead of targeting a creature, you can choose a location you have seen before as the target of this spell. When you do, the sensor appears at that location and doesn't move.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":20,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A focus worth at least 1,000 gp, such as a crystal ball, a silver mirror, or a font filled with holy water.","consumed":false,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.fVbCxFRaORalHB20"}},"img":"icons/magic/perception/eye-ringed-glow-angry-large-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234189,"modifiedTime":1661791116714,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"HBHbOGKNVVprSlwn","name":"Disintegrate","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A thin green ray springs from your pointing finger to a target that you can see within range. The target can be a creature, an object, or a creation of magical force, such as the wall created by wall of force.A creature targeted by this spell must make a Dexterity saving throw. On a failed save, the target takes 10d6 + 40 force damage. The target is disintegrated if this damage leaves it with 0 hit points.A disintegrated creature and everything it is wearing and carrying, except magic items, are reduced to a pile of fine gray dust. The creature can be restored to life only by means of a true resurrection or a wish spell.This spell automatically disintegrates a Large or smaller nonmagical object or a creation of magical force. If the target is a Huge or larger object or creation of force, this spell disintegrates a 10-foot-cube portion of it. A magic item is unaffected by this spell.At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the damage increases by 3d6 for each slot level above 6th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d6 + 40","force"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":20,"scaling":"spell"},"level":6,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A lodestone and a pinch of dust","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"3d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.HBHbOGKNVVprSlwn"}},"img":"icons/magic/unholy/strike-beam-blood-large-red-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234106,"modifiedTime":1661791116714,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"HPvZm8YJO91k6Qdg","name":"Finger of Death","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You send negative energy coursing through a creature that you can see within range, causing it searing pain. The target must make a Constitution saving throw. It takes 7d8 + 30 necrotic damage on a failed save, or half as much damage on a successful one.A humanoid killed by this spell rises at the start of your next turn as a Zombie that is permanently under your command, following your verbal orders to the best of its ability.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["7d8 + 30","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":20,"scaling":"spell"},"level":7,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.HPvZm8YJO91k6Qdg"}},"img":"icons/magic/unholy/strike-beam-blood-large-red-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234107,"modifiedTime":1661791116714,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"J6Jpw5XzB5aTeqnz","name":"Plane Shift","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You and up to eight willing creatures who link hands in a circle are transported to a different plane of existence. You can specify a target destination in general terms, such as the City of Brass on the Elemental Plane of Fire or the palace of Dispater on the second level of the Nine Hells, and you appear in or near that destination. If you are trying to reach the City of Brass, for example, you might arrive in its Street of Steel, before its Gate of Ashes, or looking at the city from across the Sea of Fire, at the DM's discretion.Alternatively, if you know the sigil sequence of a teleportation circle on another plane of existence, this spell can take you to that circle. If the teleportation circle is too small to hold all the creatures you transported, they appear in the closest unoccupied spaces next to the circle.You can use this spell to banish an unwilling creature to another plane. Choose a creature within your reach and make a melee spell attack against it. On a hit, the creature must make a Charisma saving throw. If the creature fails this save, it is transported to a random location on the plane of existence you specify. A creature so transported must find its own way back to your current plane of existence.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":8,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":20,"scaling":"spell"},"level":7,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A forked, metal rod worth at least 250 gp, attuned to a particular plane of existence","consumed":false,"cost":250,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.J6Jpw5XzB5aTeqnz"}},"img":"icons/magic/symbols/runes-star-pentagon-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234111,"modifiedTime":1661791116715,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"eEpy1ONlXumKS1mp","name":"Dominate Monster","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to beguile a creature that you can see within range. It must succeed on a Wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw.While the creature is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability.You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time, you can also cause the creature to use a reaction, but this requires you to use your own reaction as well.Each time the target takes damage, it makes a new Wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.At Higher Levels. When you cast this spell with a 9th-level spell slot, the duration is concentration, up to 8 hours.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":20,"scaling":"spell"},"level":8,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.eEpy1ONlXumKS1mp"}},"img":"icons/magic/air/air-burst-spiral-large-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234184,"modifiedTime":1661791116715,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"dmvaMLFWFtv0qx0S","name":"Power Word Kill","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You utter a word of power that can compel one creature you can see within range to die instantly. If the creature you choose has 100 hit points or fewer, it dies. Otherwise, the spell has no effect.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":9,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.dmvaMLFWFtv0qx0S"}},"img":"icons/magic/unholy/strike-beam-blood-large-red-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234182,"modifiedTime":1661791116715,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"35j2QIMmIk6aEdxj","name":"Power Word Stun","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You speak a word of power that can overwhelm the mind of one creature you can see within range, leaving it dumbfounded. If the target has 150 Hit Points or fewer, it is Stunned. Otherwise, the spell has no effect.The stunned target must make a Constitution saving throw at the end of each of its turns. On a successful save, this stunning effect ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":20,"scaling":"spell"},"level":8,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.35j2QIMmIk6aEdxj"}},"img":"icons/magic/control/debuff-chains-ropes-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234062,"modifiedTime":1661791116715,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WmQpxfjZwF3MGUby","name":"Globe of Invulnerability","ownership":{"default":0},"type":"spell","system":{"description":{"value":"An immobile, faintly shimmering barrier springs into existence in a 10-foot radius around you and remains for the Duration.Any spell of 5th level or lower cast from outside the barrier can't affect creatures or Objects within it, even if the spell is cast using a higher level spell slot. Such a spell can target creatures and Objects within the barrier, but the spell has no effect on them. Similarly, the area within the barrier is excluded from the areas affected by such Spells.At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the barrier blocks Spells of one level higher for each slot level above 6th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A glass or crystal bead that shatters when the spell ends","consumed":true,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.WmQpxfjZwF3MGUby"}},"img":"icons/magic/defensive/shield-barrier-flaming-pentagon-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234154,"modifiedTime":1661791116716,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"6pbotGIvqQkraPva","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"5","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":678,"rounds":1,"seconds":null,"combat":null,"turns":null,"startRound":2,"startTurn":1},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","label":"Shield","origin":"Compendium.dnd5e.monsters.bfh29vIEoGzI240e.Item.z1mx84ONwkXKUZd7","tint":null,"transfer":false,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232912,"modifiedTime":1672596102266,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"bwtkdzavdNHISgp4","name":"Quasit","type":"npc","img":"","system":{"abilities":{"str":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":7,"min":0,"max":7,"temp":null,"tempmax":0,"formula":"3d4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"fiend","subtype":"Demon, Shapechanger","swarm":"","custom":""},"environment":"","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","fire","lightning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["abyssal","common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Quasit","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"MLfZqvhaJjB78YiT","name":"Invisibility","type":"feat","img":"icons/creatures/webs/webthin-blue.webp","system":{"description":{"value":"\nThe quasit magically turns invisible until it attacks or uses Scare, or until its concentration ends (as if concentrating on a spell). Any equipment the quasit wears or carries is invisible with it.\nThe quasit magically turns invisible. Any equipment the quasit wears or carries is invisible with it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.dA5X2eQuOtHywpQF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ae0OI3obJqa4AS7U","name":"Claw (Bite in Beast Form)","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack: +4 to hit, reach 5 ft ., one target. Hit: 5 (1d4 + 3) piercing damage.The target must succeed on a DC 10 Constitution saving throw or take 5 (2d4) poison damage and become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.The Quasit attacks with its Claw. The target must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4+@mod","piercing"]],"versatile":""},"formula":"2d4","save":{"ability":"con","dc":10,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"e8rpvJJVWCN4HU7I","name":"Shapechanger","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The quasit can use its action to polymorph into a beast form that resembles a bat (speed 10 ft. fly 40 ft.), a centipede (40 ft., climb 40 ft.), or a toad (40 ft., swim 40 ft.), or back into its true form . Its statistics are the same in each form, except for the speed changes noted. Any equipment it is wearing or carrying isn't transformed . It reverts to its true form if it dies.The quasit can use its action to polymorph into a beast form or back into its true form. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vlmHYqAZxNGh8xQ6","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The quasit has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1YhP86rTuRIXKFi2","name":"Scare","type":"feat","img":"icons/creatures/unholy/demon-winged-cyclops-drooling.webp","system":{"description":{"value":"One creature of the quasit's choice within 20 ft. of it must succeed on a DC 10 Wisdom saving throw or be frightened for 1 minute. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the quasit is within line of sight, ending the effect on itself on a success.One creature of the quasit's choice within 20 ft. of it must make a Wisdom saving throw. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the quasit is within line of sight, ending the effect on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":10,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.gqrKcFwxHhmwrP2q"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232916,"modifiedTime":1672596102335,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"c9XDGsTJRy9HUaxQ","name":"Giant Sea Horse","type":"npc","img":"","system":{"abilities":{"str":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":16,"min":0,"max":16,"temp":0,"tempmax":0,"formula":"3d10"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":0,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Sea Horse","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"MB7KUNGnxz6mw1J5","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nIf the sea horse moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 7 (2d6) bludgeoning damage.\nIf the target is a creature, it must succeed on a DC 11 Strength saving throw or be knocked prone.\n\nIf the sea horse moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes extra bludgeoning damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yCZ6sgHxxIr0zIxO","name":"Water Breathing","type":"feat","img":"icons/magic/water/bubbles-air-water-blue.webp","system":{"description":{"value":"The sea horse can breathe only underwater.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.c4Q6NDCLJSNcNc9T"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tTZCmbeeSHXXFZGJ","name":"Ram","type":"weapon","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage.\nThe Giant Sea Horse attacks with its Ram.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232917,"modifiedTime":1672596102373,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"cDr1JtzEV26bP5Ym","name":"Hyena","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":5,"min":0,"max":5,"temp":0,"tempmax":0,"formula":"1d8 + 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Hyena","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"RvZitO1X1j16tABV","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The hyena has advantage on an attack roll against a creature if at least one of the hyena's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Hyena","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gqMeY9GtWfBNt1bf","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 3 (1d6) piercing damage.\nThe Hyena attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232919,"modifiedTime":1672596102413,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"cGM3iVYTtCsYXjzO","name":"Adult Blue Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":25,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":23,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":225,"min":0,"max":225,"temp":0,"tempmax":0,"formula":"18d12 + 108"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":30,"climb":0,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":16,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":["lightning"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Adult Blue Dragon","displayName":0,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"sIvGEhLogBsA5OXM","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tz3vYeFf3GLouPGC","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+12 to hit,, 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage plus 5 (1d10) lightning damage.The Adult Blue Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["1d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kYySllKlNPBsT7Ho","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+12 to hit,, 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.The Adult Blue Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wpVgm5eOdM9j3C3N","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zMT1Uj814On8O1Hg","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 ft. of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hTzGBPIQzZPRkUgt","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2yqNNNEOupSnZs0p","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BNmepDhipTFG7kIT","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZrmS45Tc7RieN0qd","name":"Lightning Breath","type":"feat","img":"icons/magic/lightning/bolt-strike-blue.webp","system":{"description":{"value":"The dragon exhales lightning in a 90-foot line that is 5 ft. wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.The dragon exhales lightning in a 90-foot line that is 5 ft. wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d10",""]],"versatile":""},"formula":"","save":{"ability":"dex","dc":19,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LVnd9fq9cQj7rR0Q"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kWquVg3QhBwODyz3","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JRgWoRDlExmKqNVa","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+12 to hit,, 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.The Adult Blue Dragon attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ANMZzr2n2EpU41eg","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\n\nMelee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8+7) bludgeoning damage.\n\n\nThe dragon slams its long tail against its foe!","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GcUNB4m0NAPgP0Nx","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"\nThe dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 20 Dexterity saving throw or take 14 (2d6+7) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.\n\nThe dragon beats its wings!","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232920,"modifiedTime":1672596102531,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"cJGY1ZywUOo6heNR","name":"Giant Badger","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":13,"min":0,"max":13,"temp":0,"tempmax":0,"formula":"2d8 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":10,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":30,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Badger","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"MdbJir3UFvpFs2Zq","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The badger has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1lGtRKKScQMq9K3R","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The badger makes two attacks: one with its bite and one with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NTUVjYVsAjweAj1R","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) piercing damage.\nThe Giant Badger attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BToZtvd0HCyQvoXC","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 6 (2d4 + 1) slashing damage.\nThe Giant Badger attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232923,"modifiedTime":1672596102579,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ciLSItjCpwT7nMmk","name":"Killer Whale","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":90,"min":0,"max":90,"temp":0,"tempmax":0,"formula":"12d12 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":60,"walk":0,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":120,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":3,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Killer Whale","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"1EB34o4iqY7GN1HT","name":"Echolocation","type":"feat","img":"icons/magic/control/hypnosis-mesmerism-eye.webp","system":{"description":{"value":"The whale can't use its blindsight while deafened.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.rUongiWD51ZopRk2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Hwa4dcQdXAi1vk7z","name":"Hold Breath","type":"feat","img":"icons/magic/water/pseudopod-swirl-blue.webp","system":{"description":{"value":"The whale can hold its breath for 30 minutes.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lwC6jwy9bXberyWo"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"z9JmFBY3z1pnVFX9","name":"Keen Hearing","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The whale has advantage on Wisdom (Perception) checks that rely on hearing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2JDxekOVx1NSUwuP","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 21 (5d6 + 4) piercing damage.\nThe Killer Whale attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232932,"modifiedTime":1672596102617,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ckOF3vQrnjFnZIDU","name":"Ancient Gold Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":30,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":29,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":28,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":22,"calc":"natural","formula":""},"hp":{"value":546,"min":0,"max":546,"temp":0,"tempmax":0,"formula":"28d20+252"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":24,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"grg","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Ancient Gold Dragon","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"iwb9D2aGX9fy818q","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xe5ziibjDPuvqO20","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1k9ihUu6sedelfkA","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SG0kdaxjbJFUtdrJ","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GlvW2Ae0hvh1zCOV","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BFbR0db4At8TQY91","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+17 to hit,, 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.The Ancient Gold Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iqduxJQPzhHPTJp2","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+17 to hit,, 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.The Ancient Gold Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5dpAWzBBJmkzgvGY","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+17 to hit,, 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.The Ancient Gold Dragon attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ncKFI8v5vPO7kOFi","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 24 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":24,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"j2nbvKIkKdNI32hU","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Fire Breath.** The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 71 (13d10) fire damage on a failed save, or half as much damage on a successful one.\n**Weakening Breath.** The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zeRGidXXHkyRaA0g","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\n**Fire Breath.** The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 71 (13d10) fire damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales fire in a 90-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["13d10","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":24,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"aOiuiILBGXCAei63","name":"Weakening Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\n**Weakening Breath.** The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon exhales gas in a 90-foot cone. Each creature in that area must make a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":24,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.IHh6n8uZBGqyRfZz"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XRmYEohSc8WQkWYT","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MEN285wvE8ocd3E3","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eIY2gDYaffnDNdh3","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GZdNj6f2SdN1fr4A","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 25 Dexterity saving throw or take 17 ([[/r 2d6+10]]) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":25,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1KAScMfU0fdHhR2g","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232934,"modifiedTime":1672596102711,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"d0prpsGSAorDadec","name":"Owl","type":"npc","img":"","system":{"abilities":{"str":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"1d4 - 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":5,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Owl","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"HZ5UNadatPJxpeKP","name":"Flyby","type":"feat","img":"icons/creatures/mammals/bats-movement-flying-purple.webp","system":{"description":{"value":"The owl doesn't provoke opportunity attacks when it flies out of an enemy's reach.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.7WfeHV27l7DMcuTG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9H6ylAxHKFhsfqno","name":"Keen Hearing and Sight","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The owl has advantage on Wisdom (Perception) checks that rely on hearing or sight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"c3NnWQRHnaBpqtbe","name":"Talons","type":"weapon","img":"icons/creatures/claws/claw-scaled-red.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 1 slashing damage.The Owl attacks with its Talons.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232936,"modifiedTime":1672596102757,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dLQiESMsfsXijD5c","name":"Imp","type":"npc","img":"","system":{"abilities":{"str":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":10,"min":0,"max":10,"temp":null,"tempmax":0,"formula":"3d4 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":40,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"Devil, Shapechanger","swarm":"","custom":""},"environment":"","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["infernal","common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Imp","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"9ioH5ocevSRjYBaD","name":"Shapechanger","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The imp can use its action to polymorph into a beast form that resembles a rat (speed 20 ft.), a raven (20 ft., fly 60 ft.), or a spider (20 ft., climb 20 ft.), or back into its true form. Its statistics are the same in each form, except for the speed changes noted. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OljCWQpwojS4FKur","name":"Devil's Sight","type":"feat","img":"icons/magic/perception/eye-slit-pink.webp","system":{"description":{"value":"Magical darkness doesn't impede the imp's darkvision.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sl0CxgkL7SkRIv7j","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The imp has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"64Swhse7QnbiLAbi","name":"Sting","type":"weapon","img":"icons/creatures/abilities/fang-tooth-venomous.webp","system":{"description":{"value":"\nMelee Weapon Attack: +5 to hit, reach 5 ft ., one target. Hit: 5 (1d4 + 3) piercing damage.\nThe target must make on a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n\nThe Imp attacks with its Sting. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"3d6","save":{"ability":"con","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":false,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mMdtSlNy6FuPju7p","name":"Invisibility","type":"feat","img":"icons/creatures/webs/webthin-blue.webp","system":{"description":{"value":"\nThe imp magically turns invisible until it attacks, or until its concentration ends (as if concentrating on a spell). Any equipment the imp wears or carries is invisible with it.\n\nThe imp magically turns invisible. Any equipment the imp wears or carries is invisible with it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.dA5X2eQuOtHywpQF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RZpYFJGNqA7L1bj1","name":"Bite (beast form only)","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n\nThe Imp attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"3d6","save":{"ability":"con","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232938,"modifiedTime":1672596102797,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dZZFmG8LiBlgWi76","name":"Swarm of Beetles","type":"npc","img":"","system":{"abilities":{"str":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"5d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":5,"climb":20,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"tiny","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","grappled","paralyzed","petrified","prone","restrained","stunned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Swarm of Beetles","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"F2s1LlBQGprxK07S","name":"Swarm","type":"feat","img":"icons/creatures/invertebrates/fly-wasp-mosquito-green.webp","system":{"description":{"value":"The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Bats","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eL3OJmc4FuetizKO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"neEOya9BCR7VSH09","name":"Bites","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 0 ft., one target in the swarm's space. Hit: 10 (4d4) piercing damage, or 5 (2d4) piercing damage if the swarm has half of its hit points or fewer.\nThe Swarm of Beetles attacks with a flurry of Bites.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d4","piercing"]],"versatile":"2d4"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232940,"modifiedTime":1672596102839,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"e5IQxSJO7ySEDdSH","name":"Triceratops","type":"npc","img":"","system":{"abilities":{"str":{"value":22,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":95,"min":0,"max":95,"temp":0,"tempmax":0,"formula":"10d12 + 30"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Triceratops","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"h5lGnMKW65NWIi2W","name":"Gore","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 5 ft., one target. Hit: 24 (4d8 + 6) piercing damage.The Triceratops attacks with its Gore.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6UWSefP0BqnmYwAz","name":"Stomp","type":"weapon","img":"icons/creatures/abilities/cougar-pounce-stalk-black.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 5 ft., one prone creature. Hit: 22 (3d10 + 6) bludgeoning damage.The Triceratops attacks with its Stomp.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":"one prone creature"},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4jztSrWQNxc4q55u","name":"Trampling Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"If the triceratops moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a DC 13 Strength saving throw or be knocked prone. If the target is prone, the triceratops can make one stomp attack against it as a bonus action.If the triceratops moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yD51x4dihnbHwfsj"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232941,"modifiedTime":1672596102881,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eIGowKTkEBC9gUzx","name":"Ogre","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":59,"min":0,"max":59,"temp":0,"tempmax":0,"formula":"7d10 + 21"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"giant","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","giant"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ogre","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"1bqysUVTadmvi8nb","name":"Greatclub","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.The Ogre attacks with its Greatclub.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QRCsxkCwWNwswL9o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tXgnd9qKOE2b7Wis","name":"Javelin","type":"weapon","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 11 (2d6 + 4) piercing damage.The Ogre attacks with its Javelin.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":true},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DWLMnODrnHn8IbAG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lJ2gJxLDBbFtLwdk","name":"Hide Armor","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":12,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.n1V07puo0RQxPGuF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232943,"modifiedTime":1672596102923,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eORmAXuV5v3nWsQL","name":"Animated Armor","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":33,"min":0,"max":33,"temp":0,"tempmax":0,"formula":"6d8 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":25,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":"Blind beyond this radius"},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"construct","subtype":"","swarm":"","custom":""},"environment":"","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["poison","psychic"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["blinded","charmed","deafened","frightened","paralyzed","petrified","poisoned","exhaustion"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Animated Armor","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"jlZrv208u9gYyh7I","name":"Antimagic Susceptibility","type":"feat","img":"icons/magic/lightning/orb-ball-purple.webp","system":{"description":{"value":"\nThe armor is incapacitated while in the area of an antimagic field.\nIf targeted by dispel magic, the armor must succeed on a Constitution saving throw against the caster's spell save DC or fall unconscious for 1 minute.\n\nThe armor is incapacitated while in the area of an antimagic field.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KMQAgNxBCAHrd2JU"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Kwed9PPaTkZYr8Jh","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the armor remains motionless, it is indistinguishable from a normal suit of armor.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bdRuWKCO8gXQPu16","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The armor makes two melee attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vUqKQJ1GGWbKg6cX","name":"Slam","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.\nThe Animated Armor makes a slam attack!","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232944,"modifiedTime":1672596102960,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ec3lhsNv1ZRu7Qaq","name":"Hezrou","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":16,"calc":"natural","formula":""},"hp":{"value":136,"min":0,"max":136,"temp":null,"tempmax":0,"formula":"13d10 + 65"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"fiend","subtype":"Demon","swarm":"","custom":""},"environment":"","cr":8,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","fire","lightning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["abyssal","custom"],"custom":"telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Hezrou","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"dQt68nlmGdhK2ojI","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The hezrou has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0EcUwWcmWzFuiJyg","name":"Stench","type":"feat","img":"icons/magic/acid/projectile-glowing-bubbles.webp","system":{"description":{"value":"Any creature that starts its turn within 10 feet of the hezrou must succeed on a DC 14 Constitution saving throw or be poisoned until the start of its next turn. On a successful saving throw, the creature is immune to the hezrou's stench for 24 hours.Any creature that starts its turn within 10 feet of the hezrou must succeed on a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.OsPhT7jA5LlvUA6e"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xQ1RYlOxb6lMRhdI","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The hezrou makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UNNl5XqsXZuKOm69","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage.The Hezrou attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HEQqPUsmmNs178Mj","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.The Hezrou attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232946,"modifiedTime":1672596103000,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"egsSDYbqoLCelb0J","name":"Marilith","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"dex":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":189,"min":0,"max":189,"temp":null,"tempmax":0,"formula":"18d10 + 90"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"fiend","subtype":"Demon","swarm":"","custom":""},"environment":"","cr":16,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","fire","lightning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["abyssal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Marilith","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"JT4JWvnmmQnEJ2qv","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The marilith has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"e5syW3Oa9yNGZ09T","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The marilith's weapon attacks are magical.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rBHEI0gZnnv8h44g","name":"Reactive","type":"feat","img":"icons/magic/symbols/rune-sigil-black-pink.webp","system":{"description":{"value":"The marilith can take one reaction on every turn in combat.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lhTQJsLKYUZT2gV5"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nEKlIbUhhx9akBjK","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The marilith can make seven attacks: six with its longswords and one with its tail.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VzPNwzlwJ7knJ9MC","name":"Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.The Marilith attacks with its Longsword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BoIambnHLbZXr85T","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 10 ft., one creature. Hit: 15 (2d10 + 4) bludgeoning damage. If the target is Medium or smaller, it is grappled (escape DC 19). Until this grapple ends, the target is restrained, the marilith can automatically hit the target with its tail, and the marilith can't make tail attacks against other targets.The Marilith attacks with its Tail. If the target is Medium or smaller, it is grappled. Until this grapple ends, the target is restrained, the marilith can automatically hit the target with its tail, and the marilith can't make tail attacks against other targets.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EMJe4NIzUdNIQj9S","name":"Teleport","type":"feat","img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","system":{"description":{"value":"The marilith magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.PPzVD90vab60FqCt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lS2o3QOZ2lxKyi0L","name":"Parry","type":"feat","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"The marlith adds 5 to its AC against one melee Attack that would hit it. To do so, the marlith must see the attacker and be wielding a melee weapon.The marlith adds 5 to its AC against one melee Attack that would hit it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kfi26Jy0VLXv9TTm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232948,"modifiedTime":1672596103042,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eiifqZwYGi71r2Yl","name":"Medusa","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":127,"min":0,"max":127,"temp":0,"tempmax":0,"formula":"17d8 + 51"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":6,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Medusa","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"KmzlUGMXUhY2HubE","name":"Petrifying Gaze","type":"feat","img":"icons/magic/control/hypnosis-mesmerism-eye.webp","system":{"description":{"value":"\nWhen a creature that can see the medusa's eyes starts its turn within 30 ft. of the medusa, the medusa can force it to make a DC 14 Constitution saving throw if the medusa isn't incapacitated and can see the creature. If the saving throw fails by 5 or more, the creature is instantly petrified. Otherwise, a creature that fails the save begins to turn to stone and is restrained. The restrained creature must repeat the saving throw at the end of its next turn, becoming petrified on a failure or ending the effect on a success. The petrification lasts until the creature is freed by the greater restoration spell or other magic.\nUnless surprised, a creature can avert its eyes to avoid the saving throw at the start of its turn. If the creature does so, it can't see the medusa until the start of its next turn, when it can avert its eyes again. If the creature looks at the medusa in the meantime, it must immediately make the save. If the medusa sees itself reflected on a polished surface within 30 ft. of it and in an area of bright light, the medusa is, due to its curse, affected by its own gaze.\n\nThe medusa can force it to make a Constitution saving throw. The restrained creature must repeat the saving throw at the end of its next turn, becoming petrified on a failure or ending the effect on a success. The petrification lasts until the creature is freed by the greater restoration spell or other magic. Unless surprised, a creature can avert its eyes to avoid the saving throw at the start of its turn. If the creature does so, it can't see the medusa until the start of its next turn, when it can avert its eyes again. If the creature looks at the medusa in the meantime, it must immediately make the save. If the medusa sees itself reflected on a polished surface within 30 ft. of it and in an area of bright light, the medusa is, due to its curse, affected by its own gaze.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.wkIN7WTeX8ebbjtv"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"udfhkp3BOEpgThbR","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The medusa makes either three melee attacks - one with its snake hair and two with its shortsword - or two ranged attacks with its longbow.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1N53jrQmsZuhiREF","name":"Snake Hair","type":"weapon","img":"icons/creatures/reptiles/serpent-horned-green.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage plus 14 (4d6) poison damage.The Medusa attacks with its Snake Hair.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4+@mod","piercing"],["4d6","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ixrzcEmkn9jaDOZ0","name":"Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.The Medusa attacks with its Shortsword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":true,"fir":false,"foc":false,"hvy":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.osLzOwQdPtrK3rQH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4U98oe3Qr28BGbzG","name":"Longbow","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"Ranged Weapon Attack: +5 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage plus 7 (2d6) poison damage.The Medusa attacks with its Longbow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","piercing"],["2d6","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3cymOVja8jXbzrdT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232950,"modifiedTime":1672596103084,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eykRfV85DQJoCkmc","name":"Young Silver Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":168,"min":0,"max":168,"temp":0,"tempmax":0,"formula":"16d10 + 80"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":9,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["cold"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Young Silver Dragon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"qsfDO6B4wLP1UeKS","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.The Young Silver Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"08bC5Aq3vPzJatVB","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Cold Breath.** The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 17 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.\n**Paralyzing Breath.** The dragon exhales paralyzing gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GvAgPChKDJLm64Za","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.The Young Silver Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dAoWnethMNHwPNDJ","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vuuyXwshegZEpoSb","name":"Cold Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\n**Cold Breath.** The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 17 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":"Breath Weapons must be charged"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d8","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":17,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iHOaiOqwUWIfCljJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"spr7KRotXDVgwIso","name":"Paralyzing Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\n**Paralyzing Breath.** The dragon exhales paralyzing gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon exhales paralyzing gas in a 30-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":"Breath Weapons must be charged"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":17,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.BiasCPpNsaAVKzIj"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232952,"modifiedTime":1672596103127,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"f6HaKROPIcBRmSd1","name":"Rug of Smothering","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":33,"min":0,"max":33,"temp":0,"tempmax":0,"formula":"6d10"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":"Blind beyond this radius"},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"construct","subtype":"","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["poison","psychic"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["blinded","charmed","deafened","frightened","paralyzed","petrified","poisoned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Rug of Smothering","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"PGulBR18kfO768c7","name":"Antimagic Susceptibility","type":"feat","img":"icons/magic/lightning/orb-ball-purple.webp","system":{"description":{"value":"The rug is incapacitated while in the area of an antimagic field. If targeted by dispel magic, the rug must succeed on a Constitution saving throw against the caster's spell save DC or fall unconscious for 1 minute.The rug is incapacitated while in the area of an antimagic field. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KMQAgNxBCAHrd2JU"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Jwm0r4Us1rwS6XfV","name":"Damage Transfer","type":"feat","img":"icons/skills/melee/strike-axe-blood-red.webp","system":{"description":{"value":"While it is grappling a creature, the rug takes only half the damage dealt to it, and the creature grappled by the rug takes the other half.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.0npeEcwmiVMdwGMV"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"N30l3HXqmQ6H6Xo5","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the rug remains motionless, it is indistinguishable from a normal rug.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7p94WH1WPMhF1ZP9","name":"Smother","type":"weapon","img":"icons/magic/water/wave-water-explosion.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one Medium or smaller creature. Hit:\nThe creature is grappled (escape DC 13). Until this grapple ends, the target is restrained, blinded, and at risk of suffocating, and the rug can't smother another target. In addition, at the start of each of the target's turns, the target takes 10 (2d6 + 3) bludgeoning damage.\n\nThe Rug of Smothering makes a smothering attack! The creature is grappled. Until this grapple ends, the target is restrained, blinded, and at risk of suffocating, and the rug can't smother another target.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232954,"modifiedTime":1672596103163,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"f9JbhBfWucrY2eDA","name":"Giant Wolf Spider","type":"npc","img":"","system":{"abilities":{"str":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":40,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Wolf Spider","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"alpha":1,"light":{"alpha":0.5,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"reverse":false,"type":null},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.3},"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"w4oJusdFuSttyz8X","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The spider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Et0GP61ZnJkxxqvN","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one creature. Hit: 4 (1d6 + 1) piercing damage.\nThe target must make a DC 11 Constitution saving throw, taking 7 (2d6) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but poisoned for 1 hour, even after regaining hit points, and is paralyzed while poisoned in this way.\n\nThe Giant Wolf Spider attacks with its Bite. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"2d6"},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OwNnGHVHu2XX0oPc","name":"Web Sense","type":"feat","img":"icons/creatures/webs/web-spider-glowing-purple.webp","system":{"description":{"value":"While in contact with a web, the spider knows the exact location of any other creature in contact with the same web.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kjF0btAMYHUAQgOt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"oRhC5cUi8uHMapul","name":"Web Walker","type":"feat","img":"icons/magic/nature/tree-bare-glow-yellow.webp","system":{"description":{"value":"The spider ignores movement restrictions caused by webbing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zITrVwmnPpLoBZI1"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232956,"modifiedTime":1672596103200,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fkCNtbvPOMd7mipF","name":"Pseudodragon","type":"npc","img":"","system":{"abilities":{"str":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":7,"min":0,"max":7,"temp":0,"tempmax":0,"formula":"2d4+2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":15,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"int"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":"can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Pseudodragon","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"heZCHSZEeLLiweK7","name":"Keen Senses","type":"feat","img":"icons/magic/perception/eye-ringed-glow-angry-large-teal.webp","system":{"description":{"value":"The pseudodragon has advantage on Wisdom (Perception) checks that rely on sight, hearing, or smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JnLN0Rz60WHXk2Fr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GAzi14ICaeeOAO8J","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The pseudodragon has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"aIqOpP93mUsy9yD1","name":"Limited Telepathy","type":"feat","img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","system":{"description":{"value":"The pseudodragon can magically communicate simple ideas, emotions, and images telepathically with any creature within 100 ft. of it that can understand a language.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":100,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.xna3UTd4EFLCZMt9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GJgN3Qy49XCaKmTc","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.The Pseudodragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MKFXRWP55I1bVlyD","name":"Sting","type":"weapon","img":"icons/creatures/abilities/fang-tooth-venomous.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage.The target must succeed on a DC 11 Constitution saving throw or become poisoned for 1 hour. If the saving throw fails by 5 or more, the target falls unconscious for the same duration, or until it takes damage or another creature uses an action to shake it awake.The Pseudodragon attacks with its Sting. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232958,"modifiedTime":1672596103242,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fkJ8Z8zi2JtlcHh9","name":"Vulture","type":"npc","img":"","system":{"abilities":{"str":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":5,"min":0,"max":5,"temp":0,"tempmax":0,"formula":"1d8 + 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":50,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Vulture","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"oFwDpNHu44o0BRx1","name":"Keen Sight and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The vulture has advantage on Wisdom (Perception) checks that rely on sight or smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Vulture","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Pi704hBXv722CLGM","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The vulture has advantage on an attack roll against a creature if at least one of the vulture's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Vulture","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MnAKUayu6jCzzRsS","name":"Beak","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 2 (1d4) piercing damage.\nThe Vulture attacks with its Beak.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232960,"modifiedTime":1672596103282,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fnkPNfIpS62LqOu4","name":"Hawk","type":"npc","img":"","system":{"abilities":{"str":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"1d4 - 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Hawk","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"hHbY6NAFUWVlz7tj","name":"Keen Sight","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The eagle has advantage on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Hawk","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0Di3cqTRD7ot8ZCa","name":"Talons","type":"weapon","img":"icons/creatures/claws/claw-talons-glowing-orange.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 1 slashing damage.\nThe Hawk attacks with its Talons.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232961,"modifiedTime":1672596103316,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fqbFYtbtkrL53FOC","name":"Gray Ooze","type":"npc","img":"","system":{"abilities":{"str":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":8,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"3d8 + 9"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":10,"fly":0,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":"Blind beyond this radius"},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"ooze","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["acid","cold","fire"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["blinded","charmed","deafened","frightened","prone","exhaustion"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Gray Ooze","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"2iRdkvAfbmxSymuw","name":"Amorphous","type":"feat","img":"icons/creatures/slimes/slime-movement-dripping-purple.webp","system":{"description":{"value":"The ooze can move through a space as narrow as 1 inch wide without squeezing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.3lDp8DtWwNDHSvxX"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uSay5J2sf9zXsabi","name":"Corrode Metal","type":"feat","img":"icons/magic/earth/orb-stone-smoke-teal.webp","system":{"description":{"value":"\nAny nonmagical weapon made of metal that hits the ooze corrodes. After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls.\nIf its penalty drops to -5, the weapon is destroyed. Nonmagical ammunition made of metal that hits the ooze is destroyed after dealing damage. The ooze can eat through 2-inch-thick, nonmagical metal in 1 round.\n\nThe ooze corrodes metal.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.0z5v1BfMqQl5Z7UW"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NDZ02JVZWMbzRGGJ","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the ooze remains motionless, it is indistinguishable from an oily pool or wet rock.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KO4qRywgiEQ3F004","name":"Pseudopod","type":"weapon","img":"icons/creatures/slimes/slime-movement-dripping-pseudopods-green.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage plus 7 (2d6) acid damage.If the target is wearing nonmagical metal armor, its armor is partly corroded and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.The Gray Ooze attacks with its Pseudopod. If the target is wearing nonmagical metal armor, its armor is partly corroded and takes a permanent and cumulative -1 penalty to the AC it offers.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"],["2d6","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232963,"modifiedTime":1672596103352,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fsPruAIDOg4tVrgb","name":"Gladiator","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":112,"min":0,"max":112,"temp":0,"tempmax":0,"formula":"15d8 + 45"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Alignment","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"any one language (usually Common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":2,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Gladiator","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"GO2zHOdb2GBHd2U4","name":"Studded Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-rivited-red.webp","system":{"description":{"value":"Made from tough but flexible leather, studded leather is reinforced with close-set rivets or spikes.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":13,"price":{"value":45,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.TIV3B1vbrVHIhQAm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sSs3hSzkKBMNBgTs","name":"Shield","type":"equipment","img":"icons/equipment/shield/oval-wooden-boss-steel.webp","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YbB6EsBwNaEzVlxU","name":"Brave","type":"feat","img":"icons/skills/social/intimidation-impressing.webp","system":{"description":{"value":"The gladiator has advantage on saving throws against being Frightened.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.108q5fJnnBRoLKfe"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NPTnV9YupSeKJrQ0","name":"Brute","type":"feat","img":"icons/skills/melee/unarmed-punch-fist.webp","system":{"description":{"value":"A melee weapon deals one extra die of its damage when the gladiator hits with it (included in the attack).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.q8w1UF9woZDGIwvS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QuVUb9i809rjJWcL","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The gladiator makes three melee attacks or two ranged attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eL15erXXE9EuXWSB","name":"Spear","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"\nMelee or Ranged Weapon Attack: +7 to hit, reach 5 ft. and range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage, or 13 (2d8 + 4) piercing damage if used with two hands to make a melee attack.\nThe Gladiator attacks with their Spear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":"2d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"thr":true,"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.OG4nBBydvmfWYXIk"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GrUneCbXCYngdpjf","name":"Shield Bash","type":"weapon","img":"icons/equipment/shield/buckler-wooden-boss-glowing-blue.webp","system":{"description":{"value":"\nMelee Weapon Attack:+7 to hit,, 5 ft., one creature. Hit: 9 (2d4 + 4) bludgeoning damage.\nIf the target is a Medium or smaller creature, it must succeed on a DC 15 Strength saving throw or be knocked prone.\n\nThe Gladiator attacks with their Shield Bash. If the target is a Medium or smaller creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AwP14Hu6dPdnSbQt","name":"Parry","type":"feat","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"\nThe gladiator adds 3 to its AC against one melee Attack that would hit it. To do so, the gladiator must see the attacker and be wielding a melee weapon.\n\nThe gladiator adds 3 to its AC against one melee Attack that would hit it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"none"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kfi26Jy0VLXv9TTm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232965,"modifiedTime":1672596103395,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"g40zN6xMye6bSS94","name":"Swarm of Ravens","type":"npc","img":"","system":{"abilities":{"str":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":24,"min":0,"max":24,"temp":0,"tempmax":0,"formula":"7d8 - 7"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":50,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"tiny","custom":""},"environment":"Forest","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","grappled","paralyzed","petrified","prone","restrained","stunned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Swarm of Ravens","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Vmmq0dqa2hEcTGOC","name":"Swarm","type":"feat","img":"icons/creatures/invertebrates/fly-wasp-mosquito-green.webp","system":{"description":{"value":"The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny raven. The swarm can't regain hit points or gain temporary hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eL3OJmc4FuetizKO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rQWSxwspySRtFst2","name":"Beaks","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target in the swarm's space. Hit: 7 (2d6) piercing damage, or 3 (1d6) piercing damage if the swarm has half of its hit points or fewer.\nThe Swarm of Ravens attacks with its Beaks.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","piercing"]],"versatile":"1d6"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232967,"modifiedTime":1672596103435,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"g7FSu2oU4YHPgWNA","name":"Darkmantle","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"5d6 + 5"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":30,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Darkmantle","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"FbHtjwNAATMUsN1r","name":"Echolocation","type":"feat","img":"icons/magic/control/hypnosis-mesmerism-eye.webp","system":{"description":{"value":"The darkmantle can't use its blindsight while deafened.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.rUongiWD51ZopRk2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"k24xxFfPtUCahddE","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the darkmantle remains motionless, it is indistinguishable from a cave formation such as a stalactite or stalagmite.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DA34sS4nWGc4OTwm","name":"Crush","type":"weapon","img":"icons/magic/life/heart-shadow-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one creature. Hit: 6 (1d6 + 3) bludgeoning damage.\nThe darkmantle attaches to the target. If the target is Medium or smaller and the darkmantle has advantage on the attack roll, it attaches by engulfing the target's head, and the target is also blinded and unable to breathe while the darkmantle is attached in this way.\nWhile attached to the target, the darkmantle can attack no other creature except the target but has advantage on its attack rolls. The darkmantle's speed also becomes 0, it can't benefit from any bonus to its speed, and it moves with the target.\nA creature can detach the darkmantle by making a successful DC 13 Strength check as an action. On its turn, the darkmantle can detach itself from the target by using 5 feet of movement.\n\nThe darkmantle attacks with its Crush. The darkmantle attaches to the target. While attached to the target, the darkmantle can attack no other creature except the target but has advantage on its attack rolls. A creature can detach the darkmantle by making a successful Strength check as an action.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qzSE2ZiVMLKsWF4F","name":"Darkness Aura","type":"feat","img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","system":{"description":{"value":"\nA 15-foot radius of magical darkness extends out from the darkmantle, moves with it, and spreads around corners. The darkness lasts as long as the darkmantle maintains concentration, up to 10 minutes (as if concentrating on a spell).\nDarkvision can't penetrate this darkness, and no natural light can illuminate it. If any of the darkness overlaps with an area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled.\n\nA 15-foot radius of magical darkness extends out from the darkmantle, moves with it, and spreads around corners. Darkvision can't penetrate this darkness, and no natural light can illuminate it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.jhAU6pb5GvbjwTX7"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232968,"modifiedTime":1672596103472,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gGeLeV411iQ5Yijs","name":"Shambling Mound","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":136,"min":0,"max":136,"temp":0,"tempmax":0,"formula":"16d10 + 48"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":20,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":"Blind beyond this radius"},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"plant","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["lightning"],"bypasses":[],"custom":""},"dr":{"value":["cold","fire"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["blinded","deafened","exhaustion"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Shambling Mound","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"gyAyLX9CJBbawmr3","name":"Lightning Absorption","type":"feat","img":"icons/magic/lightning/bolt-strike-smoke-yellow.webp","system":{"description":{"value":"Whenever the shambling mound is subjected to lightning damage, it takes no damage and regains a number of hit points equal to the lightning damage dealt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KTsFgSQlDetDDm1f"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2aGoBVVEF54VcC9d","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The shambling mound makes two slam attacks. If both attacks hit a Medium or smaller target, the target is grappled escape DC 14, and the shambling mound uses its Engulf on it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"N42BQALoCmeYphD1","name":"Engulf","type":"feat","img":"icons/magic/nature/trap-spikes-thorns-green.webp","system":{"description":{"value":"The shambling mound engulfs a Medium or smaller creature grappled by it. The engulfed target is blinded, restrained, and unable to breathe, and it must succeed on a DC 14 Constitution saving throw at the start of each of the mound's turns or take 13 (2d8 + 4) bludgeoning damage.If the mound moves, the engulfed target moves with it. The mound can have only one creature engulfed at a time.The shambling mound engulfs a Medium or smaller creature grappled by it. The engulfed target is blinded, restrained, and unable to breathe, and it must make a Constitution saving throw at the start of each of the mound's turns. If the mound moves, the engulfed target moves with it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Eh80lkzHiEOJP8FI"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lOIA9YKQU8xSx7Lj","name":"Slam","type":"weapon","img":"icons/magic/fire/flame-burning-fist-strike.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.The Shambling Mound attacks with its Slam.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232970,"modifiedTime":1672596103511,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gKRtiMNAjZiCVfwz","name":"Stirge","type":"npc","img":"","system":{"abilities":{"str":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":2,"min":0,"max":2,"temp":0,"tempmax":0,"formula":"1d4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":40,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.125,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Stirge","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"MEFgfFD6YUD9cE08","name":"Blood Drain","type":"weapon","img":"icons/skills/wounds/blood-spurt-spray-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one creature. Hit: 5 (1d4 + 3) piercing damage.The stirge attaches to the target. While attached, the stirge doesn't attack. Instead, at the start of each of the stirge's turns, the target loses 5 (1d4 + 3) hit points due to blood loss.The stirge can detach itself by spending 5 feet of its movement. It does so after it drains 10 hit points of blood from the target or the target dies.The Stirge attacks with its Blood Drain. A creature, including the target, can use its action to detach the stirge.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232971,"modifiedTime":1672596103548,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gaSTr7DFZJLmgI2J","name":"Awakened Shrub","type":"npc","img":"","system":{"abilities":{"str":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":9,"calc":"natural","formula":""},"hp":{"value":10,"min":0,"max":10,"temp":0,"tempmax":0,"formula":"3d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"plant","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["piercing"],"bypasses":[],"custom":""},"dv":{"value":["fire"],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"One language known by its creator"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Awakened Shrub","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Vdk7dsybx2iYlKVx","name":"Rake","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+1 to hit,, 5 ft., one target. Hit: 1 (1d4 - 1) slashing damage.\nThe Awakened Shrub attacks with its Rake.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"cfgn9yboSN7jIsDC","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the shrub remains motionless, it is indistinguishable from a normal shrub.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Awakened Shrub","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232973,"modifiedTime":1672596103587,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"geM2F7HvVGhtk3h4","name":"Adult Silver Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":27,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":25,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":243,"min":0,"max":243,"temp":0,"tempmax":0,"formula":"18d12 + 126"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":16,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":["cold"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Adult Silver Dragon","displayName":0,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"PHDGDBP8gGjp1XRs","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ajPmtUy0amdphs7D","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3WM5UpCTIb6fQaWA","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+13 to hit,, 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.The Adult Silver Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nO1hKkZifzX3UJ2y","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+13 to hit,, 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.The Adult Silver Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"str"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"v5TMyixZTtiw13d7","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+13 to hit,, 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.The Adult Silver Dragon attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"F8gfPJkHrrlTwVUs","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3c1EZHdUBP4tiWfK","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Cold Breath.** The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 20 Constitution saving throw, taking 58 (13d8) cold damage on a failed save, or half as much damage on a successful one.\n**Paralyzing Breath.** The dragon exhales paralyzing gas in a 60-foot cone. Each creature in that area must succeed on a DC 20 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MzyHKQpwLeUUgBW7","name":"Cold Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\n**Cold Breath.** The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 20 Constitution saving throw, taking 58 (13d8) cold damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["13d8","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":20,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iHOaiOqwUWIfCljJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5Q60uuHW5kZGaopg","name":"Paralyzing Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\n**Paralyzing Breath.** The dragon exhales paralyzing gas in a 60-foot cone. Each creature in that area must succeed on a DC 20 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon exhales paralyzing gas in a 60-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":20,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.BiasCPpNsaAVKzIj"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4NQZ8XlRj6sbjbOs","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lslg4XVihVKQhwte","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uqanvb4CeQp0bdn3","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1OojtcMLidFnfuTi","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CdSoAS13rAlkBKI7","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"\nThe dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 21 Dexterity saving throw or take 15 (2d6+8) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.\n\nThe dragon beats its wings! Each creature within 10 feet of the dragon must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":21,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"W525tFlyOp18jFTJ","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XTlIcoABQaHZTn5D","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232976,"modifiedTime":1672596103681,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gf9QbHdMAfvFtxcv","name":"Ancient Silver Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":30,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":29,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":23,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":22,"calc":"natural","formula":""},"hp":{"value":487,"min":0,"max":487,"temp":0,"tempmax":0,"formula":"25d20 + 225"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":23,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"grg","di":{"value":["cold"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Ancient Silver Dragon","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"gcXX5P25Hed1CHt2","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"shoHSForHM2cwBtd","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YCbR7M5CKKCFWLvk","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+17 to hit,, 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.The Ancient Silver Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YHoeJdvSJaT3qblq","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+17 to hit,, 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.The Ancient Silver Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VlNQwm636T7qIEoQ","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+17 to hit,, 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.The Ancient Silver Dragon attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ohWgcdw603aWWXum","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"oL7vyWwH6bvXyl95","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Cold Breath.** The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 24 Constitution saving throw, taking 67 (15d8) cold damage on a failed save, or half as much damage on a successful one.\n**Paralyzing Breath.** The dragon exhales paralyzing gas in a 90- foot cone. Each creature in that area must succeed on a DC 24 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"p6laYHKsnkMnfwtu","name":"Cold Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\n**Cold Breath.** The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 24 Constitution saving throw, taking 67 (15d8) cold damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["15d8","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":24,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iHOaiOqwUWIfCljJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TbcUwDfwFSYvMmwp","name":"Paralyzing Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\n**Paralyzing Breath.** The dragon exhales paralyzing gas in a 90- foot cone. Each creature in that area must succeed on a DC 24 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon exhales paralyzing gas in a 90- foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":24,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.BiasCPpNsaAVKzIj"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nnMmiUPuJEyViPaq","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yAVNzttgGO1cHIlQ","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tg4h1Ht7X4YmDTd9","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"saU6KEYGTm2SZ3jv","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"\nThe dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 25 Dexterity saving throw or take 17 (2d6+10) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.\n\nThe dragon beats its wings! Each creature within 15 feet of the dragon must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":25,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fu7gTjVI9Dk9J8tT","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Pb87W9xoor7xP185","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7OzKj0pIQLqNVmmF","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232978,"modifiedTime":1672596103792,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"h052EIIUmRwJum65","name":"Griffon","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":59,"min":0,"max":59,"temp":0,"tempmax":0,"formula":"7d10 + 21"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Griffon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"0o0MDYjWjFsJFvQZ","name":"Keen Sight","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The griffon has advantage on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wF7eGWgo8AZNTcyg","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The griffon makes two attacks: one with its beak and one with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"T2JS1VEL7U2s92Fj","name":"Beak","type":"weapon","img":"icons/commodities/bones/beak-hooked-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.The Griffon attacks with its Beak.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ldVEDIAP2PHxLHsL","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.The Griffon attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232981,"modifiedTime":1672596103860,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"h98AuPfomEPcCibP","name":"Iron Golem","type":"npc","img":"","system":{"abilities":{"str":{"value":24,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":20,"calc":"natural","formula":""},"hp":{"value":210,"min":0,"max":210,"temp":null,"tempmax":0,"formula":"20d10 + 100"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"construct","subtype":"","swarm":"","custom":""},"environment":"","cr":16,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["bludgeoning","fire","piercing","poison","psychic","slashing"],"bypasses":["ada","mgc"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","exhaustion","frightened","paralyzed","petrified","poisoned"],"custom":""},"languages":{"value":[],"custom":"understands the languages of its creator but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Iron Golem","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"y2j6GWf1Ur3GRtYI","name":"Fire Absorption","type":"feat","img":"icons/magic/fire/flame-burning-campfire-rocks.webp","system":{"description":{"value":"Whenever the golem is subjected to fire damage, it takes no damage and instead regains a number of hit points equal to the fire damage dealt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.UH57LTsTGDxl2oS6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ajTNe969fHHuppwl","name":"Immutable Form","type":"feat","img":"icons/magic/unholy/orb-beam-pink.webp","system":{"description":{"value":"The golem is immune to any spell or effect that would alter its form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.MFuiImIvLzYA3osc"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vUyYxadU3cXz7Zqf","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The golem has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"aIoPr5RkxMhH5prU","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The golem's weapon attacks are magical.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UupAbZ0Pu4j3vLLg","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The golem makes two melee attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0z51jBlE4BoPaEQn","name":"Slam","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"Melee Weapon Attack:+13 to hit,, 5 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.The Iron Golem attacks with its Slam.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pPThO0mEw9iMaJw7","name":"Sword","type":"weapon","img":"icons/weapons/swords/sword-guard-red.webp","system":{"description":{"value":"Melee Weapon Attack:+13 to hit,, 10 ft., one target. Hit: 23 (3d10 + 7) slashing damage.The Iron Golem attacks with its Sword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"x44GisqrxHYC5fov","name":"Poison Breath","type":"feat","img":"icons/creatures/reptiles/serpent-horned-green.webp","system":{"description":{"value":"\nThe golem exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n\nThe golem exhales poisonous gas in a 15-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d8","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":19,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JAEclghgOT24pQD9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232983,"modifiedTime":1672596103909,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hIf83RD3ZVW4Egfi","name":"Cat","type":"npc","img":"","system":{"abilities":{"str":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":2,"min":0,"max":2,"temp":0,"tempmax":0,"formula":"1d4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Cat","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"QEiTKu95xZ1ovW5K","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+0 to hit,, 5 ft., one target. Hit: 1 slashing damage.\nThe Cat attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rZhUwhHEUo6VBxPt","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The cat has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"abil","attackBonus":"","chatFlavor":"The cat raises its head, sniffing the air.","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"2d20kh + @mod","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Cat","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232986,"modifiedTime":1672596103953,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hQt3qIahnB1Odb40","name":"Giant Elk","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":42,"min":0,"max":42,"temp":0,"tempmax":0,"formula":"5d12 + 10"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":60,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"Giant Elk; Understands Common, Elvish, and Sylvan but can't speak them"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Elk","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"xSzDPptifNbKyf5N","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nIf the elk moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 7 (2d6) damage.\nIf the target is a creature, it must succeed on a DC 14 Strength saving throw or be knocked prone.\n\nIf the elk moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6",""]],"versatile":""},"formula":"","save":{"ability":"str","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jDA6wujGF6L3tPBM","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one prone creature. Hit: 22 (4d8 + 4) bludgeoning damage.\nThe Giant Elk attacks with its Hooves.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"epOt7fzXcBz9Hf0i","name":"Ram","type":"weapon","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\nThe Giant Elk attacks with its Ram.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232988,"modifiedTime":1672596103996,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hY9ptpO5Xl2tfkcj","name":"Bronze Dragon Wyrmling","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":32,"min":0,"max":32,"temp":0,"tempmax":0,"formula":"5d8 + 10"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["lightning"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Bronze Dragon Wyrmling","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"H2dPYlwoo8MOstEQ","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Vq0dUbodqBggQAVQ","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.The Bronze Dragon Wyrmling attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Bl0NweDKcGjwVdPu","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Lightning Breath.** The dragon exhales lightning in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 16 (3d10) lightning damage on a failed save, or half as much damage on a successful one.\n**Repulsion Breath.** The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 12 Strength saving throw. On a failed save, the creature is pushed 30 feet away from the dragon.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QoYyaNGqsz935dS2","name":"Lightning Breath","type":"feat","img":"icons/magic/lightning/bolt-strike-blue.webp","system":{"description":{"value":"\n**Lightning Breath.** The dragon exhales lightning in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 16 (3d10) lightning damage on a failed save, or half as much damage on a successful one.\n\n The dragon exhales lightning in a 40-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":40,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":12,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LVnd9fq9cQj7rR0Q"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WT04ZQprU9op6Wny","name":"Repulsion Breath","type":"feat","img":"icons/magic/air/air-wave-gust-blue.webp","system":{"description":{"value":"\n**Repulsion Breath.** The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 12 Strength saving throw. On a failed save, the creature is pushed 30 feet away from the dragon.\n\nThe dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must make a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":12,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zRDERBe0lMbwyGwN"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232990,"modifiedTime":1672596104043,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hb6pjvdCNYmLLp8V","name":"Polar Bear","type":"npc","img":"","system":{"abilities":{"str":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":42,"min":0,"max":42,"temp":0,"tempmax":0,"formula":"5d10 + 15"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Polar Bear","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ieLtcJMAlgYVDSvs","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The bear has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hJyurwicMrRIt2TC","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The bear makes two attacks: one with its bite and one with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"c8cisRQ7Ki3qiXgL","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 9 (1d8 + 5) piercing damage.The Polar Bear attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jFBgpP0EO1Y2HRL0","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.The Polar Bear attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232992,"modifiedTime":1672596104088,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hjhERRzafCiFFVLA","name":"Lion","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":26,"min":0,"max":26,"temp":0,"tempmax":0,"formula":"4d10 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Lion","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ZFsvhBgKXqgf17TZ","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The lion has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Kztga4jBHZCUjO3A","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The lion has advantage on an attack roll against a creature if at least one of the lion's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pQdtHaxlArSTjbqb","name":"Pounce","type":"feat","img":"icons/creatures/claws/claw-talons-glowing-orange.webp","system":{"description":{"value":"\nIf the lion moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a DC 13 Strength saving throw or be knocked prone.\nIf the target is prone, the lion can make one bite attack against it as a bonus action.\n\nIf the lion moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must make a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.MqAVplIArAKzpnXB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3dmAdKAVc8JqLgIj","name":"Running Leap","type":"feat","img":"icons/skills/movement/feet-winged-boots-brown.webp","system":{"description":{"value":"With a 10-foot running start, the lion can long jump up to 25 ft.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Ozz1xvw2ydiw4IJP"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gKj1TlVfDhLp5WIk","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage.\nThe Lion attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CHIayoaCAZj0GBkM","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\nThe Lion attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232994,"modifiedTime":1672596104131,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hqj2yXtgwt64v3Lj","name":"Basilisk","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":52,"min":0,"max":52,"temp":0,"tempmax":0,"formula":"8d8 + 16"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":3,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Basilisk","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"bKBPawscKpixPeO0","name":"Petrifying Gaze","type":"feat","img":"icons/magic/control/hypnosis-mesmerism-eye.webp","system":{"description":{"value":"\nIf a creature starts its turn within 30 ft. of the basilisk and the two of them can see each other, the basilisk can force the creature to make a DC 12 Constitution saving throw if the basilisk isn't incapacitated. On a failed save, the creature magically begins to turn to stone and is restrained. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is petrified until freed by the greater restoration spell or other magic.\nA creature that isn't surprised can avert its eyes to avoid the saving throw at the start of its turn. If it does so, it can't see the basilisk until the start of its next turn, when it can avert its eyes again. If it looks at the basilisk in the meantime, it must immediately make the save. If the basilisk sees its reflection within 30 ft. of it in bright light, it mistakes itself for a rival and targets itself with its gaze.\n\nThe basilisk can force the creature to make a Constitution saving throw. It must repeat the saving throw at the end of its next turn. A creature that isn't surprised can avert its eyes to avoid the saving throw at the start of its turn. If it does so, it can't see the basilisk until the start of its next turn, when it can avert its eyes again. If it looks at the basilisk in the meantime, it must immediately make the save.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":12,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.wkIN7WTeX8ebbjtv"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"atyoFYgU32nJ9kPK","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage plus 7 (2d6) poison damage.\nThe Basilisk attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"],["2d6","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232996,"modifiedTime":1672596104180,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hx240PG5r5qpRet3","name":"Mimic","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":58,"min":0,"max":58,"temp":0,"tempmax":0,"formula":"9d8 + 18"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":15,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"monstrosity","subtype":"Shapechanger","swarm":"","custom":""},"environment":"Underdark","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["acid"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["prone"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Mimic","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"DOyBdRdgMxLm9BIh","name":"Shapechanger","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The mimic can use its action to polymorph into an object or back into its true, amorphous form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies.The mimic can use its action to polymorph into an object or back into its true, amorphous form. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"aPL8wE2ARwh9JFeX","name":"Adhesive (Object Form Only)","type":"feat","img":"icons/creatures/slimes/slime-movement-dripping-pseudopods-green.webp","system":{"description":{"value":"The mimic adheres to anything that touches it. A Huge or smaller creature adhered to the mimic is also grappled by it escape DC 13. Ability checks made to escape this grapple have disadvantage.The mimic adheres to anything that touches it. A Huge or smaller creature adhered to the mimic is also grappled by it. Make an escape check, with disadvantage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7g1LwEync57GwqV0","name":"False Appearance (Object Form Only)","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the mimic remains motionless, it is indistinguishable from an ordinary object.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sGiOJWWFPPQ6J5Zm","name":"Grappler","type":"feat","img":"icons/skills/melee/unarmed-punch-fist.webp","system":{"description":{"value":"The mimic has advantage on attack rolls against any creature grappled by it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kP9t6MAeUvBBmoM3"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qHJyEXRC7oExTjES","name":"Pseudopod","type":"weapon","img":"icons/creatures/slimes/slime-movement-dripping-pseudopods-green.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage. If the mimic is in object form, the target is subjected to its Adhesive trait.The Mimic attacks with its Pseudopod.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HgNW3DcqMvGVXO7s","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) acid damage.The Mimic attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","piercing"],["1d8","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232997,"modifiedTime":1672596104223,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"iGBdQA3IuKsurcUy","name":"Duergar","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":26,"min":0,"max":26,"temp":0,"tempmax":0,"formula":"4d8 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":25,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"humanoid","subtype":"Dwarf","swarm":"","custom":""},"environment":"Underdark","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["poison"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["dwarvish","undercommon"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Duergar","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"QRv2TDbktMG2SBfC","name":"Scale Mail","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"This armor consists of a coat and leggings (and perhaps a separate skirt) of leather covered with overlapping pieces of metal, much like the scales of a fish. The suit includes gauntlets.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":45,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.XmnlF5fgIO3tg6TG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sSs3hSzkKBMNBgTs","name":"Shield","type":"equipment","img":"icons/equipment/shield/oval-wooden-boss-steel.webp","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7ePnUuyCcRkB5GHo","name":"Duergar Resilience","type":"feat","img":"icons/magic/control/control-influence-rally-purple.webp","system":{"description":{"value":"The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being charmed or paralyzed.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WHnLJRaXfIW7Z28t"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kN6uf2h2Em4ol6Tz","name":"Sunlight Sensitivity","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.F14aW2Ke3I5ZtSg4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gvmNtrdfZXCNiAY3","name":"Enlarge","type":"feat","img":"icons/magic/control/energy-stream-link-large-blue.webp","system":{"description":{"value":"For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.jZgeHxCR8pF6FOmQ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tCtnqPPKQ9NxIDqd","name":"War Pick","type":"weapon","img":"icons/weapons/axes/pickaxe-double-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage, or 11 (2d8 + 2) piercing damage while enlarged.\nThe Duergar attacks with its War Pick.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":"2d8"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.2YdfjN1PIIrSHZii"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fHe3YshNib2lsJ45","name":"Javelin","type":"weapon","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"\nMelee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 9 (2d6 + 2) piercing damage while enlarged.\nThe Duergar attacks with its Javelin.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"2d6"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"thr":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DWLMnODrnHn8IbAG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lUm5wbaBhfO54dlB","name":"Invisibility","type":"feat","img":"icons/creatures/webs/webthin-blue.webp","system":{"description":{"value":"\nThe duergar magically turns invisible until it attacks, casts a spell, or uses its Enlarge, or until its concentration is broken, up to 1 hour (as if concentrating on a spell).\n\nThe duergar magically turns invisible. Any equipment the duergar wears or carries is invisible with it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.dA5X2eQuOtHywpQF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232999,"modifiedTime":1672596104279,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"iSCL4Q82ivnYelzc","name":"Hell Hound","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":45,"min":0,"max":45,"temp":0,"tempmax":0,"formula":"7d8 + 14"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":3,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"understands Infernal but can't speak it"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Hell Hound","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"fhBBeyLSor6NVA0l","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The hound has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BVEOVtTEuJhNvTfo","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The hound has advantage on an attack roll against a creature if at least one of the hound's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AnHeKid7zbyPKJg9","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 7 (2d6) fire damage.The Hell Hound attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"],["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gijcyepmnWeRu4HV","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"The hound exhales fire in a 15-foot cone. Each creature in that area must make a DC 12 Dexterity saving throw, taking 21 (6d6) fire damage on a failed save, or half as much damage on a successful one.The hound exhales fire in a 15-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":12,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233001,"modifiedTime":1672596104323,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ijsfYEDqSuwQXwNN","name":"Dragon Turtle","type":"npc","img":"","system":{"abilities":{"str":{"value":25,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":20,"calc":"natural","formula":""},"hp":{"value":341,"min":0,"max":341,"temp":0,"tempmax":0,"formula":"22d20 + 110"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":17,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"grg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["fire"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["aquan","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Dragon Turtle","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Pu7Q4aCRVqVqVkeM","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon turtle can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2m2mkUSBJi2QOZje","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon turtle makes three attacks: one with its bite and two with its claws. It can make one tail attack in place of its two claw attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7QJr0VCtVk2wtZ78","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+13 to hit,, 15 ft., one target. Hit: 26 (3d12 + 7) piercing damage.The Dragon Turtle attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d12 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"P4joxK4BwyYsPfJv","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+13 to hit,, 10 ft., one target. Hit: 16 (2d8 + 7) slashing damage.The Dragon Turtle attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zNDI1LvLKZ9Hi2Ew","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+13 to hit,, 15 ft., one target. Hit: 26 (3d12 + 7) bludgeoning damage. If the target is a creature, it must succeed on a DC 20 Strength saving throw or be pushed up to 10 feet away from the dragon turtle and knocked prone.The Dragon Turtle attacks with its Tail. If the target is a creature, it must make a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d12 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":20,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UjT93YD55B87gMqZ","name":"Steam Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"The dragon turtle exhales scalding steam in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 52 (15d6) fire damage on a failed save, or half as much damage on a successful one.Being underwater doesn't grant resistance against this damage.The dragon turtle exhales scalding steam in a 60-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["15d6","fire"]],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4UuuUKjATTixrZGP"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233003,"modifiedTime":1672596104372,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"irz834sqAxRihtSG","name":"Adult Copper Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":184,"min":0,"max":184,"temp":0,"tempmax":0,"formula":"16d12 + 80"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":40,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Hill","cr":14,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":["acid"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Adult Copper Dragon","displayName":0,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"2WoNMpj7w91Dt4fY","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qfV8YlDhXHfI9Uin","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jLzmwSFLsR0jhWHF","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.The Adult Copper Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rIzRUQvEexZL1wZx","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.The Adult Copper Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"S1RmDd4fOJffOxAy","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.The Adult Copper Dragon attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3ovBwWW2b9S8LYId","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute.A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":16,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"l9M8UzmizF3KRbEr","name":"Breath Weapons","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Acid Breath.** The dragon exhales acid in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.\n**Slowing Breath.** The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AMOb6E3TENPVZzFu","name":"Acid Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\n**Acid Breath.** The dragon exhales acid in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales acid in an 60-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d8","acid"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zjcGly9P3Gn9MXt7"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PMfemsI55IkO3buY","name":"Slowing Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\n**Slowing Breath.** The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n\nThe dragon exhales gas in a 60-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JRy507rS9wxT3GBh"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EuIDfrjxsngqBcnD","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WpLmLtkW78JzpUOu","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"56yxRgRdOJvr3Hi3","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nThe dragon makes a tail attack.\n\nThe dragon slams its long tail against its foe!","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4Cf4U7JMFMCyjw7N","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"\nThe dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 19 Dexterity saving throw or take 13 (2d6+6) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.\n\nThe dragon beats its wings!","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":19,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"othdHNDe2JbOsBXv","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0javcL0nFMoeWm3I","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233005,"modifiedTime":1672596104472,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"jLPhaBnMtAbB5dp1","name":"Elephant","type":"npc","img":"","system":{"abilities":{"str":{"value":22,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":76,"min":0,"max":76,"temp":0,"tempmax":0,"formula":"8d12 + 24"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":4,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Elephant","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"TtrZUBPjTrxKxoFn","name":"Trampling Charge","type":"feat","img":"icons/creatures/abilities/cougar-pounce-stalk-black.webp","system":{"description":{"value":"\nIf the elephant moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a DC 12 Strength saving throw or be knocked prone. If the target is prone, the elephant can make one stomp attack against it as a bonus action.\n\nIf the elephant moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":12,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yD51x4dihnbHwfsj"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"r6mBkCtL5j6Y6sBr","name":"Gore","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 19 (3d8 + 6) piercing damage.\nThe Elephant attacks with its Gore.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZHBbc5K4n6sU17rC","name":"Stomp","type":"weapon","img":"icons/creatures/abilities/cougar-pounce-stalk-black.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 5 ft., one prone creature. Hit: 22 (3d10 + 6) bludgeoning damage.\nThe Elephant attacks with its Stomp.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":"one prone creature"},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233007,"modifiedTime":1672596104525,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"jOANE6M0My6UJF4e","name":"Blink Dog","type":"npc","img":"","system":{"abilities":{"str":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"4d8 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"fey","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"Blink Dog;understands Sylvan but can't speak it"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Blink Dog","displayName":0,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"BNRcaqutWC30200X","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The dog has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"The dog sharpens its senses!","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DcZYdK2iycSJzamK","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) piercing damage.\nThe Blink Dog attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1IE8rHcJIihDWCda","name":"Teleport","type":"feat","img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","system":{"description":{"value":"The dog magically teleports, along with any equipment it is wearing or carrying, up to 40 ft. to an unoccupied space it can see. Before or after teleporting, the dog can make one bite attack.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":40,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":4,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.PPzVD90vab60FqCt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233009,"modifiedTime":1672596104564,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"jcZblJ6lqtW0ePxe","name":"Otyugh","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":114,"min":0,"max":114,"temp":0,"tempmax":0,"formula":"12d10 + 48"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"aberration","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"Otyugh"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Otyugh","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"z8zfieQSSbMtBNQz","name":"Limited Telepathy","type":"feat","img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","system":{"description":{"value":"The otyugh can magically transmit simple messages and images to any creature within 120 ft. of it that can understand a language. This form of telepathy doesn't allow the receiving creature to telepathically respond.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.xna3UTd4EFLCZMt9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CCawltKiVU4Mup9i","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 12 (2d8 + 3) piercing damage.\nIf the target is a creature, it must succeed on a DC 15 Constitution saving throw against disease or become poisoned until the disease is cured. Every 24 hours that elapse, the target must repeat the saving throw, reducing its hit point maximum by 5 (1d10) on a failure. The disease is cured on a success. The target dies if the disease reduces its hit point maximum to 0. This reduction to the target's hit point maximum lasts until the disease is cured.\n\nThe Otyugh attacks with its Bite. If the target is a creature, it must make a Constitution saving throw. Every 24 hours that elapse, the target must repeat the saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BPYsBEkmZMcGYZDh","name":"Tentacle","type":"weapon","img":"icons/creatures/tentacles/tentacles-thing-green.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 10 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage plus 4 (1d8) piercing damage.If the target is Medium or smaller, it is grappled (escape DC 13) and restrained until the grapple ends. The otyugh has two tentacles, each of which can grapple one target.The Otyugh attacks with its Tentacle. If the target is Medium or smaller, it is grappled, and restrained until the grapple ends. The otyugh has two tentacles, each of which can grapple one target.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","bludgeoning"],["1d8","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9d1ZhvT1vIJsNnN1","name":"Tentacle Slam","type":"feat","img":"icons/magic/death/undead-skeleton-deformed-red.webp","system":{"description":{"value":"The otyugh slams creatures grappled by it into each other or a solid surface. Each creature must succeed on a DC 14 Constitution saving throw or take 10 (2d6 + 3) bludgeoning damage and be stunned until the end of the otyugh's next turn. On a successful save, the target takes half the bludgeoning damage and isn't stunned.The otyugh slams creatures grappled by it into each other or a solid surface. Each creature must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.QiM1nbPzbLzKnfmP"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"O9otNESvCCUdwYhc","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The otyugh makes three attacks: one with its bite and two with its tentacles.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233010,"modifiedTime":1672596104610,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kSAi2KRonL4G4JpO","name":"Giant Frog","type":"npc","img":"","system":{"abilities":{"str":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":18,"min":0,"max":18,"temp":0,"tempmax":0,"formula":"4d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":30,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Frog","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ERYnD50Ibrrag5s6","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The frog can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SE3xtItC4V2Eckjk","name":"Standing Leap","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The frog's long jump is up to 20 ft. and its high jump is up to 10 ft., with or without a running start.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.f4yvSah35ixQOswD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2y826IUSIAgmYf2c","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) piercing damage.\nThe target is grappled (escape DC 11). Until this grapple ends, the target is restrained, and the frog can't bite another target.\n\nThe Giant Frog attacks with its Bite. If successful, the target is grappled. Until this grapple ends, the target is restrained, and the frog can't bite another target.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"37M4eUyS3kovXqdr","name":"Swallow","type":"feat","img":"icons/creatures/abilities/mouth-teeth-tongue-purple.webp","system":{"description":{"value":"\nThe frog makes one bite attack against a Small or smaller target it is grappling. If the attack hits, the target is swallowed, and the grapple ends.\nThe swallowed target is blinded and restrained, it has total cover against attacks and other effects outside the frog, and it takes 5 (2d4) acid damage at the start of each of the frog's turns. The frog can have only one target swallowed at a time. If the frog dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 5 ft. of movement, exiting prone.\n\nThe Giant Frog attacks with its Swallow.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.aH5ncM30tP8tPQ24"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233012,"modifiedTime":1672596104657,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kVg37NlPcACAzjCT","name":"Kraken","type":"npc","img":"","system":{"abilities":{"str":{"value":30,"proficient":1,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":25,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":22,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":472,"min":0,"max":472,"temp":null,"tempmax":0,"formula":"27d20 + 189"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":60,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"monstrosity","subtype":"Titan","swarm":"","custom":""},"environment":"Underwater","cr":23,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"grg","di":{"value":["bludgeoning","lightning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["frightened","paralyzed"],"custom":""},"languages":{"value":[],"custom":"understands Abyssal, Celestial, Infernal, and Primordial but can't speak;telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":0,"max":0},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Kraken","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"lPywASGOeP26s2D9","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The kraken can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uxrpcslS4BkraMVB","name":"Freedom of Movement","type":"feat","img":"icons/skills/movement/feet-winged-boots-brown.webp","system":{"description":{"value":"The kraken ignores difficult terrain, and magical effects can't reduce its speed or cause it to be restrained. It can spend 5 feet of movement to escape from nonmagical restraints or being grappled.The kraken ignores difficult terrain, and magical effects can't reduce its speed or cause it to be restrained. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fUMY4b9snsiKl30e"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1oNtSpRA4XS3L6to","name":"Siege Monster","type":"feat","img":"icons/creatures/magical/construct-iron-stomping-yellow.webp","system":{"description":{"value":"The kraken deals double damage to objects and structures.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.cSA0EbjlxCbst4gJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"j4xzhdYjtz2migUE","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The kraken makes three tentacle attacks, each of which it can replace with one use of Fling.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"r51OovswZTVF8Yna","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+17 to hit,, 5 ft., one target. Hit: 23 (3d8 + 10) piercing damage.\nIf the target is a Large or smaller creature grappled by the kraken, that creature is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the kraken, and it takes 42 (12d6) acid damage at the start of each of the kraken's turns. If the kraken takes 50 damage or more on a single turn from a creature inside it, the kraken must succeed on a DC 25 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the kraken. If the kraken dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 15 feet of movement, exiting prone.\n\nThe Kraken attacks with its Bite. If the target is a Large or smaller creature grappled by the kraken, that creature is swallowed, and the grapple ends.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8+@mod","piercing"]],"versatile":""},"formula":"12d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lfg28JvVAru30yJ4","name":"Tentacle","type":"weapon","img":"icons/creatures/tentacles/tentacles-thing-green.webp","system":{"description":{"value":"\nMelee Weapon Attack:+17 to hit,, 30 ft., one target. Hit: 20 (3d6 + 10) bludgeoning damage.\nThe target is grappled (escape DC 18). Until this grapple ends, the target is restrained. The kraken has ten tentacles, each of which can grapple one target.\n\nThe Kraken attacks with its Tentacle. The target is grappled. Until this grapple ends, the target is restrained. The kraken has ten tentacles, each of which can grapple one target.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bwwyMBn4QwiNd4SM","name":"Fling","type":"feat","img":"icons/creatures/webs/webthin-blue.webp","system":{"description":{"value":"One Large or smaller object held or creature grappled by the kraken is thrown up to 60 feet in a random direction and knocked prone. If a thrown target strikes a solid surface, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 18 Dexterity saving throw or take the same damage and be knocked prone.One Large or smaller object held or creature grappled by the kraken is thrown up to 60 feet in a random direction and knocked prone. If the target is thrown at another creature, that creature must make a Dexterity saving throw or take the same damage and be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hxXzd3KCfnqnT89w"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wVCkpBj5omvdfaMm","name":"Lightning Storm","type":"feat","img":"icons/magic/lightning/bolts-forked-large-blue-yellow.webp","system":{"description":{"value":"The kraken magically creates three bolts of lightning, each of which can strike a target the kraken can see within 120 feet of it. A target must make a DC 23 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.The kraken magically creates three bolts of lightning, each of which can strike a target the kraken can see within 120 feet of it. A target must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":3,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":23,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.gM767AhU36B6LUGU"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ojhTng7wa5ehcJz3","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe kraken can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The kraken regains spent legendary actions at the start of its turn.\n\nThe kraken can take 3 legendary actions.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"y6iT81UwIkojo6c5","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"K9y1op1wZOMNsFg0","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"e2EtrJsAPZ19WuE7","name":"Tentacle Attack or Fling","type":"feat","img":"icons/creatures/tentacles/tentacles-thing-green.webp","system":{"description":{"value":"The kraken makes one tentacle attack or uses its Fling.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.czKwBo1qw5O2gCNy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OKGAJSxcW9xQiwyj","name":"Lightning Storm","type":"feat","img":"icons/magic/lightning/bolts-forked-large-blue-yellow.webp","system":{"description":{"value":"The kraken uses Lightning Storm.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.gM767AhU36B6LUGU"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"K0T5NDyi2n8Yt8Ts","name":"Ink Cloud","type":"feat","img":"icons/magic/air/wind-vortex-swirl-purple.webp","system":{"description":{"value":"\nWhile Underwater, the Kraken expels an ink cloud in a 60-foot radius. The cloud spreads around corners, and that area is heavily obscured to creatures other than the Kraken. Each creature other than the Kraken that ends its turn there must succeed on a DC 23 Constitution saving throw, taking 16 (3d10) poison damage on a failed save, or half as much damage on a successful one. A strong current disperses the cloud, which otherwise disappears at the end of the kraken's next turn.\n\nThe Kraken expels an ink cloud. The cloud spreads around corners, and that area is heavily obscured to creatures other than the Kraken. Each creature other than the Kraken that ends its turn there must succeed on a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":3,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":3},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":23,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bojUXmNOZ2rJVujD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233015,"modifiedTime":1672596104751,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kr6r8bhSehACPfZ8","name":"Chimera","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":114,"min":0,"max":114,"temp":null,"tempmax":0,"formula":"12d10 + 48"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":6,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"Understands Draconic but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Chimera","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"dDrIfOa408VFGv4a","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) piercing damage.\nThe Chimera attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"J98n5dL3pMkWGu69","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\nThe Chimera attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":false,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"c4fLDKOomwlaFcac","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\nThe dragon head exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 31 (7d8) fire damage on a failed save, or half as much damage on a successful one.\nThe dragon head exhales fire in a 15-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"none"},"uses":{"value":1,"max":"1","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["7d8","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":15,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sAkv9mnK6l5nXmcz","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The chimera makes three attacks: one with its bite, one with its horns, and one with its claws. When its fire breath is available, it can use the breath in place of its bite or horns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"m5xGw7RgVRGTklJT","name":"Horns","type":"weapon","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nMelee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 10 (1d12 + 4) bludgeoning damage.\nThe Chimera attacks with its Horns.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233017,"modifiedTime":1672596104800,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kz1t6xeXVwODpYb2","name":"Berserker","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":67,"min":0,"max":67,"temp":0,"tempmax":0,"formula":"9d8 + 27"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Chaotic","race":"","type":{"value":"humanoid","subtype":"Any Race","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"any one language (usually Common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Berserker","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"vdaEgOdpIO2o7GNX","name":"Hide Armor","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":12,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.n1V07puo0RQxPGuF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Qzj9HKnvRGhYoggC","name":"Reckless","type":"feat","img":"icons/skills/social/intimidation-impressing.webp","system":{"description":{"value":"At the start of its turn, the berserker can gain advantage on all melee weapon attack rolls during that turn, but attack rolls against it have advantage until the start of its next turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4v3xxn1jEEMRzLBG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RrHhFZOd6QT75V3W","name":"Greataxe","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 9 (1d12 + 3) slashing damage.\nThe Berserker attacks with their Greataxe.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":30,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.1Lxk6kmoRhG8qQ0u"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233018,"modifiedTime":1672596104842,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kz2fW9xb5CcvXLX4","name":"Dretch","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":18,"min":0,"max":18,"temp":0,"tempmax":0,"formula":"4d6 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"fiend","subtype":"Demon","swarm":"","custom":""},"environment":"","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"sm","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["cold","fire","lightning"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["abyssal"],"custom":"Telepathy 60 ft. (works only with creatures that understand Abyssal)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Dretch","displayName":0,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Ex0UN9pj0w7p4D9F","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dretch makes two attacks: one with its bite and one with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2So9DIMKKgeGHVru","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 3 (1d6) piercing damage.\nThe Dretch attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5fa9Rdzy2YYpkAgS","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 5 (2d4) slashing damage.\nThe Dretch attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JVbj7KABKYi3Z8U3","name":"Fetid Cloud","type":"feat","img":"icons/magic/acid/projectile-glowing-bubbles.webp","system":{"description":{"value":"\nA 10-foot radius of disgusting green gas extends out from the dretch. The gas spreads around corners, and its area is lightly obscured. It lasts for 1 minute or until a strong wind disperses it.\nAny creature that starts its turn in that area must succeed on a DC 11 Constitution saving throw or be poisoned until the start of its next turn. While poisoned in this way, the target can take either an action or a bonus action on its turn, not both, and can't take reactions. 1 use per day.\n\nA 10-foot radius of disgusting green gas extends out from the dretch. The gas spreads around corners, and its area is lightly obscured. Any creature that starts its turn in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.XwcFK21aM2BThgSk"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233020,"modifiedTime":1672596104884,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lOYt73eaJojBDxAV","name":"Solar","type":"npc","img":"","system":{"abilities":{"str":{"value":26,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":22,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":26,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":25,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":25,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":30,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":21,"calc":"natural","formula":""},"hp":{"value":243,"min":0,"max":243,"temp":null,"tempmax":0,"formula":"18d10 + 144"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":150,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"celestial","subtype":"","swarm":"","custom":""},"environment":"","cr":21,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["necrotic","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","radiant","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","exhaustion","frightened","poisoned"],"custom":""},"languages":{"value":[],"custom":"All; Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Solar","displayName":0,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"zkNT86Xasjyzk8Df","name":"Angelic Weapons","type":"feat","img":"icons/magic/fire/dagger-rune-enchant-flame-strong-blue-yellow.webp","system":{"description":{"value":"The solar's weapon attacks are magical. When the solar hits with any weapon, the weapon deals an extra 6d8 radiant damage (included in the attack).The solar's weapon attacks are magical. When the solar hits with any weapon, the weapon deals extra radiant damage (included in the attack).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.cz1LUaiXG8GshgU9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"T8xqterWWFewCoot","name":"Divine Awareness","type":"feat","img":"icons/magic/perception/third-eye-blue-red.webp","system":{"description":{"value":"The solar knows if it hears a lie.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lOJK48AtlIcfYPPB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"N5YFwsrzGuUFrblp","name":"Flying Sword","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The solar releases its greatsword to hover magically in an unoccupied space within 5 ft. of it. If the solar can see the sword, the solar can mentally command it as a bonus action to fly up to 50 ft. and either make one attack against a target or return to the solar's hands.If the hovering sword is targeted by any effect, the solar is considered to be holding it. The hovering sword falls if the solar dies.The solar releases its greatsword to hover magically in an unoccupied space within 5 ft. of it. If the hovering sword is targeted by any effect, the solar is considered to be holding it. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Ouvju0Y3SoYb5EMR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BqJjoHBgnTDTcLbB","name":"Healing Touch","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"The solar touches another creature. The target magically regains 40 (8d8 + 4) hit points and is freed from any curse, disease, poison, blindness, or deafness.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":4,"max":"4","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d8 + 4","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.r3Ugp8f5Ckw2EUHL"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hWnnOw9zwmvWvFT7","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The solar's spell casting ability is Charisma (spell save DC 25). It can innately cast the following spells, requiring no material components:\nAt will: detect evil and good, invisibility (self only)\n3/day each: blade barrier, dispel evil and good, resurrection\n1/day each: commune, control weather","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WYt9oaIl8PZrMDNl","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The solar has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"H0o9gjKN8xSdBHdB","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The solar makes two greatsword attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QssrfCioglFdfd8I","name":"Greatsword","type":"weapon","img":"icons/weapons/swords/greatsword-guard-gem-blue.webp","system":{"description":{"value":"\nMelee Weapon Attack:+15 to hit,, 5 ft., one target. Hit: 22 (4d6 + 8) slashing damage plus 27 (6d8) radiant damage.\nThe Solar attacks with its Greatsword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":6,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6 + @mod","slashing"],["6d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.xMkP8BmFzElcsMaR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BSLTe0yfltAnguOT","name":"Slaying Longbow","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"\nRanged Weapon Attack: +13 to hit, range 150/600 ft., one target. Hit: 15 (2d8 + 6) piercing damage plus 27 (6d8) radiant damage.\nIf the target is a creature that has 190 hit points or fewer, it must succeed on a DC 15 Constitution saving throw or die.\n\nThe Solar attacks with its Slaying Longbow. If the target is a creature that has 190 hit points or fewer, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","piercing"],["6d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sZjcCRCNcf6m4VoK","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe solar can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The solar regains spent legendary actions at the start of its turn.\n\nThe solar can take 3 legendary actions.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"H4Qnl5aNwIuOiKvm","name":"Teleport","type":"feat","img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","system":{"description":{"value":"The solar magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.PPzVD90vab60FqCt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hvLibxV3shPORnBB","name":"Searing Burst","type":"feat","img":"icons/magic/light/explosion-star-glow-yellow.webp","system":{"description":{"value":"The solar emits magical, divine energy. Each creature of its choice in a 10-foot radius must make a DC 23 Dexterity saving throw, taking 14 (4d6) fire damage plus 14 (4d6) radiant damage on a failed save, or half as much damage on a successful one.\nThe solar emits magical, divine energy. Each creature of its choice in a 10-foot radius must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","fire"],["4d6","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":23,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.5OYruoI92fxTOLts"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iXcyU8grGuxZbkYJ","name":"Blinding Gaze","type":"feat","img":"icons/magic/perception/third-eye-blue-red.webp","system":{"description":{"value":"The solar targets one creature it can see within 30 feet of it. If the target can see it, the target must succeed on a DC 15 Constitution saving throw or be blinded until magic such as the lesser restoration spell removes the blindness.\nThe solar targets one creature it can see within 30 feet of it. If the target can see it, the target must make a Constitution saving throw.\n\nThe solar targets one creature it can see within 30 feet of it. If the target can see it, the target must succeed on a Constitution saving throw or be blinded.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":3,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":3},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.8C6hkMXWLeymmJ5C"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eNypfn99CwFCi47y","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wxR8cWGMfaaMKc1W","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Mzh95utKDPIrjiH8","name":"Detect Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Mzh95utKDPIrjiH8"}},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234128,"modifiedTime":1661791116764,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"1N8dDMMgZ1h1YJ3B","name":"Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An eyelash encased in gum arabic","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.1N8dDMMgZ1h1YJ3B"}},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234056,"modifiedTime":1661791116765,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"dLJhxDfeyOsc3zsY","name":"Blade Barrier","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a vertical wall of whirling, razor-sharp blades made of magical energy. The wall appears within range and lasts for the duration. You can make a straight wall up to 100 feet long, 20 feet high, and 5 feet thick, or a ringed wall up to 60 feet in diameter, 20 feet high, and 5 feet thick. The wall provides three-quarters cover to creatures behind it, and its space is difficult terrain.When a creature enters the wall's area for the first time on a turn or starts its turn there, the creature must make a Dexterity saving throw. On a failed save, the creature takes 6d10 slashing damage. On a successful save, the creature takes half as much damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"wall"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d10","slashing"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":25,"scaling":"spell"},"level":6,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.dLJhxDfeyOsc3zsY"}},"img":"icons/magic/light/projectile-beams-salvo-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234179,"modifiedTime":1661791116765,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"TkJ8Wtg1L7TZtspm","name":"Dispel Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Shimmering energy surrounds and protects you from fey, Undead, and creatures originating from Beyond the Material Plane. For the Duration, Celestials, Elementals, fey, Fiends, and undead have disadvantage on Attack rolls against you.You can end the spell early by using either of the following special functions.Break Enchantment. As your action, you touch a creature you can reach that is Charmed, Frightened, or possessed by a Celestial, an elemental, a fey, a fiend, or an Undead. The creature you touch is no longer charmed, frightened, or possessed by such creatures.Dismissal. As your action, make a melee spell Attack against a Celestial, an elemental, a fey, a fiend, or an Undead you can reach. On a hit, you attempt to drive the creature back to its home plane. The creature must succeed on a Charisma saving throw or be sent back to its home plane (if it isn't there already). If they aren't on their home plane, undead are sent to the Shadowfell, and fey are sent to the Feywild.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":25,"scaling":"spell"},"level":5,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Holy water or powdered silver and iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.TkJ8Wtg1L7TZtspm"}},"img":"icons/magic/air/air-burst-spiral-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234146,"modifiedTime":1661791116765,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"jhhT9PsHy5A7EojO","name":"Resurrection","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a dead creature that has been dead for no more than a century, that didn't die of old age, and that isn't undead. If its soul is free and willing, the target returns to life with all its hit points.This spell neutralizes any poisons and cures normal diseases afflicting the creature when it died. It doesn't, however, remove magical diseases, curses, and the like; if such effects aren't removed prior to casting the spell, they afflict the target on its return to life.This spell closes all mortal wounds and restores any missing body parts.Coming back from the dead is an ordeal. The target takes a −4 penalty to all attack rolls, saving throws, and ability checks. Every time the target finishes a long rest, the penalty is reduced by 1 until it disappears.Casting this spell to restore life to a creature that has been dead for one year or longer taxes you greatly. Until you finish a long rest, you can't cast spells again, and you have disadvantage on all attack rolls, ability checks, and saving throws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A diamond worth at least 1,000 gp, which the spell consumes","consumed":true,"cost":1000,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.jhhT9PsHy5A7EojO"}},"img":"icons/magic/life/heart-cross-strong-flame-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234213,"modifiedTime":1661791116766,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"d54VDyFulD9xxY7J","name":"Commune","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You contact your deity or a divine proxy and ask up to three questions that can be answered with a yes or no. You must ask your questions before the spell ends. You receive a correct answer for each question.Divine beings aren't necessarily omniscient, so you might receive \"unclear\" as an answer if a question pertains to information that lies beyond the deity's knowledge. In a case where a one-word answer could be misleading or contrary to the deity's interests, the DM might offer a short phrase as an answer instead.If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get no answer. The DM makes this roll in secret.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"Incense and a vial of holy or unholy water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.d54VDyFulD9xxY7J"}},"img":"icons/magic/control/debuff-energy-hold-levitate-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234177,"modifiedTime":1661791116766,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ZPd73HtKF3At11jh","name":"Control Weather","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You take control of the weather within 5 miles of you for the duration. You must be outdoors to cast this spell. Moving to a place where you don't have a clear path to the sky ends the spell early.When you cast the spell, you change the current weather conditions, which are determined by the DM based on the climate and season. You can change precipitation, temperature, and wind. It takes 1d4 x 10 minutes for the new conditions to take effect. Once they do so, you can change the conditions again. When the spell ends, the weather gradually returns to normal.When you change the weather conditions, find a current condition on the following tables and change its stage by one, up or down. When changing the wind, you can change its direction.Conditions\n\nClear\nLight clouds\nOvercast or ground fog\nRain, hail, or snow\nTorrential rain, driving hail, or blizzard\n\nTemperature\n\nUnbearable heat\nHot\nWarm\nCool\nCold\nArctic cold\n\nWind\n\nCalm\nModerate wind\nStrong wind\nGale\nStorm\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":5,"width":null,"units":"mi","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Burning incense and bits of earth and wood mixed in water.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ZPd73HtKF3At11jh"}},"img":"icons/magic/air/wind-tornado-cyclone-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234163,"modifiedTime":1661791116766,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233022,"modifiedTime":1672596104993,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lZR4lhNmYSf89s4Q","name":"Boar","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Boar","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ypnf9maxKh66ucMe","name":"Tusk","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) slashing damage.\nThe Boar attacks with its Tusk.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TSmET06nE61H6HC2","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nIf the boar moves at least 20 ft. straight toward a target and then hits it with a tusk attack on the same turn, the target takes an extra 3 (1d6) slashing damage.\nIf the target is a creature, it must succeed on a DC 11 Strength saving throw or be knocked prone.\n\nIf the boar moves at least 20 ft. straight toward a target and then hits it with a tusk attack on the same turn, the target takes extra slashing damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6","slashing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"U66PTM15QvmkenvW","name":"Relentless","type":"feat","img":"icons/magic/water/heart-ice-freeze.webp","system":{"description":{"value":"\nIf the boar takes 7 damage or less that would reduce it to 0 hit points, it is reduced to 1 hit point instead. Recharges on a short or long rest.\n\nIf the boar takes damage that would reduce it to 0 hit points, it is reduced to 1 hit point instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.8FX2KlWyBAKEYGzs"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233025,"modifiedTime":1672596105404,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"llSG0Hi4eGlRlQ4o","name":"Phase Spider","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":32,"min":0,"max":32,"temp":0,"tempmax":0,"formula":"5d10 + 5"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":3,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Phase Spider","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"LKJEecvimhbb9hhg","name":"Ethereal Jaunt","type":"feat","img":"icons/magic/lightning/orb-ball-purple.webp","system":{"description":{"value":"As a bonus action, the spider can magically shift from the Material Plane to the Ethereal Plane, or vice versa.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.3iLXiqhhOgXOMMg7"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"X78NpT0YZG0rZcaP","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The spider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HZklbue3nXLHIevM","name":"Web Walker","type":"feat","img":"icons/magic/nature/tree-bare-glow-yellow.webp","system":{"description":{"value":"The spider ignores movement restrictions caused by webbing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zITrVwmnPpLoBZI1"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2HPk5TdUTeEhD2eG","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 7 (1d10 + 2) piercing damage.The target must make a DC 11 Constitution saving throw, taking 18 (4d8) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but poisoned for 1 hour, even after regaining hit points, and is paralyzed while poisoned in this way.The Phase Spider attacks with its Bite. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"4d8","save":{"ability":"con","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233138,"modifiedTime":1672596105457,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lyNBFmJdbh4NLRzz","name":"Sahuagin","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"4d8 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"humanoid","subtype":"Sahuagin","swarm":"","custom":""},"environment":"Underwater","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"Sahuagin"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Sahuagin","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"UqpaWsGVgiCMSZEw","name":"Spear","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"A gleaming steel point mouted atop a stout wooden haft, the spear may be wielded in one hand or two and can puncture through the heaviest armor with deadly force.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"thr":true,"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.OG4nBBydvmfWYXIk"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NSdAR332o65ZE3hC","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 3 (1d4 + 1) piercing damage.The Sahuagin attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uyWDYVSAJuCfayLE","name":"Blood Frenzy","type":"feat","img":"icons/skills/wounds/blood-spurt-spray-red.webp","system":{"description":{"value":"The sahuagin has advantage on melee attack rolls against any creature that doesn't have all its hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.B2kZOyrB7poB4liR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VJlDAg21VwBOjbuR","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 3 (1d4 + 1) slashing damage.The Sahuagin attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lH49mvA2g5C44yM4","name":"Limited Amphibiousness","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The sahuagin can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating.The sahuagin can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.boO7LJ0RRinoWHyT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1aEgtsYuxz12hFn3","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The sahuagin makes two melee attacks: one with its bite and one with its claws or spear.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SQqFFwf2ADQmLaVO","name":"Shark Telepathy","type":"feat","img":"icons/magic/unholy/orb-swirling-teal.webp","system":{"description":{"value":"The sahuagin can magically command any shark within 120 feet of it, using a limited telepathy.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.UYorz1ZrfuoTRknp"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233140,"modifiedTime":1672596105500,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"m4H3hjamBNMH09S9","name":"Deva","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":136,"min":0,"max":136,"temp":null,"tempmax":0,"formula":"16d8 + 64"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":90,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"celestial","subtype":"","swarm":"","custom":""},"environment":"","cr":10,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","radiant","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","exhaustion","frightened"],"custom":""},"languages":{"value":[],"custom":"All; Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Deva","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"KRskTTMCEepXUPwU","name":"Angelic Weapons","type":"feat","img":"icons/magic/fire/dagger-rune-enchant-flame-strong-blue-yellow.webp","system":{"description":{"value":"The deva's weapon attacks are magical. When the deva hits with any weapon, the weapon deals an extra 4d8 radiant damage (included in the attack).The deva's weapon attacks are magical. When the deva hits with any weapon, the weapon deals extra radiant damage (included in the attack).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.cz1LUaiXG8GshgU9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3u5Rv7dQ2fIl1rbB","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The deva magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the deva's choice).\nIn a new form, the deva retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and special senses are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Lx0nT1oq0bLjX1lx","name":"Healing Touch","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"The deva touches another creature. The target magically regains 20 (4d8 + 2) hit points and is freed from any curse, disease, poison, blindness, or deafness.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8 + 2","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.r3Ugp8f5Ckw2EUHL"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dhEmGtIDAZEBrsZ2","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The deva's spellcasting ability is Charisma (spell save DC 17). The deva can innately cast the following spells, requiring only verbal components:\nAt will: detect evil and good\n1/day each: commune, raise dead","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yo4YL40mReo1Gwx5","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The deva has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"P3T5BWT2TFHCxUkr","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The deva makes two melee attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qADu4OS68yINJCnZ","name":"Mace","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage plus 18 (4d8) radiant damage.\nThe Deva attacks with its Mace.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":4,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"],["4d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Ajyq6nGwF7FtLhDQ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Mzh95utKDPIrjiH8","name":"Detect Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Mzh95utKDPIrjiH8"}},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234128,"modifiedTime":1661791116786,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"d54VDyFulD9xxY7J","name":"Commune","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You contact your deity or a divine proxy and ask up to three questions that can be answered with a yes or no. You must ask your questions before the spell ends. You receive a correct answer for each question.Divine beings aren't necessarily omniscient, so you might receive \"unclear\" as an answer if a question pertains to information that lies beyond the deity's knowledge. In a case where a one-word answer could be misleading or contrary to the deity's interests, the DM might offer a short phrase as an answer instead.If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get no answer. The DM makes this roll in secret.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"Incense and a vial of holy or unholy water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.d54VDyFulD9xxY7J"}},"img":"icons/magic/control/debuff-energy-hold-levitate-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234177,"modifiedTime":1661791116787,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"AGFMPAmuzwWO6Dfz","name":"Raise Dead","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You return a dead creature you touch to life, provided that it has been dead no longer than 10 days. If the creature's soul is both willing and at liberty to rejoin the body, the creature returns to life with 1 hit point.This spell also neutralizes any poisons and cures nonmagical diseases that affected the creature at the time it died. This spell doesn't, however, remove magical diseases, curses, or similar effects; if these aren't first removed prior to casting the spell, they take effect when the creature returns to life. The spell can't return an undead creature to life.This spell closes all mortal wounds, but it doesn't restore missing body parts. If the creature is lacking body parts or organs integral for its survival—its head, for instance—the spell automatically fails.Coming back from the dead is an ordeal. The target takes a −4 penalty to all attack rolls, saving throws, and ability checks. Every time the target finishes a long rest, the penalty is reduced by 1 until it disappears.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A diamond worth at least 500gp, which the spell consumes.","consumed":true,"cost":500,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.AGFMPAmuzwWO6Dfz"}},"img":"icons/magic/life/heart-cross-strong-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234087,"modifiedTime":1661791116787,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233142,"modifiedTime":1672596105591,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"mNijwXPMhwR7yYfc","name":"Young Blue Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":152,"min":0,"max":152,"temp":0,"tempmax":0,"formula":"16d10 + 64"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":40,"climb":0,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":9,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["lightning"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Young Blue Dragon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"42AGHJQzJZfUYxF9","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage plus 5 (1d10) lightning damage.The Young Blue Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["1d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YSVencwrBzRdfm62","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.The Young Blue Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7XDStiwr5cRAODjk","name":"Lightning Breath","type":"feat","img":"icons/magic/lightning/bolt-strike-blue.webp","system":{"description":{"value":"The dragon exhales lightning in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":16,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LVnd9fq9cQj7rR0Q"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dGVHjuCt6WhGx0sX","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233143,"modifiedTime":1672596105641,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"mQnsXanewsPiV7QE","name":"Mage","type":"npc","img":"","system":{"abilities":{"str":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":40,"min":0,"max":40,"temp":0,"tempmax":0,"formula":"9d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"int"},"details":{"biography":{"value":"","public":""},"alignment":"Any Alignment","race":"","type":{"value":"humanoid","subtype":"Any Race","swarm":"","custom":""},"environment":"","cr":6,"spellLevel":9,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"any four languages"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":4,"override":null},"spell2":{"value":3,"override":null},"spell3":{"value":3,"override":null},"spell4":{"value":3,"override":null},"spell5":{"value":1,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Mage","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"tbKbwgcprUBciliF","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"\nThe mage is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save DC 14, +6 to hit with spell attacks). The mage has the following wizard spells prepared:\nCantrips (at will): fire bolt, light, mage hand, prestidigitation\n1st level (4 slots): detect magic, mage armor, magic missile, shield\n2nd level (3 slots): misty step, suggestion\n3rd level (3 slots): counterspell, fireball, fly\n4th level (3 slots): greater invisibility, ice storm\n5th level (1 slot): cone of cold\n\nThe mage is a spellcaster. Its spellcasting ability is Intelligence.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LcMdsxbtVEhUDXju","name":"Dagger","type":"weapon","img":"icons/weapons/daggers/dagger-jeweled-purple.webp","system":{"description":{"value":"Melee or Ranged Weapon Attack: +5 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 4 (1d4 + 2) piercing damage.The Mage attacks with its Dagger.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":true,"fir":false,"foc":false,"hvy":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.0E565kQUBmndJ1a2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EOmsUcFQJTfG2oio","name":"Fire Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You hurl a mote of fire at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried.This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.EOmsUcFQJTfG2oio"}},"img":"icons/magic/fire/projectile-fireball-smoke-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234100,"modifiedTime":1661791116808,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Bnn9Nzajixvow9xi","name":"Light","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":14,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A firefly or phosphorescent moss.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Bnn9Nzajixvow9xi"}},"img":"icons/magic/light/explosion-star-small-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234093,"modifiedTime":1661791116808,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Utk1OQRwYkMkFRD3","name":"Mage Hand","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.The hand can't attack, activate magic items, or carry more than 10 pounds.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Utk1OQRwYkMkFRD3"}},"img":"icons/magic/water/water-hand.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234148,"modifiedTime":1661791116809,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"udsLtG0BugXHR2JQ","name":"Prestidigitation","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell is a minor magical trick that novice spellcasters use for practice. You create one of the following magical effects within range:\n\nYou create an instantaneous, harmless sensory effect, such as a shower of sparks, a puff of wind, faint musical notes, or an odd odor.\nYou instantaneously light or snuff out a candle, a torch, or a small campfire.\nYou instantaneously clean or soil an object no larger than 1 cubic foot.\nYou chill, warm, or flavor up to 1 cubic foot of nonliving material for 1 hour.\nYou make a color, a small mark, or a symbol appear on an object or a surface for 1 hour.\nYou create a nonmagical trinket or an illusory image that can fit in your hand and that lasts until the end of your next turn.\n\nIf you cast this spell multiple times, you can have up to three of its non-instantaneous effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.udsLtG0BugXHR2JQ"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234236,"modifiedTime":1661791116809,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116809,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"CKZTpZlxj7hjjo2H","name":"Mage Armor","type":"spell","img":"icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp","system":{"description":{"value":"You touch a willing creature who isn't wearing armor, and a protective magical force surrounds it until the spell ends. The target's base AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor or if you dismiss the spell as an action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A piece of cured leather","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"cfwMU7LuOJ619Lny","changes":[{"key":"system.attributes.ac.calc","value":"mage","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp","label":"Mage Armor","origin":"Compendium.dnd5e.spells.CKZTpZlxj7hjjo2H","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.CKZTpZlxj7hjjo2H"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234095,"modifiedTime":1661791116810,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"41JIhpDyM9Anm7cs","name":"Magic Missile","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create three glowing darts of magical force. Each dart hits a creature of your choice that you can see within range. A dart deals 1d4 + 1 force damage to its target. The darts all strike simultaneously, and you can direct them to hit one creature or several.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the spell creates one more dart for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + 1","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.41JIhpDyM9Anm7cs"}},"img":"icons/magic/fire/projectile-meteor-salvo-light-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234065,"modifiedTime":1661791116810,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"z1mx84ONwkXKUZd7","name":"Shield","type":"spell","img":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","system":{"description":{"value":"An invisible barrier of magical force appears and protects you. Until the start of your next turn, you have a +5 bonus to AC, including against the triggering attack, and you take no damage from magic missile.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":"Which you take when you are hit by an attack or targeted by the magic missile spell"},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"6pbotGIvqQkraPva","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"5","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"rounds":1,"seconds":null,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","label":"Shield","origin":"Item.FlLKKv7bQBlIAs11","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.z1mx84ONwkXKUZd7"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234244,"modifiedTime":1661791116810,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"wqfAVANuQonNBgnL","name":"Misty Step","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Briefly surrounded by silvery mist, you teleport up to 30 feet to an unoccupied space that you can see.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"space"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.wqfAVANuQonNBgnL"}},"img":"icons/magic/control/debuff-energy-snare-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234238,"modifiedTime":1661791116811,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"zMAWdyc8UVb37BK4","name":"Suggestion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You suggest a course of activity (limited to a sentence or two) and magically influence a creature you can see within range that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act ends the spell.The target must make a Wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do.You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a knight give her warhorse to the first beggar she meets. If the condition isn't met before the spell expires, the activity isn't performed.If you or any of your companions damage the target, the spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A snake's tongue and either a bit of honeycomb or a drop of sweet oil","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.zMAWdyc8UVb37BK4"}},"img":"icons/magic/air/air-burst-spiral-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234245,"modifiedTime":1661791116811,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Ek45cBpVXvJdv1Qy","name":"Counterspell","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to interrupt a creature in the process of casting a spell. If the creature is casting a spell of 3rd level or lower, its spell fails and has no effect. If it is casting a spell of 4th level or higher, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a success, the creature's spell fails and has no effect.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the interrupted spell has no effect if its level is less than or equal to the level of the spell slot you used.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":"which you take when you see a creature within 60 feet of you casting a spell"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d20 + @mod","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":false,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Ek45cBpVXvJdv1Qy"}},"img":"icons/skills/melee/strike-blade-hooked-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234102,"modifiedTime":1661791116811,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ztgcdrWPshKRpFd0","name":"Fireball","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A bright streak flashes from your pointing finger to a point you choose within range and then blossoms with a low roar into an explosion of flame. Each creature in a 20-foot-radius sphere centered on that point must make a Dexterity saving throw. A target takes 8d6 fire damage on a failed save, or half as much damage on a successful one.The fire spreads around corners. It ignites flammable objects in the area that aren't being worn or carried.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":14,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A tiny ball of bat guano and sulfur","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ztgcdrWPshKRpFd0"}},"img":"icons/magic/fire/projectile-fireball-smoke-large-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234246,"modifiedTime":1661791116812,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"yfbK8gZqESlaoY5t","name":"Fly","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a willing creature. The target gains a flying speed of 60 feet for the Duration. When the spell ends, the target falls if it is still aloft, unless it can stop the fall.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A wing feather from any bird","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.yfbK8gZqESlaoY5t"}},"img":"icons/magic/control/energy-stream-link-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234243,"modifiedTime":1661791116812,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"tEpDmYZNGc9f5OhJ","name":"Greater Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You or a creature you touch becomes Invisible until the spell ends. Anything the target is wearing or carrying is Invisible as long as it is on the target's person.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.tEpDmYZNGc9f5OhJ"}},"img":"icons/magic/air/fog-gas-smoke-swirling-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234234,"modifiedTime":1661791116812,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WN2LWEljYU6QqnRH","name":"Ice Storm","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A hail of rock-hard ice pounds to the ground in a 20-foot-radius, 40-foot-high Cylinder centered on a point within range. Each creature in the cylinder must make a Dexterity saving throw. A creature takes 2d8 bludgeoning damage and 4d6 cold damage on a failed save, or half as much damage on a successful one.Hailstones turn the storm's area of effect into difficult terrain until the end of your next turn.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the bludgeoning damage increases by 1d8 for each slot level above 4th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cylinder"},"range":{"value":300,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","bludgeoning"],["4d6","cold"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":14,"scaling":"spell"},"level":4,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of dust and a few drops of water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.WN2LWEljYU6QqnRH"}},"img":"icons/magic/water/projectiles-ice-faceted-shard-salvo-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234152,"modifiedTime":1661791116813,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"RpKjTlYASrfqUPVA","name":"Cone of Cold","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A blast of cold air erupts from your hands. Each creature in a 60-foot cone must make a Constitution saving throw. A creature takes 8d8 cold damage on a failed save, or half as much damage on a successful one.A creature killed by this spell becomes a frozen statue until it thaws.Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d8","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small crystal or glass cone","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.RpKjTlYASrfqUPVA"}},"img":"icons/magic/water/projectiles-ice-faceted-shard-salvo-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234138,"modifiedTime":1661791116813,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"cfwMU7LuOJ619Lny","changes":[{"key":"system.attributes.ac.calc","value":"mage","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":678,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":2,"startTurn":1},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp","label":"Mage Armor","origin":"Compendium.dnd5e.monsters.mQnsXanewsPiV7QE.Item.CKZTpZlxj7hjjo2H","transfer":false,"flags":{},"tint":null,"sort":0},{"_id":"6pbotGIvqQkraPva","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"5","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":678,"rounds":1,"seconds":null,"combat":null,"turns":null,"startRound":2,"startTurn":1},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","label":"Shield","origin":"Compendium.dnd5e.monsters.mQnsXanewsPiV7QE.Item.z1mx84ONwkXKUZd7","tint":null,"transfer":false,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233145,"modifiedTime":1672596105756,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"mWbrPhcKOz6oLXMV","name":"Doppelganger","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":52,"min":0,"max":52,"temp":0,"tempmax":0,"formula":"8d8 + 16"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"monstrosity","subtype":"Shapechanger","swarm":"","custom":""},"environment":"Underdark","cr":3,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed"],"custom":""},"languages":{"value":["common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":2,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Doppelganger","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Cp2MgsVDDSRiF2aj","name":"Ambusher","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"In the first round of a combat, the doppelganger has advantage on attack rolls against any creature it has surprised.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EMygUh5uRujWaFYK"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yfN4gklLV7zqhzxo","name":"Surprise Attack","type":"feat","img":"icons/magic/water/elemental-water.webp","system":{"description":{"value":"If the doppelganger surprises a creature and hits it with an attack during the first round of combat, the target takes an extra 10 (3d6) damage from the attack.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.5DJYFjGQCz5aSl5e"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Sr7ZTAYd1TQ6Nfto","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The doppelganger makes two melee attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"scZU8bs551DZRvgC","name":"Slam","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage.\nThe Doppelganger attacks with its Slam.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YIoB9xCKEcrrPRt9","name":"Read Thoughts","type":"feat","img":"icons/magic/control/hypnosis-mesmerism-watch.webp","system":{"description":{"value":"\nThe doppelganger magically reads the surface thoughts of one creature within 60 ft. of it. The effect can penetrate barriers, but 3 ft. of wood or dirt, 2 ft. of stone, 2 inches of metal, or a thin sheet of lead blocks it.\nWhile the target is in range, the doppelganger can continue reading its thoughts, as long as the doppelganger's concentration isn't broken (as if concentrating on a spell). While reading the target's mind, the doppelganger has advantage on Wisdom (Insight) and Charisma (Deception, Intimidation, and Persuasion) checks against the target.\n\nThe doppelganger magically reads the surface thoughts of one creature within 60 ft. of it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.w5mFTTFsdKC7TXgg"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"cG4WdhcrTZt6rxUi","name":"Shapechanger","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The doppelganger can use its action to polymorph into a Small or Medium humanoid it has seen, or back into its true form.Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies.The doppelganger can use its action to polymorph into a Small or Medium humanoid it has seen, or back into its true form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233147,"modifiedTime":1672596105828,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"n4TEv7inVUkyZviN","name":"Bandit","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Non-Lawful","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"","cr":0.125,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"any one language (usually Common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Bandit","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"4oIyAj7rN5JbTjDZ","name":"Scimitar","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) slashing damage.\nThe Bandit attacks with their Scimitar.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.fbC0Mg1a73wdFbqO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hSxEhrT9CFdLG40m","name":"Light Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"\nRanged Weapon Attack: +3 to hit, range 80 ft./320 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\nThe Bandit attacks with their Light Crossbow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"lgt":true,"two":true,"amm":true,"fin":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.ddWvQRLmnnIS0eLF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pByEnV0Y7QOI0ndA","name":"Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233149,"modifiedTime":1672596105878,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nEC1BRwM8Lx9hLXW","name":"Androsphinx","type":"npc","img":"","system":{"abilities":{"str":{"value":22,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":199,"min":0,"max":199,"temp":null,"tempmax":0,"formula":"19d10 + 95"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":"wis"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Neutral","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":17,"spellLevel":12,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["bludgeoning","piercing","psychic","slashing"],"bypasses":["mgc"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened"],"custom":""},"languages":{"value":["common"],"custom":"Sphinx"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":2,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":4,"override":null},"spell2":{"value":3,"override":null},"spell3":{"value":3,"override":null},"spell4":{"value":3,"override":null},"spell5":{"value":2,"override":null},"spell6":{"value":1,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":0,"max":0},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Androsphinx","displayName":0,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"IZgoYn3Baw7MAZCT","name":"Inscrutable","type":"feat","img":"icons/magic/perception/third-eye-blue-red.webp","system":{"description":{"value":"The sphinx is immune to any effect that would sense its emotions or read its thoughts, as well as any divination spell that it refuses. Wisdom (Insight) checks made to ascertain the sphinx's intentions or sincerity have disadvantage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FHrFOjEfkdRm4u43"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wmqCsq80pewLPg4c","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The sphinx's weapon attacks are magical.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zXzGfPnSFJbfZ7oW","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"\nThe sphinx is a 12th-level spellcaster. Its spellcasting ability is Wisdom (spell save DC 18, +10 to hit with spell attacks). It requires no material components to cast its spells. The sphinx has the following cleric spells prepared:\n• Cantrips (at will): sacred flame, spare the dying, thaumaturgy• 1st level (4 slots): command, detect evil and good, detect magic• 2nd level (3 slots): lesser restoration, zone of truth• 3rd level (3 slots): dispel magic, tongues• 4th level (3 slots): banishment, freedom of movement• 5th level (2 slots): flame strike, greater restoration• 6th level (1 slot): heroes' feast\n\nThe sphinx is a spellcaster. Its spellcasting ability is Wisdom.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yotsIj19d5spOVGb","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+12 to hit,, 5 ft., one target. Hit: 17 (2d10 + 6) slashing damage.\nThe Androsphinx attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gddHh6xWKLMmCT1J","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The sphinx makes two claw attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ez87kySQJgKUPT9L","name":"Roar","type":"feat","img":"icons/magic/sonic/scream-wail-shout-teal.webp","system":{"description":{"value":"\nThe sphinx emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different, as detailed below. Each creature within 500 feet of the sphinx and able to hear the roar must make a saving throw.\n**First Roar.** Each creature that fails a DC 18 Wisdom saving throw is frightened for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.**Second Roar.** Each creature that fails a DC 18 Wisdom saving throw is deafened and frightened for 1 minute. A frightened creature is paralyzed and can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.**Third Roar.** Each creature makes a DC 18 Constitution saving throw. On a failed save, a creature takes 44 (8d10) thunder damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone.\n\nThe sphinx emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different. Each creature within 500 feet of the sphinx and able to hear the roar must make a saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":500,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.QCNJD2GuOZSTT4Wt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sCcGdT18vb7al854","name":"First Roar","type":"feat","img":"icons/magic/sonic/scream-wail-shout-teal.webp","system":{"description":{"value":"Each creature that fails a DC 18 Wisdom saving throw is frightened for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.T25IRJ66yUqi2F1m"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hrPPu1rypQZWPHDp","name":"Second Roar","type":"feat","img":"icons/magic/sonic/scream-wail-shout-teal.webp","system":{"description":{"value":"Each creature that fails a DC 18 Wisdom saving throw is deafened and frightened for 1 minute. A frightened creature is paralyzed and can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lWnUAwBPfJf9WupM"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"guh5qlJFR8iKncKj","name":"Third Roar","type":"feat","img":"icons/magic/sonic/scream-wail-shout-teal.webp","system":{"description":{"value":"Each creature makes a DC 18 Constitution saving throw. On a failed save, a creature takes 44 (8d10) thunder damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d10","thunder"]],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WtQHjfWuFrsYEns3"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"u7KoAMVBDhcaWQAd","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"The sphinx can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature’s turn. The sphinx regains spent legendary actions at the start of its turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":3,"max":"3","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fZY6aMo87z2iSl9Q","name":"Claw Attack","type":"feat","img":"icons/skills/melee/blood-slash-foam-red.webp","system":{"description":{"value":"The sphinx makes one claw attack.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.DPrO7eVVxiKD8QWD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZZdoas8GMbE3AzzZ","name":"Teleport","type":"feat","img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","system":{"description":{"value":"The sphinx magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.PPzVD90vab60FqCt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"COSA7NBYXiWccqNu","name":"Cast a Spell","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"The sphinx casts a spell from its list of prepared spells, using a spell slot as normal.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":3,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":3},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.7HPC39yg8OYshJos"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"L4i5v1sND0KLLlb4","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"If a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4htzOIEvqgitIIL6","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"n9pJzTDsAwQxJVRl","name":"Sacred Flame","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Flame-like radiance descends on a creature that you can see within range. The target must succeed on a Dexterity saving throw or take 1d8 radiant damage. The target gains no benefit from cover for this saving throw.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":18,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.n9pJzTDsAwQxJVRl"}},"img":"icons/magic/light/beam-rays-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234221,"modifiedTime":1661791116849,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"8zT7njvqbpXs4Cel","name":"Spare the Dying","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a living creature that has 0 hit points. The creature becomes stable. This spell has no effect on undead or constructs.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.8zT7njvqbpXs4Cel"}},"img":"icons/magic/life/heart-cross-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234083,"modifiedTime":1661791116850,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MUO1uYN7JR1hm4dR","name":"Thaumaturgy","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create one of the following magical effects within range:\n\nYour voice booms up to three times as loud as normal for 1 minute.\nYou cause flames to flicker, brighten, dim, or change color for 1 minute.\nYou cause harmless tremors in the ground for 1 minute.\nYou create a sound that originates from a point of your choice within range.\nYou cause an unlocked door or window to fly open or slam shut.\nYou alter the appearance of your eyes for 1 minute.\n\nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234127,"modifiedTime":1661791116850,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"arzCrMRgcNiQuh43","name":"Command","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You speak a one-word command to a creature you can see within range. The target must succeed on a Wisdom saving throw or follow the command on its next turn. The spell has no effect if the target is undead, if it doesn't understand your language, or if your command is directly harmful to it.Some typical commands and their effects follow. You might issue a command other than one described here. If you do so, the DM determines how the target behaves. If the target can't follow your command, the spell ends.Approach. The target moves toward you by the shortest and most direct route, ending its turn if it moves within 5 feet of you.Drop. The target drops whatever it is holding and then ends its turn.Flee. The target spends its turn moving away from you by the fastest available means.Grovel. The target falls prone and then ends its turn.Halt. The target doesn't move and takes no actions. A flying creature stays aloft, provided that it is able to do so. If it must move to stay aloft, it flies the minimum distance needed to remain in the air.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.arzCrMRgcNiQuh43"}},"img":"icons/magic/fire/explosion-fireball-small-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234169,"modifiedTime":1661791116850,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Mzh95utKDPIrjiH8","name":"Detect Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Mzh95utKDPIrjiH8"}},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234128,"modifiedTime":1661791116851,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116851,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"F0GsG0SJzsIOacwV","name":"Lesser Restoration","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature and can end either one disease or one condition afflicting it. The condition can be blinded, deafened, paralyzed, or poisoned.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.F0GsG0SJzsIOacwV"}},"img":"icons/magic/life/heart-cross-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234103,"modifiedTime":1661791116851,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"CylBa7jR8DSbo8Z3","name":"Zone of Truth","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a magical zone that guards against deception in a 15-foot-radius sphere centered on a point of your choice within range. Until the spell ends, a creature that enters the spell's area for the first time on a turn or starts its turn there must make a Charisma saving throw. On a failed save, a creature can't speak a deliberate lie while in the radius. You know whether each creature succeeds or fails on its saving throw.\n An affected creature is aware of the spell and can thus avoid answering questions to which it would normally respond with a lie. Such a creature can be evasive in its answers as long as it remains within the boundaries of the truth.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":18,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.CylBa7jR8DSbo8Z3"}},"img":"icons/magic/symbols/runes-star-magenta.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234097,"modifiedTime":1661791116852,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"15Fa6q1nH27XfbR8","name":"Dispel Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose one creature, object, or magical effect within range. Any spell of 3rd level or lower on the target ends. For each spell of 4th level or higher on the target, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a successful check, the spell ends.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you automatically end the effects of a spell on the target if the spell's level is equal to or less than the level of the spell slot you used.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.15Fa6q1nH27XfbR8"}},"img":"icons/skills/melee/strike-blade-knife-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234054,"modifiedTime":1661791116852,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"gopnZvS0c2jD5FP8","name":"Tongues","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell grants the creature you touch the ability to understand any spoken language it hears. Moreover, when the target speaks, any creature that knows at least one language and can hear the target understands what it says.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"div","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small clay model of a ziggurat","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gopnZvS0c2jD5FP8"}},"img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234193,"modifiedTime":1661791116852,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pxpb2eOB6bv4phAf","name":"Banishment","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to send one creature that you can see within range to another plane of existence. The target must succeed on a Charisma saving throw or be banished.If the target is native to the plane of existence you're on, you banish the target to a harmless demiplane. While there, the target is incapacitated. The target remains there until the spell ends, at which point the target reappears in the space it left or in the nearest unoccupied space if that space is occupied.If the target is native to a different plane of existence than the one you're on, the target is banished with a faint popping noise, returning to its home plane. If the spell ends before 1 minute has passed, the target reappears in the space it left or in the nearest unoccupied space if that space is occupied. Otherwise, the target doesn't return.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":18,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An item distasteful to the target","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.pxpb2eOB6bv4phAf"}},"img":"icons/magic/control/energy-stream-link-spiral-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234230,"modifiedTime":1661791116853,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"da0a1t2FqaTjRZGT","name":"Freedom of Movement","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a willing creature. For the Duration, the target's Movement is unaffected by difficult terrain, and Spells and other magical Effects can neither reduce the target's speed nor cause the target to be Paralyzed or Restrained.The target can also spend 5 feet of Movement to automatically escape from nonmagical restraints, such as Manacles or a creature that has it Grappled. Finally, being Underwater imposes no penalties on the target's movement or attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A leather strap, bound around the arm or a similar appendage","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.da0a1t2FqaTjRZGT"}},"img":"icons/skills/melee/strike-blade-knife-white-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234180,"modifiedTime":1661791116853,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"5e1xTohkzqFqbYH4","name":"Flame Strike","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A vertical column of divine fire roars down from the heavens in a location you specify. Each creature in a 10-foot-radius, 40-foot-high Cylinder centered on a point within range must make a Dexterity saving throw. A creature takes 4d6 fire damage and 4d6 radiant damage on a failed save, or half as much damage on a successful one.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the fire damage or the radiant damage (your choice) increases by 1d6 for each slot level above 5th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"cylinder"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","radiant"],["4d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":18,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of sulfur","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.5e1xTohkzqFqbYH4"}},"img":"icons/magic/light/beam-rays-red-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234070,"modifiedTime":1661791116853,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WzvJ7G3cqvIubsLk","name":"Greater Restoration","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You imbue a creature you touch with positive energy to undo a debilitating effect. You can reduce the target's Exhaustion level by one, or end one of the following Effects on the target:\n\nOne effect that Charmed or Petrified the target\nOne curse, including the target's Attunement to a cursed magic item\nAny reduction to one of the target's Ability Scores\nOne effect reducing the target's hit point maximum\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"diamond dust worth at least 100gp, which the spell consumes","consumed":true,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.WzvJ7G3cqvIubsLk"}},"img":"icons/magic/life/heart-cross-strong-flame-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234154,"modifiedTime":1661791116853,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"mgFqi0ev8f7Ut19y","name":"Heroes' Feast","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You bring forth a great feast, including magnificent food and drink. The feast takes 1 Hour to consume and disappears at the end of that time, and the beneficial Effects don't set in until this hour is over. Up to twelve creatures can partake of the feast.A creature that partakes of the feast gains several benefits. The creature is cured of all Diseases and poison, becomes immune to poison and being Frightened, and makes all Wisdom Saving Throws with advantage. Its hit point maximum also increases by 2d10, and it gains the same number of Hit Points. These benefits last for 24 hours.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A gem-encrusted bowl worth at least 1000gp, which the spell consumes","consumed":true,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.mgFqi0ev8f7Ut19y"}},"img":"icons/magic/life/heart-cross-strong-flame-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234220,"modifiedTime":1661791116854,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233151,"modifiedTime":1672596105998,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nREPw9g94Bsb9sIl","name":"Tribal Warrior","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"any alignment","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"","cr":0.125,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"any one language"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Tribal Warrior","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"hbpux5uhl63ObLBg","name":"Hide Armor","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":12,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.n1V07puo0RQxPGuF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"d0AIrKneA8GKmDE1","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The warrior has advantage on an attack roll against a creature if at least one of the warrior's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KO6Ez3XWFM4iH4zB","name":"Spear","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"\nMelee or Ranged Weapon Attack: +3 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 4 (1d6 + 1) piercing damage, or 5 (1d8 + 1) piercing damage if used with two hands to make a melee attack.\nThe Tribal Warrior attacks with their Spear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"thr":true,"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.OG4nBBydvmfWYXIk"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233154,"modifiedTime":1672596106063,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nU8GN8La8DCt8SDb","name":"Skeleton","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":13,"min":0,"max":13,"temp":0,"tempmax":0,"formula":"2d8 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Urban","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":["bludgeoning"],"bypasses":[],"custom":""},"ci":{"value":["poisoned","exhaustion"],"custom":""},"languages":{"value":[],"custom":"Understands all languages it knew in life but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Skeleton","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"hrTC2vP0xMgI8q8y","name":"Shortbow","type":"weapon","img":"icons/weapons/bows/shortbow-recurve.webp","system":{"description":{"value":"\nRanged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\nThe Skeleton attacks with its Shortbow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.GJv6WkD7D2J6rP6M"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qXbbvudRpBoul3bH","name":"Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\nThe Skeleton attacks with its Shortsword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.osLzOwQdPtrK3rQH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233156,"modifiedTime":1672596106108,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nZthq6WHLhcdu3te","name":"Gorgon","type":"npc","img":"","system":{"abilities":{"str":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":114,"min":0,"max":114,"temp":0,"tempmax":0,"formula":"12d10 + 48"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["petrified"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Gorgon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"zpzof99ziVJCU4hI","name":"Trampling Charge","type":"feat","img":"icons/creatures/abilities/cougar-pounce-stalk-black.webp","system":{"description":{"value":"If the gorgon moves at least 20 feet straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a DC 16 Strength saving throw or be knocked prone. If the target is prone, the gorgon can make one attack with its hooves against it as a bonus action.If the gorgon moves at least 20 feet straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":16,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yD51x4dihnbHwfsj"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7DSbBzpS1e9lYxZx","name":"Gore","type":"weapon","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"Melee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 18 (2d12 + 5) piercing damage.The Gorgon attacks with its Gore.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d12 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"O8oahxePfpHFYohz","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"Melee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage.The Gorgon attacks with its Hooves.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5tEnGK28Rd4nHnwM","name":"Petrifying Breath","type":"feat","img":"icons/magic/air/fog-gas-smoke-orange.webp","system":{"description":{"value":"The gorgon exhales petrifying gas in a 30-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw. On a failed save, a target begins to turn to stone and is restrained. The restrained target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is petrified until freed by the greater restoration spell or other magic.The gorgon exhales petrifying gas in a 30-foot cone. Each creature in that area must make a Constitution saving throw. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"perm"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.xmXYBevj0kuPa3Fo"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233157,"modifiedTime":1672596106156,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"naSoHU9KbkgeNIwB","name":"Gold Dragon Wyrmling","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":60,"min":0,"max":60,"temp":0,"tempmax":0,"formula":"8d8 + 24"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"","cr":3,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Gold Dragon Wyrmling","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"hTsrzcY4zYsqqzPf","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"s90OWDANSrZ1ttWp","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.The Gold Dragon Wyrmling attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JH4iOMWhpUPZneJN","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Fire Breath.** The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 22 (4d10) fire damage on a failed save, or half as much damage on a successful one.\n**Weakening Breath.** The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XeFYvc5dR8YNRizI","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\n**Fire Breath.** The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 22 (4d10) fire damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales fire in a 15-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8mLdG3PPJsB8rrI3","name":"Paralyzing Breath","type":"feat","img":"icons/magic/unholy/projectile-fireball-green.webp","system":{"description":{"value":"\n**Weakening Breath.** The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon exhales gas in a 15-foot cone. Each creature in that area must make a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.BiasCPpNsaAVKzIj"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233159,"modifiedTime":1672596106207,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"najtPRiHLR6buSWe","name":"Blue Dragon Wyrmling","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":52,"min":0,"max":52,"temp":0,"tempmax":0,"formula":"8d8 + 16"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":15,"climb":0,"fly":60,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"","cr":3,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["lightning"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Blue Dragon Wyrmling","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"VkmpLaL0RYt8WrzR","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage plus 3 (1d6) lightning damage.The Blue Dragon Wyrmling attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"],["1d6","lightning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7LCUjJcHm3odI9C8","name":"Lightning Breath","type":"feat","img":"icons/magic/lightning/bolt-strike-blue.webp","system":{"description":{"value":"The dragon exhales lightning in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.The dragon exhales lightning in a 30-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":12,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LVnd9fq9cQj7rR0Q"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233160,"modifiedTime":1672596106273,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"namJz755U1EhvEJa","name":"Water Elemental","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":114,"min":0,"max":114,"temp":null,"tempmax":0,"formula":"12d10 + 48"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":90,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["acid","bludgeoning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["grappled","paralyzed","petrified","poisoned","prone","restrained","unconscious","exhaustion"],"custom":""},"languages":{"value":["aquan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Water Elemental","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"sZcc3bwnRjaDV9BZ","name":"Freeze","type":"feat","img":"icons/magic/water/ice-crystal-white.webp","system":{"description":{"value":"If the elemental takes cold damage, it partially freezes; its speed is reduced by 20 ft. until the end of its next turn.If the elemental takes cold damage, it partially freezes.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.m0FA3UM62hlTPVSA"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6AQXZ1FlO8qhnPTR","name":"Water Form","type":"feat","img":"icons/magic/water/orb-water-bubbles.webp","system":{"description":{"value":"The elemental can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.AFYR2eZavzQUbZNb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9saHudPLoj6va2em","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The elemental makes two slam attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7xDGPsWicxgP6feT","name":"Slam","type":"weapon","img":"icons/magic/water/wave-water-blue.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.The Water Elemental attacks with its Slam.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5XUFTldfE6mtRUfd","name":"Whelm","type":"feat","img":"icons/magic/water/vortex-water-whirlpool.webp","system":{"description":{"value":"Each creature in the elemental's space must make a DC 15 Strength saving throw. On a failure, a target takes 13 (2d8 + 4) bludgeoning damage. If it is Large or smaller, it is also grappled (escape DC 14). Until this grapple ends, the target is restrained and unable to breathe unless it can breathe water. If the saving throw is successful, the target is pushed out of the elemental's space.The elemental can grapple one Large creature or up to two Medium or smaller creatures at one time. At the start of each of the elemental's turns, each target grappled by it takes 13 (2d8 + 4) bludgeoning damage. A creature within 5 feet of the elemental can pull a creature or object out of it by taking an action to make a DC 14 Strength check and succeeding.Each creature in the elemental's space must make a Strength saving throw. If it is Large or smaller, it is also grappled. Until this grapple ends, the target is restrained and unable to breathe unless it can breathe water. A creature within 5 feet of the elemental can pull a creature or object out of it by taking an action to make a Strength check and succeeding.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":4,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.sMgKJtbCLNSX7V80"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233161,"modifiedTime":1672596106320,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nkyCGJ9wXeAZkyyz","name":"Quipper","type":"npc","img":"","system":{"abilities":{"str":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"1d4 - 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":0,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Quipper","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"jFoGi81ljGK27zpX","name":"Blood Frenzy","type":"feat","img":"icons/skills/wounds/blood-spurt-spray-red.webp","system":{"description":{"value":"The quipper has advantage on melee attack rolls against any creature that doesn't have all its hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.B2kZOyrB7poB4liR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fTUKEAcQ4JT7xieY","name":"Water Breathing","type":"feat","img":"icons/magic/water/projectile-water-ice-orb.webp","system":{"description":{"value":"The quipper can breathe only underwater.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.c4Q6NDCLJSNcNc9T"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0SJofXpPrHJsVXOy","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 1 piercing damage.The Quipper attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233163,"modifiedTime":1672596106362,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"oDspGxRQFBhE74L2","name":"Invisible Stalker","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":104,"min":0,"max":104,"temp":null,"tempmax":0,"formula":"16d8 + 32"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":50,"swim":0,"walk":50,"units":"ft","hover":true},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Urban","cr":6,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["grappled","paralyzed","petrified","poisoned","prone","restrained","unconscious","exhaustion"],"custom":""},"languages":{"value":["auran"],"custom":"understands Common but doesn't speak it"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Invisible Stalker","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"VdFnTF9MqUFF7KPQ","name":"Faultless Tracker","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The stalker is given a quarry by its summoner. The stalker knows the direction and distance to its quarry as long as the two of them are on the same plane of existence. The stalker also knows the location of its summoner.The stalker knows the direction and distance to its quarry as long as the two of them are on the same plane of existence. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.E8SiDA7Z3Ybd6wt0"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UR2TYdvh0VZzLKyO","name":"Invisibility","type":"feat","img":"icons/creatures/webs/webthin-blue.webp","system":{"description":{"value":"The stalker is invisible.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.dA5X2eQuOtHywpQF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bl0mrJpx4dqL9Ub8","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The stalker makes two slam attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rpKiEPQVeOZTLwjf","name":"Slam","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.The Invisible Stalker attacks with its Slam.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233164,"modifiedTime":1672596106410,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"oJCOB9X2BPsBkWW5","name":"Magma Mephit","type":"npc","img":"","system":{"abilities":{"str":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"5d6 + 5"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":30,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"sm","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":["cold"],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["ignan","terran"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Magma Mephit","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"lAwQmCYEd9CtDdTb","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The mephit can innately cast heat metal (spell save DC 10), requiring no material components. Its innate spellcasting ability is Charisma.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":1,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LpYrQPxHA10HPnkl","name":"Death Burst","type":"feat","img":"icons/magic/light/explosion-star-glow-yellow.webp","system":{"description":{"value":"When the mephit dies, it explodes in a burst of lava. Each creature within 5 ft. of it must make a DC 11 Dexterity saving throw, taking 7 (2d6) fire damage on a failed save, or half as much damage on a successful one.When the mephit dies, it explodes in a burst of lava. Each creature within 5 ft. of it must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":"death"},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.net3yBKQoxl8bZ4r"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FEdBqpqpIEyjdO2H","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the mephit remains motionless, it is indistinguishable from an ordinary mound of magma.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BiAfcjq7C9Wf8R9b","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack: +3 to hit, reach 5 ft ., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) fire damage.The Magma Mephit attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4+@mod","slashing"],["1d4","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iXhbFt7gCj3FBM2r","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"The mephit exhales a 15-foot cone of fire. Each creature in that area must make a DC 11 Dexterity saving throw, taking 7 (2d6) fire damage on a failed save, or half as much damage on a successful one.The mephit exhales a 15-foot cone of fire. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2yHXEcrRbadZDr5M","name":"Heat Metal","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a manufactured metal object, such as a metal weapon or a suit of heavy or medium metal armor, that you can see within range. You cause the object to glow red-hot. Any creature in physical contact with the object takes 2d8 fire damage when you cast the spell. Until the spell ends, you can use a bonus action on each of your subsequent turns to cause this damage again.If a creature is holding or wearing the object and takes the damage from it, the creature must succeed on a Constitution saving throw or drop the object if it can. If it doesn't drop the object, it has disadvantage on attack rolls and ability checks until the start of your next turn.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","fire"]],"versatile":""},"formula":"","save":{"ability":"con","dc":10,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A piece of iron and a flame.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.2yHXEcrRbadZDr5M"}},"img":"icons/magic/light/explosion-star-large-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234061,"modifiedTime":1661791116872,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233166,"modifiedTime":1672596106455,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"oQvORD924obyPdCc","name":"Badger","type":"npc","img":"","system":{"abilities":{"str":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":3,"min":0,"max":3,"temp":0,"tempmax":0,"formula":"1d4 + 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":5,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":30,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Badger","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"hwviWX3lRj9wqENj","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The badger has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"abil","attackBonus":"","chatFlavor":"The badger sniffs around!","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"2d20kh + @skills.prc.total","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Badger","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"siQuRYBFdjgVrKlA","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 1 piercing damage.\nThe Badger attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233167,"modifiedTime":1672596106500,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"oRBnO5OHoOZzlCOr","name":"Werebear","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":135,"min":0,"max":135,"temp":null,"tempmax":0,"formula":"18d8 + 54"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Good","race":"","type":{"value":"humanoid","subtype":"Human, Shapechanger","swarm":"","custom":""},"environment":"Forest","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common"],"custom":"(can't speak in bear form)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Werebear","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"D8QWBbYLFAT7uIiz","name":"Shapechanger","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The werebear can use its action to polymorph into a Large bear-humanoid hybrid or into a Large bear, or back into its true form, which is humanoid. Its statistics, other than its size and AC, are the same in each form. Any equipment it. is wearing or carrying isn't transformed. It reverts to its true form if it dies.The werebear can use its action to polymorph, or return to its true form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rzLcynHQQj04Ue4B","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The werebear has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"COcc6eoG6ScS4wGz","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"In bear form, the werebear makes two claw attacks. In humanoid form, it makes two greataxe attacks. In hybrid form, it can attack like a bear or a humanoid.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"h9XO0f5Un3EhJqHm","name":"Bite (Bear or Hybrid Form Only)","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage. If the target is a humanoid, it must succeed on a DC 14 Constitution saving throw or be cursed with were bear lycanthropy.The Werebear attacks with its Bite. If the target is a humanoid, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pEYcOjAF2fovrXRP","name":"Claw (Bear or Hybrid Form Only)","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.The Werebear attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UeXfHUO5RZp72PIs","name":"Greataxe (Humanoid or Hybrid Form Only)","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"\nMelee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 10 (1d12 + 4) slashing damage.\n\nThe Werebear attacks with its Greataxe.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":30,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233169,"modifiedTime":1672596106543,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"omcDpBoB69esCXeM","name":"Brown Bear","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":34,"min":0,"max":34,"temp":0,"tempmax":0,"formula":"4d10 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Brown Bear","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"alpha":1,"light":{"alpha":0.5,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"reverse":false,"type":null},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.3},"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"tOPVA2liaPY9pwgO","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack: +6 to hit, 5 ft., one target. Hit: 9 (1d8 + 4) piercing damage.\n\nThe Brown Bear attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"ada":false,"mgc":false,"sil":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MozRn0kqcm5IG3WI","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack: +6 to hit, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n\nThe Brown Bear attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"ada":false,"mgc":false,"sil":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"D3rgzM9PCR2iXku5","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The bear has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AVusgSNjauFD9XnU","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The bear makes two attacks: one with its bite and one with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233170,"modifiedTime":1672596106588,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"p980augbCIdpK9ZX","name":"Roc","type":"npc","img":"","system":{"abilities":{"str":{"value":28,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":248,"min":0,"max":248,"temp":0,"tempmax":0,"formula":"16d20 + 80"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":120,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":11,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"grg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Roc","displayName":20,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"PZWkwOa8C0Y2tSCR","name":"Beak","type":"weapon","img":"icons/commodities/bones/beak-hooked-red.webp","system":{"description":{"value":"Melee Weapon Attack:+13 to hit,, 10 ft., one target. Hit: 27 (4d8 + 9) piercing damage.The Roc attacks with its Beak.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1Ocl9VqVtWFu97Ua","name":"Keen Sight","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The roc has advantage on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"s5X12Eygxcpzd9eM","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The roc makes two attacks: one with its beak and one with its talons.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XMiiDwLIMYWFqxyv","name":"Talons","type":"weapon","img":"icons/creatures/claws/claw-scaled-red.webp","system":{"description":{"value":"Melee Weapon Attack:+13 to hit,, 5 ft., one target. Hit: 23 (4d6 + 9) slashing damage.The target is grappled (escape DC 19). Until this grapple ends, the target is restrained, and the roc can't use its talons on another target.The Roc attacks with its Talons. The target is grappled. Until this grapple ends, the target is restrained, and the roc can't use its talons on another target.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233172,"modifiedTime":1672596106630,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"p9Xnr820UAZBOIVN","name":"Giant Octopus","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":52,"min":0,"max":52,"temp":0,"tempmax":0,"formula":"8d10 + 8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":60,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Octopus","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Fz4N05s53rXx3EKX","name":"Hold Breath","type":"feat","img":"icons/magic/water/pseudopod-swirl-blue.webp","system":{"description":{"value":"While out of water, the octopus can hold its breath for 1 hour.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lwC6jwy9bXberyWo"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NDE2nul3OiWsL2Hq","name":"Underwater Camouflage","type":"feat","img":"icons/magic/water/orb-ice-web.webp","system":{"description":{"value":"The octopus has advantage on Dexterity (Stealth) checks made while underwater.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Octopus","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.M9XqZZGoTKawAsCl"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WkrcqZN7dSJu9CYC","name":"Water Breathing","type":"feat","img":"icons/magic/water/projectile-water-ice-orb.webp","system":{"description":{"value":"The octopus can breathe only underwater.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Octopus","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.c4Q6NDCLJSNcNc9T"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HoGLXQIsF3riSu3X","name":"Ink Cloud","type":"feat","img":"icons/magic/unholy/orb-swirling-teal.webp","system":{"description":{"value":"\nA 20-foot-radius cloud of ink extends all around the octopus if it is underwater. The area is heavily obscured for 1 minute, although a significant current can disperse the ink. After releasing the ink, the octopus can use the Dash action as a bonus action. Recharges after a Short or Long Rest.\nA 20-foot-radius cloud of ink extends all around the octopus if it is underwater.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bojUXmNOZ2rJVujD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yOZK7sWcCRFmuAxz","name":"Tentacles","type":"weapon","img":"icons/creatures/tentacles/tentacles-thing-green.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 15 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.\nIf the target is a creature, it is grappled (escape DC 16). Until this grapple ends, the target is restrained, and the octopus can't use its tentacles on another target.\n\nThe Giant Octopus attacks with its Tentacles. If the target is a creature, it is grappled. Until this grapple ends, the target is restrained, and the octopus can't use its tentacles on another target.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nKpLMXS9E10TSGhU"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233174,"modifiedTime":1672596106672,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"pAuiNDr7nvpsW9nG","name":"Ancient Brass Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":27,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":25,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":20,"calc":"natural","formula":""},"hp":{"value":297,"min":0,"max":297,"temp":0,"tempmax":0,"formula":"17d20+119"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":40,"climb":0,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":20,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"grg","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Ancient Brass Dragon","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"pv497s1HuExllRI0","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"IiNKOgZ3djF0mBXR","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"M8QrGIl4ESY4kh6A","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.The Ancient Brass Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Iy1UXphRvuXgybrn","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.The Ancient Brass Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yJGmBczsD2hSQuzI","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute.A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JjvNpMw6JP0A33yu","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.The Ancient Brass Dragon attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qmdYJXoLm52JeDEN","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons:\n**Fire Breath.** The dragon exhales fire in an 90-foot line that is 10 feet wide. Each creature in that line must make a DC 21 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.\n**Sleep Breath.** The dragon exhales sleep gas in a 90-foot cone. Each creature in that area must succeed on a DC 21 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zM7nlV0WXlCeZj01","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\n**Fire Breath.** The dragon exhales fire in an 90-foot line that is 10 feet wide. Each creature in that line must make a DC 21 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales fire in a 90-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["16d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":21,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"n1nya8bJgMqzsyfz","name":"Sleep Breath","type":"feat","img":"icons/magic/perception/third-eye-blue-red.webp","system":{"description":{"value":"\n**Sleep Breath.** The dragon exhales sleep gas in a 90-foot cone. Each creature in that area must succeed on a DC 21 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n\nThe dragon exhales sleep gas in a 90-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":21,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.43BnuqkQgg5l1Nfh"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ffeBuEAJL0Kk0RRk","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BgJf6V68k1OQMyWH","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FWLpSMrjPPegkAxX","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ru7kWvjTE3H4Qbrh","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NgeJhGPvdvOyx7OI","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 22 Dexterity saving throw or take 15 ( 2d6+8) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":22,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OY4mIiqSBDwjHjdj","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rV06CSnbJVNfLnyr","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233176,"modifiedTime":1672596106772,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"pLzSh4dA517Tn73E","name":"Giant Lizard","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":19,"min":0,"max":19,"temp":0,"tempmax":0,"formula":"3d10 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":30,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Lizard","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"fLwfCY0GE5S7mMYv","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\nThe Giant Lizard attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233178,"modifiedTime":1672596106822,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"pOPQU4UnR27zA0jf","name":"Minotaur","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":76,"min":0,"max":76,"temp":0,"tempmax":0,"formula":"9d10 + 27"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":3,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["abyssal"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Minotaur","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Z1aFAtAP0JJ02tPV","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"If the minotaur moves at least 10 ft. straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 9 (2d8) piercing damage. If the target is a creature, it must succeed on a DC 14 Strength saving throw or be pushed up to 10 ft. away and knocked prone.If the minotaur moves at least 10 ft. straight toward a target and then hits it with a gore attack on the same turn, the target takes extra piercing damage. If the target is a creature, it must make a Strength saving throw or be pushed up to 10 ft. away and knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","piercing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Fybno0bT1qZO1sSj","name":"Labyrinthine Recall","type":"feat","img":"icons/magic/air/wind-vortex-swirl-blue.webp","system":{"description":{"value":"The minotaur can perfectly recall any path it has traveled.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.1w6k5iHV8QSz5w46"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"i1CyGkejt1lDCHEu","name":"Reckless","type":"feat","img":"icons/skills/social/intimidation-impressing.webp","system":{"description":{"value":"At the start of its turn, the minotaur can gain advantage on all melee weapon attack rolls it makes during that turn, but attack rolls against it have advantage until the start of its next turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4v3xxn1jEEMRzLBG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lZ5YdCcXmEDR6vhb","name":"Greataxe","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.The Minotaur attacks with its Greataxe.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d12 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.1Lxk6kmoRhG8qQ0u"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zTqVT0QztTuMOv0e","name":"Gore","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.The Minotaur attacks with its Gore.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233180,"modifiedTime":1672596106869,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"pozQUPTnLZW8epox","name":"Rat","type":"npc","img":"","system":{"abilities":{"str":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"1d4 - 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":30,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Swamp","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Rat","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"mll5ghZVkPuiyBoa","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The rat has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Rat","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QpysqgoHq9LXsShc","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+0 to hit,, 5 ft., one target. Hit: 1 piercing damage.\nThe Rat attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233181,"modifiedTime":1672596106914,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"q1YJIeIt6rK8fCKn","name":"Giant Rat","type":"npc","img":"","system":{"abilities":{"str":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":7,"min":0,"max":7,"temp":0,"tempmax":0,"formula":"2d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0.125,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Rat","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"IJJ5nwTmA5BBnSvq","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The rat has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"m1b40a7qTZXNiBLw","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The rat has advantage on an attack roll against a creature if at least one of the rat's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"D98YkFEPQRdesZUW","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\nThe Giant Rat attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233183,"modifiedTime":1672596106954,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qNdFhY3JOkCfhG3d","name":"Ancient Black Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":27,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":25,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":22,"calc":"natural","formula":""},"hp":{"value":367,"min":0,"max":367,"temp":0,"tempmax":0,"formula":"21d20 + 147"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Swamp","cr":21,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"grg","di":{"value":["acid"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Ancient Black Dragon","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"5IEyeZf0FqkPrv7R","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"J86tFiZtAP8BbHzF","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RKsS1lZwBekMMGMt","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YauNxZeIeT4uDcTf","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+ 15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) acid damage.The Ancient Black Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["2d8","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GQLQiLBrkoOiNc8q","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+15 to hit,, 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.The Ancient Black Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"A5cRQsDF3Qih94rC","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack: +15 to hit, reach 20 ft ., one target. Hit: 17 (2d8 + 8) bludgeoning damage.The Ancient Black Dragon attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"M3VJyuM63OKH7JH0","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zDlCrWQVJgZFMfxY","name":"Acid Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"The dragon exhales acid in a 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 67 (15d8) acid damage on a failed save, or half as much damage on a successful one.Each creature in that line must make a DC 22 Dexterity saving throw, taking 67 (15d8) acid damage on a failed save, or half as much damage on a successful one.The dragon exhales acid in a 90-foot line that is 10 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["15d8","acid"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":22,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zjcGly9P3Gn9MXt7"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3ZEmD9O6eOtAfSzJ","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ue0XiojtilVvKhH4","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UpWaTW9cFf96GmMH","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"i4ggPCju3QyYJslH","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 23 Dexterity saving throw or take 15 ([[/r 2d6+8]]) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"84PHEVjYThsmbYxc","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PO5gIWTWS1dahP5E","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233185,"modifiedTime":1672596107052,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qW8cBwg7ghCA4Cw6","name":"Young Copper Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":119,"min":0,"max":119,"temp":0,"tempmax":0,"formula":"14d10 + 42"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":40,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Hill","cr":7,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["acid"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Young Copper Dragon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Km7rUn5tu44KuVbz","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.The Young Copper Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DlxAB4bcOmBIn0UG","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.The Young Copper Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eKFnpVBhSSB91leK","name":"Breath Weapons","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Acid Breath.** The dragon exhales acid in an 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 40 (9d8) acid damage on a failed save, or half as much damage on a successful one.\n**Slowing Breath.** The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HHLqWQuhYdWvo1Tj","name":"Acid Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\n**Acid Breath.** The dragon exhales acid in an 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 40 (9d8) acid damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales acid in an 40-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":40,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["9d8","acid"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zjcGly9P3Gn9MXt7"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jH7GlNkVX5D2chWY","name":"Slowing Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\n**Slowing Breath.** The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n\nThe dragon exhales gas in a 30-foot cone. Each creature in that area make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JRy507rS9wxT3GBh"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kk9fXkx19bCD5Qqv","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233187,"modifiedTime":1672596107104,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qXzMsRTHEodqO8l2","name":"Rakshasa","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":16,"calc":"natural","formula":""},"hp":{"value":110,"min":0,"max":110,"temp":null,"tempmax":0,"formula":"13d8 + 52"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"","swarm":"","custom":""},"environment":"Urban","cr":13,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":"Piercing from magic weapons wielded by good creatures"},"ci":{"value":[],"custom":""},"languages":{"value":["common","infernal"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Rakshasa","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ChSnKd7pSLoN1Jeu","name":"Limited Magic Immunity","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The rakshasa can't be affected or detected by spells of 6th level or lower unless it wishes to be. It has advantage on saving throws against all other spells and magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.MBOiQSnMr02wUpEN"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NYUeQsYqRhROcVMQ","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The rakshasa's innate spellcasting ability is Charisma (spell save DC 18, +10 to hit with spell attacks). The rakshasa can innately cast the following spells, requiring no material components:\nAt will: detect thoughts, disguise self, mage hand, minor illusion\n3/day each: charm person, detect magic, invisibility, major image, suggestion\n1/day each: dominate person, fly, plane shift, true seeing","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"18NEVoD84KHDcWoG","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The rakshasa makes two claw attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pHBLWUN5VKEjSBh6","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage, and the target is cursed if it is a creature. The magical curse takes effect whenever the target takes a short or long rest, filling the target's thoughts with horrible images and dreams. The cursed target gains no benefit from finishing a short or long rest. The curse lasts until it is lifted by a remove curse spell or similar magic.The Rakshasa attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ppWAAEul0QHtm4er","name":"Detect Thoughts","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you can read the thoughts of certain creatures. When you cast the spell and as your action on each turn until the spell ends, you can focus your mind on any one creature that you can see within 30 feet of you. If the creature you choose has an Intelligence of 3 or lower or doesn't speak any language, the creature is unaffected.You initially learn the surface thoughts of the creature—what is most on its mind in that moment. As an action, you can either shift your attention to another creature's thoughts or attempt to probe deeper into the same creature's mind. If you probe deeper, the target must make a Wisdom saving throw. If it fails, you gain insight into its reasoning (if any), its emotional state, and something that looms large in its mind (such as something it worries over, loves, or hates). If it succeeds, the spell ends. Either way, the target knows that you are probing into its mind, and unless you shift your attention to another creature's thoughts, the creature can use its action on its turn to make an Intelligence check contested by your Intelligence check; if it succeeds, the spell ends.Questions verbally directed at the target creature naturally shape the course of its thoughts, so this spell is particularly effective as part of an interrogation.You can also use this spell to detect the presence of thinking creatures you can't see. When you cast the spell or as your action during the duration, you can search for thoughts within 30 feet of you. The spell can penetrate barriers, but 2 feet of rock, 2 inches of any metal other than lead, or a thin sheet of lead blocks you. You can't detect a creature with an Intelligence of 3 or lower or one that doesn't speak any language.Once you detect the presence of a creature in this way, you can read its thoughts for the rest of the duration as described above, even if you can't see it, but it must still be within range.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A copper piece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ppWAAEul0QHtm4er"}},"img":"icons/magic/light/explosion-star-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234229,"modifiedTime":1661791116890,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"A3q2gTNqG6fvNGrv","name":"Disguise Self","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You make yourself—including your clothing, armor, weapons, and other belongings on your person—look different until the spell ends or until you use your action to dismiss it. You can seem 1 foot shorter or taller and can appear thin, fat, or in between. You can't change your body type, so you must adopt a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you.The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to your outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel your head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair.To discern that you are disguised, a creature can use its action to inspect your appearance and must succeed on an Intelligence (Investigation) check against your spell save DC.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.A3q2gTNqG6fvNGrv"}},"img":"icons/magic/control/debuff-energy-hold-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234086,"modifiedTime":1661791116890,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Utk1OQRwYkMkFRD3","name":"Mage Hand","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.The hand can't attack, activate magic items, or carry more than 10 pounds.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Utk1OQRwYkMkFRD3"}},"img":"icons/magic/water/water-hand.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234148,"modifiedTime":1661791116890,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"oIzA2MEHwxhtQneU","name":"Minor Illusion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a sound or an image of an object within range that lasts for the duration. The illusion also ends if you dismiss it as an action or cast this spell again.If you create a sound, its volume can range from a whisper to a scream. It can be your voice, someone else's voice, a lion's roar, a beating of drums, or any other sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends.If you create an image of an object—such as a chair, muddy footprints, or a small chest—it must be no larger than a 5-foot cube. The image can't create sound, light, smell, or any other sensory effect. Physical interaction with the image reveals it to be an illusion, because things can pass through it.If a creature uses its action to examine the sound or image, the creature can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the illusion becomes faint to the creature.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"cube"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"ill","components":{"vocal":false,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of fleece.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.oIzA2MEHwxhtQneU"}},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234224,"modifiedTime":1661791116891,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"eS7XnnApoxRxYXPs","name":"Charm Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to charm a humanoid you can see within range. It must make a Wisdom saving throw, and does so with advantage if you or your companions are fighting it. If it fails the saving throw, it is charmed by you until the spell ends or until you or your companions do anything harmful to it. The charmed creature regards you as a friendly acquaintance. When the spell ends, the creature knows it was charmed by you.\n At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.eS7XnnApoxRxYXPs"}},"img":"icons/magic/fire/explosion-fireball-medium-purple-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234185,"modifiedTime":1661791116891,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116891,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"1N8dDMMgZ1h1YJ3B","name":"Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An eyelash encased in gum arabic","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.1N8dDMMgZ1h1YJ3B"}},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234056,"modifiedTime":1661791116892,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"nslx2nT3p4lNkmdp","name":"Major Image","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 20-foot cube. The image appears at a spot that you can see within range and lasts for the duration. It seems completely real, including sounds, smells, and temperature appropriate to the thing depicted. You can't create sufficient heat or cold to cause damage, a sound loud enough to deal thunder damage or deafen a creature, or a smell that might sicken a creature (like a troglodyte's stench).As long as you are within range of the illusion, you can use your action to cause the image to move to any other spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking. Similarly, you can cause the illusion to make different sounds at different times, even making it carry on a conversation, for example.Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and its other sensory qualities become faint to the creature.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the spell lasts until dispelled, without requiring your concentration.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of fleece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.nslx2nT3p4lNkmdp"}},"img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234222,"modifiedTime":1661791116892,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"zMAWdyc8UVb37BK4","name":"Suggestion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You suggest a course of activity (limited to a sentence or two) and magically influence a creature you can see within range that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act ends the spell.The target must make a Wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do.You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a knight give her warhorse to the first beggar she meets. If the condition isn't met before the spell expires, the activity isn't performed.If you or any of your companions damage the target, the spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A snake's tongue and either a bit of honeycomb or a drop of sweet oil","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.zMAWdyc8UVb37BK4"}},"img":"icons/magic/air/air-burst-spiral-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234245,"modifiedTime":1661791116892,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"91Sw6vOIaO7U8DvM","name":"Dominate Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to beguile a humanoid that you can see within range. It must succeed on a Wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw.While the target is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability.You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time you can also cause the creature to use a reaction, but this requires you to use your own reaction as well.Each time the target takes damage, it makes a new Wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.At Higher Levels. When you cast this spell using a 6th-level spell slot, the duration is concentration, up to 10 minutes. When you use a 7th-level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 8th level or higher, the duration is concentration, up to 8 hours.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"spell"},"level":5,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.91Sw6vOIaO7U8DvM"}},"img":"icons/magic/air/air-burst-spiral-large-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234083,"modifiedTime":1661791116893,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"yfbK8gZqESlaoY5t","name":"Fly","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a willing creature. The target gains a flying speed of 60 feet for the Duration. When the spell ends, the target falls if it is still aloft, unless it can stop the fall.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A wing feather from any bird","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.yfbK8gZqESlaoY5t"}},"img":"icons/magic/control/energy-stream-link-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234243,"modifiedTime":1661791116893,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"J6Jpw5XzB5aTeqnz","name":"Plane Shift","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You and up to eight willing creatures who link hands in a circle are transported to a different plane of existence. You can specify a target destination in general terms, such as the City of Brass on the Elemental Plane of Fire or the palace of Dispater on the second level of the Nine Hells, and you appear in or near that destination. If you are trying to reach the City of Brass, for example, you might arrive in its Street of Steel, before its Gate of Ashes, or looking at the city from across the Sea of Fire, at the DM's discretion.Alternatively, if you know the sigil sequence of a teleportation circle on another plane of existence, this spell can take you to that circle. If the teleportation circle is too small to hold all the creatures you transported, they appear in the closest unoccupied spaces next to the circle.You can use this spell to banish an unwilling creature to another plane. Choose a creature within your reach and make a melee spell attack against it. On a hit, the creature must make a Charisma saving throw. If the creature fails this save, it is transported to a random location on the plane of existence you specify. A creature so transported must find its own way back to your current plane of existence.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":8,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":18,"scaling":"spell"},"level":7,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A forked, metal rod worth at least 250 gp, attuned to a particular plane of existence","consumed":false,"cost":250,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.J6Jpw5XzB5aTeqnz"}},"img":"icons/magic/symbols/runes-star-pentagon-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234111,"modifiedTime":1661791116893,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"XzkJpE6XpZfKjODD","name":"True Seeing","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell gives the willing creature you touch the ability to see things as they actually are. For the duration, the creature has truesight, notices secret doors hidden by magic, and can see into the Ethereal Plane, all out to a range of 120 feet.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"An ointment for the eyes that costs 25gp; is made from mushroom powder, saffron, and fat; and is consumed by the spell","consumed":true,"cost":25,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.XzkJpE6XpZfKjODD"}},"img":"icons/magic/perception/eye-ringed-glow-angry-large-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234160,"modifiedTime":1661791116893,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233189,"modifiedTime":1672596107216,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qZyLwdx7lj5d1wfD","name":"Roper","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":20,"calc":"natural","formula":""},"hp":{"value":93,"min":0,"max":93,"temp":0,"tempmax":0,"formula":"11d10 + 33"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":10,"fly":0,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Roper","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.3,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"rnluQsu6p0n6s70W","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the roper remains motionless, it is indistinguishable from a normal cave formation, such as a stalagmite.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hQLj7Zzuva4M9KzH","name":"Grasping Tendrils","type":"feat","img":"icons/magic/nature/root-vine-entangle-foot-green.webp","system":{"description":{"value":"The roper can have up to six tendrils at a time. Each tendril can be attacked (AC 20; 10 hit points; immunity to poison and psychic damage). Destroying a tendril deals no damage to the roper, which can extrude a replacement tendril on its next turn. A tendril can also be broken if a creature takes an action and succeeds on a DC 15 Strength check against it.The roper can have up to six tendrils at a time. Each tendril can be attacked. A tendril can also be broken if a creature takes an action and succeeds on a Strength check against it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LkepRN2rP3Hp4orY"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JsrlYsn9HM9HAeKH","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The roper can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mBRjMwEitGrPDm5I","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 22 (4d8 + 4) piercing damage.The Roper attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bTiw89tDx64zTqDk","name":"Tendril","type":"weapon","img":"icons/creatures/tentacles/tentacles-thing-green.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 50 ft., one target. Hit: The target is Grappled (escape DC 15). Until the grapple ends, the target is Restrained and has disadvantage on Strength Checks and Strength Saving Throws , and the roper can't use the same tendril on another target.The Roper attacks with its Tendril. The target is grappled. Until the grapple ends, the target is restrained and has disadvantage on Strength Checks and Strength Saving Throws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":50,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iGuyFLbKazqPCcXY","name":"Reel","type":"feat","img":"icons/magic/control/sihouette-hold-beam-green.webp","system":{"description":{"value":"The roper pulls each creature grappled by it up to 25 ft. straight toward it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.IwQRhCTgCfAADyt8"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fyF8vQbuvkuLKmKf","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The roper makes four attacks with its tendrils, uses Reel, and makes one attack with its bite.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233191,"modifiedTime":1672596107276,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qav2dvMIUiMQCCsy","name":"Bat","type":"npc","img":"","system":{"abilities":{"str":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"1d4 - 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":30,"swim":0,"walk":5,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Bat","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"xL1zgEf89s0xSVlW","name":"Echolocation","type":"feat","img":"icons/magic/control/hypnosis-mesmerism-eye.webp","system":{"description":{"value":"The bat can't use its blindsight while deafened.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Bat","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.rUongiWD51ZopRk2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fVUqOLxkujSbpeB7","name":"Keen Hearing","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The bat has advantage on Wisdom (Perception) checks that rely on hearing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Bat","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"N05hdQhXPTOHipkJ","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+0 to hit,, 5 ft., one creature. Hit: 1 piercing damage.\nThe Bat attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233193,"modifiedTime":1672596107319,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qkLNA1lKMMJpxuWg","name":"Cultist","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":9,"min":0,"max":9,"temp":0,"tempmax":0,"formula":"2d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Non-Good Alignment","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"","cr":0.125,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"any one language (usually Common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Cultist","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"nfPMecUVS2iOgAKJ","name":"Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MyhBa9G8ryUWGm5D","name":"Dark Devotion","type":"feat","img":"icons/magic/control/control-influence-rally-purple.webp","system":{"description":{"value":"The cultist has advantage on saving throws against being charmed or frightened.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.XFvk6ywwZWTkMmQR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dldXP9XwjVIdIj5U","name":"Scimitar","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one creature. Hit: 4 (1d6 + 1) slashing damage.\nThe Cultist attacks with their Scimitar.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.fbC0Mg1a73wdFbqO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233194,"modifiedTime":1672596107356,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qoFEjfrANBdrCP6m","name":"Ghost","type":"npc","img":"","system":{"abilities":{"str":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":45,"min":0,"max":45,"temp":null,"tempmax":0,"formula":"10d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":40,"swim":0,"walk":0,"units":"ft","hover":true},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Alignment","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"","cr":4,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["cold","necrotic","poison"],"bypasses":[],"custom":""},"dr":{"value":["acid","bludgeoning","fire","lightning","piercing","slashing","thunder"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","exhaustion","frightened","grappled","paralyzed","petrified","poisoned","prone","restrained"],"custom":""},"languages":{"value":[],"custom":"any languages it knew in life"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ghost","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"tjrDz1IWVcjF7PMl","name":"Ethereal Sight","type":"feat","img":"icons/magic/perception/eye-tendrils-web-purple.webp","system":{"description":{"value":"The ghost can see 60 ft. into the Ethereal Plane when it is on the Material Plane, and vice versa.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.We6R4thWKYDRYlEc"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SiBsPubItj26pcHa","name":"Incorporeal Movement","type":"feat","img":"icons/magic/air/air-wave-gust-blue.webp","system":{"description":{"value":"The ghost can move through other creatures and objects as if they were difficult terrain. It takes 5 (1d10) force damage if it ends its turn inside an object.The ghost can move through other creatures and objects as if they were difficult terrain.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LUHmtIDD1VTreFqI"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wdOqdYfLb2Nu1Uud","name":"Withering Touch","type":"weapon","img":"icons/magic/unholy/strike-hand-glow-pink.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 17 (4d6 + 3) necrotic damage.The Ghost attacks with its Withering Touch.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6+@mod","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WyxVuCp4iU10bA7m","name":"Etherealness","type":"feat","img":"icons/magic/unholy/barrier-shield-glowing-pink.webp","system":{"description":{"value":"The ghost enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.rDoNJnKdY47x8MD4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lOzkFHeXCdO2FB9X","name":"Horrifying Visage","type":"feat","img":"icons/magic/death/projectile-skull-fire-purple.webp","system":{"description":{"value":"Each non-undead creature within 60 ft. of the ghost that can see it must succeed on a DC 13 Wisdom saving throw or be frightened for 1 minute. If the save fails by 5 or more, the target also ages 1d4 x 10 years. A frightened target can repeat the saving throw at the end of each of its turns, ending the frightened condition on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this ghost's Horrifying Visage for the next 24 hours. The aging effect can be reversed with a greater restoration spell, but only within 24 hours of it occurring.Each non-undead creature within 60 ft. of the ghost that can see it must succeed make a Wisdom saving throw. A target can repeat the saving throw at the end of each of its turns, ending the condition on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lBN86BToCJgkakL3"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UF0mfYsgI4ay6mzv","name":"Possession","type":"feat","img":"icons/magic/control/fear-fright-monster-grin-purple-blue.webp","system":{"description":{"value":"One humanoid that the ghost can see within 5 ft. of it must succeed on a DC 13 Charisma saving throw or be possessed by the ghost; the ghost then disappears, and the target is incapacitated and loses control of its body. The ghost now controls the body but doesn't deprive the target of awareness. The ghost can't be targeted by any attack, spell, or other effect, except ones that turn undead, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being charmed and frightened. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.The possession lasts until the body drops to 0 hit points, the ghost ends it as a bonus action, or the ghost is turned or forced out by an effect like the dispel evil and good spell. When the possession ends, the ghost reappears in an unoccupied space within 5 ft. of the body. The target is immune to this ghost's Possession for 24 hours after succeeding on the saving throw or after the possession ends.One humanoid that the ghost can see within 5 ft. of it must make a Charisma saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"spec"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.NI3FPb5jQsePdlVl"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233196,"modifiedTime":1672596107399,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qrasJNDC7SGj7xzG","name":"Young Red Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":178,"min":0,"max":178,"temp":0,"tempmax":0,"formula":"17d10 + 85"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":40,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":10,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Young Red Dragon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"KuuOPjJ1YeTtjGbN","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 3 (1d6) fire damage.The Young Red Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"The dragon snaps its mighty jaws shut!","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["1d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3UHmbpT3v3FTlplI","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.The Young Red Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nWjLJm6ErLvCUvun","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.The dragon exhales fire in a 30-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["16d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":17,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uwDyoGhbCR8NoRmc","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233197,"modifiedTime":1672596107445,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rLl22hYeAH3ljhdI","name":"Giant Fly","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":19,"min":0,"max":19,"temp":0,"tempmax":0,"formula":"3d10 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Fly","displayName":0,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"dim":0,"bright":0,"angle":360,"alpha":1,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"color":null,"coloration":1,"attenuation":0.5,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"darkness":{"min":0,"max":1}},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233200,"modifiedTime":1672596107483,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rUg5JMnKNnZNBAq9","name":"Nalfeshnee","type":"npc","img":"","system":{"abilities":{"str":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":22,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":184,"min":0,"max":184,"temp":null,"tempmax":0,"formula":"16d10 + 96"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":30,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"fiend","subtype":"Demon","swarm":"","custom":""},"environment":"","cr":13,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","fire","lightning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["abyssal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Nalfeshnee","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"jZeQHAOQV365hmZF","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The nalfeshnee has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"swlYyGYwkdNzuRkG","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The nalfeshnee uses Horror Nimbus if it can. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"524dkWbpWUJKFaj2","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 32 (5d10 + 5) piercing damage.The Nalfeshnee attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d10+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xhKo80CbyA57Kl1l","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 15 (3d6 + 5) slashing damage.The Nalfeshnee attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RFPDYIhkmBW2B47S","name":"Horror Nimbus","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"The nalfeshnee magically emits scintillating, multicolored light. Each creature within 15 feet of the nalfeshnee that can see the light must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the nalfeshnee's Horror Nimbus for the next 24 hours.A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the nalfeshnee's Horror Nimbus for the next 24 hours.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":15,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hu2pgYS1RD7hglvg"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zK5E9yD6BR0fZRBo","name":"Teleport","type":"feat","img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","system":{"description":{"value":"The nalfeshnee magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.PPzVD90vab60FqCt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233201,"modifiedTime":1672596107525,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rb7OJt822wIO52qY","name":"Bandit Captain","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":65,"min":0,"max":65,"temp":0,"tempmax":0,"formula":"10d8 + 20"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Non-Lawful Alignment","race":"","type":{"value":"humanoid","subtype":"Any Race","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"any two languages"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Bandit Captain","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"8NY9Oy7LGoZ1f7gW","name":"Studded Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-rivited-red.webp","system":{"description":{"value":"Made from tough but flexible leather, studded leather is reinforced with close-set rivets or spikes.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":13,"price":{"value":45,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.TIV3B1vbrVHIhQAm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"u3rhYD4gsxWEFbMc","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The captain makes three melee attacks: two with its scimitar and one with its dagger. Or the captain makes two ranged attacks with its daggers.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tSPkVJScEndipsFU","name":"Scimitar","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\nThe Bandit Captain attacks with their Scimitar.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.fbC0Mg1a73wdFbqO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mBUKIzY6aUW5Fnlm","name":"Dagger","type":"weapon","img":"icons/weapons/daggers/dagger-jeweled-purple.webp","system":{"description":{"value":"\nMelee or Ranged Weapon Attack: +5 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 5 (1d4 + 3) piercing damage.\nThe Bandit Captain attacks with their Dagger.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.0E565kQUBmndJ1a2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mGcPB4SMyYkHFK9N","name":"Parry","type":"feat","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"The captain adds 2 to its AC against one melee attack that would hit it. To do so, the captain must see the attacker and be wielding a melee weapon.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kfi26Jy0VLXv9TTm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233203,"modifiedTime":1672596107582,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rbyp54px2D0ql4QK","name":"Wight","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":45,"min":0,"max":45,"temp":null,"tempmax":0,"formula":"6d8 + 18"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":3,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","necrotic","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned","exhaustion"],"custom":""},"languages":{"value":[],"custom":"the languages it knew in life"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Wight","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"nkPIb1htkHIdbJ97","name":"Studded Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-rivited-red.webp","system":{"description":{"value":"Made from tough but flexible leather, studded leather is reinforced with close-set rivets or spikes.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":13,"price":{"value":45,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.TIV3B1vbrVHIhQAm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qodTzcDY37TCj4GN","name":"Sunlight Sensitivity","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"While in sunlight, the wight has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.F14aW2Ke3I5ZtSg4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fKIUImfcNk0pU2HN","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The wight makes two longsword attacks or two longbow attacks. It can use its Life Drain in place of one longsword attack.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PUYwkzEiKopyM6YL","name":"Longbow","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"\nRanged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n\nThe Wight attacks with its Longbow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3cymOVja8jXbzrdT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WZ3XGh48UoyAvBhS","name":"Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 6 (1d8 + 2) slashing damage, or 7 (1d10 + 2) slashing damage if used with two hands.\n\nThe Wight attacks with its Longsword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NX8cqG6aZMns8wvY","name":"Life Drain","type":"weapon","img":"icons/magic/unholy/strike-hand-glow-pink.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 5 (1d6 + 2) necrotic damage.\nThe target must succeed on a DC 13 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\nA humanoid slain by this attack rises 24 hours later as a zombie under the wight's control, unless the humanoid is restored to life or its body is destroyed. The wight can have no more than twelve zombies under its control at one time.\n\nThe Wight attacks with its Life Drain. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233205,"modifiedTime":1672596107628,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rjqk7ToMD8sGr3n4","name":"Giant Goat","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":19,"min":0,"max":19,"temp":0,"tempmax":0,"formula":"3d10 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":0.5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Goat","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"dBII3VhTvg43aTUI","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nIf the goat moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 5 (2d4) bludgeoning damage.\nIf the target is a creature, it must succeed on a DC 13 Strength saving throw or be knocked prone.\n\nIf the goat moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes a extra bludgeoning damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"Goat","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kqrWunjvDSHdnPmW","name":"Sure-Footed","type":"feat","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"The goat has advantage on Strength and Dexterity saving throws made against effects that would knock it prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nJHx2fudYhZeexDP"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"t8cKnWGtgVCfhW5v","name":"Ram","type":"weapon","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 8 (2d4 + 3) bludgeoning damage.\nThe Giant Goat attacks with its Ram.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233206,"modifiedTime":1672596107673,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rz8UTUnFT87BsAFR","name":"Riding Horse","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":13,"min":0,"max":13,"temp":0,"tempmax":0,"formula":"2d10 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":60,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Riding Horse","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"alpha":1,"light":{"alpha":0.5,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"reverse":false,"type":null},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.3},"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"CwpmLFcikAet169F","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 8 (2d4 + 3) bludgeoning damage.\nThe Riding Horse attacks with its Hooves.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233208,"modifiedTime":1672596107713,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"sApYLZj9PTZ40wJr","name":"Earth Elemental","type":"npc","img":"","system":{"abilities":{"str":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":126,"min":0,"max":126,"temp":null,"tempmax":0,"formula":"12d10 + 60"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":30,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":60,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":["thunder"],"bypasses":[],"custom":""},"ci":{"value":["paralyzed","petrified","poisoned","unconscious","exhaustion"],"custom":""},"languages":{"value":["terran"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Earth Elemental","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Ctnlm397G5vkwWA4","name":"Earth Glide","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The elemental can burrow through nonmagical, unworked earth and stone. While doing so, the elemental doesn't disturb the material it moves through.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yrpqazOHqI4BrYW4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1fGoFeub69Dueemk","name":"Siege Monster","type":"feat","img":"icons/creatures/magical/construct-iron-stomping-yellow.webp","system":{"description":{"value":"The elemental deals double damage to objects and structures.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.cSA0EbjlxCbst4gJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"A8nxS57cG2yZpu1m","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The elemental makes two slam attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2AD5aTLMPDmQFhGZ","name":"Slam","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"Melee Weapon Attack:+8 to hit,, 10 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.The Earth Elemental attacks with its Slam.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233209,"modifiedTime":1672596107754,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"sLdpiuaZF8lujJQy","name":"Barbed Devil","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":110,"min":0,"max":110,"temp":null,"tempmax":0,"formula":"13d8 + 52"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"Devil","swarm":"","custom":""},"environment":"","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["infernal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Barbed Devil","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"8QaMc1baRrSlLFXN","name":"Barbed Hide","type":"feat","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"At the start of each of its turns, the barbed devil deals 5 (1d10) piercing damage to any creature grappling it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.QMGBV7OSnXqWLdhr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wPHhtm2eyM9LKpT4","name":"Devil's Sight","type":"feat","img":"icons/magic/perception/eye-slit-pink.webp","system":{"description":{"value":"Magical darkness doesn't impede the devil's Darkvision.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"f3ItDDfd5L4WMGlf","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The devil has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JbDDt9MNYFyEbHsm","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The devil makes three melee attacks: one with its tail and two with its claws. Alternatively, it can use Hurl Flame twice.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pya9jchjLkwMedEr","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack: +6 to hit, reach 5 ft ., one target. Hit: 6 (1d6 + 3) piercing damage.\nThe Barbed Devil attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mlWql992zSZ6hvl6","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\nThe Barbed Devil attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"syCZDlwGoyT1GvJv","name":"Hurl Flame","type":"weapon","img":"icons/magic/fire/blast-jet-stream-splash.webp","system":{"description":{"value":"\nRanged Spell Attack:+5 to hit,, 150 ft., one target. Hit: 10 (3d6) fire damage.\nIf the target is a flammable object that isn't being worn or carried, it also catches fire.\n\nThe Barbed Devil attacks with its Hurl Flame. If the target is a flammable object that isn't being worn or carried, it also catches fire.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233211,"modifiedTime":1672596107819,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"saq6WM959pKHuaqP","name":"Green Hag","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":82,"min":0,"max":82,"temp":0,"tempmax":0,"formula":"11d8 + 33"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"fey","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":3,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic","sylvan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Green Hag","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"TwdKEVj1NjVefyq9","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The hag can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9HX1VdEInbRUnBVL","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The hag's innate spellcasting ability is Charisma (spell save DC 12). She can innately cast the following spells, requiring no material components:\nAt will: dancing lights, minor illusion, vicious mockery","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"C2ZJ3Oe30dyU2o7E","name":"Mimicry","type":"feat","img":"icons/creatures/birds/corvid-flying-wings-purple.webp","system":{"description":{"value":"The hag can mimic animal sounds and humanoid voices. A creature that hears the sounds can tell they are imitations with a successful DC 14 Wisdom (Insight) check.The hag can mimic animal sounds and humanoid voices. A creature that hears the sounds can tell they are imitations with a successful Wisdom (Insight) check.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zZkNtL97hn1P6OJC"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gtixTr9i63RtsSCv","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.The Green Hag attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"cvdyEyn0s7hKwIcN","name":"Illusory Appearance","type":"feat","img":"icons/creatures/mammals/humanoid-cat-skulking-teal.webp","system":{"description":{"value":"The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like another creature of her general size and humanoid shape. The illusion ends if the hag takes a bonus action to end it or if she dies.\nThe changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have smooth skin, but someone touching her would feel her rough flesh. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 20 Intelligence (Investigation) check to discern that the hag is disguised.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.s7kqggp9VLDb39nu"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Cdis1lnjFvqfoScV","name":"Invisible Passage","type":"feat","img":"icons/magic/perception/silhouette-stealth-shadow.webp","system":{"description":{"value":"The hag magically turns invisible until she attacks or casts a spell, or until her concentration ends (as if concentrating on a spell). While invisible, she leaves no physical evidence of her passage, so she can be tracked only by magic. Any equipment she wears or carries is invisible with her.The hag magically turns invisible. Any equipment she wears or carries is invisible with her.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FRIASnssihfMTZ7q"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CAxSzHWizrafT033","name":"Dancing Lights","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create up to four torch-sized lights within range, making them appear as torches, lanterns, or glowing orbs that hover in the air for the duration. You can also combine the four lights into one glowing vaguely humanoid form of Medium size. Whichever form you choose, each light sheds dim light in a 10-foot radius.As a bonus action on your turn, you can move the lights up to 60 feet to a new spot within range. A light must be within 20 feet of another light created by this spell, and a light winks out if it exceeds the spell's range.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of phosphorus or wychwood, or a glowworm","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.CAxSzHWizrafT033"}},"img":"icons/magic/fire/projectile-meteor-salvo-strong-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234094,"modifiedTime":1661791116911,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"oIzA2MEHwxhtQneU","name":"Minor Illusion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a sound or an image of an object within range that lasts for the duration. The illusion also ends if you dismiss it as an action or cast this spell again.If you create a sound, its volume can range from a whisper to a scream. It can be your voice, someone else's voice, a lion's roar, a beating of drums, or any other sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends.If you create an image of an object—such as a chair, muddy footprints, or a small chest—it must be no larger than a 5-foot cube. The image can't create sound, light, smell, or any other sensory effect. Physical interaction with the image reveals it to be an illusion, because things can pass through it.If a creature uses its action to examine the sound or image, the creature can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the illusion becomes faint to the creature.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"cube"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":12,"scaling":"spell"},"level":0,"school":"ill","components":{"vocal":false,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of fleece.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.oIzA2MEHwxhtQneU"}},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234224,"modifiedTime":1661791116912,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"cdrYKaFi98YWaBMw","name":"Vicious Mockery","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You unleash a string of insults laced with subtle enchantments at a creature you can see within range. If the target can hear you (though it need not understand you), it must succeed on a Wisdom saving throw or take 1d4 psychic damage and have disadvantage on the next attack roll it makes before the end of its next turn.This spell's damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","psychic"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":12,"scaling":"spell"},"level":0,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.cdrYKaFi98YWaBMw"}},"img":"icons/skills/toxins/cup-goblet-poisoned-spilled.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234175,"modifiedTime":1661791116912,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233213,"modifiedTime":1672596107911,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"shhHtE7b92PefCWB","name":"Aboleth","type":"npc","img":"","system":{"abilities":{"str":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":135,"min":0,"max":135,"temp":0,"tempmax":0,"formula":"18d10 + 36"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"aberration","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":10,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["deep"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":2,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":0,"max":0},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Aboleth","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":true,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Wpa7li8EJJJ7W3kA","name":"Enslave","type":"feat","img":"icons/magic/control/hypnosis-mesmerism-watch.webp","system":{"description":{"value":"\nThe aboleth targets one creature it can see within 30 ft. of it. The target must succeed on a DC 14 Wisdom saving throw or be magically charmed by the aboleth until the aboleth dies or until it is on a different plane of existence from the target.\nThe charmed target is under the aboleth's control and can't take reactions, and the aboleth and the target can communicate telepathically with each other over any distance.Whenever the charmed target takes damage, the target can repeat the saving throw. On a success, the effect ends. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the aboleth.\n\nThe target must make a Wisdom saving throw. Whenever the target takes damage, the target can repeat the saving throw. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the aboleth.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"wis"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.gbcy9MyUF06iUC88"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eK34LWjCZnoLqUbv","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"The aboleth makes a Wisdom (Perception) check.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":"wis","actionType":"abil","attackBonus":"","chatFlavor":"The aboleth focuses its gaze!","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"d20+@skills.prc.total","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nb2rVHLawik6EjMJ","name":"Tail Swipe","type":"feat","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nThe aboleth makes one tail attack.\n\nThe aboleth swipes its tail against its prey!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SCTJPlV2KrhVflgI","name":"Psychic Drain","type":"feat","img":"icons/magic/death/projectile-skull-flaming-green.webp","system":{"description":{"value":"One creature charmed by the aboleth takes 10 (3d6) psychic damage, and the aboleth regains hit points equal to the damage the creature takes.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","psychic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.OejKD6LitlURecxp"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dZWUNgKiLNxVg983","name":"Mucous Cloud","type":"feat","img":"icons/magic/water/bubbles-air-water-blue.webp","system":{"description":{"value":"\nWhile underwater, the aboleth is surrounded by transformative mucus. A creature that touches the aboleth or that hits it with a melee attack while within 5 ft. of it must make a DC 14 Constitution saving throw. On a failure, the creature is diseased for 1d4 hours. The diseased creature can breathe only underwater.\n\nWhile underwater, the aboleth is surrounded by transformative mucus. A creature that touches the aboleth or that hits it with a melee attack while within 5 ft. of it must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.HMOOZRxolMmv91xm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"R5sQYgehDyPiDyyE","name":"Probing Telepathy","type":"feat","img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","system":{"description":{"value":"If a creature communicates telepathically with the aboleth, the aboleth learns the creature's greatest desires if the aboleth can see the creature.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iDem2vV36tRkZUx0"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sgauK8Lyt8qxsxOH","name":"Tentacle","type":"weapon","img":"icons/creatures/tentacles/tentacles-thing-green.webp","system":{"description":{"value":"\nMelee Weapon Attack:+9 to hit,, 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage.\nIf the target is a creature, it must succeed on a DC 14 Constitution saving throw or become diseased. The disease has no effect for 1 minute and can be removed by any magic that cures disease. After 1 minute, the diseased creature gains Tentacle Disease.\n\nThe Aboleth attacks with its Tentacle. If the target is a creature, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FwOZEwx7MPDq8Igu","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nMelee Weapon Attack: +9 to hit, reach 10 ft. one target. Hit: 15 (3d6 + 5) bludgeoning damage.\n\nThe Aboleth attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fI8m07LnyCCdsSpn","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The aboleth can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Lnp6wFaKnkpuWJs2","name":"Tentacle Disease","type":"feat","img":"icons/magic/acid/projectile-glowing-bubbles.webp","system":{"description":{"value":"\nAfter 1 minute, the diseased creature's skin becomes translucent and slimy, the creature can't regain hit points unless it is underwater, and the disease can be removed only by heal or another disease-curing spell of 6th level or higher. When the creature is outside a body of water, it takes 6 (1d12) acid damage every 10 minutes unless moisture is applied to the skin before 10 minutes have passed.\n\nYou feel a surging pain rushing through your body!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.y18y37F8ppFLGuLb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5zfFkWqOMddCmxiR","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The aboleth makes three tentacle attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7GePgmNDyzzHHCKS","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SHlQeobxHZU6iQ24","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe aboleth can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The aboleth regains spent legendary actions at the start of its turn.\n\nThe aboleth can take 3 legendary actions.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"a4mvD9abiTdVlDIh","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233214,"modifiedTime":1672596108032,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"siBUEAj4UVdaiH6p","name":"Hunter Shark","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":45,"min":0,"max":45,"temp":0,"tempmax":0,"formula":"6d10 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":0,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Hunter Shark","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"nobk1ka9lHYyoww0","name":"Blood Frenzy","type":"feat","img":"icons/skills/wounds/blood-spurt-spray-red.webp","system":{"description":{"value":"The shark has advantage on melee attack rolls against any creature that doesn't have all its hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.B2kZOyrB7poB4liR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QX33CsCo431JxQxy","name":"Water Breathing","type":"feat","img":"icons/magic/water/projectile-water-ice-orb.webp","system":{"description":{"value":"The shark can breathe only underwater.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.c4Q6NDCLJSNcNc9T"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KcQolnG6732GPN3o","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.\nThe Hunter Shark attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233217,"modifiedTime":1672596108078,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"t8WYD7ak07X7xpx8","name":"Mummy","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":58,"min":0,"max":58,"temp":null,"tempmax":0,"formula":"9d8 + 18"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"int"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"","cr":3,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["necrotic","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":["fire"],"bypasses":[],"custom":""},"ci":{"value":["charmed","exhaustion","frightened","paralyzed","poisoned"],"custom":""},"languages":{"value":[],"custom":"the languages it knew in life"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Mummy","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"uGJpXeUbei6zXTd1","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The mummy can use its Dreadful Glare and makes one attack with its rotting fist.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ik1IkSZi4fpiGbB3","name":"Rotting Fist","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage plus 10 (3d6) necrotic damage. If the target is a creature, it must succeed on a DC 12 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.The Mummy attacks with its Rotting Fist. If the target is a creature, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6+@mod","bludgeoning"],["3d6","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":12,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8Jju4CVZaIDab6Ju","name":"Dreadful Glare","type":"feat","img":"icons/magic/perception/hand-eye-pink.webp","system":{"description":{"value":"The mummy targets one creature it can see within 60 ft. of it. If the target can see the mummy, it must succeed on a DC 11 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies (but not mummy lords) for the next 24 hours.The mummy targets one creature it can see within 60 ft. of it. If the target can see the mummy, it must make a Wisdom saving throw against this magic.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.H306eluIH47Wfr0U"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233218,"modifiedTime":1672596108118,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"tFJX45zj3QDc3Zli","name":"Grick","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":27,"min":0,"max":27,"temp":null,"tempmax":0,"formula":"6d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Grick","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"mZf3scqsBLavvot1","name":"Stone Camouflage","type":"feat","img":"icons/environment/settlement/stone-stairs.webp","system":{"description":{"value":"The grick has advantage on Dexterity (Stealth) checks made to hide in rocky terrain.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.j1cPfWFNvxGoex9Z"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dw5lQaT8ySNuOVd4","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The grick makes one attack with its tentacles. If that attack hits, the grick can make one beak attack against the same target.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tkVlxJxg4LBVJvuX","name":"Tentacles","type":"weapon","img":"icons/creatures/tentacles/tentacles-thing-green.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage.The Grick attacks with its Tentacles.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nKpLMXS9E10TSGhU"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AGLjE9RSCjg1vQ6R","name":"Beak","type":"weapon","img":"icons/commodities/bones/beak-hooked-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.The Grick attacks with its Beak.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233220,"modifiedTime":1672596108164,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"tYYoifu9teGLetVI","name":"Saber-Toothed Tiger","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":52,"min":0,"max":52,"temp":0,"tempmax":0,"formula":"7d10 + 14"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Saber-Toothed Tiger","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"1GpwqMUVXUhKvZSS","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The tiger has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6f3yWYLcONtKe72e","name":"Pounce","type":"feat","img":"icons/creatures/abilities/cougar-pounce-stalk-black.webp","system":{"description":{"value":"\nIf the tiger moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a DC 14 Strength saving throw or be knocked prone.\nIf the target is prone, the lion can make one bite attack against it as a bonus action.\n\nIf the tiger moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must make a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.MqAVplIArAKzpnXB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"npiswgaiGzupcEmw","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 10 (1d10 + 5) piercing damage.\nThe Saber-Toothed Tiger attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod + 1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"I9zJprscDFYpwwJR","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.\nThe Saber-Toothed Tiger attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod + 1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233221,"modifiedTime":1672596108207,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"tYfQIxCJT0WaaKmc","name":"Cult Fanatic","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":33,"min":0,"max":33,"temp":0,"tempmax":0,"formula":"6d8 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"wis"},"details":{"biography":{"value":"","public":""},"alignment":"Any Non-Good","race":"","type":{"value":"humanoid","subtype":"Any Race","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":4,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"any one language (usually Common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":4,"override":4},"spell2":{"value":3,"override":3},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Cult Fanatic","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"vTb2KSllrajm88Ni","name":"Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lSteE7vBmM70Jy3Z","name":"Dark Devotion","type":"feat","img":"icons/magic/control/control-influence-rally-purple.webp","system":{"description":{"value":"The fanatic has advantage on saving throws against being charmed or frightened.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.XFvk6ywwZWTkMmQR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KRbUbk5AkQOabBhO","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"\nThe fanatic is a 4th-level spellcaster. Its spell casting ability is Wisdom (spell save DC 11, +3 to hit with spell attacks).\nThe fanatic has the following cleric spells prepared:\nCantrips (at will): light, sacred flame, thaumaturgy\n1st level (4 slots): command, inflict wounds, shield of faith\n 2nd level (3 slots): hold person, spiritual weapon\n\nThe fanatic is a spellcaster. Its spell casting ability is Wisdom.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WfqCnxOUS8aXxd7O","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The fanatic makes two melee attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zTX7ZTUkqUMSbGII","name":"Dagger","type":"weapon","img":"icons/weapons/daggers/dagger-jeweled-purple.webp","system":{"description":{"value":"\nMelee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one creature. Hit: 4 (1d4 + 2) piercing damage.\nThe Cult Fanatic attacks with their Dagger.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.0E565kQUBmndJ1a2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Bnn9Nzajixvow9xi","name":"Light","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":11,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A firefly or phosphorescent moss.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Bnn9Nzajixvow9xi"}},"img":"icons/magic/light/explosion-star-small-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234093,"modifiedTime":1661791116930,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"n9pJzTDsAwQxJVRl","name":"Sacred Flame","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Flame-like radiance descends on a creature that you can see within range. The target must succeed on a Dexterity saving throw or take 1d8 radiant damage. The target gains no benefit from cover for this saving throw.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":11,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.n9pJzTDsAwQxJVRl"}},"img":"icons/magic/light/beam-rays-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234221,"modifiedTime":1661791116930,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MUO1uYN7JR1hm4dR","name":"Thaumaturgy","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create one of the following magical effects within range:\n\nYour voice booms up to three times as loud as normal for 1 minute.\nYou cause flames to flicker, brighten, dim, or change color for 1 minute.\nYou cause harmless tremors in the ground for 1 minute.\nYou create a sound that originates from a point of your choice within range.\nYou cause an unlocked door or window to fly open or slam shut.\nYou alter the appearance of your eyes for 1 minute.\n\nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234127,"modifiedTime":1661791116931,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"arzCrMRgcNiQuh43","name":"Command","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You speak a one-word command to a creature you can see within range. The target must succeed on a Wisdom saving throw or follow the command on its next turn. The spell has no effect if the target is undead, if it doesn't understand your language, or if your command is directly harmful to it.Some typical commands and their effects follow. You might issue a command other than one described here. If you do so, the DM determines how the target behaves. If the target can't follow your command, the spell ends.Approach. The target moves toward you by the shortest and most direct route, ending its turn if it moves within 5 feet of you.Drop. The target drops whatever it is holding and then ends its turn.Flee. The target spends its turn moving away from you by the fastest available means.Grovel. The target falls prone and then ends its turn.Halt. The target doesn't move and takes no actions. A flying creature stays aloft, provided that it is able to do so. If it must move to stay aloft, it flies the minimum distance needed to remain in the air.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":11,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.arzCrMRgcNiQuh43"}},"img":"icons/magic/fire/explosion-fireball-small-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234169,"modifiedTime":1661791116931,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ksaaTxIbKx2sJfia","name":"Inflict Wounds","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Make a melee spell Attack against a creature you can reach. On a hit, the target takes 3d10 necrotic damage.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d10 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d10"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ksaaTxIbKx2sJfia"}},"img":"icons/magic/unholy/strike-beam-blood-red-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234216,"modifiedTime":1661791116932,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"jZ6JNykRtdQ90MOo","name":"Shield of Faith","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A shimmering field appears and surrounds a creature of your choice within range, granting it a +2 bonus to AC for the duration.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small parchment with a bit of holy text written on it.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.jZ6JNykRtdQ90MOo"}},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234212,"modifiedTime":1661791116932,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"3Lo9boi7P2ro6QV4","name":"Hold Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a humanoid that you can see within range. The target must succeed on a Wisdom saving throw or be paralyzed for the duration. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional humanoid for each slot level above 2nd. The humanoids must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":11,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small, straight piece of iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.3Lo9boi7P2ro6QV4"}},"img":"icons/magic/control/debuff-chains-ropes-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234063,"modifiedTime":1661791116932,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"JbxsYXxSOTZbf9I0","name":"Spiritual Weapon","type":"spell","img":"icons/magic/fire/dagger-rune-enchant-flame-purple.webp","system":{"description":{"value":"You create a floating, spectral weapon within range that lasts for the duration or until you cast this spell again. When you cast the spell, you can make a melee spell attack against a creature within 5 feet of the weapon. On a hit, the target takes force damage equal to 1d8 + your spellcasting ability modifier.As a bonus action on your turn, you can move the weapon up to 20 feet and repeat the attack against a creature within 5 feet of it.The weapon can take whatever form you choose. Clerics of deities who are associated with a particular weapon (as St. Cuthbert is known for his mace and Thor for his hammer) make this spell's effect resemble that weapon.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for every two slot levels above the 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"square"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["floor(@item.level / 2)d8 + @mod","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.JbxsYXxSOTZbf9I0"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234115,"modifiedTime":1661791116932,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233223,"modifiedTime":1672596108311,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"tubcO7kaQ4w0soxS","name":"Lemure","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":7,"calc":"natural","formula":""},"hp":{"value":13,"min":0,"max":13,"temp":0,"tempmax":0,"formula":"3d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":15,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"Devil","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["cold"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","poisoned"],"custom":""},"languages":{"value":["infernal","custom"],"custom":"Cannot Speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Lemure","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.3},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"zEGUljO44aDmj8z5","name":"Devil's Sight","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"Magical darkness doesn't impede the lemure's darkvision.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Lemure","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7gfe5c1qGIvai12V","name":"Hellish Rejuvenation","type":"feat","img":"icons/skills/wounds/anatomy-organ-heart-red.webp","system":{"description":{"value":"\nA lemure that dies in the Nine Hells sometimes comes back to comes back to life with all its hit points in 1d10 days unless it is killed by a good-aligned creature with a bless spell cast on that creature or its remains are sprinkled with holy water.\n\nA lemure that dies in the Nine Hells sometimes comes back to life.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d10","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Lemure","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.XmLuhZYd9WnCWBlU"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TypCj0S846TqsHzI","name":"Fist","type":"weapon","img":"icons/magic/fire/flame-burning-fist-strike.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 2 (1d4) bludgeoning damage.\nThe Lemure attacks with its Fist.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233226,"modifiedTime":1672596108358,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"u0FWdplSOMTXGnN1","name":"Ancient Copper Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":27,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":25,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":21,"calc":"natural","formula":""},"hp":{"value":350,"min":0,"max":350,"temp":0,"tempmax":0,"formula":"20d20 +140"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":40,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Hill","cr":21,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"grg","di":{"value":["acid"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Ancient Copper Dragon","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"1sKXBcJq4vo5LyOB","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ztuakGSKlE6QF2MC","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hGGrGcyo6L62I2rM","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CXPSEbsRqSkZnER8","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eCpXCLFLV7W22orV","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+15 to hit,, 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.The Ancient Copper Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lsey8RJZiuByt97z","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+15 to hit,, 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.The Ancient Copper Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SvpSnbfGzHw6dW0p","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+15 to hit,, 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.The Ancient Copper Dragon attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YkCurZ53A7ciRit3","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":19,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gkVpkxWRXjzllWOH","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8GXBUXkbu1e62ZDK","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"O2pIuhKov4RccvzH","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"oSQ8xmkOOeRaSlFz","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sacY5ISgjFZCSNUi","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 23 Dexterity saving throw or take 15 ([[/r 2d6+8]]) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":23,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TXjalusRqJTJKFCq","name":"Breath Weapons","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Acid Breath.** The dragon exhales acid in an 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 63 (14d8) acid damage on a failed save, or half as much damage on a successful one.\n**Slowing Breath.** The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 22 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gWVU1Bt1WhK9lLEf","name":"Acid Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\n**Acid Breath.** The dragon exhales acid in an 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 63 (14d8) acid damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales acid in an 90-foot line that is 10 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["14d8","acid"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":22,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zjcGly9P3Gn9MXt7"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"B8O16TZ5LWWKc4a4","name":"Slowing Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\n**Slowing Breath.** The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 22 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n\nThe dragon exhales gas in a 90-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":22,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JRy507rS9wxT3GBh"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233228,"modifiedTime":1672596108451,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"u1UQfHutP5eEKkjM","name":"Young White Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":133,"min":0,"max":133,"temp":0,"tempmax":0,"formula":"14d10 + 56"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":20,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Arctic","cr":6,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["cold"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Young White Dragon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"qFfEF7lLt2kH3RbA","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) cold damage.The Young White Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"The dragon opens its wide mouth to bite its foe.","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["1d8","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"d9xXEIYNNQjIMGF8","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.The Young White Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"The dragon strikes with one of its claws.","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"78LbjdfWaZcAqVE7","name":"Cold Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 15 Constitution saving throw, taking 45 (10d8) cold damage on a failed save, or half as much damage on a successful one.The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"The dragon exhales its deadly breath attack.","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d8","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iHOaiOqwUWIfCljJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"g2nJbBJ06mRtxEy0","name":"Ice Walk","type":"feat","img":"icons/magic/water/water-iceberg-bubbles.webp","system":{"description":{"value":"The dragon can move across and climb icy surfaces without needing to make an ability check. Additionally, difficult terrain composed of ice or snow doesn't cost it extra movement.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.YKC7pwYkJSKn1vuw"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lRFwKaRqhFY4xNhJ","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233230,"modifiedTime":1672596108500,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"uZ8NrRenwYZ4qNf6","name":"Balor","type":"npc","img":"","system":{"abilities":{"str":{"value":26,"proficient":1,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":22,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":22,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":262,"min":0,"max":262,"temp":null,"tempmax":0,"formula":"21d12 + 126"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"fiend","subtype":"Demon","swarm":"","custom":""},"environment":"","cr":19,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","lightning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["abyssal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Balor","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"nzkZgDrDq0RwWUao","name":"Death Throes","type":"feat","img":"icons/magic/fire/explosion-fireball-large-red-orange.webp","system":{"description":{"value":"\nWhen the balor dies, it explodes, and each creature within 30 feet of it must make a DC 20 Dexterity saving throw, taking 70 (20d6) fire damage on a failed save, or half as much damage on a successful one.\nThe explosion ignites flammable objects in that area that aren't being worn or carried, and it destroys the balor's weapons.\n\nWhen the balor dies, it explodes, and each creature within 30 feet of it must make a Dexterity saving throw. The explosion ignites flammable objects in that area that aren't being worn or carried, and it destroys the balor's weapons.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":"Upon death"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["20d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":20,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EmlE1a0rhucK2UT1"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FWSzSLqeIDq7meXC","name":"Fire Aura","type":"feat","img":"icons/magic/air/fog-gas-smoke-swirling-orange.webp","system":{"description":{"value":"\nAt the start of each of the balor's turns, each creature within 5 feet of it takes 10 (3d6) fire damage, and flammable objects in the aura that aren't being worn or carried ignite.\nA creature that touches the balor or hits it with a melee attack while within 5 feet of it takes 10 (3d6) fire damage.\n\nAt the start of each of the balor's turns, each creature within 5 feet of it takes fire damage, and flammable objects in the aura that aren't being worn or carried ignite. A creature that touches the balor or hits it with a melee attack while within 5 feet of it takes fire damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LJTY3nl1cp9go4eT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0Y2ThqWytMPb9RlR","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The balor has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5TGqX6bI8BdLEvTk","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The balor's weapon attacks are magical.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qzphlErr2D2mRpxT","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The balor makes two attacks: one with its longsword and one with its whip.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mw93amZDA4ctKqvQ","name":"Teleport","type":"feat","img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","system":{"description":{"value":"The balor magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.PPzVD90vab60FqCt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6ZAh5TkiXwQMUfDB","name":"Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"\nMelee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 21 (3d8 + 8) slashing damage plus 13 (3d8) lightning damage.\nIf the balor scores a critical hit, it rolls damage dice three times, instead of twice.\n\nThe Balor attacks with its Longsword.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8 + @mod","slashing"],["3d8","lightning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1oGgJQB1ItqyKoZ5","name":"Whip","type":"weapon","img":"icons/weapons/misc/whip-red-yellow.webp","system":{"description":{"value":"\nMelee Weapon Attack:+14 to hit,, 30 ft., one target. Hit: 15 (2d6 + 8) slashing damage plus 10 (3d6) fire damage.\nThe target must succeed on a DC 20 Strength saving throw or be pulled up to 25 feet toward the balor.\n\nThe Balor attacks with its Whip. The target must make a Strength saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"],["3d6","fire"]],"versatile":""},"formula":"","save":{"ability":"str","dc":20,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"rch":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QKTyxoO0YDnAsbYe"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233232,"modifiedTime":1672596108544,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"v99wOosUJjUgcUNF","name":"Giant Spider","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":26,"min":0,"max":26,"temp":0,"tempmax":0,"formula":"4d10 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":1,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Spider","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"OPXUPzkwhBaLTt7a","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The spider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1LTl2RCToU6ZLZdi","name":"Web Sense","type":"feat","img":"icons/creatures/webs/web-spider-glowing-purple.webp","system":{"description":{"value":"While in contact with a web, the spider knows the exact location of any other creature in contact with the same web.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kjF0btAMYHUAQgOt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tEmV0HTreVHudOYa","name":"Web Walker","type":"feat","img":"icons/magic/nature/tree-bare-glow-yellow.webp","system":{"description":{"value":"The spider ignores movement restrictions caused by webbing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zITrVwmnPpLoBZI1"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SuRAERXystPvC7Ci","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one creature. Hit: 7 (1d8 + 3) piercing damage.\nThe target must make a DC 11 Constitution saving throw, taking 9 (2d8) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but poisoned for 1 hour, even after regaining hit points, and is paralyzed while poisoned in this way.\n\nThe Giant Spider attacks with its Bite. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":"2d8"},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"g7e60AxXarlQ9xQC","name":"Web","type":"feat","img":"icons/creatures/webs/web-spider-glowing-purple.webp","system":{"description":{"value":"\nRanged Weapon Attack: +5 to hit, range 30/60 ft., one creature. Hit: The target is restrained by webbing.\nAs an action, the restrained target can make a DC 12 Strength check, bursting the webbing on a success. The webbing can also be attacked and destroyed (AC 10; hp 5; vulnerability to fire damage; immunity to bludgeoning, poison, and psychic damage).\n\nThe target is restrained by webbing. As an action, the restrained target can make a Strength check, bursting the webbing on a success.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":12,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.i8WDjw4J1gJWQmqG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233234,"modifiedTime":1672596108588,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"vFeFRlF2FOgf2HIL","name":"Ancient Red Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":30,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":29,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":23,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":22,"calc":"natural","formula":""},"hp":{"value":546,"min":0,"max":546,"temp":0,"tempmax":0,"formula":"28d20+252"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":40,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":24,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"grg","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Ancient Red Dragon","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"nOBAY4ulYbWMc8Pz","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+17 to hit,, 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage plus 14 (4d6) fire damage.The Ancient Red Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["4d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AheA06jKecElYrVt","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+17 to hit,, 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.The Ancient Red Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EjnCigBWyq30VL4S","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+17 to hit,, 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.The Ancient Red Dragon attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LQKBexRS91dTMEKa","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wUEVmK5TEnYsMuwJ","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 91 (26d6) fire damage on a failed save, or half as much damage on a successful one.The dragon exhales fire in a 90-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["26d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CGGqslZMTHbSwRwP","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Whn4pPAB1YSnvocN","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"diR3Lju2cmIwIOyG","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rOXIh3YF5Aiu8aVC","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0fheJO7kmH1UV99g","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 25 Dexterity saving throw or take 17 ([[/r 2d6+10]]) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":25,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7WxDZHowVjqC4DfC","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"H2ocal2ApylIiTPs","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CKhSReu2mqp91FfW","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233235,"modifiedTime":1672596108681,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"vc2TAgIuq4yInjbf","name":"White Dragon Wyrmling","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":16,"calc":"natural","formula":""},"hp":{"value":32,"min":0,"max":32,"temp":0,"tempmax":0,"formula":"5d8 + 10"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":15,"climb":0,"fly":60,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["cold"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"White Dragon Wyrmling","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"5fAK2gZdIiYxLNzK","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) cold damage.The White Dragon Wyrmling attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"],["1d4","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8ZXdgzpI6WytT63w","name":"Cold Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"The dragon exhales an icy blast of hail in a 15-foot cone. Each creature in that area must make a DC 12 Constitution saving throw, taking 22 (5d8) cold damage on a failed save, or half as much damage on a successful one.The dragon exhales an icy blast of hail in a 15-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":12,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iHOaiOqwUWIfCljJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233237,"modifiedTime":1672596108728,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"x47ZnpHfYl0ptDM9","name":"Behir","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":168,"min":0,"max":168,"temp":0,"tempmax":0,"formula":"16d12 + 64"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":40,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":90,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":11,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"huge","di":{"value":["lightning"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Behir","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":90,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"LzR8BLFWMmqI6gTl","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The behir makes two attacks: one with its bite and one to constrict.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4fNbTxkAFYHxDdJX","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 22 (3d10 + 6) piercing damage.\nThe Behir attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GCUh42hMUnKtxx8j","name":"Constrict","type":"weapon","img":"icons/creatures/reptiles/serpent-horned-green.webp","system":{"description":{"value":"\nMelee Weapon Attack: +10 to hit, reach 5 ft., one Large or smaller creature. Hit: 17 (2d10 + 6) bludgeoning damage plus 17 (2d10 + 6) slashing damage.\nThe target is grappled (escape DC 16) if the behir isn't already constricting a creature, and the target is restrained until this grapple ends.\n\nThe Behir attacks with its Constrict. The target is grappled if the Behir isn't already constricting a creature, and the target is restrained until this grapple ends.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","bludgeoning"],["2d10 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gjce4R2feN2UH0YE","name":"Lightning Breath","type":"feat","img":"icons/magic/lightning/bolt-strike-smoke-yellow.webp","system":{"description":{"value":"\nThe behir exhales a line of lightning that is 20 ft. long and 5 ft. wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\nThe behir exhales a line of lightning that is 20 ft. long and 5 ft. wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":16,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LVnd9fq9cQj7rR0Q"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0QJeW80m89X0RLNz","name":"Swallow","type":"feat","img":"icons/creatures/abilities/mouth-teeth-tongue-purple.webp","system":{"description":{"value":"\nThe behir makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is also swallowed, and the grapple ends. While swallowed, the target is blinded and restrained, it has total cover against attacks and other effects outside the behir, and it takes 21 (6d6) acid damage at the start of each of the behir's turns. A behir can have only one creature swallowed at a time.\nIf the behir takes 30 damage or more on a single turn from the swallowed creature, the behir must succeed on a DC 14 Constitution saving throw at the end of that turn or regurgitate the creature, which falls prone in a space within 10 ft. of the behir. If the behir dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 15 ft. of movement, exiting prone.\n\nThe Behir attacks with its Swallow.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.aH5ncM30tP8tPQ24"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233239,"modifiedTime":1672596108777,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xBhG7Dos3tkg9jWz","name":"Ochre Jelly","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":8,"calc":"natural","formula":""},"hp":{"value":45,"min":0,"max":45,"temp":0,"tempmax":0,"formula":"6d10 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":10,"fly":0,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":"Blind beyond this radius"},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"ooze","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["lightning","slashing"],"bypasses":[],"custom":""},"dr":{"value":["acid"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["blinded","charmed","deafened","frightened","prone","exhaustion"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ochre Jelly","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"SYdqeemFOudCYb9E","name":"Pseudopod","type":"weapon","img":"icons/creatures/slimes/slime-movement-dripping-pseudopods-green.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 9 (2d6 + 2) bludgeoning damage plus 3 (1d6) acid damage.The Ochre Jelly attacks with its Pseudopod.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"],["1d6","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Rrswv9BPB94D3xHQ","name":"Amorphous","type":"feat","img":"icons/creatures/slimes/slime-movement-dripping-purple.webp","system":{"description":{"value":"The jelly can move through a space as narrow as 1 inch wide without squeezing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.3lDp8DtWwNDHSvxX"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"aaVwT7vVSywUzWhC","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The jelly can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2ifhxY5f2Xs4GMxR","name":"Split","type":"feat","img":"icons/creatures/slimes/slime-movement-pseudopod-green.webp","system":{"description":{"value":"When a jelly that is Medium or larger is subjected to lightning or slashing damage, it splits into two new jellies if it has at least 10 Hit Points. Each new jelly has Hit Points equal to half the original jelly's, rounded down. New jellies are one size smaller than the original jelly.The jelly splits into two new jellies. New jellies are one size smaller than the original jelly.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.NzHwrEuKnKxZ4NTP"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233240,"modifiedTime":1672596108817,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xple5bvGj42uGgdd","name":"Minotaur Skeleton","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":67,"min":0,"max":67,"temp":0,"tempmax":0,"formula":"9d10 + 18"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":2,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":["bludgeoning"],"bypasses":[],"custom":""},"ci":{"value":["poisoned","exhaustion"],"custom":""},"languages":{"value":["abyssal"],"custom":"understands but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Minotaur Skeleton","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"p7R5kkqAVQFKClRm","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"If the skeleton moves at least 10 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 9 (2d8) piercing damage. If the target is a creature, it must succeed on a DC 14 Strength saving throw or be pushed up to 10 feet away and knocked prone.If the skeleton moves at least 10 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes extra piercing damage. If the target is a creature, it must make a Strength saving throw or be pushed up to 10 feet away and knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","piercing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vJAkNKhTmRrz6Zoq","name":"Greataxe","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.The Minotaur Skeleton attacks with its Greataxe.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":7,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d12+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.1Lxk6kmoRhG8qQ0u"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3Fsct4zbAf7l47Lp","name":"Gore","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.The Minotaur Skeleton attacks with its Gore.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233242,"modifiedTime":1672596108859,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xvh2UOKv1bh03Gih","name":"Night Hag","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":112,"min":0,"max":112,"temp":null,"tempmax":0,"formula":"15d8 + 45"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"fiend","subtype":"","swarm":"","custom":""},"environment":"","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","fire","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed"],"custom":""},"languages":{"value":["abyssal","common","infernal","primordial"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Night Hag","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"bUkTkdnQ3XbRcXkD","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The hag's innate spellcasting ability is Charisma (spell save DC 14, +6 to hit with spell attacks). She can innately cast the following spells, requiring no material components:\nAt will: detect magic, magic missile\n2/day each: plane shift (self only), ray of enfeeblement, sleep","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9Gf1hal94HjuAHMN","name":"Plane Shift (self only)","type":"spell","img":"icons/magic/symbols/runes-star-pentagon-orange-purple.webp","system":{"description":{"value":"You and up to eight willing creatures who link hands in a circle are transported to a different plane of existence. You can specify a target destination in general terms, such as the City of Brass on the Elemental Plane of Fire or the palace of Dispater on the second level of the Nine Hells, and you appear in or near that destination. If you are trying to reach the City of Brass, for example, you might arrive in its Street of Steel, before its Gate of Ashes, or looking at the city from across the Sea of Fire, at the DM's discretion.Alternatively, if you know the sigil sequence of a teleportation circle on another plane of existence, this spell can take you to that circle. If the teleportation circle is too small to hold all the creatures you transported, they appear in the closest unoccupied spaces next to the circle.You can use this spell to banish an unwilling creature to another plane. Choose a creature within your reach and make a melee spell attack against it. On a hit, the creature must make a Charisma saving throw. If the creature fails this save, it is transported to a random location on the plane of existence you specify. A creature so transported must find its own way back to your current plane of existence.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":8,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":2,"max":"2","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":14,"scaling":"spell"},"level":7,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":250,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.J6Jpw5XzB5aTeqnz"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OMZ6qNK1bdpI8ryh","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The hag has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Um3cK4i4ZQSTqodb","name":"Claws (Hag Form Only)","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.The Night Hag attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ftmaVOSJXvHPhraJ","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The hag magically polymorphs into a Small or Medium female humanoid, or back into her true form. Her statistics are the same in each form. Any equipment she is wearing or carrying isn't transformed. She reverts to her true form if she dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0blKOND2AnsMsZa6","name":"Etherealness","type":"feat","img":"icons/magic/unholy/barrier-shield-glowing-pink.webp","system":{"description":{"value":"The hag magically enters the Ethereal Plane from the Material Plane, or vice versa. To do so, the hag must have a heartstone in her possession.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.rDoNJnKdY47x8MD4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tYZggJHgAbixP5rs","name":"Nightmare Haunting","type":"feat","img":"icons/commodities/tech/smoke-bomb-purple.webp","system":{"description":{"value":"While on the Ethereal Plane, the hag magically touches a sleeping humanoid on the Material Plane. A protection from evil and good spell cast on the target prevents this contact, as does a magic circle. As long as the contact persists, the target has dreadful visions. If these visions last for at least 1 hour, the target gains no benefit from its rest, and its hit point maximum is reduced by 5 (1d10). If this effect reduces the target's hit point maximum to 0, the target dies, and if the target was evil, its soul is trapped in the hag's soul bag. The reduction to the target's hit point maximum lasts until removed by the greater restoration spell or similar magic.While on the Ethereal Plane, the hag magically touches a sleeping humanoid on the Material Plane. As long as the contact persists, the target has dreadful visions.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VbBHypDc0eLWbsNE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116952,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"41JIhpDyM9Anm7cs","name":"Magic Missile","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create three glowing darts of magical force. Each dart hits a creature of your choice that you can see within range. A dart deals 1d4 + 1 force damage to its target. The darts all strike simultaneously, and you can direct them to hit one creature or several.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the spell creates one more dart for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + 1","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.41JIhpDyM9Anm7cs"}},"img":"icons/magic/fire/projectile-meteor-salvo-light-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234065,"modifiedTime":1661791116952,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ODhLKBxLnvvLOnw1","name":"Ray of Enfeeblement","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A black beam of enervating energy springs from your finger toward a creature within range. Make a ranged spell attack against the target. On a hit, the target deals only half damage with weapon attacks that use Strength until the spell ends.At the end of each of the target's turns, it can make a Constitution saving throw against the spell. On a success, the spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":2,"max":"2","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"spell"},"level":2,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ODhLKBxLnvvLOnw1"}},"img":"icons/magic/light/beam-rays-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234130,"modifiedTime":1661791116952,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"KhwiSi9fwVfUPtku","name":"Sleep","type":"spell","img":"icons/magic/light/explosion-star-small-pink.webp","system":{"description":{"value":"This spell sends creatures into a magical slumber. Roll 5d8; the total is how many hit points of creatures this spell can affect. Creatures within 20 feet of a point you choose within range are affected in ascending order of their current hit points (ignoring unconscious creatures).Starting with the creature that has the lowest current hit points, each creature affected by this spell falls unconscious until the spell ends, the sleeper takes damage, or someone uses an action to shake or slap the sleeper awake. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.Undead and creatures immune to being charmed aren't affected by this spell.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d8 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":2,"max":"2","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of fine sand, rose petals, or a cricket.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":"2d8"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.KhwiSi9fwVfUPtku"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234117,"modifiedTime":1661791116953,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233243,"modifiedTime":1672596108951,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"y8sRU8Ks2lcrGsaf","name":"Goat","type":"npc","img":"","system":{"abilities":{"str":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":4,"min":0,"max":4,"temp":0,"tempmax":0,"formula":"1d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":0,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Goat","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"fmILoB0arLdodNGB","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nIf the goat moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 2 (1d4) bludgeoning damage.\nIf the target is a creature, it must succeed on a DC 10 Strength saving throw or be knocked prone.\n\nIf the goat moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes a extra bludgeoning damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gyY5rw0x4itzMKoj","name":"Sure-Footed","type":"feat","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"The goat has advantage on Strength and Dexterity saving throws made against effects that would knock it prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Goat","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nJHx2fudYhZeexDP"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"I3ioyE4CVHPLGGy7","name":"Ram","type":"weapon","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 3 (1d4 + 1) bludgeoning damage.\nThe Goat attacks with its Ram.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233245,"modifiedTime":1672596108999,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"yGTh874etxUckmAf","name":"Winter Wolf","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":75,"min":0,"max":75,"temp":0,"tempmax":0,"formula":"10d10 + 20"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Arctic","cr":3,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["cold"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","giant","custom"],"custom":"Winter Wolf"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Winter Wolf","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"gbqFx1sEQUYQlDpJ","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The wolf has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"axhIBG9zM7Z9AHxL","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The wolf has advantage on an attack roll against a creature if at least one of the wolf's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pu8fxDuua6ObNqtg","name":"Snow Camouflage","type":"feat","img":"icons/magic/water/barrier-ice-crystal-wall-faceted.webp","system":{"description":{"value":"The wolf has advantage on Dexterity (Stealth) checks made to hide in snowy terrain.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.jnKOUieu2UO1xHhT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5PmQuifZGbPWxAYz","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) piercing damage. If the target is a creature, it must succeed on a DC 14 Strength saving throw or be knocked prone.\n\nThe Winter Wolf attacks with its Bite. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":14,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Rj3oSInoQMIfHrPc","name":"Cold Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\nThe wolf exhales a blast of freezing wind in a 15-foot cone. Each creature in that area must make a DC 12 Dexterity saving throw, taking 18 (4d8) cold damage on a failed save, or half as much damage on a successful one. Recharge 5-6.\nThe wolf exhales a blast of freezing wind in a 15-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8","cold"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":12,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iHOaiOqwUWIfCljJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233247,"modifiedTime":1672596109040,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"yVNPVJIBpQ2Mp3Xa","name":"Salamander","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":90,"min":0,"max":90,"temp":null,"tempmax":0,"formula":"12d10 + 24"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":["cold"],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["ignan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Salamander","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"2n8ByeQNl7QkjNVA","name":"Heated Body","type":"feat","img":"icons/creatures/abilities/mouth-teeth-fire-orange.webp","system":{"description":{"value":"A creature that touches the salamander or hits it with a melee attack while within 5 ft. of it takes 7 (2d6) fire damage.A creature that touches the salamander or hits it with a melee attack while within 5 ft. of it takes fire damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iFNpsEMJT66eLoat"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2y0o9wGzCVoBBuDZ","name":"Heated Weapons","type":"feat","img":"icons/skills/melee/strike-weapons-orange.webp","system":{"description":{"value":"Any metal melee weapon the salamander wields deals an extra 3 (1d6) fire damage on a hit (included in the attack).Any metal melee weapon the salamander wields deals an extra fire damage on a hit (included in the attack).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.i3viKtKcSVeWLJFJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"H9TCRB3zfkFwk192","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The salamander makes two attacks: one with its spear and one with its tail.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rvRy41yt9zowrAr1","name":"Salamander - Tail","type":"weapon","img":"icons/magic/lightning/bolt-strike-smoke-yellow.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage plus 7 (2d6) fire damage.The target is grappled (escape DC 14). Until this grapple ends, the target is restrained, the salamander can automatically hit the target with its tail, and the salamander can't make tail attacks against other targets.The Salamander attacks with its Tail. The target is grappled. Until this grapple ends, the target is restrained, the salamander can automatically hit the target with its tail, and the salamander can't make tail attacks against other targets.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"],["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SKwOsrThcwqMXCZv","name":"Spear","type":"weapon","img":"icons/magic/fire/projectile-arrow-fire-red-yellow.webp","system":{"description":{"value":"\nMelee or Ranged Weapon Attack: +7 to hit, reach 5 ft. or range 20 ft./60 ft., one target. Hit: 11 (2d6 + 4) piercing damage, or 13 (2d8 + 4) piercing damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.\nThe Salamander attacks with its Spear.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"],["1d6","fire"]],"versatile":"2d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"thr":true,"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.OG4nBBydvmfWYXIk"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233249,"modifiedTime":1672596109088,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"yawTeS8u2FCfzzZH","name":"Wolf","type":"npc","img":"","system":{"abilities":{"str":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.25,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Wolf","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"z1WFJdHb8OXvW2yy","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The wolf has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GtradZW0Fk8JKMAe","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The wolf has advantage on an attack roll against a creature if at least one of the wolf's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MuH5aMoKOyZanrFf","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (2d4 + 2) piercing damage.\nIf the target is a creature, it must succeed on a DC 11 Strength saving throw or be knocked prone.\n\nThe Wolf attacks with its Bite. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233251,"modifiedTime":1672596109135,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"z0zvgcIugizwcuxJ","name":"Giant Rat (Diseased)","type":"npc","img":"","system":{"abilities":{"str":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":7,"min":0,"max":7,"temp":0,"tempmax":0,"formula":"2d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0.125,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Rat (Diseased)","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"52m3BQ2wpXvT0jOM","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 3 (1d4 + 2) piercing damage.\nIf the target is a creature, it must succeed on a DC 10 Constitution saving throw or contract a disease. Until the disease is cured, the target can't regain hit points except by magical means, and the target's hit point maximum decreases by 3 (1d6) every 24 hours. If the target's hit point maximum drops to 0 as a result of this disease, the target dies.\n\nThe Giant Rat (Diseased) attacks with its Bite. If the target is a creature, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":10,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uQpDpdmzlAyQKbRu","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The rat has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5ZWzJ5OSQh22ueeq","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The rat has advantage on an attack roll against a creature if at least one of the rat's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233253,"modifiedTime":1672596109177,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"z3gSIXHHWYaHjfBT","name":"Stone Golem","type":"npc","img":"","system":{"abilities":{"str":{"value":22,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":178,"min":0,"max":178,"temp":null,"tempmax":0,"formula":"17d10 + 85"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"construct","subtype":"","swarm":"","custom":""},"environment":"","cr":10,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["bludgeoning","piercing","poison","psychic","slashing"],"bypasses":["ada","mgc"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","exhaustion","frightened","paralyzed","petrified","poisoned"],"custom":""},"languages":{"value":[],"custom":"understands the languages of its creator but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Stone Golem","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"FWww5Mv4eoxXAADH","name":"Immutable Form","type":"feat","img":"icons/magic/unholy/orb-beam-pink.webp","system":{"description":{"value":"The golem is immune to any spell or effect that would alter its form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.MFuiImIvLzYA3osc"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kf6ELkKrSnpD2fwD","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The golem has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GGgxGpYSCDYiflMA","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The golem's weapon attacks are magical.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ym2CUTgDPucdmj1W","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The golem makes two slam attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DelAxHnRbNHC6OoV","name":"Slam","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.The Stone Golem attacks with its Slam.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9aTwUWuZQLhMxjcD","name":"Stone Golem - Slow","type":"feat","img":"icons/tools/navigation/watch-simple-blue.webp","system":{"description":{"value":"The golem targets one or more creatures it can see within 10 ft. of it. Each target must make a DC 17 Wisdom saving throw against this magic. On a failed save, a target can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the target can take either an action or a bonus action on its turn, not both. These effects last for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.The golem targets one or more creatures it can see within 10 ft. of it. Each target must make a Wisdom saving throw against this magic. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.BDnjS1sQi2pdARh8"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233254,"modifiedTime":1672596109220,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"z85EsGS2GVWj46qE","name":"Shield Guardian","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":142,"min":0,"max":142,"temp":0,"tempmax":0,"formula":"15d10 + 60"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"construct","subtype":"","swarm":"","custom":""},"environment":"Urban","cr":7,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","paralyzed","poisoned","exhaustion"],"custom":""},"languages":{"value":["custom"],"custom":"understands commands given in any language but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Shield Guardian","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"mJoNsESU5X2lBKqn","name":"Bound","type":"feat","img":"icons/equipment/neck/choker-chain-thick-silver.webp","system":{"description":{"value":"The shield guardian is magically bound to an amulet. As long as the guardian and its amulet are on the same plane of existence, the amulet's wearer can telepathically call the guardian to travel to it, and the guardian knows the distance and direction to the amulet. If the guardian is within 60 feet of the amulet's wearer, half of any damage the wearer takes (rounded up) is transferred to the guardian.The shield guardian is magically bound to an amulet. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.twrIaUZ79Yn5qpML"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vk0gd3buCPWGpyYF","name":"Regeneration","type":"feat","img":"icons/skills/wounds/anatomy-organ-heart-red.webp","system":{"description":{"value":"The shield guardian regains 10 hit points at the start of its turn if it has at least 1 hit point.The shield guardian regains 10 hit points at the start of its turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Av7H0ymGdPeTsnwV"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qbSL2A0uKuh2iER5","name":"Spell Storing","type":"feat","img":"icons/magic/defensive/shield-barrier-blades-teal.webp","system":{"description":{"value":"A spellcaster who wears the shield guardian's amulet can cause the guardian to store one spell of 4th level or lower. To do so, the wearer must cast the spell on the guardian. The spell has no effect but is stored within the guardian. When commanded to do so by the wearer or when a situation arises that was predefined by the spellcaster, the guardian casts the stored spell with any parameters set by the original caster, requiring no components. When the spell is cast or a new spell is stored, any previously stored spell is lost.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kSgBb9r1TCfDIMY0"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7R1cDGKMv0mdxaE7","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The guardian makes two fist attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"r6GQ1TwNK7pinX0a","name":"Fist","type":"weapon","img":"icons/magic/fire/flame-burning-fist-strike.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.The Shield Guardian attacks with its Fist.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EjeLsaCua7yjgxax","name":"Shield","type":"feat","img":"icons/equipment/shield/oval-wooden-boss-steel.webp","system":{"description":{"value":"When a creature makes an Attack against the wearer of the guardian's Amulet, the Guardian grants a +2 bonus to the wearer's AC if the Guardian is within 5 feet of the wearer.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233256,"modifiedTime":1672596109269,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zIr3NaNF0mWz5Ahq","name":"Weretiger","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":120,"min":0,"max":120,"temp":null,"tempmax":0,"formula":"16d8 + 48"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"humanoid","subtype":"Human, Shapechanger","swarm":"","custom":""},"environment":"Grassland","cr":4,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common"],"custom":"(can't speak in tiger form)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Weretiger","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"EjU9p4Wh1U2wsnFK","name":"Shapechanger","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The weretiger can use its action to polymorph into a tiger-humanoid hybrid or into a tiger, or back into its true form, which is humanoid. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies.The weretiger can use its action to polymorph, or return to its true form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2iPYXoxM2ZReuhSL","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The weretiger has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jW4qHQ761qRLeWM8","name":"Pounce (Tiger or Hybrid Form Only)","type":"feat","img":"icons/creatures/abilities/cougar-pounce-stalk-black.webp","system":{"description":{"value":"If the weretiger moves at least 15 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a DC 14 Strength saving throw or be knocked prone. If the target is prone, the weretiger can make one bite attack against it as a bonus action.If the target is prone, the panther can make one bite attack against it as a bonus action.If the weretiger moves at least 15 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SmUCt79LtakgTJoa","name":"Multiattack (Humanoid or Hybrid Form Only)","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"In humanoid form, the weretiger makes two scimitar attacks or two longbow attacks. In hybrid form, it can attack like a humanoid or make two claw attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FOkSL18gU0Sli5ZA","name":"Bite (Tiger or Hybrid Form Only)","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage. If the target is a humanoid, it must succeed on a DC 13 Constitution saving throw or be cursed with weretiger lycanthropy.The Weretiger attacks with its Bite. If the target is a humanoid, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HPmjVRKpG08bgohb","name":"Claw (Tiger or Hybrid Form Only)","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage.The Weretiger attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vtnEGCOptmp2bcqG","name":"Scimitar (Humanoid or Hybrid Form Only)","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n\nThe Weretiger attacks with its Scimitar.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":3,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"onmNGMiE4AyvYxDQ","name":"Longbow (Humanoid or Hybrid Form Only)","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"\nRanged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n\nThe Weretiger attacks with its Longbow.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233258,"modifiedTime":1672596109360,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zY3W5MG7FjssENf6","name":"Owlbear","type":"npc","img":"","system":{"abilities":{"str":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":59,"min":0,"max":59,"temp":0,"tempmax":0,"formula":"7d10 + 21"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":3,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Owlbear","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"QOTQoJFlLIMWmJsu","name":"Keen Sight and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The owlbear has advantage on Wisdom (Perception) checks that rely on sight or smell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"R7Vx1RxO8OjXpzQd","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The owlbear makes two attacks: one with its beak and one with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CwKQlVkFc2uJW0HL","name":"Beak","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one creature. Hit: 10 (1d10 + 5) piercing damage.The Owlbear attacks with its Beak.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FpbBzMs3wu1NK3Zu","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.The Owlbear attacks with its Claws.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233260,"modifiedTime":1672596109405,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zgWkII3VoE4AHCND","name":"Red Dragon Wyrmling","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":75,"min":0,"max":75,"temp":0,"tempmax":0,"formula":"10d8 + 30"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":60,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"","cr":4,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Red Dragon Wyrmling","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"iGge3BzjEfpSeaxP","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage plus 3 (1d6) fire damage.The Red Dragon Wyrmling attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"],["1d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KVIjYSLZoYmdFwzS","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.The dragon exhales fire in a 15-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["7d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233262,"modifiedTime":1672596109447,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zjqjcRWKDMc59Tnx","name":"Ancient Green Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":27,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":25,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":21,"calc":"natural","formula":""},"hp":{"value":385,"min":0,"max":385,"temp":0,"tempmax":0,"formula":"22d20+154"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":22,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"grg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Ancient Green Dragon","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"AyIhVI6Kj5ONGc6I","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hu8nutF4VrQWCe3U","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lQLxY76Q2g6iB9UT","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qq17e5u6Bey1aHqo","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+15 to hit,, 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 10 (3d6) poison damage.The Ancient Green Dragon attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["3d6","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ja5vvhGRJnCi9YGT","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+15 to hit,, 10 ft., one target. Hit: 22 (4d6 + 8) slashing damage.The Ancient Green Dragon attacks with its Claw.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"X1d4jzEXKYOuvEjT","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+15 to hit,, 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.The Ancient Green Dragon attacks with its Tail.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kZAndihX3RcDqN5P","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":19,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4Ntr5H946Prr6gC0","name":"Poison Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"The dragon exhales poisonous gas in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 77 (22d6) poison damage on a failed save, or half as much damage on a successful one.The dragon exhales poisonous gas in a 90-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["22d6","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":22,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JAEclghgOT24pQD9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6y5ZnqreJDNfNzBm","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JYKvD7WqfnM7mgru","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bsXRf7yffdCDv9xp","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"X7cYMwpdqWU6j4kt","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 23 Dexterity saving throw or take 15 ([[/r 2d6+8]]) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":23,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rjVthf9YEA81XZjL","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OoVAWU2oGYfbBuiv","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233263,"modifiedTime":1672596109541,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zpaZb7I8alY32vWV","name":"Vampire Spawn","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":82,"min":0,"max":82,"temp":null,"tempmax":0,"formula":"11d8 + 33"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":5,"spellLevel":0,"source":"SRD 5.1"},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","necrotic","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"the languages it knew in life"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Vampire Spawn","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"HebvJc2NqYvdR79s","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 6 (1d6 + 3) piercing damage plus 7 (2d6) necrotic damage.The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.The Vampire Spawn attacks with its Bite.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"],["2d6","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DY9MW3aTF5T5zhpo","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one creature. Hit: 8 (2d4 + 3) slashing damage. The Vampire Spawn attacks with its Claws. Instead of dealing damage, the vampire can grapple the target.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Q9tHfkUiN6f1sguc","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The vampire makes two attacks, only one of which can be a bite attack.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wzRyhY2I1U0ytB7D","name":"Regeneration","type":"feat","img":"icons/skills/wounds/anatomy-organ-heart-red.webp","system":{"description":{"value":"The vampire regains 10 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or running water. If the vampire takes radiant damage or damage from holy water, this trait doesn't function at the start of the vampire's next turn.The vampire regains 10 hit points at the start of its turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Av7H0ymGdPeTsnwV"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FY5L5oISibzOxcRY","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The vampire can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lLAigtCvoIuj0TM9","name":"Vampire Weaknesses","type":"feat","img":"icons/magic/time/day-night-sunset-sunrise.webp","system":{"description":{"value":"The vampire has the following flaws:\nForbiddance. The vampire can't enter a residence without an invitation from one of the occupants. \nHarmed by Running Water. The vampire takes 20 acid damage when it ends its turn in running water. \nStake to the Heart. The vampire is destroyed if a piercing weapon made of wood is driven into its heart while it is incapacitated in its resting place. \nSunlight Hypersensitivity. The vampire takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Ervkb8H99e2Beiae"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233265,"modifiedTime":1672596109590,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"0m8QyDN52qw9zzOM","name":"Gargoyle","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":52,"min":0,"max":52,"temp":null,"tempmax":0,"formula":"7d8 + 21"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":["ada","mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["exhaustion","petrified","poisoned"],"custom":""},"languages":{"value":["terran"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Gargoyle","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"sXPmgYwYgosoytUu","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the gargoyle remains motion less, it is indistinguishable from an inanimate statue.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yczO5JpGxAk51Gp8","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The gargoyle makes two attacks: one with its bite and one with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"A6GBvah75Y7fGjc5","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.The Gargoyle attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ipJwA0j2zfzmq5GW","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.The Gargoyle attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232548,"modifiedTime":1672596090881,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"13K3XK2A3wwxVKLD","name":"Spy","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":27,"min":0,"max":27,"temp":0,"tempmax":0,"formula":"6d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Alignment","race":"","type":{"value":"humanoid","subtype":"Any Race","swarm":"","custom":""},"environment":"","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"any two"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":2,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Spy","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"93TfWPoMzBoaneMx","name":"Cunning Action","type":"feat","img":"icons/magic/unholy/silhouette-robe-evil-power.webp","system":{"description":{"value":"On each of its turns, the spy can use a bonus action to take the dash, disengage, or hide action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J36uxDWfbkflPV7k"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TEgU7pKAAA0f35Yw","name":"Sneak Attack","type":"feat","img":"icons/skills/melee/blade-tip-chipped-blood-red.webp","system":{"description":{"value":"The spy deals an extra 7 (2d6) damage when it hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 ft. of an ally of the spy that isn't incapacitated and the spy doesn't have disadvantage on the attack roll.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.9uKShqfuA73duQsT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NAmhPf8w89iV8CsY","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The spy makes two melee attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BhYnUUBoU3ESkl1B","name":"Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\nThe Spy attacks with their Shortsword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.osLzOwQdPtrK3rQH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"q6pfCQyaPQSw2waZ","name":"Hand Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"\nRanged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\nThe Spy attacks with their Hand Crossbow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":75,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"lgt":true,"fin":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.qaSro7kFhxD6INbZ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232550,"modifiedTime":1672596090930,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"1ES45ODWg3pCrkzv","name":"Bulette","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":94,"min":0,"max":94,"temp":0,"tempmax":0,"formula":"9d10 + 45"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":40,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":60,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Bulette","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"r4KUyv5cYwjHqNl3","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 30 (4d12 + 4) piercing damage.\nThe Bulette attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d12 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xZeM7pLE9OPzdhBY","name":"Standing Leap","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The bulette's long jump is up to 30 ft. and its high jump is up to 15 ft., with or without a running start.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.f4yvSah35ixQOswD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Keg9oouX6Vbl9tms","name":"Deadly leap","type":"feat","img":"icons/magic/fire/projectile-wave-arrow.webp","system":{"description":{"value":"\nIf the bulette jumps at least 15 ft. as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures.\nEach of those creatures must succeed on a DC 16 Strength or Dexterity saving throw (target's choice) or be knocked prone and take 14 (3d6 + 4) bludgeoning damage plus 14 (3d6 + 4) slashing damage. On a successful save, the creature takes only half the damage, isn't knocked prone, and is pushed 5 ft. out of the bulette's space into an unoccupied space of the creature's choice. If no unoccupied space is within range, the creature instead falls prone in the bulette's space.\n\nIf the bulette jumps at least 15 ft. as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures. Each of those creatures must make a Strength or Dexterity saving throw (target's choice) or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6 + @mod","bludgeoning"],["3d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":16,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bG5Z45jj4wz0N3T6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232552,"modifiedTime":1672596090980,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"1OQbxoZI5BtlB2ME","name":"Drider","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":123,"min":0,"max":123,"temp":0,"tempmax":0,"formula":"13d10 + 52"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"wis"},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":6,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["elvish","undercommon"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Drider","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"3Fnspq3GjJ5g41lM","name":"Fey Ancestry","type":"feat","img":"icons/creatures/mammals/elk-moose-marked-green.webp","system":{"description":{"value":"The drider has advantage on saving throws against being charmed, and magic can't put the drider to sleep.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LvSBjRKoCAKaAnQy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uRaC62ut3Hk63e7m","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The drider's innate spellcasting ability is Wisdom (spell save DC 13). The drider can innately cast the following spells, requiring no material components:\nAt will: dancing lights\n1/day each: darkness, faerie fire","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3wBoA7GvO2fw1Qnu","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The drider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tnQSw6SXTbUKi6vN","name":"Sunlight Sensitivity","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"While in sunlight, the drider has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.F14aW2Ke3I5ZtSg4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4fZJqIbZDoAx8Yix","name":"Web Walker","type":"feat","img":"icons/magic/nature/tree-bare-glow-yellow.webp","system":{"description":{"value":"The drider ignores movement restrictions caused by webbing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zITrVwmnPpLoBZI1"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ThVO3VFsGgg3GLc5","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The drider makes three attacks, either with its longsword or its longbow. It can replace one of those attacks with a bite attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rUvv8Vnh7XbqbCLd","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one creature. Hit: 2 (1d4) piercing damage plus 9 (2d8) poison damage.\nThe Drider attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","piercing"],["2d8","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xqwxVn28J0zx8Y7H","name":"Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\nThe Drider attacks with its Longsword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3XAtYmmaED1rxaaE","name":"Longbow","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"\nRanged Weapon Attack: +6 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) poison damage.\nThe Drider attacks with its Longbow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"],["1d8","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3cymOVja8jXbzrdT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CAxSzHWizrafT033","name":"Dancing Lights","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create up to four torch-sized lights within range, making them appear as torches, lanterns, or glowing orbs that hover in the air for the duration. You can also combine the four lights into one glowing vaguely humanoid form of Medium size. Whichever form you choose, each light sheds dim light in a 10-foot radius.As a bonus action on your turn, you can move the lights up to 60 feet to a new spot within range. A light must be within 20 feet of another light created by this spell, and a light winks out if it exceeds the spell's range.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of phosphorus or wychwood, or a glowworm","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.CAxSzHWizrafT033"}},"img":"icons/magic/fire/projectile-meteor-salvo-strong-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234094,"modifiedTime":1661791115983,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"S7VbUetIfVT7B6Eq","name":"Darkness","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Magical darkness spreads from a point you choose within range to fill a 15-foot-radius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and nonmagical light can't illuminate it.If the point you choose is on an object you are holding or one that isn't being worn or carried, the darkness emanates from the object and moves with it. Completely covering the source of the darkness with an opaque object, such as a bowl or a helm, blocks the darkness.If any of this spell's area overlaps with an area of light created by a spell of 2nd level or lower, the spell that created the light is dispelled.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Bat fur and a drop of pitch or piece of coal","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.S7VbUetIfVT7B6Eq"}},"img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234139,"modifiedTime":1661791115984,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"nqBDWkVOfcGZt4YU","name":"Faerie Fire","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Each object in a 20-foot cube within range is outlined in blue, green, or violet light (your choice). Any creature in the area when the spell is cast is also outlined in light if it fails a Dexterity saving throw. For the duration, objects and affected creatures shed dim light in a 10-foot radius.Any attack roll against an affected creature or object has advantage if the attacker can see it, and the affected creature or object can't benefit from being invisible.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.nqBDWkVOfcGZt4YU"}},"img":"icons/magic/fire/projectile-meteor-salvo-strong-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234222,"modifiedTime":1661791115985,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232553,"modifiedTime":1672596091083,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"1cwfYaACm5F0l4y3","name":"Merrow","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":45,"min":0,"max":45,"temp":0,"tempmax":0,"formula":"6d10 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["abyssal","aquan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Merrow","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Kxa2DcVskilkNOH9","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The merrow can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1CXV3h3U6qnpZ7cU","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The merrow makes two attacks: one with its bite and one with its claws or harpoon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"doFYltsiw2Fgp5gn","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.The Merrow attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bbB0SMNW3l2SHEz5","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 9 (2d4 + 4) slashing damage.The Merrow attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7XgQY1kwKPuoWX7t","name":"Harpoon","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage. If the target is a Huge or smaller creature, it must succeed on a Strength contest against the merrow or be pulled up to 20 feet toward the merrow.The Merrow attacks with its Harpoon. If the target is a Huge or smaller creature, it must make a Strength contest against the merrow or be pulled up to 20 feet toward the merrow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232556,"modifiedTime":1672596091138,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"1vaBSMUfOy6JPJ14","name":"Drow","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":13,"min":0,"max":13,"temp":0,"tempmax":0,"formula":"3d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"humanoid","subtype":"Elf","swarm":"","custom":""},"environment":"Underdark","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["elvish","undercommon"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Drow","displayName":0,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Jwx7Sfs5m3RDWckF","name":"Fey Ancestry","type":"feat","img":"icons/creatures/mammals/elk-moose-marked-green.webp","system":{"description":{"value":"The drow has advantage on saving throws against being charmed, and magic can't put the drow to sleep.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LvSBjRKoCAKaAnQy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"A4OySWt5j3QXyAPW","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The drow's spellcasting ability is Charisma (spell save DC 11). It can innately cast the following spells, requiring no material components:\nAt will: dancing lights\n1/day each: darkness, faerie fire","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Up2YzkDn0uBKQj6K","name":"Sunlight Sensitivity","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.F14aW2Ke3I5ZtSg4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"G2nFsJdp1Q3gshyr","name":"Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.The Drow attacks with its Shortsword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.osLzOwQdPtrK3rQH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LqnhZjRtRqhLIFTm","name":"Hand Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.The target must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the target is also unconscious while poisoned in this way. The target wakes up if it takes damage or if another creature takes an action to shake it awake.The Drow attacks with its Hand Crossbow. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.qaSro7kFhxD6INbZ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"S684g3gtaxOsMxME","name":"Chain Shirt","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"Made of interlocking metal rings, a chain shirt is worn between layers of clothing or leather. This armor offers modest protection to the wearer's upper body and allows the sound of the rings rubbing against one another to be muffled by outer layers.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":20,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.p2zChy24ZJdVqMSH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"S7VbUetIfVT7B6Eq","name":"Darkness","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Magical darkness spreads from a point you choose within range to fill a 15-foot-radius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and nonmagical light can't illuminate it.If the point you choose is on an object you are holding or one that isn't being worn or carried, the darkness emanates from the object and moves with it. Completely covering the source of the darkness with an opaque object, such as a bowl or a helm, blocks the darkness.If any of this spell's area overlaps with an area of light created by a spell of 2nd level or lower, the spell that created the light is dispelled.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Bat fur and a drop of pitch or piece of coal","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.S7VbUetIfVT7B6Eq"}},"img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234139,"modifiedTime":1661791116009,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"nqBDWkVOfcGZt4YU","name":"Faerie Fire","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Each object in a 20-foot cube within range is outlined in blue, green, or violet light (your choice). Any creature in the area when the spell is cast is also outlined in light if it fails a Dexterity saving throw. For the duration, objects and affected creatures shed dim light in a 10-foot radius.Any attack roll against an affected creature or object has advantage if the attacker can see it, and the affected creature or object can't benefit from being invisible.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":11,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.nqBDWkVOfcGZt4YU"}},"img":"icons/magic/fire/projectile-meteor-salvo-strong-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234222,"modifiedTime":1661791116010,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"CAxSzHWizrafT033","name":"Dancing Lights","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create up to four torch-sized lights within range, making them appear as torches, lanterns, or glowing orbs that hover in the air for the duration. You can also combine the four lights into one glowing vaguely humanoid form of Medium size. Whichever form you choose, each light sheds dim light in a 10-foot radius.As a bonus action on your turn, you can move the lights up to 60 feet to a new spot within range. A light must be within 20 feet of another light created by this spell, and a light winks out if it exceeds the spell's range.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of phosphorus or wychwood, or a glowworm","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.CAxSzHWizrafT033"}},"img":"icons/magic/fire/projectile-meteor-salvo-strong-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234094,"modifiedTime":1661791116011,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232558,"modifiedTime":1672596091242,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"1zzRQps9jZdLZGqI","name":"Ice Devil","type":"npc","img":"","system":{"abilities":{"str":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":180,"min":0,"max":180,"temp":null,"tempmax":0,"formula":"19d10 + 76"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"Devil","swarm":"","custom":""},"environment":"","cr":14,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["cold","fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["infernal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ice Devil","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"DV4KS0OE541vGOtI","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 12 (2d6 + 5) piercing damage plus 10 (3d6) cold damage.The Ice Devil attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"],["3d6","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WAGF3evP6GTYDvM0","name":"Devil's Sight","type":"feat","img":"icons/magic/perception/eye-slit-pink.webp","system":{"description":{"value":"Magical darkness doesn't impede the devil's darkvision.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"IKaEdLLHwVL0s9UP","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The devil has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nCTze3rZpWcTeuYQ","name":"Wall of Ice","type":"feat","img":"icons/magic/water/barrier-ice-crystal-wall-jagged-blue.webp","system":{"description":{"value":"\nThe devil magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter.\nWhen the wall appears, each creature in its space is pushed out of it by the shortest route. The creature chooses which side of the wall to end up on, unless the creature is incapacitated. The creature then makes a DC 17 Dexterity saving throw, taking 35 (10d6) cold damage on a failed save, or half as much damage on a successful one.\nThe wall lasts for 1 minute or until the devil is incapacitated or dies. The wall can be damaged and breached; each 10-foot section has AC 5, 30 hit points, vulnerability to fire damage, and immunity to acid, cold, necrotic, poison, and psychic damage. If a section is destroyed, it leaves behind a sheet of frigid air in the space the wall occupied. Whenever a creature finishes moving through the frigid air on a turn, willingly or otherwise, the creature must make a DC 17 Constitution saving throw, taking 17 (5d6) cold damage on a failed save, or half as much damage on a successful one. The frigid air dissipates when the rest of the wall vanishes.\n\nThe devil magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter.When the wall appears, each creature in its space is pushed out of it by the shortest route. The creature chooses which side of the wall to end up on, unless the creature is incapacitated. The creature then makes a Dexterity saving throw.\nThe wall can be damaged and breached. If a section is destroyed, it leaves behind a sheet of frigid air in the space the wall occupied. Whenever a creature finishes moving through the frigid air on a turn, willingly or otherwise, the creature must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":"a solid surface it can see within 60 ft."},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"ft","type":"line"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d6","cold"]],"versatile":""},"formula":"5d6","save":{"ability":"dex","dc":17,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Kwt8YDIBHg6JO2v2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AQ551xglVn90BdwU","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nMelee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage plus 10 (3d6) cold damage.\nThe Ice Devil attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"],["3d6","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"E6iXljYXLdQyfk1l","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 10 (2d4 + 5) slashing damage plus 10 (3d6) cold damage.\nThe Ice Devil attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","slashing"],["3d6","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vLQAjoewGE5MAHn2","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The devil makes three attacks: one with its bite, one with its claws, and one with its tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232559,"modifiedTime":1672596091301,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"28gU50HtG8Kp7uIz","name":"Spider","type":"npc","img":"","system":{"abilities":{"str":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"1d4 - 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":20,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":30,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Spider","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"0Oap13hi3sDNwVZn","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The spider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ysV0KgiPcJOYCdMh","name":"Bite","type":"weapon","img":"icons/creatures/abilities/fang-tooth-venomous.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 1 piercing damage.The target must succeed on a DC 9 Constitution saving throw or take 2 (1d4) poison damage.The Spider attacks with its Bite. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"],["1d4","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":9,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JxuVwnSxsKwGVL0x","name":"Web Sense","type":"feat","img":"icons/magic/perception/eye-tendrils-web-purple.webp","system":{"description":{"value":"While in contact with a web, the spider knows the exact location of any other creature in contact with the same web.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kjF0btAMYHUAQgOt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GQ8a63ou7VwIGrvv","name":"Web Walker","type":"feat","img":"icons/creatures/webs/web-spider-glowing-purple.webp","system":{"description":{"value":"The spider ignores movement restrictions caused by webbing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zITrVwmnPpLoBZI1"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232561,"modifiedTime":1672596091346,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"2MZNHeOZweXAYbv1","name":"Xorn","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":22,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":73,"min":0,"max":73,"temp":null,"tempmax":0,"formula":"7d8 + 42"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":20,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":60,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["piercing","slashing"],"bypasses":["ada","mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["terran"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Xorn","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ODAa1IROPs40MUI2","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 13 (3d6 + 3) piercing damage.The Xorn attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LRjB7lk0aa4TOd16","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.The Xorn attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"a5CLV8aL4SowIich","name":"Earth Glide","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The xorn can burrow through nonmagical, unworked earth and stone. While doing so, the xorn doesn't disturb the material it moves through.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yrpqazOHqI4BrYW4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kRGZU8eMwOBt3kVd","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The xorn makes three claw attacks and one bite attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ryNcNrIgtkYHRKWj","name":"Stone Camouflage","type":"feat","img":"icons/environment/settlement/stone-stairs.webp","system":{"description":{"value":"The xorn has advantage on Dexterity (Stealth) checks made to hide in rocky terrain.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.j1cPfWFNvxGoex9Z"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"x6Hd2pSXy7TDwgjR","name":"Treasure Sense","type":"feat","img":"icons/skills/social/theft-pickpocket-bribery-brown.webp","system":{"description":{"value":"The xorn can pinpoint, by scent, the location of precious metals and stones, such as coins and gems, within 60 ft. of it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Enhb3XowXPMsVapw"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232563,"modifiedTime":1672596091393,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"35Y64PEFFdvQS0ra","name":"Ancient Bronze Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":29,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":27,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":22,"calc":"natural","formula":""},"hp":{"value":444,"min":0,"max":444,"temp":0,"tempmax":0,"formula":"24d20+192"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Coastal","cr":22,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"grg","di":{"value":["lightning"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Ancient Bronze Dragon","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"8ATtkPLmg7NooADy","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lxwKTlmSXPr3wkUF","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"J1T00n4aCL5ybwJS","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"17bKqeydGVM0tR6p","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+16 to hit,, 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage.The Ancient Bronze Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qd5qScYvDjNbDERs","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+16 to hit,, 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.The Ancient Bronze Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Vu2UkFmxzWB17KtN","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+16 to hit,, 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.The Ancient Bronze Dragon attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QUlBJuNL7JOevT7b","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":20,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"oVxtfa5RF6ibpTIt","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Lightning Breath.** The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.\n**Repulsion Breath.** The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 23 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"X15z14jf8Wmtjz2i","name":"Lightning Breath","type":"feat","img":"icons/magic/lightning/bolt-strike-blue.webp","system":{"description":{"value":"\n**Lightning Breath.** The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":120,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["16d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":23,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LVnd9fq9cQj7rR0Q"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"e2kQ63WuGtictHXG","name":"Repulsion Breath","type":"feat","img":"icons/magic/air/air-wave-gust-blue.webp","system":{"description":{"value":"\n**Repulsion Breath.** The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 23 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n\nThe dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must make a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":23,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zRDERBe0lMbwyGwN"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YNplj2D0sAC6OT7z","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LxYk4BFUh3Qo9b9U","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KgtmSzFoi9FmWEvj","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lUgfHIerFG9DvYSB","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 24 Dexterity saving throw or take 16 ([[/r 2d6+9]]) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":24,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"b7ej3RkphhDGh617","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uVSCMztRY9x8FkWs","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232565,"modifiedTime":1672596091491,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3UUNbGiG2Yf1ZPxM","name":"Octopus","type":"npc","img":"","system":{"abilities":{"str":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":3,"min":0,"max":3,"temp":0,"tempmax":0,"formula":"1d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":5,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":30,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Octopus","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"SLnyx0Ta2ksVM9QL","name":"Tentacles","type":"weapon","img":"icons/creatures/tentacles/tentacles-thing-green.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 1 bludgeoning damage.The target is grappled (escape DC 10). Until this grapple ends, the octopus can't use its tentacles on another target.The Octopus attacks with its Tentacles. The target is grappled . Until this grapple ends, the octopus can't use its tentacles on another target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nKpLMXS9E10TSGhU"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TKztZERtXehbxu2q","name":"Hold Breath","type":"feat","img":"icons/magic/water/pseudopod-swirl-blue.webp","system":{"description":{"value":"While out of water, the octopus can hold its breath for 30 minutes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lwC6jwy9bXberyWo"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ODM4yi5BKpC4Hohw","name":"Underwater Camouflage","type":"feat","img":"icons/magic/water/orb-ice-web.webp","system":{"description":{"value":"The octopus has advantage on Dexterity (Stealth) checks made while underwater.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.M9XqZZGoTKawAsCl"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LZOszBNIg9oMej4l","name":"Water Breathing","type":"feat","img":"icons/magic/water/projectile-water-ice-orb.webp","system":{"description":{"value":"The octopus can breathe only underwater.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.c4Q6NDCLJSNcNc9T"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8qYBpaA8c3BuBujY","name":"Ink Cloud","type":"feat","img":"icons/magic/unholy/orb-swirling-teal.webp","system":{"description":{"value":"A 5-foot-radius cloud of ink extends all around the octopus if it is underwater. The area is heavily obscured for 1 minute, although a significant current can disperse the ink. After releasing the ink, the octopus can use the Dash action as a bonus action.A 5-foot-radius cloud of ink extends all around the octopus if it is underwater.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bojUXmNOZ2rJVujD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232567,"modifiedTime":1672596091536,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3YwmvDupMwycWNCO","name":"Giant Crocodile","type":"npc","img":"","system":{"abilities":{"str":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":85,"min":0,"max":85,"temp":0,"tempmax":0,"formula":"9d12 + 27"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":50,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Swamp","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Crocodile","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Mgvz3Hm49kujtR0M","name":"Hold Breath","type":"feat","img":"icons/magic/water/pseudopod-swirl-blue.webp","system":{"description":{"value":"The crocodile can hold its breath for 30 minutes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lwC6jwy9bXberyWo"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YSeYSzU3P0FooGIw","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The crocodile makes two attacks: one with its bite and one with its tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"u7eurp95tuW3tYGl","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 21 (3d10 + 5) piercing damage.\nThe target is grappled (escape DC 16). Until this grapple ends, the target is restrained, and the crocodile can't bite another target.\n\nThe Giant Crocodile attacks with its Bite. If successful, the target is grappled. Until this grapple ends, the target is restrained, and the crocodile can't bite another target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VkCVMF2SvsuYWWYg","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 10 ft., one target not grappled by the crocodile. Hit: 14 (2d8 + 5) bludgeoning damage.\nIf the target is a creature, it must succeed on a DC 16 Strength saving throw or be knocked prone.\n\nThe Giant Crocodile attacks with its Tail. If the target is a creature, it must make a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":16,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232570,"modifiedTime":1672596091594,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3fzQVYQhXxCXRa2o","name":"Gelatinous Cube","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":6,"calc":"natural","formula":""},"hp":{"value":84,"min":0,"max":84,"temp":0,"tempmax":0,"formula":"8d10 + 40"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":15,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":"Blind beyond this radius"},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"ooze","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["blinded","charmed","deafened","frightened","prone","exhaustion"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Gelatinous Cube","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"m8prrQUwqGwX6Jyk","name":"Ooze Cube","type":"feat","img":"icons/magic/water/barrier-ice-water-cube.webp","system":{"description":{"value":"The cube takes up its entire space. Other creatures can enter the space, but a creature that does so is subjected to the cube's Engulf and has disadvantage on the saving throw. Creatures inside the cube can be seen but have total cover.A creature within 5 feet of the cube can take an action to pull a creature or object out of the cube. Doing so requires a successful DC 12 Strength check, and the creature making the attempt takes 10 (3d6) acid damage. The cube can hold only one Large creature or up to four Medium or smaller creatures inside it at a time.The cube takes up its entire space. Other creatures can enter the space, but a creature that does so is subjected to the cube's Engulf and has disadvantage on the saving throw. Creatures inside the cube can be seen but have total cover. A creature within 5 feet of the cube can take an action to pull a creature or object out of the cube. Doing so requires a successful Strength check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.CvtGj6YimGuZdrhB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ISZmp6ev081hhUxT","name":"Transparent","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"Even when the cube is in plain sight, it takes a successful DC 15 Wisdom (Perception) check to spot a cube that has neither moved nor attacked. A creature that tries to enter the cube's space while unaware of the cube is surprised by the cube.Even when the cube is in plain sight, it takes a successful Wisdom (Perception) check to spot a cube that has neither moved nor attacked. A creature that tries to enter the cube's space while unaware of the cube is surprised by the cube.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.cueeLXQ3W8gKHiLq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"t2KRGzsjV4Wwp0wj","name":"Pseudopod","type":"weapon","img":"icons/creatures/slimes/slime-movement-dripping-pseudopods-green.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 10 (3d6) acid damage.The Gelatinous Cube attacks with its Pseudopod.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6PuULfBzy5vpBSFI","name":"Engulf","type":"feat","img":"icons/magic/water/pseudopod-swirl-blue.webp","system":{"description":{"value":"The cube moves up to its speed. While doing so, it can enter Large or smaller creatures' spaces. Whenever the cube enters a creature's space, the creature must make a DC 12 Dexterity saving throw.On a successful save, the creature can choose to be pushed 5 feet back or to the side of the cube. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.On a failed save, the cube enters the creature's space, and the creature takes 10 (3d6) acid damage and is engulfed. The engulfed creature can't breathe, is restrained, and takes 21 (6d6) acid damage at the start of each of the cube's turns. When the cube moves, the engulfed creature moves with it.An engulfed creature can try to escape by taking an action to make a DC 12 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the cube.Whenever the cube enters a creature's space, the creature must make a Dexterity saving throw. On a successful save, the creature can choose to be pushed 5 feet back or to the side of the cube. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","acid"]],"versatile":""},"formula":"6d6","save":{"ability":"dex","dc":12,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Eh80lkzHiEOJP8FI"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232572,"modifiedTime":1672596091639,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3o2rQBqpzjIHmrBW","name":"Erinyes","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":153,"min":0,"max":153,"temp":null,"tempmax":0,"formula":"18d8 + 72"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"Devil","swarm":"","custom":""},"environment":"","cr":12,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["infernal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Erinyes","displayName":0,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"BeB04w7ftFRDaMQ6","name":"Hellish Weapons","type":"feat","img":"icons/weapons/axes/axe-battle-eyes-red.webp","system":{"description":{"value":"\nThe erinyes's weapon attacks are magical and deal an extra 13 (3d8) poison damage on a hit (included in the attacks).\n\nThe erinyes's weapon attacks are magical and deal extra poison damage on a hit (included in the attacks).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.uqoqQJ9NpMCPra6P"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dvoOA7jzBnq2Lxza","name":"Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"Melee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage, or 9 (1d10 + 4) slashing damage if used with two hands, plus 13 (3d8) poison damage.The Erinyes attacks with its Longsword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"],["3d8","poison"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"W7sEr3m8MBrzYq2v","name":"Parry","type":"feat","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"The erinyes adds 4 to its AC against one melee Attack that would hit it. To do so, the erinyes must see the attacker and be wielding a melee weapon.The erinyes adds 4 to its AC against one melee Attack that would hit it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kfi26Jy0VLXv9TTm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WharT2ReFy2FYTG0","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The erinyes has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qO61ofcSoMF4uxk8","name":"Plate Armor","type":"equipment","img":"icons/equipment/chest/breastplate-cuirass-steel-grey.webp","system":{"description":{"value":"Plate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":65,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.OjkIqlW2UpgFcjZa"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CElneYmOXIzyfv2a","name":"Longbow","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"\nRanged Weapon Attack: +7 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 13 (3d8) poison damage.\nThe target must succeed on a DC 14 Constitution saving throw or be poisoned. The poison lasts until it is removed by the lesser restoration spell or similar magic.\n\nThe Erinyes attacks with its Longbow. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"],["3d8","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3cymOVja8jXbzrdT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Fp0Jye7Qwk8KOvH7","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The erinyes makes three attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232573,"modifiedTime":1672596091689,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3uIursokd3KdZrW3","name":"Adult White Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":22,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":22,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":200,"min":0,"max":200,"temp":0,"tempmax":0,"formula":"16d12 + 96"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":30,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Arctic","cr":13,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":["cold"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Adult White Dragon","displayName":0,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"9BSey1ZiD31ClK2C","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"542eNLhAx7XYJErk","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) cold damage.The Adult White Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["1d8","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FhUOX8awKhQrGBV0","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.The Adult White Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lQ57BVbUiVe2tJcL","name":"Cold Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d8",""]],"versatile":""},"formula":"","save":{"ability":"con","dc":19,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iHOaiOqwUWIfCljJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CwDVyMam0aPSvRyx","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nKX7IFrwLJsAsWXU","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 ft. of the dragon and aware of it must succeed on a DC 14 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FeXPnKNku7x5oGMv","name":"Ice Walk","type":"feat","img":"icons/magic/water/water-iceberg-bubbles.webp","system":{"description":{"value":"The dragon can move across and climb icy surfaces without needing to make an ability check. Additionally, difficult terrain composed of ice or snow doesn't cost it extra movement.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.YKC7pwYkJSKn1vuw"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6AiskuquLuemBSzo","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7JtKHjp4ib2tL3Qu","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2TDIeRNe4vEJPgi6","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QAzUtpWvNd9ptDjZ","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pwOLYvuj5c9fEQAH","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.The Adult White Dragon attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6HVXfjsMra3fHVLb","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dEBTjqEC02PwvqOV","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"\nThe dragon makes a tail attack.\n\nThe dragon slams its long tail against its foe!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232575,"modifiedTime":1672596091793,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"45Z5kogZEhawX1Ey","name":"Fire Giant","type":"npc","img":"","system":{"abilities":{"str":{"value":25,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":9,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":23,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":162,"min":0,"max":162,"temp":null,"tempmax":0,"formula":"13d12 + 78"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"giant","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":9,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["giant"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Fire Giant","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"P38O0pGKUKXuYgd0","name":"Plate Armor","type":"equipment","img":"icons/equipment/chest/breastplate-cuirass-steel-grey.webp","system":{"description":{"value":"Plate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":65,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.OjkIqlW2UpgFcjZa"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vgN2DlqQtt77mxKO","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The giant makes two greatsword attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"c8b8jy3sM3Z8gxm0","name":"Greatsword","type":"weapon","img":"icons/weapons/swords/greatsword-guard-gem-blue.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 10 ft., one target. Hit: 28 (6d6 + 7) slashing damage.The Fire Giant attacks with its Greatsword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.xMkP8BmFzElcsMaR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DgNvJ2F0HSMya3hp","name":"Rock","type":"weapon","img":"icons/magic/earth/projectile-stone-ball-brown.webp","system":{"description":{"value":"Ranged Weapon Attack: +11 to hit, range 60/240 ft., one target. Hit: 29 (4d10 + 7) bludgeoning damage.The Fire Giant attacks with its Rock.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":240,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232577,"modifiedTime":1672596091842,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"4EODJbmPlpnNGVR7","name":"Deer","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":4,"min":0,"max":4,"temp":0,"tempmax":0,"formula":"1d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Deer","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"EyXnPvAdgwKZz6LT","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 2 (1d4) piercing damage.\nThe Deer attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232579,"modifiedTime":1672596091887,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"4OeZZguYgJcsZoM9","name":"Plesiosaurus","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":68,"min":0,"max":68,"temp":0,"tempmax":0,"formula":"8d10 + 24"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Plesiosaurus","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"RbcK5H5JO9EnIiCA","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 10 ft., one target. Hit: 14 (3d6 + 4) piercing damage.The Plesiosaurus attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PtGDikGuH6rHkITy","name":"Hold Breath","type":"feat","img":"icons/magic/water/pseudopod-swirl-blue.webp","system":{"description":{"value":"The plesiosaurus can hold its breath for 1 hour.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lwC6jwy9bXberyWo"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232580,"modifiedTime":1672596091924,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"4ZlUHt4xmB7GdPfk","name":"Giant Vulture","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"3d10 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"Understands Common but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Vulture","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"AB0XlPm529Z5WEyY","name":"Keen Sight and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The vulture has advantage on Wisdom (Perception) checks that rely on sight or smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"m4B7gGdnTcIHeRpH","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The vulture has advantage on an attack roll against a creature if at least one of the vulture's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5kigRXx2FSlzVUWm","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The vulture makes two attacks: one with its beak and one with its talons.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"t6TG4rgkOXBefYZQ","name":"Beak","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (2d4 + 2) piercing damage.\nThe Giant Vulture attacks with its Beak.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AXKWmB2ZU1hebo5S","name":"Talons","type":"weapon","img":"icons/creatures/claws/claw-scaled-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage.\nThe Giant Vulture attacks with its Talons.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232581,"modifiedTime":1672596091964,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"4tl0s2SnaLjkoDiI","name":"Giant Wasp","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":13,"min":0,"max":13,"temp":0,"tempmax":0,"formula":"3d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":50,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Wasp","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"L1TmhBXd2UrVxExn","name":"Sting","type":"weapon","img":"icons/creatures/abilities/fang-tooth-venomous.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 5 (1d6 + 2) piercing damage.\nThe target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but poisoned for 1 hour, even after regaining hit points, and is paralyzed while poisoned in this way.\n\nThe Giant Wasp attacks with its Sting. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"3d6"},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232583,"modifiedTime":1672596092043,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"4udpeEneFSZK9NTB","name":"Swarm of Spiders","type":"npc","img":"","system":{"abilities":{"str":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"5d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":20,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"tiny","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","grappled","paralyzed","petrified","prone","restrained","stunned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Swarm of Spiders","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"72ha7NWOEA4qIOdY","name":"Swarm","type":"feat","img":"icons/creatures/invertebrates/fly-wasp-mosquito-green.webp","system":{"description":{"value":"The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eL3OJmc4FuetizKO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qoIR278ckqhlVaNr","name":"Bites","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 0 ft., one target in the swarm's space. Hit: 10 (4d4) piercing damage, or 5 (2d4) piercing damage if the swarm has half of its hit points or fewer.\nThe Swarm of Spiders attacks with a flurry of Bites.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d4","piercing"]],"versatile":"2d4"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KYBcEhA6mh3gqPG8","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The swarm can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LPkqp4g22PENqi8b","name":"Web Sense","type":"feat","img":"icons/creatures/webs/web-spider-glowing-purple.webp","system":{"description":{"value":"While in contact with a web, the swarm knows the exact location of any other creature in contact with the same web.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kjF0btAMYHUAQgOt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KyittoVFeC2HA9By","name":"Web Walker","type":"feat","img":"icons/magic/nature/tree-bare-glow-yellow.webp","system":{"description":{"value":"The swarm ignores movement restrictions caused by webbing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zITrVwmnPpLoBZI1"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232584,"modifiedTime":1672596092092,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"55PkbskG5iBZGrgR","name":"Elk","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":13,"min":0,"max":13,"temp":0,"tempmax":0,"formula":"2d10 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Elk","displayName":0,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"slVyUWagsSZ5CXSh","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nIf the elk moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 7 (2d6) damage.\nIf the target is a creature, it must succeed on a DC 13 Strength saving throw or be knocked prone.\n\nIf the elk moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6",""]],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"05Vs3AiPgtQkX84S","name":"Ram","type":"weapon","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) bludgeoning damage.\nThe Elk attacks with its Ram.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FneLrX10GhkE2o4E","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one prone creature. Hit: 8 (2d4 + 3) bludgeoning damage.\nThe Elk attacks with its Hooves.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232586,"modifiedTime":1672596092137,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"57DofLgRQx16ARoc","name":"Lizardfolk","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":"13"},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"4d8 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"humanoid","subtype":"Lizardfolk","swarm":"","custom":""},"environment":"Forest","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Lizardfolk","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"14epJr1iwk3pnPVs","name":"Hold Breath","type":"feat","img":"icons/magic/water/pseudopod-swirl-blue.webp","system":{"description":{"value":"The lizardfolk can hold its breath for 15 minutes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lwC6jwy9bXberyWo"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"s88qLjZemkFRnB8Y","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The lizardfolk makes two melee attacks, each one with a different weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9x43sdgtqX8bOdiy","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.The Lizardfolk attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9T0RdBc0Tvsj6wJW","name":"Heavy Club","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.The Lizardfolk attacks with its Heavy Club.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bPnovVAPXO7MdagI","name":"Javelin","type":"weapon","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.The Lizardfolk attacks with its Javelin.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DWLMnODrnHn8IbAG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kZJqCMW6SxV5C0nu","name":"Spiked Shield","type":"weapon","img":"icons/equipment/shield/oval-wooden-boss-steel.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.The Lizardfolk attacks with its Spiked Shield.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sSs3hSzkKBMNBgTs","name":"Shield","type":"equipment","img":"icons/equipment/shield/oval-wooden-boss-steel.webp","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232587,"modifiedTime":1672596092185,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5P1VGAZQwOilwZQf","name":"Djinni","type":"npc","img":"","system":{"abilities":{"str":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":22,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":161,"min":0,"max":161,"temp":0,"tempmax":0,"formula":"14d10 + 84"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":90,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Coastal","cr":11,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["lightning","thunder"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["auran"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Djinni","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"fL3AlIo9kQ591fz5","name":"Elemental Demise","type":"feat","img":"icons/magic/air/air-wave-gust-smoke-yellow.webp","system":{"description":{"value":"If the djinni dies, its body disintegrates into a warm breeze, leaving behind only equipment the djinni was wearing or carrying.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WbaKH3NLA3mvylfM"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PvddSEYCJ3fSHEOr","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The djinni's innate spellcasting ability is Charisma (spell save DC 17, +9 to hit with spell attacks). It can innately cast the following spells, requiring no material components:\nAt will: detect evil and good, detect magic, thunderwave\n3/day each: create food and water (can create wine instead of water), tongues, wind walk\n1/day each: conjure elemental (air elemental only), creation, gaseous form, invisibility, major image, plane shift","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Q7JcaZkLaYQq4CE5","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The djinni makes three scimitar attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DGP7lnAJT1cv8SA4","name":"Scimitar","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage plus 3 (1d6) lightning or thunder damage (djinni's choice).The Djinni attacks with its Scimitar.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"],["1d6","lightning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.fbC0Mg1a73wdFbqO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nE7YNnVM7srBcdfl","name":"Create Whirlwind","type":"feat","img":"icons/magic/air/wind-tornado-cyclone-white.webp","system":{"description":{"value":"\nA 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the djinni can see within 120 feet of it. The whirlwind lasts as long as the djinni maintains concentration (as if concentrating on a spell).\nAny creature but the djinni that enters the whirlwind must succeed on a DC 18 Strength saving throw or be restrained by it. The djinni can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. The whirlwind ends if the djinni loses sight of it.\nA creature can use its action to free a creature restrained by the whirlwind, including itself, by succeeding on a DC 18 Strength check. If the check succeeds, the creature is no longer restrained and moves to the nearest space outside the whirlwind.\n\nA 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the djinni can see within 120 feet of it. Any creature but the djinni that enters the whirlwind must make a Strength saving throw or be restrained by it. The djinni can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. A creature can use its action to free a creature restrained by the whirlwind, including itself, by succeeding on a Strength check. If the check succeeds, the creature is no longer restrained and moves to the nearest space outside the whirlwind.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.1XeF2VMMPw7QYffo"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gr4aC1723KRzCJ5z","name":"Conjure Air Elemental","type":"spell","img":"icons/magic/symbols/runes-star-pentagon-orange.webp","system":{"description":{"value":"You call forth an air elemental servant. Choose an area of air that fills a 10-foot cube within range. An elemental of challenge rating 5 or lower appropriate to the area you chose appears in an unoccupied space within 10 feet of it. For example, a fire elemental emerges from a bonfire, and an earth elemental rises up from the ground. The elemental disappears when it drops to 0 hit points or when the spell ends.\nThe elemental is friendly to you and your companions for the duration. Roll initiative for the elemental, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the elemental, it defends itself from hostile creatures but otherwise takes no actions.\nIf your concentration is broken, the elemental doesn't disappear. Instead, you lose control of the elemental, it becomes hostile toward you and your companions, and it might attack. An uncontrolled elemental can't be dismissed by you, and it disappears 1 hour after you summoned it.\nHigher Levels. When you cast this spell using a spell slot of 6th level or higher, the challenge rating increases by 1 for each slot level above 5th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":"an area of air, earth, fire, or water that fills a 10-foot cube within range"},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"Burning incense for air, soft clay for earth, sulfur and phosphorus for fire, or water and sand for water.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Mzh95utKDPIrjiH8","name":"Detect Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Mzh95utKDPIrjiH8"}},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234128,"modifiedTime":1661791116031,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116031,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WTbOQBsarsL1LuXJ","name":"Thunderwave","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A wave of thunderous force sweeps out from you. Each creature in a 15-foot cube originating from you must make a Constitution saving throw. On a failed save, a creature takes 2d8 thunder damage and is pushed 10 feet away from you. On a successful save, the creature takes half as much damage and isn't pushed.In addition, unsecured objects that are completely within the area of effect are automatically pushed 10 feet away from you by the spell's effect, and the spell emits a thunderous boom audible out to 300 feet.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cube"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","thunder"]],"versatile":""},"formula":"","save":{"ability":"con","dc":17,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.WTbOQBsarsL1LuXJ"}},"img":"icons/magic/lightning/bolt-forked-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234152,"modifiedTime":1661791116033,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"BV0mpbHh29IbbIj5","name":"Create Food and Water","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create 45 pounds of food and 30 gallons of water on the ground or in containers within range, enough to sustain up to fifteen humanoids or five steeds for 24 hours. The food is bland but nourishing, and spoils if uneaten after 24 hours. The water is clean and doesn't go bad.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.BV0mpbHh29IbbIj5"}},"img":"icons/magic/nature/leaf-glow-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234092,"modifiedTime":1661791116033,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"gopnZvS0c2jD5FP8","name":"Tongues","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell grants the creature you touch the ability to understand any spoken language it hears. Moreover, when the target speaks, any creature that knows at least one language and can hear the target understands what it says.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"div","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small clay model of a ziggurat","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gopnZvS0c2jD5FP8"}},"img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234193,"modifiedTime":1661791116034,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"8PJAsHmbu6UgDHC0","name":"Wind Walk","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You and up to ten willing creatures you can see within range assume a gaseous form for the Duration, appearing as wisps of cloud. While in this cloud form, a creature has a flying speed of 300 feet and has resistance to damage from nonmagical weapons. The only Actions a creature can take in this form are the Dash action or to revert to its normal form. Reverting takes 1 minute, during which time a creature is Incapacitated and can't move. Until the spell ends, a creature can revert to cloud form, which also requires the 1-minute transformation.\n If a creature is in cloud form and flying when the effect ends, the creature descends 60 feet per round for 1 minute until it lands, which it does safely. If it can't land after 1 minute, the creature falls the remaining distance.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":11,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Fire and holy water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.8PJAsHmbu6UgDHC0"}},"img":"icons/magic/air/wind-swirl-gray-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234079,"modifiedTime":1661791116035,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"lnaGnxMzpYnbw1uU","name":"Creation","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You pull wisps of shadow material from the Shadowfell to create a nonliving object of vegetable matter within 'range': soft goods, rope, wood, or something similar. You can also use this spell to create mineral objects such as stone, crystal, or metal. The object created must be no larger than a 5-foot cube, and the object must be of a form and material that you have seen before.The duration depends on the object's material. If the object is composed of multiple materials, use the shortest duration.\n\nVegetable matter - 1 day\nStone or crystal - 12 hours\nPrecious metals - 1 hour\nGems - 10 minutes\nAdamantine or mithral - 1 minute\n\nUsing any material created by this spell as another spell's material component causes that spell to fail.Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the cube increases by 5 feet for each slot level above 5th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"spec"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"cube"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A tiny piece of matter of the same type of the item you plan to create.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.lnaGnxMzpYnbw1uU"}},"img":"icons/magic/nature/vines-thorned-entwined-glow-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234217,"modifiedTime":1661791116037,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"2IWiZAJtOGDoKjiz","name":"Gaseous Form","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You transform a willing creature you touch, along with everything it's wearing and carrying, into a misty cloud for the duration. The spell ends if the creature drops to 0 hit points. An incorporeal creature isn't affected.While in this form, the target's only method of movement is a flying speed of 10 feet. The target can enter and occupy the space of another creature. The target has resistance to nonmagical damage, and it has advantage on Strength, Dexterity, and Constitution saving throws. The target can pass through small holes, narrow openings, and even mere cracks, though it treats liquids as though they were solid surfaces. The target can't fall and remains hovering in the air even when stunned or otherwise incapacitated.While in the form of a misty cloud, the target can't talk or manipulate objects, and any objects it was carrying or holding can't be dropped, used, or otherwise interacted with. The target can't attack or cast spells.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of gauze and a wisp of smoke","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.2IWiZAJtOGDoKjiz"}},"img":"icons/magic/air/fog-gas-smoke-dense-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234058,"modifiedTime":1661791116037,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"1N8dDMMgZ1h1YJ3B","name":"Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An eyelash encased in gum arabic","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.1N8dDMMgZ1h1YJ3B"}},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234056,"modifiedTime":1661791116038,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"nslx2nT3p4lNkmdp","name":"Major Image","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 20-foot cube. The image appears at a spot that you can see within range and lasts for the duration. It seems completely real, including sounds, smells, and temperature appropriate to the thing depicted. You can't create sufficient heat or cold to cause damage, a sound loud enough to deal thunder damage or deafen a creature, or a smell that might sicken a creature (like a troglodyte's stench).As long as you are within range of the illusion, you can use your action to cause the image to move to any other spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking. Similarly, you can cause the illusion to make different sounds at different times, even making it carry on a conversation, for example.Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and its other sensory qualities become faint to the creature.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the spell lasts until dispelled, without requiring your concentration.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of fleece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.nslx2nT3p4lNkmdp"}},"img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234222,"modifiedTime":1661791116040,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"J6Jpw5XzB5aTeqnz","name":"Plane Shift","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You and up to eight willing creatures who link hands in a circle are transported to a different plane of existence. You can specify a target destination in general terms, such as the City of Brass on the Elemental Plane of Fire or the palace of Dispater on the second level of the Nine Hells, and you appear in or near that destination. If you are trying to reach the City of Brass, for example, you might arrive in its Street of Steel, before its Gate of Ashes, or looking at the city from across the Sea of Fire, at the DM's discretion.Alternatively, if you know the sigil sequence of a teleportation circle on another plane of existence, this spell can take you to that circle. If the teleportation circle is too small to hold all the creatures you transported, they appear in the closest unoccupied spaces next to the circle.You can use this spell to banish an unwilling creature to another plane. Choose a creature within your reach and make a melee spell attack against it. On a hit, the creature must make a Charisma saving throw. If the creature fails this save, it is transported to a random location on the plane of existence you specify. A creature so transported must find its own way back to your current plane of existence.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":8,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":17,"scaling":"spell"},"level":7,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A forked, metal rod worth at least 250 gp, attuned to a particular plane of existence","consumed":false,"cost":250,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.J6Jpw5XzB5aTeqnz"}},"img":"icons/magic/symbols/runes-star-pentagon-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234111,"modifiedTime":1661791116041,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232589,"modifiedTime":1672596092302,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5SgVGhQBswgWRwsF","name":"Nightmare","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":68,"min":0,"max":68,"temp":0,"tempmax":0,"formula":"8d10 + 24"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":90,"swim":0,"walk":60,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"fiend","subtype":"","swarm":"","custom":""},"environment":"","cr":3,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"understands Abyssal, Common, and Infernal but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Nightmare","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ez0lp4uo2fLOc5Yf","name":"Confer Fire Resistance","type":"feat","img":"icons/magic/fire/explosion-mushroom-nuke-orange.webp","system":{"description":{"value":"The nightmare can grant resistance to fire damage to anyone riding it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.wzgGJyVFGIcj1XAb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YXCQq6M3IGaLDz2M","name":"Illumination","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"The nightmare sheds bright light in a 10-foot radius and dim light for an additional 10 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.F3gzBbCW7U14zkBF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lzv29dS3tAUUuVlI","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage plus 7 (2d6) fire damage.The Nightmare attacks with its Hooves.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+@mod","bludgeoning"],["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XtK73VCT1s8abvjs","name":"Ethereal Stride","type":"feat","img":"icons/magic/lightning/orb-ball-purple.webp","system":{"description":{"value":"The nightmare and up to three willing creatures within 5 feet of it magically enter the Ethereal Plane from the Material Plane, or vice versa.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.NfTCXq8eRrqjhvAo"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232592,"modifiedTime":1672596092354,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5TmstVMURpVtmNR3","name":"Half-Red Dragon Veteran","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":65,"min":0,"max":65,"temp":0,"tempmax":0,"formula":"10d8 + 20"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Alignment","race":"","type":{"value":"humanoid","subtype":"Human","swarm":"","custom":""},"environment":"","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["fire"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Half-Red Dragon Veteran","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"gMtQsYeAPMGoYGrm","name":"Plate Armor","type":"equipment","img":"icons/equipment/chest/breastplate-cuirass-steel-grey.webp","system":{"description":{"value":"Plate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":65,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"heavy","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.OjkIqlW2UpgFcjZa"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MTqXmkJOXkp4bFMQ","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The veteran makes two longsword attacks. If it has a shortsword drawn, it can also make a shortsword attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"93eWZ75LncoC5U8d","name":"Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\nThe Half-Red Dragon Veteran attacks with its Longsword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"-1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","slashing"]],"versatile":"1d10+@mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pl7hO2z20EnTaPZt","name":"Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.The Half-Red Dragon Veteran attacks with its Shortsword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"-1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":true,"fir":false,"foc":false,"hvy":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.osLzOwQdPtrK3rQH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Jt9HuwZdYUCmEH5q","name":"Heavy Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-blue.webp","system":{"description":{"value":"Ranged Weapon Attack: +3 to hit, range 100/400 ft., one target. Hit: 6 (1d10 + 1) piercing damage.The Half-Red Dragon Veteran attacks with its Heavy Crossbow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":18,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":100,"long":400,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"-1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":true,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":true,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.RmP0mYRn2J7K26rX"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"68Y4sNHbVetQN3wa","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"The veteran exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.The veteran exhales fire in a 15-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["7d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":15,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232594,"modifiedTime":1672596092397,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5kZNNWzZ6HrfKuWf","name":"Centaur","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":45,"min":0,"max":45,"temp":0,"tempmax":0,"formula":"6d10 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Good","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["elvish","sylvan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Centaur","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"uhqyN44IRWXixgxU","name":"Pike","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-stone-worn.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 10 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\nThe Centaur attacks with its Pike.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":18,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"hvy":true,"rch":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.tC0kcqZT9HHAO0PD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ICbiLFrPjwIfA1Nj","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\nThe Centaur attacks with its Hooves.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"v7ForWMLPJp1u78X","name":"Longbow","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"\nRanged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\nThe Centaur attacks with its Longbow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3cymOVja8jXbzrdT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iYlIoEDfSCrggrca","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The centaur makes two attacks: one with its pike and one with its hooves or two with its longbow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4R48w4DH2CqCpmED","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nIf the centaur moves at least 30 ft. straight toward a target and then hits it with a pike attack on the same turn, the target takes an extra 10 (3d6) piercing damage.\nIf the centaur moves at least 30 ft. straight toward a target and then hits it with a pike attack on the same turn, the target takes extra piercing damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232596,"modifiedTime":1672596092445,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5ngbctIMeEnuC1p1","name":"Kobold","type":"npc","img":"","system":{"abilities":{"str":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":5,"min":0,"max":5,"temp":0,"tempmax":0,"formula":"2d6 - 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"humanoid","subtype":"Kobold","swarm":"","custom":""},"environment":"Forest","cr":0.125,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Kobold","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"HlRML24gXEmuamg9","name":"Sunlight Sensitivity","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.F14aW2Ke3I5ZtSg4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pZLDhUyfsObRKMpP","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The kobold has advantage on an attack roll against a creature if at least one of the kobold's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"io78wguVwNy9VfZ4","name":"Dagger","type":"weapon","img":"icons/weapons/daggers/dagger-jeweled-purple.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.The Kobold attacks with its Dagger.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":true,"fir":false,"foc":false,"hvy":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.0E565kQUBmndJ1a2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0yHcZm2TzgOyt3fI","name":"Sling","type":"weapon","img":"icons/weapons/slings/slingshot-wood.webp","system":{"description":{"value":"Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 4 (1d4 + 2) bludgeoning damage.The Kobold attacks with its Sling.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":true,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3gynWO9sN4OLGMWD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232598,"modifiedTime":1672596092492,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"68bAMIpe4jvDeR9G","name":"Storm Giant","type":"npc","img":"","system":{"abilities":{"str":{"value":29,"proficient":1,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":230,"min":0,"max":230,"temp":0,"tempmax":0,"formula":"20d12 + 100"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":50,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"giant","subtype":"","swarm":"","custom":""},"environment":"Coastal","cr":13,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":["lightning","thunder"],"bypasses":[],"custom":""},"dr":{"value":["cold"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","giant"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Storm Giant","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"PMXLrGDWGu9amL2X","name":"Scale Mail","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"This armor consists of a coat and leggings (and perhaps a separate skirt) of leather covered with overlapping pieces of metal, much like the scales of a fish. The suit includes gauntlets.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":45,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.XmnlF5fgIO3tg6TG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3vDo83oAycRGB85G","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The giant can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iwN0z7f5LF9AAbRJ","name":"Greatsword","type":"weapon","img":"icons/weapons/swords/greatsword-guard-gem-blue.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 30 (6d6 + 9) slashing damage.The Storm Giant attacks with its Greatsword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.xMkP8BmFzElcsMaR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2tzFjiAiXJLEpuCn","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The giant's innate spellcasting ability is Charisma (spell save DC 17). It can innately cast the following spells, requiring no material components:\nAt will: detect magic, feather fall, levitate, light\n3/day each: control weather, water breathing","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"k0g8uqoYdJ4LVxcn","name":"Lightning Strike","type":"weapon","img":"icons/magic/lightning/bolt-forked-blue-yellow.webp","system":{"description":{"value":"The giant hurls a magical lightning bolt at a point it can see within 500 feet of it. Each creature within 10 feet of that point must make a DC 17 Dexterity saving throw, taking 54 (12d8) lightning damage on a failed save, or half as much damage on a successful one.The Storm Giant attacks with its Lightning Strike. Each creature within 10 feet of that point must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":500,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d8","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KUffpBEiNWnVK3W6","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The giant makes two greatsword attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bRdk2uZ6iTuNGUIL","name":"Rock","type":"weapon","img":"icons/magic/earth/projectile-stone-ball-brown.webp","system":{"description":{"value":"Ranged Weapon Attack: +14 to hit, range 60/240 ft., one target. Hit: 35 (4d12 + 9) bludgeoning damage.The Storm Giant attacks with its Rock.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":240,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d12 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116062,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pub0OWVEB71XQx1n","name":"Feather Fall","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose up to five falling creatures within range. A falling creature's rate of descent slows to 60 feet per round until the spell ends. If the creature lands before the spell ends, it takes no falling damage and can land on its feet, and the spell ends for that creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":"which you take when you or a creature within 60 feet of you falls"},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small feather or piece of down","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.pub0OWVEB71XQx1n"}},"img":"icons/magic/air/wind-swirl-pink-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234229,"modifiedTime":1661791116064,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MRxldJd6C4bsBo3O","name":"Levitate","ownership":{"default":0},"type":"spell","system":{"description":{"value":"One creature or object of your choice that you can see within range rises vertically, up to 20 feet, and remains suspended there for the duration. The spell can levitate a target that weighs up to 500 pounds. An unwilling creature that succeeds on a Constitution saving throw is unaffected.The target can move only by pushing or pulling against a fixed object or surface within reach (such as a wall or a ceiling), which allows it to move as if it were climbing. You can change the target's altitude by up to 20 feet in either direction on your turn. If you are the target, you can move up or down as part of your move. Otherwise, you can use your action to move the target, which must remain within the spell's range.When the spell ends, the target floats gently to the ground if it is still aloft.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":17,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Either a small leather loop or a piece of golden wire bent into a cup shape with a long shank on one end","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.MRxldJd6C4bsBo3O"}},"img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234127,"modifiedTime":1661791116064,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Bnn9Nzajixvow9xi","name":"Light","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":17,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A firefly or phosphorescent moss.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Bnn9Nzajixvow9xi"}},"img":"icons/magic/light/explosion-star-small-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234093,"modifiedTime":1661791116065,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ZPd73HtKF3At11jh","name":"Control Weather","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You take control of the weather within 5 miles of you for the duration. You must be outdoors to cast this spell. Moving to a place where you don't have a clear path to the sky ends the spell early.When you cast the spell, you change the current weather conditions, which are determined by the DM based on the climate and season. You can change precipitation, temperature, and wind. It takes 1d4 x 10 minutes for the new conditions to take effect. Once they do so, you can change the conditions again. When the spell ends, the weather gradually returns to normal.When you change the weather conditions, find a current condition on the following tables and change its stage by one, up or down. When changing the wind, you can change its direction.Conditions\n\nClear\nLight clouds\nOvercast or ground fog\nRain, hail, or snow\nTorrential rain, driving hail, or blizzard\n\nTemperature\n\nUnbearable heat\nHot\nWarm\nCool\nCold\nArctic cold\n\nWind\n\nCalm\nModerate wind\nStrong wind\nGale\nStorm\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":5,"width":null,"units":"mi","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Burning incense and bits of earth and wood mixed in water.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ZPd73HtKF3At11jh"}},"img":"icons/magic/air/wind-tornado-cyclone-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234163,"modifiedTime":1661791116067,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"13uVuBQP6VaiSPvC","name":"Water Breathing","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell grants up to ten willing creatures you can see within range the ability to breathe underwater until the spell ends. Affected creatures also retain their normal mode of respiration.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A short reed or piece of straw","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.13uVuBQP6VaiSPvC"}},"img":"icons/magic/water/pseudopod-swirl-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234054,"modifiedTime":1661791116068,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232600,"modifiedTime":1672596092591,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"6oc29m5uzzzb0pk3","name":"Vrock","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":104,"min":0,"max":104,"temp":null,"tempmax":0,"formula":"11d10 + 44"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"fiend","subtype":"Demon","swarm":"","custom":""},"environment":"","cr":6,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","fire","lightning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["abyssal"],"custom":"telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Vrock","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"mViCCkDhb1mA9oO6","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The vrock has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"oWzM562ozNrlfOZe","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The vrock makes two attacks: one with its beak and one with its talons.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JwAFMjU7vHDDL2Ib","name":"Beak","type":"weapon","img":"icons/commodities/bones/beak-hooked-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.The Vrock attacks with its Beak.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"H5JJE8uS39dTI3Vg","name":"Talons","type":"weapon","img":"icons/creatures/claws/claw-scaled-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.The Vrock attacks with its Talons.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eEVWpD5omMdUkWLu","name":"Spores","type":"feat","img":"icons/magic/earth/orb-stone-smoke-teal.webp","system":{"description":{"value":"A 15-foot-radius cloud of toxic spores extends out from the vrock. The spores spread around corners. Each creature in that area must succeed on a DC 14 Constitution saving throw or become poisoned. While poisoned in this way, a target takes 5 (1d10) poison damage at the start of each of its turns. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Emptying a vial of holy water on the target also ends the effect on it.A 15-foot-radius cloud of toxic spores extends out from the vrock. The spores spread around corners. Each creature in that area must make a Constitution saving throw. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.ihWvcWsnfqW2HFlA"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ijd3GKLRlMzwoSe1","name":"Stunning Screech","type":"feat","img":"icons/skills/toxins/cup-goblet-poisoned-spilled.webp","system":{"description":{"value":"The vrock emits a horrific screech. Each creature within 20 feet of it that can hear it and that isn't a demon must succeed on a DC 14 Constitution saving throw or be stunned until the end of the vrock's next turn .The vrock emits a horrific screech. Each creature within 20 feet of it that can hear it and that isn't a demon must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.aD3HKoBnJtZL6cDj"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232602,"modifiedTime":1672596092645,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"6qnT52lZtZblgGw8","name":"Hobgoblin","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"humanoid","subtype":"Goblinoid","swarm":"","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","goblin"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Hobgoblin","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Y73kGtiKbGevpBCo","name":"Martial Advantage","type":"feat","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"Once per turn, the hobgoblin can deal an extra 7 (2d6) damage to a creature it hits with a weapon attack if that creature is within 5 ft. of an ally of the hobgoblin that isn't incapacitated.Once per turn, the hobgoblin can deal extra damage to a creature it hits with a weapon attack if that creature is within 5 ft. of an ally of the hobgoblin that isn't incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zg0RZmAncKJqIpax"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"is4wHu9FG6SPackl","name":"Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage, or 6 (1d10 + 1) slashing damage if used with two hands.\n\nThe Hobgoblin attacks with its Longsword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ahUVLSMfFY5mqJ66","name":"Longbow","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"\nRanged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n\nThe Hobgoblin attacks with its Longbow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3cymOVja8jXbzrdT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"H7NwPMCFCLtZxIh7","name":"Chain Mail","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"Made of interlocking metal rings, chain mail includes a layer of quilted fabric worn underneath the mail to prevent chafing and to cushion the impact of blows. The suit includes gauntlets.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":55,"price":{"value":75,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":13,"stealth":true,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.rLMflzmxpe8JGTOA"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sSs3hSzkKBMNBgTs","name":"Shield","type":"equipment","img":"icons/equipment/shield/oval-wooden-boss-steel.webp","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232603,"modifiedTime":1672596092699,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"6wbasdWWqtXeIAyD","name":"Gynosphinx","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":136,"min":0,"max":136,"temp":null,"tempmax":0,"formula":"16d10 + 48"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":"int"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Neutral","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":11,"spellLevel":9,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["psychic"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened"],"custom":""},"languages":{"value":["common"],"custom":"Sphinx"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":2,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":2,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":4,"override":null},"spell2":{"value":3,"override":null},"spell3":{"value":3,"override":null},"spell4":{"value":3,"override":null},"spell5":{"value":1,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":0,"max":0},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Gynosphinx","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"nt4mvfC9IXqg5p7q","name":"Inscrutable","type":"feat","img":"icons/magic/perception/third-eye-blue-red.webp","system":{"description":{"value":"The sphinx is immune to any effect that would sense its emotions or read its thoughts, as well as any divination spell that it refuses. Wisdom (Insight) checks made to ascertain the sphinx's intentions or sincerity have disadvantage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FHrFOjEfkdRm4u43"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZbjUur2xbAx0BCSv","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The sphinx's weapon attacks are magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kvyuqG5WztblcJXb","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"\nThe sphinx is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save DC 16, +8 to hit with spell attacks). It requires no material components to cast its spells. The sphinx has the following wizard spells prepared:\nCantrips (at will): mage hand, minor illusion, prestidigitation\n1st level (4 slots): detect magic, identify, shield\n2nd level (3 slots): darkness, locate object, suggestion\n3rd level (3 slots): dispel magic, remove curse, tongues\n4th level (3 slots): banishment, greater invisibility\n5th level (1 slot): legend lore\n\nThe sphinx is a spellcaster. Its spellcasting ability is Intelligence.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hVUH6pBt7hYD84ez","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The sphinx makes two claw attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gVFZXBtgx450yiH7","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\nThe Gynosphinx attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rH7NbL1u2RarHKKb","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe sphinx can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The sphinx regains spent legendary actions at the start of its turn.\n\nThe sphinx can take 3 legendary actions.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MlIAHfLIUfQZK5vT","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Sw2aAeas52cJ4uHZ","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7ttJw5cEHPyb5ETl","name":"Claw Attack","type":"feat","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"The sphinx makes one claw attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.DPrO7eVVxiKD8QWD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"udtRN8dgOiBhUuZh","name":"Teleport","type":"feat","img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","system":{"description":{"value":"The sphinx magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.PPzVD90vab60FqCt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"V0O6My4SjXUmirH6","name":"Cast a Spell","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The sphinx casts a spell from its list of prepared spells, using a spell slot as normal.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":3,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":3},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.7HPC39yg8OYshJos"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Utk1OQRwYkMkFRD3","name":"Mage Hand","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.The hand can't attack, activate magic items, or carry more than 10 pounds.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Utk1OQRwYkMkFRD3"}},"img":"icons/magic/water/water-hand.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234148,"modifiedTime":1661791116091,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"oIzA2MEHwxhtQneU","name":"Minor Illusion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a sound or an image of an object within range that lasts for the duration. The illusion also ends if you dismiss it as an action or cast this spell again.If you create a sound, its volume can range from a whisper to a scream. It can be your voice, someone else's voice, a lion's roar, a beating of drums, or any other sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends.If you create an image of an object—such as a chair, muddy footprints, or a small chest—it must be no larger than a 5-foot cube. The image can't create sound, light, smell, or any other sensory effect. Physical interaction with the image reveals it to be an illusion, because things can pass through it.If a creature uses its action to examine the sound or image, the creature can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the illusion becomes faint to the creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"cube"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"ill","components":{"vocal":false,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of fleece.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.oIzA2MEHwxhtQneU"}},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234224,"modifiedTime":1661791116092,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"udsLtG0BugXHR2JQ","name":"Prestidigitation","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell is a minor magical trick that novice spellcasters use for practice. You create one of the following magical effects within range:\n\nYou create an instantaneous, harmless sensory effect, such as a shower of sparks, a puff of wind, faint musical notes, or an odd odor.\nYou instantaneously light or snuff out a candle, a torch, or a small campfire.\nYou instantaneously clean or soil an object no larger than 1 cubic foot.\nYou chill, warm, or flavor up to 1 cubic foot of nonliving material for 1 hour.\nYou make a color, a small mark, or a symbol appear on an object or a surface for 1 hour.\nYou create a nonmagical trinket or an illusory image that can fit in your hand and that lasts until the end of your next turn.\n\nIf you cast this spell multiple times, you can have up to three of its non-instantaneous effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.udsLtG0BugXHR2JQ"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234236,"modifiedTime":1661791116092,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116092,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"3OZnNhunvRtPOQmH","name":"Identify","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You choose one object that you must touch throughout the casting of the spell. If it is a magic item or some other magic-imbued object, you learn its properties and how to use them, whether it requires attunement to use, and how many charges it has, if any. You learn whether any spells are affecting the item and what they are. If the item was created by a spell, you learn which spell created it.If you instead touch a creature throughout the casting, you learn what spells, if any, are currently affecting it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A pearl worth at least 100gp and an owl feather","consumed":false,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.3OZnNhunvRtPOQmH"}},"img":"icons/magic/light/explosion-star-small-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234064,"modifiedTime":1661791116093,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"z1mx84ONwkXKUZd7","name":"Shield","type":"spell","img":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","system":{"description":{"value":"An invisible barrier of magical force appears and protects you. Until the start of your next turn, you have a +5 bonus to AC, including against the triggering attack, and you take no damage from magic missile.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":"Which you take when you are hit by an attack or targeted by the magic missile spell"},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"6pbotGIvqQkraPva","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"5","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"rounds":1,"seconds":null,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","label":"Shield","origin":"Item.FlLKKv7bQBlIAs11","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.z1mx84ONwkXKUZd7"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234244,"modifiedTime":1661791116093,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"15Fa6q1nH27XfbR8","name":"Dispel Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose one creature, object, or magical effect within range. Any spell of 3rd level or lower on the target ends. For each spell of 4th level or higher on the target, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a successful check, the spell ends.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you automatically end the effects of a spell on the target if the spell's level is equal to or less than the level of the spell slot you used.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.15Fa6q1nH27XfbR8"}},"img":"icons/skills/melee/strike-blade-knife-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234054,"modifiedTime":1661791116094,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"S7VbUetIfVT7B6Eq","name":"Darkness","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Magical darkness spreads from a point you choose within range to fill a 15-foot-radius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and nonmagical light can't illuminate it.If the point you choose is on an object you are holding or one that isn't being worn or carried, the darkness emanates from the object and moves with it. Completely covering the source of the darkness with an opaque object, such as a bowl or a helm, blocks the darkness.If any of this spell's area overlaps with an area of light created by a spell of 2nd level or lower, the spell that created the light is dispelled.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Bat fur and a drop of pitch or piece of coal","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.S7VbUetIfVT7B6Eq"}},"img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234139,"modifiedTime":1661791116094,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"SleYkHovQ8NagmeV","name":"Locate Object","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Describe or name an object that is familiar to you. You sense the direction to the object's location, as long as that object is within 1,000 feet of you. If the object is in motion, you know the direction of its movement.The spell can locate a specific object known to you, as long as you have seen it up close—within 30 feet—at least once. Alternatively, the spell can locate the nearest object of a particular kind, such as a certain kind of apparel, jewelry, furniture, tool, or weapon.This spell can't locate an object if any thickness of lead, even a thin sheet, blocks a direct path between you and the object.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A forked twig","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.SleYkHovQ8NagmeV"}},"img":"icons/magic/earth/projectile-stone-boulder-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234143,"modifiedTime":1661791116095,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"zMAWdyc8UVb37BK4","name":"Suggestion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You suggest a course of activity (limited to a sentence or two) and magically influence a creature you can see within range that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act ends the spell.The target must make a Wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do.You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a knight give her warhorse to the first beggar she meets. If the condition isn't met before the spell expires, the activity isn't performed.If you or any of your companions damage the target, the spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":16,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A snake's tongue and either a bit of honeycomb or a drop of sweet oil","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.zMAWdyc8UVb37BK4"}},"img":"icons/magic/air/air-burst-spiral-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234245,"modifiedTime":1661791116095,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"XZhdgVK3cLoxNCQl","name":"Remove Curse","ownership":{"default":0},"type":"spell","system":{"description":{"value":"At your touch, all curses affecting one creature or object end. If the object is a cursed magic item, its curse remains, but the spell breaks its owner's Attunement to the object so it can be removed or discarded.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.XZhdgVK3cLoxNCQl"}},"img":"icons/magic/life/heart-cross-strong-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234157,"modifiedTime":1661791116095,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"gopnZvS0c2jD5FP8","name":"Tongues","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell grants the creature you touch the ability to understand any spoken language it hears. Moreover, when the target speaks, any creature that knows at least one language and can hear the target understands what it says.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"div","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small clay model of a ziggurat","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gopnZvS0c2jD5FP8"}},"img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234193,"modifiedTime":1661791116096,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pxpb2eOB6bv4phAf","name":"Banishment","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to send one creature that you can see within range to another plane of existence. The target must succeed on a Charisma saving throw or be banished.If the target is native to the plane of existence you're on, you banish the target to a harmless demiplane. While there, the target is incapacitated. The target remains there until the spell ends, at which point the target reappears in the space it left or in the nearest unoccupied space if that space is occupied.If the target is native to a different plane of existence than the one you're on, the target is banished with a faint popping noise, returning to its home plane. If the spell ends before 1 minute has passed, the target reappears in the space it left or in the nearest unoccupied space if that space is occupied. Otherwise, the target doesn't return.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":16,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An item distasteful to the target","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.pxpb2eOB6bv4phAf"}},"img":"icons/magic/control/energy-stream-link-spiral-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234230,"modifiedTime":1661791116096,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"tEpDmYZNGc9f5OhJ","name":"Greater Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You or a creature you touch becomes Invisible until the spell ends. Anything the target is wearing or carrying is Invisible as long as it is on the target's person.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.tEpDmYZNGc9f5OhJ"}},"img":"icons/magic/air/fog-gas-smoke-swirling-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234234,"modifiedTime":1661791116096,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"W4Qx5z0id6da0vqg","name":"Legend Lore","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Name or describe a person, place, or object. The spell brings to your mind a brief summary of the significant lore about the thing you named. The lore might consist of current tales, forgotten stories, or even secret lore that has never been widely known. If the thing you named isn't of legendary importance, you gain no information. The more information you already have about the thing, the more precise and detailed the information you receive is.The information you learn is accurate but might be couched in figurative language. For example, if you have a mysterious magic axe on hand, the spell might yield this information: \"Woe to the evildoer whose hand touches the axe, for even the haft slices the hand of the evil ones. Only a true Child of Stone, lover and beloved of Moradin, may awaken the true powers of the axe, and only with the sacred word Rudnogg on the lips.\"","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Incense worth at least 250gp, which the spell consumes, and four ivory strips worth at least 50gp each.","consumed":true,"cost":450,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.W4Qx5z0id6da0vqg"}},"img":"icons/magic/symbols/runes-star-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234150,"modifiedTime":1661791116097,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"6pbotGIvqQkraPva","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"5","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":678,"rounds":1,"seconds":null,"combat":null,"turns":null,"startRound":2,"startTurn":1},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","label":"Shield","origin":"Compendium.dnd5e.monsters.6wbasdWWqtXeIAyD.Item.z1mx84ONwkXKUZd7","tint":null,"transfer":false,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232605,"modifiedTime":1672596092813,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7198siHjPJf8g0cG","name":"Wyvern","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":110,"min":0,"max":110,"temp":0,"tempmax":0,"formula":"13d10 + 39"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":6,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Wyvern","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"vnO8N4pro9PVOOQn","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The wyvern makes two attacks: one with its bite and one with its stinger. While flying, it can use its claws in place of one other attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"j1LTHxGLXWdnEbwq","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+7 to hit,, 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage.\nThe Wyvern attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Wa8BU72wRqyBCqkI","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\nThe Wyvern attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HzLuzqlmtBSeSS4Q","name":"Stinger","type":"weapon","img":"icons/creatures/abilities/fang-tooth-venomous.webp","system":{"description":{"value":"\nMelee Weapon Attack:+7 to hit,, 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage.\nThe target must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\n\nThe Wyvern attacks with its Stinger. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":"7d6"},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"rch":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232608,"modifiedTime":1672596092870,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7EmUVycEASn7SFL0","name":"Violet Fungus","type":"npc","img":"","system":{"abilities":{"str":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":5,"calc":"natural","formula":""},"hp":{"value":18,"min":0,"max":18,"temp":0,"tempmax":0,"formula":"4d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":5,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":"Blind beyond this radius"},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"plant","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["blinded","deafened","frightened"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Violet Fungus","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"OEx9iy4HDipiYsPt","name":"Rotting Touch","type":"weapon","img":"icons/creatures/claws/claw-curved-poison-purple.webp","system":{"description":{"value":"Melee Weapon Attack:+2 to hit,, 10 ft., one creature. Hit: 4 (1d8) necrotic damage.The Violet Fungus attacks with its Rotting Touch.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wjDktLNTUnueuX2X","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The fungus makes 1d4 Rotting Touch attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fZgfSlczUTtrCNEb","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the violet fungus remains motionless, it is indistinguishable from an ordinary fungus.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232610,"modifiedTime":1672596092910,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7KJ5vjnp0FJrdu6T","name":"Warhorse Skeleton","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"3d10 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":60,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":["bludgeoning"],"bypasses":[],"custom":""},"ci":{"value":["poisoned","exhaustion"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Warhorse Skeleton","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"sIgV1p8nM1z4VZgY","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.The Warhorse Skeleton attacks with its Hooves.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232611,"modifiedTime":1672596092988,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7tRhrxuknTpHpYcA","name":"Werewolf","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":58,"min":0,"max":58,"temp":null,"tempmax":0,"formula":"9d8 + 18"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"humanoid","subtype":"Human, Shapechanger","swarm":"","custom":""},"environment":"Forest","cr":3,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common"],"custom":"(can't speak in wolf form)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Werewolf","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"tWfR8uJNnQxpXgDw","name":"Bite (Wolf or Hybrid Form Only)","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage. If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with werewolf lycanthropy.The Werewolf attacks with its Bite. If the target is a humanoid, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"abhGXKzA0XGprXED","name":"Multiattack (Humanoid or Hybrid Form Only)","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The werewolf makes two attacks: one with its bite and one with its claws or spear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TiKtAuqd6urQ45Ds","name":"Spear (Humanoid Form Only)","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"\nMelee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one creature. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.\n\nThe Werewolf attacks with its Spear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"thr":true,"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"36H4LGNMMEYS1Irm","name":"Claws (Hybrid Form Only)","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 7 (2d4 + 2) slashing damage.The Werewolf attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2kHNI1T4gg879fDv","name":"Shapechanger","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The werewolf can use its action to polymorph into a wolf-humanoid hybrid or into a wolf, or back into its true form, which is humanoid. Its statistics, other than its AC, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies.The werewolf can use its action to polymorph, or return to its true form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9v8vBxcPazXyBUmo","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The werewolf has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232613,"modifiedTime":1672596093030,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7vswgicsiMfS4ZTS","name":"Adult Brass Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":172,"min":0,"max":172,"temp":0,"tempmax":0,"formula":"15d12 + 75"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":30,"climb":0,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":13,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Adult Brass Dragon","displayName":0,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Rr34cx78OgioMSHH","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack: +11 to hit, reach,.0 ft., one target. Hit: 17 (2d10 + 6) piercing damage.The Adult Brass Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HOTavLfsvvI26Ele","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\n**Fire Breath.** The dragon exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 45 (13d6) fire damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["13d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Gx6DVWF7D9lzZjse","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.The Adult Brass Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jM7XLTjt7QeJ8B7U","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"cVkEgorVxYQJkS8M","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute.A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":16,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Mmn2SNmzahxtikN3","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"86DJipzmvkhxDoKr","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MUTDiPrzhDqLYlKU","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rR1dMvZqWVQTgCVw","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.The Adult Brass Dragon attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"StCQbn2czecQteRM","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nThe dragon makes a tail attack.\n\nThe dragon slams its long tail against its foe!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ge1y4jlE3zGCsy6K","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"\n\nThe dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 19 Dexterity saving throw or take 13 (2d6+6) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.\n\n\nThe dragon beats its wings!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":19,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"37PM2SkkUbzzambk","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"asAmhLPOTnfZhb5I","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Fire Breath.** The dragon exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 45 (13d6) fire damage on a failed save, or half as much damage on a successful one.\n**Sleep Breath.** The dragon exhales sleep gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"K7XKtsJS8WUoEE0u","name":"Sleep Breath","type":"feat","img":"icons/magic/perception/third-eye-blue-red.webp","system":{"description":{"value":"\n**Sleep Breath.** The dragon exhales sleep gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n\nThe dragon exhales sleep gas in a 90-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.43BnuqkQgg5l1Nfh"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VOrehjcYVau3aE1g","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232616,"modifiedTime":1672596093131,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"85ahD1jEo9B3POaQ","name":"Young Green Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":136,"min":0,"max":136,"temp":0,"tempmax":0,"formula":"16d10 + 48"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":8,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Young Green Dragon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"6VIuuNCntP3W9Tki","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0Ob35HZxhSF7p2ys","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 7 (2d6) poison damage.The Young Green Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["2d6","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WvvHslcDhMq7MD1s","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.The Young Green Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ux1Gv0S29JzRaD27","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PIXokIK4tYPwua2G","name":"Poison Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"The dragon exhales poisonous gas in a 30-foot cone. Each creature in that area must make a DC 14 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.The dragon exhales poisonous gas in a 30-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d6","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JAEclghgOT24pQD9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232619,"modifiedTime":1672596093178,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8ExSFCar5Lbhdo7u","name":"Guardian Naga","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":127,"min":0,"max":127,"temp":0,"tempmax":0,"formula":"15d10 + 45"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"wis"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":10,"spellLevel":11,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","poisoned"],"custom":""},"languages":{"value":["celestial","common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":4,"override":null},"spell2":{"value":3,"override":null},"spell3":{"value":3,"override":null},"spell4":{"value":3,"override":null},"spell5":{"value":2,"override":null},"spell6":{"value":1,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Guardian Naga","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"GkVxLIsamEXICEeT","name":"Rejuvenation","type":"feat","img":"icons/magic/control/debuff-energy-hold-levitate-green.webp","system":{"description":{"value":"If it dies, the naga returns to life in 1d6 days and regains all its hit points. Only a wish spell can prevent this trait from functioning.If it dies, the naga returns to life in 1d6 days and regains all its hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d6","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JcfHlAcfwSWnt7Ud"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wtPKdh22QAc93kgt","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"\nThe naga is an 11th-level spellcaster. Its spellcasting ability is Wisdom (spell save DC 16, +8 to hit with spell attacks), and it needs only verbal components to cast its spells. It has the following cleric spells prepared:\nCantrips (at will): mending, sacred flame, thaumaturgy\n1st level (4 slots): command, cure wounds, shield of faith\n2nd level (3 slots): calm emotions, hold person\n3rd level (3 slots): bestow curse, clairvoyance\n4th level (3 slots): banishment, freedom of movement\n5th level (2 slots): flame strike, geas\n6th level (1 slot): true seeing\n\nThe naga is an spellcaster. Its spellcasting ability is Wisdom.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hQFQz2LiNGpxcRvw","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+8 to hit,, 10 ft., one creature. Hit: 8 (1d8 + 4) piercing damage.The target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.The Guardian Naga attacks with its Bite. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"10d8","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PtPZ5aBQPEfbbvla","name":"Spit Poison","type":"weapon","img":"icons/magic/acid/dissolve-drip-droplet-smoke.webp","system":{"description":{"value":"Ranged Weapon Attack: +8 to hit, range 15/30 ft., one creature. Hit: The target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.The Guardian Naga attacks with its Spit Poison. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":30,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d8","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kjmjY0zlE6IEiQVL","name":"Mending","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell repairs a single break or tear in an object you touch, such as a broken chain link, two halves of a broken key, a torn cloak, or a leaking wineskin. As long as the break or tear is no larger than 1 foot in any dimension, you mend it, leaving no trace of the former damage.This spell can physically repair a magic item or construct, but the spell can't restore magic to such an object.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Two lodestones","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.kjmjY0zlE6IEiQVL"}},"img":"icons/magic/air/wind-stream-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234215,"modifiedTime":1661791116132,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"n9pJzTDsAwQxJVRl","name":"Sacred Flame","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Flame-like radiance descends on a creature that you can see within range. The target must succeed on a Dexterity saving throw or take 1d8 radiant damage. The target gains no benefit from cover for this saving throw.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":16,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.n9pJzTDsAwQxJVRl"}},"img":"icons/magic/light/beam-rays-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234221,"modifiedTime":1661791116132,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MUO1uYN7JR1hm4dR","name":"Thaumaturgy","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create one of the following magical effects within range:\n\nYour voice booms up to three times as loud as normal for 1 minute.\nYou cause flames to flicker, brighten, dim, or change color for 1 minute.\nYou cause harmless tremors in the ground for 1 minute.\nYou create a sound that originates from a point of your choice within range.\nYou cause an unlocked door or window to fly open or slam shut.\nYou alter the appearance of your eyes for 1 minute.\n\nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234127,"modifiedTime":1661791116133,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"arzCrMRgcNiQuh43","name":"Command","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You speak a one-word command to a creature you can see within range. The target must succeed on a Wisdom saving throw or follow the command on its next turn. The spell has no effect if the target is undead, if it doesn't understand your language, or if your command is directly harmful to it.Some typical commands and their effects follow. You might issue a command other than one described here. If you do so, the DM determines how the target behaves. If the target can't follow your command, the spell ends.Approach. The target moves toward you by the shortest and most direct route, ending its turn if it moves within 5 feet of you.Drop. The target drops whatever it is holding and then ends its turn.Flee. The target spends its turn moving away from you by the fastest available means.Grovel. The target falls prone and then ends its turn.Halt. The target doesn't move and takes no actions. A flying creature stays aloft, provided that it is able to do so. If it must move to stay aloft, it flies the minimum distance needed to remain in the air.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":16,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.arzCrMRgcNiQuh43"}},"img":"icons/magic/fire/explosion-fireball-small-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234169,"modifiedTime":1661791116133,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"uUWb1wZgtMou0TVP","name":"Cure Wounds","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch regains a number of hit points equal to 1d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.uUWb1wZgtMou0TVP"}},"img":"icons/magic/life/heart-cross-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234236,"modifiedTime":1661791116134,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"jZ6JNykRtdQ90MOo","name":"Shield of Faith","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A shimmering field appears and surrounds a creature of your choice within range, granting it a +2 bonus to AC for the duration.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small parchment with a bit of holy text written on it.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.jZ6JNykRtdQ90MOo"}},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234212,"modifiedTime":1661791116134,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"3MYDjS6k9IYL0aTj","name":"Calm Emotions","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to suppress strong emotions in a group of people. Each humanoid in a 20-foot-radius sphere centered on a point you choose within range must make a Charisma saving throw; a creature can choose to fail this saving throw if it wishes. If a creature fails its saving throw, choose one of the following two effects. You can suppress any effect causing a target to be charmed or frightened. When this spell ends, any suppressed effect resumes, provided that its duration has not expired in the meantime.Alternatively, you can make a target indifferent about creatures of your choice that it is hostile toward. This indifference ends if the target is attacked or harmed by a spell or if it witnesses any of its friends being harmed. When the spell ends, the creature becomes hostile again, unless the DM rules otherwise.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":16,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.3MYDjS6k9IYL0aTj"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234063,"modifiedTime":1661791116134,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"3Lo9boi7P2ro6QV4","name":"Hold Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a humanoid that you can see within range. The target must succeed on a Wisdom saving throw or be paralyzed for the duration. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional humanoid for each slot level above 2nd. The humanoids must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":16,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small, straight piece of iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.3Lo9boi7P2ro6QV4"}},"img":"icons/magic/control/debuff-chains-ropes-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234063,"modifiedTime":1661791116135,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pO4zGe5LmFIYqJiL","name":"Bestow Curse","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature, and that creature must succeed on a Wisdom saving throw or become cursed for the duration of the spell. When you cast this spell, choose the nature of the curse from the following options:\n\nChoose one ability score. While cursed, the target has disadvantage on ability checks and saving throws made with that ability score.\nWhile cursed, the target has disadvantage on attack rolls against you.\nWhile cursed, the target must make a Wisdom saving throw at the start of each of its turns. If it fails, it wastes its action that turn doing nothing.\nWhile the target is cursed, your attacks and spells deal an extra 1d8 necrotic damage to the target.\n\nA remove curse spell ends this effect. At the DM's option, you may choose an alternative curse effect, but it should be no more powerful than those described above. The DM has final say on such a curse's effect.At Higher Levels. If you cast this spell using a spell slot of 4th level or higher, the duration is concentration, up to 10 minutes. If you use a spell slot of 5th level or higher, the duration is 8 hours. If you use a spell slot of 7th level or higher, the duration is 24 hours. If you use a 9th level spell slot, the spell lasts until it is dispelled. Using a spell slot of 5th level or higher grants a duration that doesn't require concentration.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":16,"scaling":"spell"},"level":3,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.pO4zGe5LmFIYqJiL"}},"img":"icons/magic/control/buff-flight-wings-runes-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234226,"modifiedTime":1661791116135,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"cg50KpBkBdPK6vPL","name":"Clairvoyance","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create an invisible sensor within range in a location familiar to you (a place you have visited or seen before) or in an obvious location that is unfamiliar to you (such as behind a door, around a corner, or in a grove of trees). The sensor remains in place for the duration, and it can't be attacked or otherwise interacted with.When you cast the spell, you choose seeing or hearing. You can use the chosen sense through the sensor as if you were in its space. As your action, you can switch between seeing and hearing.A creature that can see the sensor (such as a creature benefiting from see invisibility or truesight) sees a luminous, intangible orb about the size of your fist.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":1,"long":null,"units":"mi"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A focus worth at least 100gp, either a jeweled horn for hearing or a glass eye for seeing.","consumed":false,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.cg50KpBkBdPK6vPL"}},"img":"icons/magic/perception/eye-ringed-glow-angry-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234175,"modifiedTime":1661791116136,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pxpb2eOB6bv4phAf","name":"Banishment","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to send one creature that you can see within range to another plane of existence. The target must succeed on a Charisma saving throw or be banished.If the target is native to the plane of existence you're on, you banish the target to a harmless demiplane. While there, the target is incapacitated. The target remains there until the spell ends, at which point the target reappears in the space it left or in the nearest unoccupied space if that space is occupied.If the target is native to a different plane of existence than the one you're on, the target is banished with a faint popping noise, returning to its home plane. If the spell ends before 1 minute has passed, the target reappears in the space it left or in the nearest unoccupied space if that space is occupied. Otherwise, the target doesn't return.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":16,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An item distasteful to the target","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.pxpb2eOB6bv4phAf"}},"img":"icons/magic/control/energy-stream-link-spiral-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234230,"modifiedTime":1661791116136,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"da0a1t2FqaTjRZGT","name":"Freedom of Movement","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a willing creature. For the Duration, the target's Movement is unaffected by difficult terrain, and Spells and other magical Effects can neither reduce the target's speed nor cause the target to be Paralyzed or Restrained.The target can also spend 5 feet of Movement to automatically escape from nonmagical restraints, such as Manacles or a creature that has it Grappled. Finally, being Underwater imposes no penalties on the target's movement or attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A leather strap, bound around the arm or a similar appendage","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.da0a1t2FqaTjRZGT"}},"img":"icons/skills/melee/strike-blade-knife-white-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234180,"modifiedTime":1661791116136,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"5e1xTohkzqFqbYH4","name":"Flame Strike","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A vertical column of divine fire roars down from the heavens in a location you specify. Each creature in a 10-foot-radius, 40-foot-high Cylinder centered on a point within range must make a Dexterity saving throw. A creature takes 4d6 fire damage and 4d6 radiant damage on a failed save, or half as much damage on a successful one.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the fire damage or the radiant damage (your choice) increases by 1d6 for each slot level above 5th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"cylinder"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","radiant"],["4d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":16,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of sulfur","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.5e1xTohkzqFqbYH4"}},"img":"icons/magic/light/beam-rays-red-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234070,"modifiedTime":1661791116136,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"JQyigMNPiDnGI18b","name":"Geas","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You place a magical command on a creature that you can see within range, forcing it to carry out some service or refrain from some action or course of activity as you decide. If the creature can understand you, it must succeed on a Wisdom saving throw or become Charmed by you for the Duration. While the creature is charmed by you, it takes 5d10 psychic damage each time it acts in a manner directly counter to your instructions, but no more than once each day. A creature that can't understand you is unaffected by the spell.You can issue any command you choose, short of an activity that would result in certain death. Should you issue a suicidal command, the spell ends.You can end the spell early by using an action to dismiss it. A Remove Curse, Greater Restoration, or wish spell also ends it.At Higher Levels. When you cast this spell using a spell slot of 7th or 8th level, the Duration is 1 year. When you cast this spell using a spell slot of 9th level, the spell lasts until it is ended by one of the Spells mentioned above.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"30","units":"day"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d10","psychic"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":16,"scaling":"spell"},"level":5,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.JQyigMNPiDnGI18b"}},"img":"icons/magic/air/air-burst-spiral-large-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234114,"modifiedTime":1661791116137,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"XzkJpE6XpZfKjODD","name":"True Seeing","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell gives the willing creature you touch the ability to see things as they actually are. For the duration, the creature has truesight, notices secret doors hidden by magic, and can see into the Ethereal Plane, all out to a range of 120 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"An ointment for the eyes that costs 25gp; is made from mushroom powder, saffron, and fat; and is consumed by the spell","consumed":true,"cost":25,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.XzkJpE6XpZfKjODD"}},"img":"icons/magic/perception/eye-ringed-glow-angry-large-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234160,"modifiedTime":1661791116137,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232621,"modifiedTime":1672596093283,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8KSVpQZyzius93ko","name":"Will-o'-Wisp","type":"npc","img":"","system":{"abilities":{"str":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":28,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":null,"tempmax":0,"formula":"9d4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":["lightning","poison"],"bypasses":[],"custom":""},"dr":{"value":["acid","bludgeoning","cold","fire","necrotic","piercing","slashing","thunder"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["grappled","paralyzed","poisoned","prone","restrained","unconscious","exhaustion"],"custom":""},"languages":{"value":[],"custom":"Languages it knew in life"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Will-o'-Wisp","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"RAnyTfj3CGaiGK3W","name":"Consume Life","type":"feat","img":"icons/magic/life/heart-glowing-red.webp","system":{"description":{"value":"As a bonus action, the will-o'-wisp can target one creature it can see within 5 ft. of it that has 0 hit points and is still alive. The target must succeed on a DC 10 Constitution saving throw against this magic or die. If the target dies, the will-o'-wisp regains 10 (3d6) hit points.The will-o'-wisp can target one creature it can see within 5 ft. The target must succeed on a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","healing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.r2nM5I77LnSvkLvD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4wbSkOyE4ZqKLPQ6","name":"Ephemeral","type":"feat","img":"icons/magic/water/orb-ice-web.webp","system":{"description":{"value":"The will-o'-wisp can't wear or carry anything.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VrPyFE3Hhjh0QjIO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MGdIOXhRAQQRrAcO","name":"Incorporeal Movement","type":"feat","img":"icons/skills/movement/feet-winged-boots-brown.webp","system":{"description":{"value":"The will-o'-wisp can move through other creatures and objects as if they were difficult terrain.It takes 5 (1d10) force damage if it ends its turn inside an object.The will-o'-wisp can move through other creatures and objects as if they were difficult terrain.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LUHmtIDD1VTreFqI"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3Sr6MrVgbTGw66Aa","name":"Variable Illumination","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"The will-o'-wisp sheds bright light in a 5- to 20-foot radius and dim light for an additional number of ft. equal to the chosen radius. The will-o'-wisp can alter the radius as a bonus action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iQGaWIinmYFPRF94"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"np6oHDOwHQFsSn5B","name":"Shock","type":"weapon","img":"icons/magic/lightning/bolt-forked-teal.webp","system":{"description":{"value":"Melee Spell Attack:+4 to hit,, 5 ft., one creature. Hit: 9 (2d8) lightning damage.The Will-o'-Wisp attacks with its Shock.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","lightning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vJR81iEOZYNMuAdz","name":"Invisibility","type":"feat","img":"icons/magic/unholy/orb-glowing-yellow-purple.webp","system":{"description":{"value":"The will-o'-wisp and its light magically become invisible until it attacks or uses its Consume Life, or until its concentration ends (as if concentrating on a spell).The will-o'-wisp and its light magically become invisible.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.dA5X2eQuOtHywpQF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232624,"modifiedTime":1672596093340,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8MD1vRBTcgSXXk3u","name":"Magmin","type":"npc","img":"","system":{"abilities":{"str":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":9,"min":0,"max":9,"temp":null,"tempmax":0,"formula":"2d6 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Neutral","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"sm","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["ignan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Magmin","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"0xdLfPJEHYwh8MIT","name":"Death Burst","type":"feat","img":"icons/magic/light/explosion-star-glow-yellow.webp","system":{"description":{"value":"When the magmin dies, it explodes in a burst of fire and magma. Each creature within 10 ft. of it must make a DC 11 Dexterity saving throw, taking 7 (2d6) fire damage on a failed save, or half as much damage on a successful one. Flammable objects that aren't being worn or carried in that area are ignited.When the magmin dies, it explodes in a burst of fire and magma. Each creature within 10 ft. of it must make a Dexterity saving throw. Flammable objects that aren't being worn or carried in that area are ignited.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":"death"},"duration":{"value":"","units":""},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.net3yBKQoxl8bZ4r"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rlA41r2MlaqmVjvf","name":"Ignited Illumination","type":"feat","img":"icons/magic/fire/explosion-mushroom-nuke-orange.webp","system":{"description":{"value":"As a bonus action, the magmin can set itself ablaze or extinguish its flames. While ablaze, the magmin sheds bright light in a 10-foot radius and dim light for an additional 10 ft.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Uvy7vla2EhYSfTl0"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"th3hfRWQ3PT9f3Gs","name":"Touch","type":"weapon","img":"icons/magic/fire/flame-burning-fist-strike.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (2d6) fire damage. The Magmin attacks with its Touch. If the target is a creature or a flammable object, it ignites. Until a target takes an action to douse the fire, the target takes 3 (1d6) fire damage at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","fire"]],"versatile":""},"formula":"1d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232626,"modifiedTime":1672596093385,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8MuL8xisavJW9bnw","name":"Giant Ape","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":157,"min":0,"max":157,"temp":0,"tempmax":0,"formula":"15d12 + 60"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":40,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":7,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Ape","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"NOajNyilBv8JIEVp","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The ape makes two fist attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"N86NeUNsfvruyJGq","name":"Fist","type":"weapon","img":"icons/magic/fire/flame-burning-fist-strike.webp","system":{"description":{"value":"\nMelee Weapon Attack:+9 to hit,, 10 ft., one target. Hit: 22 (3d10 + 6) bludgeoning damage.\nThe Giant Ape attacks with its Fist.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CVDcFc8ZcjYVl1EV","name":"Rock","type":"weapon","img":"icons/magic/earth/projectile-stone-ball-brown.webp","system":{"description":{"value":"\nRanged Weapon Attack: +9 to hit, range 50/100 ft., one target. Hit: 30 (7d6 + 6) bludgeoning damage.\nThe Giant Ape attacks with its Rock.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":50,"long":100,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["7d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":true,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232627,"modifiedTime":1672596093430,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8RgUhb31VvjUNZU1","name":"Crab","type":"npc","img":"","system":{"abilities":{"str":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":2,"min":0,"max":2,"temp":0,"tempmax":0,"formula":"1d4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":20,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Coastal","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Crab","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"gvfgesIscW0VALbY","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+0 to hit,, 5 ft., one target. Hit: 1 bludgeoning damage.\nThe Crab attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ciz8wAZjqxPnu5Pe","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The crab can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232629,"modifiedTime":1672596093471,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8SMQl75HLjhuSeau","name":"Fire Elemental","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":102,"min":0,"max":102,"temp":null,"tempmax":0,"formula":"12d10 + 36"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["grappled","paralyzed","petrified","poisoned","prone","restrained","unconscious","exhaustion"],"custom":""},"languages":{"value":["ignan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Fire Elemental","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"yud1cnEVQ9KxbmWc","name":"Fire Form","type":"feat","img":"icons/magic/earth/lava-explosion-orange.webp","system":{"description":{"value":"The elemental can move through a space as narrow as 1 inch wide without squeezing. A creature that touches the elemental or hits it with a melee attack while within 5 ft. of it takes 5 (1d10) fire damage. In addition, the elemental can enter a hostile creature's space and stop there. The first time it enters a creature's space on a turn, that creature takes 5 (1d10) fire damage and catches fire; until someone takes an action to douse the fire, the creature takes 5 (1d10) fire damage at the start of each of its turns.A creature that touches the elemental or hits it with a melee attack while within 5 ft. of it takes fire damage. In addition, the elemental can enter a hostile creature's space and stop there. The first time it enters a creature's space on a turn, that creature takes fire damage and catches fire; until someone takes an action to douse the fire, the creature takes fire damage at the start of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.0YuGSS8E8ElHLRyb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iQt3J3ZnHDoeaEIR","name":"Illumination","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"The elemental sheds bright light in a 30-foot radius and dim light in an additional 30 ft..","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.F3gzBbCW7U14zkBF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AW3qP6nJk45lOHe3","name":"Water Susceptibility","type":"feat","img":"icons/magic/water/pseudopod-swirl-blue.webp","system":{"description":{"value":"For every 5 ft. the elemental moves in water, or for every gallon of water splashed on it, it takes 1 cold damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.5V7SCABXvIbnk2Zn"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PRiFJLZbvIt2nkTk","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The elemental makes two touch attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fdt2FIirmBRCpRBm","name":"Touch","type":"weapon","img":"icons/magic/fire/flame-burning-fist-strike.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 5 (1d10) fire damage at the start of each of its turns.The Fire Elemental attacks with its Touch. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes fire damage at the start of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6+@mod","fire"]],"versatile":""},"formula":"1d10","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232630,"modifiedTime":1672596093514,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8VXxqeBvN54rPh81","name":"Giant Weasel","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":9,"min":0,"max":9,"temp":0,"tempmax":0,"formula":"2d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.125,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Weasel","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"MWoEhaUMfZJAQH2R","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The weasel has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BrbVh5Sx3clXLHIi","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage.\nThe Giant Weasel attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232632,"modifiedTime":1672596093551,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8aCTKP5qaBPFOqxM","name":"Crocodile","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":19,"min":0,"max":19,"temp":0,"tempmax":0,"formula":"3d10 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Swamp","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Crocodile","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"L0k8pFgKxxEEMEOY","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 7 (1d10 + 2) piercing damage.\nThe target is grappled (escape DC 12). Until this grapple ends, the target is restrained, and the crocodile can't bite another target.\n\nThe Crocodile attacks with its Bite. If successful, the target is grappled. Until this grapple ends, the target is restrained, and the crocodile can't bite another target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vuDMChx74s6CMCab","name":"Hold Breath","type":"feat","img":"icons/magic/water/pseudopod-swirl-blue.webp","system":{"description":{"value":"The crocodile can hold its breath for 15 minutes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lwC6jwy9bXberyWo"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232633,"modifiedTime":1672596093588,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8ihbbjkaOFTPbI73","name":"Swarm of Rats","type":"npc","img":"","system":{"abilities":{"str":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":24,"min":0,"max":24,"temp":0,"tempmax":0,"formula":"7d8 - 7"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":30,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"tiny","custom":""},"environment":"Swamp","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","grappled","paralyzed","petrified","prone","restrained","stunned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Swarm of Rats","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"EsvdwAvnKR0SGP6R","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The swarm has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ARmqveDkUL48Hupc","name":"Swarm","type":"feat","img":"icons/creatures/invertebrates/fly-wasp-mosquito-green.webp","system":{"description":{"value":"The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny rat. The swarm can't regain hit points or gain temporary hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eL3OJmc4FuetizKO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ESv9NuVeZhnEW1ua","name":"Bites","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+2 to hit,, 0 ft., one target in the swarm's space. Hit: 7 (2d6) piercing damage, or 3 (1d6) piercing damage if the swarm has half of its hit points or fewer.\nThe Swarm of Rats attacks with a flurry of Bites.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","piercing"]],"versatile":"1d6"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232635,"modifiedTime":1672596093627,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8pX2JhWUpTNNRBVx","name":"Gibbering Mouther","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":9,"calc":"natural","formula":""},"hp":{"value":67,"min":0,"max":67,"temp":0,"tempmax":0,"formula":"9d8 + 27"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":10,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"aberration","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["prone"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Gibbering Mouther","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"yxlzyXTpsEf4QiI9","name":"Aberrant Ground","type":"feat","img":"icons/magic/air/wind-tornado-funnel-damage-blue.webp","system":{"description":{"value":"The ground in a 10-foot radius around the mouther is doughlike difficult terrain. Each creature that starts its turn in that area must succeed on a DC 10 Strength saving throw or have its speed reduced to 0 until the start of its next turn.The ground in a 10-foot radius around the mouther is doughlike difficult terrain. make a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":10,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KoBGbIkb2tMZv0ch"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SzwWnAgr25vDeHKu","name":"Gibbering","type":"feat","img":"icons/skills/toxins/cup-goblet-poisoned-spilled.webp","system":{"description":{"value":"The mouther babbles incoherently while it can see any creature and isn't incapacitated. Each creature that starts its turn within 20 feet of the mouther and can hear the gibbering must succeed on a DC 10 Wisdom saving throw. On a failure, the creature can't take reactions until the start of its next turn and rolls a d8 to determine what it does during its turn. On a 1 to 4, the creature does nothing. On a 5 or 6, the creature takes no action or bonus action and uses all its movement to move in a randomly determined direction. On a 7 or 8, the creature makes a melee attack against a randomly determined creature within its reach or does nothing if it can't make such an attack.The mouther babbles incoherently while it can see any creature. Each creature that starts its turn within 20 feet of the mouther and can hear the gibbering must succeed on a Wisdom saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d8","save":{"ability":"wis","dc":10,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.dPPLbo3Unu3TqZrs"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qlBBeTku9uoaEv8G","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The gibbering mouther makes one bite attack and, if it can, uses its Blinding Spittle.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lfUDtJ8hdeULQzqa","name":"Bites","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+2 to hit,, 5 ft., one creature. Hit: 17 (5d6) piercing damage. If the target is Medium or smaller, it must succeed on a DC 10 Strength saving throw or be knocked prone. If the target is killed by this damage, it is absorbed into the mouther.The Gibbering Mouther attacks with its Bites. If the target is Medium or smaller, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d6","piercing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":10,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KQRvDGowc6ihejLu","name":"Blinding Spittle","type":"feat","img":"icons/magic/nature/root-vine-thorned-fire-purple.webp","system":{"description":{"value":"The mouther spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact. Each creature within 5 feet of the flash must succeed on a DC 13 Dexterity saving throw or be blinded until the end of the mouther's next turn.The mouther spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact. Each creature within 5 feet of the flash must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.0awyZX05OnVLF4k2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232636,"modifiedTime":1672596093670,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8xhuJXYMnlQD7LF6","name":"Satyr","type":"npc","img":"","system":{"abilities":{"str":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":31,"min":0,"max":31,"temp":0,"tempmax":0,"formula":"7d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Neutral","race":"","type":{"value":"fey","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","elvish","sylvan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":2,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Satyr","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"bAm4BNi3o137SAmd","name":"Shortbow","type":"weapon","img":"icons/weapons/bows/shortbow-recurve.webp","system":{"description":{"value":"This two handed bow is somewhat smaller than the traditional longbow variant, making it well suited for rapid attacks while on the move or mounted from horseback.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.GJv6WkD7D2J6rP6M"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"198fJNFbhjGeZ8UZ","name":"Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"A medium sized blade with a firm crossguard and a leather-wrapped handle. A versatile weapon which makes up in versatility what it lacks in reach.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.osLzOwQdPtrK3rQH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vd2pvVVxaLhqrWqe","name":"Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jgHhzAjFiPXlluVM","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The satyr has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2btvWgv8WIkadZjh","name":"Ram","type":"weapon","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 6 (2d4 + 1) bludgeoning damage.The Satyr attacks with its Ram.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232638,"modifiedTime":1672596093716,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9bHoR8k5D2DKHaF3","name":"Giant Eagle","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":26,"min":0,"max":26,"temp":0,"tempmax":0,"formula":"4d10 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Good","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"Giant Eagle; Common and Auran (understands but cannot speak)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Eagle","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"qOh4l0rSZlQOEhyc","name":"Keen Sight","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The eagle has advantage on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QaRbm71tWEQzR4GK","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The eagle makes two attacks: one with its beak and one with its talons.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vyI1tbobhrYMxj76","name":"Beak","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\nThe Giant Eagle attacks with its Beak.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sh91NilUd5bUZyiG","name":"Talons","type":"weapon","img":"icons/creatures/claws/claw-scaled-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\nThe Giant Eagle attacks with its Talons.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232640,"modifiedTime":1672596093761,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9g4N9sjyh8Ql46to","name":"Hill Giant","type":"npc","img":"","system":{"abilities":{"str":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":105,"min":0,"max":105,"temp":0,"tempmax":0,"formula":"10d12 + 40"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"giant","subtype":"","swarm":"","custom":""},"environment":"Hill","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["giant"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Hill Giant","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"1k58ryEYEYijhYOb","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The giant makes two greatclub attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"250gOq5bpqIHb7rw","name":"Greatclub","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"Melee Weapon Attack:+8 to hit,, 10 ft., one target. Hit: 18 (3d8 + 5) bludgeoning damage.The Hill Giant attacks with its Greatclub.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QRCsxkCwWNwswL9o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lpyNJHYnhFtpLgo9","name":"Rock","type":"weapon","img":"icons/magic/earth/projectile-stone-ball-brown.webp","system":{"description":{"value":"Ranged Weapon Attack: +8 to hit, range 60/240 ft., one target. Hit: 21 (3d10 + 5) bludgeoning damage.The Hill Giant attacks with its Rock.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":240,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232641,"modifiedTime":1672596093803,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9ggQBmAKXraOtz7S","name":"Bearded Devil","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":52,"min":0,"max":52,"temp":null,"tempmax":0,"formula":"8d8 + 16"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"Devil","swarm":"","custom":""},"environment":"","cr":3,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["infernal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Bearded Devil","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"xt4Cm1tg8Xfodhdt","name":"Devil's Sight","type":"feat","img":"icons/magic/perception/eye-slit-pink.webp","system":{"description":{"value":"Magical darkness doesn't impede the devil's Darkvision.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"u1abloZz4RhCI9rk","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The devil has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PIggvpkBTTCDGOHp","name":"Steadfast","type":"feat","img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","system":{"description":{"value":"The devil can't be frightened while it can see an allied creature within 30 feet of it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4N7S29kDROQ932pG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ndwCjJFBLTujojCl","name":"Beard","type":"weapon","img":"icons/creatures/tentacles/tentacles-thing-green.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage.\nThe target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. While poisoned in this way, the target can't regain hit points. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe Bearded Devil attacks with its Beard. The target must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":12,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RgZ4lGrNf9AaIyrG","name":"Glaive","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 10 ft., one target. Hit: 8 (1d10 + 3) slashing damage.\nIf the target is a creature other than an undead or a construct, it must succeed on a DC 12 Constitution saving throw or lose 5 (1d10) hit points at the start of each of its turns due to an infernal wound.\nEach time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 5 (1d10). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.\n\nThe Bearded Devil attacks with its Glaive. If the target is a creature other than an undead or a construct, it must make a Constitution saving throw. Any creature can take an action to stanch the wound with a successful Wisdom (Medicine) check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","slashing"]],"versatile":""},"formula":"1d10","save":{"ability":"con","dc":12,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"hvy":true,"two":true,"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.rOG1OM2ihgPjOvFW"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iRRniNGmcgkUi4oH","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The devil makes two attacks: one with its beard and one with its glaive.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232643,"modifiedTime":1672596093849,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"AJiJW7K957aJJCN6","name":"Blood Hawk","type":"npc","img":"","system":{"abilities":{"str":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":7,"min":0,"max":7,"temp":0,"tempmax":0,"formula":"2d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":0.125,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Blood Hawk","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"TePImx0XTnaVC3HB","name":"Keen Sight","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The hawk has advantage on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"abil","attackBonus":"","chatFlavor":"The hawk focuses its gaze!","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"2d20kh + @skills.prc.total","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"H3wZQRau9dswB1Fr","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The hawk has advantage on an attack roll against a creature if at least one of the hawk's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Jt0l1S2jZWGIiXjE","name":"Beak","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\nThe Blood Hawk attacks with its Beak.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232645,"modifiedTime":1672596093892,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"AOJvmk1IchxNxQzP","name":"Giant Crab","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":13,"min":0,"max":13,"temp":0,"tempmax":0,"formula":"3d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Coastal","cr":0.125,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Crab","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"NsbkrfEUPw2pbRZ3","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The crab can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7qDtYuaBNQ3zOnBC","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage.\nThe target is grappled (escape DC 11). The crab has two claws, each of which can grapple only one target.\n\nThe Giant Crab attacks with its Claw. The target is grappled.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232647,"modifiedTime":1672596093929,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"AijNdqMurWxDxUSl","name":"Panther","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":13,"min":0,"max":13,"temp":0,"tempmax":0,"formula":"3d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":40,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Panther","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"vS7OqBXfpfbsx5Rh","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The panther has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6UmjtTyihpEERg1I","name":"Pounce","type":"feat","img":"icons/creatures/claws/claw-talons-glowing-orange.webp","system":{"description":{"value":"If the panther moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a DC 12 Strength saving throw or be knocked prone. If the target is prone, the panther can make one bite attack against it as a bonus action.If the panther moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must make a Strength saving throw. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":12,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.MqAVplIArAKzpnXB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"c7iYo6g3A6DP8V4w","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.The Panther attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"t4bERcqBVDvjJ2gx","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 4 (1d4 + 2) slashing damage.The Panther attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232648,"modifiedTime":1672596093969,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"AnseLn7HwuP97grf","name":"Bone Devil","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":142,"min":0,"max":142,"temp":null,"tempmax":0,"formula":"15d10 + 60"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":40,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"Devil","swarm":"","custom":""},"environment":"","cr":9,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["infernal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Bone Devil","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"KjxsSFx9xv2HLtMX","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 10 ft., one target. Hit: 8 (1d8 + 4) slashing damage.\nThe Bone Devil attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"rch":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iFHGL8wlqBtZAdHr","name":"Sting","type":"weapon","img":"icons/creatures/abilities/fang-tooth-venomous.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 10 ft., one target. Hit: 13 (2d8 + 4) piercing damage plus 17 (5d6) poison damage.\nThe target must succeed on a DC 14 Constitution saving throw or become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success .\n\nThe Bone Devil attacks with its Sting. the target must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success .","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","piercing"],["5d6","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"rch":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"aj4Bg2H8CNydNhMB","name":"Devil Sight","type":"feat","img":"icons/magic/perception/eye-slit-pink.webp","system":{"description":{"value":"Magical darkness doesn't impede the devil's Darkvision.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.UjbgbOnd6ltjagZm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hQXiIJrlHh2rb2k9","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The devil has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sC1dqjfFZKnDmhec","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The devil makes three attacks: two with its claws and one with its sting.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232650,"modifiedTime":1672596094012,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Aw2wmqGIatxe2ImI","name":"Cloud Giant","type":"npc","img":"","system":{"abilities":{"str":{"value":27,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":22,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":200,"min":0,"max":200,"temp":0,"tempmax":0,"formula":"16d12 + 96"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Good Evil(50%) or Neutral Evil(50%)","race":"","type":{"value":"giant","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":9,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","giant"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Cloud Giant","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"4xg2sYoD5Z4lRmkT","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The giant has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WFfPQjdkfYdIIiZT","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The giant's innate spellcasting ability is Charisma. It can innately cast the following spells, requiring no material components:\nAt will: detect magic, fog cloud, light\n3/day each: feather fall, fly, misty step, telekinesis\n1/day each: control weather, gaseous form","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pH1i4SwsZRV3rq3v","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The giant makes two morningstar attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Jr0CfxY8xuFT6hoa","name":"Morningstar","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"\nMelee Weapon Attack:+12 to hit,, 10 ft., one target. Hit: 21 (3d8 + 8) piercing damage.\nThe Cloud Giant attacks with its Morningstar.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":40,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.dX8AxCh9o0A9CkT3"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NXgSHbDNtVbxsItU","name":"Rock","type":"weapon","img":"icons/magic/earth/projectile-stone-ball-brown.webp","system":{"description":{"value":"\nRanged Weapon Attack: +12 to hit, range 60/240 ft., one target. Hit: 30 (4d10 + 8) bludgeoning damage.\nThe Cloud Giant attacks with its Rock.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":240,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"improv","baseItem":"","properties":{"amm":true,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116159,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"IBJmWjzbQGu7M4UX","name":"Fog Cloud","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a 20-foot-radius Sphere of fog centered on a point within range. The sphere spreads around corners, and its area is heavily obscured. It lasts for the Duration or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the radius of the fog increases by 20 feet for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.IBJmWjzbQGu7M4UX"}},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234109,"modifiedTime":1661791116159,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Bnn9Nzajixvow9xi","name":"Light","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":15,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A firefly or phosphorescent moss.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Bnn9Nzajixvow9xi"}},"img":"icons/magic/light/explosion-star-small-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234093,"modifiedTime":1661791116160,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pub0OWVEB71XQx1n","name":"Feather Fall","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose up to five falling creatures within range. A falling creature's rate of descent slows to 60 feet per round until the spell ends. If the creature lands before the spell ends, it takes no falling damage and can land on its feet, and the spell ends for that creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":"which you take when you or a creature within 60 feet of you falls"},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small feather or piece of down","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.pub0OWVEB71XQx1n"}},"img":"icons/magic/air/wind-swirl-pink-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234229,"modifiedTime":1661791116160,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"yfbK8gZqESlaoY5t","name":"Fly","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a willing creature. The target gains a flying speed of 60 feet for the Duration. When the spell ends, the target falls if it is still aloft, unless it can stop the fall.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A wing feather from any bird","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.yfbK8gZqESlaoY5t"}},"img":"icons/magic/control/energy-stream-link-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234243,"modifiedTime":1661791116160,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"wqfAVANuQonNBgnL","name":"Misty Step","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Briefly surrounded by silvery mist, you teleport up to 30 feet to an unoccupied space that you can see.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"space"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.wqfAVANuQonNBgnL"}},"img":"icons/magic/control/debuff-energy-snare-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234238,"modifiedTime":1661791116160,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"HQfd7jJyULIoGxrZ","name":"Telekinesis","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You gain the ability to move or manipulate creatures or objects by thought. When you cast the spell, and as your action each round for the Duration, you can exert your will on one creature or object that you can see within range, causing the appropriate effect below. You can affect the same target round after round, or choose a new one at any time. If you switch targets, the prior target is no longer affected by the spell.Creature. You can try to move a Huge or smaller creature. Make an ability check with your spellcasting ability contested by the creature's Strength check. If you win the contest, you move the creature up to 30 feet in any direction, including upward but not beyond the range of this spell. Until the end of your next turn, the creature is Restrained in your telekinetic grip. A creature lifted upward is suspended in mid-air.On subsequent rounds, you can use your action to attempt to maintain your telekinetic grip on the creature by repeating the contest.Object. You can try to move an object that weighs up to 1,000 pounds. If the object isn't being worn or carried, you automatically move it up to 30 feet in any direction, but not beyond the range of this spell.If the object is worn or carried by a creature, you must make an ability check with your Spellcasting ability contested by that creature's Strength check. If you succeed, you pull the object away from that creature and can move it up to 30 feet in any direction but not beyond the range of this spell.You can exert fine control on Objects with your telekinetic grip, such as manipulating a simple tool, opening a door or a container, stowing or retrieving an item from an open container, or pouring the contents from a vial.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.HQfd7jJyULIoGxrZ"}},"img":"icons/magic/control/debuff-energy-hold-levitate-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234107,"modifiedTime":1661791116161,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ZPd73HtKF3At11jh","name":"Control Weather","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You take control of the weather within 5 miles of you for the duration. You must be outdoors to cast this spell. Moving to a place where you don't have a clear path to the sky ends the spell early.When you cast the spell, you change the current weather conditions, which are determined by the DM based on the climate and season. You can change precipitation, temperature, and wind. It takes 1d4 x 10 minutes for the new conditions to take effect. Once they do so, you can change the conditions again. When the spell ends, the weather gradually returns to normal.When you change the weather conditions, find a current condition on the following tables and change its stage by one, up or down. When changing the wind, you can change its direction.Conditions\n\nClear\nLight clouds\nOvercast or ground fog\nRain, hail, or snow\nTorrential rain, driving hail, or blizzard\n\nTemperature\n\nUnbearable heat\nHot\nWarm\nCool\nCold\nArctic cold\n\nWind\n\nCalm\nModerate wind\nStrong wind\nGale\nStorm\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":5,"width":null,"units":"mi","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Burning incense and bits of earth and wood mixed in water.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ZPd73HtKF3At11jh"}},"img":"icons/magic/air/wind-tornado-cyclone-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234163,"modifiedTime":1661791116162,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"2IWiZAJtOGDoKjiz","name":"Gaseous Form","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You transform a willing creature you touch, along with everything it's wearing and carrying, into a misty cloud for the duration. The spell ends if the creature drops to 0 hit points. An incorporeal creature isn't affected.While in this form, the target's only method of movement is a flying speed of 10 feet. The target can enter and occupy the space of another creature. The target has resistance to nonmagical damage, and it has advantage on Strength, Dexterity, and Constitution saving throws. The target can pass through small holes, narrow openings, and even mere cracks, though it treats liquids as though they were solid surfaces. The target can't fall and remains hovering in the air even when stunned or otherwise incapacitated.While in the form of a misty cloud, the target can't talk or manipulate objects, and any objects it was carrying or holding can't be dropped, used, or otherwise interacted with. The target can't attack or cast spells.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of gauze and a wisp of smoke","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.2IWiZAJtOGDoKjiz"}},"img":"icons/magic/air/fog-gas-smoke-dense-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234058,"modifiedTime":1661791116162,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232651,"modifiedTime":1672596094113,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"AyvniEKtyroOe83p","name":"Copper Dragon Wyrmling","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":16,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"4d8 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":60,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["acid"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Copper Dragon Wyrmling","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"BQZkHEsVvkPuGJKq","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.The Copper Dragon Wyrmling attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6mcnEM9hUPlfUT9x","name":"Breath Weapons","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Acid Breath.** The dragon exhales acid in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 18 (4d8) acid damage on a failed save, or half as much damage on a successful one.\n**Slowing Breath.** The dragon exhales gas in a 1 5-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xwWjmumhVKXd0vQM","name":"Acid Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\n**Acid Breath.** The dragon exhales acid in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 18 (4d8) acid damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales acid in an 20-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8","acid"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zjcGly9P3Gn9MXt7"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FNphFmvaLB9QD8Ta","name":"Slowing Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\n**Slowing Breath.** The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n\nThe dragon exhales gas in a 15-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JRy507rS9wxT3GBh"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232654,"modifiedTime":1672596094176,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"B7lBOr1AahNZs4a6","name":"Archmage","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":99,"min":0,"max":99,"temp":null,"tempmax":0,"formula":"18d8 + 18"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"int"},"details":{"biography":{"value":"","public":""},"alignment":"","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"","cr":12,"spellLevel":18,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":"damage from spells"},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"(Any 6 Languages)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":2,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":2,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":4,"override":null},"spell2":{"value":3,"override":null},"spell3":{"value":3,"override":null},"spell4":{"value":3,"override":null},"spell5":{"value":3,"override":null},"spell6":{"value":1,"override":null},"spell7":{"value":1,"override":null},"spell8":{"value":1,"override":null},"spell9":{"value":1,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Archmage","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"gSrKQbka5aLxlcJz","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"\nThe archmage is an 18th-level spellcaster. Its spellcasting ability is Intelligence (spell save DC 17, +9 to hit with spell attacks). The archmage can cast disguise self and invisibility at will and has the following wizard spells prepared:\n• Cantrips (at will): fire bolt, light, mage hand, prestidigitation, shocking grasp\n• 1st level (4 slots): detect magic, identify, mage armor*, magic missile\n• 2nd level (3 slots): detect thoughts, mirror image, misty step\n• 3rd level (3 slots): counterspell,fly, lightning bolt\n• 4th level (3 slots): banishment, fire shield, stoneskin*\n• 5th level (3 slots): cone of cold, scrying, wall of force\n• 6th level (1 slot): globe of invulnerability\n• 7th level (1 slot): teleport\n• 8th level (1 slot): mind blank*\n• 9th level (1 slot): time stop* \n*-The archmage casts these spells on itself before combat.\n\nThe archmage is an spellcaster. Its spellcasting ability is Intelligence.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Wa6dckSFp3pY8yH5","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The archmage has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vgTunE3gLps5Q595","name":"Dagger","type":"weapon","img":"icons/weapons/daggers/dagger-jeweled-purple.webp","system":{"description":{"value":"\nMelee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\nThe Archmage attacks with their Dagger.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.0E565kQUBmndJ1a2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EOmsUcFQJTfG2oio","name":"Fire Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You hurl a mote of fire at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried.This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.EOmsUcFQJTfG2oio"}},"img":"icons/magic/fire/projectile-fireball-smoke-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234100,"modifiedTime":1661791116187,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Bnn9Nzajixvow9xi","name":"Light","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":17,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A firefly or phosphorescent moss.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Bnn9Nzajixvow9xi"}},"img":"icons/magic/light/explosion-star-small-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234093,"modifiedTime":1661791116188,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Utk1OQRwYkMkFRD3","name":"Mage Hand","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.The hand can't attack, activate magic items, or carry more than 10 pounds.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Utk1OQRwYkMkFRD3"}},"img":"icons/magic/water/water-hand.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234148,"modifiedTime":1661791116188,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"udsLtG0BugXHR2JQ","name":"Prestidigitation","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell is a minor magical trick that novice spellcasters use for practice. You create one of the following magical effects within range:\n\nYou create an instantaneous, harmless sensory effect, such as a shower of sparks, a puff of wind, faint musical notes, or an odd odor.\nYou instantaneously light or snuff out a candle, a torch, or a small campfire.\nYou instantaneously clean or soil an object no larger than 1 cubic foot.\nYou chill, warm, or flavor up to 1 cubic foot of nonliving material for 1 hour.\nYou make a color, a small mark, or a symbol appear on an object or a surface for 1 hour.\nYou create a nonmagical trinket or an illusory image that can fit in your hand and that lasts until the end of your next turn.\n\nIf you cast this spell multiple times, you can have up to three of its non-instantaneous effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.udsLtG0BugXHR2JQ"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234236,"modifiedTime":1661791116188,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"XvbiNhNqXXIFisIy","name":"Shocking Grasp","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Lightning springs from your hand to deliver a shock to a creature you try to touch. Make a melee spell attack against the target. You have advantage on the attack roll if the target is wearing armor made of metal. On a hit, the target takes 1d8 lightning damage, and it can't take reactions until the start of its next turn.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","lightning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.XvbiNhNqXXIFisIy"}},"img":"icons/magic/lightning/bolt-forked-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234159,"modifiedTime":1661791116189,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116189,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"3OZnNhunvRtPOQmH","name":"Identify","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You choose one object that you must touch throughout the casting of the spell. If it is a magic item or some other magic-imbued object, you learn its properties and how to use them, whether it requires attunement to use, and how many charges it has, if any. You learn whether any spells are affecting the item and what they are. If the item was created by a spell, you learn which spell created it.If you instead touch a creature throughout the casting, you learn what spells, if any, are currently affecting it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A pearl worth at least 100gp and an owl feather","consumed":false,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.3OZnNhunvRtPOQmH"}},"img":"icons/magic/light/explosion-star-small-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234064,"modifiedTime":1661791116189,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"CKZTpZlxj7hjjo2H","name":"Mage Armor","type":"spell","img":"icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp","system":{"description":{"value":"You touch a willing creature who isn't wearing armor, and a protective magical force surrounds it until the spell ends. The target's base AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor or if you dismiss the spell as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A piece of cured leather","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"cfwMU7LuOJ619Lny","changes":[{"key":"system.attributes.ac.calc","value":"mage","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp","label":"Mage Armor","origin":"Compendium.dnd5e.spells.CKZTpZlxj7hjjo2H","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.CKZTpZlxj7hjjo2H"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234095,"modifiedTime":1661791116190,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"41JIhpDyM9Anm7cs","name":"Magic Missile","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create three glowing darts of magical force. Each dart hits a creature of your choice that you can see within range. A dart deals 1d4 + 1 force damage to its target. The darts all strike simultaneously, and you can direct them to hit one creature or several.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the spell creates one more dart for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + 1","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.41JIhpDyM9Anm7cs"}},"img":"icons/magic/fire/projectile-meteor-salvo-light-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234065,"modifiedTime":1661791116192,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ppWAAEul0QHtm4er","name":"Detect Thoughts","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you can read the thoughts of certain creatures. When you cast the spell and as your action on each turn until the spell ends, you can focus your mind on any one creature that you can see within 30 feet of you. If the creature you choose has an Intelligence of 3 or lower or doesn't speak any language, the creature is unaffected.You initially learn the surface thoughts of the creature—what is most on its mind in that moment. As an action, you can either shift your attention to another creature's thoughts or attempt to probe deeper into the same creature's mind. If you probe deeper, the target must make a Wisdom saving throw. If it fails, you gain insight into its reasoning (if any), its emotional state, and something that looms large in its mind (such as something it worries over, loves, or hates). If it succeeds, the spell ends. Either way, the target knows that you are probing into its mind, and unless you shift your attention to another creature's thoughts, the creature can use its action on its turn to make an Intelligence check contested by your Intelligence check; if it succeeds, the spell ends.Questions verbally directed at the target creature naturally shape the course of its thoughts, so this spell is particularly effective as part of an interrogation.You can also use this spell to detect the presence of thinking creatures you can't see. When you cast the spell or as your action during the duration, you can search for thoughts within 30 feet of you. The spell can penetrate barriers, but 2 feet of rock, 2 inches of any metal other than lead, or a thin sheet of lead blocks you. You can't detect a creature with an Intelligence of 3 or lower or one that doesn't speak any language.Once you detect the presence of a creature in this way, you can read its thoughts for the rest of the duration as described above, even if you can't see it, but it must still be within range.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A copper piece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ppWAAEul0QHtm4er"}},"img":"icons/magic/light/explosion-star-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234229,"modifiedTime":1661791116192,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"X4c8xCkmF8U9HUMz","name":"Mirror Image","type":"spell","img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","system":{"description":{"value":"Three illusory duplicates of yourself appear in your space. Until the spell ends, the duplicates move with you and mimic your actions, shifting position so it's impossible to track which image is real. You can use your action to dismiss the illusory duplicates.\nEach time a creature targets you with an attack during the spell's duration, roll a [[/r 1d20 # Mirror Image Check]] to determine whether the attack instead targets one of your duplicates.\nIf you have three duplicates, you must roll a 6 or higher to change the attack's target to a duplicate. With two duplicates, you must roll an 8 or higher. With one duplicate, you must roll an 11 or higher.\nA duplicate's AC equals 10 + your Dexterity modifier. If an attack hits a duplicate, the duplicate is destroyed. A duplicate can be destroyed only by an attack that hits it. It ignores all other damage and effects. The spell ends when all three duplicates are destroyed.\nA creature is unaffected by this spell if it can't see, if it relies on senses other than sight, such as blindsight, or if it can perceive illusions as false, as with truesight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d20","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.X4c8xCkmF8U9HUMz"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234155,"modifiedTime":1661791116193,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"wqfAVANuQonNBgnL","name":"Misty Step","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Briefly surrounded by silvery mist, you teleport up to 30 feet to an unoccupied space that you can see.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"space"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.wqfAVANuQonNBgnL"}},"img":"icons/magic/control/debuff-energy-snare-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234238,"modifiedTime":1661791116193,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Ek45cBpVXvJdv1Qy","name":"Counterspell","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to interrupt a creature in the process of casting a spell. If the creature is casting a spell of 3rd level or lower, its spell fails and has no effect. If it is casting a spell of 4th level or higher, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a success, the creature's spell fails and has no effect.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the interrupted spell has no effect if its level is less than or equal to the level of the spell slot you used.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":"which you take when you see a creature within 60 feet of you casting a spell"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d20 + @mod","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":false,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Ek45cBpVXvJdv1Qy"}},"img":"icons/skills/melee/strike-blade-hooked-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234102,"modifiedTime":1661791116193,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"yfbK8gZqESlaoY5t","name":"Fly","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a willing creature. The target gains a flying speed of 60 feet for the Duration. When the spell ends, the target falls if it is still aloft, unless it can stop the fall.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A wing feather from any bird","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.yfbK8gZqESlaoY5t"}},"img":"icons/magic/control/energy-stream-link-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234243,"modifiedTime":1661791116194,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"IyikgTEOTv701jgQ","name":"Lightning Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A stroke of lightning forming a line 100 feet long and 5 feet wide blasts out from you in a direction you choose. Each creature in the line must make a Dexterity saving throw. A creature takes 8d6 lightning damage on a failed save, or half as much damage on a successful one.The lightning ignites flammable objects in the area that aren't being worn or carried.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d6","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":17,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of fur and a rod of amber, crystal, or glass","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.IyikgTEOTv701jgQ"}},"img":"icons/magic/lightning/bolt-forked-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234110,"modifiedTime":1661791116194,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pxpb2eOB6bv4phAf","name":"Banishment","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to send one creature that you can see within range to another plane of existence. The target must succeed on a Charisma saving throw or be banished.If the target is native to the plane of existence you're on, you banish the target to a harmless demiplane. While there, the target is incapacitated. The target remains there until the spell ends, at which point the target reappears in the space it left or in the nearest unoccupied space if that space is occupied.If the target is native to a different plane of existence than the one you're on, the target is banished with a faint popping noise, returning to its home plane. If the spell ends before 1 minute has passed, the target reappears in the space it left or in the nearest unoccupied space if that space is occupied. Otherwise, the target doesn't return.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":17,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An item distasteful to the target","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.pxpb2eOB6bv4phAf"}},"img":"icons/magic/control/energy-stream-link-spiral-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234230,"modifiedTime":1661791116194,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"avD5XUtkBPQQR97c","name":"Fire Shield","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Thin and wispy flames wreathe your body for the Duration, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. You can end the spell early by using an action to dismiss it.\nThe flames provide you with a warm shield or a chill shield, as you choose. The warm shield grants you Resistance to cold damage, and the chill shield grants you resistance to fire damage.\nIn addition, whenever a creature within 5 feet of you hits you with a melee Attack, the shield erupts with flame. The attacker takes 2d8 fire damage from a warm shield, or 2d8 cold damage from a cold shield.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of phosphorus or a firefly","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.avD5XUtkBPQQR97c"}},"img":"icons/magic/defensive/shield-barrier-flaming-pentagon-red.webp","effects":[{"_id":"lVKx8swB08jm6IFE","flags":{},"changes":[{"key":"system.traits.dr.value","value":"cold","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":600,"rounds":null,"turns":null,"startRound":null,"startTurn":null,"combat":null},"icon":"icons/magic/defensive/shield-barrier-flaming-pentagon-red.webp","label":"Warm Shield","origin":"Item.OtcTsffCQaOFkr9K","tint":null,"transfer":true,"sort":0},{"_id":"UUXwEKSPX4nYfDzo","flags":{},"changes":[{"key":"system.traits.dr.value","value":"fire","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":600,"rounds":null,"turns":null,"startRound":null,"startTurn":null,"combat":null},"icon":"icons/magic/defensive/shield-barrier-flaming-pentagon-blue.webp","label":"Chill Shield","origin":"Item.OtcTsffCQaOFkr9K","tint":null,"transfer":true,"sort":0}],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234170,"modifiedTime":1661791116195,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ReMbjfeOKoSj3O79","name":"Stoneskin","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell turns the flesh of a willing creature you touch as hard as stone. Until the spell ends, the target has resistance to nonmagical bludgeoning, piercing, and slashing damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Diamond dust worth 100 gp, which the spell consumes","consumed":true,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ReMbjfeOKoSj3O79"}},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","effects":[{"label":"Stoneskin","icon":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","origin":"Compendium.dnd5e.spells.ReMbjfeOKoSj3O79","duration":{"startTime":null,"seconds":3600,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":true,"_id":"cSVCA9h5OEo5lfBE","changes":[{"key":"system.traits.dr.value","mode":2,"value":"bludgeoning","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"piercing","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"slashing","priority":null},{"key":"system.traits.dr.bypasses","mode":2,"value":"mgc","priority":null}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234137,"modifiedTime":1661791116195,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"RpKjTlYASrfqUPVA","name":"Cone of Cold","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A blast of cold air erupts from your hands. Each creature in a 60-foot cone must make a Constitution saving throw. A creature takes 8d8 cold damage on a failed save, or half as much damage on a successful one.A creature killed by this spell becomes a frozen statue until it thaws.Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d8","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":17,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small crystal or glass cone","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.RpKjTlYASrfqUPVA"}},"img":"icons/magic/water/projectiles-ice-faceted-shard-salvo-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234138,"modifiedTime":1661791116195,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"fVbCxFRaORalHB20","name":"Scrying","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You can see and hear a particular creature you choose that is on the same plane of existence as you. The target must make a Wisdom saving throw, which is modified by how well you know the target and the sort of physical connection you have to it. If a target knows you're casting this spell, it can fail the saving throw voluntarily if it wants to be observed.\n\n\n\nKnowledge\nSave Modifier\n\n\nSecondhand (you have heard of the target)\n+5\n\n\nFirsthand (you have met the target)\n+0\n\n\nFamiliar (you know the target well)\n-5\n\n\n\n\n\n\n\nConnection\nSave Modifier\n\n\nLikeness or picture\n-2\n\n\nPossession or garment\n-4\n\n\nBody part, lock of hair, bit of nail, or the like\n-10\n\n\n\nOn a successful save, the target isn't affected, and you can't use this spell against it again for 24 hours.On a failed save, the spell creates an Invisible sensor within 10 feet of the target. You can see and hear through the sensor as if you were there. The sensor moves with the target, remaining within 10 feet of it for the Duration. A creature that can see Invisile Objects sees the sensor as a luminous orb about the size of your fist.Instead of targeting a creature, you can choose a location you have seen before as the target of this spell. When you do, the sensor appears at that location and doesn't move.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A focus worth at least 1,000 gp, such as a crystal ball, a silver mirror, or a font filled with holy water.","consumed":false,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.fVbCxFRaORalHB20"}},"img":"icons/magic/perception/eye-ringed-glow-angry-large-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234189,"modifiedTime":1661791116198,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"o9ZCvuD2B1OTcubb","name":"Wall of Force","ownership":{"default":0},"type":"spell","system":{"description":{"value":"An invisible wall of force springs into existence at a point you choose within range. The wall appears in any orientation you choose, as a horizontal or vertical barrier or at an angle. It can be free floating or resting on a solid surface. You can form it into a hemispherical dome or a sphere with a radius of up to 10 feet, or you can shape a flat surface made up of ten 10-foot-by-10-foot panels. Each panel must be contiguous with another panel. In any form, the wall is 1/4 inch thick. It lasts for the Duration. If the wall cuts through a creature's space when it appears, the creature is pushed to one side of the wall (your choice which side).Nothing can physically pass through the wall. It is immune to all damage and can't be dispelled by Dispel Magic. A Disintegrate spell destroys the wall instantly, however. The wall also extends into the Ethereal Plane, blocking ethereal travel through the wall.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"wall"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A pinch of powder made by crushing clear gemstone","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.o9ZCvuD2B1OTcubb"}},"img":"icons/magic/light/beam-rays-magenta-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234223,"modifiedTime":1661791116199,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WmQpxfjZwF3MGUby","name":"Globe of Invulnerability","ownership":{"default":0},"type":"spell","system":{"description":{"value":"An immobile, faintly shimmering barrier springs into existence in a 10-foot radius around you and remains for the Duration.Any spell of 5th level or lower cast from outside the barrier can't affect creatures or Objects within it, even if the spell is cast using a higher level spell slot. Such a spell can target creatures and Objects within the barrier, but the spell has no effect on them. Similarly, the area within the barrier is excluded from the areas affected by such Spells.At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the barrier blocks Spells of one level higher for each slot level above 6th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A glass or crystal bead that shatters when the spell ends","consumed":true,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.WmQpxfjZwF3MGUby"}},"img":"icons/magic/defensive/shield-barrier-flaming-pentagon-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234154,"modifiedTime":1661791116199,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"L4J89JXqbKs6puEV","name":"Teleport","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell instantly transports you and up to eight willing creatures of your choice that you can see within range, or a single object that you can see within range, to a destination you select. If you target an object, it must be able to fit entirely inside a 10-foot cube, and it can't be held or carried by an unwilling creature.The destination you choose must be known to you, and it must be on the same plane of existence as you. Your familiarity with the destination determines whether you arrive there successfully. The DM rolls d100 and consults the table.\n\n\n\nFamiliarity\nMishap\nSimilar Area\nOff Target\nOn Target\n\n\nPermanent circle\n-\n-\n-\n01-100\n\n\nAssociated object\n-\n-\n-\n01-100\n\n\nVery familiar\n01-05\n06-13\n14-24\n25-100\n\n\nSeen casually\n01-33\n34-43\n44-53\n54-100\n\n\nViewed once\n01-43\n44-53\n54-73\n74-100\n\n\nDescription\n01-43\n44-53\n54-73\n74-100\n\n\nFalse destination\n01-50\n51-100\n-\n-\n\n\n\nFamiliarity. \"Permanent circle\" means a permanent Teleportation Circle whose sigil sequence you know. \"Associated object\" means that you possess an object taken from the desired destination within the last six months, such as a book from a wizard's library, bed linen from a royal suite, or a chunk of marble from a lich's Secret tomb.\"Very familiar\" is a place you have been very often, a place you have carefully studied, or a place you can see when you cast the spell. \"Seen casually\" is someplace you have seen more than once but with which you aren't very familiar. \"Viewed once\" is a place you have seen once, possibly using magic. \"Description\" is a place whose location and appearance you know through someone else's description, perhaps from a map.\"False destination\" is a place that doesn't exist. Perhaps you tried to scry an enemy's sanctum but instead viewed an illusion, or you are attempting to teleport to a familiar location that no longer exists.On Target. You and your group (or the target object) appear where you want to.Off Target. You and your group (or the target object) appear a random distance away from the destination in a random direction. Distance off target is 1d10 × 1d10 percent of the distance that was to be traveled. For example, if you tried to travel 120 miles, landed off target, and rolled a 5 and 3 on the two d10s, then you would be off target by 15 percent, or 18 miles. The DM determines the direction off target randomly by rolling a d8 and designating 1 as north, 2 as northeast, 3 as east, and so on around the points of the compass. If you were teleporting to a coastal city and wound up 18 miles out at sea, you could be in trouble.Similar Area. You and your group (or the target object) wind up in a different area that's visually or thematically similar to the target area. If you are heading for your home laboratory, for example, you might wind up in another wizard's laboratory or in an alchemical supply shop that has many of the same tools and implements as your laboratory. Generally, you appear in the closest similar place, but since the spell has no range limit, you could conceivably wind up anywhere on the plane.Mishap. The spell's unpredictable magic results in a difficult journey. Each teleporting creature (or the target object) takes 3d10 force damage, and the DM rerolls on the table to see where you wind up (multiple mishaps can occur, dealing damage each time).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":9,"width":null,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d100","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.L4J89JXqbKs6puEV"}},"img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234119,"modifiedTime":1661791116204,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"bllEWfm9xfEKynhv","name":"Mind Blank","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Until the spell ends, one willing creature you touch is immune to psychic damage, any effect that would sense its emotions or read its thoughts, Divination Spells, and the Charmed condition. The spell even foils Wish spells and Spells or Effects of similar power used to affect the target's mind or to gain information about the target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.bllEWfm9xfEKynhv"}},"img":"icons/magic/air/air-burst-spiral-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234171,"modifiedTime":1661791116206,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"JYuRBwxpoFhXduvD","name":"Time Stop","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You briefly stop the flow of time for everyone but yourself. No time passes for other creatures, while you take 1d4 + 1 turns in a row, during which you can use Actions and move as normal.This spell ends if one of the Actions you use during this period, or any Effects that you create during this period, affects a creature other than you or an object being worn or carried by someone other than you. In addition, the spell ends if you move to a place more than 1,000 feet from the location where you cast it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4+1","save":{"ability":"","dc":null,"scaling":"spell"},"level":9,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.JYuRBwxpoFhXduvD"}},"img":"icons/magic/time/clock-stopwatch-white-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234114,"modifiedTime":1661791116206,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"1N8dDMMgZ1h1YJ3B","name":"Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An eyelash encased in gum arabic","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.1N8dDMMgZ1h1YJ3B"}},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234056,"modifiedTime":1661791116207,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"A3q2gTNqG6fvNGrv","name":"Disguise Self","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You make yourself—including your clothing, armor, weapons, and other belongings on your person—look different until the spell ends or until you use your action to dismiss it. You can seem 1 foot shorter or taller and can appear thin, fat, or in between. You can't change your body type, so you must adopt a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you.The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to your outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel your head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair.To discern that you are disguised, a creature can use its action to inspect your appearance and must succeed on an Intelligence (Investigation) check against your spell save DC.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.A3q2gTNqG6fvNGrv"}},"img":"icons/magic/control/debuff-energy-hold-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234086,"modifiedTime":1661791116207,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"cfwMU7LuOJ619Lny","changes":[{"key":"system.attributes.ac.calc","value":"mage","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":678,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":2,"startTurn":1},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp","label":"Mage Armor","origin":"Compendium.dnd5e.monsters.B7lBOr1AahNZs4a6.Item.CKZTpZlxj7hjjo2H","transfer":false,"flags":{},"tint":null,"sort":0},{"_id":"lVKx8swB08jm6IFE","flags":{},"changes":[{"key":"system.traits.dr.value","value":"cold","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":678,"seconds":600,"rounds":null,"turns":null,"startRound":2,"startTurn":1,"combat":null},"icon":"icons/magic/defensive/shield-barrier-flaming-pentagon-red.webp","label":"Warm Shield","origin":"Compendium.dnd5e.monsters.B7lBOr1AahNZs4a6.Item.avD5XUtkBPQQR97c","tint":null,"transfer":false,"sort":0},{"_id":"UUXwEKSPX4nYfDzo","flags":{},"changes":[{"key":"system.traits.dr.value","value":"fire","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":678,"seconds":600,"rounds":null,"turns":null,"startRound":2,"startTurn":1,"combat":null},"icon":"icons/magic/defensive/shield-barrier-flaming-pentagon-blue.webp","label":"Chill Shield","origin":"Compendium.dnd5e.monsters.B7lBOr1AahNZs4a6.Item.avD5XUtkBPQQR97c","tint":null,"transfer":false,"sort":0},{"label":"Stoneskin","icon":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","origin":"Compendium.dnd5e.monsters.B7lBOr1AahNZs4a6.Item.ReMbjfeOKoSj3O79","duration":{"startTime":0,"seconds":3600,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":true,"_id":"4KtXvy5OXy2qUidh","changes":[{"key":"system.traits.dr.value","mode":2,"value":"bludgeoning","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"piercing","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"slashing","priority":null},{"key":"system.traits.dr.bypasses","mode":2,"value":"mgc","priority":null}],"tint":null,"transfer":false,"flags":{},"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232655,"modifiedTime":1672596094305,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"BAT6ld8qJZetpycL","name":"Spirit Naga","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":75,"min":0,"max":75,"temp":0,"tempmax":0,"formula":"10d10 + 20"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"int"},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":8,"spellLevel":10,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","poisoned"],"custom":""},"languages":{"value":["abyssal","common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":4,"override":4},"spell2":{"value":3,"override":null},"spell3":{"value":3,"override":null},"spell4":{"value":3,"override":null},"spell5":{"value":2,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Spirit Naga","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"aap2fFb4b7uX3XAO","name":"Bite","type":"weapon","img":"icons/creatures/abilities/fang-tooth-venomous.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 10 ft., one creature. Hit: 7 (1d6 + 4) piercing damage.The target must make a DC 13 Constitution saving throw, taking 31 (7d8) poison damage on a failed save, or half as much damage on a successful one.The Spirit Naga attacks with its Bite. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"],["7d8","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"con"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WqOflwn1ubAMkGdQ","name":"Rejuvenation","type":"feat","img":"icons/magic/control/debuff-energy-hold-levitate-green.webp","system":{"description":{"value":"If it dies, the naga returns to life in 1d6 days and regains all its hit points. Only a wish spell can prevent this trait from functioning.If it dies, the naga returns to life in 1d6 days and regains all its hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JcfHlAcfwSWnt7Ud"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Fla0ZsaY2HvXWqbR","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"\nThe naga is a 10th-level spellcaster. Its spellcasting ability is Intelligence (spell save DC 14, +6 to hit with spell attacks), and it needs only verbal components to cast its spells. It has the following wizard spells prepared:\n• Cantrips (at will): mage hand, minor illusion, ray of frost\n• 1st level (4 slots): charm person, detect magic, sleep\n• 2nd level (3 slots): detect thoughts, hold person\n• 3rd level (3 slots): lightning bolt, water breathing\n• 4th level (3 slots): blight, dimension door\n• 5th level (2 slots): dominate person\n\nThe naga is a spellcaster. Its spellcasting ability is Intelligence and it needs only verbal components to cast its spells.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Utk1OQRwYkMkFRD3","name":"Mage Hand","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.The hand can't attack, activate magic items, or carry more than 10 pounds.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Utk1OQRwYkMkFRD3"}},"img":"icons/magic/water/water-hand.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234148,"modifiedTime":1661791116262,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"oIzA2MEHwxhtQneU","name":"Minor Illusion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a sound or an image of an object within range that lasts for the duration. The illusion also ends if you dismiss it as an action or cast this spell again.If you create a sound, its volume can range from a whisper to a scream. It can be your voice, someone else's voice, a lion's roar, a beating of drums, or any other sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends.If you create an image of an object—such as a chair, muddy footprints, or a small chest—it must be no larger than a 5-foot cube. The image can't create sound, light, smell, or any other sensory effect. Physical interaction with the image reveals it to be an illusion, because things can pass through it.If a creature uses its action to examine the sound or image, the creature can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the illusion becomes faint to the creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"cube"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":14,"scaling":"spell"},"level":0,"school":"ill","components":{"vocal":false,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of fleece.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.oIzA2MEHwxhtQneU"}},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234224,"modifiedTime":1661791116262,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ctW81uiX56xZR2c5","name":"Ray of Frost","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A frigid beam of blue-white light streaks toward a creature within range. Make a ranged spell attack against the target. On a hit, it takes 1d8 cold damage, and its speed is reduced by 10 feet until the start of your next turn.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ctW81uiX56xZR2c5"}},"img":"icons/magic/light/beam-rays-blue-small.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234176,"modifiedTime":1661791116262,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"eS7XnnApoxRxYXPs","name":"Charm Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to charm a humanoid you can see within range. It must make a Wisdom saving throw, and does so with advantage if you or your companions are fighting it. If it fails the saving throw, it is charmed by you until the spell ends or until you or your companions do anything harmful to it. The charmed creature regards you as a friendly acquaintance. When the spell ends, the creature knows it was charmed by you.\n At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.eS7XnnApoxRxYXPs"}},"img":"icons/magic/fire/explosion-fireball-medium-purple-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234185,"modifiedTime":1661791116263,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116263,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"KhwiSi9fwVfUPtku","name":"Sleep","type":"spell","img":"icons/magic/light/explosion-star-small-pink.webp","system":{"description":{"value":"This spell sends creatures into a magical slumber. Roll 5d8; the total is how many hit points of creatures this spell can affect. Creatures within 20 feet of a point you choose within range are affected in ascending order of their current hit points (ignoring unconscious creatures).Starting with the creature that has the lowest current hit points, each creature affected by this spell falls unconscious until the spell ends, the sleeper takes damage, or someone uses an action to shake or slap the sleeper awake. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.Undead and creatures immune to being charmed aren't affected by this spell.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d8 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of fine sand, rose petals, or a cricket.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"2d8"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.KhwiSi9fwVfUPtku"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234117,"modifiedTime":1661791116263,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ppWAAEul0QHtm4er","name":"Detect Thoughts","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you can read the thoughts of certain creatures. When you cast the spell and as your action on each turn until the spell ends, you can focus your mind on any one creature that you can see within 30 feet of you. If the creature you choose has an Intelligence of 3 or lower or doesn't speak any language, the creature is unaffected.You initially learn the surface thoughts of the creature—what is most on its mind in that moment. As an action, you can either shift your attention to another creature's thoughts or attempt to probe deeper into the same creature's mind. If you probe deeper, the target must make a Wisdom saving throw. If it fails, you gain insight into its reasoning (if any), its emotional state, and something that looms large in its mind (such as something it worries over, loves, or hates). If it succeeds, the spell ends. Either way, the target knows that you are probing into its mind, and unless you shift your attention to another creature's thoughts, the creature can use its action on its turn to make an Intelligence check contested by your Intelligence check; if it succeeds, the spell ends.Questions verbally directed at the target creature naturally shape the course of its thoughts, so this spell is particularly effective as part of an interrogation.You can also use this spell to detect the presence of thinking creatures you can't see. When you cast the spell or as your action during the duration, you can search for thoughts within 30 feet of you. The spell can penetrate barriers, but 2 feet of rock, 2 inches of any metal other than lead, or a thin sheet of lead blocks you. You can't detect a creature with an Intelligence of 3 or lower or one that doesn't speak any language.Once you detect the presence of a creature in this way, you can read its thoughts for the rest of the duration as described above, even if you can't see it, but it must still be within range.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A copper piece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ppWAAEul0QHtm4er"}},"img":"icons/magic/light/explosion-star-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234229,"modifiedTime":1661791116266,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"3Lo9boi7P2ro6QV4","name":"Hold Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a humanoid that you can see within range. The target must succeed on a Wisdom saving throw or be paralyzed for the duration. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional humanoid for each slot level above 2nd. The humanoids must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small, straight piece of iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.3Lo9boi7P2ro6QV4"}},"img":"icons/magic/control/debuff-chains-ropes-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234063,"modifiedTime":1661791116266,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"IyikgTEOTv701jgQ","name":"Lightning Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A stroke of lightning forming a line 100 feet long and 5 feet wide blasts out from you in a direction you choose. Each creature in the line must make a Dexterity saving throw. A creature takes 8d6 lightning damage on a failed save, or half as much damage on a successful one.The lightning ignites flammable objects in the area that aren't being worn or carried.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d6","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":14,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of fur and a rod of amber, crystal, or glass","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.IyikgTEOTv701jgQ"}},"img":"icons/magic/lightning/bolt-forked-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234110,"modifiedTime":1661791116266,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"13uVuBQP6VaiSPvC","name":"Water Breathing","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell grants up to ten willing creatures you can see within range the ability to breathe underwater until the spell ends. Affected creatures also retain their normal mode of respiration.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A short reed or piece of straw","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.13uVuBQP6VaiSPvC"}},"img":"icons/magic/water/pseudopod-swirl-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234054,"modifiedTime":1661791116267,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pybg5MNc3lkerH4Y","name":"Blight","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Necromantic energy washes over a creature of your choice that you can see within range, draining moisture and vitality from it. The target must make a Constitution saving throw. The target takes 8d8 necrotic damage on a failed save, or half as much damage on a successful one. This spell has no effect on undead or constructs.If you target a plant creature or a magical plant, it makes the saving throw with disadvantage, and the spell deals maximum damage to it.If you target a nonmagical plant that isn't a creature, such as a tree or shrub, it doesn't make a saving throw, it simply withers and dies.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d8","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"spell"},"level":4,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.pybg5MNc3lkerH4Y"}},"img":"icons/magic/unholy/strike-beam-blood-large-red-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234230,"modifiedTime":1661791116268,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"A4RsPuSvB9wFtz1j","name":"Dimension Door","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You teleport yourself from your current location to any other spot within range. You arrive at exactly the spot desired. It can be a place you can see, one you can visualize, or one you can describe by stating distance and direction, such as \"200 feet straight downward\" or \"upward to the northwest at a 45-degree angle, 300 feet.\"You can bring along objects as long as their weight doesn't exceed what you can carry. You can also bring one willing creature of your size or smaller who is carrying gear up to its carrying capacity. The creature must be within 5 feet of you when you cast this spell.If you would arrive in a place already occupied by an object or a creature, you and any creature traveling with you each take 4d6 force damage, and the spell fails to teleport you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":500,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.A4RsPuSvB9wFtz1j"}},"img":"icons/magic/air/air-burst-spiral-large-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234087,"modifiedTime":1661791116268,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"91Sw6vOIaO7U8DvM","name":"Dominate Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to beguile a humanoid that you can see within range. It must succeed on a Wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw.While the target is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability.You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time you can also cause the creature to use a reaction, but this requires you to use your own reaction as well.Each time the target takes damage, it makes a new Wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.At Higher Levels. When you cast this spell using a 6th-level spell slot, the duration is concentration, up to 10 minutes. When you use a 7th-level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 8th level or higher, the duration is concentration, up to 8 hours.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"spell"},"level":5,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.91Sw6vOIaO7U8DvM"}},"img":"icons/magic/air/air-burst-spiral-large-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234083,"modifiedTime":1661791116268,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232659,"modifiedTime":1672596094432,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"BUCfQ7ihaXX75Vai","name":"Dust Mephit","type":"npc","img":"","system":{"abilities":{"str":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":17,"min":0,"max":17,"temp":0,"tempmax":0,"formula":"5d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":30,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"sm","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":["fire"],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["auran","terran"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Dust Mephit","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"v3i1DaUS4Bkc8Ser","name":"Death Burst","type":"feat","img":"icons/magic/light/explosion-star-glow-yellow.webp","system":{"description":{"value":"\nWhen the mephit dies, it explodes in a burst of dust. Each creature within 5 ft. of it must then succeed on a DC 10 Constitution saving throw or be blinded for 1 minute. A blinded creature can repeat the saving throw on each of its turns, ending the effect on itself on a success.\n\nWhen the mephit dies, it explodes in a burst of dust. Each creature within 5 ft. of it must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":"on death"},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":10,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.net3yBKQoxl8bZ4r"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"muKb2wMq6khBe1yH","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The mephit can innately cast sleep, requiring no material components. Its innate spellcasting ability is Charisma.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lazTMrXNUpGCrKdR","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 4 (1d4 + 2) slashing damage.\n\nThe Dust Mephit attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RTpPc5fs27dBqDuj","name":"Blinding Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\nThe mephit exhales a 15-foot cone of blinding dust.\nEach creature in that area must succeed on a DC 10 Dexterity saving throw or be blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe mephit exhales a 15-foot cone of blinding dust. Each creature in that area must make a Dexterity saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":10,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.tHvaJB8tXSriVXRm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KhwiSi9fwVfUPtku","name":"Sleep","type":"spell","img":"icons/magic/light/explosion-star-small-pink.webp","system":{"description":{"value":"This spell sends creatures into a magical slumber. Roll 5d8; the total is how many hit points of creatures this spell can affect. Creatures within 20 feet of a point you choose within range are affected in ascending order of their current hit points (ignoring unconscious creatures).Starting with the creature that has the lowest current hit points, each creature affected by this spell falls unconscious until the spell ends, the sleeper takes damage, or someone uses an action to shake or slap the sleeper awake. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.Undead and creatures immune to being charmed aren't affected by this spell.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d8 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of fine sand, rose petals, or a cricket.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":"2d8"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.KhwiSi9fwVfUPtku"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234117,"modifiedTime":1661791116287,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232661,"modifiedTime":1672596094498,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Bupo3E9X5Ptx6XeT","name":"Draft Horse","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":19,"min":0,"max":19,"temp":0,"tempmax":0,"formula":"3d10 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Urban","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Draft Horse","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"alpha":1,"light":{"alpha":0.5,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"reverse":false,"type":null},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.3},"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"dJyouOu3yDwHTXEX","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 9 (2d4 + 4) bludgeoning damage.\nThe Draft Horse attacks with its Hooves.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232663,"modifiedTime":1672596094547,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Buxe6dDK5Mw7kxe6","name":"Frost Giant","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":138,"min":0,"max":138,"temp":null,"tempmax":0,"formula":"12d12 + 60"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"giant","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":8,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":["cold"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["giant"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Frost Giant","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"gCi538awNcOfcZf7","name":"Rock","type":"weapon","img":"icons/magic/earth/projectile-stone-ball-brown.webp","system":{"description":{"value":"\nRanged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.\nThe Frost Giant attacks with its Rock.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":240,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9LXx1CaY98oYrwWK","name":"Patchwork Armor","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":12,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":15,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.1","coreVersion":"10.284","createdTime":null,"modifiedTime":1662588021210,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"LVOGKiIm4UTD4fpj","name":"Greataxe","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 10 ft., one target. Hit: 25 (3d12 + 6) slashing damage.The Frost Giant attacks with its Greataxe.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d12+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.1Lxk6kmoRhG8qQ0u"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"i49lwJ84vB720EPW","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The giant makes two greataxe attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232665,"modifiedTime":1672596094588,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"CHEUjiYrVM9X0vIT","name":"Acolyte","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":9,"min":0,"max":9,"temp":0,"tempmax":0,"formula":"2d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"wis"},"details":{"biography":{"value":"","public":""},"alignment":"Any","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"","cr":0.25,"spellLevel":1,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"Any one language (usually common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":2,"override":2},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Acolyte","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"alpha":1,"light":{"alpha":0.5,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"reverse":false,"type":null},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.3},"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"38I6bGoguRRefN6W","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"\nThe acolyte is a 1st-level spellcaster. Its spellcasting ability is Wisdom (spell save DC 12, +4 to hit with spell attacks). The acolyte has following cleric spells prepared:• Cantrips (at will): light, sacred flame, thaumaturgy• 1st level (3 slots): bless, cure wounds, sanctuary\n\nThe acolyte is a spellcaster. Its spellcasting ability is Wisdom.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"swpThURVHnaQRjfY","name":"Club","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"\nMelee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 2 (1d4) bludgeoning damage.\nThe Acolyte attacks with their Club.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"lgt":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.nfIRTECQIG81CvM4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Bnn9Nzajixvow9xi","name":"Light","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":12,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A firefly or phosphorescent moss.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Bnn9Nzajixvow9xi"}},"img":"icons/magic/light/explosion-star-small-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234093,"modifiedTime":1661791116300,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"n9pJzTDsAwQxJVRl","name":"Sacred Flame","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Flame-like radiance descends on a creature that you can see within range. The target must succeed on a Dexterity saving throw or take 1d8 radiant damage. The target gains no benefit from cover for this saving throw.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":12,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.n9pJzTDsAwQxJVRl"}},"img":"icons/magic/light/beam-rays-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234221,"modifiedTime":1661791116301,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MUO1uYN7JR1hm4dR","name":"Thaumaturgy","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create one of the following magical effects within range:\n\nYour voice booms up to three times as loud as normal for 1 minute.\nYou cause flames to flicker, brighten, dim, or change color for 1 minute.\nYou cause harmless tremors in the ground for 1 minute.\nYou create a sound that originates from a point of your choice within range.\nYou cause an unlocked door or window to fly open or slam shut.\nYou alter the appearance of your eyes for 1 minute.\n\nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234127,"modifiedTime":1661791116301,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"8dzaICjGy6mTUaUr","name":"Bless","type":"spell","img":"icons/magic/control/buff-flight-wings-blue.webp","system":{"description":{"value":"You bless up to three creatures of your choice within range. Whenever a target makes an attack roll or a saving throw before the spell ends, the target can roll 1d4 and add the number rolled to the attack roll or saving throw.\nHigher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":3,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A sprinkling of holy water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"effects":[{"_id":"8rP3gwmXVTgZqYZE","flags":{},"changes":[{"key":"system.bonuses.abilities.save","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.mwak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.msak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rsak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rwak.attack","mode":2,"value":"+1d4","priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":60,"rounds":10,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/control/buff-flight-wings-blue.webp","label":"Bless","origin":"Item.kZZAZ6kp9YzgPQEe","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.8dzaICjGy6mTUaUr"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234081,"modifiedTime":1661791116301,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"gvdA9nPuWLck4tBl","name":"Sanctuary","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You ward a creature within range against attack. Until the spell ends, any creature who targets the warded creature with an attack or a harmful spell must first make a Wisdom saving throw. On a failed save, the creature must choose a new target or lose the attack or spell. This spell doesn't protect the warded creature from area effects, such as the explosion of a Fireball.If the warded creature makes an attack or casts a spell that affects an enemy creature, this spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":12,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small silver mirror","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gvdA9nPuWLck4tBl"}},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234193,"modifiedTime":1661791116302,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"uUWb1wZgtMou0TVP","name":"Cure Wounds","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch regains a number of hit points equal to 1d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.uUWb1wZgtMou0TVP"}},"img":"icons/magic/life/heart-cross-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234236,"modifiedTime":1661791116302,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"8rP3gwmXVTgZqYZE","flags":{},"changes":[{"key":"system.bonuses.abilities.save","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.mwak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.msak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rsak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rwak.attack","mode":2,"value":"+1d4","priority":null}],"disabled":true,"duration":{"startTime":678,"seconds":60,"rounds":10,"combat":null,"turns":null,"startRound":2,"startTurn":1},"icon":"icons/magic/control/buff-flight-wings-blue.webp","label":"Bless","origin":"Compendium.dnd5e.monsters.CHEUjiYrVM9X0vIT.Item.8dzaICjGy6mTUaUr","tint":null,"transfer":false,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232667,"modifiedTime":1672596094680,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"CqQ6pXQA5WXZNOm3","name":"Harpy","type":"npc","img":"","system":{"abilities":{"str":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":38,"min":0,"max":38,"temp":0,"tempmax":0,"formula":"7d8 + 7"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":40,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Harpy","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"9efeESJpU7Zmfcyo","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The harpy makes two attacks: one with its claws and one with its club.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WqD5jsrWCeNHoD9O","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 6 (2d4 + 1) slashing damage.The Harpy attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ywVQhULZvd4Jn51c","name":"Club","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 3 (1d4 + 1) bludgeoning damage.\nThe Harpy attacks with its Club.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"lgt":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.nfIRTECQIG81CvM4"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":null,"modifiedTime":1670011421660,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"QeobH0xuWk2yWmsb","name":"Luring Song","type":"feat","img":"icons/magic/air/wind-vortex-swirl-purple.webp","system":{"description":{"value":"\nThe harpy sings a magical melody. Every humanoid and giant within 300 ft. of the harpy that can hear the song must succeed on a DC 11 Wisdom saving throw or be charmed until the song ends. The harpy must take a bonus action on its subsequent turns to continue singing. It can stop singing at any time. The song ends if the harpy is incapacitated.\nWhile charmed by the harpy, a target is incapacitated and ignores the songs of other harpies. If the charmed target is more than 5 feet away from the harpy, the target must move on its turn toward the harpy by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage from a source other than the harpy, the target can repeat the saving throw. A charmed target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.\nA target that successfully saves is immune to this harpy's song for the next 24 hours.\n\nThe harpy sings a magical melody. Every humanoid and giant within 300 ft. of the harpy that can hear the song must make a Wisdom saving throw. A creature can also repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"spec"},"cover":null,"target":{"value":300,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.IALpDTyYdDOzmDb5"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232669,"modifiedTime":1672596094727,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"CrnUJhTbkdZjCZsH","name":"Wererat","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":33,"min":0,"max":33,"temp":null,"tempmax":0,"formula":"6d8 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"humanoid","subtype":"Human, Shapechanger","swarm":"","custom":""},"environment":"Forest","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common"],"custom":"(can't speak in rat form)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Wererat","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"PhdUmTsYUeWSSDNN","name":"Shapechanger","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The wererat can use its action to polymorph into a rat-humanoid hybrid or into a giant rat, or back into its true form, which is humanoid. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies.The wererat can use its action to polymorph, or return to its true form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UwlU9Zhwf94gPX0n","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The wererat has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ykZaywAeuqtWHAqQ","name":"Multiattack (Humanoid or Hybrid Form Only)","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The wererat makes two attacks, only one of which can be a bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ldz0yUpzhV9Xlhss","name":"Bite (Rat or Hybrid Form Only)","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage. If the target is a humanoid, it must succeed on a DC 11 Constitution saving throw or be cursed with wererat lycanthropy.The Wererat attacks with its Bite. If the target is a humanoid, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YJi7nfridP2LjdJs","name":"Hand Crossbow (Humanoid or Hybrid Form Only)","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"\nRanged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n\nThe Wererat attacks with its Hand Crossbow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":75,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"lgt":true,"hvy":false,"fin":false,"fir":false,"foc":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":true},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wpyEts6pBAxoD0Gh","name":"Shortsword (Humanoid or Hybrid Form Only)","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n\nThe Wererat attacks with its Shortsword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232671,"modifiedTime":1672596094776,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Cy3A0rsNMPLZozam","name":"Thug","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":32,"min":0,"max":32,"temp":0,"tempmax":0,"formula":"5d8 + 10"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any non-good alignment","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"any one language (usually Common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Thug","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"wonRQjOkc9E7RYtd","name":"Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OE8y8otGDFop6Fzt","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The thug has advantage on an attack roll against a creature if at least one of the thug's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"cac4FpQc3XabBwTj","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The thug makes two melee attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9INT7D1zulhfsok7","name":"Heavy Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-blue.webp","system":{"description":{"value":"\nRanged Weapon Attack: +2 to hit, range 100/400 ft., one target. Hit: 5 (1d10) piercing damage.\nThe Thug attacks with their Heavy Crossbow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":18,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":100,"long":400,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.RmP0mYRn2J7K26rX"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6gRu9IFFkvxesFfK","name":"Mace","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 5 (1d6 + 2) bludgeoning damage.\nThe Thug attacks with their Mace.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Ajyq6nGwF7FtLhDQ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232672,"modifiedTime":1672596094822,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"D5UqYD1EnTrJaMTO","name":"Knight","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":52,"min":0,"max":52,"temp":0,"tempmax":0,"formula":"8d8 + 16"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Alignment","race":"","type":{"value":"humanoid","subtype":"Any Race","swarm":"","custom":""},"environment":"","cr":3,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"any one language (usually Common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Knight","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Y4OikSWAB33cwfR2","name":"Plate Armor","type":"equipment","img":"icons/equipment/chest/breastplate-cuirass-steel-grey.webp","system":{"description":{"value":"Plate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":65,"price":{"value":1500,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":18,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.OjkIqlW2UpgFcjZa"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"46b7R0DbKIsxvWcv","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The knight makes two melee attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iPLa96izrYFiVtaO","name":"Greatsword","type":"weapon","img":"icons/weapons/swords/greatsword-guard-gem-blue.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\nThe Knight attacks with its Greatsword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.xMkP8BmFzElcsMaR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"m68xw5aGQ7awxfYf","name":"Heavy Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-blue.webp","system":{"description":{"value":"\nRanged Weapon Attack: +2 to hit, range 100/400 ft., one target. Hit: 5 (1d10) piercing damage.\nThe Knight attacks with its Heavy Crossbow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":18,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":100,"long":400,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.RmP0mYRn2J7K26rX"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FK0ZF8egty0u713z","name":"Leadership","type":"feat","img":"icons/sundries/documents/document-sealed-red-yellow.webp","system":{"description":{"value":"For 1 minute, the knight can utter a special command or warning whenever a nonhostile creature that it can see within 30 ft. of it makes an attack roll or a saving throw. The creature can add a d4 to its roll provided it can hear and understand the knight. A creature can benefit from only one Leadership die at a time. This effect ends if the knight is incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.cl5sUkAIeJoAG4gh"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AxY9pWHDr2M1SPCC","name":"Parry","type":"feat","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"\nThe knight adds 2 to its AC against one melee Attack that would hit it. To do so, the knight must see the attacker and be wielding a melee weapon.\n\nThe knight adds 2 to its AC against one melee Attack that would hit it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"none"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kfi26Jy0VLXv9TTm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Sp9AkcXsLCN09C9v","name":"Brave","type":"feat","img":"icons/skills/social/intimidation-impressing.webp","system":{"description":{"value":"The knight has advantage on saving throws against being frightened.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.108q5fJnnBRoLKfe"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232674,"modifiedTime":1672596094867,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"D5WjGwKskeUT8HXa","name":"Black Bear","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":19,"min":0,"max":19,"temp":0,"tempmax":0,"formula":"3d8 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Black Bear","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ojB2xDcEAx6QHZAu","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The bear has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZBWu2XGwEnsaVNsH","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The bear makes two attacks: one with its bite and one with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8VdhUFhUE9m12piC","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\nThe Black Bear attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gaxofmkFqQG1zqK9","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage.\nThe Black Bear attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232676,"modifiedTime":1672596094908,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"D5rwVIxmfFrdyyxT","name":"Poisonous Snake","type":"npc","img":"","system":{"abilities":{"str":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":2,"min":0,"max":2,"temp":0,"tempmax":0,"formula":"1d4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.125,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Poisonous Snake","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"obYv0JJqJiMTsoIF","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 1 piercing damage.The target must make a DC 10 Constitution saving throw, taking 5 (2d4) poison damage on a failed save, or half as much damage on a successful one.The Poisonous Snake attacks with its Bite. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":"2d4"},"formula":"","save":{"ability":"con","dc":10,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232678,"modifiedTime":1672596094945,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"DDO9lDCDtNHkfShP","name":"Vampire","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":16,"calc":"natural","formula":""},"hp":{"value":144,"min":0,"max":144,"temp":null,"tempmax":0,"formula":"17d8 + 68"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"undead","subtype":"Shapechanger","swarm":"","custom":""},"environment":"Urban","cr":13,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","necrotic","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"the languages it knew in life"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Vampire","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"BqG5guVa93LaOAn1","name":"Shapechanger","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"\nIf the vampire isn't in sun light or running water, it can use its action to polymorph into a Tiny bat or a Medium cloud of mist, or back into its true form.\nWhile in bat form, the vampire can't speak, its walking speed is 5 feet, and it has a flying speed of 30 feet. Its statistics, other than its size and speed, are unchanged. Anything it is wearing transforms with it, but nothing it is carrying does. It reverts to its true form if it dies. While in mist form, the vampire can't take any actions, speak, or manipulate objects. It is weightless, has a flying speed of 20 feet, can hover, and can enter a hostile creature's space and stop there. In addition, if air can pass through a space, the mist can do so without squeezing, and it can't pass through water. It has advantage on Strength, Dexterity, and Constitution saving throws, and it is immune to all nonmagical damage, except the damage it takes from sunlight.\n\nThe vampire can use its action to polymorph or return to its true form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JaohF91Eok1kSEIG","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the vampire fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pVlKFunmE2qxO0pe","name":"Misty Escape","type":"feat","img":"icons/magic/air/fog-gas-smoke-swirling-gray.webp","system":{"description":{"value":"When it drops to 0 hit points outside its resting place, the vampire transforms into a cloud of mist (as in the Shapechanger trait) instead of falling unconscious, provided that it isn't in sunlight or running water. If it can't transform, it is destroyed.While it has 0 hit points in mist form, it can't revert to its vampire form, and it must reach its resting place within 2 hours or be destroyed. Once in its resting place, it reverts to its vampire form. It is then paralyzed until it regains at least 1 hit point. After spending 1 hour in its resting place with 0 hit points, it regains 1 hit point.A slain vampire transforms into a cloud of mist (as in the Shapechanger trait) instead of falling unconscious.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hMC7XCkDbzVMZ0QG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BDnluJG7T7FfBjsQ","name":"Regeneration","type":"feat","img":"icons/skills/wounds/anatomy-organ-heart-red.webp","system":{"description":{"value":"The vampire regains 20 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or running water. If the vampire takes radiant damage or damage from holy water, this trait doesn't function at the start of the vampire's next turn.The vampire regains 20 hit points at the start of its turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["20","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Av7H0ymGdPeTsnwV"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jc3NboVcwuEiXOYn","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The vampire can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RLsKLdfdmHajHSwD","name":"Vampire Weaknesses","type":"feat","img":"icons/magic/control/encase-creature-monster-hold.webp","system":{"description":{"value":"The vampire has the following flaws:\nForbiddance. The vampire can't enter a residence without an invitation from one of the occupants. \nHarmed by Running Water. The vampire takes 20 acid damage if it ends its turn in running water. \nStake to the Heart. If a piercing weapon made of wood is driven into the vampire's heart while the vampire is incapacitated in its resting place, the vampire is paralyzed until the stake is removed.\nSunlight Hypersensitivity. The vampire takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Ervkb8H99e2Beiae"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"siO3h9XOkgPVi78F","name":"Multiattack (Vampire Form Only)","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The vampire makes two attacks, only one of which can be a bite attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jYBYvv9EF1UnOvqZ","name":"Unarmed Strike (Vampire Form Only)","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 5 ft., one creature. Hit: 8 (1d8 + 4) bludgeoning damage. Instead of dealing damage, the vampire can grapple the target (escape DC 18).The Vampire attacks with its Unarmed Strike.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uqHuj7Pjf2sjny21","name":"Bite (Bat or Vampire Form Only)","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 7 (1d6 + 4) piercing damage plus 10 (3d6) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. A humanoid slain in this way and then buried in the ground rises the following night as a vampire spawn under the vampire's control.The Vampire attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6+@mod","piercing"],["3d6","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RHezeN7HzNf2oKYP","name":"Charm","type":"feat","img":"icons/creatures/eyes/human-single-blue.webp","system":{"description":{"value":"The vampire targets one humanoid it can see within 30 ft. of it. If the target can see the vampire, the target must succeed on a DC 17 Wisdom saving throw against this magic or be charmed by the vampire. The charmed target regards the vampire as a trusted friend to be heeded and protected. Although the target isn't under the vampire's control, it takes the vampire's requests or actions in the most favorable way it can, and it is a willing target for the vampire's bite attack.Each time the vampire or the vampire's companions do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the vampire is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect.The vampire targets one humanoid it can see within 30 ft. of it. If the target can see the vampire, the target must make a Wisdom saving throw against this magic.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.ykoo88OJOdfYH7mH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"c9z4o0fkxq37v8KY","name":"Children of the Night","type":"feat","img":"icons/magic/death/skull-trio-badge-purple.webp","system":{"description":{"value":"The vampire magically calls 2d4 swarms of bats or rats, provided that the sun isn't up. While outdoors, the vampire can call 3d6 wolves instead. The called creatures arrive in 1d4 rounds, acting as allies of the vampire and obeying its spoken commands. The beasts remain for 1 hour, until the vampire dies, or until the vampire dismisses them as a bonus action.The vampire magically calls swarms of bats or rats. While outdoors, the vampire can call wolves instead. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.dm2G9HupHZbZRvNm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rQOFEdWpVwJWS2U4","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe vampire can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The vampire regains spent legendary actions at the start of its turn.\n\nThe vampire can take 3 legendary actions.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hNBduaMwPI3vordA","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zV0DTNKndsVldLsV","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"o4v4mHxP82HTbIOX","name":"Move","type":"feat","img":"icons/skills/movement/feet-winged-boots-brown.webp","system":{"description":{"value":"The vampire moves up to its speed without provoking opportunity attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rEmbKJQ6mpvnUPOO","name":"Unarmed Strike","type":"feat","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"The vampire makes one unarmed strike.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.GsuvwoekKZatfKwF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pW4iNTQphTJ3litv","name":"Bite","type":"feat","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"The vampire makes a bite attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232679,"modifiedTime":1672596095031,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"E9CvDPDg5dFEpVjS","name":"Guard","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Alignment","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"","cr":0.125,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"any one language (usually Common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Guard","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"2reHgwNJRFbhmxqA","name":"Chain Shirt","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"Made of interlocking metal rings, a chain shirt is worn between layers of clothing or leather. This armor offers modest protection to the wearer's upper body and allows the sound of the rings rubbing against one another to be muffled by outer layers.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":20,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.p2zChy24ZJdVqMSH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sSs3hSzkKBMNBgTs","name":"Shield","type":"equipment","img":"icons/equipment/shield/oval-wooden-boss-steel.webp","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"92uVNexE43Z8D18r","name":"Spear","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"\nMelee or Ranged Weapon Attack: +3 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 4 (1d6 + 1) piercing damage or 5 (1d8 + 1) piercing damage if used with two hands to make a melee attack.\nThe Guard attacks with its Spear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"thr":true,"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.OG4nBBydvmfWYXIk"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232681,"modifiedTime":1672596095076,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"EI8w6XjzCZICkox9","name":"Eagle","type":"npc","img":"","system":{"abilities":{"str":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":3,"min":0,"max":3,"temp":0,"tempmax":0,"formula":"1d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Eagle","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"IffB1JYSLbOfFeCr","name":"Keen Sight","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The eagle has advantage on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Eagle","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FeybcW5pMzYjWRqq","name":"Talons","type":"weapon","img":"icons/creatures/claws/claw-scaled-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 4 (1d4 + 2) slashing damage.\nThe Eagle attacks with its Talons.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232683,"modifiedTime":1672596095113,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"EIgAW1dWVPpyWLUh","name":"Pegasus","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":59,"min":0,"max":59,"temp":0,"tempmax":0,"formula":"7d10 + 21"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":90,"swim":0,"walk":60,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"celestial","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"understands Celestial, Common, Elvish, and Sylvan but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Pegasus","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"1HxBbZFsegOJ0cgu","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.The Pegasus attacks with its Hooves.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232690,"modifiedTime":1672596095149,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"EMvcuOpu7ABCmBWi","name":"Assassin","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":78,"min":0,"max":78,"temp":null,"tempmax":0,"formula":"12d8 + 24"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any non-good","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"","cr":8,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["poison"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["cant","custom"],"custom":"any two languages"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Assassin","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"D4VxUJfO4pVUiCNj","name":"Studded Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-rivited-red.webp","system":{"description":{"value":"Made from tough but flexible leather, studded leather is reinforced with close-set rivets or spikes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":13,"price":{"value":45,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.TIV3B1vbrVHIhQAm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ld00NpZe8Zl4J4Pi","name":"Assassinate","type":"feat","img":"icons/weapons/swords/sword-broad-crystal-paired.webp","system":{"description":{"value":"During its first turn, the assassin has advantage on attack rolls against any creature that hasn't taken a turn. Any hit the assassin scores against a surprised creature is a critical hit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.IwqUTWqdgrKEvohr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"crRphULq6iIdlq88","name":"Evasion","type":"feat","img":"icons/magic/water/pseudopod-teal.webp","system":{"description":{"value":"If the assassin is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, the assassin instead takes no damage if it succeeds on the saving throw, and only half damage if it fails.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.xOgrn5QXzSP4QN6V"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EcECOhaJIpCtN2o7","name":"Sneak Attack","type":"feat","img":"icons/skills/melee/blade-tip-chipped-blood-red.webp","system":{"description":{"value":"Once per turn.\nThe assassin deals an extra 13 (4d6) damage when it hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 ft. of an ally of the assassin that isn't incapacitated and the assassin doesn't have disadvantage on the attack roll.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":"once per turn"},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.9uKShqfuA73duQsT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zaYTSI1nKtzBnQwf","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The assassin makes two shortsword attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Kbg12IJ0YW79vP06","name":"Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\nThe target must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\n\nThe Assassin attacks with their Shortsword. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"7d6","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.osLzOwQdPtrK3rQH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rNQK7okIBNZ2zDvD","name":"Light Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"\nRanged Weapon Attack: +6 to hit, range 80/320 ft., one target. Hit: 7 (1d8 + 3) piercing damage.\nThe target must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\n\nThe Assassin attacks with its Light Crossbow. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":0},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"7d6","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"lgt":true,"two":true,"amm":true,"fin":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.ddWvQRLmnnIS0eLF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232691,"modifiedTime":1672596095190,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ESEm3fGUfSKjzVUc","name":"Ice Mephit","type":"npc","img":"","system":{"abilities":{"str":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":21,"min":0,"max":21,"temp":0,"tempmax":0,"formula":"6d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":30,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Arctic","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"sm","di":{"value":["cold","poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":["bludgeoning","fire"],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["aquan","auran"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ice Mephit","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"D4cqlN9pDyQwRvWP","name":"Death Burst","type":"feat","img":"icons/magic/light/explosion-star-glow-yellow.webp","system":{"description":{"value":"When the mephit dies, it explodes in a burst of jagged ice. Each creature within 5 ft. of it must make a DC 10 Dexterity saving throw, taking 4 (1d8) slashing damage on a failed save, or half as much damage on a successful one.When the mephit dies, it explodes in a burst of jagged ice. Each creature within 5 ft. of it must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":"death"},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","slashing"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":10,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.net3yBKQoxl8bZ4r"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CG9kMpmgbBE0ePpO","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the mephit remains motionless, it is indistinguishable from an ordinary shard of ice.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qSKvifcPZvWEyQwS","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The mephit can innately cast fog cloud, requiring no material components. Its innate spellcasting ability is Charisma.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YEZPqZegxKiGO0Gq","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) cold damage.The Ice Mephit attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4+@mod","slashing"],["1d4","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1mD9NcCf8ZMQtsrU","name":"Frost Breath","type":"feat","img":"icons/magic/air/wind-tornado-wall-blue.webp","system":{"description":{"value":"The mephit exhales a 15-foot cone of cold air. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 5 (2d4) cold damage on a failed save, or half as much damage on a successful one.The mephit exhales a 15-foot cone of cold air. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4","cold"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":10,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Z7U6z4HD1ORlkTIJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"IBJmWjzbQGu7M4UX","name":"Fog Cloud","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a 20-foot-radius Sphere of fog centered on a point within range. The sphere spreads around corners, and its area is heavily obscured. It lasts for the Duration or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the radius of the fog increases by 20 feet for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.IBJmWjzbQGu7M4UX"}},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234109,"modifiedTime":1661791116325,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232693,"modifiedTime":1672596095240,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ET4PEVEiNJLU4f7c","name":"Wraith","type":"npc","img":"","system":{"abilities":{"str":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":67,"min":0,"max":67,"temp":null,"tempmax":0,"formula":"9d8 + 27"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":0,"units":"ft","hover":true},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["necrotic","poison"],"bypasses":[],"custom":""},"dr":{"value":["acid","bludgeoning","cold","fire","lightning","piercing","slashing","thunder"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","grappled","paralyzed","petrified","poisoned","prone","restrained","exhaustion"],"custom":""},"languages":{"value":[],"custom":"the languages it knew in life"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Wraith","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"RADMbiPme1Hrfu8E","name":"Create Specter","type":"feat","img":"icons/creatures/abilities/dragon-breath-purple.webp","system":{"description":{"value":"The wraith targets a humanoid within 10 feet of it that has been dead for no longer than 1 minute and died violently. The target's spirit rises as a specter in the space of its corpse or in the nearest unoccupied space. The specter is under the wraith's control. The wraith can have no more than seven specters under its control at one time.The target's spirit rises as a specter in the space of its corpse or in the nearest unoccupied space. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.SlAF2AE4ZKoUvQql"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"idILnIUj76QH9v8w","name":"Incorporeal Movement","type":"feat","img":"icons/skills/movement/feet-winged-boots-brown.webp","system":{"description":{"value":"The wraith can move through other creatures and objects as if they were difficult terrain. It takes 5 (1d10) force damage if it ends its turn inside an object.The wraith can move through other creatures and objects as if they were difficult terrain.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LUHmtIDD1VTreFqI"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xZPFtf2vCYraWXVe","name":"Wraith - Life Drain","type":"weapon","img":"icons/magic/unholy/strike-hand-glow-pink.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one creature. Hit: 21 (4d8 + 3) necrotic damage. The target must succeed on a DC 14 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.The Wraith attacks with its Life Drain. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8 + @mod","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3ERjE4pz2bgxXIPi","name":"Sunlight Sensitivity","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"While in sunlight, the wraith has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.F14aW2Ke3I5ZtSg4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232695,"modifiedTime":1672596095283,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"EYiQZ3rFL25fEJY5","name":"Dire Wolf","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":37,"min":0,"max":37,"temp":0,"tempmax":0,"formula":"5d10 + 10"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Dire Wolf","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"K0u6bJqRtcj0cSzK","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The wolf has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"weFcATmtqqUJ39Pw","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The wolf has advantage on an attack roll against a creature if at least one of the wolf's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tx9xPDEQ8osJq6ZQ","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\nIf the target is a creature, it must succeed on a DC 13 Strength saving throw or be knocked prone.\n\nThe Dire Wolf attacks with its Bite. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232697,"modifiedTime":1672596095322,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"EZgiprHXA2D7Uyb3","name":"Frog","type":"npc","img":"","system":{"abilities":{"str":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"1d4 - 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":20,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":30,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Frog","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"8Y7gW0cyZLIzdvQb","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The frog can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3CnWEl3LzMTy99vo","name":"Standing Leap","type":"feat","img":"icons/magic/fire/barrier-wall-explosion-orange.webp","system":{"description":{"value":"The frog's long jump is up to 10 ft. and its high jump is up to 5 ft., with or without a running start.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Frog","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.f4yvSah35ixQOswD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232699,"modifiedTime":1672596095359,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"EpYl7qifM5pq6W6B","name":"Cockatrice","type":"npc","img":"","system":{"abilities":{"str":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":27,"min":0,"max":27,"temp":0,"tempmax":0,"formula":"6d6 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":40,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Cockatrice","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"gpxvIs8yjQ4awt4s","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one creature. Hit: 3 (1d4 + 1) piercing damage.The target must succeed on a DC 11 Constitution saving throw against being magically petrified. On a failed save, the creature begins to turn to stone and is restrained. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is petrified for 24 hours.The Cockatrice attacks with its Bite. The target must make a Constitution saving throw. On a failed save, it must repeat the saving throw at the end of its next turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":true,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"ada":false,"mgc":false,"sil":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232700,"modifiedTime":1672596095392,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"EqJUA3Z3181RSSFU","name":"Flying Sword","type":"npc","img":"","system":{"abilities":{"str":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":17,"min":0,"max":17,"temp":0,"tempmax":0,"formula":"5d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":50,"swim":0,"walk":0,"units":"ft","hover":true},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":"Blind beyond this radius"},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"construct","subtype":"","swarm":"","custom":""},"environment":"","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"sm","di":{"value":["poison","psychic"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["blinded","charmed","deafened","frightened","paralyzed","petrified","poisoned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Flying Sword","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"alpha":1,"light":{"alpha":0.5,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"reverse":false,"type":null},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.3},"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"KFvtNOH2AMQIWRps","name":"Antimagic Susceptibility","type":"feat","img":"icons/magic/lightning/orb-ball-purple.webp","system":{"description":{"value":"The sword is incapacitated while in the area of an antimagic field. If targeted by dispel magic, the sword must succeed on a Constitution saving throw against the caster's spell save DC or fall unconscious for 1 minute.The sword is incapacitated while in the area of an antimagic field.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KMQAgNxBCAHrd2JU"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EY5bnNsvwwHGfCk1","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the sword remains motionless and isn't flying, it is indistinguishable from a normal sword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"D2cJQHQa8UQp99Wt","name":"Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage.\nThe Flying Sword attacks!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232702,"modifiedTime":1672596095429,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"F0yILX4xKKt4dxKY","name":"Reef Shark","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"4d8 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":0,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Reef Shark","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"vFBjTLrkdsB0llcn","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The shark has advantage on an attack roll against a creature if at least one of the shark's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nA5rxVuopudrZgZB","name":"Water Breathing","type":"feat","img":"icons/magic/water/projectile-water-ice-orb.webp","system":{"description":{"value":"The shark can breathe only underwater.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.c4Q6NDCLJSNcNc9T"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9xaHEynEl0adgcJ4","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\nThe Reef Shark attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232703,"modifiedTime":1672596095468,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FQMFuzzSh73d0Nrd","name":"Camel","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":9,"calc":"natural","formula":""},"hp":{"value":15,"min":0,"max":15,"temp":0,"tempmax":0,"formula":"2d10 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":0.125,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Camel","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"XY89jRSGIvqLmLmw","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 2 (1d4) bludgeoning damage.\nThe Camel attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232704,"modifiedTime":1672596095506,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FWSDiq9SZsdiBAa8","name":"Sea Horse","type":"npc","img":"","system":{"abilities":{"str":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"1d4 - 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":20,"walk":0,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Sea Horse","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"PBYkvhJmi5ACi2MO","name":"Water Breathing","type":"feat","img":"icons/magic/water/bubbles-air-water-blue.webp","system":{"description":{"value":"The sea horse can breathe only underwater.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.c4Q6NDCLJSNcNc9T"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232706,"modifiedTime":1672596095540,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FayqbnjBMszO6Pat","name":"Tiger","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":37,"min":0,"max":37,"temp":0,"tempmax":0,"formula":"5d10 + 10"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Tiger","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"G2GfXsv9MMfL3lc5","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The tiger has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wklAUVakX97y0z2S","name":"Pounce","type":"feat","img":"icons/creatures/claws/claw-talons-glowing-orange.webp","system":{"description":{"value":"\nIf the tiger moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a DC 13 Strength saving throw or be knocked prone.\nIf the target is prone, the panther can make one bite attack against it as a bonus action.\n\nIf the tiger moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must make a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.MqAVplIArAKzpnXB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YypXtXEL61FqWYOP","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.\nThe Tiger attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7GCnVtakQo6iZyn7","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage.\nThe Tiger attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232707,"modifiedTime":1672596095579,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FzvZ6xl3U9GoL9ju","name":"Young Brass Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":110,"min":0,"max":110,"temp":0,"tempmax":0,"formula":"13d10 + 39"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":20,"climb":0,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":6,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Young Brass Dragon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"dYJy66Ftt58qpTUi","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.The Young Brass Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"h8ocFdixa3iZVj0m","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Fire Breath.** The dragon exhales fire in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 42 (12d6) fire damage on a failed save, or half as much damage on a successful one.\n**Sleep Breath.** The dragon exhales sleep gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw or fall unconscious for 5 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"oXGdDIdmBZe6g4Uo","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\n**Fire Breath.** The dragon exhales fire in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 42 (12d6) fire damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales fire in a 40-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":"Breath weapon must be charged"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":40,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JPo2TKHFQ4pJKZqr","name":"Sleep Breath","type":"feat","img":"icons/magic/perception/third-eye-blue-red.webp","system":{"description":{"value":"\n**Sleep Breath.** The dragon exhales sleep gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw or fall unconscious for 5 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n\nThe dragon exhales sleep gas in a 30-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":"Breath Weapon must be charged"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.43BnuqkQgg5l1Nfh"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YHom7FFObzrKEBLQ","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.The Young Brass Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"oyNvUJRyGRVF22t8","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232709,"modifiedTime":1672596095622,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"G9PENY6nw0xRxCJW","name":"Unicorn","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":67,"min":0,"max":67,"temp":0,"tempmax":0,"formula":"9d10 + 18"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"celestial","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","paralyzed","poisoned"],"custom":""},"languages":{"value":["celestial","elvish","sylvan"],"custom":"Telepathy 60 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Unicorn","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"iWDQPwdffkW06c2Y","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"If the unicorn moves at least 20 ft. straight toward a target and then hits it with a horn attack on the same turn, the target takes an extra 9 (2d8) piercing damage. If the target is a creature, it must succeed on a DC 15 Strength saving throw or be knocked prone.If the unicorn moves at least 20 ft. straight toward a target and then hits it with a horn attack on the same turn, the target takes extra piercing damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","piercing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":15,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8yPzMeXvBJC2POQK","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The unicorn's innate spellcasting ability is Charisma (spell save DC 14). The unicorn can innately cast the following spells, requiring no components:\nAt will: detect evil and good, druidcraft, pass without trace\n1/day each: calm emotions, dispel evil and good, entangle","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MW3V6fHknXOLuVxU","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The unicorn has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hyiKyfKiplfTQ0ZX","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The unicorn's weapon attacks are magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vnAmgF7ZkpmDIJSc","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The unicorn makes two attacks: one with its hooves and one with its horn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"f7m44y4TqYYcunMj","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"Melee Weapon Attack: +7 to hit, reach 5 ft ., one target. Hit: 11 (2d6 + 4) bludgeoning damage.The Unicorn attacks with its Hooves.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ORrGdhTLKLTKK3BH","name":"Horn","type":"weapon","img":"icons/commodities/bones/horn-simple-grey.webp","system":{"description":{"value":"Melee Weapon Attack: +7 to hit, reach 5 ft ., one target. Hit: 8 (1d8 + 4) piercing damage.The Unicorn attacks with its Horn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.aa9KuBy4dst7WIW9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uCaHWOOBeJEyR1ay","name":"Healing Touch","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"The unicorn touches another creature with its horn. The target magically regains 11 (2d8 + 2) hit points. In addition, the touch removes all diseases and neutralizes all poisons afflicting the target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+2","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.r3Ugp8f5Ckw2EUHL"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"W5ceTePXIPlUuiEY","name":"Teleport","type":"feat","img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","system":{"description":{"value":"The unicorn magically teleports itself and up to three willing creatures it can see within 5 ft. of it, along with any equipment they are wearing or carrying, to a location the unicorn is familiar with, up to 1 mile away.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":3,"width":null,"units":"","type":"creature"},"range":{"value":1,"long":null,"units":"mi"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.PPzVD90vab60FqCt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uGNhUMAmD8L5AD1M","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe unicorn can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The unicorn regains spent legendary actions at the start of its turn.\n\nThe unicorn can take 3 legendary actions.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"A9f9DUM9Sh0qLYlF","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MdpCZRnBOnzgAKPg","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UNbcqlW8Siek0Fpm","name":"Hooves","type":"feat","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"The unicorn makes one attack with its hooves.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ps56FcAJxi2L3QdZ","name":"Shimmering Shield","type":"feat","img":"icons/magic/light/explosion-star-large-blue-yellow.webp","system":{"description":{"value":"The unicorn creates a shimmering, magical field around itself or another creature it can see within 60 feet of it. The target gains a +2 bonus to AC until the end of the unicorn's next turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.8l0R2MIYxWxYJT6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Plfy8GZ08uqupxe6","name":"Heal Self","type":"feat","img":"icons/magic/life/ankh-gold-blue.webp","system":{"description":{"value":"The unicorn magically regains 11 (2d8+2) hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":3,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":3},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+2","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.gklxiU0PKYSM7RWv"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Mzh95utKDPIrjiH8","name":"Detect Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Mzh95utKDPIrjiH8"}},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234128,"modifiedTime":1661791116345,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"SbSvZKkJASyk8jKo","name":"Druidcraft","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Whispering to the spirits of Nature, you create one of the following Effects within range:\n\nYou create a tiny, harmless sensory effect that predicts what the weather will be at your location for the next 24 hours. The effect might manifest as a golden orb for clear skies, a cloud for rain, Falling snowflakes for snow, and so on. This effect persists for 1 round.\nYou instantly make a flower blossom, a seed pod open, or a leaf bud bloom.\nYou create an Instantaneous, harmless sensory effect, such as Falling leaves, a puff of wind, the sound of a small animal, or the faint odor of skunk. The effect must fit in a 5-foot cube.\nYou instantly light or snuff out a Candle, a torch, or a small campfire.\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.SbSvZKkJASyk8jKo"}},"img":"icons/magic/nature/vines-thorned-glow-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234141,"modifiedTime":1661791116345,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pRMvmknwLf2tdMTj","name":"Pass without Trace","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A veil of shadows and Silence radiates from you, masking you and your companions from detection. For the Duration, each creature you choose within 30 feet of you (including you) has a +10 bonus to Dexterity (Stealth) checks and can't be tracked except by magical means. A creature that receives this bonus leaves behind no tracks or other traces of its passage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Ashes from a burned leaf of mistletoe and a sprig of spruce","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.pRMvmknwLf2tdMTj"}},"img":"icons/magic/air/fog-gas-smoke-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234227,"modifiedTime":1661791116345,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"3MYDjS6k9IYL0aTj","name":"Calm Emotions","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to suppress strong emotions in a group of people. Each humanoid in a 20-foot-radius sphere centered on a point you choose within range must make a Charisma saving throw; a creature can choose to fail this saving throw if it wishes. If a creature fails its saving throw, choose one of the following two effects. You can suppress any effect causing a target to be charmed or frightened. When this spell ends, any suppressed effect resumes, provided that its duration has not expired in the meantime.Alternatively, you can make a target indifferent about creatures of your choice that it is hostile toward. This indifference ends if the target is attacked or harmed by a spell or if it witnesses any of its friends being harmed. When the spell ends, the creature becomes hostile again, unless the DM rules otherwise.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":14,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.3MYDjS6k9IYL0aTj"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234063,"modifiedTime":1661791116345,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"TkJ8Wtg1L7TZtspm","name":"Dispel Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Shimmering energy surrounds and protects you from fey, Undead, and creatures originating from Beyond the Material Plane. For the Duration, Celestials, Elementals, fey, Fiends, and undead have disadvantage on Attack rolls against you.You can end the spell early by using either of the following special functions.Break Enchantment. As your action, you touch a creature you can reach that is Charmed, Frightened, or possessed by a Celestial, an elemental, a fey, a fiend, or an Undead. The creature you touch is no longer charmed, frightened, or possessed by such creatures.Dismissal. As your action, make a melee spell Attack against a Celestial, an elemental, a fey, a fiend, or an Undead you can reach. On a hit, you attempt to drive the creature back to its home plane. The creature must succeed on a Charisma saving throw or be sent back to its home plane (if it isn't there already). If they aren't on their home plane, undead are sent to the Shadowfell, and fey are sent to the Feywild.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":14,"scaling":"spell"},"level":5,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Holy water or powdered silver and iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.TkJ8Wtg1L7TZtspm"}},"img":"icons/magic/air/air-burst-spiral-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234146,"modifiedTime":1661791116346,"lastModifiedBy":"dnd5ebuilder0000"}},{"name":"Entangle","type":"spell","img":"icons/magic/nature/vines-thorned-curled-glow-green.webp","system":{"description":{"value":"Grasping weeds and vines sprout from the ground in a 20-foot square starting from a point within range. For the Duration, these Plants turn the ground in the area into difficult terrain.A creature in the area when you cast the spell must succeed on a Strength saving throw or be Restrained by the entangling Plants until the spell ends. A creature restrained by the plants can use its action to make a Strength check against your spell save DC. On a success, it frees itself.When the spell ends, the conjured Plants wilt away.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":14,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[],"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gMrWeG8fMDPRFiVe"}},"_id":"gMrWeG8fMDPRFiVe","folder":null,"sort":0,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234191,"modifiedTime":1661791116346,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232710,"modifiedTime":1672596095722,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"GP8JMSDugRxuLOD2","name":"Adult Green Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":207,"min":0,"max":207,"temp":0,"tempmax":0,"formula":"18d12 + 90"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":15,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Adult Green Dragon","displayName":0,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"iSMssiqxkZFEt2ch","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dOplnQbE1lIu7Rt8","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dhanHpeimPZOKFTP","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZJR61a1mg2JHdHE0","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+11 to hit,, 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 7 (2d6) poison damage.\nThe Adult Green Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["2d6","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"I4ycwNCADZj1bun0","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.The Adult Green Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HwjAaKkl4iBsFB24","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.The Adult Green Dragon attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"k9uTT39kBp2sDDUE","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours .Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":16,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WAglSb6wsm8V1iCd","name":"Poison Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"The dragon exhales poisonous gas in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 56 (16d6) poison damage on a failed save, or half as much damage on a successful one.The dragon exhales poisonous gas in a 60-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["16d6","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JAEclghgOT24pQD9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jls6tBzceKBhLIJ9","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hj8x2cAmsCz65VMp","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jp6U9gVAnEqYxjal","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nThe dragon makes a tail attack.\n\nThe dragon slams its long tail against its foe!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mjuHphDtsXPuLymt","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"\nThe dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 19 Dexterity saving throw or take 15 (2d6+6) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.\n\nThe dragon beats its wings!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":19,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"N0yg5M0tfiYJqxjz","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7HzyoXYLdWSACePR","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232713,"modifiedTime":1672596095831,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"GlaCGcgIP6YjBjGc","name":"Noble","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":9,"min":0,"max":9,"temp":0,"tempmax":0,"formula":"2d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Alignment","race":"","type":{"value":"humanoid","subtype":"Any Race","swarm":"","custom":""},"environment":"","cr":0.125,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"any two languages"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Noble","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"87olpriernjyGLbC","name":"Breastplate","type":"equipment","img":"icons/equipment/chest/breastplate-layered-steel-black.webp","system":{"description":{"value":"This armor consists of a fitted metal chest piece worn with supple leather. Although it leaves the legs and arms relatively unprotected, this armor provides good protection for the wearer's vital organs while leaving the wearer relatively unencumbered.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":20,"price":{"value":400,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.SK2HATQ4abKUlV8i"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"f12lOXuMaI21HDrz","name":"Rapier","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 5 (1d8 + 1) piercing damage.The Noble attacks with its Rapier.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":true,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Tobce1hexTnDk4sV"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HhLmdqeivyDnsemN","name":"Parry","type":"feat","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"The noble adds 2 to its AC against one melee Attack that would hit it. To do so, the noble must see the attacker and be wielding a melee weapon.The noble adds 2 to its AC against one melee Attack that would hit it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kfi26Jy0VLXv9TTm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232715,"modifiedTime":1672596095876,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"GpeQYtlo8oGvGlkM","name":"Grimlock","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":"10 ft. while deafened (blind beyond this radius)"},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"humanoid","subtype":"Grimlock","swarm":"","custom":""},"environment":"Underdark","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["blinded"],"custom":""},"languages":{"value":["undercommon"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Grimlock","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"MqBAJfU738aXBgBE","name":"Blind Senses","type":"feat","img":"icons/magic/control/hypnosis-mesmerism-eye.webp","system":{"description":{"value":"The grimlock can't use its blindsight while deafened and unable to smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.7nbokvWfSckl2iWz"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GUsD8GdOLhuqFUih","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The grimlock has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"B7KYqupW3iRUpWAU","name":"Stone Camouflage","type":"feat","img":"icons/environment/settlement/stone-stairs.webp","system":{"description":{"value":"The grimlock has advantage on Dexterity (Stealth) checks made to hide in rocky terrain.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.j1cPfWFNvxGoex9Z"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"aEWZXCiyNusgb3Ro","name":"Spiked Bone Club","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 5 (1d4 + 3) bludgeoning damage plus 2 (1d4) piercing damage.The Grimlock attacks with its Spiked Bone Club.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","bludgeoning"],["1d4","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232716,"modifiedTime":1672596095914,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"GxgIVRX5GbVTifiF","name":"Giant Scorpion","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":52,"min":0,"max":52,"temp":0,"tempmax":0,"formula":"7d10 + 14"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":3,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Scorpion","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"wpqra38jsZPRAuov","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The scorpion makes three attacks: two with its claws and one with its sting.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OJ2b64O3e1nni21W","name":"Claw","type":"weapon","img":"icons/commodities/claws/claw-pincer-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 6 (1d8 + 2) bludgeoning damage.\nThe target is grappled (escape DC 12). The scorpion has two claws, each of which can grapple only one target.\n\nThe Giant Scorpion attacks with its Claw. The target is grappled.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":false,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"q6uVUHWyzht5OpwV","name":"Sting","type":"weapon","img":"icons/creatures/abilities/stinger-poison-green.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 7 (1d10 + 2) piercing damage.\nThe target must make a DC 12 Constitution saving throw, taking 22 (4d10) poison damage on a failed save, or half as much damage on a successful one.\n\nThe Giant Scorpion attacks with its Sting. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"4d10","save":{"ability":"con","dc":12,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":false,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232718,"modifiedTime":1672596095952,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"HB49mCOVBXwWeKWQ","name":"Orc","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":15,"min":0,"max":15,"temp":0,"tempmax":0,"formula":"2d8 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"humanoid","subtype":"Orc","swarm":"","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","orc"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Orc","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"MY9hQkOnh2onjZEh","name":"Hide Armor","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":12,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.n1V07puo0RQxPGuF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Go8ESMzuWcYaFcqE","name":"Aggressive","type":"feat","img":"icons/creatures/abilities/mouth-teeth-tongue-purple.webp","system":{"description":{"value":"As a bonus action, the orc can move up to its speed toward a hostile creature that it can see.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.7NML6SkyvOsZ17iq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bGmBlXrvTBQgPMBJ","name":"Greataxe","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 9 (1d12 + 3) slashing damage.The Orc attacks with its Greataxe.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":30,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.1Lxk6kmoRhG8qQ0u"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SrRZ2hBUcaXZiRab","name":"Javelin","type":"weapon","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"Melee or Ranged Weapon Attack: +5 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 6 (1d6 + 3) piercing damage.The Orc attacks with its Javelin.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":true},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DWLMnODrnHn8IbAG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232720,"modifiedTime":1672596095993,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"HPUO3weiwRQnql0d","name":"Cloaker","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":78,"min":0,"max":78,"temp":0,"tempmax":0,"formula":"12d10 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":40,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Neutral","race":"","type":{"value":"aberration","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":8,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["deep","undercommon"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Cloaker","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"afXMbT7smRaCJbhc","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one creature. Hit: 10 (2d6 + 3) piercing damage, and if the target is Large or smaller, the cloaker attaches to it. If the cloaker has advantage against the target, the cloaker attaches to the target's head, and the target is blinded and unable to breathe while the cloaker is attached. While attached, the cloaker can make this attack only against the target and has advantage on the attack roll. The cloaker can detach itself by spending 5 feet of its movement. A creature, including the target, can take its action to detach the cloaker by succeeding on a DC 16 Strength check.The Cloaker attacks with its Bite. A creature, including the target, can take its action to detach the cloaker by succeeding on a Strength check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Dfy6ujJALd2FPxNy","name":"Damage Transfer","type":"feat","img":"icons/magic/water/strike-ice-blades.webp","system":{"description":{"value":"While attached to a creature, the cloaker takes only half the damage dealt to it (rounded down) and that creature takes the other half.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.0npeEcwmiVMdwGMV"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"i7LEQhKLh7yPIldc","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the cloaker remains motionless without its underside exposed, it is indistinguishable from a dark leather cloak.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DxtSFI4LS6w1gzQP","name":"Light Sensitivity","type":"feat","img":"icons/magic/time/day-night-sunset-sunrise.webp","system":{"description":{"value":"While in bright light, the cloaker has disadvantage on attack rolls and Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.2l557y06401lwsqs"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"E76WCem1q8Dt8qkE","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The cloaker makes two attacks: one with its bite and one with its tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZRvdvg8n7pQdJ1Mj","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 10 ft., one creature. Hit: 7 (1d8 + 3) slashing damage.The Cloaker attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Jiua0A8CFeKc7Zun","name":"Moan","type":"feat","img":"icons/magic/death/projectile-skull-flaming-green.webp","system":{"description":{"value":"Each creature within 60 feet of the cloaker that can hear its moan and that isn't an aberration must succeed on a DC 13 Wisdom saving throw or become frightened until the end of the cloaker's next turn. If a creature's saving throw is successful, the creature is immune to the cloaker's moan for the next 24 hours.Each creature within 60 feet of the cloaker that can hear its moan and that isn't an aberration must make a Wisdom saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"radius"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"cha"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VvXrTnB2FscxqbG3"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UYqrfrW4pmBsmtiQ","name":"Phantasms","type":"feat","img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","system":{"description":{"value":"The cloaker magically creates three illusory duplicates of itself if it isn't in bright light. The duplicates move with it and mimic its actions, shifting position so as to make it impossible to track which cloaker is the real one. If the cloaker is ever in an area of bright light, the duplicates disappear.\nWhenever any creature targets the cloaker with an attack or a harmful spell while a duplicate remains, that creature rolls randomly to determine whether it targets the cloaker or one of the duplicates. A creature is unaffected by this magical effect if it can't see or if it relies on senses other than sight.\nA duplicate has the cloaker's AC and uses its saving throws. If an attack hits a duplicate, or if a duplicate fails a saving throw against an effect that deals damage, the duplicate disappears.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.t0ojYPOlKEbPpYNc"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232722,"modifiedTime":1672596096080,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"HlddcPm4cWptj3ka","name":"Tyrannosaurus Rex","type":"npc","img":"","system":{"abilities":{"str":{"value":25,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":136,"min":0,"max":136,"temp":0,"tempmax":0,"formula":"13d12 + 52"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":8,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Tyrannosaurus Rex","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.3,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"O8pEyHMhxCwROJ6O","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 33 (4d12 + 7) piercing damage. If the target is a Medium or smaller creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the tyrannosaurus can't bite another target.The Tyrannosaurus Rex attacks with its Bite. If the target is a Medium or smaller creature, it is grappled. Until this grapple ends, the target is restrained, and the tyrannosaurus can't bite another target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d12 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Fi45qe2ncVZHNq43","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The tyrannosaurus makes two attacks: one with its bite and one with its tail. It can't make both attacks against the same target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jw9SyNUWRzgHe37B","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.The Tyrannosaurus Rex attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232724,"modifiedTime":1672596096123,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Hm4o2FgPZsdbXjLq","name":"Flesh Golem","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":9,"calc":"natural","formula":""},"hp":{"value":93,"min":0,"max":93,"temp":null,"tempmax":0,"formula":"11d8 + 44"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"construct","subtype":"","swarm":"","custom":""},"environment":"","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["bludgeoning","lightning","piercing","poison","slashing"],"bypasses":["ada","mgc"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","paralyzed","petrified","poisoned","exhaustion"],"custom":""},"languages":{"value":["custom"],"custom":"understands the languages of its creator but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Flesh Golem","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"AwiZrSjLzs3aNC33","name":"Berserk","type":"feat","img":"icons/creatures/reptiles/lizard-mouth-glowing-red.webp","system":{"description":{"value":"Whenever the golem starts its turn with 40 hit points or fewer, roll a d6. On a 6, the golem goes berserk. On each of its turns while berserk, the golem attacks the nearest creature it can see. If no creature is near enough to move to and attack, the golem attacks an object, with preference for an object smaller than itself. Once the golem goes berserk, it continues to do so until it is destroyed or regains all its hit points. The golem's creator, if within 60 feet of the berserk golem, can try to calm it by speaking firmly and persuasively. The golem must be able to hear its creator, who must take an action to make a DC 15 Charisma (Persuasion) check. If the check succeeds, the golem ceases being berserk. If it takes damage while still at 40 hit points or fewer, the golem might go berserk again.The golem goes berserk. On each of its turns while berserk, the golem attacks the nearest creature it can see. If no creature is near enough to move to and attack, the golem attacks an object, with preference for an object smaller than itself.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d6","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.QOWoa60SwvsQJifN"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ee9WvQyqy1lRYtuj","name":"Aversion of Fire","type":"feat","img":"icons/magic/fire/projectile-wave-arrow.webp","system":{"description":{"value":"If the golem takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn.If the golem takes fire damage, it has disadvantage on some rolls.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.uxFQ3TxO3isW5WKK"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NnEyJiIMUFY8ovfl","name":"Immutable Form","type":"feat","img":"icons/magic/unholy/orb-beam-pink.webp","system":{"description":{"value":"The golem is immune to any spell or effect that would alter its form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.MFuiImIvLzYA3osc"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"27csbMlmaIFdMcTA","name":"Lightning Absorption","type":"feat","img":"icons/magic/lightning/bolt-strike-blue.webp","system":{"description":{"value":"Whenever the golem is subjected to lightning damage, it takes no damage and instead regains a number of hit points equal to the lightning damage dealt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KTsFgSQlDetDDm1f"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EAWR3fONAFox5cvp","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The golem has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"R8MFu1EkI4xBgXXr","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The golem's weapon attacks are magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mCNNxLGdzy54omRW","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The golem makes two slam attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mjn0iMGrjGTOn42w","name":"Slam","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.The Flesh Golem attacks with its Slam.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232725,"modifiedTime":1672596096160,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Hn8FFLEzscgT7azz","name":"Giant Centipede","type":"npc","img":"","system":{"abilities":{"str":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":4,"min":0,"max":4,"temp":0,"tempmax":0,"formula":"1d6 + 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Centipede","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"8EvqvqLumOBhrjeD","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage.\nThe target must succeed on a DC 11 Constitution saving throw or take 10 (3d6) poison damage. If the poison damage reduces the target to 0 hit points, the target is stable but poisoned for 1 hour, even after regaining hit points, and is paralyzed while poisoned in this way.\n\nThe Giant Centipede attacks with its Bite. The target must succeed on a DC 11 Constitution saving throw or take poison damage. If the poison damage reduces the target to 0 hit points, the target is stable but poisoned for 1 hour, even after regaining hit points, and is paralyzed while poisoned in this way.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":"3d6"},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232727,"modifiedTime":1672596096198,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"I2x01hzOjVN4NUjf","name":"Lizard","type":"npc","img":"","system":{"abilities":{"str":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":2,"min":0,"max":2,"temp":0,"tempmax":0,"formula":"1d4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":20,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":30,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Lizard","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"AlO7NtMS64z0faPM","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+0 to hit,, 5 ft., one target. Hit: 1 piercing damage.\nThe Lizard attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232729,"modifiedTime":1672596096235,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"IZMbiAHqQpzPo0CX","name":"Black Dragon Wyrmling","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":33,"min":0,"max":33,"temp":0,"tempmax":0,"formula":"6d8 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["acid"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Black Dragon Wyrmling","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ABS9Om2RejM5wrRF","name":"Acid Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"The dragon exhales acid in a 15-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 22 (5d8) acid damage on a failed save, or half as much damage on a successful one.Each creature in that line must make a DC 11 Dexterity saving throw, taking 22 (5d8) acid damage on a failed save, or half as much damage on a successful one.The dragon exhales acid in a 15-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8","acid"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zjcGly9P3Gn9MXt7"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"50udgXso5dIQmQfv","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dmLvn6VGNA20rMvC","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) acid damage.The Black Dragon Wyrmling attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"],["1d4","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232730,"modifiedTime":1672596096280,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"IiEDPMWqBlzkggYD","name":"Azer","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":"15"},"hp":{"value":39,"min":0,"max":39,"temp":0,"tempmax":0,"formula":"6d8 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Neutral","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["ignan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Azer","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":10,"coloration":1,"dim":20,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"sSs3hSzkKBMNBgTs","name":"Shield","type":"equipment","img":"icons/equipment/shield/oval-wooden-boss-steel.webp","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"P0pbiook7Q79UYqQ","name":"Heated Body","type":"feat","img":"icons/magic/earth/volcano-explosion-lava-yellow.webp","system":{"description":{"value":"A creature that touches the azer or hits it with a melee attack while within 5 feet of it takes 5 (1d10) fire damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iFNpsEMJT66eLoat"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WRygAnkpMeaqiw70","name":"Heated Weapons","type":"feat","img":"icons/skills/melee/strike-sword-blood-red.webp","system":{"description":{"value":"\nWhen the azer hits with a metal melee weapon, it deals an extra 3 (1d6) fire damage (included in the attack).\n\nWhen the azer hits with a metal melee weapon, it deals extra fire damage (included in the attack).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.i3viKtKcSVeWLJFJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"oPddwb4BScCEDanp","name":"Illumination","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"The azer sheds bright light in a 10-foot radius and dim light for an additional 10 ft.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.F3gzBbCW7U14zkBF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YvzdCGQeCV1XOcUt","name":"Warhammer","type":"weapon","img":"icons/weapons/hammers/hammer-drilling-spiked.webp","system":{"description":{"value":"\n\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage, or 8 (1d10 + 3) bludgeoning damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.\n\n\nA heavy metal hammer capable of being wielded with a single hand with a shield or in two hands to deliver crushing concussive blows.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","bludgeoning"],["1d6","fire"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.F0Df164Xv1gWcYt0"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232732,"modifiedTime":1672596096323,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Ixo5shumxy4I9qyD","name":"Giant Toad","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":39,"min":0,"max":39,"temp":0,"tempmax":0,"formula":"6d10 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":30,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Toad","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"rNhsbUDaAVVoxquv","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The toad can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zEtaamYVRSqu81fy","name":"Standing Leap","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The toad's long jump is up to 20 ft. and its high jump is up to 10 ft., with or without a running start.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.f4yvSah35ixQOswD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lYSWskOMRCVLyWLZ","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 5 (1d10) poison damage.\nThe target is grappled (escape DC 13). Until this grapple ends, the target is restrained, and the toad can't bite another target.\n\nThe Giant Toad attacks with its Bite. The target is grappled. Until this grapple ends, the target is restrained, and the toad can't bite another target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"],["1d10","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6aBDwlIsxceFMXxL","name":"Swallow","type":"feat","img":"icons/creatures/abilities/mouth-teeth-tongue-purple.webp","system":{"description":{"value":"\nThe toad makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is swallowed, and the grapple ends.\nThe swallowed target is blinded and restrained, it has total cover against attacks and other effects outside the toad, and it takes 10 (3d6) acid damage at the start of each of the toad's turns. The toad can have only one target swallowed at a time. If the toad dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 5 ft. of movement, exiting prone.\n\nThe Giant Toad attacks with its Swallow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.aH5ncM30tP8tPQ24"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232734,"modifiedTime":1672596096363,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"IyIybE5t2adMEVUM","name":"Ghast","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":36,"min":0,"max":36,"temp":0,"tempmax":0,"formula":"8d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["necrotic"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","poisoned","exhaustion"],"custom":""},"languages":{"value":["common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ghast","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"gBiHo206x7uGoySO","name":"Stench","type":"feat","img":"icons/commodities/tech/smoke-bomb-purple.webp","system":{"description":{"value":"Any creature that starts its turn within 5 ft. of the ghast must succeed on a DC 10 Constitution saving throw or be poisoned until the start of its next turn. On a successful saving throw, the creature is immune to the ghast's Stench for 24 hours.Any creature that starts its turn within 5 ft. of the ghast must succeed on a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":10,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.OsPhT7jA5LlvUA6e"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WjqNhFTYP9w4gGHd","name":"Turn Defiance","type":"feat","img":"icons/creatures/abilities/dragon-breath-purple.webp","system":{"description":{"value":"The ghast and any ghouls within 30 ft. of it have advantage on saving throws against effects that turn undead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.oi1sikVSw463lQlp"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nSgLkorv2oln5BIt","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one creature. Hit: 12 (2d8 + 3) piercing damage.The Ghast attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"-2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ricjyd1SKzeQ5gQE","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage. If the target is a creature other than an undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.The Ghast attacks with its Claws. If the target is a creature other than an undead, it must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232735,"modifiedTime":1672596096402,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"J1QVPd8POvcPaqx4","name":"Silver Dragon Wyrmling","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":45,"min":0,"max":45,"temp":0,"tempmax":0,"formula":"6d8 + 18"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":10,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["cold"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Silver Dragon Wyrmling","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"x7uPzThV97uQxTun","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.The Silver Dragon Wyrmling attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"W386vxVMsDz3Gr9l","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Cold Breath.** The dragon exhales an icy blast in a 15-foot cone. Each creature in that area must make a DC 13 Constitution saving throw, taking 18 (4d8) cold damage on a failed save, or half as much damage on a successful one.\n**Paralyzing Breath.** The dragon exhales paralyzing gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DRZQX4YLhabLlxIR","name":"Cold Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\n**Cold Breath.** The dragon exhales an icy blast in a 15-foot cone. Each creature in that area must make a DC 13 Constitution saving throw, taking 18 (4d8) cold damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales an icy blast in a 15-foot cone. Each creature in that area must make a Constitution saving throw","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iHOaiOqwUWIfCljJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lq8qwetpVyoHKCyi","name":"Paralyzing Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\n**Paralyzing Breath.** The dragon exhales paralyzing gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon exhales paralyzing gas in a 15-foot cone. Each creature in that area make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.BiasCPpNsaAVKzIj"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232737,"modifiedTime":1672596096455,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"J8xjoG4Dxb8WkHtV","name":"Veteran","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":58,"min":0,"max":58,"temp":0,"tempmax":0,"formula":"9d8 + 18"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Alignment","race":"","type":{"value":"humanoid","subtype":"Any Race","swarm":"","custom":""},"environment":"","cr":3,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"any one language (usually Common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Veteran","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"0otc04A190Q8hTBK","name":"Splint Armor","type":"equipment","img":"icons/equipment/chest/breastplate-layered-steel.webp","system":{"description":{"value":"This armor is made of narrow vertical strips of metal riveted to a backing of leather that is worn over cloth padding. Flexible chain mail protects the joints.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":60,"price":{"value":200,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":17,"type":"heavy","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":15,"stealth":true,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.cKpJmsJmU8YaiuqG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WaEunPCFG0EddNTt","name":"Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\nThe Veteran attacks with their Longsword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wziRdUn3HafZKJ8o","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The veteran makes two longsword attacks. If it has a shortsword drawn, it can also make a shortsword attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"cXf5q5xw30ICGxZg","name":"Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.The Veteran attacks with its Shortsword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.osLzOwQdPtrK3rQH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6jQ7YUixkwBq2Fh8","name":"Heavy Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-blue.webp","system":{"description":{"value":"Ranged Weapon Attack: +3 to hit, range 100/400 ft., one target. Hit: 6 (1d10 + 1) piercing damage.The Veteran attacks with its Heavy Crossbow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":100,"long":400,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 +@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":true,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.RmP0mYRn2J7K26rX"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232739,"modifiedTime":1672596096501,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"J9hgSaZODGjrNl9B","name":"Wereboar","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":78,"min":0,"max":78,"temp":null,"tempmax":0,"formula":"12d8 + 24"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"humanoid","subtype":"Human, Shapechanger","swarm":"","custom":""},"environment":"Grassland","cr":4,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common"],"custom":"(can't speak in boar form)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Wereboar","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"TizBVS6hRuBa8JYY","name":"Charge (Boar or Hybrid Form Only)","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"If the wereboar moves at least 15 feet straight toward a target and then hits it with its tusks on the same turn, the target takes an extra 7 (2d6) slashing damage. If the target is a creature, it must succeed on a DC 13 Strength saving throw or be knocked prone.If the wereboar moves at least 15 feet straight toward a target and then hits it with its tusks on the same turn, the target takes extra slashing damage. If the target is a creature, it must make aStrength saving throw or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","slashing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"599WNlvXk7snLj4O","name":"Multiattack (Humanoid or Hybrid Form Only)","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The wereboar makes two attacks, only one of which can be with its tusks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NwivB5zd15WhthVJ","name":"Relentless","type":"feat","img":"icons/magic/death/skull-horned-goat-pentagram-red.webp","system":{"description":{"value":"If the wereboar takes 14 damage or less that would reduce it to 0 hit points, it is reduced to 1 hit point instead.If the wereboar takes damage that would reduce it to 0 hit points, it is reduced to 1 hit point instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.8FX2KlWyBAKEYGzs"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zzskoOXzAiMDZfbc","name":"Shapechanger","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The wereboar can use its action to polymorph into a boar-humanoid hybrid or into a boar, or back into its true form, which is humanoid. Its statistics, other than its AC, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies.The wereboar can use its action to polymorph, or return to its true form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3TD2NpdjIDJxeLl9","name":"Tusks (Boar or Hybrid Form Only)","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage. If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with wereboar lycanthropy.The Wereboar attacks with its Tusks. If the target is a humanoid, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dtdXnvp5cptFkGPu","name":"Maul (Humanoid or Hybrid Form Only)","type":"weapon","img":"icons/weapons/maces/mace-spiked-wood-grey.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.\n\nThe Wereboar attacks with its Maul.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232741,"modifiedTime":1672596096549,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"JW8bXggOMBx1S6tF","name":"Baboon","type":"npc","img":"","system":{"abilities":{"str":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":3,"min":0,"max":3,"temp":0,"tempmax":0,"formula":"1d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Baboon","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"yb6o6KfKlg9bGhqA","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The baboon has advantage on an attack roll against a creature if at least one of the baboon's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Baboon","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EXVZptAEHLscbODF","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+1 to hit,, 5 ft., one target. Hit: 1 (1d4 - 1) piercing damage.\nThe Baboon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232742,"modifiedTime":1672596096591,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"K15Yl8JmB5iPircc","name":"Druid","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":27,"min":0,"max":27,"temp":0,"tempmax":0,"formula":"5d8 + 5"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"wis"},"details":{"biography":{"value":"","public":""},"alignment":"any","race":"","type":{"value":"humanoid","subtype":"Any Race","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":4,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["druidic","custom"],"custom":"any two languages"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":4,"override":null},"spell2":{"value":3,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Druid","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"07sdy4qaaW4MaB8W","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"\nThe druid is a 4th-level spellcaster. Its spellcasting ability is Wisdom (spell save DC 12, +4 to hit with spell attacks).\nIt has the following druid spells prepared:\nCantrips (at will): druidcraft, produce flame, shillelagh\n 1st level (4 slots): entangle, longstrider, speak with animals, thunderwave\n2nd level (3 slots): animal messenger, barkskin\n\nThe druid is a spellcaster. Its spellcasting ability is Wisdom.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KUP8WEfLxlcY7K2x","name":"Quarterstaff","type":"weapon","img":"icons/weapons/staves/staff-simple-gold.webp","system":{"description":{"value":"\nMelee Weapon Attack: +2 to hit (+4 to hit with shillelagh), reach 5 ft., one target. Hit: 3 (1d6) bludgeoning damage, or 6 (1d8 + 2) bludgeoning damage with shillelagh or if wielded with two hands.\nThe Druid attacks with its Quarterstaff.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.g2dWN7PQiMRYWzyk"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SbSvZKkJASyk8jKo","name":"Druidcraft","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Whispering to the spirits of Nature, you create one of the following Effects within range:\n\nYou create a tiny, harmless sensory effect that predicts what the weather will be at your location for the next 24 hours. The effect might manifest as a golden orb for clear skies, a cloud for rain, Falling snowflakes for snow, and so on. This effect persists for 1 round.\nYou instantly make a flower blossom, a seed pod open, or a leaf bud bloom.\nYou create an Instantaneous, harmless sensory effect, such as Falling leaves, a puff of wind, the sound of a small animal, or the faint odor of skunk. The effect must fit in a 5-foot cube.\nYou instantly light or snuff out a Candle, a torch, or a small campfire.\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.SbSvZKkJASyk8jKo"}},"img":"icons/magic/nature/vines-thorned-glow-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234141,"modifiedTime":1661791116365,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"eCPQuQkIabFKTl9u","name":"Produce Flame","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A flickering flame appears in your hand. The flame remains there for the Duration and harms neither you nor your Equipment. The flame sheds bright light in a 10-foot radius and dim light for an additional 10 feet. The spell ends if you dismiss it as an action or if you cast it again.You can also Attack with the flame, although doing so ends the spell. When you cast this spell, or as an action on a later turn, you can hurl the flame at a creature within 30 feet of you. Make a ranged spell Attack. On a hit, the target takes 1d8 fire damage.This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.eCPQuQkIabFKTl9u"}},"img":"icons/magic/fire/explosion-fireball-medium-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234183,"modifiedTime":1661791116365,"lastModifiedBy":"dnd5ebuilder0000"}},{"name":"Entangle","type":"spell","img":"icons/magic/nature/vines-thorned-curled-glow-green.webp","system":{"description":{"value":"Grasping weeds and vines sprout from the ground in a 20-foot square starting from a point within range. For the Duration, these Plants turn the ground in the area into difficult terrain.A creature in the area when you cast the spell must succeed on a Strength saving throw or be Restrained by the entangling Plants until the spell ends. A creature restrained by the plants can use its action to make a Strength check against your spell save DC. On a success, it frees itself.When the spell ends, the conjured Plants wilt away.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":12,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[],"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gMrWeG8fMDPRFiVe"}},"_id":"gMrWeG8fMDPRFiVe","folder":null,"sort":0,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234191,"modifiedTime":1661791116366,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"B0pnIcc52O6G8hi8","name":"Longstrider","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature. The target's speed increases by 10 feet until the spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of dirt","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.B0pnIcc52O6G8hi8"}},"img":"icons/magic/air/wind-stream-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234090,"modifiedTime":1661791116366,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"aL1F8fvYLtNzUbKu","name":"Speak with Animals","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You gain the ability to comprehend and verbally communicate with beasts for the duration. The knowledge and awareness of many beasts is limited by their intelligence, but at minimum, beasts can give you information about nearby locations and monsters, including whatever they can perceive or have perceived within the past day. You might be able to persuade a beast to perform a small favor for you, at the DM's discretion.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.aL1F8fvYLtNzUbKu"}},"img":"icons/magic/nature/wolf-paw-glow-small-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234167,"modifiedTime":1661791116366,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WTbOQBsarsL1LuXJ","name":"Thunderwave","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A wave of thunderous force sweeps out from you. Each creature in a 15-foot cube originating from you must make a Constitution saving throw. On a failed save, a creature takes 2d8 thunder damage and is pushed 10 feet away from you. On a successful save, the creature takes half as much damage and isn't pushed.In addition, unsecured objects that are completely within the area of effect are automatically pushed 10 feet away from you by the spell's effect, and the spell emits a thunderous boom audible out to 300 feet.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cube"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","thunder"]],"versatile":""},"formula":"","save":{"ability":"con","dc":12,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.WTbOQBsarsL1LuXJ"}},"img":"icons/magic/lightning/bolt-forked-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234152,"modifiedTime":1661791116367,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"X8w9EzYLGc4vQ1H2","name":"Animal Messenger","ownership":{"default":0},"type":"spell","system":{"description":{"value":"By means of this spell, you use an animal to deliver a message. Choose a Tiny beast you can see within range, such as a squirrel, a blue jay, or a bat. You specify a location, which you must have visited, and a recipient who matches a general description, such as \"a man or woman dressed in the uniform of the town guard\" or \"a red-haired dwarf wearing a pointed hat.\" You also speak a message of up to twenty-five words. The target beast travels for the duration of the spell toward the specified location, covering about 50 miles per 24 hours for a flying messenger, or 25 miles for other animals.When the messenger arrives, it delivers your message to the creature that you described, replicating the sound of your voice. The messenger speaks only to a creature matching the description you gave. If the messenger doesn't reach its destination before the spell ends, the message is lost, and the beast makes its way back to where you cast this spell.At Higher Levels. If you cast this spell using a spell slot of 3rd level or higher, the duration of the spell increases by 48 hours for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A morsel of food.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.X8w9EzYLGc4vQ1H2"}},"img":"icons/magic/nature/wolf-paw-glow-small-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234156,"modifiedTime":1661791116367,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"VzgFzcmocr1X1cp4","name":"Shillelagh","ownership":{"default":0},"type":"spell","system":{"description":{"value":"The wood of a club or quarterstaff you are holding is imbued with nature's power. For the duration, you can use your spellcasting ability instead of Strength for the attack and damage rolls of melee attacks using that weapon, and the weapon's damage die becomes a d8. The weapon also becomes magical, if it isn't already. The spell ends if you cast it again or if you let go of the weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A shamrock leaf, and a club or quarterstaff","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.VzgFzcmocr1X1cp4"}},"img":"icons/magic/fire/dagger-rune-enchant-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234149,"modifiedTime":1661791116367,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"JPwIEfgUPVebr5AH","name":"Barkskin","type":"spell","img":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","system":{"description":{"value":"You touch a willing creature. Until the spell ends, the target's skin has a rough, bark-like appearance, and the target's AC can't be less than 16, regardless of what kind of armor it is wearing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A handful of oak bark","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"uM6rgctYpcbCVSkn","flags":{},"changes":[{"key":"system.attributes.ac.formula","value":"16","mode":5,"priority":null},{"key":"system.attributes.ac.calc","value":"custom","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":3600,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","label":"Barkskin","origin":"Item.VQMKMnQDw5rzL0zp","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.JPwIEfgUPVebr5AH"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234113,"modifiedTime":1661791116367,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"uM6rgctYpcbCVSkn","flags":{},"changes":[{"key":"system.attributes.ac.formula","value":"16","mode":5,"priority":null},{"key":"system.attributes.ac.calc","value":"custom","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":678,"seconds":3600,"combat":null,"rounds":null,"turns":null,"startRound":2,"startTurn":1},"icon":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","label":"Barkskin","origin":"Compendium.dnd5e.monsters.K15Yl8JmB5iPircc.Item.JPwIEfgUPVebr5AH","tint":null,"transfer":false,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232744,"modifiedTime":1672596096691,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"K4vsSlHqbBAHUDHY","name":"Hydra","type":"npc","img":"","system":{"abilities":{"str":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":172,"min":0,"max":172,"temp":0,"tempmax":0,"formula":"15d12 + 75"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Swamp","cr":8,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Hydra","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"xr59rWl3oCOLdQBQ","name":"Hold Breath","type":"feat","img":"icons/magic/water/orb-water-transparent.webp","system":{"description":{"value":"The hydra can hold its breath for 1 hour.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lwC6jwy9bXberyWo"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fsAeJDaI0a6sBeFk","name":"Multiple Heads","type":"feat","img":"icons/skills/melee/strike-sword-stabbed-brown.webp","system":{"description":{"value":"\nThe hydra has five heads. While it has more than one head, the hydra has advantage on saving throws against being blinded, charmed, deafened, frightened, stunned, and knocked unconscious. \nWhenever the hydra takes 25 or more damage in a single turn, one of its heads dies. If all its heads die, the hydra dies.\nAt the end of its turn, it grows two heads for each of its heads that died since its last turn, unless it has taken fire damage since its last turn. The hydra regains 10 hit points for each head regrown in this way.\n\nThe hydra has five heads. While it has more than one head, the hydra has advantage on saving throws against being blinded, charmed, deafened, frightened, stunned, and knocked unconscious.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.dvSoAF3bOeUeIrxf"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bE965DuMt1ReAulm","name":"Reactive Heads","type":"feat","img":"icons/magic/death/skull-trio-badge-purple.webp","system":{"description":{"value":"For each head the hydra has beyond one, it gets an extra reaction that can be used only for opportunity attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.miIjsa984tZ0Mil6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"cLcVpNuZOHIxLfPP","name":"Wakeful","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"While the hydra sleeps, at least one of its heads is awake.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.T2gLBBjrHTbLTdGc"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"USl5HDilKxVI4BHh","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The hydra makes as many bite attacks as it has heads.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fYE4f0Oa2I0MetId","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+8 to hit,, 10 ft., one target. Hit: 10 (1d10 + 5) piercing damage.The Hydra attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232746,"modifiedTime":1672596096742,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"K5cKmPoFkpuOotis","name":"Ape","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":19,"min":0,"max":19,"temp":0,"tempmax":0,"formula":"3d8 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ape","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"hbxC3Wg3H8cSIvM0","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The ape makes two fist attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jxC1VNaCf2VXlD6C","name":"Fist","type":"weapon","img":"icons/magic/fire/flame-burning-fist-strike.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) bludgeoning damage.\nThe Ape attacks with its Fist.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NsTx3MUaYkEI2t8M","name":"Rock","type":"weapon","img":"icons/magic/earth/projectile-stone-ball-brown.webp","system":{"description":{"value":"\nRanged Weapon Attack: +5 to hit, range 25/50 ft., one target. Hit: 6 (1d6 + 3) bludgeoning damage.\nThe Ape attacks with its Rock.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":25,"long":50,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":true,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232749,"modifiedTime":1672596096785,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KC4tYOolARhajP18","name":"Swarm of Centipedes","type":"npc","img":"","system":{"abilities":{"str":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"5d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":20,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"tiny","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","grappled","paralyzed","petrified","prone","restrained","stunned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Swarm of Centipedes","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"jGCUdUnQs3nyBZLD","name":"Swarm","type":"feat","img":"icons/creatures/invertebrates/fly-wasp-mosquito-green.webp","system":{"description":{"value":"The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Bats","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eL3OJmc4FuetizKO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"E6zkvUOJARx1t0nc","name":"Bites","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 0 ft., one target in the swarm's space. Hit: 10 (4d4) piercing damage, or 5 (2d4) piercing damage if the swarm has half of its hit points or fewer.\nA creature reduced to 0 hit points by a swarm of centipedes is stable but poisoned for 1 hour, even after regaining hit points, and paralyzed while poisoned in this way.\n\nThe Swarm of Centipedes attacks with a flurry of Bites.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d4","piercing"]],"versatile":"2d4"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232750,"modifiedTime":1672596096826,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KCvt4FdOVJbuZ3T0","name":"Tarrasque","type":"npc","img":"","system":{"abilities":{"str":{"value":30,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":30,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":25,"calc":"natural","formula":""},"hp":{"value":676,"min":0,"max":676,"temp":null,"tempmax":0,"formula":"33d20 + 330"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":120,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"Titan","swarm":"","custom":""},"environment":"Urban","cr":30,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"grg","di":{"value":["bludgeoning","fire","piercing","poison","slashing"],"bypasses":["mgc"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","paralyzed","poisoned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Tarrasque","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Lq4Toyg4sjkdU4e2","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the tarrasque fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":3},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QmAWameRMoj0gDKt","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The tarrasque has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tE9TjxIMLnqDisjv","name":"Reflective Carapace","type":"feat","img":"icons/magic/defensive/shield-barrier-flaming-pentagon-orange-purple.webp","system":{"description":{"value":"Any time the tarrasque is targeted by a magic missile spell, a line spell, or a spell that requires a ranged attack roll, roll a d6. On a 1 to 5, the tarrasque is unaffected.On a 6, the tarrasque is unaffected, and the effect is reflected back at the caster as though it originated from the tarrasque, turning the caster into the target.The tarrasque is unaffected, and the effect is reflected back at the caster as though it originated from the tarrasque, turning the caster into the target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d6","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.PLBui1FCQuSlEqyI"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wSqPYa5GWfBsLRbY","name":"Siege Monster","type":"feat","img":"icons/creatures/magical/construct-iron-stomping-yellow.webp","system":{"description":{"value":"The tarrasque deals double damage to objects and structures.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.cSA0EbjlxCbst4gJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Eb4utmmDfdnqLOZV","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The tarrasque can use its Frightful Presence. It then makes five attacks: one with its bite, two with its claws, one with its horns, and one with its tail. It can use its Swallow instead of its bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"suUr7bJqBqE7xk2F","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+19 to hit,, 10 ft., one target. Hit: 36 (4d12 + 10) piercing damage. If the target is a creature, it is grappled (escape DC 20). Until this grapple ends, the target is restrained, and the tarrasque can't bite another target.The Tarrasque attacks with its Bite. If the target is a creature, it is grappled. Until this grapple ends, the target is restrained, and the tarrasque can't bite another target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d12+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7DRko62ztr6FjZLA","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+19 to hit,, 15 ft., one target. Hit: 28 (4d8 + 10) slashing damage.The Tarrasque attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"E1RZdzEY2qnG2jLn","name":"Horns","type":"weapon","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"Melee Weapon Attack:+19 to hit,, 10 ft., one target. Hit: 32 (4d10 + 10) piercing damage.The Tarrasque attacks with its Horns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Lo4LU9FBxez1Nzqm","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+19 to hit,, 20 ft., one target. Hit: 24 (4d6 + 10) bludgeoning damage. If the target is a creature, it must succeed on a DC 20 Strength saving throw or be knocked prone.The Tarrasque attacks with its Tail. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":20,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3mtn5D2GoD19WDVW","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the tarrasque's choice within 120 feet of it and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute.A creature can repeat the saving throw at the end of each of its turns, with disadvantage if the tarrasque is within line of sight, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the tarrasque's Frightful Presence for the next 24 hours.Each creature of the tarrasque's choice within 120 feet of it and aware of it must succeed on a Wisdom saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7ycN6rrAEJQP3ZOs","name":"Swallow","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"The tarrasque makes one bite attack against a Large or smaller creature it is grappling. If the attack hits, the target takes the bite's damage, the target is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the tarrasque, and it takes 56 (16d6) acid damage at the start of each of the tarrasque's turns.If the tarrasque takes 60 damage or more on a single turn from a creature inside it, the tarrasque must succeed on a DC 20 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the tarrasque. If the tarrasque dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 30 feet of movement, exiting prone.The Tarrasque attacks with its Swallow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":"Large or smaller creature it is grappling"},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["16d6","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.aH5ncM30tP8tPQ24"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9OZ6Zm76HXyRSKlP","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sBnQiUt83GYUkKBw","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe tarrasque can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The tarrasque regains spent legendary actions at the start of its turn.\n\nThe tarrasque can take 3 legendary actions.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UUapff5kwkff2TJP","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XFNRU61XBt7FvXAM","name":"Attack","type":"feat","img":"icons/skills/melee/blood-slash-foam-red.webp","system":{"description":{"value":"The tarrasque makes one claw attack or tail attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wYuyOwVFLle1u78H","name":"Move","type":"feat","img":"icons/skills/movement/feet-winged-boots-brown.webp","system":{"description":{"value":"The tarrasque moves up to half its speed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wqgAyjgICylYksGZ","name":"Chomp","type":"feat","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"The tarrasque makes one bite attack or uses its Swallow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.5rr8YdsGtL8WxEuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232752,"modifiedTime":1672596096922,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KH6ZrUiUOKQCOlRH","name":"Green Dragon Wyrmling","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":38,"min":0,"max":38,"temp":0,"tempmax":0,"formula":"7d8 + 7"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Green Dragon Wyrmling","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"pFFlq9KvfXzAxhU8","name":"Poison Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"The dragon exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 11 Constitution saving throw, taking 21 (6d6) poison damage on a failed save, or half as much damage on a successful one.The dragon exhales poisonous gas in a 15-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JAEclghgOT24pQD9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zii9P95YmeE6b4km","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 3 (1d6) poison damage.The Green Dragon Wyrmling attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"],["1d6","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8U6fHYSsBSDhYHpr","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232755,"modifiedTime":1672596096967,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KLCkHep28HBfdsky","name":"Ettin","type":"npc","img":"","system":{"abilities":{"str":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":85,"min":0,"max":85,"temp":0,"tempmax":0,"formula":"10d10 + 30"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"giant","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":4,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["giant","orc"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ettin","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"hon1LZGigQRl2jBn","name":"Two Heads","type":"feat","img":"icons/magic/death/skull-horned-goat-pentagram-red.webp","system":{"description":{"value":"The ettin has advantage on Wisdom (Perception) checks and on saving throws against being blinded, charmed, deafened, frightened, stunned, and knocked unconscious.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.gWpp0N06HvS937Go"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0NvLts9eWaCvcOOn","name":"Wakeful","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"When one of the ettin's heads is asleep, its other head is awake.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.T2gLBBjrHTbLTdGc"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FcbmWHMk3H4MGdxy","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The ettin makes two attacks: one with its battleaxe and one with its morningstar.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"T1QQrbvnvnM73eIe","name":"Battleaxe","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-engraved-steel.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.The Ettin attacks with its Battleaxe.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.I0WocDSuNpGJayPb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5ri5zr7IJKsaZNF7","name":"Morningstar","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 14 (2d8 + 5) piercing damage.The Ettin attacks with its Morningstar.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.dX8AxCh9o0A9CkT3"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232756,"modifiedTime":1672596097006,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KOHVWl5RU9XBR8Jb","name":"Dryad","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":16,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"5d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"fey","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["elvish","sylvan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Dryad","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Wkv8laBNYgkdA7lL","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The dryad's innate spellcasting ability is Charisma (spell save DC 14). The dryad can innately cast the following spells, requiring no material components:\nAt will: druidcraft\n3/day each: entangle, goodberry\n1/day each: barkskin, pass without trace, shillelagh","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JExoadfmCtQH6vsK","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The dryad has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"beL4bLUcyTb1Sxgz","name":"Speak with Beasts and Plants","type":"feat","img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","system":{"description":{"value":"The dryad can communicate with beasts and plants as if they shared a language.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.59DUUDZet1J4PIlA"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wwQTeXOmFLO2MW0Y","name":"Tree Stride","type":"feat","img":"icons/magic/nature/tree-spirit-green.webp","system":{"description":{"value":"Once on her turn, the dryad can use 10 feet of her movement to step magically into one living tree within her reach and emerge from a second living tree within 60 feet of the first tree, appearing in an unoccupied space within 5 feet of the second tree. Both trees must be Large or bigger.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.g4V02wJbEstUpwi9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DNPx6Myd5rHTGu4a","name":"Club","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"\nMelee Weapon Attack: +2 to hit (+6 to hit with shillelagh), reach 5 ft., one target. Hit: 2 (1d4) bludgeoning damage, or 8 (1d8 + 4) bludgeoning damage with shillelagh.\n\nThe Dryad attacks with its Club.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + 4","bludgeoning"]],"versatile":"1d8 + 4"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"lgt":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.nfIRTECQIG81CvM4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OdzhvEDeD06BWsZS","name":"Fey Charm","type":"feat","img":"icons/consumables/plants/leaf-veins-glowing-green.webp","system":{"description":{"value":"\nThe dryad targets one humanoid or beast that she can see within 30 feet of her. If the target can see the dryad, it must succeed on a DC 14 Wisdom saving throw or be magically charmed.\nThe charmed creature regards the dryad as a trusted friend to be heeded and protected. Although the target isn't under the dryad's control, it takes the dryad's requests or actions in the most favorable way it can.Each time the dryad or its allies do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the dryad dies, is on a different plane of existence from the target, or ends the effect as a bonus action. If a target's saving throw is successful, the target is immune to the dryad's Fey Charm for the next 24 hours.The dryad can have no more than one humanoid and up to three beasts charmed at a time.\n\nThe dryad targets one humanoid or beast that she can see within 30 feet of her. If the target can see the dryad, it must make a Wisdom saving throw. Each time the dryad or its allies do anything harmful to the target, it can repeat the saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":"one humanoid or beast"},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.SGgVxdZbmsStfeGB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"name":"Entangle","type":"spell","img":"icons/magic/nature/vines-thorned-curled-glow-green.webp","system":{"description":{"value":"Grasping weeds and vines sprout from the ground in a 20-foot square starting from a point within range. For the Duration, these Plants turn the ground in the area into difficult terrain.A creature in the area when you cast the spell must succeed on a Strength saving throw or be Restrained by the entangling Plants until the spell ends. A creature restrained by the plants can use its action to make a Strength check against your spell save DC. On a success, it frees itself.When the spell ends, the conjured Plants wilt away.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":14,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[],"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gMrWeG8fMDPRFiVe"}},"_id":"gMrWeG8fMDPRFiVe","folder":null,"sort":0,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234191,"modifiedTime":1661791116394,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"SbSvZKkJASyk8jKo","name":"Druidcraft","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Whispering to the spirits of Nature, you create one of the following Effects within range:\n\nYou create a tiny, harmless sensory effect that predicts what the weather will be at your location for the next 24 hours. The effect might manifest as a golden orb for clear skies, a cloud for rain, Falling snowflakes for snow, and so on. This effect persists for 1 round.\nYou instantly make a flower blossom, a seed pod open, or a leaf bud bloom.\nYou create an Instantaneous, harmless sensory effect, such as Falling leaves, a puff of wind, the sound of a small animal, or the faint odor of skunk. The effect must fit in a 5-foot cube.\nYou instantly light or snuff out a Candle, a torch, or a small campfire.\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.SbSvZKkJASyk8jKo"}},"img":"icons/magic/nature/vines-thorned-glow-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234141,"modifiedTime":1661791116394,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Qf6CAZkc7ms4ZY3e","name":"Goodberry","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Up to ten berries appear in your hand and are infused with magic for the duration. A creature can use its action to eat one berry. Eating a berry restores 1 hit point, and the berry provides enough nourishment to sustain a creature for one day.The berries lose their potency if they have not been consumed within 24 hours of the casting of this spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A spring of mistletoe","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Qf6CAZkc7ms4ZY3e"}},"img":"icons/magic/nature/leaf-glow-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234136,"modifiedTime":1661791116394,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"JPwIEfgUPVebr5AH","name":"Barkskin","type":"spell","img":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","system":{"description":{"value":"You touch a willing creature. Until the spell ends, the target's skin has a rough, bark-like appearance, and the target's AC can't be less than 16, regardless of what kind of armor it is wearing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A handful of oak bark","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"uM6rgctYpcbCVSkn","flags":{},"changes":[{"key":"system.attributes.ac.formula","value":"16","mode":5,"priority":null},{"key":"system.attributes.ac.calc","value":"custom","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":3600,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","label":"Barkskin","origin":"Item.VQMKMnQDw5rzL0zp","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.JPwIEfgUPVebr5AH"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234113,"modifiedTime":1661791116395,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pRMvmknwLf2tdMTj","name":"Pass without Trace","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A veil of shadows and Silence radiates from you, masking you and your companions from detection. For the Duration, each creature you choose within 30 feet of you (including you) has a +10 bonus to Dexterity (Stealth) checks and can't be tracked except by magical means. A creature that receives this bonus leaves behind no tracks or other traces of its passage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Ashes from a burned leaf of mistletoe and a sprig of spruce","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.pRMvmknwLf2tdMTj"}},"img":"icons/magic/air/fog-gas-smoke-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234227,"modifiedTime":1661791116395,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"VzgFzcmocr1X1cp4","name":"Shillelagh","ownership":{"default":0},"type":"spell","system":{"description":{"value":"The wood of a club or quarterstaff you are holding is imbued with nature's power. For the duration, you can use your spellcasting ability instead of Strength for the attack and damage rolls of melee attacks using that weapon, and the weapon's damage die becomes a d8. The weapon also becomes magical, if it isn't already. The spell ends if you cast it again or if you let go of the weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A shamrock leaf, and a club or quarterstaff","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.VzgFzcmocr1X1cp4"}},"img":"icons/magic/fire/dagger-rune-enchant-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234149,"modifiedTime":1661791116395,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"uM6rgctYpcbCVSkn","flags":{},"changes":[{"key":"system.attributes.ac.formula","value":"16","mode":5,"priority":null},{"key":"system.attributes.ac.calc","value":"custom","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":678,"seconds":3600,"combat":null,"rounds":null,"turns":null,"startRound":2,"startTurn":1},"icon":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","label":"Barkskin","origin":"Compendium.dnd5e.monsters.KOHVWl5RU9XBR8Jb.Item.JPwIEfgUPVebr5AH","tint":null,"transfer":false,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232758,"modifiedTime":1672596097101,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KUpbXdn1XmHEeOPk","name":"Merfolk","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"humanoid","subtype":"Merfolk","swarm":"","custom":""},"environment":"Underwater","cr":0.125,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["aquan","common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Merfolk","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"LNKGvXlnCZFO9bEv","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The merfolk can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sN28gnBGF2TVdd53","name":"Spear","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"Melee or Ranged Weapon Attack: +2 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 3 (1d6) piercing damage, or 4 (1d8) piercing damage if used with two hands to make a melee attack.The Merfolk attacks with its Spear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6","piercing"]],"versatile":"1d8"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"thr":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":true},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.OG4nBBydvmfWYXIk"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232760,"modifiedTime":1672596097143,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KXG5XLIwKhn1V0Y5","name":"Swarm of Quippers","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":28,"min":0,"max":28,"temp":0,"tempmax":0,"formula":"8d8 - 8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":0,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"tiny","custom":""},"environment":"Underwater","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","grappled","paralyzed","petrified","prone","restrained","stunned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Swarm of Quippers","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"4Zbr0ZIgWS4WFshO","name":"Blood Frenzy","type":"feat","img":"icons/skills/wounds/blood-spurt-spray-red.webp","system":{"description":{"value":"The swarm has advantage on melee attack rolls against any creature that doesn't have all its hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.B2kZOyrB7poB4liR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QPJWgfVwJ8tu5zsa","name":"Swarm","type":"feat","img":"icons/creatures/invertebrates/fly-wasp-mosquito-green.webp","system":{"description":{"value":"The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny quipper. The swarm can't regain hit points or gain temporary hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eL3OJmc4FuetizKO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"oAc2jxMRMdek0hTs","name":"Water Breathing","type":"feat","img":"icons/magic/water/projectile-water-ice-orb.webp","system":{"description":{"value":"The swarm can breathe only underwater.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.c4Q6NDCLJSNcNc9T"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hZiOYQNCqAFq0sD6","name":"Bites","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 0 ft., one creature in the swarm's space. Hit: 14 (4d6) piercing damage, or 7 (2d6) piercing damage if the swarm has half of its hit points or fewer.\nThe Swarm of Quippers attacks with a flurry of Bites.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","piercing"]],"versatile":"2d6"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232762,"modifiedTime":1672596097179,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KtM6IV9I5l1MWUDk","name":"Chain Devil","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":16,"calc":"natural","formula":""},"hp":{"value":85,"min":0,"max":85,"temp":null,"tempmax":0,"formula":"10d8 + 40"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"Devil","swarm":"","custom":""},"environment":"","cr":8,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["infernal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Chain Devil","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"9SWi4zPVGsMD5l2Y","name":"Chain","type":"weapon","img":"icons/tools/fasteners/chain-steel-grey.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 10 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\nThe target is grappled (escape DC 14) if the devil isn't already grappling a creature. Until this grapple ends, the target is restrained and takes 7 (2d6) piercing damage at the start of each of its turns.\n\nThe Chain Devil attacks with its Chain. The target is grappled if the devil isn't already grappling a creature. Until this grapple ends, the target is restrained.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"2d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"c8fbl1Kc5O3GNTus","name":"Unnerving Mask","type":"feat","img":"icons/magic/life/heart-shadow-red.webp","system":{"description":{"value":"\nWhen a creature the devil can see starts its turn within 30 feet of the devil, the devil can create the illusion that it looks like one of the creature's departed loved ones or bitter enemies. If the creature can see the devil, it must succeed on a DC 14 Wisdom saving throw or be Frightened until the end of its turn.\n\nThe devil can create the illusion that it looks like one of the creature's departed loved ones or bitter enemies. make a Wisdom saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.uEYSTOkpfr0OkKrD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FkvVIJjzEPFMgvsc","name":"Devil's Sight","type":"feat","img":"icons/magic/perception/eye-slit-pink.webp","system":{"description":{"value":"Magical darkness doesn't impede the devil's Darkvision.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZZ4l35Sr34AL2Ett","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The creature has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AGKUD82KJZaMKVRt","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The devil makes two attacks with its chains.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"B9KJpn20n0tG4xit","name":"Animate Chains","type":"feat","img":"icons/equipment/neck/choker-chain-thin-gold.webp","system":{"description":{"value":"\nUp to four chains the devil can see within 60 feet of it magically sprout razor-edged barbs and animate under the devil's control, provided that the chains aren't being worn or carried.\nEach animated chain is an object with AC 20, 20 hit points, resistance to piercing damage, and immunity to psychic and thunder damage. When the devil uses Multiattack on its turn, it can use each animated chain to make one additional chain attack. An animated chain can grapple one creature of its own but can't make attacks while grappling. An animated chain reverts to its inanimate state if reduced to 0 hit points or if the devil is incapacitated or dies.\n\nUp to four chains the devil can see within 60 feet of it magically sprout razor-edged barbs and animate under the devil's control, provided that the chains aren't being worn or carried.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":4,"width":null,"units":"","type":"object"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.6ej6jlwh8ryDEzlB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232763,"modifiedTime":1672596097220,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"L1w8yBkInMscfJ3F","name":"Oni","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":110,"min":0,"max":110,"temp":0,"tempmax":0,"formula":"13d10 + 39"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":30,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"giant","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":7,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","giant"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":2,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Oni","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"m65uENAa93Pz8lLl","name":"Chain Mail","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"Made of interlocking metal rings, chain mail includes a layer of quilted fabric worn underneath the mail to prevent chafing and to cushion the impact of blows. The suit includes gauntlets.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":55,"price":{"value":75,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":16,"type":"heavy","dex":0},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":13,"stealth":true,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.rLMflzmxpe8JGTOA"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FC0FNE8O4rnbth8s","name":"Glaive","type":"weapon","img":"icons/weapons/polearms/halberd-crescent-glowing.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 10 ft., one target. Hit: 15 (2d10 + 4) slashing damage, or 9 (1d10 + 4) slashing damage in Small or Medium form.The Oni attacks with its Glaive.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":20,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.rOG1OM2ihgPjOvFW"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"q7J7PERrJb2vxtlt","name":"Claw (Oni Form Only)","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage.The Oni attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HiGvFK1bT8zkJA3r","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The oni's innate spellcasting ability is Charisma (spell save DC 13). The oni can innately cast the following spells, requiring no material components:\nAt will: darkness, invisibility\n1/day each: charm person, cone of cold, gaseous form, sleep","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7YSwI62Budsr6HzO","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The oni makes two attacks, either with its claws or its glaive.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8liUuXPhjNLKYMMx","name":"Regeneration","type":"feat","img":"icons/skills/wounds/anatomy-organ-heart-red.webp","system":{"description":{"value":"The oni regains 10 hit points at the start of its turn if it has at least 1 hit point.The oni regains 10 hit points at the start of its turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Av7H0ymGdPeTsnwV"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HJDOmnRX2zQuXraB","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"the oni's weapon attacks are magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QGNzJqfTHnbhjzFN","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The oni magically polymorphs into a Small or Medium humanoid, into a Large giant, or back into its true form. Other than its size, its statistics are the same in each form. The only equipment that is transformed is its glaive, which shrinks so that it can be wielded in humanoid form. If the oni dies, it reverts to its true form, and its glaive reverts to its normal size.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"S7VbUetIfVT7B6Eq","name":"Darkness","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Magical darkness spreads from a point you choose within range to fill a 15-foot-radius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and nonmagical light can't illuminate it.If the point you choose is on an object you are holding or one that isn't being worn or carried, the darkness emanates from the object and moves with it. Completely covering the source of the darkness with an opaque object, such as a bowl or a helm, blocks the darkness.If any of this spell's area overlaps with an area of light created by a spell of 2nd level or lower, the spell that created the light is dispelled.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Bat fur and a drop of pitch or piece of coal","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.S7VbUetIfVT7B6Eq"}},"img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234139,"modifiedTime":1661791116422,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"1N8dDMMgZ1h1YJ3B","name":"Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An eyelash encased in gum arabic","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.1N8dDMMgZ1h1YJ3B"}},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234056,"modifiedTime":1661791116423,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"eS7XnnApoxRxYXPs","name":"Charm Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to charm a humanoid you can see within range. It must make a Wisdom saving throw, and does so with advantage if you or your companions are fighting it. If it fails the saving throw, it is charmed by you until the spell ends or until you or your companions do anything harmful to it. The charmed creature regards you as a friendly acquaintance. When the spell ends, the creature knows it was charmed by you.\n At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.eS7XnnApoxRxYXPs"}},"img":"icons/magic/fire/explosion-fireball-medium-purple-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234185,"modifiedTime":1661791116423,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"RpKjTlYASrfqUPVA","name":"Cone of Cold","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A blast of cold air erupts from your hands. Each creature in a 60-foot cone must make a Constitution saving throw. A creature takes 8d8 cold damage on a failed save, or half as much damage on a successful one.A creature killed by this spell becomes a frozen statue until it thaws.Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d8","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small crystal or glass cone","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.RpKjTlYASrfqUPVA"}},"img":"icons/magic/water/projectiles-ice-faceted-shard-salvo-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234138,"modifiedTime":1661791116423,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"2IWiZAJtOGDoKjiz","name":"Gaseous Form","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You transform a willing creature you touch, along with everything it's wearing and carrying, into a misty cloud for the duration. The spell ends if the creature drops to 0 hit points. An incorporeal creature isn't affected.While in this form, the target's only method of movement is a flying speed of 10 feet. The target can enter and occupy the space of another creature. The target has resistance to nonmagical damage, and it has advantage on Strength, Dexterity, and Constitution saving throws. The target can pass through small holes, narrow openings, and even mere cracks, though it treats liquids as though they were solid surfaces. The target can't fall and remains hovering in the air even when stunned or otherwise incapacitated.While in the form of a misty cloud, the target can't talk or manipulate objects, and any objects it was carrying or holding can't be dropped, used, or otherwise interacted with. The target can't attack or cast spells.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of gauze and a wisp of smoke","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.2IWiZAJtOGDoKjiz"}},"img":"icons/magic/air/fog-gas-smoke-dense-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234058,"modifiedTime":1661791116423,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"KhwiSi9fwVfUPtku","name":"Sleep","type":"spell","img":"icons/magic/light/explosion-star-small-pink.webp","system":{"description":{"value":"This spell sends creatures into a magical slumber. Roll 5d8; the total is how many hit points of creatures this spell can affect. Creatures within 20 feet of a point you choose within range are affected in ascending order of their current hit points (ignoring unconscious creatures).Starting with the creature that has the lowest current hit points, each creature affected by this spell falls unconscious until the spell ends, the sleeper takes damage, or someone uses an action to shake or slap the sleeper awake. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.Undead and creatures immune to being charmed aren't affected by this spell.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d8 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of fine sand, rose petals, or a cricket.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":"2d8"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.KhwiSi9fwVfUPtku"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234117,"modifiedTime":1661791116424,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232765,"modifiedTime":1672596097327,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LPdX5YLlwci0NDZx","name":"Raven","type":"npc","img":"","system":{"abilities":{"str":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"1d4 - 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":50,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Swamp","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Raven","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"nDvgtu7NSNCrREAv","name":"Mimicry","type":"feat","img":"icons/creatures/birds/corvid-flying-wings-purple.webp","system":{"description":{"value":"The raven can mimic simple sounds it has heard, such as a person whispering, a baby crying, or an animal chittering. A creature that hears the sounds can tell they are imitations with a successful Wisdom (Insight) check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Raven","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zZkNtL97hn1P6OJC"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"p8JmuP7pndzbZVzj","name":"Beak","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 1 piercing damage.\nThe Raven attacks with its Beak.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232767,"modifiedTime":1672596097374,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LTomFUTBrkRi0Pj5","name":"Efreeti","type":"npc","img":"","system":{"abilities":{"str":{"value":22,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":24,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":200,"min":0,"max":200,"temp":0,"tempmax":0,"formula":"16d10 + 112"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":11,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["ignan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Efreeti","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Fr77Z90cITQsMV3N","name":"Elemental Demise","type":"feat","img":"icons/magic/air/air-wave-gust-smoke-yellow.webp","system":{"description":{"value":"If the efreeti dies, its body disintegrates in a flash of fire and puff of smoke, leaving behind only equipment the djinni was wearing or carrying.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WbaKH3NLA3mvylfM"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gb5HcbKlmYUvLAsk","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The efreeti's innate spell casting ability is Charisma (spell save DC 15, +7 to hit with spell attacks). It can innately cast the following spells, requiring no material components:\nAt will: detect magic\n3/day: enlarge/reduce, tongues\n1/day each: conjure elemental (fire elemental only), gaseous form, invisibility, major image, plane shift, wall of fire","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gWEMjYhRVIEnKbZH","name":"Conjure Elemental (fire elemental only)","type":"spell","img":"icons/magic/symbols/runes-star-pentagon-orange.webp","system":{"description":{"value":"You call forth an elemental servant. Choose an area of air, earth, fire, or water that fills a 10-foot cube within range. An elemental of challenge rating 5 or lower appropriate to the area you chose appears in an unoccupied space within 10 feet of it. For example, a fire elemental emerges from a bonfire, and an earth elemental rises up from the ground. The elemental disappears when it drops to 0 hit points or when the spell ends.The elemental is friendly to you and your companions for the duration. Roll initiative for the elemental, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the elemental, it defends itself from hostile creatures but otherwise takes no actions.If your concentration is broken, the elemental doesn't disappear. Instead, you lose control of the elemental, it becomes hostile toward you and your companions, and it might attack. An uncontrolled elemental can't be dismissed by you, and it disappears 1 hour after you summoned it.Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the challenge rating increases by 1 for each slot level above 5th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":"an area of air, earth, fire, or water that fills a 10-foot cube within range"},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.1LkZvINag7KqBmDR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2NzoIyouATBfPgdc","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The efreeti makes two scimitar attacks or uses its Hurl Flame twice.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tR7JGJjIz6H1oerb","name":"Scimitar","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage plus 7 (2d6) fire damage.The Efreeti attacks with its Scimitar.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6+@mod","slashing"],["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":true,"fir":false,"foc":false,"hvy":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.fbC0Mg1a73wdFbqO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9D7vAr8iJbSa4g5N","name":"Hurl Flame","type":"weapon","img":"icons/magic/fire/blast-jet-stream-splash.webp","system":{"description":{"value":"Ranged Spell Attack:+7 to hit,, 120 ft., one target. Hit: 17 (5d6) fire damage.The Efreeti attacks with its Hurl Flame.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116443,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WahI41a3goVUg0x1","name":"Enlarge/Reduce","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You cause a creature or an object you can see within range to grow larger or smaller for the Duration. Choose either a creature or an object that is neither worn nor carried. If the target is unwilling, it can make a Constitution saving throw. On a success, the spell has no effect.If the target is a creature, everything it is wearing and carrying changes size with it. Any item dropped by an affected creature returns to normal size at once.Enlarge. The target's size doubles in all dimensions, and its weight is multiplied by eight. This growth increases its size by one category—from Medium to Large, for example. If there isn't enough room for the target to double its size, the creature or object attains the maximum possible size in the space available. Until the spell ends, the target also has advantage on Strength Checks and Strength Saving Throws. The target's Weapons also grow to match its new size. While these Weapons are enlarged, the target's attacks with them deal 1d4 extra damage.Reduce. The target's size is halved in all dimensions, and its weight is reduced to one-eighth of normal. This reduction decreases its size by one category—from Medium to Small, for example. Until the spell ends, the target also has disadvantage on Strength Checks and Strength Saving Throws. The target's Weapons also shrink to match its new size. While these Weapons are reduced, the target's attacks with them deal 1d4 less damage (this can't reduce the damage below 1).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A pinch of powdered iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.WahI41a3goVUg0x1"}},"img":"icons/magic/control/energy-stream-link-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234153,"modifiedTime":1661791116444,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"gopnZvS0c2jD5FP8","name":"Tongues","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell grants the creature you touch the ability to understand any spoken language it hears. Moreover, when the target speaks, any creature that knows at least one language and can hear the target understands what it says.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"div","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small clay model of a ziggurat","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gopnZvS0c2jD5FP8"}},"img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234193,"modifiedTime":1661791116444,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"2IWiZAJtOGDoKjiz","name":"Gaseous Form","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You transform a willing creature you touch, along with everything it's wearing and carrying, into a misty cloud for the duration. The spell ends if the creature drops to 0 hit points. An incorporeal creature isn't affected.While in this form, the target's only method of movement is a flying speed of 10 feet. The target can enter and occupy the space of another creature. The target has resistance to nonmagical damage, and it has advantage on Strength, Dexterity, and Constitution saving throws. The target can pass through small holes, narrow openings, and even mere cracks, though it treats liquids as though they were solid surfaces. The target can't fall and remains hovering in the air even when stunned or otherwise incapacitated.While in the form of a misty cloud, the target can't talk or manipulate objects, and any objects it was carrying or holding can't be dropped, used, or otherwise interacted with. The target can't attack or cast spells.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of gauze and a wisp of smoke","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.2IWiZAJtOGDoKjiz"}},"img":"icons/magic/air/fog-gas-smoke-dense-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234058,"modifiedTime":1661791116444,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"1N8dDMMgZ1h1YJ3B","name":"Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An eyelash encased in gum arabic","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.1N8dDMMgZ1h1YJ3B"}},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234056,"modifiedTime":1661791116444,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"nslx2nT3p4lNkmdp","name":"Major Image","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 20-foot cube. The image appears at a spot that you can see within range and lasts for the duration. It seems completely real, including sounds, smells, and temperature appropriate to the thing depicted. You can't create sufficient heat or cold to cause damage, a sound loud enough to deal thunder damage or deafen a creature, or a smell that might sicken a creature (like a troglodyte's stench).As long as you are within range of the illusion, you can use your action to cause the image to move to any other spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking. Similarly, you can cause the illusion to make different sounds at different times, even making it carry on a conversation, for example.Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and its other sensory qualities become faint to the creature.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the spell lasts until dispelled, without requiring your concentration.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of fleece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.nslx2nT3p4lNkmdp"}},"img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234222,"modifiedTime":1661791116445,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"J6Jpw5XzB5aTeqnz","name":"Plane Shift","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You and up to eight willing creatures who link hands in a circle are transported to a different plane of existence. You can specify a target destination in general terms, such as the City of Brass on the Elemental Plane of Fire or the palace of Dispater on the second level of the Nine Hells, and you appear in or near that destination. If you are trying to reach the City of Brass, for example, you might arrive in its Street of Steel, before its Gate of Ashes, or looking at the city from across the Sea of Fire, at the DM's discretion.Alternatively, if you know the sigil sequence of a teleportation circle on another plane of existence, this spell can take you to that circle. If the teleportation circle is too small to hold all the creatures you transported, they appear in the closest unoccupied spaces next to the circle.You can use this spell to banish an unwilling creature to another plane. Choose a creature within your reach and make a melee spell attack against it. On a hit, the creature must make a Charisma saving throw. If the creature fails this save, it is transported to a random location on the plane of existence you specify. A creature so transported must find its own way back to your current plane of existence.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":8,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":15,"scaling":"spell"},"level":7,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A forked, metal rod worth at least 250 gp, attuned to a particular plane of existence","consumed":false,"cost":250,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.J6Jpw5XzB5aTeqnz"}},"img":"icons/magic/symbols/runes-star-pentagon-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234111,"modifiedTime":1661791116445,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"X3DrXgxjwI2dvkD6","name":"Wall of Fire","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a wall of fire on a solid surface within range. You can make the wall up to 60 feet long, 20 feet high, and 1 foot thick, or a ringed wall up to 20 feet in diameter, 20 feet high, and 1 foot thick. The wall is opaque and lasts for the duration.When the wall appears, each creature within its area must make a Dexterity saving throw. On a failed save, a creature takes 5d8 fire damage, or half as much damage on a successful save.One side of the wall, selected by you when you cast this spell, deals 5d8 fire damage to each creature that ends its turn within 10 feet of that side or inside the wall. A creature takes the same damage when it enters the wall for the first time on a turn or ends its turn there. The other side of the wall deals no damage.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"wall"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":15,"scaling":"spell"},"level":4,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small piece of phosphorous","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.X3DrXgxjwI2dvkD6"}},"img":"icons/magic/air/fog-gas-smoke-swirling-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234155,"modifiedTime":1661791116445,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232769,"modifiedTime":1672596097471,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"M4eX4Mu5IHCr3TMf","name":"Adult Black Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":195,"min":0,"max":195,"temp":0,"tempmax":0,"formula":"17d12 + 85"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Swamp","cr":14,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":["acid"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Adult Black Dragon","displayName":0,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"P47jJ8bjQulsbdUg","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"amUUCouL69OK1GZU","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) acid damage.The Adult Black Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["1d8","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uXxifk618IakGfYG","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.The Adult Black Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"t9FrDQLVCU8x4obw","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.The Adult Black Dragon attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"A3azHlbNcHLRgogu","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Xlzm4nSYrmGB03GH","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6gjpG1ezpMNyJDGc","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6bromElr0abqNXJL","name":"Acid Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"The dragon exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.The dragon exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d8","acid"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zjcGly9P3Gn9MXt7"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tWGObm0RZMwSrQLU","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LgqLdk3VQOVcO5UI","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\n\nMelee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8+7) bludgeoning damage.\n\n\nThe dragon slams its long tail against its foe!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kFPbmQZGCKfWRXpq","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"\nThe dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 19 Dexterity saving throw or take 13 (2d6+6) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.\n\nThe dragon beats its wings!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":18,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RnqMV5Ur5n9S3wIt","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"cqasTMQJDj2XBMse","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Wgu6mm84tNNWdiEH","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232772,"modifiedTime":1672596097571,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MADGs8pWMVyyFOf1","name":"Horned Devil","type":"npc","img":"","system":{"abilities":{"str":{"value":22,"proficient":1,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":178,"min":0,"max":178,"temp":null,"tempmax":0,"formula":"17d10 + 85"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"Devil","swarm":"","custom":""},"environment":"","cr":11,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["infernal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Horned Devil","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"g8r9DZeHyfNzerHP","name":"Fork","type":"weapon","img":"icons/tools/cooking/fork-steel-grey.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 15 (2d8 + 6) piercing damage.The Horned Devil attacks with its Fork.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"smHERNgdj5yGNQuD","name":"Devil's Sight","type":"feat","img":"icons/magic/perception/eye-slit-pink.webp","system":{"description":{"value":"Magical darkness doesn't impede the devil's darkvision.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gq4SqLPtYhhtWidm","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The devil has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VpvOoT7mbR0XNZiL","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 10 (1d8 + 6) piercing damage. If the target is a creature other than an undead or a construct, it must succeed on a DC 17 Constitution saving throw or lose 10 (3d6) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 10 (3d6). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.The Horned Devil attacks with its Tail. If the target is a creature other than an undead or a construct, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"3d6","save":{"ability":"con","dc":17,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9FAl5YGUTmt1RnEF","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The devil makes three melee attacks: two with its fork and one with its tail. It can use Hurl Flame in place of any melee attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GFYzWSyeuW9O4a0I","name":"Hurl Flame","type":"weapon","img":"icons/magic/fire/blast-jet-stream-splash.webp","system":{"description":{"value":"\nRanged Spell Attack:+7 to hit,, 150 ft., one target. Hit: 14 (4d6) fire damage.\nIf the target is a flammable object that isn't being worn or carried, it also catches fire.\n\nThe Horned Devil attacks with its Hurl Flame. If the target is a flammable object that isn't being worn or carried, it also catches fire.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232774,"modifiedTime":1672596097618,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MAoCGF5VkQwhmgvI","name":"Manticore","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":68,"min":0,"max":68,"temp":0,"tempmax":0,"formula":"8d10 + 24"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":50,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":3,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Manticore","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"7GyypGVW1RhhbcqC","name":"Tail Spike Regrowth","type":"feat","img":"icons/creatures/mammals/wolf-shadow-black.webp","system":{"description":{"value":"The manticore has twenty-four tail spikes. Used spikes regrow when the manticore finishes a long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":24,"max":"24","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iVOxckt9448v7Ho5"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Wr6BSqrXAJZu28sp","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The manticore makes three attacks: one with its bite and two with its claws or three with its tail spikes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"thSJXAlyfHGmVWN5","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage.The Manticore attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4WFf0M2tCPwiLPxG","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.The Manticore attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bYJjJPKhiDOTMlmS","name":"Tail Spike","type":"weapon","img":"icons/commodities/bones/horn-worn-white.webp","system":{"description":{"value":"Ranged Weapon Attack: +5 to hit, range 100/200 ft., one target. Hit: 7 (1d8 + 3) piercing damage.The Manticore attacks with its Tail Spike.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":100,"long":200,"units":"ft"},"uses":{"value":24,"max":"24","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232776,"modifiedTime":1672596097666,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MO382D2sxtAIuUC5","name":"Adult Gold Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":27,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":25,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":24,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":256,"min":0,"max":256,"temp":0,"tempmax":0,"formula":"19d12 + 133"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":17,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Adult Gold Dragon","displayName":0,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"EDuUEVF5kjzG5YQZ","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OFL5IcvfcWfE3Vmp","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TUvgGNvTgO6MlepM","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tx5M41t7JlSuVQ9R","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.The Adult Gold Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ORrcO13EbgjVvNjA","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.The Adult Gold Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FXYoii0YU2Y7CqBa","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.The Adult Gold Dragon attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"v92F1DGzRWSEMPxH","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":21,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GTmsKSKk8kTlQXkT","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Fire Breath.** The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 66 (12d10) fire damage on a failed save, or half as much damage on a successful one.\n**Weakening Breath.** The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 21 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zoAkmBfD677QYuSh","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\n**Fire Breath.** The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 66 (12d10) fire damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales fire in a 60-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d10","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":21,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KfnqUfoAw7IVzVpy","name":"Weakening Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\n**Weakening Breath.** The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 21 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon exhales gas in a 60-foot cone. Each creature in that area must make a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":21,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.IHh6n8uZBGqyRfZz"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Fyvg74zRJWn05uhK","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RNFCtDcWoF0NAvl2","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QtK9Z8y5x78hUIxF","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FehkcXNr3EsmJMif","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nThe dragon makes a tail attack.\n\nThe dragon slams its long tail against its foe!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"G0aqIC7Haxea184o","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"\nThe dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 22 Dexterity saving throw or take 15 (2d6+8) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.\n\nThe dragon beats its wings!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"cone"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod",""]],"versatile":""},"formula":"","save":{"ability":"dex","dc":22,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jAr1sQYarE6ySAbR","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eo41KZmfDzUstx4g","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232777,"modifiedTime":1672596097762,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MUpBNDoJEr09bLaO","name":"Sprite","type":"npc","img":"","system":{"abilities":{"str":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":2,"min":0,"max":2,"temp":0,"tempmax":0,"formula":"1d4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":40,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Good","race":"","type":{"value":"fey","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","elvish","sylvan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Sprite","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"alpha":1,"light":{"alpha":0.5,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"reverse":false,"type":null},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.3},"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"qlTIjSkjmEDQTj1x","name":"Leather Armor (tiny)","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YN8cO9SCNOIFJcmw","name":"Shortbow","type":"weapon","img":"icons/weapons/bows/shortbow-recurve.webp","system":{"description":{"value":"Ranged Weapon Attack: +6 to hit, range 40/160 ft., one target. Hit: 1 piercing damage.The Sprite attacks with its Shortbow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":40,"long":160,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":10,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.GJv6WkD7D2J6rP6M"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mT8SL7VHsG6qY5G7","name":"Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"Melee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 1 slashing damage.The Sprite attacks with its Longsword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qLd01BTjVwH6NUfH","name":"Invisibility","type":"feat","img":"icons/creatures/webs/webthin-blue.webp","system":{"description":{"value":"The sprite magically turns invisible until it attacks or casts a spell, or until its concentration ends (as if concentrating on a spell). Any equipment the sprite wears or carries is invisible with it.The sprite magically turns invisible. Any equipment the sprite wears or carries is invisible with it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.dA5X2eQuOtHywpQF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qJHrH8Q3q1JB5xe5","name":"Heart Sight","type":"feat","img":"icons/magic/control/hypnosis-mesmerism-eye.webp","system":{"description":{"value":"The sprite touches a creature and magically knows the creature's current emotional state. If the target fails a DC 10 Charisma saving throw, the sprite also knows the creature's alignment. Celestials, fiends, and undead automatically fail the saving throw.The sprite touches a creature. target must make a Charisma saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iCae1IDxHvRmjEgi"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232779,"modifiedTime":1672596097811,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MWlwLlKXh8jUUxOL","name":"Giant Shark","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":126,"min":0,"max":126,"temp":0,"tempmax":0,"formula":"11d12 + 55"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":50,"walk":0,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Shark","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"0r0ClOXv3FyCYvTr","name":"Blood Frenzy","type":"feat","img":"icons/skills/wounds/blood-spurt-spray-red.webp","system":{"description":{"value":"The shark has advantage on melee attack rolls against any creature that doesn't have all its hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.B2kZOyrB7poB4liR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VMKAbY9Znfzav7Ou","name":"Water Breathing","type":"feat","img":"icons/magic/water/projectile-water-ice-orb.webp","system":{"description":{"value":"The shark can breathe only underwater.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.c4Q6NDCLJSNcNc9T"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fGIh2Vq3XhIzacIg","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+9 to hit,, 5 ft., one target. Hit: 22 (3d10 + 6) piercing damage.\nThe Giant Shark attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232781,"modifiedTime":1672596097854,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MZYCPIVoBs918qGZ","name":"Jackal","type":"npc","img":"","system":{"abilities":{"str":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":3,"min":0,"max":3,"temp":0,"tempmax":0,"formula":"1d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Jackal","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"fBpB1lIZvuqLD74z","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The jackal has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Jackal","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JX4jbwWlO8zaTc4s","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The jackal has advantage on an attack roll against a creature if at least one of the jackal's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Jackal","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ggHLjL39tb62Bwxy","name":"Bite","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+1 to hit,, 5 ft., one target. Hit: 1 (1d4 - 1) piercing damage.\nThe Jackal attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232783,"modifiedTime":1672596098520,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MiYRAIHwm9It1in8","name":"Mammoth","type":"npc","img":"","system":{"abilities":{"str":{"value":24,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":126,"min":0,"max":126,"temp":0,"tempmax":0,"formula":"11d12 + 55"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Arctic","cr":6,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Mammoth","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"4LYRJH02EsSnZUNc","name":"Trampling Charge","type":"feat","img":"icons/creatures/abilities/cougar-pounce-stalk-black.webp","system":{"description":{"value":"\nIf the mammoth moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a DC 18 Strength saving throw or be knocked prone. If the target is prone, the mammoth can make one stomp attack against it as a bonus action.\n\nIf the mammoth moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yD51x4dihnbHwfsj"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"S7i3GTdoo6tyc2wL","name":"Gore","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 25 (4d8 + 7) piercing damage.\nThe Mammoth attacks with its Gore.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Hx541foatcQiMSZj","name":"Stomp","type":"weapon","img":"icons/creatures/abilities/cougar-pounce-stalk-black.webp","system":{"description":{"value":"\nMelee Weapon Attack:+10 to hit,, 5 ft., one prone creature. Hit: 29 (4d10 + 7) bludgeoning damage.\nThe Mammoth attacks with its Stomp.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232784,"modifiedTime":1672596098575,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MnoL59nOOfYatAkQ","name":"Lamia","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":97,"min":0,"max":97,"temp":0,"tempmax":0,"formula":"13d10 + 26"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":4,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["abyssal","common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":2,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Lamia","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"72qxug7ywesnINin","name":"Disguise Self (any humanoid form)","type":"spell","img":"icons/magic/control/debuff-energy-hold-teal-blue.webp","system":{"description":{"value":"You make yourself—including your clothing, armor, weapons, and other belongings on your person—look different until the spell ends or until you use your action to dismiss it. You can seem 1 foot shorter or taller and can appear thin, fat, or in between. You can't change your body type, so you must adopt a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you.The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to your outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel your head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair.To discern that you are disguised, a creature can use its action to inspect your appearance and must succeed on an Intelligence (Investigation) check against your spell save DC.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":13,"scaling":"spell"},"level":1,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.A3q2gTNqG6fvNGrv"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mSRxk4sD2tHfYAUo","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The lamia's innate spellcasting ability is Charisma (spell save DC 13). It can innately cast the following spells, requiring no material components:\nAt will: disguise self (any humanoid form), major image\n3/day each: charm person, mirror image, scrying, suggestion\n1/day: geas","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LjPDX0VIEJRv0boG","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The lamia makes two attacks: one with its claws and one with its dagger or Intoxicating Touch.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lqr5NeudKmKQfSpZ","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.The Lamia attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jMTZfqYRB58CwXyw","name":"Dagger","type":"weapon","img":"icons/weapons/daggers/dagger-jeweled-purple.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage.The Lamia attacks with its Dagger.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":true,"fir":false,"foc":false,"hvy":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.0E565kQUBmndJ1a2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"cd8MN5gJkmUn1RTE","name":"Intoxicating Touch","type":"feat","img":"icons/magic/nature/beam-hand-leaves-green.webp","system":{"description":{"value":"Melee Spell Attack:+5 to hit,, 5 ft., one creature. Hit: The target is magically cursed for 1 hour. Until the curse ends, the target has disadvantage on Wisdom saving throws and all ability checks.The target has disadvantage on Wisdom saving throws and all ability checks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.qfWKOH5AawhmNSwl"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nslx2nT3p4lNkmdp","name":"Major Image","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 20-foot cube. The image appears at a spot that you can see within range and lasts for the duration. It seems completely real, including sounds, smells, and temperature appropriate to the thing depicted. You can't create sufficient heat or cold to cause damage, a sound loud enough to deal thunder damage or deafen a creature, or a smell that might sicken a creature (like a troglodyte's stench).As long as you are within range of the illusion, you can use your action to cause the image to move to any other spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking. Similarly, you can cause the illusion to make different sounds at different times, even making it carry on a conversation, for example.Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and its other sensory qualities become faint to the creature.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the spell lasts until dispelled, without requiring your concentration.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of fleece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.nslx2nT3p4lNkmdp"}},"img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234222,"modifiedTime":1661791116466,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"eS7XnnApoxRxYXPs","name":"Charm Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to charm a humanoid you can see within range. It must make a Wisdom saving throw, and does so with advantage if you or your companions are fighting it. If it fails the saving throw, it is charmed by you until the spell ends or until you or your companions do anything harmful to it. The charmed creature regards you as a friendly acquaintance. When the spell ends, the creature knows it was charmed by you.\n At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.eS7XnnApoxRxYXPs"}},"img":"icons/magic/fire/explosion-fireball-medium-purple-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234185,"modifiedTime":1661791116466,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"X4c8xCkmF8U9HUMz","name":"Mirror Image","type":"spell","img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","system":{"description":{"value":"Three illusory duplicates of yourself appear in your space. Until the spell ends, the duplicates move with you and mimic your actions, shifting position so it's impossible to track which image is real. You can use your action to dismiss the illusory duplicates.\nEach time a creature targets you with an attack during the spell's duration, roll a [[/r 1d20 # Mirror Image Check]] to determine whether the attack instead targets one of your duplicates.\nIf you have three duplicates, you must roll a 6 or higher to change the attack's target to a duplicate. With two duplicates, you must roll an 8 or higher. With one duplicate, you must roll an 11 or higher.\nA duplicate's AC equals 10 + your Dexterity modifier. If an attack hits a duplicate, the duplicate is destroyed. A duplicate can be destroyed only by an attack that hits it. It ignores all other damage and effects. The spell ends when all three duplicates are destroyed.\nA creature is unaffected by this spell if it can't see, if it relies on senses other than sight, such as blindsight, or if it can perceive illusions as false, as with truesight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d20","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.X4c8xCkmF8U9HUMz"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234155,"modifiedTime":1661791116466,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"fVbCxFRaORalHB20","name":"Scrying","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You can see and hear a particular creature you choose that is on the same plane of existence as you. The target must make a Wisdom saving throw, which is modified by how well you know the target and the sort of physical connection you have to it. If a target knows you're casting this spell, it can fail the saving throw voluntarily if it wants to be observed.\n\n\n\nKnowledge\nSave Modifier\n\n\nSecondhand (you have heard of the target)\n+5\n\n\nFirsthand (you have met the target)\n+0\n\n\nFamiliar (you know the target well)\n-5\n\n\n\n\n\n\n\nConnection\nSave Modifier\n\n\nLikeness or picture\n-2\n\n\nPossession or garment\n-4\n\n\nBody part, lock of hair, bit of nail, or the like\n-10\n\n\n\nOn a successful save, the target isn't affected, and you can't use this spell against it again for 24 hours.On a failed save, the spell creates an Invisible sensor within 10 feet of the target. You can see and hear through the sensor as if you were there. The sensor moves with the target, remaining within 10 feet of it for the Duration. A creature that can see Invisile Objects sees the sensor as a luminous orb about the size of your fist.Instead of targeting a creature, you can choose a location you have seen before as the target of this spell. When you do, the sensor appears at that location and doesn't move.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A focus worth at least 1,000 gp, such as a crystal ball, a silver mirror, or a font filled with holy water.","consumed":false,"cost":1000,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.fVbCxFRaORalHB20"}},"img":"icons/magic/perception/eye-ringed-glow-angry-large-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234189,"modifiedTime":1661791116467,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"zMAWdyc8UVb37BK4","name":"Suggestion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You suggest a course of activity (limited to a sentence or two) and magically influence a creature you can see within range that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act ends the spell.The target must make a Wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do.You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a knight give her warhorse to the first beggar she meets. If the condition isn't met before the spell expires, the activity isn't performed.If you or any of your companions damage the target, the spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A snake's tongue and either a bit of honeycomb or a drop of sweet oil","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.zMAWdyc8UVb37BK4"}},"img":"icons/magic/air/air-burst-spiral-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234245,"modifiedTime":1661791116468,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"JQyigMNPiDnGI18b","name":"Geas","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You place a magical command on a creature that you can see within range, forcing it to carry out some service or refrain from some action or course of activity as you decide. If the creature can understand you, it must succeed on a Wisdom saving throw or become Charmed by you for the Duration. While the creature is charmed by you, it takes 5d10 psychic damage each time it acts in a manner directly counter to your instructions, but no more than once each day. A creature that can't understand you is unaffected by the spell.You can issue any command you choose, short of an activity that would result in certain death. Should you issue a suicidal command, the spell ends.You can end the spell early by using an action to dismiss it. A Remove Curse, Greater Restoration, or wish spell also ends it.At Higher Levels. When you cast this spell using a spell slot of 7th or 8th level, the Duration is 1 year. When you cast this spell using a spell slot of 9th level, the spell lasts until it is ended by one of the Spells mentioned above.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"30","units":"day"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d10","psychic"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":5,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.JQyigMNPiDnGI18b"}},"img":"icons/magic/air/air-burst-spiral-large-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234114,"modifiedTime":1661791116468,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232786,"modifiedTime":1672596098671,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NAISFPoNNgUCsEyW","name":"Zombie","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":6,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":8,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"3d8 + 9"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Urban","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":[],"custom":"understands the languages it knew in life but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Zombie","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Ed7XgnZu9qRs3qdn","name":"Slam","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage.The Zombie attacks with its Slam.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RDeCoZRniQBNq0rX","name":"Undead Fortitude","type":"feat","img":"icons/magic/acid/pouring-gas-smoke-liquid.webp","system":{"description":{"value":"If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5+the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead.If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VYAnJjIgb5nPXfRr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232788,"modifiedTime":1672596098715,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NB6wUgVqeOQtsQKu","name":"Treant","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":16,"calc":"natural","formula":""},"hp":{"value":138,"min":0,"max":138,"temp":0,"tempmax":0,"formula":"12d12 + 60"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"plant","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":9,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing"],"bypasses":[],"custom":""},"dv":{"value":["fire"],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","druidic","elvish","sylvan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Treant","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"8uUyRr6Ho7Yvx8pP","name":"Animate Trees","type":"feat","img":"icons/magic/nature/tree-spirit-green.webp","system":{"description":{"value":"The treant magically animates one or two trees it can see within 60 feet of it. These trees have the same statistics as a treant, except they have Intelligence and Charisma scores of 1, they can't speak, and they have only the Slam action option. An animated tree acts as an ally of the treant. The tree remains animate for 1 day or until it dies; until the treant dies or is more than 120 feet from the tree; or until the treant takes a bonus action to turn it back into an inanimate tree. The tree then takes root if possible.The treant magically animates one or two trees it can see within 60 feet of it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.j6F0v4guYhRYWddT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"skQsBSPby8pLZSLI","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the treant remains motionless, it is indistinguishable from a normal tree.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BLz58sp79C2HvinU","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The treant makes two slam attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eTROJriR9B5abIZy","name":"Treant - Rock","type":"weapon","img":"icons/magic/earth/projectile-boulder-yellow.webp","system":{"description":{"value":"Ranged Weapon Attack: +10 to hit, range 60/180 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.The Treant attacks with its Rock.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":180,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RMsSkfIx97Hnqf37","name":"Siege Monster","type":"feat","img":"icons/creatures/magical/construct-iron-stomping-yellow.webp","system":{"description":{"value":"The treant deals double damage to objects and structures.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.cSA0EbjlxCbst4gJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lisZZTaupqInGEi1","name":"Slam","type":"weapon","img":"icons/magic/nature/tree-animated-strike.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 16 (3d6 + 6) bludgeoning damage.The Treant attacks with its Slam.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232789,"modifiedTime":1672596098767,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NmQLj0zv4FmfuSan","name":"Young Bronze Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":142,"min":0,"max":142,"temp":null,"tempmax":0,"formula":"15d10 + 60"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Coastal","cr":8,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["lightning"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Young Bronze Dragon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"E7PndURmnBqGibjl","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"22lf3TLPObmD4s6h","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+8 to hit,, 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage.The Young Bronze Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LMfwpBb1Pg7CLItO","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Lightning Breath.** The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 15 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.\n**Repulsion Breath.** The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 15 Strength saving throw. On a failed save, the creature is pushed 40 feet away from the dragon.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Eahi8ih9q0jF1XW2","name":"Lightning Breath","type":"feat","img":"icons/magic/lightning/bolt-strike-blue.webp","system":{"description":{"value":"\n*Lightning Breath.** The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 15 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":15,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LVnd9fq9cQj7rR0Q"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"h48EplFcKFZxJWjO","name":"Repulsion Breath","type":"feat","img":"icons/magic/air/air-wave-gust-blue.webp","system":{"description":{"value":"\n**Repulsion Breath.** The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 15 Strength saving throw. On a failed save, the creature is pushed 40 feet away from the dragon.\n\nThe dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must make a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":15,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zRDERBe0lMbwyGwN"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LGFPSpA0pvVpj3cF","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.The Young Bronze Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xDjzXK9dbD2EV8hi","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232791,"modifiedTime":1672596098812,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NpvwE1feOHyEqAbP","name":"Giant Constrictor Snake","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":60,"min":0,"max":60,"temp":0,"tempmax":0,"formula":"8d12 + 8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Constrictor Snake","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"qB9j7Epq7UVkGWzY","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage.\nThe Giant Constrictor Snake attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3FIKn37A037kPgzc","name":"Constrict","type":"weapon","img":"icons/creatures/reptiles/serpent-horned-green.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one creature. Hit: 13 (2d8 + 4) bludgeoning damage.\nThe target is grappled (escape DC 16). Until this grapple ends, the creature is restrained, and the snake can't constrict another target.\n\nThe Giant Constrictor Snake attacks with its Constrict. The target is grappled. Until this grapple ends, the creature is restrained, and the snake can't constrict another target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232793,"modifiedTime":1672596098852,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NwQpeeaMxAC3fRft","name":"Black Pudding","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":7,"calc":"natural","formula":""},"hp":{"value":85,"min":0,"max":85,"temp":0,"tempmax":0,"formula":"10d10 + 30"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":20,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":"Blind beyond this radius"},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"ooze","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":4,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["acid","cold","lightning","slashing"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["blinded","charmed","deafened","frightened","prone","exhaustion"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Black Pudding","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Na7qo8robmcacNZI","name":"Amorphous","type":"feat","img":"icons/creatures/slimes/slime-movement-dripping-purple.webp","system":{"description":{"value":"The pudding can move through a space as narrow as 1 inch wide without squeezing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.3lDp8DtWwNDHSvxX"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wvlDMuDDdk7peoPa","name":"Corrosive Form","type":"feat","img":"icons/magic/earth/orb-stone-smoke-teal.webp","system":{"description":{"value":"\nA creature that touches the pudding or hits it with a melee attack while within 5 feet of it takes 4 (1d8) acid damage. Any nonmagical weapon made of metal or wood that hits the pudding corrodes.\nAfter dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls. If its penalty drops to -5, the weapon is destroyed. Nonmagical ammunition made of metal or wood that hits the pudding is destroyed after dealing damage. The pudding can eat through 2-inch-thick, nonmagical wood or metal in 1 round.\n\nA creature that touches the pudding or hits it with a melee attack while within 5 feet of it takes acid damage. Any nonmagical weapon made of metal or wood that hits the pudding corrodes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.cZm13DxOe9lZyGFT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"06FRVwBFMJYhZ94o","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The pudding can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"v6ZspnPr8G5hApkL","name":"Pseudopod","type":"weapon","img":"icons/creatures/slimes/slime-movement-dripping-pseudopods-green.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) bludgeoning damage plus 18 (4d8) acid damage.\nIn addition, nonmagical armor worn by the target is partly dissolved and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.\n\nThe Black Pudding attacks with its Pseudopod. In addition, nonmagical armor worn by the target is partly dissolved and takes a permanent and cumulative -1 penalty to the AC it offers.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"],["4d8","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VcVWWSlfTBeXWh3T","name":"Split","type":"feat","img":"icons/creatures/slimes/slime-movement-pseudopod-green.webp","system":{"description":{"value":"\nWhen a pudding that is Medium or larger is subjected to lightning or slashing damage, it splits into two new puddings if it has at least 10 Hit Points. Each new pudding has Hit Points equal to half the original pudding's, rounded down. New puddings are one size smaller than the original pudding.\n\nThe pudding splits into two new puddings. New puddings are one size smaller than the original pudding.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.NzHwrEuKnKxZ4NTP"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232795,"modifiedTime":1672596098892,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"O3ABqI55Ir1du1Xa","name":"Scout","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":16,"min":0,"max":16,"temp":0,"tempmax":0,"formula":"3d8 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Alignment","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"any one language (usually Common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":2,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Scout","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"qnFVVlRzucX7BNga","name":"Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PQGwUNCJ7EkJAE8V","name":"Keen Hearing and Sight","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The scout has advantage on Wisdom (Perception) checks that rely on hearing or sight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YO57HtdvpuGxJANB","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The scout makes two melee attacks or two ranged attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YDoOa6D6QDoR2Htu","name":"Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\nThe Scout attacks with their Shortsword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.osLzOwQdPtrK3rQH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"E2fYrhLigMeVH09l","name":"Longbow","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"\nRanged Weapon Attack: +4 to hit, ranged 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\nThe Scout attacks with their Longbow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3cymOVja8jXbzrdT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232797,"modifiedTime":1672596098933,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"OBujQLLPSmlJiZnL","name":"Ghoul","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"5d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","poisoned","exhaustion"],"custom":""},"languages":{"value":["common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ghoul","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"E5cmqIqRIwyTkhgp","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+2 to hit,, 5 ft., one creature. Hit: 9 (2d6 + 2) piercing damage.The Ghoul attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"-2","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ArxzPC3rsBztgUvI","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage. If the target is a creature other than an elf or undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.The Ghoul attacks with its Claws. If the target is a creature other than an elf or undead, it must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232798,"modifiedTime":1672596098975,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"OGPHF4sCVOAi87TU","name":"Glabrezu","type":"npc","img":"","system":{"abilities":{"str":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":157,"min":0,"max":157,"temp":null,"tempmax":0,"formula":"15d10 + 75"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":"int"},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"fiend","subtype":"Demon","swarm":"","custom":""},"environment":"","cr":9,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","fire","lightning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["abyssal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Glabrezu","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"9kqiKxbLXk7Ved3q","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The glabrezu's spellcasting ability is Intelligence (spell save DC 16). The glabrezu can innately cast the following spells, requiring no material components:\nAt will: darkness, detect magic, dispel magic\n1/day each: confusion, fly, power word stun","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7a3DRiT1Ku9AnAQO","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The glabrezu has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MCquBpEbQDXKRAju","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The glabrezu makes four attacks: two with its pincers and two with its fists. Alternatively, it makes two attacks with its pincers and casts one spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pEUD99mri5iDNGH7","name":"Pincer","type":"weapon","img":"icons/commodities/claws/claw-pincer-red.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 10 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage. If the target is a Medium or smaller creature, it is grappled (escape DC 15). The glabrezu has two pincers, each of which can grapple only one target.The Glabrezu attacks with its Pincer. If the target is a Medium or smaller creature, it is grappled.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VGFZM2Zvp0NT5Yb9","name":"Fist","type":"weapon","img":"icons/magic/fire/flame-burning-fist-strike.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 5 ft., one target. Hit: 7 (2d4 + 2) bludgeoning damage.The Glabrezu attacks with its Fist.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod -3","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"S7VbUetIfVT7B6Eq","name":"Darkness","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Magical darkness spreads from a point you choose within range to fill a 15-foot-radius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and nonmagical light can't illuminate it.If the point you choose is on an object you are holding or one that isn't being worn or carried, the darkness emanates from the object and moves with it. Completely covering the source of the darkness with an opaque object, such as a bowl or a helm, blocks the darkness.If any of this spell's area overlaps with an area of light created by a spell of 2nd level or lower, the spell that created the light is dispelled.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Bat fur and a drop of pitch or piece of coal","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.S7VbUetIfVT7B6Eq"}},"img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234139,"modifiedTime":1661791116486,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116487,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"15Fa6q1nH27XfbR8","name":"Dispel Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose one creature, object, or magical effect within range. Any spell of 3rd level or lower on the target ends. For each spell of 4th level or higher on the target, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a successful check, the spell ends.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you automatically end the effects of a spell on the target if the spell's level is equal to or less than the level of the spell slot you used.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.15Fa6q1nH27XfbR8"}},"img":"icons/skills/melee/strike-blade-knife-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234054,"modifiedTime":1661791116487,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"9hQXdMSmerkTsHDe","name":"Confusion","type":"spell","img":"icons/magic/air/wind-tornado-cyclone-purple-pink.webp","system":{"description":{"value":"This spell assaults and twists creatures' minds, spawning delusions and provoking uncontrolled action. Each creature in a 10-foot-radius sphere centered on a point you choose within range must succeed on a Wisdom saving throw when you cast this spell or be affected by it.\nAn affected target can't take reactions and must roll [[/r 1d10]] at the start of each of its turns to determine its behavior for that turn.\n\n\n\nd10\nBehaviour\n\n\n\n\n1\nThe creature uses all its movement to move in a random direction. To determine the direction, roll [[/r 1d8]] and assign a direction to each die face. The creature doesn't take an action this turn.\n\n\n2-6\nThe creature doesn't move or take actions this turn.\n\n\n7-8\nThe creature uses its action to make a melee attack against a randomly determined creature within its reach. If there is no creature within its reach, the creature does nothing this turn.\n\n\n9-10\nThe creature can act and move normally. \n\n\n\nAt Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the radius of the sphere increases by 5 feet for each slot level above 4th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"sphere"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d10","save":{"ability":"wis","dc":16,"scaling":"spell"},"level":4,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Three walnut shells.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.9hQXdMSmerkTsHDe"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234085,"modifiedTime":1661791116491,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"yfbK8gZqESlaoY5t","name":"Fly","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a willing creature. The target gains a flying speed of 60 feet for the Duration. When the spell ends, the target falls if it is still aloft, unless it can stop the fall.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A wing feather from any bird","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.yfbK8gZqESlaoY5t"}},"img":"icons/magic/control/energy-stream-link-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234243,"modifiedTime":1661791116492,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"35j2QIMmIk6aEdxj","name":"Power Word Stun","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You speak a word of power that can overwhelm the mind of one creature you can see within range, leaving it dumbfounded. If the target has 150 Hit Points or fewer, it is Stunned. Otherwise, the spell has no effect.The stunned target must make a Constitution saving throw at the end of each of its turns. On a successful save, this stunning effect ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":16,"scaling":"spell"},"level":8,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.35j2QIMmIk6aEdxj"}},"img":"icons/magic/control/debuff-chains-ropes-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234062,"modifiedTime":1661791116492,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232800,"modifiedTime":1672596099071,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"OQqybZoMeDFn5AFD","name":"Sea Hag","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":52,"min":0,"max":52,"temp":0,"tempmax":0,"formula":"7d8 + 21"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"fey","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["aquan","common","giant"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Sea Hag","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"VlvfR7YD6twoSRhg","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The hag can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XeAyeJsNjKZKPWEN","name":"Horrific Appearance","type":"feat","img":"icons/creatures/unholy/demon-winged-cyclops-drooling.webp","system":{"description":{"value":"\nAny humanoid that starts its turn within 30 feet of the hag and can see the hag's true form must make a DC 11 Wisdom saving throw. On a failed save, the creature is frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, with disadvantage if the hag is within line of sight, ending the effect on itself on a success.\nIf a creature's saving throw is successful or the effect ends for it, the creature is immune to the hag's Horrific Appearance for the next 24 hours. Unless the target is surprised or the revelation of the hag's true form is sudden, the target can avert its eyes and avoid making the initial saving throw. Until the start of its next turn, a creature that averts its eyes has disadvantage on attack rolls against the hag.\n\nAny humanoid that starts its turn within 30 feet of the hag and can see the hag's true form must make a Wisdom saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":30,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.YShGyidij4sLpyzF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"a75Ba80yp6Y28AJQ","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.The Sea Hag attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7AGmP2dRLYmORUX7","name":"Death Glare","type":"feat","img":"icons/magic/death/skull-humanoid-worn-teal.webp","system":{"description":{"value":"The hag targets one frightened creature she can see within 30 ft. of her. If the target can see the hag, it must succeed on a DC 11 Wisdom saving throw against this magic or drop to 0 hit points.The hag targets one frightened creature she can see within 30 ft. of her. If the target can see the hag, it must make a Wisdom saving throw against this magic.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.o8G8BNPJOWoCKzR5"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8s0lGEYZGFEpwt12","name":"Illusory Appearance","type":"feat","img":"icons/magic/unholy/silhouette-robe-evil-power.webp","system":{"description":{"value":"The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like an ugly creature of her general size and humanoid shape. The effect ends if the hag takes a bonus action to end it or if she dies.\nThe changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have no claws, but someone touching her hand might feel the claws. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 16 Intelligence (Investigation) check to discern that the hag is disguised.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.s7kqggp9VLDb39nu"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232802,"modifiedTime":1672596099113,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"P6qC8jB3pnEH0tIE","name":"Chuul","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":16,"calc":"natural","formula":""},"hp":{"value":93,"min":0,"max":93,"temp":0,"tempmax":0,"formula":"11d10 + 33"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"aberration","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":4,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":[],"custom":"Understands Deep Speech but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Chuul","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"7lnXqe8AnWhtnQh7","name":"Pincer","type":"weapon","img":"icons/commodities/claws/claw-pincer-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\nThe target is grappled (escape DC 14) if it is a Large or smaller creature and the chuul doesn't have two other creatures grappled.\n\nThe Chuul attacks with its Pincer. The target is grappled if it is a Large or smaller creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XUzROtGqVZS61Ofm","name":"Tentacles","type":"feat","img":"icons/creatures/tentacles/tentacles-thing-green.webp","system":{"description":{"value":"\nOne creature grappled by the chuul must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute.\nUntil this poison ends, the target is paralyzed. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nOne creature grappled by the chuul must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nKpLMXS9E10TSGhU"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uMZgFW5l9JQmFBp8","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The chuul can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OtOJ4eSobUE30d2S","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The chuul makes two pincer attacks. If the chuul is grappling a creature, the chuul can also use its tentacles once.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"03oy1y5rwobZdg46","name":"Sense Magic","type":"feat","img":"icons/magic/water/projectile-ice-snowball.webp","system":{"description":{"value":"The chuul senses magic within 120 feet of it at will. This trait otherwise works like the detect magic spell but isn't itself magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JAnMheqgFhkLF2ET"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232804,"modifiedTime":1672596099151,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"PH78NBdvoaszAb61","name":"Death Dog","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":39,"min":0,"max":39,"temp":0,"tempmax":0,"formula":"6d8 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Death Dog","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"TKV9mS1lvqMAyCaB","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\nIf the target is a creature, it must succeed on a DC 12 Constitution saving throw against disease or become poisoned until the disease is cured. Every 24 hours that elapse, the creature must repeat the saving throw, reducing its hit point maximum by 5 (1d10) on a failure. This reduction lasts until the disease is cured. The creature dies if the disease reduces its hit point maximum to 0.\n\nThe Death Dog attacks with its Bite. If the target is a creature, it must make a Constitution saving throw. Every 24 hours that elapse, the creature must repeat the saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":12,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xpakQFJhIVCQz3Si","name":"Two-Headed","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"The dog has advantage on Wisdom (Perception) checks and on saving throws against being blinded, charmed, deafened, frightened, stunned, or knocked unconscious.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zSBlyP5Vm1CAV5VO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EHX3CeEnlmzwnnK5","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dog makes two bite attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232805,"modifiedTime":1672596099187,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"PHO4J98zK2p4KNyc","name":"Pony","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Urban","cr":0.125,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Pony","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"bDVZoB8Y0b3nkveO","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (2d4 + 2) bludgeoning damage.The Pony attacks with its Hooves.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232806,"modifiedTime":1672596099222,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"PVD5wRdyO7iCJPs1","name":"Priest","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":27,"min":0,"max":27,"temp":0,"tempmax":0,"formula":"5d8 + 5"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":25,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"wis"},"details":{"biography":{"value":"","public":""},"alignment":"Any Alignment","race":"","type":{"value":"humanoid","subtype":"Any Race","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":5,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"any two languages"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":2,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":4,"override":null},"spell2":{"value":3,"override":null},"spell3":{"value":2,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Priest","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"bndaCEOeIP8RgbU1","name":"Chain Shirt","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"Made of interlocking metal rings, a chain shirt is worn between layers of clothing or leather. This armor offers modest protection to the wearer's upper body and allows the sound of the rings rubbing against one another to be muffled by outer layers.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":20,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.p2zChy24ZJdVqMSH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"J12x6xIwx1aCEm1e","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The priest is a 5th-level spellcaster. Its spellcasting ability is Wisdom (spell save DC 13, +5 to hit with spell attacks). The priest has the following cleric spells prepared:\nCantrips (at will): light, sacred flame, thaumaturgy\n1st level (4 slots): cure wounds, guiding bolt, sanctuary\n2nd level (3 slots): lesser restoration, spiritual weapon\n3rd level (2 slots): dispel magic, spirit guardians","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9LzZrzdWIZpjFIGV","name":"Divine Eminence","type":"feat","img":"icons/magic/symbols/cog-shield-white-blue.webp","system":{"description":{"value":"As a bonus action, the priest can expend a spell slot to cause its melee weapon attacks to magically deal an extra 10 (3d6) radiant damage to a target on a hit. This benefit lasts until the end of the turn. If the priest expends a spell slot of 2nd level or higher, the extra damage increases by 1d6 for each level above 1st.As a bonus action, the priest can expend a spell slot to cause its melee weapon attacks to magically deal an extra radiant damage to a target on a hit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","radiant"]],"versatile":"1d6"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lVrnjqBrv90VH96d"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"B0jROhxuoqvfmz2B","name":"Mace","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Melee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 3 (1d6) bludgeoning damage.The Priest attacks with its Mace.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Ajyq6nGwF7FtLhDQ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"n9pJzTDsAwQxJVRl","name":"Sacred Flame","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Flame-like radiance descends on a creature that you can see within range. The target must succeed on a Dexterity saving throw or take 1d8 radiant damage. The target gains no benefit from cover for this saving throw.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.n9pJzTDsAwQxJVRl"}},"img":"icons/magic/light/beam-rays-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234221,"modifiedTime":1661791116513,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MUO1uYN7JR1hm4dR","name":"Thaumaturgy","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create one of the following magical effects within range:\n\nYour voice booms up to three times as loud as normal for 1 minute.\nYou cause flames to flicker, brighten, dim, or change color for 1 minute.\nYou cause harmless tremors in the ground for 1 minute.\nYou create a sound that originates from a point of your choice within range.\nYou cause an unlocked door or window to fly open or slam shut.\nYou alter the appearance of your eyes for 1 minute.\n\nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234127,"modifiedTime":1661791116513,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"7buEm5KhI5lP8m1z","name":"Guiding Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A flash of light streaks toward a creature of your choice within range. Make a ranged spell attack against the target. On a hit, the target takes 4d6 radiant damage, and the next attack roll made against this target before the end of your next turn has advantage, thanks to the mystical dim light glittering on the target until then.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.7buEm5KhI5lP8m1z"}},"img":"icons/magic/fire/projectile-fireball-smoke-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234075,"modifiedTime":1661791116513,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"gvdA9nPuWLck4tBl","name":"Sanctuary","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You ward a creature within range against attack. Until the spell ends, any creature who targets the warded creature with an attack or a harmful spell must first make a Wisdom saving throw. On a failed save, the creature must choose a new target or lose the attack or spell. This spell doesn't protect the warded creature from area effects, such as the explosion of a Fireball.If the warded creature makes an attack or casts a spell that affects an enemy creature, this spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small silver mirror","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gvdA9nPuWLck4tBl"}},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234193,"modifiedTime":1661791116514,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"F0GsG0SJzsIOacwV","name":"Lesser Restoration","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature and can end either one disease or one condition afflicting it. The condition can be blinded, deafened, paralyzed, or poisoned.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.F0GsG0SJzsIOacwV"}},"img":"icons/magic/life/heart-cross-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234103,"modifiedTime":1661791116514,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"JbxsYXxSOTZbf9I0","name":"Spiritual Weapon","type":"spell","img":"icons/magic/fire/dagger-rune-enchant-flame-purple.webp","system":{"description":{"value":"You create a floating, spectral weapon within range that lasts for the duration or until you cast this spell again. When you cast the spell, you can make a melee spell attack against a creature within 5 feet of the weapon. On a hit, the target takes force damage equal to 1d8 + your spellcasting ability modifier.As a bonus action on your turn, you can move the weapon up to 20 feet and repeat the attack against a creature within 5 feet of it.The weapon can take whatever form you choose. Clerics of deities who are associated with a particular weapon (as St. Cuthbert is known for his mace and Thor for his hammer) make this spell's effect resemble that weapon.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for every two slot levels above the 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"square"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["floor(@item.level / 2)d8 + @mod","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.JbxsYXxSOTZbf9I0"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234115,"modifiedTime":1661791116514,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"15Fa6q1nH27XfbR8","name":"Dispel Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose one creature, object, or magical effect within range. Any spell of 3rd level or lower on the target ends. For each spell of 4th level or higher on the target, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a successful check, the spell ends.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you automatically end the effects of a spell on the target if the spell's level is equal to or less than the level of the spell slot you used.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.15Fa6q1nH27XfbR8"}},"img":"icons/skills/melee/strike-blade-knife-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234054,"modifiedTime":1661791116515,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"uCud2s4TjMfjiXUb","name":"Spirit Guardians","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You call forth spirits to protect you. They flit around you to a distance of 15 feet for the duration. If you are good or neutral, their spectral form appears angelic or fey (your choice). If you are evil, they appear fiendish.When you cast this spell, you can designate any number of creatures you can see to be unaffected by it. An affected creature's speed is halved in the area, and when the creature enters the area for the first time on a turn or starts its turn there, it must make a Wisdom saving throw. On a failed save, the creature takes 3d8 radiant damage (if you are good or neutral) or 3d8 necrotic damage (if you are evil). On a successful save, the creature takes half as much damage.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"spell"},"level":3,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A holy symbol","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.uCud2s4TjMfjiXUb"}},"img":"icons/magic/light/projectile-bolts-salvo-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234235,"modifiedTime":1661791116515,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Bnn9Nzajixvow9xi","name":"Light","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A firefly or phosphorescent moss.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Bnn9Nzajixvow9xi"}},"img":"icons/magic/light/explosion-star-small-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234093,"modifiedTime":1661791116515,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"uUWb1wZgtMou0TVP","name":"Cure Wounds","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch regains a number of hit points equal to 1d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.uUWb1wZgtMou0TVP"}},"img":"icons/magic/life/heart-cross-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234236,"modifiedTime":1661791116516,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232808,"modifiedTime":1672596099322,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"PcZ0QjIG6bHpffp9","name":"Swarm of Bats","type":"npc","img":"","system":{"abilities":{"str":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"5d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":30,"swim":0,"walk":0,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"tiny","custom":""},"environment":"","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","grappled","paralyzed","petrified","prone","restrained","stunned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Swarm of Bats","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"0NpX1YUDTXjgIm23","name":"Bites","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 0 ft., one creature in the swarm's space. Hit: 5 (2d4) piercing damage, or 2 (1d4) piercing damage if the swarm has half of its hit points or fewer.\nThe Swarm of Bats attacks with a flurry of Bites.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4","piercing"]],"versatile":"1d4"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"cBVltbg8hNBBuTZ7","name":"Swarm","type":"feat","img":"icons/creatures/mammals/bats-movement-flying-purple.webp","system":{"description":{"value":"The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny bat. The swarm can't regain hit points or gain temporary hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Bats","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eL3OJmc4FuetizKO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AKRFqSGc4D9j3Mhl","name":"Keen Hearing","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The swarm has advantage on Wisdom (Perception) checks that rely on hearing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Bats","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tRdXVBesxDaXdhqP","name":"Echolocation","type":"feat","img":"icons/magic/control/hypnosis-mesmerism-eye.webp","system":{"description":{"value":"The swarm can't use its blindsight while deafened.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Bats","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.rUongiWD51ZopRk2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232810,"modifiedTime":1672596099371,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"PtotS52HpHX596cZ","name":"Purple Worm","type":"npc","img":"","system":{"abilities":{"str":{"value":28,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":22,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":247,"min":0,"max":247,"temp":0,"tempmax":0,"formula":"15d20 + 90"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":30,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":30,"tremorsense":60,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":15,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"grg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Purple Worm","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ZgUj67GknsWFnbAR","name":"Tunneler","type":"feat","img":"icons/magic/unholy/orb-glowing-yellow-purple.webp","system":{"description":{"value":"The worm can burrow through solid rock at half its burrow speed and leaves a 10-foot-diameter tunnel in its wake.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.3mrPXaxalJxpxVrv"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Uo4oxB1xZmJcWVsZ","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The worm makes two attacks: one with its bite and one with its stinger.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dlzFJ5UjbMAfJ6Sb","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 10 ft., one target. Hit: 22 (3d8 + 9) piercing damage. If the target is a Large or smaller creature, it must succeed on a DC 19 Dexterity saving throw or be swallowed by the worm. A swallowed creature is blinded and restrained, it has total cover against attacks and other effects outside the worm, and it takes 21 (6d6) acid damage at the start of each of the worm's turns.If the worm takes 30 damage or more on a single turn from a creature inside it, the worm must succeed on a DC 21 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the worm. If the worm dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 20 feet of movement, exiting prone.The Purple Worm attacks with its Bite. If the target is a Large or smaller creature, it must make a Dexterity saving throw. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8+@mod","piercing"]],"versatile":""},"formula":"6d6","save":{"ability":"dex","dc":19,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yOjkK3f9jt2fYu3M","name":"Tail Stinger","type":"weapon","img":"icons/creatures/abilities/stinger-poison-green.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 10 ft., one creature. Hit: 19 (3d6 + 9) piercing damage.The target must make a DC 19 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.The Purple Worm attacks with its Tail Stinger. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6+@mod","piercing"]],"versatile":""},"formula":"12d6","save":{"ability":"con","dc":19,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232812,"modifiedTime":1672596099414,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"PuPo4H4Dcxigf0fY","name":"Specter","type":"npc","img":"","system":{"abilities":{"str":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":null,"tempmax":0,"formula":"5d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["necrotic","poison"],"bypasses":[],"custom":""},"dr":{"value":["acid","bludgeoning","cold","fire","lightning","piercing","slashing","thunder"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","grappled","paralyzed","petrified","poisoned","prone","restrained","unconscious","exhaustion"],"custom":""},"languages":{"value":[],"custom":"Understands all languages it knew in life but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Specter","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"FpoS5qzlgE3YPZGN","name":"Incorporeal Movement","type":"feat","img":"icons/skills/movement/feet-winged-boots-brown.webp","system":{"description":{"value":"The specter can move through other creatures and objects as if they were difficult terrain.It takes 5 (1d10) force damage if it ends its turn inside an object.The specter can move through other creatures and objects as if they were difficult terrain.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LUHmtIDD1VTreFqI"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pxm7rAqI5ackW8Oy","name":"Life Drain","type":"weapon","img":"icons/magic/unholy/strike-hand-glow-pink.webp","system":{"description":{"value":"Melee Spell Attack:+4 to hit,, 5 ft., one creature. Hit: 10 (3d6) necrotic damage. The target must succeed on a DC 10 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the creature finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.The Specter attacks with its Life Drain.The target must make a Constitution saving throw. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6 + @mod","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":10,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1FbU02rRuNLnEDXC","name":"Sunlight Sensitivity","type":"feat","img":"icons/magic/time/day-night-sunset-sunrise.webp","system":{"description":{"value":"While in sunlight, the specter has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.F14aW2Ke3I5ZtSg4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232813,"modifiedTime":1672596099451,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"QGcQYZbVl4bWzi4E","name":"Shadow","type":"npc","img":"","system":{"abilities":{"str":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":16,"min":0,"max":16,"temp":null,"tempmax":0,"formula":"3d8 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["necrotic","poison"],"bypasses":[],"custom":""},"dr":{"value":["acid","bludgeoning","cold","fire","lightning","piercing","slashing","thunder"],"bypasses":["mgc"],"custom":""},"dv":{"value":["radiant"],"bypasses":[],"custom":""},"ci":{"value":["frightened","grappled","paralyzed","petrified","poisoned","prone","restrained","exhaustion"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Shadow","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"fo1ZqyGz5iv51Rj1","name":"Amorphous","type":"feat","img":"icons/creatures/slimes/slime-movement-dripping-purple.webp","system":{"description":{"value":"The shadow can move through a space as narrow as 1 inch wide without squeezing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":10,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.3lDp8DtWwNDHSvxX"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Xa0lRW8VhYHTAQT0","name":"Shadow Stealth","type":"feat","img":"icons/creatures/mammals/humanoid-cat-skulking-teal.webp","system":{"description":{"value":"\nWhile in dim light or darkness, the shadow can take the Hide action as a bonus action.\n\nThe shadow can take the Hide action as a bonus action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":"In dim light or darkness"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":10,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nUVFUgyKK7fmQaFh"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BrzbftAD7eqZXWA8","name":"Sunlight Weakness","type":"feat","img":"icons/magic/time/day-night-sunset-sunrise.webp","system":{"description":{"value":"While in sunlight, the shadow has disadvantage on attack rolls, ability checks, and saving throws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":10,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.u1Tt4l4Mczgt3wOS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2OUOBIN4TJDoL0sJ","name":"Strength Drain","type":"weapon","img":"icons/magic/unholy/strike-hand-glow-pink.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 9 (2d6 + 2) necrotic damage.The target's Strength score is reduced by 1d4. The target dies if this reduces its Strength to 0. Otherwise, the reduction lasts until the target finishes a short or long rest.If a non-evil humanoid dies from this attack, a new shadow rises from the corpse 1d4 hours later.The Shadow attacks with its Strength Drain.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":10,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232815,"modifiedTime":1672596099489,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"QSytPah5WKoFJ1zt","name":"Young Gold Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":178,"min":0,"max":178,"temp":0,"tempmax":0,"formula":"17d10 + 85"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":10,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Young Gold Dragon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"At4ZIy9ucx4umj5Y","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"IiZoBYBEjE5gGjeD","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.The Young Gold Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7lHaAZMjuTYZ6w6J","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Fire Breath.** The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 55 (10d10) fire damage on a failed save, or half as much damage on a successful one.\n**Weakening Breath.** The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qRuJSlOzJITBzcjv","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.The Young Gold Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VmQbXjALjJwKhT91","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AedUiopUrkxaTl7S","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\n**Fire Breath.** The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 55 (10d10) fire damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales fire in a 30-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":"Breath Weapon must be charged"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d10","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":17,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0D1CWFdQeP5vpXLz","name":"Weakening Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\n**Weakening Breath.** The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon exhales gas in a 30-foot cone. Each creature in that area must make a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":"Breath Weapon must be charged"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":17,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.IHh6n8uZBGqyRfZz"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232816,"modifiedTime":1672596099532,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"QtJairF0h18BRhEM","name":"Bugbear","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":27,"min":0,"max":27,"temp":0,"tempmax":0,"formula":"5d8 + 5"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","goblin"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Bugbear","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"0ZKRgrkQppv6MYIq","name":"Morningstar","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 11 (2d8 + 2) piercing damage.\nNOTE: the stats of this weapon have changed reflecting it being wielded by a creature with the \"Brute\" feature.\n\nThe Bugbear attacks with its Morningstar.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.dX8AxCh9o0A9CkT3"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CgwJLpd3sHn21cUQ","name":"Surprise Attack","type":"feat","img":"icons/magic/water/elemental-water.webp","system":{"description":{"value":"If the bugbear surprises a creature and hits it with an attack during the first round of combat, the target takes an extra 7 (2d6) damage from the attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.5DJYFjGQCz5aSl5e"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BsMLwJ3gDd0jADY3","name":"Brute","type":"feat","img":"icons/skills/melee/unarmed-punch-fist.webp","system":{"description":{"value":"A melee weapon deals one extra die of its damage when the bugbear hits with it (included in the attack).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.q8w1UF9woZDGIwvS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SvFPSD4QGfNEvB0c","name":"Hide Armor","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":12,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.n1V07puo0RQxPGuF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sSs3hSzkKBMNBgTs","name":"Shield","type":"equipment","img":"icons/equipment/shield/oval-wooden-boss-steel.webp","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xwZYlJUYOv2J044p","name":"Javelin","type":"weapon","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 9 (2d6 + 2) piercing damage in melee or 5 (1d6 + 2) piercing damage at range.The Bugbear attacks with its Javelin.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":"1d6 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":true},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DWLMnODrnHn8IbAG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232818,"modifiedTime":1672596099578,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"R2GPY9BhRmmwZwkh","name":"Gnoll","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"5d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"humanoid","subtype":"Gnoll","swarm":"","custom":""},"environment":"Grassland","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["gnoll"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Gnoll","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"WlaPkHNlq3vBfxnk","name":"Hide Armor","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":12,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.n1V07puo0RQxPGuF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sSs3hSzkKBMNBgTs","name":"Shield","type":"equipment","img":"icons/equipment/shield/oval-wooden-boss-steel.webp","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iBhjlawEB5iwUmoS","name":"Rampage","type":"feat","img":"icons/skills/melee/strike-axe-blood-red.webp","system":{"description":{"value":"When the gnoll reduces a creature to 0 hit points with a melee attack on its turn, the gnoll can take a bonus action to move up to half its speed and make a bite attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.BnuDkgCOeGvAoYhy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fVB2xcZ4wVwiqEYf","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage.The Gnoll attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lsZzJMqxUIjbczLM","name":"Spear","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.The Gnoll attacks with its Spear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","piercing"]],"versatile":"1d6+@mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"thr":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":true},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.OG4nBBydvmfWYXIk"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2Squ8wLvm5nSzA8w","name":"Longbow","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"Ranged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.The Gnoll attacks with its Longbow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3cymOVja8jXbzrdT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232821,"modifiedTime":1672596099634,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"RCv5y7iWlfNxkinx","name":"Pit Fiend","type":"npc","img":"","system":{"abilities":{"str":{"value":26,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":24,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":22,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":24,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":300,"min":0,"max":300,"temp":null,"tempmax":0,"formula":"24d10 + 168"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"Devil","swarm":"","custom":""},"environment":"","cr":20,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["infernal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Pit Fiend","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"wkqjn4bqhPIUUo7k","name":"Fear Aura","type":"feat","img":"icons/magic/water/elemental-water.webp","system":{"description":{"value":"Any creature hostile to the pit fiend that starts its turn within 20 feet of the pit fiend must make a DC 21 Wisdom saving throw, unless the pit fiend is incapacitated. On a failed save, the creature is frightened until the start of its next turn. If a creature's saving throw is successful, the creature is immune to the pit fiend's Fear Aura for the next 24 hours.Any creature hostile to the pit fiend that starts its turn within 20 feet of the pit fiend must make a Wisdom saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"1","units":"turn"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":21,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.MLVEyA7VcWu9uXqV"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2MKXiCJeOrUJIEto","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The pit fiend has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TT2YmAw82Sj1WNKn","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The pit fiend's weapon attacks are magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2Wh1GHIIzBfCm8md","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The pit fiend's spellcasting ability is Charisma (spell save DC 21). The pit fiend can innately cast the following spells, requiring no material components:\nAt will: detect magic, fireball\n3/day each: hold monster, wall of fire","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BFv56pkQ54pdTkYM","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The pit fiend makes four attacks: one with its bite, one with its claw, one with its mace, and one with its tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GjIQl7UOQUtsrj2v","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 5 ft., one target. Hit: 22 (4d6 + 8) piercing damage.The target must succeed on a DC 21 Constitution saving throw or become poisoned. While poisoned in this way, the target can't regain hit points, and it takes 21 (6d6) poison damage at the start of each of its turns. The poisoned target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.The Pit Fiend attacks with its Bite. The target must succeed on a DC 21 Constitution saving throw or become poisoned. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6 + @mod","piercing"]],"versatile":""},"formula":"6d6","save":{"ability":"con","dc":21,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RkuPEGbAXHhxfNWJ","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack: +14 to hit, reach 10 ft. , one target. Hit: 17 (2d8 + 8) slashing damage.The Pit Fiend attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gpjBebqxqbQA35st","name":"Mace","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 15 (2d6 + 8) bludgeoning damage plus 21 (6d6) fire damage.The Pit Fiend attacks with its Mace.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"],["6d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Ajyq6nGwF7FtLhDQ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Gh1DbMpJiaTlTwWp","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nMelee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 24 (3d10 + 8) bludgeoning damage.\nThe Pit Fiend attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116539,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ztgcdrWPshKRpFd0","name":"Fireball","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A bright streak flashes from your pointing finger to a point you choose within range and then blossoms with a low roar into an explosion of flame. Each creature in a 20-foot-radius sphere centered on that point must make a Dexterity saving throw. A target takes 8d6 fire damage on a failed save, or half as much damage on a successful one.The fire spreads around corners. It ignites flammable objects in the area that aren't being worn or carried.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":21,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A tiny ball of bat guano and sulfur","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ztgcdrWPshKRpFd0"}},"img":"icons/magic/fire/projectile-fireball-smoke-large-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234246,"modifiedTime":1661791116540,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"l9Ju5KE7bbn3WpTm","name":"Hold Monster","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a creature that you can see within range. The target must succeed on a Wisdom saving throw or be Paralyzed for the Duration. This spell has no effect on Undead. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, you can target one additional creature for each slot level above 5th. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":21,"scaling":"spell"},"level":5,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small, straight piece of iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.l9Ju5KE7bbn3WpTm"}},"img":"icons/magic/control/debuff-chains-ropes-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234216,"modifiedTime":1661791116540,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"X3DrXgxjwI2dvkD6","name":"Wall of Fire","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a wall of fire on a solid surface within range. You can make the wall up to 60 feet long, 20 feet high, and 1 foot thick, or a ringed wall up to 20 feet in diameter, 20 feet high, and 1 foot thick. The wall is opaque and lasts for the duration.When the wall appears, each creature within its area must make a Dexterity saving throw. On a failed save, a creature takes 5d8 fire damage, or half as much damage on a successful save.One side of the wall, selected by you when you cast this spell, deals 5d8 fire damage to each creature that ends its turn within 10 feet of that side or inside the wall. A creature takes the same damage when it enters the wall for the first time on a turn or ends its turn there. The other side of the wall deals no damage.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"wall"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":21,"scaling":"spell"},"level":4,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small piece of phosphorous","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.X3DrXgxjwI2dvkD6"}},"img":"icons/magic/air/fog-gas-smoke-swirling-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234155,"modifiedTime":1661791116540,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232823,"modifiedTime":1672596099731,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"RenLfmDT2XlbCF4x","name":"Ogre Zombie","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":6,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":8,"calc":"natural","formula":""},"hp":{"value":85,"min":0,"max":85,"temp":0,"tempmax":0,"formula":"9d10 + 36"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["custom"],"custom":"understands Common and Giant but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ogre Zombie","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Gj35Y1i6Ph90Wn3R","name":"Morningstar","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.The Ogre Zombie attacks with its Morningstar.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.dX8AxCh9o0A9CkT3"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NPmV7puA7Yg3esqg","name":"Undead Fortitude","type":"feat","img":"icons/magic/acid/pouring-gas-smoke-liquid.webp","system":{"description":{"value":"If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5+the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead.If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VYAnJjIgb5nPXfRr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232825,"modifiedTime":1672596099777,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"S0zDrv6lbnwWaz9E","name":"Swarm of Insects","type":"npc","img":"","system":{"abilities":{"str":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"5d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":20,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"tiny","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","grappled","paralyzed","petrified","prone","restrained","stunned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Swarm of Insects","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"neAokA0n390MXPMQ","name":"Swarm","type":"feat","img":"icons/creatures/invertebrates/fly-wasp-mosquito-green.webp","system":{"description":{"value":"The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Bats","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eL3OJmc4FuetizKO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1yXz3JunJtlQs6vV","name":"Bites","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 0 ft., one target in the swarm's space. Hit: 10 (4d4) piercing damage, or 5 (2d4) piercing damage if the swarm has half of its hit points or fewer.\nThe Swarm of Insects attacks with a flurry of Bites.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d4","piercing"]],"versatile":"2d4"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232826,"modifiedTime":1672596099814,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SBCe2BSa6opTS5M4","name":"Rhinoceros","type":"npc","img":"","system":{"abilities":{"str":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":45,"min":0,"max":45,"temp":0,"tempmax":0,"formula":"6d10 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Rhinoceros","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"e1ZjZT7dyExUSEOu","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nIf the rhinoceros moves at least 20 ft. straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 9 (2d8) bludgeoning damage.\nIf the target is a creature, it must succeed on a DC 15 Strength saving throw or be knocked prone.\n\nIf the rhinoceros moves at least 20 ft. straight toward a target and then hits it with a gore attack on the same turn, the target takes extra bludgeoning damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":15,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uFv78t6CwySS1gio","name":"Gore","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.\nThe Rhinoceros attacks with its Gore.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232828,"modifiedTime":1672596099855,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SMfgOsfPgf6rb01k","name":"Flying Snake","type":"npc","img":"","system":{"abilities":{"str":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":5,"min":0,"max":5,"temp":0,"tempmax":0,"formula":"2d4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.125,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Flying Snake","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"5d7uD5cYAPtlPrWh","name":"Flyby","type":"feat","img":"icons/creatures/mammals/bats-movement-flying-purple.webp","system":{"description":{"value":"The snake doesn't provoke opportunity attacks when it flies out of an enemy's reach.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Owl","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.7WfeHV27l7DMcuTG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ITtDDLuoOyJbDQpA","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 1 piercing damage plus 7 (3d4) poison damage.\nThe Flying Snake attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"],["3d4","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232829,"modifiedTime":1672596099891,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SNT0JNVSngUTsj4m","name":"Ancient Blue Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":29,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":27,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":22,"calc":"natural","formula":""},"hp":{"value":481,"min":0,"max":481,"temp":0,"tempmax":0,"formula":"26d20+208"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":40,"climb":0,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":23,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"grg","di":{"value":["lightning"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Ancient Blue Dragon","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"OUkdlIHkMVy9284v","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gbM7g0hyrF6MMYqR","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"F29wEcjTlpKWcfO3","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+16 to hit,, 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage plus 10 (2d10) lightning damage.\nThe Ancient Blue Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["2d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uDd2aKkvwMwZfncQ","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BOsuBiKE1Enpl4xl","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BLj6WOTkgYmTEfj1","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Hoc6KiovAZiBi5HV","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+16 to hit,, 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.The Ancient Blue Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NhYVY7hHFu2YsFpN","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"834XVlRwHOXkE2rK","name":"Lightning Breath","type":"feat","img":"icons/magic/lightning/bolt-strike-blue.webp","system":{"description":{"value":"The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":120,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["16d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LVnd9fq9cQj7rR0Q"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rwLwUWCVufdiKDaK","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+16 to hit,, 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.The Ancient Blue Dragon attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qUJb6VyY5ITDA0TL","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZF7ixqLMH0gc0qlL","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 24 Dexterity saving throw or take 16 ([[/r 2d6+9]]) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"IzwKf1Ux0tSzK1F7","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232831,"modifiedTime":1672596099981,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SOin81NWijHRvXFK","name":"Stone Giant","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":126,"min":0,"max":126,"temp":0,"tempmax":0,"formula":"11d12 + 55"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"giant","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":7,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["giant"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":2,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Stone Giant","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Tm2NY0eSI6InRcsa","name":"Greatclub","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 15 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.The Stone Giant attacks with its Greatclub.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QRCsxkCwWNwswL9o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"W7aeXkpOJ1TwM0dq","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The giant makes two greatclub attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eiNNUlTgJyVFcQkO","name":"Rock","type":"weapon","img":"icons/magic/earth/projectile-stone-ball-brown.webp","system":{"description":{"value":"Ranged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage. If the target is a creature, it must succeed on a DC 17 Strength saving throw or be knocked prone.The Stone Giant attacks with its Rock. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":240,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HxKKuoyc6AYGLsIX","name":"Rock Catching","type":"feat","img":"icons/skills/melee/unarmed-punch-fist.webp","system":{"description":{"value":"If a rock or similar object is hurled at the giant, the giant can, with a successful DC 10 Dexterity saving throw, catch the missile and take no bludgeoning damage from it.If a rock or similar object is hurled at the giant, the giant can catch the missile and take no bludgeoning damage from it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":10,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.BpwXJvMA7MfVQ7i6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zqsYu35qYHNNeTWE","name":"Stone Camouflage","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"The giant has advantage on Dexterity (Stealth) checks made to hide in rocky terrain.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.j1cPfWFNvxGoex9Z"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232833,"modifiedTime":1672596100027,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SXXvwaLBNuzBymp3","name":"Axe Beak","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":19,"min":0,"max":19,"temp":0,"tempmax":0,"formula":"3d10 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Axe Beak","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"alpha":1,"light":{"alpha":0.5,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"reverse":false,"type":null},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.3},"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"FsSMPLEC46UKCf7T","name":"Beak","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 6 (1d8 + 2) slashing damage.\nThe Axe Beak attacks with its Beak.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232835,"modifiedTime":1672596100062,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SoK7l5zJQKxTVgLL","name":"Giant Bat","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"4d10"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Bat","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"UfsuvLGCWiYxrys1","name":"Echolocation","type":"feat","img":"icons/magic/control/hypnosis-mesmerism-eye.webp","system":{"description":{"value":"The bat can't use its blindsight while deafened.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.rUongiWD51ZopRk2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6xCOiR7PxQkaDGY4","name":"Keen Hearing","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The bat has advantage on Wisdom (Perception) checks that rely on hearing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"r77BXFVYT1LuJCZs","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 5 (1d6 + 2) piercing damage.\nThe Giant Bat attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232836,"modifiedTime":1672596100097,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SqZRuJ8lt2KGJBbq","name":"Commoner","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":4,"min":0,"max":4,"temp":0,"tempmax":0,"formula":"1d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"any one language (usually Common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Commoner","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"HwktDnB8qdr0BYGZ","name":"Club","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"\nMelee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 2 (1d4) bludgeoning damage.\nThe Commoner attacks with their Club.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"lgt":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.nfIRTECQIG81CvM4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232838,"modifiedTime":1672596100133,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SsuCaF2fIEoDdFA3","name":"Giant Boar","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":42,"min":0,"max":42,"temp":0,"tempmax":0,"formula":"5d10 + 15"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Boar","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"1ArcmRCn5G0t6sOo","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nIf the boar moves at least 20 ft. straight toward a target and then hits it with a tusk attack on the same turn, the target takes an extra 7 (2d6) slashing damage.\nIf the target is a creature, it must succeed on a DC 13 Strength saving throw or be knocked prone.\n\nIf the boar moves at least 20 ft. straight toward a target and then hits it with a tusk attack on the same turn, the target takes extra slashing damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","slashing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"byaGAd7ILpgsQ7Un","name":"Relentless","type":"feat","img":"icons/magic/water/heart-ice-freeze.webp","system":{"description":{"value":"\nIf the boar takes 10 damage or less that would reduce it to 0 hit points, it is reduced to 1 hit point instead. Recharges after a short or long rest.\n\nIf the boar takes damage that would reduce it to 0 hit points, it is reduced to 1 hit point instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.8FX2KlWyBAKEYGzs"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zHwaxxXcDz8AE8Bj","name":"Tusk","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\nThe Giant Boar attacks with its Tusk.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232839,"modifiedTime":1672596100169,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"T1xZTDCGuvMBSq8d","name":"Warhorse","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":19,"min":0,"max":19,"temp":0,"tempmax":0,"formula":"3d10 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":60,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Urban","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Warhorse","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"1KyNbDtLLrcA5lj0","name":"Trampling Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nIf the horse moves at least 20 ft. straight toward a creature and then hits it with a hooves attack on the same turn, that target must succeed on a DC 14 Strength saving throw or be knocked prone. If the target is prone, the horse can make another attack with its hooves against it as a bonus action.\n\nIf the horse moves at least 20 ft. straight toward a creature and then hits it with a hooves attack on the same turn, that target must succeed on Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yD51x4dihnbHwfsj"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7MiLYgDyM2Rm3nEb","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\nThe Warhorse attacks with its Hooves.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232841,"modifiedTime":1672596100206,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"T2PExQE84ZcIbAXz","name":"Hippogriff","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":19,"min":0,"max":19,"temp":0,"tempmax":0,"formula":"3d10 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Hippogriff","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.3,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"b4iE9smYUMqyqVi6","name":"Keen Sight","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The hippogriff has advantage on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bUWbRbY7TpLSL1kO","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The hippogriff makes two attacks: one with its beak and one with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CNurXa30GaCRT8MC","name":"Beak","type":"weapon","img":"icons/commodities/bones/beak-hooked-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.The Hippogriff attacks with its Beak.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pJN1LKPv23YgFC8w","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.The Hippogriff attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232843,"modifiedTime":1672596100248,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"TaK6nQMGqZ0y8gt7","name":"Shrieker","type":"npc","img":"","system":{"abilities":{"str":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":5,"calc":"natural","formula":""},"hp":{"value":13,"min":0,"max":13,"temp":0,"tempmax":0,"formula":"3d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":0,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":"Blind beyond this radius"},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"plant","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["blinded","deafened","frightened"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Shrieker","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Cvw6LMtbxmSBvVoZ","name":"Shriek","type":"feat","img":"icons/creatures/abilities/mouth-teeth-human.webp","system":{"description":{"value":"When bright light or a creature is within 30 feet of the shrieker, it emits a shriek audible within 300 feet of it. The shrieker continues to shriek until the disturbance moves out of range and for 1d4 of the shrieker's turns afterwardWhen bright light or a creature is within 30 feet of the shrieker, it emits a shriek audible within 300 feet of it. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.OqRnKL4703RuReS1"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NAyTy2HfzqvHtjRh","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the shrieker remains motionless, it is indistinguishable from an ordinary fungus.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232845,"modifiedTime":1672596100285,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"TjWQOgI3A4UAl7lC","name":"Goblin","type":"npc","img":"","system":{"abilities":{"str":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":7,"min":0,"max":7,"temp":0,"tempmax":0,"formula":"2d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"humanoid","subtype":"Goblinoid","swarm":"","custom":""},"environment":"Underdark","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","goblin"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Goblin","displayName":0,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Ti3XQOmTKdgcnpAa","name":"Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sSs3hSzkKBMNBgTs","name":"Shield","type":"equipment","img":"icons/equipment/shield/oval-wooden-boss-steel.webp","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SxVatHq02vURYDt3","name":"Nimble Escape","type":"feat","img":"icons/skills/movement/feet-winged-boots-brown.webp","system":{"description":{"value":"The goblin can take the Disengage or Hide action as a bonus action on each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.PqVfFNyOPmecrS7N"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"S6UTTLu0bEB32HNG","name":"Scimitar","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.\nThe Goblin attacks with its Scimitar.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.fbC0Mg1a73wdFbqO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YqS3dsIlpWb2Q2UI","name":"Shortbow","type":"weapon","img":"icons/weapons/bows/shortbow-recurve.webp","system":{"description":{"value":"\nRanged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\nThe Goblin attacks with its Shortbow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.GJv6WkD7D2J6rP6M"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232846,"modifiedTime":1672596100326,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"UFW8M3JHzHkxUEGM","name":"Mummy Lord","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":97,"min":0,"max":97,"temp":null,"tempmax":0,"formula":"13d8 + 39"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"wis"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":15,"spellLevel":10,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["bludgeoning","necrotic","piercing","poison","slashing"],"bypasses":["mgc"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":["fire"],"bypasses":[],"custom":""},"ci":{"value":["charmed","exhaustion","frightened","paralyzed","poisoned"],"custom":""},"languages":{"value":[],"custom":"the languages it knew in life"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":4,"override":null},"spell2":{"value":3,"override":null},"spell3":{"value":3,"override":null},"spell4":{"value":3,"override":null},"spell5":{"value":2,"override":null},"spell6":{"value":1,"override":1},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":0,"max":0},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Mummy Lord","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.3,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Os0eEymWpLTVR2Xv","name":"Blinding Dust","type":"feat","img":"icons/magic/fire/barrier-wall-explosion-orange.webp","system":{"description":{"value":"\nBlinding dust and sand swirls magically around the mummy lord. Each creature within 5 feet of the mummy lord must succeed on a DC 16 Constitution saving throw or be blinded until the end of the creature's next turn.\n\nBlinding dust and sand swirls magically around the mummy lord. Each creature within 5 feet of the mummy lord must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":16,"scaling":"con"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.ao6mxTJVYy7WaVgW"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3PBv68cIzTlrzcYe","name":"Blasphemous Word","type":"feat","img":"icons/magic/air/wind-vortex-swirl-purple.webp","system":{"description":{"value":"\nThe mummy lord utters a blasphemous word. Each non-undead creature within 10 feet of the mummy lord that can hear the magical utterance must succeed on a DC 16 Constitution saving throw or be stunned until the end of the mummy lord's next turn.\n\nThe mummy lord utters a blasphemous word. Each non-undead creature within 10 feet of the mummy lord that can hear the magical utterance must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":16,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Xwj2GPqTxngS0j2L"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sjY1jcYS6PdmZYKH","name":"Channel Negative Energy","type":"feat","img":"icons/magic/unholy/beam-impact-purple.webp","system":{"description":{"value":"The mummy lord magically unleashes negative energy. Creatures within 60 feet of the mummy lord, including ones behind barriers and around corners, can't regain hit points until the end of the mummy lord's next turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LO4nrudXAKJ4DbQI"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JxFTskCIHyVwp7fF","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The mummy lord has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AEc5FXdpe3M7KHQI","name":"Rejuvenation","type":"feat","img":"icons/magic/control/debuff-energy-hold-levitate-green.webp","system":{"description":{"value":"A destroyed mummy lord gains a new body in 24 hours if its heart is intact, regaining all its hit points and becoming active again. The new body appears within 5 feet of the mummy lord's heart.A destroyed mummy lord gains a new body in 24 hours.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JcfHlAcfwSWnt7Ud"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FeMPdVmbrjP2L3CO","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"\nThe mummy lord is a 10th-level spellcaster. Its spellcasting ability is Wisdom (spell save DC 17, +9 to hit with spell attacks). The mummy lord has the following cleric spells prepared:\nCantrips (at will): sacred flame, thaumaturgy\n1st level (4 slots): command, guiding bolt, shield of faith\n2nd level (3 slots): hold person, silence, spiritual weapon\n3rd level (3 slots): animate dead, dispel magic\n4th level (3 slots): divination, guardian of faith\n5th level (2 slots): contagion, insect plague\n6th level (1 slot): harm\n\nThe mummy lord is a spellcaster. Its spellcasting ability is Wisdom.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xZSeAPj02NKne0AK","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The mummy can use its Dreadful Glare and makes one attack with its rotting fist.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"M6t9H8pMhzQxM9qv","name":"Rotting Fist","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 5 ft., one target. Hit: 14 (3d6 + 4) bludgeoning damage plus 21 (6d6) necrotic damage. If the target is a creature, it must succeed on a DC 16 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.The Mummy Lord attacks with its Rotting Fist. If the target is a creature, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6+@mod","bludgeoning"],["6d6","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":16,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yHydHrxw4vlDlyjf","name":"Dreadful Glare","type":"feat","img":"icons/magic/perception/hand-eye-pink.webp","system":{"description":{"value":"The mummy lord targets one creature it can see within 60 feet of it. If the target can see the mummy lord, it must succeed on a DC 16 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies and mummy lords for the next 24 hours.The mummy lord targets one creature it can see within 60 ft. of it. If the target can see the mummy, it must make a Wisdom saving throw against this magic.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":16,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.H306eluIH47Wfr0U"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"und47mebgauAcPu4","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe mummy lord can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The mummy lord regains spent legendary actions at the start of its turn.\n\nThe mummy lord can take 3 legendary actions.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NMN6cq7RkU8ccxKF","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"IL0u33pW96t5O04m","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MVq9wNMasHT5Cr1J","name":"Attack","type":"feat","img":"icons/skills/melee/weapons-crossed-swords-white-blue.webp","system":{"description":{"value":"The mummy lord makes one attack with its Rotting Fist or uses its Dreadful Glare.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"o7UvUGPaF9cnGcQi","name":"Whirlwind of Sand","type":"feat","img":"icons/magic/fire/explosion-mushroom-nuke-orange.webp","system":{"description":{"value":"The mummy lord magically transforms into a whirlwind of sand, moves up to 60 feet, and reverts to its normal form. While in whirlwind form, the mummy lord is immune to all damage, and it can't be grappled, petrified, knocked prone, restrained, or stunned. Equipment worn or carried by the mummy lord remain in its possession.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.X96xsQjIolyHtV91"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"n9pJzTDsAwQxJVRl","name":"Sacred Flame","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Flame-like radiance descends on a creature that you can see within range. The target must succeed on a Dexterity saving throw or take 1d8 radiant damage. The target gains no benefit from cover for this saving throw.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":17,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.n9pJzTDsAwQxJVRl"}},"img":"icons/magic/light/beam-rays-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234221,"modifiedTime":1661791116566,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MUO1uYN7JR1hm4dR","name":"Thaumaturgy","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create one of the following magical effects within range:\n\nYour voice booms up to three times as loud as normal for 1 minute.\nYou cause flames to flicker, brighten, dim, or change color for 1 minute.\nYou cause harmless tremors in the ground for 1 minute.\nYou create a sound that originates from a point of your choice within range.\nYou cause an unlocked door or window to fly open or slam shut.\nYou alter the appearance of your eyes for 1 minute.\n\nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234127,"modifiedTime":1661791116567,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"arzCrMRgcNiQuh43","name":"Command","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You speak a one-word command to a creature you can see within range. The target must succeed on a Wisdom saving throw or follow the command on its next turn. The spell has no effect if the target is undead, if it doesn't understand your language, or if your command is directly harmful to it.Some typical commands and their effects follow. You might issue a command other than one described here. If you do so, the DM determines how the target behaves. If the target can't follow your command, the spell ends.Approach. The target moves toward you by the shortest and most direct route, ending its turn if it moves within 5 feet of you.Drop. The target drops whatever it is holding and then ends its turn.Flee. The target spends its turn moving away from you by the fastest available means.Grovel. The target falls prone and then ends its turn.Halt. The target doesn't move and takes no actions. A flying creature stays aloft, provided that it is able to do so. If it must move to stay aloft, it flies the minimum distance needed to remain in the air.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.arzCrMRgcNiQuh43"}},"img":"icons/magic/fire/explosion-fireball-small-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234169,"modifiedTime":1661791116567,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"7buEm5KhI5lP8m1z","name":"Guiding Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A flash of light streaks toward a creature of your choice within range. Make a ranged spell attack against the target. On a hit, the target takes 4d6 radiant damage, and the next attack roll made against this target before the end of your next turn has advantage, thanks to the mystical dim light glittering on the target until then.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.7buEm5KhI5lP8m1z"}},"img":"icons/magic/fire/projectile-fireball-smoke-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234075,"modifiedTime":1661791116568,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"jZ6JNykRtdQ90MOo","name":"Shield of Faith","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A shimmering field appears and surrounds a creature of your choice within range, granting it a +2 bonus to AC for the duration.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small parchment with a bit of holy text written on it.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.jZ6JNykRtdQ90MOo"}},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234212,"modifiedTime":1661791116568,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"3Lo9boi7P2ro6QV4","name":"Hold Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a humanoid that you can see within range. The target must succeed on a Wisdom saving throw or be paralyzed for the duration. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional humanoid for each slot level above 2nd. The humanoids must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small, straight piece of iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.3Lo9boi7P2ro6QV4"}},"img":"icons/magic/control/debuff-chains-ropes-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234063,"modifiedTime":1661791116568,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"5VhqFROQYjr1P9lp","name":"Silence","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the Duration, no sound can be created within or pass through a 20-foot-radius sphere centered on a point you choose within range. Any creature or object entirely inside the sphere is immune to thunder damage, and creatures are Deafened while entirely inside it. Casting a Spell that includes a verbal component is impossible there.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.5VhqFROQYjr1P9lp"}},"img":"icons/magic/symbols/runes-triangle-magenta.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234069,"modifiedTime":1661791116568,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"JbxsYXxSOTZbf9I0","name":"Spiritual Weapon","type":"spell","img":"icons/magic/fire/dagger-rune-enchant-flame-purple.webp","system":{"description":{"value":"You create a floating, spectral weapon within range that lasts for the duration or until you cast this spell again. When you cast the spell, you can make a melee spell attack against a creature within 5 feet of the weapon. On a hit, the target takes force damage equal to 1d8 + your spellcasting ability modifier.As a bonus action on your turn, you can move the weapon up to 20 feet and repeat the attack against a creature within 5 feet of it.The weapon can take whatever form you choose. Clerics of deities who are associated with a particular weapon (as St. Cuthbert is known for his mace and Thor for his hammer) make this spell's effect resemble that weapon.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for every two slot levels above the 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"square"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["floor(@item.level / 2)d8 + @mod","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.JbxsYXxSOTZbf9I0"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234115,"modifiedTime":1661791116569,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"oyE5nVppa5mde5gT","name":"Animate Dead","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell creates an undead servant. Choose a pile of bones or a corpse of a Medium or Small humanoid within range. Your spell imbues the target with a foul mimicry of life, raising it as an undead creature. The target becomes a skeleton if you chose bones or a zombie if you chose a corpse (the DM has the creature's game statistics).On each of your turns, you can use a bonus action to mentally command any creature you made with this spell if the creature is within 60 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete.The creature is under your control for 24 hours, after which it stops obeying any command you've given it. To maintain control of the creature for another 24 hours, you must cast this spell on the creature again before the current 24-hour period ends. This use of the spell reasserts your control over up to four creatures you have animated with this spell, rather than animating a new one.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you animate or reassert control over two additional undead creatures for each slot level above 3rd. Each of the creatures must come from a different corpse or pile of bones.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A drop of blood, a piece of flesh, and a pinch of bone dust","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.oyE5nVppa5mde5gT"}},"img":"icons/magic/control/fear-fright-monster-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234225,"modifiedTime":1661791116569,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"15Fa6q1nH27XfbR8","name":"Dispel Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose one creature, object, or magical effect within range. Any spell of 3rd level or lower on the target ends. For each spell of 4th level or higher on the target, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a successful check, the spell ends.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you automatically end the effects of a spell on the target if the spell's level is equal to or less than the level of the spell slot you used.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.15Fa6q1nH27XfbR8"}},"img":"icons/skills/melee/strike-blade-knife-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234054,"modifiedTime":1661791116570,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"XqzXSKNR75ZdYTA9","name":"Divination","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your magic and an offering put you in contact with a god or a god's servants. You ask a single question concerning a specific goal, event, or activity to occur within 7 days. The DM offers a truthful reply. The reply might be a short phrase, a cryptic rhyme, or an omen.The spell doesn't take into account any possible circumstances that might change the outcome, such as the casting of additional spells or the loss or gain of a companion.If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get a random reading. The DM makes this roll in secret.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"Incense and a sacrificial offering appropiate to your religion, together worth at least 25gp, which the spell consumes","consumed":true,"cost":25,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.XqzXSKNR75ZdYTA9"}},"img":"icons/magic/light/beam-rays-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234159,"modifiedTime":1661791116570,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"TgHsuhNasPbhu8MO","name":"Guardian of Faith","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A Large Spectral Guardian appears and hovers for the Duration in an unoccupied space of your choice that you can see within range. The guardian occupies that space and is indistinct except for a gleaming sword and shield emblazoned with the symbol of your deity.Any creature hostile to you that moves to a space within 10 feet of the guardian for the first time on a turn must succeed on a Dexterity saving throw. The creature takes 20 radiant damage on a failed save, or half as much damage on a successful one. The guardian vanishes when it has dealt a total of 60 damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["20","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":4,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.TgHsuhNasPbhu8MO"}},"img":"icons/magic/control/buff-flight-wings-runes-blue-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234145,"modifiedTime":1661791116571,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"CjIq8Ed7bu3vVwT1","name":"Contagion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your touch inflicts disease. Make a melee spell attack against a creature within your reach. On a hit, you afflict the creature with a disease of your choice from any of the ones described below.At the end of each of the target's turns, it must make a Constitution saving throw. After failing three of these saving throws, the disease's effects last for the duration, and the creature stops making these saves. After succeeding on three of these saving throws, the creature recovers from the disease, and the spell ends.Since this spell induces a natural disease in its target, any effect that removes a disease or otherwise ameliorates a disease's effects apply to it.Blinding Sickness. Pain grips the creature's mind, and its eyes turn milky white. The creature has disadvantage on Wisdom checks and Wisdom saving throws and is blinded.Filth Fever. A raging fever sweeps through the creature's body. The creature has disadvantage on Strength checks, Strength saving throws, and attack rolls that use Strength.Flesh Rot. The creature's flesh decays. The creature has disadvantage on Charisma checks and vulnerability to all damage.Mindfire. The creature's mind becomes feverish. The creature has disadvantage on Intelligence checks and Intelligence saving throws, and the creature behaves as if under the effects of the confusion spell during combat.Seizure. The creature is overcome with shaking. The creature has disadvantage on Dexterity checks, Dexterity saving throws, and attack rolls that use Dexterity.Slimy Doom. The creature begins to bleed uncontrollably. The creature has disadvantage on Constitution checks and Constitution saving throws. In addition, whenever the creature takes damage, it is stunned until the end of its next turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"7","units":"day"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":17,"scaling":"spell"},"level":5,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.CjIq8Ed7bu3vVwT1"}},"img":"icons/magic/unholy/strike-beam-blood-large-red-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234097,"modifiedTime":1661791116571,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"OVikYmSdHliAG2YD","name":"Insect Plague","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Swarming, biting locusts fill a 20-foot-radius Sphere centered on a point you choose within range. The sphere spreads around corners. The sphere remains for the Duration, and its area is lightly obscured. The sphere's area is difficult terrain.When the area appears, each creature in it must make a Constitution saving throw. A creature takes 4d10 piercing damage on a failed save, or half as much damage on a successful one. A creature must also make this saving throw when it enters the spell's area for the first time on a turn or ends its turn there.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d10 for each slot level above 5th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":300,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":17,"scaling":"spell"},"level":5,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A few grains of sugar, some kernels of grain, and a smear of fat","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d10"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.OVikYmSdHliAG2YD"}},"img":"icons/magic/nature/leaf-glow-maple-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234131,"modifiedTime":1661791116572,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"tMH6Ivn4GmE1naMj","name":"Harm","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You unleash a virulent disease on a creature that you can see within range. The target must make a Constitution saving throw. On a failed save, it takes 14d6 necrotic damage, or half as much damage on a successful save. The damage can't reduce the target's Hit Points below 1. If the target fails the saving throw, its hit point maximum is reduced for 1 Hour by an amount equal to the necrotic damage it took. Any effect that removes a disease allows a creature's hit point maximum to return to normal before that time passes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["14d6","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":17,"scaling":"spell"},"level":6,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.tMH6Ivn4GmE1naMj"}},"img":"icons/magic/unholy/strike-beam-blood-large-red-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234234,"modifiedTime":1661791116572,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232849,"modifiedTime":1672596100453,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"UR2gWLFHmFwG7ReH","name":"Awakened Tree","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":59,"min":0,"max":59,"temp":0,"tempmax":0,"formula":"7d12 + 14"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"plant","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing"],"bypasses":[],"custom":""},"dv":{"value":["fire"],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"one language known by its creator"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Awakened Tree","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Q90HYHsZp8MD2iv2","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the tree remains motionless, it is indistinguishable from a normal tree.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WEesSpitzLnaCknL","name":"Slam","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 10 ft., one target. Hit: 14 (3d6 + 4) bludgeoning damage.\nThe Awakened Tree attacks with its Slam.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232853,"modifiedTime":1672596100508,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"UTuKdTah1DKfPwWe","name":"Constrictor Snake","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":13,"min":0,"max":13,"temp":0,"tempmax":0,"formula":"2d10 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Constrictor Snake","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"hZOM2L6WMmk8QOfO","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 5 (1d6 + 2) piercing damage.\nThe Constrictor Snake attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"haXdYCAfGXo0iVqC","name":"Constrict","type":"weapon","img":"icons/creatures/reptiles/serpent-horned-green.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 6 (1d8 + 2) bludgeoning damage. The target is grappled (escape DC 14). Until this grapple ends, the creature is restrained, and the snake can't constrict another target.\nThe Constrictor Snake attacks with its Constrict. The target is grappled. Until this grapple ends, the creature is restrained, and the snake can't constrict another target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232854,"modifiedTime":1672596100544,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"UthHOT7QfZfEIUue","name":"Steam Mephit","type":"npc","img":"","system":{"abilities":{"str":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":21,"min":0,"max":21,"temp":0,"tempmax":0,"formula":"6d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":30,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"sm","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["aquan","ignan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Steam Mephit","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"QrN7UxINx4UCaPIC","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+2 to hit,, 5 ft., one creature. Hit: 2 (1d4) slashing damage plus 2 (1d4) fire damage.The Steam Mephit attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","slashing"],["1d4","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QWi0q0cSzHEp8VqB","name":"Death Burst","type":"feat","img":"icons/magic/light/explosion-star-glow-yellow.webp","system":{"description":{"value":"When the mephit dies, it explodes in a cloud of steam. Each creature within 5 ft. of the mephit must succeed on a DC 10 Dexterity saving throw or take 4 (1d8) fire damage.When the mephit dies, it explodes in a cloud of steam. Each creature within 5 ft. of the mephit must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":"on death"},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":10,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.net3yBKQoxl8bZ4r"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AVlovjg4AFAbd6rY","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The mephit can innately cast blur, requiring no material components. Its innate spellcasting ability is Charisma.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RnLjEUZ0gBxcH2T3","name":"Steam Breath","type":"feat","img":"icons/magic/air/wind-tornado-wall-blue.webp","system":{"description":{"value":"The mephit exhales a 15-foot cone of scalding steam. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 4 (1d8) fire damage on a failed save, or half as much damage on a successful one.The mephit exhales a 15-foot cone of scalding steam. Each creature in that area must succeed on a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":10,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4UuuUKjATTixrZGP"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UDUnlfPsOAbq2RSE","name":"Blur","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your body becomes blurred, shifting and wavering to all who can see you. For the duration, any creature has disadvantage on attack rolls against you. An attacker is immune to this effect if it doesn't rely on sight, as with blindsight, or can see through illusions, as with truesight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.UDUnlfPsOAbq2RSE"}},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234147,"modifiedTime":1661791116593,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232856,"modifiedTime":1672596100584,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VBkp2rGQKvMcCOus","name":"Worg","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":26,"min":0,"max":26,"temp":0,"tempmax":0,"formula":"4d10 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["goblin","custom"],"custom":"Worg"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Worg","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"oWGcJqNGhbIOeRjU","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The worg has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UnONIXYgZcE3Jya0","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\nIf the target is a creature, it must succeed on a DC 13 Strength saving throw or be knocked prone.\n\nThe Worg attacks with its Bite. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232858,"modifiedTime":1672596100623,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VBzqw2rOUvTuNOPI","name":"Remorhaz","type":"npc","img":"","system":{"abilities":{"str":{"value":24,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":195,"min":0,"max":195,"temp":0,"tempmax":0,"formula":"17d12 + 85"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":20,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":60,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Arctic","cr":11,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":["cold","fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Remorhaz","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Qcgc4zckQ7c1Ky8t","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-fire-orange.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 10 ft., one target. Hit: 40 (6d10 + 7) piercing damage plus 10 (3d6) fire damage. If the target is a creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the remorhaz can't bite another target.The Remorhaz attacks with its Bite. If the target is a creature, it is grappled. Until this grapple ends, the target is restrained, and the remorhaz can't bite another target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d10 + @mod","piercing"],["3d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"usmJdksgWhPnjq94","name":"Heated Body","type":"feat","img":"icons/magic/fire/flame-burning-campfire-rocks.webp","system":{"description":{"value":"A creature that touches the remorhaz or hits it with a melee attack while within 5 feet of it takes 10 (3d6) fire damage.A creature that touches the remorhaz or hits it with a melee attack while within 5 feet of it takes fire damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iFNpsEMJT66eLoat"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kT6wF3F49uuWgP3h","name":"Swallow","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"The remorhaz makes one bite attack against a Medium or smaller creature it is grappling. If the attack hits, that creature takes the bite's damage and is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the remorhaz, and it takes 21 (6d6) acid damage at the start of each of the remorhaz's turns.The Remorhaz attacks with its Swallow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.aH5ncM30tP8tPQ24"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232860,"modifiedTime":1672596100663,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VCuG0Z3MrO8kfDU0","name":"Adult Bronze Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":25,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":23,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":212,"min":0,"max":212,"temp":0,"tempmax":0,"formula":"17d12 + 102"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Coastal","cr":15,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":["lightning"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Adult Bronze Dragon","displayName":0,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"KVwqxZJAuhE9M5kP","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zMFGBLVpXSZC1Vjm","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+12 to hit,, 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage.The Adult Bronze Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZEeiaB4lQMzRas3i","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Sn1RpgmvWb3DPz66","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"P0ycd36lowML3rTc","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+12 to hit,, 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.The Adult Bronze Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"irNLCfkryOmVWf25","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+12 to hit,, 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.The Adult Bronze Dragon attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"m7dF0hheApwoJLpp","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":17,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZDVExJaMLcCwOcyq","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ApCOq8kdcdR2lgPa","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Lightning Breath.** The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n**Repulsion Breath.** The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 19 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Irqf7lAff02Flboj","name":"Lightning Breath","type":"feat","img":"icons/magic/lightning/bolt-strike-blue.webp","system":{"description":{"value":"\n**Lightning Breath.** The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":19,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LVnd9fq9cQj7rR0Q"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TlmOXrpIxG13apJr","name":"Repulsion Breath","type":"feat","img":"icons/magic/air/air-wave-gust-blue.webp","system":{"description":{"value":"\n**Repulsion Breath.** The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 19 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n\nThe dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must make a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":19,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zRDERBe0lMbwyGwN"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jwbM0YJCiaOuH9fv","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7UhgJ951z7hjLmBu","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":"wis","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JOKHSoiYvCINS119","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nThe dragon makes a tail attack.\n\nThe dragon slams its long tail against its foe!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ls6rBLfLiVx1xTaD","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"\nThe dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 20 Dexterity saving throw or take 16 (2d6+7) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.\n\nThe dragon beats its wings!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":20,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WoixfK4f9t5yZ9XN","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ygGwKyrOo5J2gWKh","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232862,"modifiedTime":1672596100761,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VVXly3ue0i3YgGrB","name":"Giant Owl","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":19,"min":0,"max":19,"temp":0,"tempmax":0,"formula":"3d10 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":5,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"Giant Owl; Understands Common, Elvish, and Sylvan but can't speak them"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Owl","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"KPd0M35kARcddw1j","name":"Flyby","type":"feat","img":"icons/creatures/mammals/bats-movement-flying-purple.webp","system":{"description":{"value":"The owl doesn't provoke opportunity attacks when it flies out of an enemy's reach.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Owl","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.7WfeHV27l7DMcuTG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"u75qrcQ8DsrUULkS","name":"Keen Hearing and Sight","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The owl has advantage on Wisdom (Perception) checks that rely on hearing or sight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6jw1NtpZQXIesO4Y","name":"Talons","type":"weapon","img":"icons/creatures/claws/claw-scaled-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 8 (2d6 + 1) slashing damage.\nThe Giant Owl attacks with its Talons.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232864,"modifiedTime":1672596100805,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Vk7uHVkJ5b26gaTh","name":"Mule","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Hill","cr":0.125,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Mule","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"nIYcqw8lbaWP1sSJ","name":"Beast of Burden","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"The mule is considered to be a Large animal for the purpose of determining its carrying capacity.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.mUwZfxiOyao1Xuxt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PWqvlPCG9P9edPYi","name":"Sure-Footed","type":"feat","img":"icons/magic/nature/root-vine-entangle-foot-green.webp","system":{"description":{"value":"The mule has advantage on Strength and Dexterity saving throws made against effects that would knock it prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nJHx2fudYhZeexDP"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ou2VI9ORGu2JnZqj","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 4 (1d4 + 2) bludgeoning damage.\nThe Mule attacks with its Hooves.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232865,"modifiedTime":1672596100842,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VmdyZDjqAc8vdncY","name":"Succubus/Incubus","type":"npc","img":"","system":{"abilities":{"str":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":66,"min":0,"max":66,"temp":null,"tempmax":0,"formula":"12d8 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"int"},"details":{"biography":{"value":"","public":""},"alignment":"neutral evil","race":"","type":{"value":"fiend","subtype":"Shapechanger","swarm":"","custom":""},"environment":"","cr":4,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","fire","lightning","piercing","poison","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["abyssal","common","infernal"],"custom":"Telepathy 60 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":2,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":2,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Succubus/Incubus","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"P3P1EukfOip32dtd","name":"Telepathic Bond","type":"feat","img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","system":{"description":{"value":"The fiend ignores the range restriction on its telepathy when communicating with a creature it has charmed. The two don't even need to be on the same plane of existence.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eVKgO2130oiJqsjY"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZVMVqd01HraMcenH","name":"Shapechanger","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The fiend can use its action to polymorph into a Small or Medium humanoid, or back into its true form. Without wings, the fiend loses its flying speed. Other than its size and speed, its statistics are the same in each form.Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies.The fiend can use its action to polymorph into a humanoid, or back into its true form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"oSlFzVMu0fdEfYt1","name":"Claw (Fiend Form Only)","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.The Succubus/Incubus attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2bFCfFfjRNmhyE8A","name":"Charm","type":"feat","img":"icons/magic/air/wind-tornado-spiral-pink-purple.webp","system":{"description":{"value":"One humanoid the fiend can see within 30 feet of it must make a Wisdom saving throw or be magically charmed for 1 day. The charmed target obeys the fiend's verbal or telepathic commands.If the target suffers any harm or receives a suicidal command, it can repeat the saving throw, ending the effect on a success. If the target successfully saves against the effect, or if the effect on it ends, the target is immune to this fiend's Charm for the next 24 hours.The fiend can have only one target charmed at a time. If it charms another, the effect on the previous target ends.One humanoid the fiend can see within 30 feet of it must make a Wisdom saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"day"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.ykoo88OJOdfYH7mH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eb0O9cQ8N6lovLyI","name":"Draining Kiss","type":"feat","img":"icons/magic/air/wind-vortex-swirl-purple.webp","system":{"description":{"value":"The fiend kisses a creature charmed by it or a willing creature. The target must make a DC 15 Constitution saving throw against this magic, taking 32 (5d10 + 5) psychic damage on a failed save, or half as much damage on a successful one. The target's hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.The target must make a Constitution saving throw against this magic.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d10 + @mod","psychic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iq0J225DCbHYU2hU"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"s1s5asgUorljP7SV","name":"Etherealness","type":"feat","img":"icons/magic/unholy/barrier-shield-glowing-pink.webp","system":{"description":{"value":"The fiend magically enters the Ethereal Plane from the Material Plane, or vice versa.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.rDoNJnKdY47x8MD4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232867,"modifiedTime":1672596100885,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WJsxqbHU28D64lWT","name":"Rust Monster","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":27,"min":0,"max":27,"temp":0,"tempmax":0,"formula":"5d8 + 5"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Rust Monster","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"IPdRnqMb4ZjhHAm4","name":"Iron Scent","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The rust monster can pinpoint, by scent, the location of ferrous metal within 30 feet of it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.gh5UPTS0L16fHYwB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dobpPU4kb00zSkQt","name":"Rust Metal","type":"feat","img":"icons/skills/melee/blade-tip-chipped-blood-red.webp","system":{"description":{"value":"Any nonmagical weapon made of metal that hits the rust monster corrodes. After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls. If its penalty drops to -5, the weapon is destroyed. Non magical ammunition made of metal that hits the rust monster is destroyed after dealing damage.Any nonmagical weapon made of metal that hits the rust monster corrodes. After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.GSgfXL9DyDA3GD0n"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZFTo8KoUDrqeFg7l","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 5 (1d8 + 1) piercing damage.The Rust Monster attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yxwZ9AtLMKZ61sTz","name":"Antennae","type":"feat","img":"icons/magic/nature/tree-bare-glow-yellow.webp","system":{"description":{"value":"The rust monster corrodes a nonmagical ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it. If the object is being worn or carried by a creature, the creature can make a DC 11 Dexterity saving throw to avoid the rust monster's touch.If the object touched is either metal armor or a metal shield being worn or carried, its takes a permanent and cumulative -1 penalty to the AC it offers. Armor reduced to an AC of 10 or a shield that drops to a +0 bonus is destroyed. If the object touched is a held metal weapon, it rusts as described in the Rust Metal trait.The rust monster corrodes a ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":11,"scaling":"dex"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.6HJpLJxctQdMLeuB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232869,"modifiedTime":1672596100925,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WOdeacKCYVhgLDuN","name":"Weasel","type":"npc","img":"","system":{"abilities":{"str":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"1d4 - 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Weasel","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"yCp6Ire7GPbpAwpZ","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The weasel has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Weasel","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qQmFFG5fOGkUEeu2","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one creature. Hit: 1 piercing damage.\nThe Weasel attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232870,"modifiedTime":1672596100965,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Wcsjbl25uiUsyQwn","name":"Ankheg","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":39,"min":0,"max":39,"temp":0,"tempmax":0,"formula":"6d10 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":10,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":60,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ankheg","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"mGamlcdui038L6gU","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage plus 3 (1d6) acid damage.\nIf the target is a Large or smaller creature, it is grappled (escape DC 13). Until this grapple ends, the ankheg can bite only the grappled creature and has advantage on attack rolls to do so.\n\nThe Ankheg attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"],["1d6","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XZwZexkrBLOzLo1Q","name":"Acid Spray","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\nThe ankheg spits acid in a line that is 30 ft. long and 5 ft. wide, provided that it has no creature grappled.\nEach creature in that line must make a DC 13 Dexterity saving throw, taking 10 (3d6) acid damage on a failed save, or half as much damage on a successful one.\n\nThe ankheg spits acid in a line that is 30 ft. long and 5 ft. wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","acid"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kZpl32DBmqxlRegX"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232872,"modifiedTime":1672596101002,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XEByBLeOkDgL3mrr","name":"Planetar","type":"npc","img":"","system":{"abilities":{"str":{"value":24,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":24,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":22,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":25,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":200,"min":0,"max":200,"temp":null,"tempmax":0,"formula":"16d10 + 112"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":120,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"celestial","subtype":"","swarm":"","custom":""},"environment":"","cr":16,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","radiant","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","exhaustion","frightened"],"custom":""},"languages":{"value":[],"custom":"All; Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Planetar","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"sDvx0IybgYa8Q4WG","name":"Angelic Weapons","type":"feat","img":"icons/magic/fire/dagger-rune-enchant-flame-strong-blue-yellow.webp","system":{"description":{"value":"The planetar's weapon attacks are magical. When the planetar hits with any weapon, the weapon deals an extra 5d8 radiant damage (included in the attack).The planetar's weapon attacks are magical. When the planetar hits with any weapon, the weapon deals extra radiant damage (included in the attack).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.cz1LUaiXG8GshgU9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2kBUlTLMlwq3KoUB","name":"Divine Awareness","type":"feat","img":"icons/magic/perception/third-eye-blue-red.webp","system":{"description":{"value":"The planetar knows if it hears a lie.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lOJK48AtlIcfYPPB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9hrSczyYfl4fSrpZ","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The planetar's spellcasting ability is Charisma (spell save DC 20). The planetar can innately cast the following spells, requiring no material components:\nAt will: detect evil and good, invisibility (self only)\n3/day each: blade barrier, dispel evil and good, flame strike, raise dead\n1/day each: commune, control weather, insect plague","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2C0408CEBtrZW8ji","name":"Invisibility (self only)","type":"spell","img":"icons/magic/air/fog-gas-smoke-blue-dense-white.webp","system":{"description":{"value":"A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"level","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.1N8dDMMgZ1h1YJ3B"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5sDIEn5aplaeXax7","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The planetar has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LyxrhwvzMW4YbiYE","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The planetar makes two melee attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BBLXs9hiUvtRaP16","name":"Greatsword","type":"weapon","img":"icons/weapons/swords/greatsword-guard-gem-blue.webp","system":{"description":{"value":"Melee Weapon Attack:+12 to hit,, 5 ft., one target. Hit: 21 (4d6 + 7) slashing damage plus 22 (5d8) radiant damage.The Planetar attacks with its Greatsword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6 + @mod","slashing"],["5d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.xMkP8BmFzElcsMaR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VJz6sW3vOJcEL4IS","name":"Healing Touch","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"The planetar touches another creature. The target magically regains 30 (6d8 + 3) hit points and is freed from any curse, disease, poison, blindness, or deafness.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"touch","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":4,"max":"4","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d8+3","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.r3Ugp8f5Ckw2EUHL"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Mzh95utKDPIrjiH8","name":"Detect Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Mzh95utKDPIrjiH8"}},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234128,"modifiedTime":1661791116611,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"dLJhxDfeyOsc3zsY","name":"Blade Barrier","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a vertical wall of whirling, razor-sharp blades made of magical energy. The wall appears within range and lasts for the duration. You can make a straight wall up to 100 feet long, 20 feet high, and 5 feet thick, or a ringed wall up to 60 feet in diameter, 20 feet high, and 5 feet thick. The wall provides three-quarters cover to creatures behind it, and its space is difficult terrain.When a creature enters the wall's area for the first time on a turn or starts its turn there, the creature must make a Dexterity saving throw. On a failed save, the creature takes 6d10 slashing damage. On a successful save, the creature takes half as much damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"wall"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d10","slashing"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":20,"scaling":"spell"},"level":6,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.dLJhxDfeyOsc3zsY"}},"img":"icons/magic/light/projectile-beams-salvo-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234179,"modifiedTime":1661791116612,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"TkJ8Wtg1L7TZtspm","name":"Dispel Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Shimmering energy surrounds and protects you from fey, Undead, and creatures originating from Beyond the Material Plane. For the Duration, Celestials, Elementals, fey, Fiends, and undead have disadvantage on Attack rolls against you.You can end the spell early by using either of the following special functions.Break Enchantment. As your action, you touch a creature you can reach that is Charmed, Frightened, or possessed by a Celestial, an elemental, a fey, a fiend, or an Undead. The creature you touch is no longer charmed, frightened, or possessed by such creatures.Dismissal. As your action, make a melee spell Attack against a Celestial, an elemental, a fey, a fiend, or an Undead you can reach. On a hit, you attempt to drive the creature back to its home plane. The creature must succeed on a Charisma saving throw or be sent back to its home plane (if it isn't there already). If they aren't on their home plane, undead are sent to the Shadowfell, and fey are sent to the Feywild.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":20,"scaling":"spell"},"level":5,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Holy water or powdered silver and iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.TkJ8Wtg1L7TZtspm"}},"img":"icons/magic/air/air-burst-spiral-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234146,"modifiedTime":1661791116612,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"5e1xTohkzqFqbYH4","name":"Flame Strike","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A vertical column of divine fire roars down from the heavens in a location you specify. Each creature in a 10-foot-radius, 40-foot-high Cylinder centered on a point within range must make a Dexterity saving throw. A creature takes 4d6 fire damage and 4d6 radiant damage on a failed save, or half as much damage on a successful one.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the fire damage or the radiant damage (your choice) increases by 1d6 for each slot level above 5th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"cylinder"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","radiant"],["4d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":20,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of sulfur","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.5e1xTohkzqFqbYH4"}},"img":"icons/magic/light/beam-rays-red-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234070,"modifiedTime":1661791116612,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"AGFMPAmuzwWO6Dfz","name":"Raise Dead","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You return a dead creature you touch to life, provided that it has been dead no longer than 10 days. If the creature's soul is both willing and at liberty to rejoin the body, the creature returns to life with 1 hit point.This spell also neutralizes any poisons and cures nonmagical diseases that affected the creature at the time it died. This spell doesn't, however, remove magical diseases, curses, or similar effects; if these aren't first removed prior to casting the spell, they take effect when the creature returns to life. The spell can't return an undead creature to life.This spell closes all mortal wounds, but it doesn't restore missing body parts. If the creature is lacking body parts or organs integral for its survival—its head, for instance—the spell automatically fails.Coming back from the dead is an ordeal. The target takes a −4 penalty to all attack rolls, saving throws, and ability checks. Every time the target finishes a long rest, the penalty is reduced by 1 until it disappears.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A diamond worth at least 500gp, which the spell consumes.","consumed":true,"cost":500,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.AGFMPAmuzwWO6Dfz"}},"img":"icons/magic/life/heart-cross-strong-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234087,"modifiedTime":1661791116613,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"d54VDyFulD9xxY7J","name":"Commune","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You contact your deity or a divine proxy and ask up to three questions that can be answered with a yes or no. You must ask your questions before the spell ends. You receive a correct answer for each question.Divine beings aren't necessarily omniscient, so you might receive \"unclear\" as an answer if a question pertains to information that lies beyond the deity's knowledge. In a case where a one-word answer could be misleading or contrary to the deity's interests, the DM might offer a short phrase as an answer instead.If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get no answer. The DM makes this roll in secret.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"Incense and a vial of holy or unholy water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.d54VDyFulD9xxY7J"}},"img":"icons/magic/control/debuff-energy-hold-levitate-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234177,"modifiedTime":1661791116613,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ZPd73HtKF3At11jh","name":"Control Weather","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You take control of the weather within 5 miles of you for the duration. You must be outdoors to cast this spell. Moving to a place where you don't have a clear path to the sky ends the spell early.When you cast the spell, you change the current weather conditions, which are determined by the DM based on the climate and season. You can change precipitation, temperature, and wind. It takes 1d4 x 10 minutes for the new conditions to take effect. Once they do so, you can change the conditions again. When the spell ends, the weather gradually returns to normal.When you change the weather conditions, find a current condition on the following tables and change its stage by one, up or down. When changing the wind, you can change its direction.Conditions\n\nClear\nLight clouds\nOvercast or ground fog\nRain, hail, or snow\nTorrential rain, driving hail, or blizzard\n\nTemperature\n\nUnbearable heat\nHot\nWarm\nCool\nCold\nArctic cold\n\nWind\n\nCalm\nModerate wind\nStrong wind\nGale\nStorm\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":5,"width":null,"units":"mi","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Burning incense and bits of earth and wood mixed in water.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ZPd73HtKF3At11jh"}},"img":"icons/magic/air/wind-tornado-cyclone-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234163,"modifiedTime":1661791116614,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"OVikYmSdHliAG2YD","name":"Insect Plague","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Swarming, biting locusts fill a 20-foot-radius Sphere centered on a point you choose within range. The sphere spreads around corners. The sphere remains for the Duration, and its area is lightly obscured. The sphere's area is difficult terrain.When the area appears, each creature in it must make a Constitution saving throw. A creature takes 4d10 piercing damage on a failed save, or half as much damage on a successful one. A creature must also make this saving throw when it enters the spell's area for the first time on a turn or ends its turn there.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d10 for each slot level above 5th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":300,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":20,"scaling":"spell"},"level":5,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A few grains of sugar, some kernels of grain, and a smear of fat","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":"1d10"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.OVikYmSdHliAG2YD"}},"img":"icons/magic/nature/leaf-glow-maple-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234131,"modifiedTime":1661791116614,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232875,"modifiedTime":1672596101101,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XfQMBoTh892XSnCX","name":"Swarm of Poisonous Snakes","type":"npc","img":"","system":{"abilities":{"str":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":36,"min":0,"max":36,"temp":0,"tempmax":0,"formula":"8d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"tiny","custom":""},"environment":"Forest","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","grappled","paralyzed","petrified","prone","restrained","stunned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Swarm of Poisonous Snakes","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"SFmH90jkxaUoPJjk","name":"Swarm","type":"feat","img":"icons/creatures/invertebrates/fly-wasp-mosquito-green.webp","system":{"description":{"value":"The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny snake. The swarm can't regain hit points or gain temporary hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Bats","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eL3OJmc4FuetizKO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OyLoUiIl3p2j4p59","name":"Bites","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 0 ft., one creature in the swarm's space. Hit: 7 (2d6) piercing damage, or 3 (1d6) piercing damage if the swarm has half of its hit points or fewer.\nThe target must make a DC 10 Constitution saving throw, taking 14 (4d6) poison damage on a failed save, or half as much damage on a successful one.\n\nThe Swarm of Poisonous Snakes attacks with a flurry of Bites. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","piercing"]],"versatile":"1d6"},"formula":"4d6","save":{"ability":"con","dc":10,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232877,"modifiedTime":1672596101150,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XiSWKZzAUxdmFOLL","name":"Avatar of Death","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":20,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"Half of Summoner Max."},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":60,"units":"ft","hover":true},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":60,"units":"ft","special":""},"spellcasting":"int"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":1,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["necrotic","poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","paralyzed","petrified","poisoned","unconscious"],"custom":""},"languages":{"value":[],"custom":"All languages known to its summoner"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Avatar of Death","displayName":0,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"tXHiE3pxHbBF8bS6","name":"Incorporeal Movement","type":"feat","img":"icons/magic/air/air-wave-gust-blue.webp","system":{"description":{"value":"\nThe avatar can move through other creatures and objects as if they were difficult terrain.\nIt takes 5 (1d10) force damage if it ends its turn inside an object.\n\nThe avatar can move through other creatures and objects as if they were difficult terrain.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LUHmtIDD1VTreFqI"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1rEzqo8fiLbeFE07","name":"Turn Immunity","type":"feat","img":"icons/magic/fire/flame-burning-creature-skeleton.webp","system":{"description":{"value":"The avatar is immune to features that turn undead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.ARWpuy82jh0daSDa"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"d7ERliHkrcvQAF1X","name":"Reaping Scythe","type":"feat","img":"icons/skills/melee/strike-scythe-fire-green.webp","system":{"description":{"value":"\nThe avatar sweeps its spectral scythe through a creature within 5 feet of it, dealing 7 (1d8 + 3) slashing damage plus 4 (1d8) necrotic damage.\n\nThe avatar sweeps its spectral scythe through a creature within 5 feet of it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"],["1d8","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.of2dTSnPwmhR52O7"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232878,"modifiedTime":1672596101187,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Y0vxQVF7w2P38FK2","name":"Scorpion","type":"npc","img":"","system":{"abilities":{"str":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"1d4 - 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Scorpion","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ltue5DUb1SZfphHE","name":"Sting","type":"weapon","img":"icons/creatures/abilities/stinger-poison-green.webp","system":{"description":{"value":"\nMelee Weapon Attack:+2 to hit,, 5 ft., one creature. Hit: 1 piercing damage.\nThe target must make a DC 9 Constitution saving throw, taking 4 (1d8) poison damage on a failed save, or half as much damage on a successful one.\n\nThe Scorpion attacks with its Sting. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"1d8","save":{"ability":"con","dc":9,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232880,"modifiedTime":1672596101222,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YOqhbf8WsX0jH9Fu","name":"Clay Golem","type":"npc","img":"","system":{"abilities":{"str":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":133,"min":0,"max":133,"temp":null,"tempmax":0,"formula":"14d10 + 56"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"construct","subtype":"","swarm":"","custom":""},"environment":"","cr":9,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["acid","bludgeoning","piercing","poison","psychic","slashing"],"bypasses":["ada","mgc"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","paralyzed","petrified","poisoned","exhaustion"],"custom":""},"languages":{"value":[],"custom":"Understands the languages of its creator but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Clay Golem","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"vEEJei0CNaNbfQ2w","name":"Slam","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage.\nIf the target is a creature, it must succeed on a DC 15 Constitution saving throw or have its hit point maximum reduced by an amount equal to the damage taken. The target dies if this attack reduces its hit point maximum to 0. The reduction lasts until removed by the greater restoration spell or other magic.\n\nThe Clay Golem attacks with its Slam. If the target is a creature, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GOADsI5dGE3ah0Vi","name":"Haste","type":"feat","img":"icons/skills/movement/feet-winged-boots-brown.webp","system":{"description":{"value":"\nRecharge 5-6.\n\nUntil the end of its next turn, the golem magically gains a +2 bonus to its AC, has advantage on Dexterity saving throws, and can use its slam attack as a bonus action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.ZIGTG2qhkJ54jEk4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"91uPF10lBpn5EOhn","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The golem has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"K5xMZVNv8m2Pw87E","name":"Berserk","type":"feat","img":"icons/creatures/reptiles/lizard-mouth-glowing-red.webp","system":{"description":{"value":"\nWhenever the golem starts its turn with 60 hit points or fewer, roll a d6. On a 6, the golem goes berserk. On each of its turns while berserk, the golem attacks the nearest creature it can see.\nIf no creature is near enough to move to and attack, the golem attacks an object, with preference for an object smaller than itself. Once the golem goes berserk, it continues to do so until it is destroyed or regains all its hit points.\n\nThe golem goes berserk. On each of its turns while berserk, the golem attacks the nearest creature it can see. If no creature is near enough to move to and attack, the golem attacks an object, with preference for an object smaller than itself.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d6","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.QOWoa60SwvsQJifN"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"og0rfDmwPObM3ulb","name":"Immutable Form","type":"feat","img":"icons/magic/unholy/orb-beam-pink.webp","system":{"description":{"value":"The golem is immune to any spell or effect that would alter its form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.MFuiImIvLzYA3osc"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"J1NgIuQWtR4G9JKd","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The golem's weapon attacks are magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hftXBQthz8jMjFTs","name":"Acid Absorption","type":"feat","img":"icons/magic/unholy/orb-smoking-green.webp","system":{"description":{"value":"Whenever the golem is subjected to acid damage, it takes no damage and instead regains a number of hit points equal to the acid damage dealt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.TVPqMOcoLNFBUMyG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"g0R4u7liRAurxB04","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The golem makes two slam attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232881,"modifiedTime":1672596101263,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YTpL2c3NO4sOn2UA","name":"Mastiff","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":5,"min":0,"max":5,"temp":0,"tempmax":0,"formula":"1d8 + 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0.125,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Mastiff","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"F1Rua6pTBYdDfVob","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The mastiff has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QLJgy1aF5ijBEp4K","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) piercing damage.\nIf the target is a creature, it must succeed on a DC 11 Strength saving throw or be knocked prone.\n\nThe Mastiff attacks with its Bite. If the target is a creature, it must succeed on a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232883,"modifiedTime":1672596101303,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YUaprnengdFDNG8P","name":"Swarm of Wasps","type":"npc","img":"","system":{"abilities":{"str":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"5d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":30,"swim":0,"walk":5,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"tiny","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","grappled","paralyzed","petrified","prone","restrained","stunned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Swarm of Wasps","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"kQMM3DSzE6UDZWZd","name":"Swarm","type":"feat","img":"icons/creatures/invertebrates/fly-wasp-mosquito-green.webp","system":{"description":{"value":"The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Bats","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eL3OJmc4FuetizKO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bmjRGkZH4lnTX72M","name":"Bites","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 0 ft., one target in the swarm's space. Hit: 10 (4d4) piercing damage, or 5 (2d4) piercing damage if the swarm has half of its hit points or fewer.\nThe Swarm of Wasps attacks with a flurry of Bites.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d4","piercing"]],"versatile":"2d4"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232885,"modifiedTime":1672596101338,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Z0GiAv3bJxTjUfjM","name":"Giant Fire Beetle","type":"npc","img":"","system":{"abilities":{"str":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":4,"min":0,"max":4,"temp":0,"tempmax":0,"formula":"1d6 + 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Fire Beetle","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":10,"coloration":1,"dim":20,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ytajTMHqbOxc0BvA","name":"Bite","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+1 to hit,, 5 ft., one target. Hit: 2 (1d6 - 1) slashing damage.\nThe Giant Fire Beetle attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"t1I5Ss8xvBplViSy","name":"Illumination","type":"feat","img":"icons/magic/light/beam-strike-orange-gold.webp","system":{"description":{"value":"The beetle sheds bright light in a 10-foot radius and dim light for an additional 10 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Fire Beetle","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.F3gzBbCW7U14zkBF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232886,"modifiedTime":1672596101374,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZHAFrnCwCz17dmLc","name":"Troll","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":84,"min":0,"max":84,"temp":0,"tempmax":0,"formula":"8d10 + 40"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"giant","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["giant"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Troll","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.3,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"R7DpgLP3aFNmAgOc","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 7 (1d6 + 4) piercing damage.The Troll attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ahGwFmyt6nItUOAK","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.The Troll attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"N3vrbUmlL4FEARJ8","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The troll has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BA9WmovILanbvacP","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The troll makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yWYB2iyRA61AjcVJ","name":"Regeneration","type":"feat","img":"icons/skills/wounds/anatomy-organ-heart-red.webp","system":{"description":{"value":"\nThe troll regains 10 hit points at the start of its turn. If the troll takes acid or fire damage, this trait doesn't function at the start of the troll's next turn. The troll dies only if it starts its turn with 0 hit points and doesn't regenerate.\n\nThe troll regains 10 hit points at the start of its turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Av7H0ymGdPeTsnwV"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232889,"modifiedTime":1672596101414,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZM1P6LoYSwMiIJN9","name":"Deep Gnome","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":16,"min":0,"max":16,"temp":0,"tempmax":0,"formula":"3d6 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"int"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Good","race":"","type":{"value":"humanoid","subtype":"Gnome","swarm":"","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["gnomish","terran","undercommon"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Deep Gnome","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"mhIdpV6rtYYjOBN5","name":"Chain Shirt","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"Made of interlocking metal rings, a chain shirt is worn between layers of clothing or leather. This armor offers modest protection to the wearer's upper body and allows the sound of the rings rubbing against one another to be muffled by outer layers.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":20,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":13,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.p2zChy24ZJdVqMSH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8Yo6JM2NfjkpC8Hz","name":"Stone Camouflage","type":"feat","img":"icons/environment/settlement/stone-stairs.webp","system":{"description":{"value":"The gnome has advantage on Dexterity (Stealth) checks made to hide in rocky terrain.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.j1cPfWFNvxGoex9Z"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JCSej95QR8svWsYz","name":"Gnome Cunning","type":"feat","img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","system":{"description":{"value":"The gnome has advantage on Intelligence, Wisdom, and Charisma saving throws against magic.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.0gl43AC57cvJaW7D"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AqLTSMp6MlcNK666","name":"War Pick","type":"weapon","img":"icons/weapons/axes/pickaxe-double-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\nThe Deep Gnome (Svirfneblin) attacks with its War Pick.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.2YdfjN1PIIrSHZii"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pnfC0DIa1eqXGjku","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The gnome's innate spellcasting ability is Intelligence (spell save DC 11). It can innately cast the following spells, requiring no material components:\nAt will: nondetection (self only)\n1/day each: blindness/deafness, blur, disguise self","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YuhirWYJsQfL6zo5","name":"Poisoned Dart","type":"weapon","img":"icons/weapons/ammunition/arrows-war-red.webp","system":{"description":{"value":"\nRanged Weapon Attack: +4 to hit, range 30/120 ft., one creature. Hit: 4 (1d4 + 2) piercing damage.\nThe target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe Deep Gnome (Svirfneblin) attacks with its Poisoned Dart. The target must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.25,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":12,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"fin":true,"thr":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"aU62xVUBYkAQWIHv","name":"Nondetection","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the Duration, you hide a target that you touch from Divination magic. The target can be a willing creature or a place or an object no larger than 10 feet in any dimension. The target can't be targeted by any divination magic or perceived through magical Scrying sensors.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of diamond dust worth 25 gp sprinkled over the target, which the spell consumes","consumed":true,"cost":25,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.aU62xVUBYkAQWIHv"}},"img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234168,"modifiedTime":1661791116635,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"zwGsAv6kmwzYGhh3","name":"Blindness/Deafness","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You can blind or deafen a foe. Choose one creature that you can see within range to make a Constitution saving throw. If it fails, the target is either blinded or deafened (your choice) for the duration. At the end of each of its turns, the target can make a Constitution saving throw. On a success, the spell ends.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":11,"scaling":"spell"},"level":2,"school":"nec","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.zwGsAv6kmwzYGhh3"}},"img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234247,"modifiedTime":1661791116636,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"UDUnlfPsOAbq2RSE","name":"Blur","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your body becomes blurred, shifting and wavering to all who can see you. For the duration, any creature has disadvantage on attack rolls against you. An attacker is immune to this effect if it doesn't rely on sight, as with blindsight, or can see through illusions, as with truesight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.UDUnlfPsOAbq2RSE"}},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234147,"modifiedTime":1661791116636,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"A3q2gTNqG6fvNGrv","name":"Disguise Self","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You make yourself—including your clothing, armor, weapons, and other belongings on your person—look different until the spell ends or until you use your action to dismiss it. You can seem 1 foot shorter or taller and can appear thin, fat, or in between. You can't change your body type, so you must adopt a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you.The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to your outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel your head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair.To discern that you are disguised, a creature can use its action to inspect your appearance and must succeed on an Intelligence (Investigation) check against your spell save DC.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":11,"scaling":"spell"},"level":1,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.A3q2gTNqG6fvNGrv"}},"img":"icons/magic/control/debuff-energy-hold-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234086,"modifiedTime":1661791116636,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232890,"modifiedTime":1672596101511,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZQTCZfTV9ZoTjNCU","name":"Homunculus","type":"npc","img":"","system":{"abilities":{"str":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":5,"min":0,"max":5,"temp":0,"tempmax":0,"formula":"2d4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":40,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"construct","subtype":"","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","poisoned"],"custom":""},"languages":{"value":[],"custom":"Understands the languages of its creator but cannot speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Homunculus","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"1uXv78I9YByiz6rV","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 1 piercing damage.The target must succeed on a DC 10 Constitution saving throw or be poisoned for 1 minute. If the saving throw fails by 5 or more, the target is instead poisoned for 5 (1d10) minutes and unconscious while poisoned in this way.The Homunculus attacks with its Bite.The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":10,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5bFYYcQnfN1KtOwr","name":"Telepathic Bond","type":"feat","img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","system":{"description":{"value":"While the homunculus is on the same plane of existence as its master, it can magically convey what it senses to its master, and the two can communicate telepathically.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eVKgO2130oiJqsjY"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232892,"modifiedTime":1672596101554,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZW39DE2zI3TXVYC9","name":"Giant Poisonous Snake","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Poisonous Snake","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"GlOJaYXJFUP0Hd80","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 10 ft., one target. Hit: 6 (1d4 + 4) piercing damage.\nThe target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n\nThe Giant Poisonous Snake attacks with its Bite. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":"3d6"},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"rch":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232894,"modifiedTime":1672596101590,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZaP1H91t4FzbRqR5","name":"Couatl","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":97,"min":0,"max":97,"temp":null,"tempmax":0,"formula":"13d8 + 39"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":90,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"celestial","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":4,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["bludgeoning","piercing","psychic","slashing"],"bypasses":["mgc"],"custom":""},"dr":{"value":["radiant"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"All; Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Couatl","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"7M1OrMoMMTCEKxta","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 5 ft., one creature. Hit: 8 (1d6 + 5) piercing damage.\nThe target must succeed on a DC 13 Constitution saving throw or be poisoned for 24 hours. Until this poison ends, the target is unconscious. Another creature can use an action to shake the target awake.\n\nThe Couatl attacks with its Bite. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8LkzioyaScFxfst7","name":"Constrict","type":"weapon","img":"icons/creatures/reptiles/serpent-horned-green.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 10 ft., one Medium or smaller creature. Hit: 10 (2d6 + 3) bludgeoning damage.\nThe target is grappled (escape DC 15). Until this grapple ends, the target is restrained, and the couatl can't constrict another target.\n\nThe Couatl attacks with its Constrict. The target is grappled. Until this grapple ends, the target is restrained, and the couatl can't constrict another target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":true,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iw2q07K1D0X01DZO","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The couatl magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the couatl's choice).\nIn a new form, the couatl retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and other actions are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks. If the new form has a bite attack, the couatl can use its bite in that form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"J40yeoOnwpvtVpHt","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The couatl's spellcasting ability is Charisma (spell save DC 14). It can innately cast the following spells, requiring only verbal components:\nAt will: detect evil and good, detect magic, detect thoughts\n3/day each: bless, create food and water, cure wounds, lesser restoration, protection from poison, sanctuary, shield\n1/day each: dream, greater restoration, scrying","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3qE2LLHPANSEPmIN","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The couatl's weapon attacks are magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MGh9IkfXNn7FmwL5","name":"Shielded Mind","type":"feat","img":"icons/magic/control/control-influence-rally-purple.webp","system":{"description":{"value":"The couatl is immune to scrying and to any effect that would sense its emotions, read its thoughts, or detect its location.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.SrmR5UfLMFxTErTp"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Mzh95utKDPIrjiH8","name":"Detect Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Mzh95utKDPIrjiH8"}},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234128,"modifiedTime":1661791116658,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116658,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ppWAAEul0QHtm4er","name":"Detect Thoughts","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you can read the thoughts of certain creatures. When you cast the spell and as your action on each turn until the spell ends, you can focus your mind on any one creature that you can see within 30 feet of you. If the creature you choose has an Intelligence of 3 or lower or doesn't speak any language, the creature is unaffected.You initially learn the surface thoughts of the creature—what is most on its mind in that moment. As an action, you can either shift your attention to another creature's thoughts or attempt to probe deeper into the same creature's mind. If you probe deeper, the target must make a Wisdom saving throw. If it fails, you gain insight into its reasoning (if any), its emotional state, and something that looms large in its mind (such as something it worries over, loves, or hates). If it succeeds, the spell ends. Either way, the target knows that you are probing into its mind, and unless you shift your attention to another creature's thoughts, the creature can use its action on its turn to make an Intelligence check contested by your Intelligence check; if it succeeds, the spell ends.Questions verbally directed at the target creature naturally shape the course of its thoughts, so this spell is particularly effective as part of an interrogation.You can also use this spell to detect the presence of thinking creatures you can't see. When you cast the spell or as your action during the duration, you can search for thoughts within 30 feet of you. The spell can penetrate barriers, but 2 feet of rock, 2 inches of any metal other than lead, or a thin sheet of lead blocks you. You can't detect a creature with an Intelligence of 3 or lower or one that doesn't speak any language.Once you detect the presence of a creature in this way, you can read its thoughts for the rest of the duration as described above, even if you can't see it, but it must still be within range.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A copper piece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ppWAAEul0QHtm4er"}},"img":"icons/magic/light/explosion-star-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234229,"modifiedTime":1661791116659,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"8dzaICjGy6mTUaUr","name":"Bless","type":"spell","img":"icons/magic/control/buff-flight-wings-blue.webp","system":{"description":{"value":"You bless up to three creatures of your choice within range. Whenever a target makes an attack roll or a saving throw before the spell ends, the target can roll 1d4 and add the number rolled to the attack roll or saving throw.\nHigher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":3,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A sprinkling of holy water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"effects":[{"_id":"8rP3gwmXVTgZqYZE","flags":{},"changes":[{"key":"system.bonuses.abilities.save","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.mwak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.msak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rsak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rwak.attack","mode":2,"value":"+1d4","priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":60,"rounds":10,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/control/buff-flight-wings-blue.webp","label":"Bless","origin":"Item.kZZAZ6kp9YzgPQEe","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.8dzaICjGy6mTUaUr"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234081,"modifiedTime":1661791116659,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"BV0mpbHh29IbbIj5","name":"Create Food and Water","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create 45 pounds of food and 30 gallons of water on the ground or in containers within range, enough to sustain up to fifteen humanoids or five steeds for 24 hours. The food is bland but nourishing, and spoils if uneaten after 24 hours. The water is clean and doesn't go bad.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.BV0mpbHh29IbbIj5"}},"img":"icons/magic/nature/leaf-glow-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234092,"modifiedTime":1661791116659,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"uUWb1wZgtMou0TVP","name":"Cure Wounds","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch regains a number of hit points equal to 1d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.uUWb1wZgtMou0TVP"}},"img":"icons/magic/life/heart-cross-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234236,"modifiedTime":1661791116660,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"F0GsG0SJzsIOacwV","name":"Lesser Restoration","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature and can end either one disease or one condition afflicting it. The condition can be blinded, deafened, paralyzed, or poisoned.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.F0GsG0SJzsIOacwV"}},"img":"icons/magic/life/heart-cross-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234103,"modifiedTime":1661791116660,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"gvdA9nPuWLck4tBl","name":"Sanctuary","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You ward a creature within range against attack. Until the spell ends, any creature who targets the warded creature with an attack or a harmful spell must first make a Wisdom saving throw. On a failed save, the creature must choose a new target or lose the attack or spell. This spell doesn't protect the warded creature from area effects, such as the explosion of a Fireball.If the warded creature makes an attack or casts a spell that affects an enemy creature, this spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small silver mirror","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gvdA9nPuWLck4tBl"}},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234193,"modifiedTime":1661791116660,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"z1mx84ONwkXKUZd7","name":"Shield","type":"spell","img":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","system":{"description":{"value":"An invisible barrier of magical force appears and protects you. Until the start of your next turn, you have a +5 bonus to AC, including against the triggering attack, and you take no damage from magic missile.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":"Which you take when you are hit by an attack or targeted by the magic missile spell"},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"6pbotGIvqQkraPva","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"5","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"rounds":1,"seconds":null,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","label":"Shield","origin":"Item.FlLKKv7bQBlIAs11","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.z1mx84ONwkXKUZd7"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234244,"modifiedTime":1661791116660,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"kSPRpeIx3w3nihrF","name":"Dream","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell shapes a creature's dreams. Choose a creature known to you as the target of this spell. The target must be on the same plane of existence as you. Creatures that don't sleep, such as elves, can't be contacted by this spell. You, or a willing creature you touch, enters a trance state, acting as a messenger. While in the trance, the messenger is aware of his or her surroundings, but can't take Actions or move.If the target is asleep, the messenger appears in the target's dreams and can converse with the target as long as it remains asleep, through the Duration of the spell. The messenger can also shape The Environment of the dream, creating landscapes, Objects, and other images. The messenger can emerge from the trance at any time, ending the effect of the spell early. The target recalls the dream perfectly upon waking. If the target is awake when you cast the spell, the messenger knows it, and can either end the trance (and the spell) or wait for the target to fall asleep, at which point the messenger appears in the target's dreams.You can make the messenger appear monstrous and terrifying to the target. If you do, the messenger can deliver a message of no more than ten words and then the target must make a Wisdom saving throw. On a failed save, echoes of the phantasmal monstrosity spawn a nightmare that lasts the Duration of the target's sleep and prevents the target from gaining any benefit from that rest. In addition, when the target wakes up, it takes 3d6 psychic damage.If you have a body part, lock of hair, clipping from a nail, or similar portion of the target's body, the target makes its saving throw with disadvantage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","psychic"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"spell"},"level":5,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A handful of sand, a dab of ink, and a writing quill plucked from a sleeping bird","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.kSPRpeIx3w3nihrF"}},"img":"icons/magic/air/fog-gas-smoke-swirling-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234214,"modifiedTime":1661791116661,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WzvJ7G3cqvIubsLk","name":"Greater Restoration","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You imbue a creature you touch with positive energy to undo a debilitating effect. You can reduce the target's Exhaustion level by one, or end one of the following Effects on the target:\n\nOne effect that Charmed or Petrified the target\nOne curse, including the target's Attunement to a cursed magic item\nAny reduction to one of the target's Ability Scores\nOne effect reducing the target's hit point maximum\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"diamond dust worth at least 100gp, which the spell consumes","consumed":true,"cost":100,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.WzvJ7G3cqvIubsLk"}},"img":"icons/magic/life/heart-cross-strong-flame-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234154,"modifiedTime":1661791116661,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"fVbCxFRaORalHB20","name":"Scrying","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You can see and hear a particular creature you choose that is on the same plane of existence as you. The target must make a Wisdom saving throw, which is modified by how well you know the target and the sort of physical connection you have to it. If a target knows you're casting this spell, it can fail the saving throw voluntarily if it wants to be observed.\n\n\n\nKnowledge\nSave Modifier\n\n\nSecondhand (you have heard of the target)\n+5\n\n\nFirsthand (you have met the target)\n+0\n\n\nFamiliar (you know the target well)\n-5\n\n\n\n\n\n\n\nConnection\nSave Modifier\n\n\nLikeness or picture\n-2\n\n\nPossession or garment\n-4\n\n\nBody part, lock of hair, bit of nail, or the like\n-10\n\n\n\nOn a successful save, the target isn't affected, and you can't use this spell against it again for 24 hours.On a failed save, the spell creates an Invisible sensor within 10 feet of the target. You can see and hear through the sensor as if you were there. The sensor moves with the target, remaining within 10 feet of it for the Duration. A creature that can see Invisile Objects sees the sensor as a luminous orb about the size of your fist.Instead of targeting a creature, you can choose a location you have seen before as the target of this spell. When you do, the sensor appears at that location and doesn't move.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A focus worth at least 1,000 gp, such as a crystal ball, a silver mirror, or a font filled with holy water.","consumed":false,"cost":1000,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.fVbCxFRaORalHB20"}},"img":"icons/magic/perception/eye-ringed-glow-angry-large-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234189,"modifiedTime":1661791116662,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MAxM77CDUu8dgIRQ","name":"Protection from Poison","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature. If it is poisoned, you neutralize the poison. If more than one poison afflicts the target, you neutralize one poison that you know is present, or you neutralize one at random.For the duration, the target has advantage on saving throws against being poisoned, and it has resistance to poison damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.MAxM77CDUu8dgIRQ"}},"img":"icons/magic/defensive/shield-barrier-glowing-triangle-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234123,"modifiedTime":1661791116662,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"8rP3gwmXVTgZqYZE","flags":{},"changes":[{"key":"system.bonuses.abilities.save","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.mwak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.msak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rsak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rwak.attack","mode":2,"value":"+1d4","priority":null}],"disabled":true,"duration":{"startTime":678,"seconds":60,"rounds":10,"combat":null,"turns":null,"startRound":2,"startTurn":1},"icon":"icons/magic/control/buff-flight-wings-blue.webp","label":"Bless","origin":"Compendium.dnd5e.monsters.ZaP1H91t4FzbRqR5.Item.8dzaICjGy6mTUaUr","tint":null,"transfer":false,"sort":0},{"_id":"6pbotGIvqQkraPva","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"5","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":678,"rounds":1,"seconds":null,"combat":null,"turns":null,"startRound":2,"startTurn":1},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","label":"Shield","origin":"Compendium.dnd5e.monsters.ZaP1H91t4FzbRqR5.Item.z1mx84ONwkXKUZd7","tint":null,"transfer":false,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232895,"modifiedTime":1672596101693,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZyIBOoZZD0nDaO2s","name":"Adult Red Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":27,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":25,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":256,"min":0,"max":256,"temp":0,"tempmax":0,"formula":"19d12 + 133"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":40,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":17,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Adult Red Dragon","displayName":0,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"MN60UTO1pjltasYN","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nF4ZHYj37UstHCUT","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ftqEpCKoioTST72K","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours .Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":16,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tD8Vmsb4B5eqTOJA","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 63 (18d6) fire damage on a failed save, or half as much damage on a successful one.The dragon exhales fire in a 60-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["18d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":21,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"060hAjIEDdMDfVoE","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 7 (2d6) fire damage.The Adult Red Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pzDFBmC7wfQsMJzw","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.The Adult Red Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DF0doZR8pYSjsrme","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.The Adult Red Dragon attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LESSs8CLEr1DEuLM","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1PppVLNAsjADU0Za","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ut9yaZWaSkU7bT1h","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nThe dragon makes a tail attack.\n\nThe dragon slams its long tail against its foe!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Q5JDbGOejqXyeaCj","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"\nThe dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 22 Dexterity saving throw or take 15 (2d6+8) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.\n\nThe dragon beats its wings!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":22,"scaling":"str"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yCGYa27YqTLhQK0I","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NQk4f6iqTeJaFaT0","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232898,"modifiedTime":1672596101801,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"aAqfEHPiVbhMwZ6j","name":"Giant Hyena","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":45,"min":0,"max":45,"temp":0,"tempmax":0,"formula":"6d10 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Hyena","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"QY2OI39oNi9VUuAY","name":"Rampage","type":"feat","img":"icons/skills/melee/strike-axe-blood-red.webp","system":{"description":{"value":"When the hyena reduces a creature to 0 hit points with a melee attack on its turn, the hyena can take a bonus action to move up to half its speed and make a bite attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.BnuDkgCOeGvAoYhy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"X9XQ405Nx5lHP20E","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\nThe Giant Hyena attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232901,"modifiedTime":1672596101847,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"aKt7vFAS1J0x3FQm","name":"Ettercap","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":44,"min":0,"max":44,"temp":0,"tempmax":0,"formula":"8d8 + 8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ettercap","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.3,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"vTDqx7A0xzxkZCqc","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The ettercap can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"u8VMOaHAAGlnnYyt","name":"Web Sense","type":"feat","img":"icons/magic/control/debuff-chains-ropes-net-white.webp","system":{"description":{"value":"While in contact with a web, the ettercap knows the exact location of any other creature in contact with the same web.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kjF0btAMYHUAQgOt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6dw8RLKtxKrHd41q","name":"Web Walker","type":"feat","img":"icons/magic/nature/tree-bare-glow-yellow.webp","system":{"description":{"value":"The ettercap ignores movement restrictions caused by webbing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zITrVwmnPpLoBZI1"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6eqd5bKL0SgwqRnm","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The ettercap makes two attacks: one with its bite and one with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qpUx52QbFUCSPSln","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage plus 4 (1d8) poison damage. The target must succeed on a DC 11 Constitution saving throw or be poisoned for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.The Ettercap attacks with its Bite. The target must make a Constitution saving throw. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","piercing"],["1d8","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"T8XMTiCIOQP4dYEp","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage.The Ettercap attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Sv5UJkCfY00yfFOE","name":"Web","type":"feat","img":"icons/creatures/webs/web-spider-glowing-purple.webp","system":{"description":{"value":"Ranged Weapon Attack: +4 to hit, range 30/60 ft., one Large or smaller creature. Hit: The creature is restrained by webbing. As an action, the restrained creature can make a DC 11 Strength check, escaping from the webbing on a success. The effect ends if the webbing is destroyed. The webbing has AC 10, 5 hit points, is vulnerable to fire damage and immune to bludgeoning damage.The creature is restrained by webbing. As an action, the restrained creature can make a Strength check, escaping from the webbing on a success. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.i8WDjw4J1gJWQmqG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232903,"modifiedTime":1672596101890,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"aTITHYYxthuZBPBn","name":"Ancient White Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":26,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":26,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":20,"calc":"natural","formula":""},"hp":{"value":333,"min":0,"max":333,"temp":0,"tempmax":0,"formula":"18d20+144"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":30,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Arctic","cr":20,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"grg","di":{"value":["cold"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Ancient White Dragon","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"NB88hf8oRtLwBolX","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) cold damage.The Ancient White Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["2d8","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Cz5xqvQ50f5zxuNY","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.The Ancient White Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VtIk8lLDM4Qj3uOl","name":"Cold Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 72 (l6d8) cold damage on a failed save, or half as much damage on a successful one.The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["16d8","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":22,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iHOaiOqwUWIfCljJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2LAZaoPDRIvnHwtf","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sYtyFXYWqxWT1uUI","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours .Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"cone"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":16,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fgHGU46JtSboc23B","name":"Ice Walk","type":"feat","img":"icons/magic/water/water-iceberg-bubbles.webp","system":{"description":{"value":"The dragon can move across and climb icy surfaces without needing to make an ability check. Additionally, difficult terrain composed of ice or snow doesn't cost it extra movement.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.YKC7pwYkJSKn1vuw"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hixTmzxSmaFgXDMy","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rtz0KAuj9DeBKT8A","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"b8vjJzQ5ha5CqneP","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UGfL5qnzzi2y2pNj","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Q3Nd59qtQ5rsGs6c","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.The Ancient White Dragon attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zu4q8DV9mStLmBeN","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DQGSNN2zFqmnBy9R","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 22 Dexterity saving throw or take 15 ([[/r 2d6+8]]) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":22,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"aHpjkoAnU66iriJW","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232905,"modifiedTime":1672596101991,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"azCbLQt5LAYwTI7U","name":"Brass Dragon Wyrmling","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":16,"calc":"natural","formula":""},"hp":{"value":16,"min":0,"max":16,"temp":0,"tempmax":0,"formula":"3d8 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":15,"climb":0,"fly":60,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Brass Dragon Wyrmling","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"K4qz0HVrX4JxcUvf","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.The Brass Dragon Wyrmling attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JmVLjWM4G6OOQxl4","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Fire Breath.** The dragon exhales fire in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 14 (4d6) fire damage on a failed save, or half as much damage on a successful one.\n**Sleep Breath.** The dragon exhales sleep gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw or fall unconscious for 1 minute. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Z7rjC1RhE8VwXz4Z","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\n**Fire Breath.** The dragon exhales fire in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 14 (4d6) fire damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales fire in an 20-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"z0g5kgBSkb9qHd6S","name":"Sleep Breath","type":"feat","img":"icons/magic/perception/third-eye-blue-red.webp","system":{"description":{"value":"\n**Sleep Breath.** The dragon exhales sleep gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw or fall unconscious for 1 minute. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n\nThe dragon exhales sleep gas in a 15-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.43BnuqkQgg5l1Nfh"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232907,"modifiedTime":1672596102040,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"banHjKDMCegbUwYE","name":"Air Elemental","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":90,"min":0,"max":90,"temp":null,"tempmax":0,"formula":"12d10 + 24"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":90,"swim":0,"walk":0,"units":"ft","hover":true},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","lightning","piercing","slashing","thunder"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["grappled","paralyzed","petrified","poisoned","prone","restrained","unconscious","exhaustion"],"custom":""},"languages":{"value":["auran"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Air Elemental","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"8FHVwYBJY7dxIv9D","name":"Air Form","type":"feat","img":"icons/magic/control/debuff-energy-hold-levitate-yellow.webp","system":{"description":{"value":"The elemental can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.TyDSfYTJeKv7c8lB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"IyR3c30mCbL8VMCo","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The elemental makes two slam attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qzLZFBO75loU77TZ","name":"Slam","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.\nThe Air Elemental attacks with its Slam.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PVdWTEQBuiAglD7l","name":"Whirlwind","type":"feat","img":"icons/magic/air/wind-tornado-cyclone-white.webp","system":{"description":{"value":"\nEach creature in the elemental's space must make a DC 13 Strength saving throw. On a failure, a target takes 15 (3d8 + 2) bludgeoning damage and is flung up 20 feet away from the elemental in a random direction and knocked prone.\nIf a thrown target strikes an object, such as a wall or floor, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 13 Dexterity saving throw or take the same damage and be knocked prone. If the saving throw is successful, the target takes half the bludgeoning damage and isn't flung away or knocked prone.\n\nEach creature in the elemental's space must make a Strength saving throw. On a failure, a target is flung up 20 feet away from the elemental in a random direction and knocked prone. If the target is thrown at another creature, that creature must make a Dexterity saving throw or take the same damage and be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":4,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.ocmSrMY2NX3e43uN"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232909,"modifiedTime":1672596102082,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"bcapsJdIhY5WktpT","name":"Young Black Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":127,"min":0,"max":127,"temp":0,"tempmax":0,"formula":"15d10 + 45"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Swamp","cr":7,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["acid"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Young Black Dragon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"963t1Gp9Nsy3UY9D","name":"Acid Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"The dragon exhales acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 49 (11d8) acid damage on a failed save, or half as much damage on a successful one.Each creature in that line must make a DC 14 Dexterity saving throw, taking 49 (11d8) acid damage on a failed save, or half as much damage on a successful one.The dragon exhales acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["11d8","acid"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zjcGly9P3Gn9MXt7"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KRrrjifJpxjJ0zKy","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kuTDtAq2QL2Tmr4h","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) acid damage.The Young Black Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["1d8","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gy0FMKec2tea9YI1","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.The Young Black Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ApR7vtoU4ec7UulE","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232910,"modifiedTime":1672596102136,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"bfh29vIEoGzI240e","name":"Lich","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":135,"min":0,"max":135,"temp":null,"tempmax":0,"formula":"18d8 + 54"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":"int"},"details":{"biography":{"value":"","public":""},"alignment":"Any Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"","cr":21,"spellLevel":18,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["bludgeoning","piercing","poison","slashing"],"bypasses":["mgc"],"custom":""},"dr":{"value":["cold","lightning","necrotic"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","exhaustion","frightened","paralyzed","poisoned"],"custom":""},"languages":{"value":["common","custom"],"custom":"5 other languages"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":2,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":4,"override":null},"spell2":{"value":3,"override":null},"spell3":{"value":3,"override":null},"spell4":{"value":3,"override":null},"spell5":{"value":3,"override":null},"spell6":{"value":1,"override":null},"spell7":{"value":1,"override":null},"spell8":{"value":1,"override":null},"spell9":{"value":1,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Lich","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.3,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"6PwbK4d0W11LsEkf","name":"Cantrip","type":"feat","img":"icons/magic/unholy/strike-hand-glow-pink.webp","system":{"description":{"value":"The lich casts a cantrip.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dJLqLsCek3uxbzuX","name":"Paralyzing Touch","type":"feat","img":"icons/magic/water/water-hand.webp","system":{"description":{"value":"The lich uses its Paralyzing Touch.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.ebcmg4M5LsUYCqee"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Uox2GEp5GMXOOXOc","name":"Frightening Gaze","type":"feat","img":"icons/magic/perception/silhouette-stealth-shadow.webp","system":{"description":{"value":"\nThe lich fixes its gaze on one creature it can see within 10 feet of it. The target must succeed on a DC 18 Wisdom saving throw against this magic or become grappled for 1 minute. The grappled target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to the lich's gaze for the next 24 hours.\n\nThe lich fixes its gaze on one creature it can see within 10 feet of it. The target must make a Wisdom saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.cpnrDGQrqgPlSmwR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sXU9KTYnmgi08EQw","name":"Disrupt Life","type":"feat","img":"icons/magic/death/projectile-skull-fire-purple.webp","system":{"description":{"value":"\nEach non-undead creature within 20 feet of the lich must make a DC 18 Constitution saving throw against this magic, taking 21 (6d6) necrotic damage on a failed save, or half as much damage on a successful one.\n\nEach non-undead creature within 20 feet of the lich must make a Constitution saving throw against this magic.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":3,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":3},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EguIm3u5kkopYwEM"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YfFIobyElKqcizgt","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the lich fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"stk9i3rPK7z99CDf","name":"Rejuvenation","type":"feat","img":"icons/magic/control/debuff-energy-hold-levitate-green.webp","system":{"description":{"value":"If it has a phylactery, a destroyed lich gains a new body in 1d10 days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the phylactery.A destroyed lich gains a new body in 1d10 days, regaining all its hit points and becoming active again.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d10","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JcfHlAcfwSWnt7Ud"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UMoMhboTLq75ZJW8","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"\nThe lich is an 18th-level spellcaster. Its spellcasting ability is Intelligence (spell save DC 20, +12 to hit with spell attacks). The lich has the following wizard spells prepared:\nCantrips (at will): mage hand, prestidigitation, ray of frost\n1st level (4 slots): detect magic, magic missile, shield, thunderwave\n2nd level (3 slots): detect thoughts, invisibility, acid arrow, mirror image\n3rd level (3 slots): animate dead, counterspell, dispel magic, fireball\n4th level (3 slots): blight, dimension door\n5th level (3 slots): cloudkill, scrying\n6th level (1 slot): disintegrate, globe of invulnerability\n7th level (1 slot): finger of death, plane shift\n8th level (1 slot): dominate monster, power word stun\n9th level (1 slot): power word kill\n\nThe lich is an spellcaster. Its spellcasting ability is Intelligence.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KDSrdpdFPDKnh80y","name":"Paralyzing Touch","type":"weapon","img":"icons/magic/water/water-hand.webp","system":{"description":{"value":"Melee Spell Attack:+12 to hit,, 5 ft., one creature. Hit: 10 (3d6) cold damage. The target must succeed on a DC 18 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.The Lich attacks with its Paralyzing Touch. The target must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"int","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.ebcmg4M5LsUYCqee"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Rry67emsoMMjvQQz","name":"Turn Resistance","type":"feat","img":"icons/magic/fire/flame-burning-creature-skeleton.webp","system":{"description":{"value":"The lich has advantage on saving throws against any effect that turns undead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.r9aMLZ7F3gSRLgRr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GvT7gczoJ6QCocrA","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe lich can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The lich regains spent legendary actions at the start of its turn.\n\nThe lich can take 3 legendary actions.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TB52r9CGyQ5lewor","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XbzBKNTXHSUjzWtt","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Utk1OQRwYkMkFRD3","name":"Mage Hand","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.The hand can't attack, activate magic items, or carry more than 10 pounds.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Utk1OQRwYkMkFRD3"}},"img":"icons/magic/water/water-hand.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234148,"modifiedTime":1661791116704,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"udsLtG0BugXHR2JQ","name":"Prestidigitation","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell is a minor magical trick that novice spellcasters use for practice. You create one of the following magical effects within range:\n\nYou create an instantaneous, harmless sensory effect, such as a shower of sparks, a puff of wind, faint musical notes, or an odd odor.\nYou instantaneously light or snuff out a candle, a torch, or a small campfire.\nYou instantaneously clean or soil an object no larger than 1 cubic foot.\nYou chill, warm, or flavor up to 1 cubic foot of nonliving material for 1 hour.\nYou make a color, a small mark, or a symbol appear on an object or a surface for 1 hour.\nYou create a nonmagical trinket or an illusory image that can fit in your hand and that lasts until the end of your next turn.\n\nIf you cast this spell multiple times, you can have up to three of its non-instantaneous effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.udsLtG0BugXHR2JQ"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234236,"modifiedTime":1661791116705,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ctW81uiX56xZR2c5","name":"Ray of Frost","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A frigid beam of blue-white light streaks toward a creature within range. Make a ranged spell attack against the target. On a hit, it takes 1d8 cold damage, and its speed is reduced by 10 feet until the start of your next turn.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ctW81uiX56xZR2c5"}},"img":"icons/magic/light/beam-rays-blue-small.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234176,"modifiedTime":1661791116705,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116705,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"41JIhpDyM9Anm7cs","name":"Magic Missile","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create three glowing darts of magical force. Each dart hits a creature of your choice that you can see within range. A dart deals 1d4 + 1 force damage to its target. The darts all strike simultaneously, and you can direct them to hit one creature or several.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the spell creates one more dart for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + 1","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.41JIhpDyM9Anm7cs"}},"img":"icons/magic/fire/projectile-meteor-salvo-light-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234065,"modifiedTime":1661791116706,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"z1mx84ONwkXKUZd7","name":"Shield","type":"spell","img":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","system":{"description":{"value":"An invisible barrier of magical force appears and protects you. Until the start of your next turn, you have a +5 bonus to AC, including against the triggering attack, and you take no damage from magic missile.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":"Which you take when you are hit by an attack or targeted by the magic missile spell"},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"6pbotGIvqQkraPva","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"5","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"rounds":1,"seconds":null,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","label":"Shield","origin":"Item.FlLKKv7bQBlIAs11","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.z1mx84ONwkXKUZd7"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234244,"modifiedTime":1661791116706,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WTbOQBsarsL1LuXJ","name":"Thunderwave","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A wave of thunderous force sweeps out from you. Each creature in a 15-foot cube originating from you must make a Constitution saving throw. On a failed save, a creature takes 2d8 thunder damage and is pushed 10 feet away from you. On a successful save, the creature takes half as much damage and isn't pushed.In addition, unsecured objects that are completely within the area of effect are automatically pushed 10 feet away from you by the spell's effect, and the spell emits a thunderous boom audible out to 300 feet.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cube"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","thunder"]],"versatile":""},"formula":"","save":{"ability":"con","dc":20,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.WTbOQBsarsL1LuXJ"}},"img":"icons/magic/lightning/bolt-forked-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234152,"modifiedTime":1661791116706,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"4H6YgYdKgnX6ZQ8M","name":"Acid Arrow","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A shimmering green arrow streaks toward a target within range and bursts in a spray of acid. Make a ranged spell Attack against the target. On a hit, the target takes 4d4 acid damage immediately and 2d4 acid damage at the end of its next turn. On a miss, the arrow splashes the target with acid for half as much of the initial damage and no damage at the end of its next turn.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage (both initial and later) increases by 1d4 for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d4","acid"]],"versatile":"2d4"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"powdered rhubarb leaf and an adder's stomach","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d4"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.4H6YgYdKgnX6ZQ8M"}},"img":"icons/magic/acid/projectile-bolts-salvo-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234066,"modifiedTime":1661791116706,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ppWAAEul0QHtm4er","name":"Detect Thoughts","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you can read the thoughts of certain creatures. When you cast the spell and as your action on each turn until the spell ends, you can focus your mind on any one creature that you can see within 30 feet of you. If the creature you choose has an Intelligence of 3 or lower or doesn't speak any language, the creature is unaffected.You initially learn the surface thoughts of the creature—what is most on its mind in that moment. As an action, you can either shift your attention to another creature's thoughts or attempt to probe deeper into the same creature's mind. If you probe deeper, the target must make a Wisdom saving throw. If it fails, you gain insight into its reasoning (if any), its emotional state, and something that looms large in its mind (such as something it worries over, loves, or hates). If it succeeds, the spell ends. Either way, the target knows that you are probing into its mind, and unless you shift your attention to another creature's thoughts, the creature can use its action on its turn to make an Intelligence check contested by your Intelligence check; if it succeeds, the spell ends.Questions verbally directed at the target creature naturally shape the course of its thoughts, so this spell is particularly effective as part of an interrogation.You can also use this spell to detect the presence of thinking creatures you can't see. When you cast the spell or as your action during the duration, you can search for thoughts within 30 feet of you. The spell can penetrate barriers, but 2 feet of rock, 2 inches of any metal other than lead, or a thin sheet of lead blocks you. You can't detect a creature with an Intelligence of 3 or lower or one that doesn't speak any language.Once you detect the presence of a creature in this way, you can read its thoughts for the rest of the duration as described above, even if you can't see it, but it must still be within range.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":20,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A copper piece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ppWAAEul0QHtm4er"}},"img":"icons/magic/light/explosion-star-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234229,"modifiedTime":1661791116707,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"1N8dDMMgZ1h1YJ3B","name":"Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An eyelash encased in gum arabic","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.1N8dDMMgZ1h1YJ3B"}},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234056,"modifiedTime":1661791116707,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"X4c8xCkmF8U9HUMz","name":"Mirror Image","type":"spell","img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","system":{"description":{"value":"Three illusory duplicates of yourself appear in your space. Until the spell ends, the duplicates move with you and mimic your actions, shifting position so it's impossible to track which image is real. You can use your action to dismiss the illusory duplicates.\nEach time a creature targets you with an attack during the spell's duration, roll a [[/r 1d20 # Mirror Image Check]] to determine whether the attack instead targets one of your duplicates.\nIf you have three duplicates, you must roll a 6 or higher to change the attack's target to a duplicate. With two duplicates, you must roll an 8 or higher. With one duplicate, you must roll an 11 or higher.\nA duplicate's AC equals 10 + your Dexterity modifier. If an attack hits a duplicate, the duplicate is destroyed. A duplicate can be destroyed only by an attack that hits it. It ignores all other damage and effects. The spell ends when all three duplicates are destroyed.\nA creature is unaffected by this spell if it can't see, if it relies on senses other than sight, such as blindsight, or if it can perceive illusions as false, as with truesight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d20","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.X4c8xCkmF8U9HUMz"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234155,"modifiedTime":1661791116707,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"oyE5nVppa5mde5gT","name":"Animate Dead","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell creates an undead servant. Choose a pile of bones or a corpse of a Medium or Small humanoid within range. Your spell imbues the target with a foul mimicry of life, raising it as an undead creature. The target becomes a skeleton if you chose bones or a zombie if you chose a corpse (the DM has the creature's game statistics).On each of your turns, you can use a bonus action to mentally command any creature you made with this spell if the creature is within 60 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete.The creature is under your control for 24 hours, after which it stops obeying any command you've given it. To maintain control of the creature for another 24 hours, you must cast this spell on the creature again before the current 24-hour period ends. This use of the spell reasserts your control over up to four creatures you have animated with this spell, rather than animating a new one.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you animate or reassert control over two additional undead creatures for each slot level above 3rd. Each of the creatures must come from a different corpse or pile of bones.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A drop of blood, a piece of flesh, and a pinch of bone dust","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.oyE5nVppa5mde5gT"}},"img":"icons/magic/control/fear-fright-monster-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234225,"modifiedTime":1661791116708,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Ek45cBpVXvJdv1Qy","name":"Counterspell","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to interrupt a creature in the process of casting a spell. If the creature is casting a spell of 3rd level or lower, its spell fails and has no effect. If it is casting a spell of 4th level or higher, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a success, the creature's spell fails and has no effect.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the interrupted spell has no effect if its level is less than or equal to the level of the spell slot you used.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":"which you take when you see a creature within 60 feet of you casting a spell"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d20 + @mod","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":false,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Ek45cBpVXvJdv1Qy"}},"img":"icons/skills/melee/strike-blade-hooked-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234102,"modifiedTime":1661791116708,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"15Fa6q1nH27XfbR8","name":"Dispel Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose one creature, object, or magical effect within range. Any spell of 3rd level or lower on the target ends. For each spell of 4th level or higher on the target, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a successful check, the spell ends.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you automatically end the effects of a spell on the target if the spell's level is equal to or less than the level of the spell slot you used.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.15Fa6q1nH27XfbR8"}},"img":"icons/skills/melee/strike-blade-knife-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234054,"modifiedTime":1661791116708,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ztgcdrWPshKRpFd0","name":"Fireball","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A bright streak flashes from your pointing finger to a point you choose within range and then blossoms with a low roar into an explosion of flame. Each creature in a 20-foot-radius sphere centered on that point must make a Dexterity saving throw. A target takes 8d6 fire damage on a failed save, or half as much damage on a successful one.The fire spreads around corners. It ignites flammable objects in the area that aren't being worn or carried.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":20,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A tiny ball of bat guano and sulfur","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ztgcdrWPshKRpFd0"}},"img":"icons/magic/fire/projectile-fireball-smoke-large-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234246,"modifiedTime":1661791116709,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pybg5MNc3lkerH4Y","name":"Blight","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Necromantic energy washes over a creature of your choice that you can see within range, draining moisture and vitality from it. The target must make a Constitution saving throw. The target takes 8d8 necrotic damage on a failed save, or half as much damage on a successful one. This spell has no effect on undead or constructs.If you target a plant creature or a magical plant, it makes the saving throw with disadvantage, and the spell deals maximum damage to it.If you target a nonmagical plant that isn't a creature, such as a tree or shrub, it doesn't make a saving throw, it simply withers and dies.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d8","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":20,"scaling":"spell"},"level":4,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.pybg5MNc3lkerH4Y"}},"img":"icons/magic/unholy/strike-beam-blood-large-red-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234230,"modifiedTime":1661791116710,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"A4RsPuSvB9wFtz1j","name":"Dimension Door","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You teleport yourself from your current location to any other spot within range. You arrive at exactly the spot desired. It can be a place you can see, one you can visualize, or one you can describe by stating distance and direction, such as \"200 feet straight downward\" or \"upward to the northwest at a 45-degree angle, 300 feet.\"You can bring along objects as long as their weight doesn't exceed what you can carry. You can also bring one willing creature of your size or smaller who is carrying gear up to its carrying capacity. The creature must be within 5 feet of you when you cast this spell.If you would arrive in a place already occupied by an object or a creature, you and any creature traveling with you each take 4d6 force damage, and the spell fails to teleport you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":500,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.A4RsPuSvB9wFtz1j"}},"img":"icons/magic/air/air-burst-spiral-large-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234087,"modifiedTime":1661791116712,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"LkvI11Uue774QBKZ","name":"Cloudkill","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a 20-foot-radius sphere of poisonous, yellow-green fog centered on a point you choose within range. The fog spreads around corners. It lasts for the duration or until strong wind disperses the fog, ending the spell. Its area is heavily obscured.When a creature enters the spell's area for the first time on a turn or starts its turn there, that creature must make a Constitution saving throw. The creature takes 5d8 poison damage on a failed save, or half as much damage on a successful one. Creatures are affected even if they hold their breath or don't need to breathe.The fog moves 10 feet away from you at the start of each of your turns, rolling along the surface of the ground. The vapors, being heavier than air, sink to the lowest level of the land, even pouring down openings.Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":20,"scaling":"spell"},"level":5,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.LkvI11Uue774QBKZ"}},"img":"icons/magic/air/fog-gas-smoke-swirling-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234121,"modifiedTime":1661791116713,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"fVbCxFRaORalHB20","name":"Scrying","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You can see and hear a particular creature you choose that is on the same plane of existence as you. The target must make a Wisdom saving throw, which is modified by how well you know the target and the sort of physical connection you have to it. If a target knows you're casting this spell, it can fail the saving throw voluntarily if it wants to be observed.\n\n\n\nKnowledge\nSave Modifier\n\n\nSecondhand (you have heard of the target)\n+5\n\n\nFirsthand (you have met the target)\n+0\n\n\nFamiliar (you know the target well)\n-5\n\n\n\n\n\n\n\nConnection\nSave Modifier\n\n\nLikeness or picture\n-2\n\n\nPossession or garment\n-4\n\n\nBody part, lock of hair, bit of nail, or the like\n-10\n\n\n\nOn a successful save, the target isn't affected, and you can't use this spell against it again for 24 hours.On a failed save, the spell creates an Invisible sensor within 10 feet of the target. You can see and hear through the sensor as if you were there. The sensor moves with the target, remaining within 10 feet of it for the Duration. A creature that can see Invisile Objects sees the sensor as a luminous orb about the size of your fist.Instead of targeting a creature, you can choose a location you have seen before as the target of this spell. When you do, the sensor appears at that location and doesn't move.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":20,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A focus worth at least 1,000 gp, such as a crystal ball, a silver mirror, or a font filled with holy water.","consumed":false,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.fVbCxFRaORalHB20"}},"img":"icons/magic/perception/eye-ringed-glow-angry-large-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234189,"modifiedTime":1661791116714,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"HBHbOGKNVVprSlwn","name":"Disintegrate","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A thin green ray springs from your pointing finger to a target that you can see within range. The target can be a creature, an object, or a creation of magical force, such as the wall created by wall of force.A creature targeted by this spell must make a Dexterity saving throw. On a failed save, the target takes 10d6 + 40 force damage. The target is disintegrated if this damage leaves it with 0 hit points.A disintegrated creature and everything it is wearing and carrying, except magic items, are reduced to a pile of fine gray dust. The creature can be restored to life only by means of a true resurrection or a wish spell.This spell automatically disintegrates a Large or smaller nonmagical object or a creation of magical force. If the target is a Huge or larger object or creation of force, this spell disintegrates a 10-foot-cube portion of it. A magic item is unaffected by this spell.At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the damage increases by 3d6 for each slot level above 6th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d6 + 40","force"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":20,"scaling":"spell"},"level":6,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A lodestone and a pinch of dust","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"3d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.HBHbOGKNVVprSlwn"}},"img":"icons/magic/unholy/strike-beam-blood-large-red-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234106,"modifiedTime":1661791116714,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"HPvZm8YJO91k6Qdg","name":"Finger of Death","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You send negative energy coursing through a creature that you can see within range, causing it searing pain. The target must make a Constitution saving throw. It takes 7d8 + 30 necrotic damage on a failed save, or half as much damage on a successful one.A humanoid killed by this spell rises at the start of your next turn as a Zombie that is permanently under your command, following your verbal orders to the best of its ability.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["7d8 + 30","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":20,"scaling":"spell"},"level":7,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.HPvZm8YJO91k6Qdg"}},"img":"icons/magic/unholy/strike-beam-blood-large-red-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234107,"modifiedTime":1661791116714,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"J6Jpw5XzB5aTeqnz","name":"Plane Shift","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You and up to eight willing creatures who link hands in a circle are transported to a different plane of existence. You can specify a target destination in general terms, such as the City of Brass on the Elemental Plane of Fire or the palace of Dispater on the second level of the Nine Hells, and you appear in or near that destination. If you are trying to reach the City of Brass, for example, you might arrive in its Street of Steel, before its Gate of Ashes, or looking at the city from across the Sea of Fire, at the DM's discretion.Alternatively, if you know the sigil sequence of a teleportation circle on another plane of existence, this spell can take you to that circle. If the teleportation circle is too small to hold all the creatures you transported, they appear in the closest unoccupied spaces next to the circle.You can use this spell to banish an unwilling creature to another plane. Choose a creature within your reach and make a melee spell attack against it. On a hit, the creature must make a Charisma saving throw. If the creature fails this save, it is transported to a random location on the plane of existence you specify. A creature so transported must find its own way back to your current plane of existence.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":8,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":20,"scaling":"spell"},"level":7,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A forked, metal rod worth at least 250 gp, attuned to a particular plane of existence","consumed":false,"cost":250,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.J6Jpw5XzB5aTeqnz"}},"img":"icons/magic/symbols/runes-star-pentagon-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234111,"modifiedTime":1661791116715,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"eEpy1ONlXumKS1mp","name":"Dominate Monster","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to beguile a creature that you can see within range. It must succeed on a Wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw.While the creature is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability.You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time, you can also cause the creature to use a reaction, but this requires you to use your own reaction as well.Each time the target takes damage, it makes a new Wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.At Higher Levels. When you cast this spell with a 9th-level spell slot, the duration is concentration, up to 8 hours.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":20,"scaling":"spell"},"level":8,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.eEpy1ONlXumKS1mp"}},"img":"icons/magic/air/air-burst-spiral-large-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234184,"modifiedTime":1661791116715,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"dmvaMLFWFtv0qx0S","name":"Power Word Kill","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You utter a word of power that can compel one creature you can see within range to die instantly. If the creature you choose has 100 hit points or fewer, it dies. Otherwise, the spell has no effect.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":9,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.dmvaMLFWFtv0qx0S"}},"img":"icons/magic/unholy/strike-beam-blood-large-red-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234182,"modifiedTime":1661791116715,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"35j2QIMmIk6aEdxj","name":"Power Word Stun","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You speak a word of power that can overwhelm the mind of one creature you can see within range, leaving it dumbfounded. If the target has 150 Hit Points or fewer, it is Stunned. Otherwise, the spell has no effect.The stunned target must make a Constitution saving throw at the end of each of its turns. On a successful save, this stunning effect ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":20,"scaling":"spell"},"level":8,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.35j2QIMmIk6aEdxj"}},"img":"icons/magic/control/debuff-chains-ropes-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234062,"modifiedTime":1661791116715,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WmQpxfjZwF3MGUby","name":"Globe of Invulnerability","ownership":{"default":0},"type":"spell","system":{"description":{"value":"An immobile, faintly shimmering barrier springs into existence in a 10-foot radius around you and remains for the Duration.Any spell of 5th level or lower cast from outside the barrier can't affect creatures or Objects within it, even if the spell is cast using a higher level spell slot. Such a spell can target creatures and Objects within the barrier, but the spell has no effect on them. Similarly, the area within the barrier is excluded from the areas affected by such Spells.At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the barrier blocks Spells of one level higher for each slot level above 6th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A glass or crystal bead that shatters when the spell ends","consumed":true,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.WmQpxfjZwF3MGUby"}},"img":"icons/magic/defensive/shield-barrier-flaming-pentagon-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234154,"modifiedTime":1661791116716,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"6pbotGIvqQkraPva","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"5","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":678,"rounds":1,"seconds":null,"combat":null,"turns":null,"startRound":2,"startTurn":1},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","label":"Shield","origin":"Compendium.dnd5e.monsters.bfh29vIEoGzI240e.Item.z1mx84ONwkXKUZd7","tint":null,"transfer":false,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232912,"modifiedTime":1672596102266,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"bwtkdzavdNHISgp4","name":"Quasit","type":"npc","img":"","system":{"abilities":{"str":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":7,"min":0,"max":7,"temp":null,"tempmax":0,"formula":"3d4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"fiend","subtype":"Demon, Shapechanger","swarm":"","custom":""},"environment":"","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","fire","lightning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["abyssal","common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Quasit","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"MLfZqvhaJjB78YiT","name":"Invisibility","type":"feat","img":"icons/creatures/webs/webthin-blue.webp","system":{"description":{"value":"\nThe quasit magically turns invisible until it attacks or uses Scare, or until its concentration ends (as if concentrating on a spell). Any equipment the quasit wears or carries is invisible with it.\nThe quasit magically turns invisible. Any equipment the quasit wears or carries is invisible with it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.dA5X2eQuOtHywpQF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ae0OI3obJqa4AS7U","name":"Claw (Bite in Beast Form)","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack: +4 to hit, reach 5 ft ., one target. Hit: 5 (1d4 + 3) piercing damage.The target must succeed on a DC 10 Constitution saving throw or take 5 (2d4) poison damage and become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.The Quasit attacks with its Claw. The target must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4+@mod","piercing"]],"versatile":""},"formula":"2d4","save":{"ability":"con","dc":10,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"e8rpvJJVWCN4HU7I","name":"Shapechanger","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The quasit can use its action to polymorph into a beast form that resembles a bat (speed 10 ft. fly 40 ft.), a centipede (40 ft., climb 40 ft.), or a toad (40 ft., swim 40 ft.), or back into its true form . Its statistics are the same in each form, except for the speed changes noted. Any equipment it is wearing or carrying isn't transformed . It reverts to its true form if it dies.The quasit can use its action to polymorph into a beast form or back into its true form. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vlmHYqAZxNGh8xQ6","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The quasit has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1YhP86rTuRIXKFi2","name":"Scare","type":"feat","img":"icons/creatures/unholy/demon-winged-cyclops-drooling.webp","system":{"description":{"value":"One creature of the quasit's choice within 20 ft. of it must succeed on a DC 10 Wisdom saving throw or be frightened for 1 minute. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the quasit is within line of sight, ending the effect on itself on a success.One creature of the quasit's choice within 20 ft. of it must make a Wisdom saving throw. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the quasit is within line of sight, ending the effect on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":10,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.gqrKcFwxHhmwrP2q"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232916,"modifiedTime":1672596102335,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"c9XDGsTJRy9HUaxQ","name":"Giant Sea Horse","type":"npc","img":"","system":{"abilities":{"str":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":16,"min":0,"max":16,"temp":0,"tempmax":0,"formula":"3d10"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":0,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Sea Horse","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"MB7KUNGnxz6mw1J5","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nIf the sea horse moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 7 (2d6) bludgeoning damage.\nIf the target is a creature, it must succeed on a DC 11 Strength saving throw or be knocked prone.\n\nIf the sea horse moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes extra bludgeoning damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yCZ6sgHxxIr0zIxO","name":"Water Breathing","type":"feat","img":"icons/magic/water/bubbles-air-water-blue.webp","system":{"description":{"value":"The sea horse can breathe only underwater.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.c4Q6NDCLJSNcNc9T"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tTZCmbeeSHXXFZGJ","name":"Ram","type":"weapon","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage.\nThe Giant Sea Horse attacks with its Ram.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232917,"modifiedTime":1672596102373,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"cDr1JtzEV26bP5Ym","name":"Hyena","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":5,"min":0,"max":5,"temp":0,"tempmax":0,"formula":"1d8 + 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Hyena","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"RvZitO1X1j16tABV","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The hyena has advantage on an attack roll against a creature if at least one of the hyena's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Hyena","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gqMeY9GtWfBNt1bf","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 3 (1d6) piercing damage.\nThe Hyena attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232919,"modifiedTime":1672596102413,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"cGM3iVYTtCsYXjzO","name":"Adult Blue Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":25,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":23,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":225,"min":0,"max":225,"temp":0,"tempmax":0,"formula":"18d12 + 108"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":30,"climb":0,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":16,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":["lightning"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Adult Blue Dragon","displayName":0,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"sIvGEhLogBsA5OXM","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tz3vYeFf3GLouPGC","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+12 to hit,, 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage plus 5 (1d10) lightning damage.The Adult Blue Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["1d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kYySllKlNPBsT7Ho","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+12 to hit,, 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.The Adult Blue Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wpVgm5eOdM9j3C3N","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zMT1Uj814On8O1Hg","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 ft. of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hTzGBPIQzZPRkUgt","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2yqNNNEOupSnZs0p","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BNmepDhipTFG7kIT","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZrmS45Tc7RieN0qd","name":"Lightning Breath","type":"feat","img":"icons/magic/lightning/bolt-strike-blue.webp","system":{"description":{"value":"The dragon exhales lightning in a 90-foot line that is 5 ft. wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.The dragon exhales lightning in a 90-foot line that is 5 ft. wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d10",""]],"versatile":""},"formula":"","save":{"ability":"dex","dc":19,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LVnd9fq9cQj7rR0Q"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kWquVg3QhBwODyz3","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JRgWoRDlExmKqNVa","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+12 to hit,, 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.The Adult Blue Dragon attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ANMZzr2n2EpU41eg","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\n\nMelee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8+7) bludgeoning damage.\n\n\nThe dragon slams its long tail against its foe!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GcUNB4m0NAPgP0Nx","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"\nThe dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 20 Dexterity saving throw or take 14 (2d6+7) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.\n\nThe dragon beats its wings!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232920,"modifiedTime":1672596102531,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"cJGY1ZywUOo6heNR","name":"Giant Badger","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":13,"min":0,"max":13,"temp":0,"tempmax":0,"formula":"2d8 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":10,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":30,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Badger","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"MdbJir3UFvpFs2Zq","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The badger has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1lGtRKKScQMq9K3R","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The badger makes two attacks: one with its bite and one with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NTUVjYVsAjweAj1R","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) piercing damage.\nThe Giant Badger attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BToZtvd0HCyQvoXC","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 6 (2d4 + 1) slashing damage.\nThe Giant Badger attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232923,"modifiedTime":1672596102579,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ciLSItjCpwT7nMmk","name":"Killer Whale","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":90,"min":0,"max":90,"temp":0,"tempmax":0,"formula":"12d12 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":60,"walk":0,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":120,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":3,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Killer Whale","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"1EB34o4iqY7GN1HT","name":"Echolocation","type":"feat","img":"icons/magic/control/hypnosis-mesmerism-eye.webp","system":{"description":{"value":"The whale can't use its blindsight while deafened.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.rUongiWD51ZopRk2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Hwa4dcQdXAi1vk7z","name":"Hold Breath","type":"feat","img":"icons/magic/water/pseudopod-swirl-blue.webp","system":{"description":{"value":"The whale can hold its breath for 30 minutes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lwC6jwy9bXberyWo"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"z9JmFBY3z1pnVFX9","name":"Keen Hearing","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The whale has advantage on Wisdom (Perception) checks that rely on hearing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2JDxekOVx1NSUwuP","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 21 (5d6 + 4) piercing damage.\nThe Killer Whale attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232932,"modifiedTime":1672596102617,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ckOF3vQrnjFnZIDU","name":"Ancient Gold Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":30,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":29,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":28,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":22,"calc":"natural","formula":""},"hp":{"value":546,"min":0,"max":546,"temp":0,"tempmax":0,"formula":"28d20+252"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":24,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"grg","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Ancient Gold Dragon","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"iwb9D2aGX9fy818q","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xe5ziibjDPuvqO20","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1k9ihUu6sedelfkA","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SG0kdaxjbJFUtdrJ","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GlvW2Ae0hvh1zCOV","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BFbR0db4At8TQY91","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+17 to hit,, 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.The Ancient Gold Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iqduxJQPzhHPTJp2","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+17 to hit,, 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.The Ancient Gold Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5dpAWzBBJmkzgvGY","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+17 to hit,, 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.The Ancient Gold Dragon attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ncKFI8v5vPO7kOFi","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 24 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":24,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"j2nbvKIkKdNI32hU","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Fire Breath.** The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 71 (13d10) fire damage on a failed save, or half as much damage on a successful one.\n**Weakening Breath.** The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zeRGidXXHkyRaA0g","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\n**Fire Breath.** The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 71 (13d10) fire damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales fire in a 90-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["13d10","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":24,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"aOiuiILBGXCAei63","name":"Weakening Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\n**Weakening Breath.** The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon exhales gas in a 90-foot cone. Each creature in that area must make a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":24,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.IHh6n8uZBGqyRfZz"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XRmYEohSc8WQkWYT","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MEN285wvE8ocd3E3","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eIY2gDYaffnDNdh3","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GZdNj6f2SdN1fr4A","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 25 Dexterity saving throw or take 17 ([[/r 2d6+10]]) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":25,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1KAScMfU0fdHhR2g","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232934,"modifiedTime":1672596102711,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"d0prpsGSAorDadec","name":"Owl","type":"npc","img":"","system":{"abilities":{"str":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"1d4 - 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":5,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Owl","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"HZ5UNadatPJxpeKP","name":"Flyby","type":"feat","img":"icons/creatures/mammals/bats-movement-flying-purple.webp","system":{"description":{"value":"The owl doesn't provoke opportunity attacks when it flies out of an enemy's reach.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.7WfeHV27l7DMcuTG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9H6ylAxHKFhsfqno","name":"Keen Hearing and Sight","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The owl has advantage on Wisdom (Perception) checks that rely on hearing or sight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"c3NnWQRHnaBpqtbe","name":"Talons","type":"weapon","img":"icons/creatures/claws/claw-scaled-red.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 1 slashing damage.The Owl attacks with its Talons.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232936,"modifiedTime":1672596102757,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dLQiESMsfsXijD5c","name":"Imp","type":"npc","img":"","system":{"abilities":{"str":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":10,"min":0,"max":10,"temp":null,"tempmax":0,"formula":"3d4 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":40,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"Devil, Shapechanger","swarm":"","custom":""},"environment":"","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["infernal","common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Imp","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"9ioH5ocevSRjYBaD","name":"Shapechanger","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The imp can use its action to polymorph into a beast form that resembles a rat (speed 20 ft.), a raven (20 ft., fly 60 ft.), or a spider (20 ft., climb 20 ft.), or back into its true form. Its statistics are the same in each form, except for the speed changes noted. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OljCWQpwojS4FKur","name":"Devil's Sight","type":"feat","img":"icons/magic/perception/eye-slit-pink.webp","system":{"description":{"value":"Magical darkness doesn't impede the imp's darkvision.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sl0CxgkL7SkRIv7j","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The imp has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"64Swhse7QnbiLAbi","name":"Sting","type":"weapon","img":"icons/creatures/abilities/fang-tooth-venomous.webp","system":{"description":{"value":"\nMelee Weapon Attack: +5 to hit, reach 5 ft ., one target. Hit: 5 (1d4 + 3) piercing damage.\nThe target must make on a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n\nThe Imp attacks with its Sting. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"3d6","save":{"ability":"con","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":false,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mMdtSlNy6FuPju7p","name":"Invisibility","type":"feat","img":"icons/creatures/webs/webthin-blue.webp","system":{"description":{"value":"\nThe imp magically turns invisible until it attacks, or until its concentration ends (as if concentrating on a spell). Any equipment the imp wears or carries is invisible with it.\n\nThe imp magically turns invisible. Any equipment the imp wears or carries is invisible with it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.dA5X2eQuOtHywpQF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RZpYFJGNqA7L1bj1","name":"Bite (beast form only)","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n\nThe Imp attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"3d6","save":{"ability":"con","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232938,"modifiedTime":1672596102797,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dZZFmG8LiBlgWi76","name":"Swarm of Beetles","type":"npc","img":"","system":{"abilities":{"str":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"5d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":5,"climb":20,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"tiny","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","grappled","paralyzed","petrified","prone","restrained","stunned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Swarm of Beetles","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":10,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"F2s1LlBQGprxK07S","name":"Swarm","type":"feat","img":"icons/creatures/invertebrates/fly-wasp-mosquito-green.webp","system":{"description":{"value":"The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Bats","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eL3OJmc4FuetizKO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"neEOya9BCR7VSH09","name":"Bites","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 0 ft., one target in the swarm's space. Hit: 10 (4d4) piercing damage, or 5 (2d4) piercing damage if the swarm has half of its hit points or fewer.\nThe Swarm of Beetles attacks with a flurry of Bites.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d4","piercing"]],"versatile":"2d4"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232940,"modifiedTime":1672596102839,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"e5IQxSJO7ySEDdSH","name":"Triceratops","type":"npc","img":"","system":{"abilities":{"str":{"value":22,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":95,"min":0,"max":95,"temp":0,"tempmax":0,"formula":"10d12 + 30"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Triceratops","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"h5lGnMKW65NWIi2W","name":"Gore","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 5 ft., one target. Hit: 24 (4d8 + 6) piercing damage.The Triceratops attacks with its Gore.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6UWSefP0BqnmYwAz","name":"Stomp","type":"weapon","img":"icons/creatures/abilities/cougar-pounce-stalk-black.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 5 ft., one prone creature. Hit: 22 (3d10 + 6) bludgeoning damage.The Triceratops attacks with its Stomp.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":"one prone creature"},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4jztSrWQNxc4q55u","name":"Trampling Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"If the triceratops moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a DC 13 Strength saving throw or be knocked prone. If the target is prone, the triceratops can make one stomp attack against it as a bonus action.If the triceratops moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yD51x4dihnbHwfsj"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232941,"modifiedTime":1672596102881,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eIGowKTkEBC9gUzx","name":"Ogre","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":59,"min":0,"max":59,"temp":0,"tempmax":0,"formula":"7d10 + 21"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"giant","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","giant"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ogre","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"1bqysUVTadmvi8nb","name":"Greatclub","type":"weapon","img":"icons/weapons/clubs/club-simple-barbed.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.The Ogre attacks with its Greatclub.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QRCsxkCwWNwswL9o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tXgnd9qKOE2b7Wis","name":"Javelin","type":"weapon","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 11 (2d6 + 4) piercing damage.The Ogre attacks with its Javelin.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":true},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DWLMnODrnHn8IbAG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lJ2gJxLDBbFtLwdk","name":"Hide Armor","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":12,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"medium","dex":2},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.n1V07puo0RQxPGuF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232943,"modifiedTime":1672596102923,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eORmAXuV5v3nWsQL","name":"Animated Armor","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":33,"min":0,"max":33,"temp":0,"tempmax":0,"formula":"6d8 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":25,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":"Blind beyond this radius"},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"construct","subtype":"","swarm":"","custom":""},"environment":"","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["poison","psychic"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["blinded","charmed","deafened","frightened","paralyzed","petrified","poisoned","exhaustion"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Animated Armor","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"jlZrv208u9gYyh7I","name":"Antimagic Susceptibility","type":"feat","img":"icons/magic/lightning/orb-ball-purple.webp","system":{"description":{"value":"\nThe armor is incapacitated while in the area of an antimagic field.\nIf targeted by dispel magic, the armor must succeed on a Constitution saving throw against the caster's spell save DC or fall unconscious for 1 minute.\n\nThe armor is incapacitated while in the area of an antimagic field.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KMQAgNxBCAHrd2JU"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Kwed9PPaTkZYr8Jh","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the armor remains motionless, it is indistinguishable from a normal suit of armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bdRuWKCO8gXQPu16","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The armor makes two melee attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vUqKQJ1GGWbKg6cX","name":"Slam","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.\nThe Animated Armor makes a slam attack!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232944,"modifiedTime":1672596102960,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ec3lhsNv1ZRu7Qaq","name":"Hezrou","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":16,"calc":"natural","formula":""},"hp":{"value":136,"min":0,"max":136,"temp":null,"tempmax":0,"formula":"13d10 + 65"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"fiend","subtype":"Demon","swarm":"","custom":""},"environment":"","cr":8,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","fire","lightning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["abyssal","custom"],"custom":"telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Hezrou","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"dQt68nlmGdhK2ojI","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The hezrou has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0EcUwWcmWzFuiJyg","name":"Stench","type":"feat","img":"icons/magic/acid/projectile-glowing-bubbles.webp","system":{"description":{"value":"Any creature that starts its turn within 10 feet of the hezrou must succeed on a DC 14 Constitution saving throw or be poisoned until the start of its next turn. On a successful saving throw, the creature is immune to the hezrou's stench for 24 hours.Any creature that starts its turn within 10 feet of the hezrou must succeed on a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.OsPhT7jA5LlvUA6e"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xQ1RYlOxb6lMRhdI","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The hezrou makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UNNl5XqsXZuKOm69","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage.The Hezrou attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HEQqPUsmmNs178Mj","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.The Hezrou attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232946,"modifiedTime":1672596103000,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"egsSDYbqoLCelb0J","name":"Marilith","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"dex":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":189,"min":0,"max":189,"temp":null,"tempmax":0,"formula":"18d10 + 90"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"fiend","subtype":"Demon","swarm":"","custom":""},"environment":"","cr":16,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","fire","lightning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["abyssal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Marilith","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"JT4JWvnmmQnEJ2qv","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The marilith has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"e5syW3Oa9yNGZ09T","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The marilith's weapon attacks are magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rBHEI0gZnnv8h44g","name":"Reactive","type":"feat","img":"icons/magic/symbols/rune-sigil-black-pink.webp","system":{"description":{"value":"The marilith can take one reaction on every turn in combat.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lhTQJsLKYUZT2gV5"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nEKlIbUhhx9akBjK","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The marilith can make seven attacks: six with its longswords and one with its tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VzPNwzlwJ7knJ9MC","name":"Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.The Marilith attacks with its Longsword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BoIambnHLbZXr85T","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 10 ft., one creature. Hit: 15 (2d10 + 4) bludgeoning damage. If the target is Medium or smaller, it is grappled (escape DC 19). Until this grapple ends, the target is restrained, the marilith can automatically hit the target with its tail, and the marilith can't make tail attacks against other targets.The Marilith attacks with its Tail. If the target is Medium or smaller, it is grappled. Until this grapple ends, the target is restrained, the marilith can automatically hit the target with its tail, and the marilith can't make tail attacks against other targets.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EMJe4NIzUdNIQj9S","name":"Teleport","type":"feat","img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","system":{"description":{"value":"The marilith magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.PPzVD90vab60FqCt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lS2o3QOZ2lxKyi0L","name":"Parry","type":"feat","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"The marlith adds 5 to its AC against one melee Attack that would hit it. To do so, the marlith must see the attacker and be wielding a melee weapon.The marlith adds 5 to its AC against one melee Attack that would hit it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kfi26Jy0VLXv9TTm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232948,"modifiedTime":1672596103042,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eiifqZwYGi71r2Yl","name":"Medusa","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":127,"min":0,"max":127,"temp":0,"tempmax":0,"formula":"17d8 + 51"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":6,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Medusa","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"KmzlUGMXUhY2HubE","name":"Petrifying Gaze","type":"feat","img":"icons/magic/control/hypnosis-mesmerism-eye.webp","system":{"description":{"value":"\nWhen a creature that can see the medusa's eyes starts its turn within 30 ft. of the medusa, the medusa can force it to make a DC 14 Constitution saving throw if the medusa isn't incapacitated and can see the creature. If the saving throw fails by 5 or more, the creature is instantly petrified. Otherwise, a creature that fails the save begins to turn to stone and is restrained. The restrained creature must repeat the saving throw at the end of its next turn, becoming petrified on a failure or ending the effect on a success. The petrification lasts until the creature is freed by the greater restoration spell or other magic.\nUnless surprised, a creature can avert its eyes to avoid the saving throw at the start of its turn. If the creature does so, it can't see the medusa until the start of its next turn, when it can avert its eyes again. If the creature looks at the medusa in the meantime, it must immediately make the save. If the medusa sees itself reflected on a polished surface within 30 ft. of it and in an area of bright light, the medusa is, due to its curse, affected by its own gaze.\n\nThe medusa can force it to make a Constitution saving throw. The restrained creature must repeat the saving throw at the end of its next turn, becoming petrified on a failure or ending the effect on a success. The petrification lasts until the creature is freed by the greater restoration spell or other magic. Unless surprised, a creature can avert its eyes to avoid the saving throw at the start of its turn. If the creature does so, it can't see the medusa until the start of its next turn, when it can avert its eyes again. If the creature looks at the medusa in the meantime, it must immediately make the save. If the medusa sees itself reflected on a polished surface within 30 ft. of it and in an area of bright light, the medusa is, due to its curse, affected by its own gaze.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.wkIN7WTeX8ebbjtv"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"udfhkp3BOEpgThbR","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The medusa makes either three melee attacks - one with its snake hair and two with its shortsword - or two ranged attacks with its longbow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1N53jrQmsZuhiREF","name":"Snake Hair","type":"weapon","img":"icons/creatures/reptiles/serpent-horned-green.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage plus 14 (4d6) poison damage.The Medusa attacks with its Snake Hair.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4+@mod","piercing"],["4d6","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ixrzcEmkn9jaDOZ0","name":"Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.The Medusa attacks with its Shortsword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":true,"fir":false,"foc":false,"hvy":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.osLzOwQdPtrK3rQH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4U98oe3Qr28BGbzG","name":"Longbow","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"Ranged Weapon Attack: +5 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage plus 7 (2d6) poison damage.The Medusa attacks with its Longbow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","piercing"],["2d6","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3cymOVja8jXbzrdT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232950,"modifiedTime":1672596103084,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eykRfV85DQJoCkmc","name":"Young Silver Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":168,"min":0,"max":168,"temp":0,"tempmax":0,"formula":"16d10 + 80"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":9,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["cold"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Young Silver Dragon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"qsfDO6B4wLP1UeKS","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.The Young Silver Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"08bC5Aq3vPzJatVB","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Cold Breath.** The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 17 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.\n**Paralyzing Breath.** The dragon exhales paralyzing gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GvAgPChKDJLm64Za","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.The Young Silver Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dAoWnethMNHwPNDJ","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vuuyXwshegZEpoSb","name":"Cold Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\n**Cold Breath.** The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 17 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":"Breath Weapons must be charged"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d8","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":17,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iHOaiOqwUWIfCljJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"spr7KRotXDVgwIso","name":"Paralyzing Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\n**Paralyzing Breath.** The dragon exhales paralyzing gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon exhales paralyzing gas in a 30-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":"Breath Weapons must be charged"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":17,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.BiasCPpNsaAVKzIj"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232952,"modifiedTime":1672596103127,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"f6HaKROPIcBRmSd1","name":"Rug of Smothering","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":33,"min":0,"max":33,"temp":0,"tempmax":0,"formula":"6d10"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":"Blind beyond this radius"},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"construct","subtype":"","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["poison","psychic"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["blinded","charmed","deafened","frightened","paralyzed","petrified","poisoned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Rug of Smothering","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"PGulBR18kfO768c7","name":"Antimagic Susceptibility","type":"feat","img":"icons/magic/lightning/orb-ball-purple.webp","system":{"description":{"value":"The rug is incapacitated while in the area of an antimagic field. If targeted by dispel magic, the rug must succeed on a Constitution saving throw against the caster's spell save DC or fall unconscious for 1 minute.The rug is incapacitated while in the area of an antimagic field. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KMQAgNxBCAHrd2JU"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Jwm0r4Us1rwS6XfV","name":"Damage Transfer","type":"feat","img":"icons/skills/melee/strike-axe-blood-red.webp","system":{"description":{"value":"While it is grappling a creature, the rug takes only half the damage dealt to it, and the creature grappled by the rug takes the other half.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.0npeEcwmiVMdwGMV"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"N30l3HXqmQ6H6Xo5","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the rug remains motionless, it is indistinguishable from a normal rug.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7p94WH1WPMhF1ZP9","name":"Smother","type":"weapon","img":"icons/magic/water/wave-water-explosion.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one Medium or smaller creature. Hit:\nThe creature is grappled (escape DC 13). Until this grapple ends, the target is restrained, blinded, and at risk of suffocating, and the rug can't smother another target. In addition, at the start of each of the target's turns, the target takes 10 (2d6 + 3) bludgeoning damage.\n\nThe Rug of Smothering makes a smothering attack! The creature is grappled. Until this grapple ends, the target is restrained, blinded, and at risk of suffocating, and the rug can't smother another target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232954,"modifiedTime":1672596103163,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"f9JbhBfWucrY2eDA","name":"Giant Wolf Spider","type":"npc","img":"","system":{"abilities":{"str":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":40,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Wolf Spider","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"alpha":1,"light":{"alpha":0.5,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"reverse":false,"type":null},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.3},"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"w4oJusdFuSttyz8X","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The spider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Et0GP61ZnJkxxqvN","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one creature. Hit: 4 (1d6 + 1) piercing damage.\nThe target must make a DC 11 Constitution saving throw, taking 7 (2d6) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but poisoned for 1 hour, even after regaining hit points, and is paralyzed while poisoned in this way.\n\nThe Giant Wolf Spider attacks with its Bite. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"2d6"},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OwNnGHVHu2XX0oPc","name":"Web Sense","type":"feat","img":"icons/creatures/webs/web-spider-glowing-purple.webp","system":{"description":{"value":"While in contact with a web, the spider knows the exact location of any other creature in contact with the same web.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kjF0btAMYHUAQgOt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"oRhC5cUi8uHMapul","name":"Web Walker","type":"feat","img":"icons/magic/nature/tree-bare-glow-yellow.webp","system":{"description":{"value":"The spider ignores movement restrictions caused by webbing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zITrVwmnPpLoBZI1"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232956,"modifiedTime":1672596103200,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fkCNtbvPOMd7mipF","name":"Pseudodragon","type":"npc","img":"","system":{"abilities":{"str":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":7,"min":0,"max":7,"temp":0,"tempmax":0,"formula":"2d4+2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":15,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"int"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":"can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Pseudodragon","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"heZCHSZEeLLiweK7","name":"Keen Senses","type":"feat","img":"icons/magic/perception/eye-ringed-glow-angry-large-teal.webp","system":{"description":{"value":"The pseudodragon has advantage on Wisdom (Perception) checks that rely on sight, hearing, or smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JnLN0Rz60WHXk2Fr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GAzi14ICaeeOAO8J","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The pseudodragon has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"aIqOpP93mUsy9yD1","name":"Limited Telepathy","type":"feat","img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","system":{"description":{"value":"The pseudodragon can magically communicate simple ideas, emotions, and images telepathically with any creature within 100 ft. of it that can understand a language.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":100,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.xna3UTd4EFLCZMt9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GJgN3Qy49XCaKmTc","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.The Pseudodragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MKFXRWP55I1bVlyD","name":"Sting","type":"weapon","img":"icons/creatures/abilities/fang-tooth-venomous.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage.The target must succeed on a DC 11 Constitution saving throw or become poisoned for 1 hour. If the saving throw fails by 5 or more, the target falls unconscious for the same duration, or until it takes damage or another creature uses an action to shake it awake.The Pseudodragon attacks with its Sting. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232958,"modifiedTime":1672596103242,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fkJ8Z8zi2JtlcHh9","name":"Vulture","type":"npc","img":"","system":{"abilities":{"str":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":5,"min":0,"max":5,"temp":0,"tempmax":0,"formula":"1d8 + 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":50,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Vulture","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"oFwDpNHu44o0BRx1","name":"Keen Sight and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The vulture has advantage on Wisdom (Perception) checks that rely on sight or smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Vulture","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Pi704hBXv722CLGM","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The vulture has advantage on an attack roll against a creature if at least one of the vulture's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Vulture","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MnAKUayu6jCzzRsS","name":"Beak","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 2 (1d4) piercing damage.\nThe Vulture attacks with its Beak.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232960,"modifiedTime":1672596103282,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fnkPNfIpS62LqOu4","name":"Hawk","type":"npc","img":"","system":{"abilities":{"str":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"1d4 - 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Hawk","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"hHbY6NAFUWVlz7tj","name":"Keen Sight","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The eagle has advantage on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Hawk","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0Di3cqTRD7ot8ZCa","name":"Talons","type":"weapon","img":"icons/creatures/claws/claw-talons-glowing-orange.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 1 slashing damage.\nThe Hawk attacks with its Talons.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232961,"modifiedTime":1672596103316,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fqbFYtbtkrL53FOC","name":"Gray Ooze","type":"npc","img":"","system":{"abilities":{"str":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":8,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"3d8 + 9"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":10,"fly":0,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":"Blind beyond this radius"},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"ooze","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["acid","cold","fire"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["blinded","charmed","deafened","frightened","prone","exhaustion"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Gray Ooze","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"2iRdkvAfbmxSymuw","name":"Amorphous","type":"feat","img":"icons/creatures/slimes/slime-movement-dripping-purple.webp","system":{"description":{"value":"The ooze can move through a space as narrow as 1 inch wide without squeezing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.3lDp8DtWwNDHSvxX"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uSay5J2sf9zXsabi","name":"Corrode Metal","type":"feat","img":"icons/magic/earth/orb-stone-smoke-teal.webp","system":{"description":{"value":"\nAny nonmagical weapon made of metal that hits the ooze corrodes. After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls.\nIf its penalty drops to -5, the weapon is destroyed. Nonmagical ammunition made of metal that hits the ooze is destroyed after dealing damage. The ooze can eat through 2-inch-thick, nonmagical metal in 1 round.\n\nThe ooze corrodes metal.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.0z5v1BfMqQl5Z7UW"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NDZ02JVZWMbzRGGJ","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the ooze remains motionless, it is indistinguishable from an oily pool or wet rock.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KO4qRywgiEQ3F004","name":"Pseudopod","type":"weapon","img":"icons/creatures/slimes/slime-movement-dripping-pseudopods-green.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage plus 7 (2d6) acid damage.If the target is wearing nonmagical metal armor, its armor is partly corroded and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.The Gray Ooze attacks with its Pseudopod. If the target is wearing nonmagical metal armor, its armor is partly corroded and takes a permanent and cumulative -1 penalty to the AC it offers.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"],["2d6","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232963,"modifiedTime":1672596103352,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fsPruAIDOg4tVrgb","name":"Gladiator","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":112,"min":0,"max":112,"temp":0,"tempmax":0,"formula":"15d8 + 45"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Alignment","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"any one language (usually Common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":2,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Gladiator","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"GO2zHOdb2GBHd2U4","name":"Studded Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-rivited-red.webp","system":{"description":{"value":"Made from tough but flexible leather, studded leather is reinforced with close-set rivets or spikes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":13,"price":{"value":45,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.TIV3B1vbrVHIhQAm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sSs3hSzkKBMNBgTs","name":"Shield","type":"equipment","img":"icons/equipment/shield/oval-wooden-boss-steel.webp","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YbB6EsBwNaEzVlxU","name":"Brave","type":"feat","img":"icons/skills/social/intimidation-impressing.webp","system":{"description":{"value":"The gladiator has advantage on saving throws against being Frightened.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.108q5fJnnBRoLKfe"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NPTnV9YupSeKJrQ0","name":"Brute","type":"feat","img":"icons/skills/melee/unarmed-punch-fist.webp","system":{"description":{"value":"A melee weapon deals one extra die of its damage when the gladiator hits with it (included in the attack).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.q8w1UF9woZDGIwvS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QuVUb9i809rjJWcL","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The gladiator makes three melee attacks or two ranged attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eL15erXXE9EuXWSB","name":"Spear","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"\nMelee or Ranged Weapon Attack: +7 to hit, reach 5 ft. and range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage, or 13 (2d8 + 4) piercing damage if used with two hands to make a melee attack.\nThe Gladiator attacks with their Spear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":"2d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"thr":true,"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.OG4nBBydvmfWYXIk"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GrUneCbXCYngdpjf","name":"Shield Bash","type":"weapon","img":"icons/equipment/shield/buckler-wooden-boss-glowing-blue.webp","system":{"description":{"value":"\nMelee Weapon Attack:+7 to hit,, 5 ft., one creature. Hit: 9 (2d4 + 4) bludgeoning damage.\nIf the target is a Medium or smaller creature, it must succeed on a DC 15 Strength saving throw or be knocked prone.\n\nThe Gladiator attacks with their Shield Bash. If the target is a Medium or smaller creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AwP14Hu6dPdnSbQt","name":"Parry","type":"feat","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"\nThe gladiator adds 3 to its AC against one melee Attack that would hit it. To do so, the gladiator must see the attacker and be wielding a melee weapon.\n\nThe gladiator adds 3 to its AC against one melee Attack that would hit it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"none"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kfi26Jy0VLXv9TTm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232965,"modifiedTime":1672596103395,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"g40zN6xMye6bSS94","name":"Swarm of Ravens","type":"npc","img":"","system":{"abilities":{"str":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":24,"min":0,"max":24,"temp":0,"tempmax":0,"formula":"7d8 - 7"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":50,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"tiny","custom":""},"environment":"Forest","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","grappled","paralyzed","petrified","prone","restrained","stunned"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Swarm of Ravens","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Vmmq0dqa2hEcTGOC","name":"Swarm","type":"feat","img":"icons/creatures/invertebrates/fly-wasp-mosquito-green.webp","system":{"description":{"value":"The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny raven. The swarm can't regain hit points or gain temporary hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.eL3OJmc4FuetizKO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rQWSxwspySRtFst2","name":"Beaks","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target in the swarm's space. Hit: 7 (2d6) piercing damage, or 3 (1d6) piercing damage if the swarm has half of its hit points or fewer.\nThe Swarm of Ravens attacks with its Beaks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","piercing"]],"versatile":"1d6"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232967,"modifiedTime":1672596103435,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"g7FSu2oU4YHPgWNA","name":"Darkmantle","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"5d6 + 5"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":30,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Darkmantle","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"FbHtjwNAATMUsN1r","name":"Echolocation","type":"feat","img":"icons/magic/control/hypnosis-mesmerism-eye.webp","system":{"description":{"value":"The darkmantle can't use its blindsight while deafened.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.rUongiWD51ZopRk2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"k24xxFfPtUCahddE","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the darkmantle remains motionless, it is indistinguishable from a cave formation such as a stalactite or stalagmite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DA34sS4nWGc4OTwm","name":"Crush","type":"weapon","img":"icons/magic/life/heart-shadow-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one creature. Hit: 6 (1d6 + 3) bludgeoning damage.\nThe darkmantle attaches to the target. If the target is Medium or smaller and the darkmantle has advantage on the attack roll, it attaches by engulfing the target's head, and the target is also blinded and unable to breathe while the darkmantle is attached in this way.\nWhile attached to the target, the darkmantle can attack no other creature except the target but has advantage on its attack rolls. The darkmantle's speed also becomes 0, it can't benefit from any bonus to its speed, and it moves with the target.\nA creature can detach the darkmantle by making a successful DC 13 Strength check as an action. On its turn, the darkmantle can detach itself from the target by using 5 feet of movement.\n\nThe darkmantle attacks with its Crush. The darkmantle attaches to the target. While attached to the target, the darkmantle can attack no other creature except the target but has advantage on its attack rolls. A creature can detach the darkmantle by making a successful Strength check as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qzSE2ZiVMLKsWF4F","name":"Darkness Aura","type":"feat","img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","system":{"description":{"value":"\nA 15-foot radius of magical darkness extends out from the darkmantle, moves with it, and spreads around corners. The darkness lasts as long as the darkmantle maintains concentration, up to 10 minutes (as if concentrating on a spell).\nDarkvision can't penetrate this darkness, and no natural light can illuminate it. If any of the darkness overlaps with an area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled.\n\nA 15-foot radius of magical darkness extends out from the darkmantle, moves with it, and spreads around corners. Darkvision can't penetrate this darkness, and no natural light can illuminate it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.jhAU6pb5GvbjwTX7"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232968,"modifiedTime":1672596103472,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gGeLeV411iQ5Yijs","name":"Shambling Mound","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":136,"min":0,"max":136,"temp":0,"tempmax":0,"formula":"16d10 + 48"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":20,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":"Blind beyond this radius"},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"plant","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["lightning"],"bypasses":[],"custom":""},"dr":{"value":["cold","fire"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["blinded","deafened","exhaustion"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Shambling Mound","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"gyAyLX9CJBbawmr3","name":"Lightning Absorption","type":"feat","img":"icons/magic/lightning/bolt-strike-smoke-yellow.webp","system":{"description":{"value":"Whenever the shambling mound is subjected to lightning damage, it takes no damage and regains a number of hit points equal to the lightning damage dealt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KTsFgSQlDetDDm1f"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2aGoBVVEF54VcC9d","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The shambling mound makes two slam attacks. If both attacks hit a Medium or smaller target, the target is grappled escape DC 14, and the shambling mound uses its Engulf on it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"N42BQALoCmeYphD1","name":"Engulf","type":"feat","img":"icons/magic/nature/trap-spikes-thorns-green.webp","system":{"description":{"value":"The shambling mound engulfs a Medium or smaller creature grappled by it. The engulfed target is blinded, restrained, and unable to breathe, and it must succeed on a DC 14 Constitution saving throw at the start of each of the mound's turns or take 13 (2d8 + 4) bludgeoning damage.If the mound moves, the engulfed target moves with it. The mound can have only one creature engulfed at a time.The shambling mound engulfs a Medium or smaller creature grappled by it. The engulfed target is blinded, restrained, and unable to breathe, and it must make a Constitution saving throw at the start of each of the mound's turns. If the mound moves, the engulfed target moves with it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Eh80lkzHiEOJP8FI"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lOIA9YKQU8xSx7Lj","name":"Slam","type":"weapon","img":"icons/magic/fire/flame-burning-fist-strike.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.The Shambling Mound attacks with its Slam.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232970,"modifiedTime":1672596103511,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gKRtiMNAjZiCVfwz","name":"Stirge","type":"npc","img":"","system":{"abilities":{"str":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":2,"min":0,"max":2,"temp":0,"tempmax":0,"formula":"1d4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":40,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.125,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Stirge","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"MEFgfFD6YUD9cE08","name":"Blood Drain","type":"weapon","img":"icons/skills/wounds/blood-spurt-spray-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one creature. Hit: 5 (1d4 + 3) piercing damage.The stirge attaches to the target. While attached, the stirge doesn't attack. Instead, at the start of each of the stirge's turns, the target loses 5 (1d4 + 3) hit points due to blood loss.The stirge can detach itself by spending 5 feet of its movement. It does so after it drains 10 hit points of blood from the target or the target dies.The Stirge attacks with its Blood Drain. A creature, including the target, can use its action to detach the stirge.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232971,"modifiedTime":1672596103548,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gaSTr7DFZJLmgI2J","name":"Awakened Shrub","type":"npc","img":"","system":{"abilities":{"str":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":9,"calc":"natural","formula":""},"hp":{"value":10,"min":0,"max":10,"temp":0,"tempmax":0,"formula":"3d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"plant","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["piercing"],"bypasses":[],"custom":""},"dv":{"value":["fire"],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"One language known by its creator"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Awakened Shrub","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Vdk7dsybx2iYlKVx","name":"Rake","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+1 to hit,, 5 ft., one target. Hit: 1 (1d4 - 1) slashing damage.\nThe Awakened Shrub attacks with its Rake.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"cfgn9yboSN7jIsDC","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the shrub remains motionless, it is indistinguishable from a normal shrub.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Awakened Shrub","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232973,"modifiedTime":1672596103587,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"geM2F7HvVGhtk3h4","name":"Adult Silver Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":27,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":25,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":243,"min":0,"max":243,"temp":0,"tempmax":0,"formula":"18d12 + 126"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":16,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":["cold"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Adult Silver Dragon","displayName":0,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"PHDGDBP8gGjp1XRs","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ajPmtUy0amdphs7D","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3WM5UpCTIb6fQaWA","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+13 to hit,, 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.The Adult Silver Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nO1hKkZifzX3UJ2y","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+13 to hit,, 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.The Adult Silver Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"str"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"v5TMyixZTtiw13d7","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+13 to hit,, 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.The Adult Silver Dragon attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"F8gfPJkHrrlTwVUs","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3c1EZHdUBP4tiWfK","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Cold Breath.** The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 20 Constitution saving throw, taking 58 (13d8) cold damage on a failed save, or half as much damage on a successful one.\n**Paralyzing Breath.** The dragon exhales paralyzing gas in a 60-foot cone. Each creature in that area must succeed on a DC 20 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MzyHKQpwLeUUgBW7","name":"Cold Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\n**Cold Breath.** The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 20 Constitution saving throw, taking 58 (13d8) cold damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["13d8","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":20,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iHOaiOqwUWIfCljJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5Q60uuHW5kZGaopg","name":"Paralyzing Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\n**Paralyzing Breath.** The dragon exhales paralyzing gas in a 60-foot cone. Each creature in that area must succeed on a DC 20 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon exhales paralyzing gas in a 60-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":20,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.BiasCPpNsaAVKzIj"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4NQZ8XlRj6sbjbOs","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lslg4XVihVKQhwte","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uqanvb4CeQp0bdn3","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1OojtcMLidFnfuTi","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CdSoAS13rAlkBKI7","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"\nThe dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 21 Dexterity saving throw or take 15 (2d6+8) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.\n\nThe dragon beats its wings! Each creature within 10 feet of the dragon must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":21,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"W525tFlyOp18jFTJ","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XTlIcoABQaHZTn5D","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232976,"modifiedTime":1672596103681,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gf9QbHdMAfvFtxcv","name":"Ancient Silver Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":30,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":29,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":23,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":22,"calc":"natural","formula":""},"hp":{"value":487,"min":0,"max":487,"temp":0,"tempmax":0,"formula":"25d20 + 225"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":23,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"grg","di":{"value":["cold"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Ancient Silver Dragon","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"gcXX5P25Hed1CHt2","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"shoHSForHM2cwBtd","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YCbR7M5CKKCFWLvk","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+17 to hit,, 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.The Ancient Silver Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YHoeJdvSJaT3qblq","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+17 to hit,, 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.The Ancient Silver Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VlNQwm636T7qIEoQ","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+17 to hit,, 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.The Ancient Silver Dragon attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ohWgcdw603aWWXum","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"oL7vyWwH6bvXyl95","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Cold Breath.** The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 24 Constitution saving throw, taking 67 (15d8) cold damage on a failed save, or half as much damage on a successful one.\n**Paralyzing Breath.** The dragon exhales paralyzing gas in a 90- foot cone. Each creature in that area must succeed on a DC 24 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"p6laYHKsnkMnfwtu","name":"Cold Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\n**Cold Breath.** The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 24 Constitution saving throw, taking 67 (15d8) cold damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["15d8","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":24,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iHOaiOqwUWIfCljJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TbcUwDfwFSYvMmwp","name":"Paralyzing Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\n**Paralyzing Breath.** The dragon exhales paralyzing gas in a 90- foot cone. Each creature in that area must succeed on a DC 24 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon exhales paralyzing gas in a 90- foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":24,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.BiasCPpNsaAVKzIj"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nnMmiUPuJEyViPaq","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yAVNzttgGO1cHIlQ","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tg4h1Ht7X4YmDTd9","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"saU6KEYGTm2SZ3jv","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"\nThe dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 25 Dexterity saving throw or take 17 (2d6+10) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.\n\nThe dragon beats its wings! Each creature within 15 feet of the dragon must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":25,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fu7gTjVI9Dk9J8tT","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Pb87W9xoor7xP185","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7OzKj0pIQLqNVmmF","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232978,"modifiedTime":1672596103792,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"h052EIIUmRwJum65","name":"Griffon","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":59,"min":0,"max":59,"temp":0,"tempmax":0,"formula":"7d10 + 21"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Griffon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"0o0MDYjWjFsJFvQZ","name":"Keen Sight","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The griffon has advantage on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wF7eGWgo8AZNTcyg","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The griffon makes two attacks: one with its beak and one with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"T2JS1VEL7U2s92Fj","name":"Beak","type":"weapon","img":"icons/commodities/bones/beak-hooked-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.The Griffon attacks with its Beak.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ldVEDIAP2PHxLHsL","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.The Griffon attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232981,"modifiedTime":1672596103860,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"h98AuPfomEPcCibP","name":"Iron Golem","type":"npc","img":"","system":{"abilities":{"str":{"value":24,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":20,"calc":"natural","formula":""},"hp":{"value":210,"min":0,"max":210,"temp":null,"tempmax":0,"formula":"20d10 + 100"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"construct","subtype":"","swarm":"","custom":""},"environment":"","cr":16,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["bludgeoning","fire","piercing","poison","psychic","slashing"],"bypasses":["ada","mgc"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","exhaustion","frightened","paralyzed","petrified","poisoned"],"custom":""},"languages":{"value":[],"custom":"understands the languages of its creator but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Iron Golem","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"y2j6GWf1Ur3GRtYI","name":"Fire Absorption","type":"feat","img":"icons/magic/fire/flame-burning-campfire-rocks.webp","system":{"description":{"value":"Whenever the golem is subjected to fire damage, it takes no damage and instead regains a number of hit points equal to the fire damage dealt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.UH57LTsTGDxl2oS6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ajTNe969fHHuppwl","name":"Immutable Form","type":"feat","img":"icons/magic/unholy/orb-beam-pink.webp","system":{"description":{"value":"The golem is immune to any spell or effect that would alter its form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.MFuiImIvLzYA3osc"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vUyYxadU3cXz7Zqf","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The golem has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"aIoPr5RkxMhH5prU","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The golem's weapon attacks are magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UupAbZ0Pu4j3vLLg","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The golem makes two melee attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0z51jBlE4BoPaEQn","name":"Slam","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"Melee Weapon Attack:+13 to hit,, 5 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.The Iron Golem attacks with its Slam.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pPThO0mEw9iMaJw7","name":"Sword","type":"weapon","img":"icons/weapons/swords/sword-guard-red.webp","system":{"description":{"value":"Melee Weapon Attack:+13 to hit,, 10 ft., one target. Hit: 23 (3d10 + 7) slashing damage.The Iron Golem attacks with its Sword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"x44GisqrxHYC5fov","name":"Poison Breath","type":"feat","img":"icons/creatures/reptiles/serpent-horned-green.webp","system":{"description":{"value":"\nThe golem exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n\nThe golem exhales poisonous gas in a 15-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d8","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":19,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JAEclghgOT24pQD9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232983,"modifiedTime":1672596103909,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hIf83RD3ZVW4Egfi","name":"Cat","type":"npc","img":"","system":{"abilities":{"str":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":2,"min":0,"max":2,"temp":0,"tempmax":0,"formula":"1d4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Cat","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"QEiTKu95xZ1ovW5K","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+0 to hit,, 5 ft., one target. Hit: 1 slashing damage.\nThe Cat attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rZhUwhHEUo6VBxPt","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The cat has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"abil","attackBonus":"","chatFlavor":"The cat raises its head, sniffing the air.","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"2d20kh + @mod","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Cat","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232986,"modifiedTime":1672596103953,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hQt3qIahnB1Odb40","name":"Giant Elk","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":42,"min":0,"max":42,"temp":0,"tempmax":0,"formula":"5d12 + 10"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":60,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"Giant Elk; Understands Common, Elvish, and Sylvan but can't speak them"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Elk","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"xSzDPptifNbKyf5N","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nIf the elk moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 7 (2d6) damage.\nIf the target is a creature, it must succeed on a DC 14 Strength saving throw or be knocked prone.\n\nIf the elk moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6",""]],"versatile":""},"formula":"","save":{"ability":"str","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jDA6wujGF6L3tPBM","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one prone creature. Hit: 22 (4d8 + 4) bludgeoning damage.\nThe Giant Elk attacks with its Hooves.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"epOt7fzXcBz9Hf0i","name":"Ram","type":"weapon","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\nThe Giant Elk attacks with its Ram.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232988,"modifiedTime":1672596103996,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hY9ptpO5Xl2tfkcj","name":"Bronze Dragon Wyrmling","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":32,"min":0,"max":32,"temp":0,"tempmax":0,"formula":"5d8 + 10"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["lightning"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Bronze Dragon Wyrmling","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"H2dPYlwoo8MOstEQ","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Vq0dUbodqBggQAVQ","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.The Bronze Dragon Wyrmling attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Bl0NweDKcGjwVdPu","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Lightning Breath.** The dragon exhales lightning in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 16 (3d10) lightning damage on a failed save, or half as much damage on a successful one.\n**Repulsion Breath.** The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 12 Strength saving throw. On a failed save, the creature is pushed 30 feet away from the dragon.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QoYyaNGqsz935dS2","name":"Lightning Breath","type":"feat","img":"icons/magic/lightning/bolt-strike-blue.webp","system":{"description":{"value":"\n**Lightning Breath.** The dragon exhales lightning in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 16 (3d10) lightning damage on a failed save, or half as much damage on a successful one.\n\n The dragon exhales lightning in a 40-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":40,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":12,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LVnd9fq9cQj7rR0Q"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WT04ZQprU9op6Wny","name":"Repulsion Breath","type":"feat","img":"icons/magic/air/air-wave-gust-blue.webp","system":{"description":{"value":"\n**Repulsion Breath.** The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 12 Strength saving throw. On a failed save, the creature is pushed 30 feet away from the dragon.\n\nThe dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must make a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":12,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zRDERBe0lMbwyGwN"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232990,"modifiedTime":1672596104043,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hb6pjvdCNYmLLp8V","name":"Polar Bear","type":"npc","img":"","system":{"abilities":{"str":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":42,"min":0,"max":42,"temp":0,"tempmax":0,"formula":"5d10 + 15"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Polar Bear","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ieLtcJMAlgYVDSvs","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The bear has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hJyurwicMrRIt2TC","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The bear makes two attacks: one with its bite and one with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"c8cisRQ7Ki3qiXgL","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 9 (1d8 + 5) piercing damage.The Polar Bear attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jFBgpP0EO1Y2HRL0","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.The Polar Bear attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232992,"modifiedTime":1672596104088,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hjhERRzafCiFFVLA","name":"Lion","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":26,"min":0,"max":26,"temp":0,"tempmax":0,"formula":"4d10 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Lion","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ZFsvhBgKXqgf17TZ","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The lion has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Kztga4jBHZCUjO3A","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The lion has advantage on an attack roll against a creature if at least one of the lion's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pQdtHaxlArSTjbqb","name":"Pounce","type":"feat","img":"icons/creatures/claws/claw-talons-glowing-orange.webp","system":{"description":{"value":"\nIf the lion moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a DC 13 Strength saving throw or be knocked prone.\nIf the target is prone, the lion can make one bite attack against it as a bonus action.\n\nIf the lion moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must make a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.MqAVplIArAKzpnXB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3dmAdKAVc8JqLgIj","name":"Running Leap","type":"feat","img":"icons/skills/movement/feet-winged-boots-brown.webp","system":{"description":{"value":"With a 10-foot running start, the lion can long jump up to 25 ft.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Ozz1xvw2ydiw4IJP"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gKj1TlVfDhLp5WIk","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage.\nThe Lion attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CHIayoaCAZj0GBkM","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\nThe Lion attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232994,"modifiedTime":1672596104131,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hqj2yXtgwt64v3Lj","name":"Basilisk","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":52,"min":0,"max":52,"temp":0,"tempmax":0,"formula":"8d8 + 16"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":3,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Basilisk","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"bKBPawscKpixPeO0","name":"Petrifying Gaze","type":"feat","img":"icons/magic/control/hypnosis-mesmerism-eye.webp","system":{"description":{"value":"\nIf a creature starts its turn within 30 ft. of the basilisk and the two of them can see each other, the basilisk can force the creature to make a DC 12 Constitution saving throw if the basilisk isn't incapacitated. On a failed save, the creature magically begins to turn to stone and is restrained. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is petrified until freed by the greater restoration spell or other magic.\nA creature that isn't surprised can avert its eyes to avoid the saving throw at the start of its turn. If it does so, it can't see the basilisk until the start of its next turn, when it can avert its eyes again. If it looks at the basilisk in the meantime, it must immediately make the save. If the basilisk sees its reflection within 30 ft. of it in bright light, it mistakes itself for a rival and targets itself with its gaze.\n\nThe basilisk can force the creature to make a Constitution saving throw. It must repeat the saving throw at the end of its next turn. A creature that isn't surprised can avert its eyes to avoid the saving throw at the start of its turn. If it does so, it can't see the basilisk until the start of its next turn, when it can avert its eyes again. If it looks at the basilisk in the meantime, it must immediately make the save.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":12,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.wkIN7WTeX8ebbjtv"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"atyoFYgU32nJ9kPK","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage plus 7 (2d6) poison damage.\nThe Basilisk attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"],["2d6","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232996,"modifiedTime":1672596104180,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hx240PG5r5qpRet3","name":"Mimic","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":58,"min":0,"max":58,"temp":0,"tempmax":0,"formula":"9d8 + 18"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":15,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"monstrosity","subtype":"Shapechanger","swarm":"","custom":""},"environment":"Underdark","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["acid"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["prone"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Mimic","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"DOyBdRdgMxLm9BIh","name":"Shapechanger","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The mimic can use its action to polymorph into an object or back into its true, amorphous form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies.The mimic can use its action to polymorph into an object or back into its true, amorphous form. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"aPL8wE2ARwh9JFeX","name":"Adhesive (Object Form Only)","type":"feat","img":"icons/creatures/slimes/slime-movement-dripping-pseudopods-green.webp","system":{"description":{"value":"The mimic adheres to anything that touches it. A Huge or smaller creature adhered to the mimic is also grappled by it escape DC 13. Ability checks made to escape this grapple have disadvantage.The mimic adheres to anything that touches it. A Huge or smaller creature adhered to the mimic is also grappled by it. Make an escape check, with disadvantage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7g1LwEync57GwqV0","name":"False Appearance (Object Form Only)","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the mimic remains motionless, it is indistinguishable from an ordinary object.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sGiOJWWFPPQ6J5Zm","name":"Grappler","type":"feat","img":"icons/skills/melee/unarmed-punch-fist.webp","system":{"description":{"value":"The mimic has advantage on attack rolls against any creature grappled by it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kP9t6MAeUvBBmoM3"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qHJyEXRC7oExTjES","name":"Pseudopod","type":"weapon","img":"icons/creatures/slimes/slime-movement-dripping-pseudopods-green.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage. If the mimic is in object form, the target is subjected to its Adhesive trait.The Mimic attacks with its Pseudopod.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HgNW3DcqMvGVXO7s","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) acid damage.The Mimic attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8+@mod","piercing"],["1d8","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232997,"modifiedTime":1672596104223,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"iGBdQA3IuKsurcUy","name":"Duergar","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":26,"min":0,"max":26,"temp":0,"tempmax":0,"formula":"4d8 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":25,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"humanoid","subtype":"Dwarf","swarm":"","custom":""},"environment":"Underdark","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["poison"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["dwarvish","undercommon"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Duergar","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"QRv2TDbktMG2SBfC","name":"Scale Mail","type":"equipment","img":"icons/equipment/chest/breastplate-metal-scaled-grey.webp","system":{"description":{"value":"This armor consists of a coat and leggings (and perhaps a separate skirt) of leather covered with overlapping pieces of metal, much like the scales of a fish. The suit includes gauntlets.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":45,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":14,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":true,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.XmnlF5fgIO3tg6TG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sSs3hSzkKBMNBgTs","name":"Shield","type":"equipment","img":"icons/equipment/shield/oval-wooden-boss-steel.webp","system":{"description":{"value":"A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":2,"type":"shield","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7ePnUuyCcRkB5GHo","name":"Duergar Resilience","type":"feat","img":"icons/magic/control/control-influence-rally-purple.webp","system":{"description":{"value":"The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being charmed or paralyzed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WHnLJRaXfIW7Z28t"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kN6uf2h2Em4ol6Tz","name":"Sunlight Sensitivity","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.F14aW2Ke3I5ZtSg4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gvmNtrdfZXCNiAY3","name":"Enlarge","type":"feat","img":"icons/magic/control/energy-stream-link-large-blue.webp","system":{"description":{"value":"For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.jZgeHxCR8pF6FOmQ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tCtnqPPKQ9NxIDqd","name":"War Pick","type":"weapon","img":"icons/weapons/axes/pickaxe-double-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage, or 11 (2d8 + 2) piercing damage while enlarged.\nThe Duergar attacks with its War Pick.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":"2d8"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":true},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.2YdfjN1PIIrSHZii"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fHe3YshNib2lsJ45","name":"Javelin","type":"weapon","img":"icons/weapons/ammunition/arrows-bodkin-yellow-red.webp","system":{"description":{"value":"\nMelee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 9 (2d6 + 2) piercing damage while enlarged.\nThe Duergar attacks with its Javelin.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":120,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"2d6"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"thr":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.DWLMnODrnHn8IbAG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lUm5wbaBhfO54dlB","name":"Invisibility","type":"feat","img":"icons/creatures/webs/webthin-blue.webp","system":{"description":{"value":"\nThe duergar magically turns invisible until it attacks, casts a spell, or uses its Enlarge, or until its concentration is broken, up to 1 hour (as if concentrating on a spell).\n\nThe duergar magically turns invisible. Any equipment the duergar wears or carries is invisible with it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.dA5X2eQuOtHywpQF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787232999,"modifiedTime":1672596104279,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"iSCL4Q82ivnYelzc","name":"Hell Hound","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":45,"min":0,"max":45,"temp":0,"tempmax":0,"formula":"7d8 + 14"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":3,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"understands Infernal but can't speak it"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Hell Hound","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"fhBBeyLSor6NVA0l","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The hound has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BVEOVtTEuJhNvTfo","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The hound has advantage on an attack roll against a creature if at least one of the hound's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AnHeKid7zbyPKJg9","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 7 (2d6) fire damage.The Hell Hound attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"],["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gijcyepmnWeRu4HV","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"The hound exhales fire in a 15-foot cone. Each creature in that area must make a DC 12 Dexterity saving throw, taking 21 (6d6) fire damage on a failed save, or half as much damage on a successful one.The hound exhales fire in a 15-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":12,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233001,"modifiedTime":1672596104323,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ijsfYEDqSuwQXwNN","name":"Dragon Turtle","type":"npc","img":"","system":{"abilities":{"str":{"value":25,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":20,"calc":"natural","formula":""},"hp":{"value":341,"min":0,"max":341,"temp":0,"tempmax":0,"formula":"22d20 + 110"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":17,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"grg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["fire"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["aquan","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Dragon Turtle","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Pu7Q4aCRVqVqVkeM","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon turtle can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2m2mkUSBJi2QOZje","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon turtle makes three attacks: one with its bite and two with its claws. It can make one tail attack in place of its two claw attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7QJr0VCtVk2wtZ78","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+13 to hit,, 15 ft., one target. Hit: 26 (3d12 + 7) piercing damage.The Dragon Turtle attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d12 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"P4joxK4BwyYsPfJv","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+13 to hit,, 10 ft., one target. Hit: 16 (2d8 + 7) slashing damage.The Dragon Turtle attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zNDI1LvLKZ9Hi2Ew","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+13 to hit,, 15 ft., one target. Hit: 26 (3d12 + 7) bludgeoning damage. If the target is a creature, it must succeed on a DC 20 Strength saving throw or be pushed up to 10 feet away from the dragon turtle and knocked prone.The Dragon Turtle attacks with its Tail. If the target is a creature, it must make a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d12 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":20,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UjT93YD55B87gMqZ","name":"Steam Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"The dragon turtle exhales scalding steam in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 52 (15d6) fire damage on a failed save, or half as much damage on a successful one.Being underwater doesn't grant resistance against this damage.The dragon turtle exhales scalding steam in a 60-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["15d6","fire"]],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4UuuUKjATTixrZGP"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233003,"modifiedTime":1672596104372,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"irz834sqAxRihtSG","name":"Adult Copper Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":184,"min":0,"max":184,"temp":0,"tempmax":0,"formula":"16d12 + 80"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":40,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Hill","cr":14,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":["acid"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Adult Copper Dragon","displayName":0,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"2WoNMpj7w91Dt4fY","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qfV8YlDhXHfI9Uin","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jLzmwSFLsR0jhWHF","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.The Adult Copper Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rIzRUQvEexZL1wZx","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.The Adult Copper Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"S1RmDd4fOJffOxAy","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+11 to hit,, 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.The Adult Copper Dragon attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3ovBwWW2b9S8LYId","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute.A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":16,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"l9M8UzmizF3KRbEr","name":"Breath Weapons","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Acid Breath.** The dragon exhales acid in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.\n**Slowing Breath.** The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AMOb6E3TENPVZzFu","name":"Acid Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\n**Acid Breath.** The dragon exhales acid in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales acid in an 60-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d8","acid"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zjcGly9P3Gn9MXt7"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PMfemsI55IkO3buY","name":"Slowing Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\n**Slowing Breath.** The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n\nThe dragon exhales gas in a 60-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JRy507rS9wxT3GBh"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EuIDfrjxsngqBcnD","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WpLmLtkW78JzpUOu","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"56yxRgRdOJvr3Hi3","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nThe dragon makes a tail attack.\n\nThe dragon slams its long tail against its foe!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4Cf4U7JMFMCyjw7N","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"\nThe dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 19 Dexterity saving throw or take 13 (2d6+6) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.\n\nThe dragon beats its wings!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":19,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"othdHNDe2JbOsBXv","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0javcL0nFMoeWm3I","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233005,"modifiedTime":1672596104472,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"jLPhaBnMtAbB5dp1","name":"Elephant","type":"npc","img":"","system":{"abilities":{"str":{"value":22,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":76,"min":0,"max":76,"temp":0,"tempmax":0,"formula":"8d12 + 24"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":4,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Elephant","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"TtrZUBPjTrxKxoFn","name":"Trampling Charge","type":"feat","img":"icons/creatures/abilities/cougar-pounce-stalk-black.webp","system":{"description":{"value":"\nIf the elephant moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a DC 12 Strength saving throw or be knocked prone. If the target is prone, the elephant can make one stomp attack against it as a bonus action.\n\nIf the elephant moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":12,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yD51x4dihnbHwfsj"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"r6mBkCtL5j6Y6sBr","name":"Gore","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 19 (3d8 + 6) piercing damage.\nThe Elephant attacks with its Gore.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZHBbc5K4n6sU17rC","name":"Stomp","type":"weapon","img":"icons/creatures/abilities/cougar-pounce-stalk-black.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 5 ft., one prone creature. Hit: 22 (3d10 + 6) bludgeoning damage.\nThe Elephant attacks with its Stomp.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":"one prone creature"},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233007,"modifiedTime":1672596104525,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"jOANE6M0My6UJF4e","name":"Blink Dog","type":"npc","img":"","system":{"abilities":{"str":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"4d8 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"fey","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"Blink Dog;understands Sylvan but can't speak it"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Blink Dog","displayName":0,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"BNRcaqutWC30200X","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The dog has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"The dog sharpens its senses!","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DcZYdK2iycSJzamK","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) piercing damage.\nThe Blink Dog attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1IE8rHcJIihDWCda","name":"Teleport","type":"feat","img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","system":{"description":{"value":"The dog magically teleports, along with any equipment it is wearing or carrying, up to 40 ft. to an unoccupied space it can see. Before or after teleporting, the dog can make one bite attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":40,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":4,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.PPzVD90vab60FqCt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233009,"modifiedTime":1672596104564,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"jcZblJ6lqtW0ePxe","name":"Otyugh","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":114,"min":0,"max":114,"temp":0,"tempmax":0,"formula":"12d10 + 48"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"aberration","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"Otyugh"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Otyugh","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"z8zfieQSSbMtBNQz","name":"Limited Telepathy","type":"feat","img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","system":{"description":{"value":"The otyugh can magically transmit simple messages and images to any creature within 120 ft. of it that can understand a language. This form of telepathy doesn't allow the receiving creature to telepathically respond.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.xna3UTd4EFLCZMt9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CCawltKiVU4Mup9i","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 12 (2d8 + 3) piercing damage.\nIf the target is a creature, it must succeed on a DC 15 Constitution saving throw against disease or become poisoned until the disease is cured. Every 24 hours that elapse, the target must repeat the saving throw, reducing its hit point maximum by 5 (1d10) on a failure. The disease is cured on a success. The target dies if the disease reduces its hit point maximum to 0. This reduction to the target's hit point maximum lasts until the disease is cured.\n\nThe Otyugh attacks with its Bite. If the target is a creature, it must make a Constitution saving throw. Every 24 hours that elapse, the target must repeat the saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BPYsBEkmZMcGYZDh","name":"Tentacle","type":"weapon","img":"icons/creatures/tentacles/tentacles-thing-green.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 10 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage plus 4 (1d8) piercing damage.If the target is Medium or smaller, it is grappled (escape DC 13) and restrained until the grapple ends. The otyugh has two tentacles, each of which can grapple one target.The Otyugh attacks with its Tentacle. If the target is Medium or smaller, it is grappled, and restrained until the grapple ends. The otyugh has two tentacles, each of which can grapple one target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","bludgeoning"],["1d8","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9d1ZhvT1vIJsNnN1","name":"Tentacle Slam","type":"feat","img":"icons/magic/death/undead-skeleton-deformed-red.webp","system":{"description":{"value":"The otyugh slams creatures grappled by it into each other or a solid surface. Each creature must succeed on a DC 14 Constitution saving throw or take 10 (2d6 + 3) bludgeoning damage and be stunned until the end of the otyugh's next turn. On a successful save, the target takes half the bludgeoning damage and isn't stunned.The otyugh slams creatures grappled by it into each other or a solid surface. Each creature must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.QiM1nbPzbLzKnfmP"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"O9otNESvCCUdwYhc","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The otyugh makes three attacks: one with its bite and two with its tentacles.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233010,"modifiedTime":1672596104610,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kSAi2KRonL4G4JpO","name":"Giant Frog","type":"npc","img":"","system":{"abilities":{"str":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":18,"min":0,"max":18,"temp":0,"tempmax":0,"formula":"4d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":30,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Frog","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ERYnD50Ibrrag5s6","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The frog can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SE3xtItC4V2Eckjk","name":"Standing Leap","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The frog's long jump is up to 20 ft. and its high jump is up to 10 ft., with or without a running start.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.f4yvSah35ixQOswD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2y826IUSIAgmYf2c","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) piercing damage.\nThe target is grappled (escape DC 11). Until this grapple ends, the target is restrained, and the frog can't bite another target.\n\nThe Giant Frog attacks with its Bite. If successful, the target is grappled. Until this grapple ends, the target is restrained, and the frog can't bite another target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"37M4eUyS3kovXqdr","name":"Swallow","type":"feat","img":"icons/creatures/abilities/mouth-teeth-tongue-purple.webp","system":{"description":{"value":"\nThe frog makes one bite attack against a Small or smaller target it is grappling. If the attack hits, the target is swallowed, and the grapple ends.\nThe swallowed target is blinded and restrained, it has total cover against attacks and other effects outside the frog, and it takes 5 (2d4) acid damage at the start of each of the frog's turns. The frog can have only one target swallowed at a time. If the frog dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 5 ft. of movement, exiting prone.\n\nThe Giant Frog attacks with its Swallow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.aH5ncM30tP8tPQ24"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233012,"modifiedTime":1672596104657,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kVg37NlPcACAzjCT","name":"Kraken","type":"npc","img":"","system":{"abilities":{"str":{"value":30,"proficient":1,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":25,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":22,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":472,"min":0,"max":472,"temp":null,"tempmax":0,"formula":"27d20 + 189"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":60,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"monstrosity","subtype":"Titan","swarm":"","custom":""},"environment":"Underwater","cr":23,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"grg","di":{"value":["bludgeoning","lightning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["frightened","paralyzed"],"custom":""},"languages":{"value":[],"custom":"understands Abyssal, Celestial, Infernal, and Primordial but can't speak;telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":0,"max":0},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Kraken","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"lPywASGOeP26s2D9","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The kraken can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uxrpcslS4BkraMVB","name":"Freedom of Movement","type":"feat","img":"icons/skills/movement/feet-winged-boots-brown.webp","system":{"description":{"value":"The kraken ignores difficult terrain, and magical effects can't reduce its speed or cause it to be restrained. It can spend 5 feet of movement to escape from nonmagical restraints or being grappled.The kraken ignores difficult terrain, and magical effects can't reduce its speed or cause it to be restrained. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fUMY4b9snsiKl30e"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1oNtSpRA4XS3L6to","name":"Siege Monster","type":"feat","img":"icons/creatures/magical/construct-iron-stomping-yellow.webp","system":{"description":{"value":"The kraken deals double damage to objects and structures.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.cSA0EbjlxCbst4gJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"j4xzhdYjtz2migUE","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The kraken makes three tentacle attacks, each of which it can replace with one use of Fling.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"r51OovswZTVF8Yna","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+17 to hit,, 5 ft., one target. Hit: 23 (3d8 + 10) piercing damage.\nIf the target is a Large or smaller creature grappled by the kraken, that creature is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the kraken, and it takes 42 (12d6) acid damage at the start of each of the kraken's turns. If the kraken takes 50 damage or more on a single turn from a creature inside it, the kraken must succeed on a DC 25 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the kraken. If the kraken dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 15 feet of movement, exiting prone.\n\nThe Kraken attacks with its Bite. If the target is a Large or smaller creature grappled by the kraken, that creature is swallowed, and the grapple ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8+@mod","piercing"]],"versatile":""},"formula":"12d6","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lfg28JvVAru30yJ4","name":"Tentacle","type":"weapon","img":"icons/creatures/tentacles/tentacles-thing-green.webp","system":{"description":{"value":"\nMelee Weapon Attack:+17 to hit,, 30 ft., one target. Hit: 20 (3d6 + 10) bludgeoning damage.\nThe target is grappled (escape DC 18). Until this grapple ends, the target is restrained. The kraken has ten tentacles, each of which can grapple one target.\n\nThe Kraken attacks with its Tentacle. The target is grappled. Until this grapple ends, the target is restrained. The kraken has ten tentacles, each of which can grapple one target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bwwyMBn4QwiNd4SM","name":"Fling","type":"feat","img":"icons/creatures/webs/webthin-blue.webp","system":{"description":{"value":"One Large or smaller object held or creature grappled by the kraken is thrown up to 60 feet in a random direction and knocked prone. If a thrown target strikes a solid surface, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 18 Dexterity saving throw or take the same damage and be knocked prone.One Large or smaller object held or creature grappled by the kraken is thrown up to 60 feet in a random direction and knocked prone. If the target is thrown at another creature, that creature must make a Dexterity saving throw or take the same damage and be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hxXzd3KCfnqnT89w"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wVCkpBj5omvdfaMm","name":"Lightning Storm","type":"feat","img":"icons/magic/lightning/bolts-forked-large-blue-yellow.webp","system":{"description":{"value":"The kraken magically creates three bolts of lightning, each of which can strike a target the kraken can see within 120 feet of it. A target must make a DC 23 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.The kraken magically creates three bolts of lightning, each of which can strike a target the kraken can see within 120 feet of it. A target must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":3,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":23,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.gM767AhU36B6LUGU"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ojhTng7wa5ehcJz3","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe kraken can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The kraken regains spent legendary actions at the start of its turn.\n\nThe kraken can take 3 legendary actions.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"y6iT81UwIkojo6c5","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"K9y1op1wZOMNsFg0","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"e2EtrJsAPZ19WuE7","name":"Tentacle Attack or Fling","type":"feat","img":"icons/creatures/tentacles/tentacles-thing-green.webp","system":{"description":{"value":"The kraken makes one tentacle attack or uses its Fling.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.czKwBo1qw5O2gCNy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OKGAJSxcW9xQiwyj","name":"Lightning Storm","type":"feat","img":"icons/magic/lightning/bolts-forked-large-blue-yellow.webp","system":{"description":{"value":"The kraken uses Lightning Storm.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.gM767AhU36B6LUGU"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"K0T5NDyi2n8Yt8Ts","name":"Ink Cloud","type":"feat","img":"icons/magic/air/wind-vortex-swirl-purple.webp","system":{"description":{"value":"\nWhile Underwater, the Kraken expels an ink cloud in a 60-foot radius. The cloud spreads around corners, and that area is heavily obscured to creatures other than the Kraken. Each creature other than the Kraken that ends its turn there must succeed on a DC 23 Constitution saving throw, taking 16 (3d10) poison damage on a failed save, or half as much damage on a successful one. A strong current disperses the cloud, which otherwise disappears at the end of the kraken's next turn.\n\nThe Kraken expels an ink cloud. The cloud spreads around corners, and that area is heavily obscured to creatures other than the Kraken. Each creature other than the Kraken that ends its turn there must succeed on a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":3,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":3},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":23,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bojUXmNOZ2rJVujD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233015,"modifiedTime":1672596104751,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kr6r8bhSehACPfZ8","name":"Chimera","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":114,"min":0,"max":114,"temp":null,"tempmax":0,"formula":"12d10 + 48"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":6,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"Understands Draconic but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Chimera","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"dDrIfOa408VFGv4a","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) piercing damage.\nThe Chimera attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"J98n5dL3pMkWGu69","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\nThe Chimera attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":false,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"c4fLDKOomwlaFcac","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\nThe dragon head exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 31 (7d8) fire damage on a failed save, or half as much damage on a successful one.\nThe dragon head exhales fire in a 15-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"none"},"uses":{"value":1,"max":"1","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["7d8","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":15,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sAkv9mnK6l5nXmcz","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The chimera makes three attacks: one with its bite, one with its horns, and one with its claws. When its fire breath is available, it can use the breath in place of its bite or horns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"m5xGw7RgVRGTklJT","name":"Horns","type":"weapon","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nMelee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 10 (1d12 + 4) bludgeoning damage.\nThe Chimera attacks with its Horns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233017,"modifiedTime":1672596104800,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kz1t6xeXVwODpYb2","name":"Berserker","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":67,"min":0,"max":67,"temp":0,"tempmax":0,"formula":"9d8 + 27"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Chaotic","race":"","type":{"value":"humanoid","subtype":"Any Race","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"any one language (usually Common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Berserker","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"vdaEgOdpIO2o7GNX","name":"Hide Armor","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":12,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.n1V07puo0RQxPGuF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Qzj9HKnvRGhYoggC","name":"Reckless","type":"feat","img":"icons/skills/social/intimidation-impressing.webp","system":{"description":{"value":"At the start of its turn, the berserker can gain advantage on all melee weapon attack rolls during that turn, but attack rolls against it have advantage until the start of its next turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4v3xxn1jEEMRzLBG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RrHhFZOd6QT75V3W","name":"Greataxe","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 9 (1d12 + 3) slashing damage.\nThe Berserker attacks with their Greataxe.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":30,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.1Lxk6kmoRhG8qQ0u"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233018,"modifiedTime":1672596104842,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kz2fW9xb5CcvXLX4","name":"Dretch","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":18,"min":0,"max":18,"temp":0,"tempmax":0,"formula":"4d6 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"fiend","subtype":"Demon","swarm":"","custom":""},"environment":"","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"sm","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["cold","fire","lightning"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["abyssal"],"custom":"Telepathy 60 ft. (works only with creatures that understand Abyssal)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Dretch","displayName":0,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Ex0UN9pj0w7p4D9F","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dretch makes two attacks: one with its bite and one with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2So9DIMKKgeGHVru","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 3 (1d6) piercing damage.\nThe Dretch attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5fa9Rdzy2YYpkAgS","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 5 (2d4) slashing damage.\nThe Dretch attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JVbj7KABKYi3Z8U3","name":"Fetid Cloud","type":"feat","img":"icons/magic/acid/projectile-glowing-bubbles.webp","system":{"description":{"value":"\nA 10-foot radius of disgusting green gas extends out from the dretch. The gas spreads around corners, and its area is lightly obscured. It lasts for 1 minute or until a strong wind disperses it.\nAny creature that starts its turn in that area must succeed on a DC 11 Constitution saving throw or be poisoned until the start of its next turn. While poisoned in this way, the target can take either an action or a bonus action on its turn, not both, and can't take reactions. 1 use per day.\n\nA 10-foot radius of disgusting green gas extends out from the dretch. The gas spreads around corners, and its area is lightly obscured. Any creature that starts its turn in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.XwcFK21aM2BThgSk"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233020,"modifiedTime":1672596104884,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lOYt73eaJojBDxAV","name":"Solar","type":"npc","img":"","system":{"abilities":{"str":{"value":26,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":22,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":26,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":25,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":25,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":30,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":21,"calc":"natural","formula":""},"hp":{"value":243,"min":0,"max":243,"temp":null,"tempmax":0,"formula":"18d10 + 144"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":150,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"celestial","subtype":"","swarm":"","custom":""},"environment":"","cr":21,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["necrotic","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","radiant","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","exhaustion","frightened","poisoned"],"custom":""},"languages":{"value":[],"custom":"All; Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Solar","displayName":0,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"zkNT86Xasjyzk8Df","name":"Angelic Weapons","type":"feat","img":"icons/magic/fire/dagger-rune-enchant-flame-strong-blue-yellow.webp","system":{"description":{"value":"The solar's weapon attacks are magical. When the solar hits with any weapon, the weapon deals an extra 6d8 radiant damage (included in the attack).The solar's weapon attacks are magical. When the solar hits with any weapon, the weapon deals extra radiant damage (included in the attack).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.cz1LUaiXG8GshgU9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"T8xqterWWFewCoot","name":"Divine Awareness","type":"feat","img":"icons/magic/perception/third-eye-blue-red.webp","system":{"description":{"value":"The solar knows if it hears a lie.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lOJK48AtlIcfYPPB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"N5YFwsrzGuUFrblp","name":"Flying Sword","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The solar releases its greatsword to hover magically in an unoccupied space within 5 ft. of it. If the solar can see the sword, the solar can mentally command it as a bonus action to fly up to 50 ft. and either make one attack against a target or return to the solar's hands.If the hovering sword is targeted by any effect, the solar is considered to be holding it. The hovering sword falls if the solar dies.The solar releases its greatsword to hover magically in an unoccupied space within 5 ft. of it. If the hovering sword is targeted by any effect, the solar is considered to be holding it. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Ouvju0Y3SoYb5EMR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BqJjoHBgnTDTcLbB","name":"Healing Touch","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"The solar touches another creature. The target magically regains 40 (8d8 + 4) hit points and is freed from any curse, disease, poison, blindness, or deafness.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":4,"max":"4","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d8 + 4","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.r3Ugp8f5Ckw2EUHL"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hWnnOw9zwmvWvFT7","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The solar's spell casting ability is Charisma (spell save DC 25). It can innately cast the following spells, requiring no material components:\nAt will: detect evil and good, invisibility (self only)\n3/day each: blade barrier, dispel evil and good, resurrection\n1/day each: commune, control weather","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WYt9oaIl8PZrMDNl","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The solar has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"H0o9gjKN8xSdBHdB","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The solar makes two greatsword attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QssrfCioglFdfd8I","name":"Greatsword","type":"weapon","img":"icons/weapons/swords/greatsword-guard-gem-blue.webp","system":{"description":{"value":"\nMelee Weapon Attack:+15 to hit,, 5 ft., one target. Hit: 22 (4d6 + 8) slashing damage plus 27 (6d8) radiant damage.\nThe Solar attacks with its Greatsword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":6,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6 + @mod","slashing"],["6d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.xMkP8BmFzElcsMaR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BSLTe0yfltAnguOT","name":"Slaying Longbow","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"\nRanged Weapon Attack: +13 to hit, range 150/600 ft., one target. Hit: 15 (2d8 + 6) piercing damage plus 27 (6d8) radiant damage.\nIf the target is a creature that has 190 hit points or fewer, it must succeed on a DC 15 Constitution saving throw or die.\n\nThe Solar attacks with its Slaying Longbow. If the target is a creature that has 190 hit points or fewer, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":350,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","piercing"],["6d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sZjcCRCNcf6m4VoK","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe solar can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The solar regains spent legendary actions at the start of its turn.\n\nThe solar can take 3 legendary actions.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"H4Qnl5aNwIuOiKvm","name":"Teleport","type":"feat","img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","system":{"description":{"value":"The solar magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.PPzVD90vab60FqCt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hvLibxV3shPORnBB","name":"Searing Burst","type":"feat","img":"icons/magic/light/explosion-star-glow-yellow.webp","system":{"description":{"value":"The solar emits magical, divine energy. Each creature of its choice in a 10-foot radius must make a DC 23 Dexterity saving throw, taking 14 (4d6) fire damage plus 14 (4d6) radiant damage on a failed save, or half as much damage on a successful one.\nThe solar emits magical, divine energy. Each creature of its choice in a 10-foot radius must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","fire"],["4d6","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":23,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.5OYruoI92fxTOLts"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iXcyU8grGuxZbkYJ","name":"Blinding Gaze","type":"feat","img":"icons/magic/perception/third-eye-blue-red.webp","system":{"description":{"value":"The solar targets one creature it can see within 30 feet of it. If the target can see it, the target must succeed on a DC 15 Constitution saving throw or be blinded until magic such as the lesser restoration spell removes the blindness.\nThe solar targets one creature it can see within 30 feet of it. If the target can see it, the target must make a Constitution saving throw.\n\nThe solar targets one creature it can see within 30 feet of it. If the target can see it, the target must succeed on a Constitution saving throw or be blinded.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":3,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":3},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":15,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.8C6hkMXWLeymmJ5C"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eNypfn99CwFCi47y","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wxR8cWGMfaaMKc1W","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Mzh95utKDPIrjiH8","name":"Detect Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Mzh95utKDPIrjiH8"}},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234128,"modifiedTime":1661791116764,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"1N8dDMMgZ1h1YJ3B","name":"Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An eyelash encased in gum arabic","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.1N8dDMMgZ1h1YJ3B"}},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234056,"modifiedTime":1661791116765,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"dLJhxDfeyOsc3zsY","name":"Blade Barrier","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a vertical wall of whirling, razor-sharp blades made of magical energy. The wall appears within range and lasts for the duration. You can make a straight wall up to 100 feet long, 20 feet high, and 5 feet thick, or a ringed wall up to 60 feet in diameter, 20 feet high, and 5 feet thick. The wall provides three-quarters cover to creatures behind it, and its space is difficult terrain.When a creature enters the wall's area for the first time on a turn or starts its turn there, the creature must make a Dexterity saving throw. On a failed save, the creature takes 6d10 slashing damage. On a successful save, the creature takes half as much damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"wall"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d10","slashing"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":25,"scaling":"spell"},"level":6,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.dLJhxDfeyOsc3zsY"}},"img":"icons/magic/light/projectile-beams-salvo-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234179,"modifiedTime":1661791116765,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"TkJ8Wtg1L7TZtspm","name":"Dispel Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Shimmering energy surrounds and protects you from fey, Undead, and creatures originating from Beyond the Material Plane. For the Duration, Celestials, Elementals, fey, Fiends, and undead have disadvantage on Attack rolls against you.You can end the spell early by using either of the following special functions.Break Enchantment. As your action, you touch a creature you can reach that is Charmed, Frightened, or possessed by a Celestial, an elemental, a fey, a fiend, or an Undead. The creature you touch is no longer charmed, frightened, or possessed by such creatures.Dismissal. As your action, make a melee spell Attack against a Celestial, an elemental, a fey, a fiend, or an Undead you can reach. On a hit, you attempt to drive the creature back to its home plane. The creature must succeed on a Charisma saving throw or be sent back to its home plane (if it isn't there already). If they aren't on their home plane, undead are sent to the Shadowfell, and fey are sent to the Feywild.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":25,"scaling":"spell"},"level":5,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Holy water or powdered silver and iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.TkJ8Wtg1L7TZtspm"}},"img":"icons/magic/air/air-burst-spiral-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234146,"modifiedTime":1661791116765,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"jhhT9PsHy5A7EojO","name":"Resurrection","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a dead creature that has been dead for no more than a century, that didn't die of old age, and that isn't undead. If its soul is free and willing, the target returns to life with all its hit points.This spell neutralizes any poisons and cures normal diseases afflicting the creature when it died. It doesn't, however, remove magical diseases, curses, and the like; if such effects aren't removed prior to casting the spell, they afflict the target on its return to life.This spell closes all mortal wounds and restores any missing body parts.Coming back from the dead is an ordeal. The target takes a −4 penalty to all attack rolls, saving throws, and ability checks. Every time the target finishes a long rest, the penalty is reduced by 1 until it disappears.Casting this spell to restore life to a creature that has been dead for one year or longer taxes you greatly. Until you finish a long rest, you can't cast spells again, and you have disadvantage on all attack rolls, ability checks, and saving throws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A diamond worth at least 1,000 gp, which the spell consumes","consumed":true,"cost":1000,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.jhhT9PsHy5A7EojO"}},"img":"icons/magic/life/heart-cross-strong-flame-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234213,"modifiedTime":1661791116766,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"d54VDyFulD9xxY7J","name":"Commune","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You contact your deity or a divine proxy and ask up to three questions that can be answered with a yes or no. You must ask your questions before the spell ends. You receive a correct answer for each question.Divine beings aren't necessarily omniscient, so you might receive \"unclear\" as an answer if a question pertains to information that lies beyond the deity's knowledge. In a case where a one-word answer could be misleading or contrary to the deity's interests, the DM might offer a short phrase as an answer instead.If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get no answer. The DM makes this roll in secret.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"Incense and a vial of holy or unholy water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.d54VDyFulD9xxY7J"}},"img":"icons/magic/control/debuff-energy-hold-levitate-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234177,"modifiedTime":1661791116766,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ZPd73HtKF3At11jh","name":"Control Weather","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You take control of the weather within 5 miles of you for the duration. You must be outdoors to cast this spell. Moving to a place where you don't have a clear path to the sky ends the spell early.When you cast the spell, you change the current weather conditions, which are determined by the DM based on the climate and season. You can change precipitation, temperature, and wind. It takes 1d4 x 10 minutes for the new conditions to take effect. Once they do so, you can change the conditions again. When the spell ends, the weather gradually returns to normal.When you change the weather conditions, find a current condition on the following tables and change its stage by one, up or down. When changing the wind, you can change its direction.Conditions\n\nClear\nLight clouds\nOvercast or ground fog\nRain, hail, or snow\nTorrential rain, driving hail, or blizzard\n\nTemperature\n\nUnbearable heat\nHot\nWarm\nCool\nCold\nArctic cold\n\nWind\n\nCalm\nModerate wind\nStrong wind\nGale\nStorm\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":5,"width":null,"units":"mi","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Burning incense and bits of earth and wood mixed in water.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ZPd73HtKF3At11jh"}},"img":"icons/magic/air/wind-tornado-cyclone-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234163,"modifiedTime":1661791116766,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233022,"modifiedTime":1672596104993,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lZR4lhNmYSf89s4Q","name":"Boar","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Boar","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ypnf9maxKh66ucMe","name":"Tusk","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) slashing damage.\nThe Boar attacks with its Tusk.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TSmET06nE61H6HC2","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nIf the boar moves at least 20 ft. straight toward a target and then hits it with a tusk attack on the same turn, the target takes an extra 3 (1d6) slashing damage.\nIf the target is a creature, it must succeed on a DC 11 Strength saving throw or be knocked prone.\n\nIf the boar moves at least 20 ft. straight toward a target and then hits it with a tusk attack on the same turn, the target takes extra slashing damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6","slashing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"U66PTM15QvmkenvW","name":"Relentless","type":"feat","img":"icons/magic/water/heart-ice-freeze.webp","system":{"description":{"value":"\nIf the boar takes 7 damage or less that would reduce it to 0 hit points, it is reduced to 1 hit point instead. Recharges on a short or long rest.\n\nIf the boar takes damage that would reduce it to 0 hit points, it is reduced to 1 hit point instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.8FX2KlWyBAKEYGzs"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233025,"modifiedTime":1672596105404,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"llSG0Hi4eGlRlQ4o","name":"Phase Spider","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":32,"min":0,"max":32,"temp":0,"tempmax":0,"formula":"5d10 + 5"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":3,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Phase Spider","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"LKJEecvimhbb9hhg","name":"Ethereal Jaunt","type":"feat","img":"icons/magic/lightning/orb-ball-purple.webp","system":{"description":{"value":"As a bonus action, the spider can magically shift from the Material Plane to the Ethereal Plane, or vice versa.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.3iLXiqhhOgXOMMg7"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"X78NpT0YZG0rZcaP","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The spider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HZklbue3nXLHIevM","name":"Web Walker","type":"feat","img":"icons/magic/nature/tree-bare-glow-yellow.webp","system":{"description":{"value":"The spider ignores movement restrictions caused by webbing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zITrVwmnPpLoBZI1"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2HPk5TdUTeEhD2eG","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 7 (1d10 + 2) piercing damage.The target must make a DC 11 Constitution saving throw, taking 18 (4d8) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but poisoned for 1 hour, even after regaining hit points, and is paralyzed while poisoned in this way.The Phase Spider attacks with its Bite. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"4d8","save":{"ability":"con","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233138,"modifiedTime":1672596105457,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lyNBFmJdbh4NLRzz","name":"Sahuagin","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"4d8 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"humanoid","subtype":"Sahuagin","swarm":"","custom":""},"environment":"Underwater","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"Sahuagin"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Sahuagin","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"UqpaWsGVgiCMSZEw","name":"Spear","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"A gleaming steel point mouted atop a stout wooden haft, the spear may be wielded in one hand or two and can puncture through the heaviest armor with deadly force.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"thr":true,"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.OG4nBBydvmfWYXIk"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NSdAR332o65ZE3hC","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 3 (1d4 + 1) piercing damage.The Sahuagin attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uyWDYVSAJuCfayLE","name":"Blood Frenzy","type":"feat","img":"icons/skills/wounds/blood-spurt-spray-red.webp","system":{"description":{"value":"The sahuagin has advantage on melee attack rolls against any creature that doesn't have all its hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.B2kZOyrB7poB4liR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"VJlDAg21VwBOjbuR","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 3 (1d4 + 1) slashing damage.The Sahuagin attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lH49mvA2g5C44yM4","name":"Limited Amphibiousness","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The sahuagin can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating.The sahuagin can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.boO7LJ0RRinoWHyT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1aEgtsYuxz12hFn3","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The sahuagin makes two melee attacks: one with its bite and one with its claws or spear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SQqFFwf2ADQmLaVO","name":"Shark Telepathy","type":"feat","img":"icons/magic/unholy/orb-swirling-teal.webp","system":{"description":{"value":"The sahuagin can magically command any shark within 120 feet of it, using a limited telepathy.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.UYorz1ZrfuoTRknp"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233140,"modifiedTime":1672596105500,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"m4H3hjamBNMH09S9","name":"Deva","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":136,"min":0,"max":136,"temp":null,"tempmax":0,"formula":"16d8 + 64"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":90,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"celestial","subtype":"","swarm":"","custom":""},"environment":"","cr":10,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","radiant","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","exhaustion","frightened"],"custom":""},"languages":{"value":[],"custom":"All; Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Deva","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"KRskTTMCEepXUPwU","name":"Angelic Weapons","type":"feat","img":"icons/magic/fire/dagger-rune-enchant-flame-strong-blue-yellow.webp","system":{"description":{"value":"The deva's weapon attacks are magical. When the deva hits with any weapon, the weapon deals an extra 4d8 radiant damage (included in the attack).The deva's weapon attacks are magical. When the deva hits with any weapon, the weapon deals extra radiant damage (included in the attack).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.cz1LUaiXG8GshgU9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3u5Rv7dQ2fIl1rbB","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The deva magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the deva's choice).\nIn a new form, the deva retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and special senses are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Lx0nT1oq0bLjX1lx","name":"Healing Touch","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"The deva touches another creature. The target magically regains 20 (4d8 + 2) hit points and is freed from any curse, disease, poison, blindness, or deafness.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8 + 2","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.r3Ugp8f5Ckw2EUHL"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dhEmGtIDAZEBrsZ2","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The deva's spellcasting ability is Charisma (spell save DC 17). The deva can innately cast the following spells, requiring only verbal components:\nAt will: detect evil and good\n1/day each: commune, raise dead","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yo4YL40mReo1Gwx5","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The deva has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"P3T5BWT2TFHCxUkr","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The deva makes two melee attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qADu4OS68yINJCnZ","name":"Mace","type":"weapon","img":"icons/weapons/maces/mace-round-spiked-black.webp","system":{"description":{"value":"\nMelee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage plus 18 (4d8) radiant damage.\nThe Deva attacks with its Mace.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":4,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"],["4d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"lod":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.Ajyq6nGwF7FtLhDQ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Mzh95utKDPIrjiH8","name":"Detect Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Mzh95utKDPIrjiH8"}},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234128,"modifiedTime":1661791116786,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"d54VDyFulD9xxY7J","name":"Commune","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You contact your deity or a divine proxy and ask up to three questions that can be answered with a yes or no. You must ask your questions before the spell ends. You receive a correct answer for each question.Divine beings aren't necessarily omniscient, so you might receive \"unclear\" as an answer if a question pertains to information that lies beyond the deity's knowledge. In a case where a one-word answer could be misleading or contrary to the deity's interests, the DM might offer a short phrase as an answer instead.If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get no answer. The DM makes this roll in secret.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"Incense and a vial of holy or unholy water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.d54VDyFulD9xxY7J"}},"img":"icons/magic/control/debuff-energy-hold-levitate-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234177,"modifiedTime":1661791116787,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"AGFMPAmuzwWO6Dfz","name":"Raise Dead","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You return a dead creature you touch to life, provided that it has been dead no longer than 10 days. If the creature's soul is both willing and at liberty to rejoin the body, the creature returns to life with 1 hit point.This spell also neutralizes any poisons and cures nonmagical diseases that affected the creature at the time it died. This spell doesn't, however, remove magical diseases, curses, or similar effects; if these aren't first removed prior to casting the spell, they take effect when the creature returns to life. The spell can't return an undead creature to life.This spell closes all mortal wounds, but it doesn't restore missing body parts. If the creature is lacking body parts or organs integral for its survival—its head, for instance—the spell automatically fails.Coming back from the dead is an ordeal. The target takes a −4 penalty to all attack rolls, saving throws, and ability checks. Every time the target finishes a long rest, the penalty is reduced by 1 until it disappears.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A diamond worth at least 500gp, which the spell consumes.","consumed":true,"cost":500,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.AGFMPAmuzwWO6Dfz"}},"img":"icons/magic/life/heart-cross-strong-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234087,"modifiedTime":1661791116787,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233142,"modifiedTime":1672596105591,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"mNijwXPMhwR7yYfc","name":"Young Blue Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":152,"min":0,"max":152,"temp":0,"tempmax":0,"formula":"16d10 + 64"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":40,"climb":0,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":9,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["lightning"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Young Blue Dragon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"42AGHJQzJZfUYxF9","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage plus 5 (1d10) lightning damage.The Young Blue Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["1d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YSVencwrBzRdfm62","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+9 to hit,, 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.The Young Blue Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7XDStiwr5cRAODjk","name":"Lightning Breath","type":"feat","img":"icons/magic/lightning/bolt-strike-blue.webp","system":{"description":{"value":"The dragon exhales lightning in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":16,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LVnd9fq9cQj7rR0Q"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dGVHjuCt6WhGx0sX","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233143,"modifiedTime":1672596105641,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"mQnsXanewsPiV7QE","name":"Mage","type":"npc","img":"","system":{"abilities":{"str":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":40,"min":0,"max":40,"temp":0,"tempmax":0,"formula":"9d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"int"},"details":{"biography":{"value":"","public":""},"alignment":"Any Alignment","race":"","type":{"value":"humanoid","subtype":"Any Race","swarm":"","custom":""},"environment":"","cr":6,"spellLevel":9,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"any four languages"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":4,"override":null},"spell2":{"value":3,"override":null},"spell3":{"value":3,"override":null},"spell4":{"value":3,"override":null},"spell5":{"value":1,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Mage","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"tbKbwgcprUBciliF","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"\nThe mage is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save DC 14, +6 to hit with spell attacks). The mage has the following wizard spells prepared:\nCantrips (at will): fire bolt, light, mage hand, prestidigitation\n1st level (4 slots): detect magic, mage armor, magic missile, shield\n2nd level (3 slots): misty step, suggestion\n3rd level (3 slots): counterspell, fireball, fly\n4th level (3 slots): greater invisibility, ice storm\n5th level (1 slot): cone of cold\n\nThe mage is a spellcaster. Its spellcasting ability is Intelligence.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LcMdsxbtVEhUDXju","name":"Dagger","type":"weapon","img":"icons/weapons/daggers/dagger-jeweled-purple.webp","system":{"description":{"value":"Melee or Ranged Weapon Attack: +5 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 4 (1d4 + 2) piercing damage.The Mage attacks with its Dagger.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":true,"fir":false,"foc":false,"hvy":false,"lgt":true,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.0E565kQUBmndJ1a2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EOmsUcFQJTfG2oio","name":"Fire Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You hurl a mote of fire at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried.This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.EOmsUcFQJTfG2oio"}},"img":"icons/magic/fire/projectile-fireball-smoke-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234100,"modifiedTime":1661791116808,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Bnn9Nzajixvow9xi","name":"Light","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":14,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A firefly or phosphorescent moss.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Bnn9Nzajixvow9xi"}},"img":"icons/magic/light/explosion-star-small-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234093,"modifiedTime":1661791116808,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Utk1OQRwYkMkFRD3","name":"Mage Hand","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.The hand can't attack, activate magic items, or carry more than 10 pounds.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Utk1OQRwYkMkFRD3"}},"img":"icons/magic/water/water-hand.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234148,"modifiedTime":1661791116809,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"udsLtG0BugXHR2JQ","name":"Prestidigitation","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell is a minor magical trick that novice spellcasters use for practice. You create one of the following magical effects within range:\n\nYou create an instantaneous, harmless sensory effect, such as a shower of sparks, a puff of wind, faint musical notes, or an odd odor.\nYou instantaneously light or snuff out a candle, a torch, or a small campfire.\nYou instantaneously clean or soil an object no larger than 1 cubic foot.\nYou chill, warm, or flavor up to 1 cubic foot of nonliving material for 1 hour.\nYou make a color, a small mark, or a symbol appear on an object or a surface for 1 hour.\nYou create a nonmagical trinket or an illusory image that can fit in your hand and that lasts until the end of your next turn.\n\nIf you cast this spell multiple times, you can have up to three of its non-instantaneous effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.udsLtG0BugXHR2JQ"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234236,"modifiedTime":1661791116809,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116809,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"CKZTpZlxj7hjjo2H","name":"Mage Armor","type":"spell","img":"icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp","system":{"description":{"value":"You touch a willing creature who isn't wearing armor, and a protective magical force surrounds it until the spell ends. The target's base AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor or if you dismiss the spell as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A piece of cured leather","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"cfwMU7LuOJ619Lny","changes":[{"key":"system.attributes.ac.calc","value":"mage","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp","label":"Mage Armor","origin":"Compendium.dnd5e.spells.CKZTpZlxj7hjjo2H","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.CKZTpZlxj7hjjo2H"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234095,"modifiedTime":1661791116810,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"41JIhpDyM9Anm7cs","name":"Magic Missile","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create three glowing darts of magical force. Each dart hits a creature of your choice that you can see within range. A dart deals 1d4 + 1 force damage to its target. The darts all strike simultaneously, and you can direct them to hit one creature or several.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the spell creates one more dart for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + 1","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.41JIhpDyM9Anm7cs"}},"img":"icons/magic/fire/projectile-meteor-salvo-light-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234065,"modifiedTime":1661791116810,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"z1mx84ONwkXKUZd7","name":"Shield","type":"spell","img":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","system":{"description":{"value":"An invisible barrier of magical force appears and protects you. Until the start of your next turn, you have a +5 bonus to AC, including against the triggering attack, and you take no damage from magic missile.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":"Which you take when you are hit by an attack or targeted by the magic missile spell"},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"6pbotGIvqQkraPva","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"5","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"rounds":1,"seconds":null,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","label":"Shield","origin":"Item.FlLKKv7bQBlIAs11","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.z1mx84ONwkXKUZd7"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234244,"modifiedTime":1661791116810,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"wqfAVANuQonNBgnL","name":"Misty Step","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Briefly surrounded by silvery mist, you teleport up to 30 feet to an unoccupied space that you can see.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"space"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.wqfAVANuQonNBgnL"}},"img":"icons/magic/control/debuff-energy-snare-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234238,"modifiedTime":1661791116811,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"zMAWdyc8UVb37BK4","name":"Suggestion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You suggest a course of activity (limited to a sentence or two) and magically influence a creature you can see within range that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act ends the spell.The target must make a Wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do.You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a knight give her warhorse to the first beggar she meets. If the condition isn't met before the spell expires, the activity isn't performed.If you or any of your companions damage the target, the spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A snake's tongue and either a bit of honeycomb or a drop of sweet oil","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.zMAWdyc8UVb37BK4"}},"img":"icons/magic/air/air-burst-spiral-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234245,"modifiedTime":1661791116811,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Ek45cBpVXvJdv1Qy","name":"Counterspell","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to interrupt a creature in the process of casting a spell. If the creature is casting a spell of 3rd level or lower, its spell fails and has no effect. If it is casting a spell of 4th level or higher, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a success, the creature's spell fails and has no effect.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the interrupted spell has no effect if its level is less than or equal to the level of the spell slot you used.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":"which you take when you see a creature within 60 feet of you casting a spell"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d20 + @mod","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":false,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Ek45cBpVXvJdv1Qy"}},"img":"icons/skills/melee/strike-blade-hooked-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234102,"modifiedTime":1661791116811,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ztgcdrWPshKRpFd0","name":"Fireball","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A bright streak flashes from your pointing finger to a point you choose within range and then blossoms with a low roar into an explosion of flame. Each creature in a 20-foot-radius sphere centered on that point must make a Dexterity saving throw. A target takes 8d6 fire damage on a failed save, or half as much damage on a successful one.The fire spreads around corners. It ignites flammable objects in the area that aren't being worn or carried.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":14,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A tiny ball of bat guano and sulfur","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ztgcdrWPshKRpFd0"}},"img":"icons/magic/fire/projectile-fireball-smoke-large-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234246,"modifiedTime":1661791116812,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"yfbK8gZqESlaoY5t","name":"Fly","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a willing creature. The target gains a flying speed of 60 feet for the Duration. When the spell ends, the target falls if it is still aloft, unless it can stop the fall.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A wing feather from any bird","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.yfbK8gZqESlaoY5t"}},"img":"icons/magic/control/energy-stream-link-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234243,"modifiedTime":1661791116812,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"tEpDmYZNGc9f5OhJ","name":"Greater Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You or a creature you touch becomes Invisible until the spell ends. Anything the target is wearing or carrying is Invisible as long as it is on the target's person.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.tEpDmYZNGc9f5OhJ"}},"img":"icons/magic/air/fog-gas-smoke-swirling-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234234,"modifiedTime":1661791116812,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WN2LWEljYU6QqnRH","name":"Ice Storm","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A hail of rock-hard ice pounds to the ground in a 20-foot-radius, 40-foot-high Cylinder centered on a point within range. Each creature in the cylinder must make a Dexterity saving throw. A creature takes 2d8 bludgeoning damage and 4d6 cold damage on a failed save, or half as much damage on a successful one.Hailstones turn the storm's area of effect into difficult terrain until the end of your next turn.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the bludgeoning damage increases by 1d8 for each slot level above 4th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cylinder"},"range":{"value":300,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","bludgeoning"],["4d6","cold"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":14,"scaling":"spell"},"level":4,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of dust and a few drops of water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.WN2LWEljYU6QqnRH"}},"img":"icons/magic/water/projectiles-ice-faceted-shard-salvo-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234152,"modifiedTime":1661791116813,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"RpKjTlYASrfqUPVA","name":"Cone of Cold","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A blast of cold air erupts from your hands. Each creature in a 60-foot cone must make a Constitution saving throw. A creature takes 8d8 cold damage on a failed save, or half as much damage on a successful one.A creature killed by this spell becomes a frozen statue until it thaws.Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d8","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small crystal or glass cone","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.RpKjTlYASrfqUPVA"}},"img":"icons/magic/water/projectiles-ice-faceted-shard-salvo-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234138,"modifiedTime":1661791116813,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[{"_id":"cfwMU7LuOJ619Lny","changes":[{"key":"system.attributes.ac.calc","value":"mage","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":678,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":2,"startTurn":1},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp","label":"Mage Armor","origin":"Compendium.dnd5e.monsters.mQnsXanewsPiV7QE.Item.CKZTpZlxj7hjjo2H","transfer":false,"flags":{},"tint":null,"sort":0},{"_id":"6pbotGIvqQkraPva","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"5","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":678,"rounds":1,"seconds":null,"combat":null,"turns":null,"startRound":2,"startTurn":1},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","label":"Shield","origin":"Compendium.dnd5e.monsters.mQnsXanewsPiV7QE.Item.z1mx84ONwkXKUZd7","tint":null,"transfer":false,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233145,"modifiedTime":1672596105756,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"mWbrPhcKOz6oLXMV","name":"Doppelganger","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":52,"min":0,"max":52,"temp":0,"tempmax":0,"formula":"8d8 + 16"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"monstrosity","subtype":"Shapechanger","swarm":"","custom":""},"environment":"Underdark","cr":3,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed"],"custom":""},"languages":{"value":["common"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":2,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Doppelganger","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Cp2MgsVDDSRiF2aj","name":"Ambusher","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"In the first round of a combat, the doppelganger has advantage on attack rolls against any creature it has surprised.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EMygUh5uRujWaFYK"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yfN4gklLV7zqhzxo","name":"Surprise Attack","type":"feat","img":"icons/magic/water/elemental-water.webp","system":{"description":{"value":"If the doppelganger surprises a creature and hits it with an attack during the first round of combat, the target takes an extra 10 (3d6) damage from the attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.5DJYFjGQCz5aSl5e"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Sr7ZTAYd1TQ6Nfto","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The doppelganger makes two melee attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"scZU8bs551DZRvgC","name":"Slam","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage.\nThe Doppelganger attacks with its Slam.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YIoB9xCKEcrrPRt9","name":"Read Thoughts","type":"feat","img":"icons/magic/control/hypnosis-mesmerism-watch.webp","system":{"description":{"value":"\nThe doppelganger magically reads the surface thoughts of one creature within 60 ft. of it. The effect can penetrate barriers, but 3 ft. of wood or dirt, 2 ft. of stone, 2 inches of metal, or a thin sheet of lead blocks it.\nWhile the target is in range, the doppelganger can continue reading its thoughts, as long as the doppelganger's concentration isn't broken (as if concentrating on a spell). While reading the target's mind, the doppelganger has advantage on Wisdom (Insight) and Charisma (Deception, Intimidation, and Persuasion) checks against the target.\n\nThe doppelganger magically reads the surface thoughts of one creature within 60 ft. of it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.w5mFTTFsdKC7TXgg"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"cG4WdhcrTZt6rxUi","name":"Shapechanger","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The doppelganger can use its action to polymorph into a Small or Medium humanoid it has seen, or back into its true form.Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies.The doppelganger can use its action to polymorph into a Small or Medium humanoid it has seen, or back into its true form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233147,"modifiedTime":1672596105828,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"n4TEv7inVUkyZviN","name":"Bandit","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Non-Lawful","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"","cr":0.125,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"any one language (usually Common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Bandit","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"4oIyAj7rN5JbTjDZ","name":"Scimitar","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) slashing damage.\nThe Bandit attacks with their Scimitar.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.fbC0Mg1a73wdFbqO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hSxEhrT9CFdLG40m","name":"Light Crossbow","type":"weapon","img":"icons/weapons/crossbows/crossbow-simple-brown.webp","system":{"description":{"value":"\nRanged Weapon Attack: +3 to hit, range 80 ft./320 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\nThe Bandit attacks with their Light Crossbow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":5,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"lgt":true,"two":true,"amm":true,"fin":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.ddWvQRLmnnIS0eLF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pByEnV0Y7QOI0ndA","name":"Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233149,"modifiedTime":1672596105878,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nEC1BRwM8Lx9hLXW","name":"Androsphinx","type":"npc","img":"","system":{"abilities":{"str":{"value":22,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":199,"min":0,"max":199,"temp":null,"tempmax":0,"formula":"19d10 + 95"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":"wis"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Neutral","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":17,"spellLevel":12,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["bludgeoning","piercing","psychic","slashing"],"bypasses":["mgc"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened"],"custom":""},"languages":{"value":["common"],"custom":"Sphinx"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":2,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":4,"override":null},"spell2":{"value":3,"override":null},"spell3":{"value":3,"override":null},"spell4":{"value":3,"override":null},"spell5":{"value":2,"override":null},"spell6":{"value":1,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":0,"max":0},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Androsphinx","displayName":0,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"IZgoYn3Baw7MAZCT","name":"Inscrutable","type":"feat","img":"icons/magic/perception/third-eye-blue-red.webp","system":{"description":{"value":"The sphinx is immune to any effect that would sense its emotions or read its thoughts, as well as any divination spell that it refuses. Wisdom (Insight) checks made to ascertain the sphinx's intentions or sincerity have disadvantage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FHrFOjEfkdRm4u43"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wmqCsq80pewLPg4c","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The sphinx's weapon attacks are magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zXzGfPnSFJbfZ7oW","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"\nThe sphinx is a 12th-level spellcaster. Its spellcasting ability is Wisdom (spell save DC 18, +10 to hit with spell attacks). It requires no material components to cast its spells. The sphinx has the following cleric spells prepared:\n• Cantrips (at will): sacred flame, spare the dying, thaumaturgy• 1st level (4 slots): command, detect evil and good, detect magic• 2nd level (3 slots): lesser restoration, zone of truth• 3rd level (3 slots): dispel magic, tongues• 4th level (3 slots): banishment, freedom of movement• 5th level (2 slots): flame strike, greater restoration• 6th level (1 slot): heroes' feast\n\nThe sphinx is a spellcaster. Its spellcasting ability is Wisdom.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yotsIj19d5spOVGb","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+12 to hit,, 5 ft., one target. Hit: 17 (2d10 + 6) slashing damage.\nThe Androsphinx attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gddHh6xWKLMmCT1J","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The sphinx makes two claw attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ez87kySQJgKUPT9L","name":"Roar","type":"feat","img":"icons/magic/sonic/scream-wail-shout-teal.webp","system":{"description":{"value":"\nThe sphinx emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different, as detailed below. Each creature within 500 feet of the sphinx and able to hear the roar must make a saving throw.\n**First Roar.** Each creature that fails a DC 18 Wisdom saving throw is frightened for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.**Second Roar.** Each creature that fails a DC 18 Wisdom saving throw is deafened and frightened for 1 minute. A frightened creature is paralyzed and can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.**Third Roar.** Each creature makes a DC 18 Constitution saving throw. On a failed save, a creature takes 44 (8d10) thunder damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone.\n\nThe sphinx emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different. Each creature within 500 feet of the sphinx and able to hear the roar must make a saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":500,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.QCNJD2GuOZSTT4Wt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sCcGdT18vb7al854","name":"First Roar","type":"feat","img":"icons/magic/sonic/scream-wail-shout-teal.webp","system":{"description":{"value":"Each creature that fails a DC 18 Wisdom saving throw is frightened for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.T25IRJ66yUqi2F1m"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hrPPu1rypQZWPHDp","name":"Second Roar","type":"feat","img":"icons/magic/sonic/scream-wail-shout-teal.webp","system":{"description":{"value":"Each creature that fails a DC 18 Wisdom saving throw is deafened and frightened for 1 minute. A frightened creature is paralyzed and can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lWnUAwBPfJf9WupM"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"guh5qlJFR8iKncKj","name":"Third Roar","type":"feat","img":"icons/magic/sonic/scream-wail-shout-teal.webp","system":{"description":{"value":"Each creature makes a DC 18 Constitution saving throw. On a failed save, a creature takes 44 (8d10) thunder damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d10","thunder"]],"versatile":""},"formula":"","save":{"ability":"con","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WtQHjfWuFrsYEns3"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"u7KoAMVBDhcaWQAd","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"The sphinx can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature’s turn. The sphinx regains spent legendary actions at the start of its turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":3,"max":"3","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fZY6aMo87z2iSl9Q","name":"Claw Attack","type":"feat","img":"icons/skills/melee/blood-slash-foam-red.webp","system":{"description":{"value":"The sphinx makes one claw attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.DPrO7eVVxiKD8QWD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ZZdoas8GMbE3AzzZ","name":"Teleport","type":"feat","img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","system":{"description":{"value":"The sphinx magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.PPzVD90vab60FqCt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"COSA7NBYXiWccqNu","name":"Cast a Spell","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"The sphinx casts a spell from its list of prepared spells, using a spell slot as normal.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":3,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":3},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.7HPC39yg8OYshJos"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"L4i5v1sND0KLLlb4","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"If a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4htzOIEvqgitIIL6","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"n9pJzTDsAwQxJVRl","name":"Sacred Flame","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Flame-like radiance descends on a creature that you can see within range. The target must succeed on a Dexterity saving throw or take 1d8 radiant damage. The target gains no benefit from cover for this saving throw.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":18,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.n9pJzTDsAwQxJVRl"}},"img":"icons/magic/light/beam-rays-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234221,"modifiedTime":1661791116849,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"8zT7njvqbpXs4Cel","name":"Spare the Dying","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a living creature that has 0 hit points. The creature becomes stable. This spell has no effect on undead or constructs.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.8zT7njvqbpXs4Cel"}},"img":"icons/magic/life/heart-cross-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234083,"modifiedTime":1661791116850,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MUO1uYN7JR1hm4dR","name":"Thaumaturgy","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create one of the following magical effects within range:\n\nYour voice booms up to three times as loud as normal for 1 minute.\nYou cause flames to flicker, brighten, dim, or change color for 1 minute.\nYou cause harmless tremors in the ground for 1 minute.\nYou create a sound that originates from a point of your choice within range.\nYou cause an unlocked door or window to fly open or slam shut.\nYou alter the appearance of your eyes for 1 minute.\n\nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234127,"modifiedTime":1661791116850,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"arzCrMRgcNiQuh43","name":"Command","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You speak a one-word command to a creature you can see within range. The target must succeed on a Wisdom saving throw or follow the command on its next turn. The spell has no effect if the target is undead, if it doesn't understand your language, or if your command is directly harmful to it.Some typical commands and their effects follow. You might issue a command other than one described here. If you do so, the DM determines how the target behaves. If the target can't follow your command, the spell ends.Approach. The target moves toward you by the shortest and most direct route, ending its turn if it moves within 5 feet of you.Drop. The target drops whatever it is holding and then ends its turn.Flee. The target spends its turn moving away from you by the fastest available means.Grovel. The target falls prone and then ends its turn.Halt. The target doesn't move and takes no actions. A flying creature stays aloft, provided that it is able to do so. If it must move to stay aloft, it flies the minimum distance needed to remain in the air.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.arzCrMRgcNiQuh43"}},"img":"icons/magic/fire/explosion-fireball-small-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234169,"modifiedTime":1661791116850,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Mzh95utKDPIrjiH8","name":"Detect Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Mzh95utKDPIrjiH8"}},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234128,"modifiedTime":1661791116851,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116851,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"F0GsG0SJzsIOacwV","name":"Lesser Restoration","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature and can end either one disease or one condition afflicting it. The condition can be blinded, deafened, paralyzed, or poisoned.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.F0GsG0SJzsIOacwV"}},"img":"icons/magic/life/heart-cross-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234103,"modifiedTime":1661791116851,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"CylBa7jR8DSbo8Z3","name":"Zone of Truth","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a magical zone that guards against deception in a 15-foot-radius sphere centered on a point of your choice within range. Until the spell ends, a creature that enters the spell's area for the first time on a turn or starts its turn there must make a Charisma saving throw. On a failed save, a creature can't speak a deliberate lie while in the radius. You know whether each creature succeeds or fails on its saving throw.\n An affected creature is aware of the spell and can thus avoid answering questions to which it would normally respond with a lie. Such a creature can be evasive in its answers as long as it remains within the boundaries of the truth.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":18,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.CylBa7jR8DSbo8Z3"}},"img":"icons/magic/symbols/runes-star-magenta.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234097,"modifiedTime":1661791116852,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"15Fa6q1nH27XfbR8","name":"Dispel Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose one creature, object, or magical effect within range. Any spell of 3rd level or lower on the target ends. For each spell of 4th level or higher on the target, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a successful check, the spell ends.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you automatically end the effects of a spell on the target if the spell's level is equal to or less than the level of the spell slot you used.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.15Fa6q1nH27XfbR8"}},"img":"icons/skills/melee/strike-blade-knife-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234054,"modifiedTime":1661791116852,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"gopnZvS0c2jD5FP8","name":"Tongues","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell grants the creature you touch the ability to understand any spoken language it hears. Moreover, when the target speaks, any creature that knows at least one language and can hear the target understands what it says.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"div","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small clay model of a ziggurat","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.gopnZvS0c2jD5FP8"}},"img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234193,"modifiedTime":1661791116852,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"pxpb2eOB6bv4phAf","name":"Banishment","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to send one creature that you can see within range to another plane of existence. The target must succeed on a Charisma saving throw or be banished.If the target is native to the plane of existence you're on, you banish the target to a harmless demiplane. While there, the target is incapacitated. The target remains there until the spell ends, at which point the target reappears in the space it left or in the nearest unoccupied space if that space is occupied.If the target is native to a different plane of existence than the one you're on, the target is banished with a faint popping noise, returning to its home plane. If the spell ends before 1 minute has passed, the target reappears in the space it left or in the nearest unoccupied space if that space is occupied. Otherwise, the target doesn't return.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":18,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An item distasteful to the target","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.pxpb2eOB6bv4phAf"}},"img":"icons/magic/control/energy-stream-link-spiral-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234230,"modifiedTime":1661791116853,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"da0a1t2FqaTjRZGT","name":"Freedom of Movement","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a willing creature. For the Duration, the target's Movement is unaffected by difficult terrain, and Spells and other magical Effects can neither reduce the target's speed nor cause the target to be Paralyzed or Restrained.The target can also spend 5 feet of Movement to automatically escape from nonmagical restraints, such as Manacles or a creature that has it Grappled. Finally, being Underwater imposes no penalties on the target's movement or attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A leather strap, bound around the arm or a similar appendage","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.da0a1t2FqaTjRZGT"}},"img":"icons/skills/melee/strike-blade-knife-white-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234180,"modifiedTime":1661791116853,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"5e1xTohkzqFqbYH4","name":"Flame Strike","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A vertical column of divine fire roars down from the heavens in a location you specify. Each creature in a 10-foot-radius, 40-foot-high Cylinder centered on a point within range must make a Dexterity saving throw. A creature takes 4d6 fire damage and 4d6 radiant damage on a failed save, or half as much damage on a successful one.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the fire damage or the radiant damage (your choice) increases by 1d6 for each slot level above 5th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"cylinder"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","radiant"],["4d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":18,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of sulfur","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.5e1xTohkzqFqbYH4"}},"img":"icons/magic/light/beam-rays-red-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234070,"modifiedTime":1661791116853,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"WzvJ7G3cqvIubsLk","name":"Greater Restoration","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You imbue a creature you touch with positive energy to undo a debilitating effect. You can reduce the target's Exhaustion level by one, or end one of the following Effects on the target:\n\nOne effect that Charmed or Petrified the target\nOne curse, including the target's Attunement to a cursed magic item\nAny reduction to one of the target's Ability Scores\nOne effect reducing the target's hit point maximum\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"diamond dust worth at least 100gp, which the spell consumes","consumed":true,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.WzvJ7G3cqvIubsLk"}},"img":"icons/magic/life/heart-cross-strong-flame-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234154,"modifiedTime":1661791116853,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"mgFqi0ev8f7Ut19y","name":"Heroes' Feast","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You bring forth a great feast, including magnificent food and drink. The feast takes 1 Hour to consume and disappears at the end of that time, and the beneficial Effects don't set in until this hour is over. Up to twelve creatures can partake of the feast.A creature that partakes of the feast gains several benefits. The creature is cured of all Diseases and poison, becomes immune to poison and being Frightened, and makes all Wisdom Saving Throws with advantage. Its hit point maximum also increases by 2d10, and it gains the same number of Hit Points. These benefits last for 24 hours.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A gem-encrusted bowl worth at least 1000gp, which the spell consumes","consumed":true,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.mgFqi0ev8f7Ut19y"}},"img":"icons/magic/life/heart-cross-strong-flame-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234220,"modifiedTime":1661791116854,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233151,"modifiedTime":1672596105998,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nREPw9g94Bsb9sIl","name":"Tribal Warrior","type":"npc","img":"","system":{"abilities":{"str":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"any alignment","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"","cr":0.125,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"any one language"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Tribal Warrior","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"hbpux5uhl63ObLBg","name":"Hide Armor","type":"equipment","img":"icons/equipment/chest/breastplate-scale-leather.webp","system":{"description":{"value":"This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":12,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.n1V07puo0RQxPGuF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"d0AIrKneA8GKmDE1","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The warrior has advantage on an attack roll against a creature if at least one of the warrior's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KO6Ez3XWFM4iH4zB","name":"Spear","type":"weapon","img":"icons/weapons/polearms/spear-flared-worn-grey.webp","system":{"description":{"value":"\nMelee or Ranged Weapon Attack: +3 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 4 (1d6 + 1) piercing damage, or 5 (1d8 + 1) piercing damage if used with two hands to make a melee attack.\nThe Tribal Warrior attacks with their Spear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":"1d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"thr":true,"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.OG4nBBydvmfWYXIk"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233154,"modifiedTime":1672596106063,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nU8GN8La8DCt8SDb","name":"Skeleton","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":13,"min":0,"max":13,"temp":0,"tempmax":0,"formula":"2d8 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Urban","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":["bludgeoning"],"bypasses":[],"custom":""},"ci":{"value":["poisoned","exhaustion"],"custom":""},"languages":{"value":[],"custom":"Understands all languages it knew in life but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Skeleton","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"hrTC2vP0xMgI8q8y","name":"Shortbow","type":"weapon","img":"icons/weapons/bows/shortbow-recurve.webp","system":{"description":{"value":"\nRanged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\nThe Skeleton attacks with its Shortbow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":80,"long":320,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleR","baseItem":"","properties":{"two":true,"amm":true,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.GJv6WkD7D2J6rP6M"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qXbbvudRpBoul3bH","name":"Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\nThe Skeleton attacks with its Shortsword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.osLzOwQdPtrK3rQH"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233156,"modifiedTime":1672596106108,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nZthq6WHLhcdu3te","name":"Gorgon","type":"npc","img":"","system":{"abilities":{"str":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":114,"min":0,"max":114,"temp":0,"tempmax":0,"formula":"12d10 + 48"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["petrified"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Gorgon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"zpzof99ziVJCU4hI","name":"Trampling Charge","type":"feat","img":"icons/creatures/abilities/cougar-pounce-stalk-black.webp","system":{"description":{"value":"If the gorgon moves at least 20 feet straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a DC 16 Strength saving throw or be knocked prone. If the target is prone, the gorgon can make one attack with its hooves against it as a bonus action.If the gorgon moves at least 20 feet straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":16,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yD51x4dihnbHwfsj"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7DSbBzpS1e9lYxZx","name":"Gore","type":"weapon","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"Melee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 18 (2d12 + 5) piercing damage.The Gorgon attacks with its Gore.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d12 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"O8oahxePfpHFYohz","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"Melee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage.The Gorgon attacks with its Hooves.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5tEnGK28Rd4nHnwM","name":"Petrifying Breath","type":"feat","img":"icons/magic/air/fog-gas-smoke-orange.webp","system":{"description":{"value":"The gorgon exhales petrifying gas in a 30-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw. On a failed save, a target begins to turn to stone and is restrained. The restrained target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is petrified until freed by the greater restoration spell or other magic.The gorgon exhales petrifying gas in a 30-foot cone. Each creature in that area must make a Constitution saving throw. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"perm"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.xmXYBevj0kuPa3Fo"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233157,"modifiedTime":1672596106156,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"naSoHU9KbkgeNIwB","name":"Gold Dragon Wyrmling","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":60,"min":0,"max":60,"temp":0,"tempmax":0,"formula":"8d8 + 24"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"","cr":3,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Gold Dragon Wyrmling","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"hTsrzcY4zYsqqzPf","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"s90OWDANSrZ1ttWp","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.The Gold Dragon Wyrmling attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JH4iOMWhpUPZneJN","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Fire Breath.** The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 22 (4d10) fire damage on a failed save, or half as much damage on a successful one.\n**Weakening Breath.** The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XeFYvc5dR8YNRizI","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\n**Fire Breath.** The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 22 (4d10) fire damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales fire in a 15-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8mLdG3PPJsB8rrI3","name":"Paralyzing Breath","type":"feat","img":"icons/magic/unholy/projectile-fireball-green.webp","system":{"description":{"value":"\n**Weakening Breath.** The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe dragon exhales gas in a 15-foot cone. Each creature in that area must make a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.BiasCPpNsaAVKzIj"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233159,"modifiedTime":1672596106207,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"najtPRiHLR6buSWe","name":"Blue Dragon Wyrmling","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":52,"min":0,"max":52,"temp":0,"tempmax":0,"formula":"8d8 + 16"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":15,"climb":0,"fly":60,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"","cr":3,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["lightning"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Blue Dragon Wyrmling","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"VkmpLaL0RYt8WrzR","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage plus 3 (1d6) lightning damage.The Blue Dragon Wyrmling attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"],["1d6","lightning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7LCUjJcHm3odI9C8","name":"Lightning Breath","type":"feat","img":"icons/magic/lightning/bolt-strike-blue.webp","system":{"description":{"value":"The dragon exhales lightning in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.The dragon exhales lightning in a 30-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":12,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LVnd9fq9cQj7rR0Q"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233160,"modifiedTime":1672596106273,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"namJz755U1EhvEJa","name":"Water Elemental","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":114,"min":0,"max":114,"temp":null,"tempmax":0,"formula":"12d10 + 48"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":90,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["acid","bludgeoning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["grappled","paralyzed","petrified","poisoned","prone","restrained","unconscious","exhaustion"],"custom":""},"languages":{"value":["aquan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Water Elemental","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"sZcc3bwnRjaDV9BZ","name":"Freeze","type":"feat","img":"icons/magic/water/ice-crystal-white.webp","system":{"description":{"value":"If the elemental takes cold damage, it partially freezes; its speed is reduced by 20 ft. until the end of its next turn.If the elemental takes cold damage, it partially freezes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.m0FA3UM62hlTPVSA"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6AQXZ1FlO8qhnPTR","name":"Water Form","type":"feat","img":"icons/magic/water/orb-water-bubbles.webp","system":{"description":{"value":"The elemental can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.AFYR2eZavzQUbZNb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9saHudPLoj6va2em","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The elemental makes two slam attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7xDGPsWicxgP6feT","name":"Slam","type":"weapon","img":"icons/magic/water/wave-water-blue.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.The Water Elemental attacks with its Slam.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5XUFTldfE6mtRUfd","name":"Whelm","type":"feat","img":"icons/magic/water/vortex-water-whirlpool.webp","system":{"description":{"value":"Each creature in the elemental's space must make a DC 15 Strength saving throw. On a failure, a target takes 13 (2d8 + 4) bludgeoning damage. If it is Large or smaller, it is also grappled (escape DC 14). Until this grapple ends, the target is restrained and unable to breathe unless it can breathe water. If the saving throw is successful, the target is pushed out of the elemental's space.The elemental can grapple one Large creature or up to two Medium or smaller creatures at one time. At the start of each of the elemental's turns, each target grappled by it takes 13 (2d8 + 4) bludgeoning damage. A creature within 5 feet of the elemental can pull a creature or object out of it by taking an action to make a DC 14 Strength check and succeeding.Each creature in the elemental's space must make a Strength saving throw. If it is Large or smaller, it is also grappled. Until this grapple ends, the target is restrained and unable to breathe unless it can breathe water. A creature within 5 feet of the elemental can pull a creature or object out of it by taking an action to make a Strength check and succeeding.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":4,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.sMgKJtbCLNSX7V80"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233161,"modifiedTime":1672596106320,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nkyCGJ9wXeAZkyyz","name":"Quipper","type":"npc","img":"","system":{"abilities":{"str":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"1d4 - 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":0,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Quipper","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"jFoGi81ljGK27zpX","name":"Blood Frenzy","type":"feat","img":"icons/skills/wounds/blood-spurt-spray-red.webp","system":{"description":{"value":"The quipper has advantage on melee attack rolls against any creature that doesn't have all its hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.B2kZOyrB7poB4liR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fTUKEAcQ4JT7xieY","name":"Water Breathing","type":"feat","img":"icons/magic/water/projectile-water-ice-orb.webp","system":{"description":{"value":"The quipper can breathe only underwater.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.c4Q6NDCLJSNcNc9T"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0SJofXpPrHJsVXOy","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 1 piercing damage.The Quipper attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233163,"modifiedTime":1672596106362,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"oDspGxRQFBhE74L2","name":"Invisible Stalker","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":104,"min":0,"max":104,"temp":null,"tempmax":0,"formula":"16d8 + 32"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":50,"swim":0,"walk":50,"units":"ft","hover":true},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Urban","cr":6,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["grappled","paralyzed","petrified","poisoned","prone","restrained","unconscious","exhaustion"],"custom":""},"languages":{"value":["auran"],"custom":"understands Common but doesn't speak it"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Invisible Stalker","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"VdFnTF9MqUFF7KPQ","name":"Faultless Tracker","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The stalker is given a quarry by its summoner. The stalker knows the direction and distance to its quarry as long as the two of them are on the same plane of existence. The stalker also knows the location of its summoner.The stalker knows the direction and distance to its quarry as long as the two of them are on the same plane of existence. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.E8SiDA7Z3Ybd6wt0"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UR2TYdvh0VZzLKyO","name":"Invisibility","type":"feat","img":"icons/creatures/webs/webthin-blue.webp","system":{"description":{"value":"The stalker is invisible.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.dA5X2eQuOtHywpQF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bl0mrJpx4dqL9Ub8","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The stalker makes two slam attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rpKiEPQVeOZTLwjf","name":"Slam","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.The Invisible Stalker attacks with its Slam.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233164,"modifiedTime":1672596106410,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"oJCOB9X2BPsBkWW5","name":"Magma Mephit","type":"npc","img":"","system":{"abilities":{"str":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":22,"min":0,"max":22,"temp":0,"tempmax":0,"formula":"5d6 + 5"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":30,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"sm","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":["cold"],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["ignan","terran"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Magma Mephit","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"lAwQmCYEd9CtDdTb","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The mephit can innately cast heat metal (spell save DC 10), requiring no material components. Its innate spellcasting ability is Charisma.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":1,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LpYrQPxHA10HPnkl","name":"Death Burst","type":"feat","img":"icons/magic/light/explosion-star-glow-yellow.webp","system":{"description":{"value":"When the mephit dies, it explodes in a burst of lava. Each creature within 5 ft. of it must make a DC 11 Dexterity saving throw, taking 7 (2d6) fire damage on a failed save, or half as much damage on a successful one.When the mephit dies, it explodes in a burst of lava. Each creature within 5 ft. of it must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":"death"},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.net3yBKQoxl8bZ4r"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FEdBqpqpIEyjdO2H","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the mephit remains motionless, it is indistinguishable from an ordinary mound of magma.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BiAfcjq7C9Wf8R9b","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack: +3 to hit, reach 5 ft ., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) fire damage.The Magma Mephit attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4+@mod","slashing"],["1d4","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iXhbFt7gCj3FBM2r","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"The mephit exhales a 15-foot cone of fire. Each creature in that area must make a DC 11 Dexterity saving throw, taking 7 (2d6) fire damage on a failed save, or half as much damage on a successful one.The mephit exhales a 15-foot cone of fire. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2yHXEcrRbadZDr5M","name":"Heat Metal","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a manufactured metal object, such as a metal weapon or a suit of heavy or medium metal armor, that you can see within range. You cause the object to glow red-hot. Any creature in physical contact with the object takes 2d8 fire damage when you cast the spell. Until the spell ends, you can use a bonus action on each of your subsequent turns to cause this damage again.If a creature is holding or wearing the object and takes the damage from it, the creature must succeed on a Constitution saving throw or drop the object if it can. If it doesn't drop the object, it has disadvantage on attack rolls and ability checks until the start of your next turn.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","fire"]],"versatile":""},"formula":"","save":{"ability":"con","dc":10,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A piece of iron and a flame.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.2yHXEcrRbadZDr5M"}},"img":"icons/magic/light/explosion-star-large-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234061,"modifiedTime":1661791116872,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233166,"modifiedTime":1672596106455,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"oQvORD924obyPdCc","name":"Badger","type":"npc","img":"","system":{"abilities":{"str":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":3,"min":0,"max":3,"temp":0,"tempmax":0,"formula":"1d4 + 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":5,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":30,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Badger","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"hwviWX3lRj9wqENj","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The badger has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"wis","actionType":"abil","attackBonus":"","chatFlavor":"The badger sniffs around!","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"2d20kh + @skills.prc.total","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Badger","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"siQuRYBFdjgVrKlA","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 1 piercing damage.\nThe Badger attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233167,"modifiedTime":1672596106500,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"oRBnO5OHoOZzlCOr","name":"Werebear","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":135,"min":0,"max":135,"temp":null,"tempmax":0,"formula":"18d8 + 54"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Good","race":"","type":{"value":"humanoid","subtype":"Human, Shapechanger","swarm":"","custom":""},"environment":"Forest","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common"],"custom":"(can't speak in bear form)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Werebear","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"D8QWBbYLFAT7uIiz","name":"Shapechanger","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The werebear can use its action to polymorph into a Large bear-humanoid hybrid or into a Large bear, or back into its true form, which is humanoid. Its statistics, other than its size and AC, are the same in each form. Any equipment it. is wearing or carrying isn't transformed. It reverts to its true form if it dies.The werebear can use its action to polymorph, or return to its true form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rzLcynHQQj04Ue4B","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The werebear has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"COcc6eoG6ScS4wGz","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"In bear form, the werebear makes two claw attacks. In humanoid form, it makes two greataxe attacks. In hybrid form, it can attack like a bear or a humanoid.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"h9XO0f5Un3EhJqHm","name":"Bite (Bear or Hybrid Form Only)","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage. If the target is a humanoid, it must succeed on a DC 14 Constitution saving throw or be cursed with were bear lycanthropy.The Werebear attacks with its Bite. If the target is a humanoid, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pEYcOjAF2fovrXRP","name":"Claw (Bear or Hybrid Form Only)","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.The Werebear attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UeXfHUO5RZp72PIs","name":"Greataxe (Humanoid or Hybrid Form Only)","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"\nMelee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 10 (1d12 + 4) slashing damage.\n\nThe Werebear attacks with its Greataxe.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":30,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"hvy":true,"two":true,"amm":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233169,"modifiedTime":1672596106543,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"omcDpBoB69esCXeM","name":"Brown Bear","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":34,"min":0,"max":34,"temp":0,"tempmax":0,"formula":"4d10 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Brown Bear","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"alpha":1,"light":{"alpha":0.5,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"reverse":false,"type":null},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.3},"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"tOPVA2liaPY9pwgO","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack: +6 to hit, 5 ft., one target. Hit: 9 (1d8 + 4) piercing damage.\n\nThe Brown Bear attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"ada":false,"mgc":false,"sil":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MozRn0kqcm5IG3WI","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack: +6 to hit, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n\nThe Brown Bear attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false,"ada":false,"mgc":false,"sil":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"D3rgzM9PCR2iXku5","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The bear has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AVusgSNjauFD9XnU","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The bear makes two attacks: one with its bite and one with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233170,"modifiedTime":1672596106588,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"p980augbCIdpK9ZX","name":"Roc","type":"npc","img":"","system":{"abilities":{"str":{"value":28,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":248,"min":0,"max":248,"temp":0,"tempmax":0,"formula":"16d20 + 80"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":120,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":11,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"grg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Roc","displayName":20,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"PZWkwOa8C0Y2tSCR","name":"Beak","type":"weapon","img":"icons/commodities/bones/beak-hooked-red.webp","system":{"description":{"value":"Melee Weapon Attack:+13 to hit,, 10 ft., one target. Hit: 27 (4d8 + 9) piercing damage.The Roc attacks with its Beak.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1Ocl9VqVtWFu97Ua","name":"Keen Sight","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The roc has advantage on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"s5X12Eygxcpzd9eM","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The roc makes two attacks: one with its beak and one with its talons.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"XMiiDwLIMYWFqxyv","name":"Talons","type":"weapon","img":"icons/creatures/claws/claw-scaled-red.webp","system":{"description":{"value":"Melee Weapon Attack:+13 to hit,, 5 ft., one target. Hit: 23 (4d6 + 9) slashing damage.The target is grappled (escape DC 19). Until this grapple ends, the target is restrained, and the roc can't use its talons on another target.The Roc attacks with its Talons. The target is grappled. Until this grapple ends, the target is restrained, and the roc can't use its talons on another target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233172,"modifiedTime":1672596106630,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"p9Xnr820UAZBOIVN","name":"Giant Octopus","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":52,"min":0,"max":52,"temp":0,"tempmax":0,"formula":"8d10 + 8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":60,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Octopus","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Fz4N05s53rXx3EKX","name":"Hold Breath","type":"feat","img":"icons/magic/water/pseudopod-swirl-blue.webp","system":{"description":{"value":"While out of water, the octopus can hold its breath for 1 hour.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lwC6jwy9bXberyWo"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NDE2nul3OiWsL2Hq","name":"Underwater Camouflage","type":"feat","img":"icons/magic/water/orb-ice-web.webp","system":{"description":{"value":"The octopus has advantage on Dexterity (Stealth) checks made while underwater.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Octopus","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.M9XqZZGoTKawAsCl"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WkrcqZN7dSJu9CYC","name":"Water Breathing","type":"feat","img":"icons/magic/water/projectile-water-ice-orb.webp","system":{"description":{"value":"The octopus can breathe only underwater.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Octopus","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.c4Q6NDCLJSNcNc9T"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HoGLXQIsF3riSu3X","name":"Ink Cloud","type":"feat","img":"icons/magic/unholy/orb-swirling-teal.webp","system":{"description":{"value":"\nA 20-foot-radius cloud of ink extends all around the octopus if it is underwater. The area is heavily obscured for 1 minute, although a significant current can disperse the ink. After releasing the ink, the octopus can use the Dash action as a bonus action. Recharges after a Short or Long Rest.\nA 20-foot-radius cloud of ink extends all around the octopus if it is underwater.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bojUXmNOZ2rJVujD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yOZK7sWcCRFmuAxz","name":"Tentacles","type":"weapon","img":"icons/creatures/tentacles/tentacles-thing-green.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 15 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.\nIf the target is a creature, it is grappled (escape DC 16). Until this grapple ends, the target is restrained, and the octopus can't use its tentacles on another target.\n\nThe Giant Octopus attacks with its Tentacles. If the target is a creature, it is grappled. Until this grapple ends, the target is restrained, and the octopus can't use its tentacles on another target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"rch":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nKpLMXS9E10TSGhU"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233174,"modifiedTime":1672596106672,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"pAuiNDr7nvpsW9nG","name":"Ancient Brass Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":27,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":25,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":20,"calc":"natural","formula":""},"hp":{"value":297,"min":0,"max":297,"temp":0,"tempmax":0,"formula":"17d20+119"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":40,"climb":0,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Desert","cr":20,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"grg","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Ancient Brass Dragon","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"pv497s1HuExllRI0","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"IiNKOgZ3djF0mBXR","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"M8QrGIl4ESY4kh6A","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.The Ancient Brass Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Iy1UXphRvuXgybrn","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.The Ancient Brass Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"yJGmBczsD2hSQuzI","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute.A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JjvNpMw6JP0A33yu","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+14 to hit,, 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.The Ancient Brass Dragon attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qmdYJXoLm52JeDEN","name":"Breath Weapons","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons:\n**Fire Breath.** The dragon exhales fire in an 90-foot line that is 10 feet wide. Each creature in that line must make a DC 21 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.\n**Sleep Breath.** The dragon exhales sleep gas in a 90-foot cone. Each creature in that area must succeed on a DC 21 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zM7nlV0WXlCeZj01","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"\n**Fire Breath.** The dragon exhales fire in an 90-foot line that is 10 feet wide. Each creature in that line must make a DC 21 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales fire in a 90-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["16d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":21,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"n1nya8bJgMqzsyfz","name":"Sleep Breath","type":"feat","img":"icons/magic/perception/third-eye-blue-red.webp","system":{"description":{"value":"\n**Sleep Breath.** The dragon exhales sleep gas in a 90-foot cone. Each creature in that area must succeed on a DC 21 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n\nThe dragon exhales sleep gas in a 90-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":21,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.43BnuqkQgg5l1Nfh"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ffeBuEAJL0Kk0RRk","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"BgJf6V68k1OQMyWH","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FWLpSMrjPPegkAxX","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ru7kWvjTE3H4Qbrh","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NgeJhGPvdvOyx7OI","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 22 Dexterity saving throw or take 15 ( 2d6+8) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":22,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OY4mIiqSBDwjHjdj","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rV06CSnbJVNfLnyr","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233176,"modifiedTime":1672596106772,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"pLzSh4dA517Tn73E","name":"Giant Lizard","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":19,"min":0,"max":19,"temp":0,"tempmax":0,"formula":"3d10 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":30,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Lizard","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"fLwfCY0GE5S7mMYv","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\nThe Giant Lizard attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233178,"modifiedTime":1672596106822,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"pOPQU4UnR27zA0jf","name":"Minotaur","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":76,"min":0,"max":76,"temp":0,"tempmax":0,"formula":"9d10 + 27"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":3,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["abyssal"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Minotaur","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Z1aFAtAP0JJ02tPV","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"If the minotaur moves at least 10 ft. straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 9 (2d8) piercing damage. If the target is a creature, it must succeed on a DC 14 Strength saving throw or be pushed up to 10 ft. away and knocked prone.If the minotaur moves at least 10 ft. straight toward a target and then hits it with a gore attack on the same turn, the target takes extra piercing damage. If the target is a creature, it must make a Strength saving throw or be pushed up to 10 ft. away and knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","piercing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Fybno0bT1qZO1sSj","name":"Labyrinthine Recall","type":"feat","img":"icons/magic/air/wind-vortex-swirl-blue.webp","system":{"description":{"value":"The minotaur can perfectly recall any path it has traveled.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.1w6k5iHV8QSz5w46"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"i1CyGkejt1lDCHEu","name":"Reckless","type":"feat","img":"icons/skills/social/intimidation-impressing.webp","system":{"description":{"value":"At the start of its turn, the minotaur can gain advantage on all melee weapon attack rolls it makes during that turn, but attack rolls against it have advantage until the start of its next turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4v3xxn1jEEMRzLBG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lZ5YdCcXmEDR6vhb","name":"Greataxe","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.The Minotaur attacks with its Greataxe.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d12 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":true,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.1Lxk6kmoRhG8qQ0u"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zTqVT0QztTuMOv0e","name":"Gore","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.The Minotaur attacks with its Gore.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233180,"modifiedTime":1672596106869,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"pozQUPTnLZW8epox","name":"Rat","type":"npc","img":"","system":{"abilities":{"str":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"1d4 - 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":30,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Swamp","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Rat","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"mll5ghZVkPuiyBoa","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The rat has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Rat","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QpysqgoHq9LXsShc","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+0 to hit,, 5 ft., one target. Hit: 1 piercing damage.\nThe Rat attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233181,"modifiedTime":1672596106914,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"q1YJIeIt6rK8fCKn","name":"Giant Rat","type":"npc","img":"","system":{"abilities":{"str":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":7,"min":0,"max":7,"temp":0,"tempmax":0,"formula":"2d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0.125,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Rat","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"IJJ5nwTmA5BBnSvq","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The rat has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"m1b40a7qTZXNiBLw","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The rat has advantage on an attack roll against a creature if at least one of the rat's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"D98YkFEPQRdesZUW","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\nThe Giant Rat attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233183,"modifiedTime":1672596106954,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qNdFhY3JOkCfhG3d","name":"Ancient Black Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":27,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":25,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":22,"calc":"natural","formula":""},"hp":{"value":367,"min":0,"max":367,"temp":0,"tempmax":0,"formula":"21d20 + 147"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Swamp","cr":21,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"grg","di":{"value":["acid"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Ancient Black Dragon","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"5IEyeZf0FqkPrv7R","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"J86tFiZtAP8BbHzF","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RKsS1lZwBekMMGMt","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YauNxZeIeT4uDcTf","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+ 15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) acid damage.The Ancient Black Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["2d8","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GQLQiLBrkoOiNc8q","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+15 to hit,, 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.The Ancient Black Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"A5cRQsDF3Qih94rC","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack: +15 to hit, reach 20 ft ., one target. Hit: 17 (2d8 + 8) bludgeoning damage.The Ancient Black Dragon attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"M3VJyuM63OKH7JH0","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zDlCrWQVJgZFMfxY","name":"Acid Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"The dragon exhales acid in a 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 67 (15d8) acid damage on a failed save, or half as much damage on a successful one.Each creature in that line must make a DC 22 Dexterity saving throw, taking 67 (15d8) acid damage on a failed save, or half as much damage on a successful one.The dragon exhales acid in a 90-foot line that is 10 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["15d8","acid"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":22,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zjcGly9P3Gn9MXt7"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3ZEmD9O6eOtAfSzJ","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ue0XiojtilVvKhH4","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UpWaTW9cFf96GmMH","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"i4ggPCju3QyYJslH","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 23 Dexterity saving throw or take 15 ([[/r 2d6+8]]) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"84PHEVjYThsmbYxc","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PO5gIWTWS1dahP5E","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233185,"modifiedTime":1672596107052,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qW8cBwg7ghCA4Cw6","name":"Young Copper Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":119,"min":0,"max":119,"temp":0,"tempmax":0,"formula":"14d10 + 42"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":40,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Hill","cr":7,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["acid"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Young Copper Dragon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Km7rUn5tu44KuVbz","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.The Young Copper Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DlxAB4bcOmBIn0UG","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.The Young Copper Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eKFnpVBhSSB91leK","name":"Breath Weapons","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Acid Breath.** The dragon exhales acid in an 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 40 (9d8) acid damage on a failed save, or half as much damage on a successful one.\n**Slowing Breath.** The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HHLqWQuhYdWvo1Tj","name":"Acid Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\n**Acid Breath.** The dragon exhales acid in an 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 40 (9d8) acid damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales acid in an 40-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":40,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["9d8","acid"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zjcGly9P3Gn9MXt7"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jH7GlNkVX5D2chWY","name":"Slowing Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\n**Slowing Breath.** The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n\nThe dragon exhales gas in a 30-foot cone. Each creature in that area make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JRy507rS9wxT3GBh"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kk9fXkx19bCD5Qqv","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233187,"modifiedTime":1672596107104,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qXzMsRTHEodqO8l2","name":"Rakshasa","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":16,"calc":"natural","formula":""},"hp":{"value":110,"min":0,"max":110,"temp":null,"tempmax":0,"formula":"13d8 + 52"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"","swarm":"","custom":""},"environment":"Urban","cr":13,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":"Piercing from magic weapons wielded by good creatures"},"ci":{"value":[],"custom":""},"languages":{"value":["common","infernal"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Rakshasa","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"ChSnKd7pSLoN1Jeu","name":"Limited Magic Immunity","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The rakshasa can't be affected or detected by spells of 6th level or lower unless it wishes to be. It has advantage on saving throws against all other spells and magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.MBOiQSnMr02wUpEN"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NYUeQsYqRhROcVMQ","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The rakshasa's innate spellcasting ability is Charisma (spell save DC 18, +10 to hit with spell attacks). The rakshasa can innately cast the following spells, requiring no material components:\nAt will: detect thoughts, disguise self, mage hand, minor illusion\n3/day each: charm person, detect magic, invisibility, major image, suggestion\n1/day each: dominate person, fly, plane shift, true seeing","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"18NEVoD84KHDcWoG","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The rakshasa makes two claw attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pHBLWUN5VKEjSBh6","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage, and the target is cursed if it is a creature. The magical curse takes effect whenever the target takes a short or long rest, filling the target's thoughts with horrible images and dreams. The cursed target gains no benefit from finishing a short or long rest. The curse lasts until it is lifted by a remove curse spell or similar magic.The Rakshasa attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ppWAAEul0QHtm4er","name":"Detect Thoughts","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you can read the thoughts of certain creatures. When you cast the spell and as your action on each turn until the spell ends, you can focus your mind on any one creature that you can see within 30 feet of you. If the creature you choose has an Intelligence of 3 or lower or doesn't speak any language, the creature is unaffected.You initially learn the surface thoughts of the creature—what is most on its mind in that moment. As an action, you can either shift your attention to another creature's thoughts or attempt to probe deeper into the same creature's mind. If you probe deeper, the target must make a Wisdom saving throw. If it fails, you gain insight into its reasoning (if any), its emotional state, and something that looms large in its mind (such as something it worries over, loves, or hates). If it succeeds, the spell ends. Either way, the target knows that you are probing into its mind, and unless you shift your attention to another creature's thoughts, the creature can use its action on its turn to make an Intelligence check contested by your Intelligence check; if it succeeds, the spell ends.Questions verbally directed at the target creature naturally shape the course of its thoughts, so this spell is particularly effective as part of an interrogation.You can also use this spell to detect the presence of thinking creatures you can't see. When you cast the spell or as your action during the duration, you can search for thoughts within 30 feet of you. The spell can penetrate barriers, but 2 feet of rock, 2 inches of any metal other than lead, or a thin sheet of lead blocks you. You can't detect a creature with an Intelligence of 3 or lower or one that doesn't speak any language.Once you detect the presence of a creature in this way, you can read its thoughts for the rest of the duration as described above, even if you can't see it, but it must still be within range.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A copper piece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ppWAAEul0QHtm4er"}},"img":"icons/magic/light/explosion-star-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234229,"modifiedTime":1661791116890,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"A3q2gTNqG6fvNGrv","name":"Disguise Self","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You make yourself—including your clothing, armor, weapons, and other belongings on your person—look different until the spell ends or until you use your action to dismiss it. You can seem 1 foot shorter or taller and can appear thin, fat, or in between. You can't change your body type, so you must adopt a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you.The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to your outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel your head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair.To discern that you are disguised, a creature can use its action to inspect your appearance and must succeed on an Intelligence (Investigation) check against your spell save DC.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.A3q2gTNqG6fvNGrv"}},"img":"icons/magic/control/debuff-energy-hold-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234086,"modifiedTime":1661791116890,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"Utk1OQRwYkMkFRD3","name":"Mage Hand","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.The hand can't attack, activate magic items, or carry more than 10 pounds.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Utk1OQRwYkMkFRD3"}},"img":"icons/magic/water/water-hand.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234148,"modifiedTime":1661791116890,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"oIzA2MEHwxhtQneU","name":"Minor Illusion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a sound or an image of an object within range that lasts for the duration. The illusion also ends if you dismiss it as an action or cast this spell again.If you create a sound, its volume can range from a whisper to a scream. It can be your voice, someone else's voice, a lion's roar, a beating of drums, or any other sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends.If you create an image of an object—such as a chair, muddy footprints, or a small chest—it must be no larger than a 5-foot cube. The image can't create sound, light, smell, or any other sensory effect. Physical interaction with the image reveals it to be an illusion, because things can pass through it.If a creature uses its action to examine the sound or image, the creature can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the illusion becomes faint to the creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"cube"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"ill","components":{"vocal":false,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of fleece.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.oIzA2MEHwxhtQneU"}},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234224,"modifiedTime":1661791116891,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"eS7XnnApoxRxYXPs","name":"Charm Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to charm a humanoid you can see within range. It must make a Wisdom saving throw, and does so with advantage if you or your companions are fighting it. If it fails the saving throw, it is charmed by you until the spell ends or until you or your companions do anything harmful to it. The charmed creature regards you as a friendly acquaintance. When the spell ends, the creature knows it was charmed by you.\n At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.eS7XnnApoxRxYXPs"}},"img":"icons/magic/fire/explosion-fireball-medium-purple-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234185,"modifiedTime":1661791116891,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116891,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"1N8dDMMgZ1h1YJ3B","name":"Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An eyelash encased in gum arabic","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.1N8dDMMgZ1h1YJ3B"}},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234056,"modifiedTime":1661791116892,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"nslx2nT3p4lNkmdp","name":"Major Image","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 20-foot cube. The image appears at a spot that you can see within range and lasts for the duration. It seems completely real, including sounds, smells, and temperature appropriate to the thing depicted. You can't create sufficient heat or cold to cause damage, a sound loud enough to deal thunder damage or deafen a creature, or a smell that might sicken a creature (like a troglodyte's stench).As long as you are within range of the illusion, you can use your action to cause the image to move to any other spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking. Similarly, you can cause the illusion to make different sounds at different times, even making it carry on a conversation, for example.Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and its other sensory qualities become faint to the creature.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the spell lasts until dispelled, without requiring your concentration.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of fleece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.nslx2nT3p4lNkmdp"}},"img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234222,"modifiedTime":1661791116892,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"zMAWdyc8UVb37BK4","name":"Suggestion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You suggest a course of activity (limited to a sentence or two) and magically influence a creature you can see within range that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act ends the spell.The target must make a Wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do.You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a knight give her warhorse to the first beggar she meets. If the condition isn't met before the spell expires, the activity isn't performed.If you or any of your companions damage the target, the spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A snake's tongue and either a bit of honeycomb or a drop of sweet oil","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.zMAWdyc8UVb37BK4"}},"img":"icons/magic/air/air-burst-spiral-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234245,"modifiedTime":1661791116892,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"91Sw6vOIaO7U8DvM","name":"Dominate Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to beguile a humanoid that you can see within range. It must succeed on a Wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw.While the target is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability.You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time you can also cause the creature to use a reaction, but this requires you to use your own reaction as well.Each time the target takes damage, it makes a new Wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.At Higher Levels. When you cast this spell using a 6th-level spell slot, the duration is concentration, up to 10 minutes. When you use a 7th-level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 8th level or higher, the duration is concentration, up to 8 hours.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":18,"scaling":"spell"},"level":5,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.91Sw6vOIaO7U8DvM"}},"img":"icons/magic/air/air-burst-spiral-large-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234083,"modifiedTime":1661791116893,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"yfbK8gZqESlaoY5t","name":"Fly","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a willing creature. The target gains a flying speed of 60 feet for the Duration. When the spell ends, the target falls if it is still aloft, unless it can stop the fall.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A wing feather from any bird","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.yfbK8gZqESlaoY5t"}},"img":"icons/magic/control/energy-stream-link-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234243,"modifiedTime":1661791116893,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"J6Jpw5XzB5aTeqnz","name":"Plane Shift","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You and up to eight willing creatures who link hands in a circle are transported to a different plane of existence. You can specify a target destination in general terms, such as the City of Brass on the Elemental Plane of Fire or the palace of Dispater on the second level of the Nine Hells, and you appear in or near that destination. If you are trying to reach the City of Brass, for example, you might arrive in its Street of Steel, before its Gate of Ashes, or looking at the city from across the Sea of Fire, at the DM's discretion.Alternatively, if you know the sigil sequence of a teleportation circle on another plane of existence, this spell can take you to that circle. If the teleportation circle is too small to hold all the creatures you transported, they appear in the closest unoccupied spaces next to the circle.You can use this spell to banish an unwilling creature to another plane. Choose a creature within your reach and make a melee spell attack against it. On a hit, the creature must make a Charisma saving throw. If the creature fails this save, it is transported to a random location on the plane of existence you specify. A creature so transported must find its own way back to your current plane of existence.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":8,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":18,"scaling":"spell"},"level":7,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A forked, metal rod worth at least 250 gp, attuned to a particular plane of existence","consumed":false,"cost":250,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.J6Jpw5XzB5aTeqnz"}},"img":"icons/magic/symbols/runes-star-pentagon-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234111,"modifiedTime":1661791116893,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"XzkJpE6XpZfKjODD","name":"True Seeing","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell gives the willing creature you touch the ability to see things as they actually are. For the duration, the creature has truesight, notices secret doors hidden by magic, and can see into the Ethereal Plane, all out to a range of 120 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"An ointment for the eyes that costs 25gp; is made from mushroom powder, saffron, and fat; and is consumed by the spell","consumed":true,"cost":25,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.XzkJpE6XpZfKjODD"}},"img":"icons/magic/perception/eye-ringed-glow-angry-large-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234160,"modifiedTime":1661791116893,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233189,"modifiedTime":1672596107216,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qZyLwdx7lj5d1wfD","name":"Roper","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":20,"calc":"natural","formula":""},"hp":{"value":93,"min":0,"max":93,"temp":0,"tempmax":0,"formula":"11d10 + 33"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":10,"fly":0,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Roper","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.3,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"rnluQsu6p0n6s70W","name":"False Appearance","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"While the roper remains motionless, it is indistinguishable from a normal cave formation, such as a stalagmite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kyVgQNSa12loxVvr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hQLj7Zzuva4M9KzH","name":"Grasping Tendrils","type":"feat","img":"icons/magic/nature/root-vine-entangle-foot-green.webp","system":{"description":{"value":"The roper can have up to six tendrils at a time. Each tendril can be attacked (AC 20; 10 hit points; immunity to poison and psychic damage). Destroying a tendril deals no damage to the roper, which can extrude a replacement tendril on its next turn. A tendril can also be broken if a creature takes an action and succeeds on a DC 15 Strength check against it.The roper can have up to six tendrils at a time. Each tendril can be attacked. A tendril can also be broken if a creature takes an action and succeeds on a Strength check against it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LkepRN2rP3Hp4orY"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JsrlYsn9HM9HAeKH","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The roper can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mBRjMwEitGrPDm5I","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 22 (4d8 + 4) piercing damage.The Roper attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bTiw89tDx64zTqDk","name":"Tendril","type":"weapon","img":"icons/creatures/tentacles/tentacles-thing-green.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 50 ft., one target. Hit: The target is Grappled (escape DC 15). Until the grapple ends, the target is Restrained and has disadvantage on Strength Checks and Strength Saving Throws , and the roper can't use the same tendril on another target.The Roper attacks with its Tendril. The target is grappled. Until the grapple ends, the target is restrained and has disadvantage on Strength Checks and Strength Saving Throws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":50,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"iGuyFLbKazqPCcXY","name":"Reel","type":"feat","img":"icons/magic/control/sihouette-hold-beam-green.webp","system":{"description":{"value":"The roper pulls each creature grappled by it up to 25 ft. straight toward it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.IwQRhCTgCfAADyt8"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fyF8vQbuvkuLKmKf","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The roper makes four attacks with its tendrils, uses Reel, and makes one attack with its bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233191,"modifiedTime":1672596107276,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qav2dvMIUiMQCCsy","name":"Bat","type":"npc","img":"","system":{"abilities":{"str":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":1,"min":0,"max":1,"temp":0,"tempmax":0,"formula":"1d4 - 1"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":30,"swim":0,"walk":5,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"tiny","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Bat","displayName":20,"actorLink":false,"width":0.5,"height":0.5,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"xL1zgEf89s0xSVlW","name":"Echolocation","type":"feat","img":"icons/magic/control/hypnosis-mesmerism-eye.webp","system":{"description":{"value":"The bat can't use its blindsight while deafened.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Bat","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.rUongiWD51ZopRk2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fVUqOLxkujSbpeB7","name":"Keen Hearing","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The bat has advantage on Wisdom (Perception) checks that rely on hearing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Bat","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"N05hdQhXPTOHipkJ","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+0 to hit,, 5 ft., one creature. Hit: 1 piercing damage.\nThe Bat attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233193,"modifiedTime":1672596107319,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qkLNA1lKMMJpxuWg","name":"Cultist","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":9,"min":0,"max":9,"temp":0,"tempmax":0,"formula":"2d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Non-Good Alignment","race":"","type":{"value":"humanoid","subtype":"","swarm":"","custom":""},"environment":"","cr":0.125,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":"any one language (usually Common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Cultist","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"nfPMecUVS2iOgAKJ","name":"Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MyhBa9G8ryUWGm5D","name":"Dark Devotion","type":"feat","img":"icons/magic/control/control-influence-rally-purple.webp","system":{"description":{"value":"The cultist has advantage on saving throws against being charmed or frightened.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.XFvk6ywwZWTkMmQR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dldXP9XwjVIdIj5U","name":"Scimitar","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one creature. Hit: 4 (1d6 + 1) slashing damage.\nThe Cultist attacks with their Scimitar.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.fbC0Mg1a73wdFbqO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233194,"modifiedTime":1672596107356,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qoFEjfrANBdrCP6m","name":"Ghost","type":"npc","img":"","system":{"abilities":{"str":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":45,"min":0,"max":45,"temp":null,"tempmax":0,"formula":"10d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":40,"swim":0,"walk":0,"units":"ft","hover":true},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Alignment","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"","cr":4,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["cold","necrotic","poison"],"bypasses":[],"custom":""},"dr":{"value":["acid","bludgeoning","fire","lightning","piercing","slashing","thunder"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","exhaustion","frightened","grappled","paralyzed","petrified","poisoned","prone","restrained"],"custom":""},"languages":{"value":[],"custom":"any languages it knew in life"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ghost","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"tjrDz1IWVcjF7PMl","name":"Ethereal Sight","type":"feat","img":"icons/magic/perception/eye-tendrils-web-purple.webp","system":{"description":{"value":"The ghost can see 60 ft. into the Ethereal Plane when it is on the Material Plane, and vice versa.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.We6R4thWKYDRYlEc"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SiBsPubItj26pcHa","name":"Incorporeal Movement","type":"feat","img":"icons/magic/air/air-wave-gust-blue.webp","system":{"description":{"value":"The ghost can move through other creatures and objects as if they were difficult terrain. It takes 5 (1d10) force damage if it ends its turn inside an object.The ghost can move through other creatures and objects as if they were difficult terrain.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LUHmtIDD1VTreFqI"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wdOqdYfLb2Nu1Uud","name":"Withering Touch","type":"weapon","img":"icons/magic/unholy/strike-hand-glow-pink.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 17 (4d6 + 3) necrotic damage.The Ghost attacks with its Withering Touch.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6+@mod","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WyxVuCp4iU10bA7m","name":"Etherealness","type":"feat","img":"icons/magic/unholy/barrier-shield-glowing-pink.webp","system":{"description":{"value":"The ghost enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.rDoNJnKdY47x8MD4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lOzkFHeXCdO2FB9X","name":"Horrifying Visage","type":"feat","img":"icons/magic/death/projectile-skull-fire-purple.webp","system":{"description":{"value":"Each non-undead creature within 60 ft. of the ghost that can see it must succeed on a DC 13 Wisdom saving throw or be frightened for 1 minute. If the save fails by 5 or more, the target also ages 1d4 x 10 years. A frightened target can repeat the saving throw at the end of each of its turns, ending the frightened condition on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this ghost's Horrifying Visage for the next 24 hours. The aging effect can be reversed with a greater restoration spell, but only within 24 hours of it occurring.Each non-undead creature within 60 ft. of the ghost that can see it must succeed make a Wisdom saving throw. A target can repeat the saving throw at the end of each of its turns, ending the condition on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.lBN86BToCJgkakL3"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"UF0mfYsgI4ay6mzv","name":"Possession","type":"feat","img":"icons/magic/control/fear-fright-monster-grin-purple-blue.webp","system":{"description":{"value":"One humanoid that the ghost can see within 5 ft. of it must succeed on a DC 13 Charisma saving throw or be possessed by the ghost; the ghost then disappears, and the target is incapacitated and loses control of its body. The ghost now controls the body but doesn't deprive the target of awareness. The ghost can't be targeted by any attack, spell, or other effect, except ones that turn undead, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being charmed and frightened. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.The possession lasts until the body drops to 0 hit points, the ghost ends it as a bonus action, or the ghost is turned or forced out by an effect like the dispel evil and good spell. When the possession ends, the ghost reappears in an unoccupied space within 5 ft. of the body. The target is immune to this ghost's Possession for 24 hours after succeeding on the saving throw or after the possession ends.One humanoid that the ghost can see within 5 ft. of it must make a Charisma saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"spec"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":6,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.NI3FPb5jQsePdlVl"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233196,"modifiedTime":1672596107399,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qrasJNDC7SGj7xzG","name":"Young Red Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":21,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":178,"min":0,"max":178,"temp":0,"tempmax":0,"formula":"17d10 + 85"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":40,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":10,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Young Red Dragon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"KuuOPjJ1YeTtjGbN","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 3 (1d6) fire damage.The Young Red Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"The dragon snaps its mighty jaws shut!","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["1d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3UHmbpT3v3FTlplI","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.The Young Red Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nWjLJm6ErLvCUvun","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.The dragon exhales fire in a 30-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["16d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":17,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uwDyoGhbCR8NoRmc","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233197,"modifiedTime":1672596107445,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rLl22hYeAH3ljhdI","name":"Giant Fly","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":19,"min":0,"max":19,"temp":0,"tempmax":0,"formula":"3d10 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":60,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Fly","displayName":0,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"dim":0,"bright":0,"angle":360,"alpha":1,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"color":null,"coloration":1,"attenuation":0.5,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"darkness":{"min":0,"max":1}},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233200,"modifiedTime":1672596107483,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rUg5JMnKNnZNBAq9","name":"Nalfeshnee","type":"npc","img":"","system":{"abilities":{"str":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":22,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":18,"calc":"natural","formula":""},"hp":{"value":184,"min":0,"max":184,"temp":null,"tempmax":0,"formula":"16d10 + 96"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":30,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"fiend","subtype":"Demon","swarm":"","custom":""},"environment":"","cr":13,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","fire","lightning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["abyssal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Nalfeshnee","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"jZeQHAOQV365hmZF","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The nalfeshnee has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"swlYyGYwkdNzuRkG","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The nalfeshnee uses Horror Nimbus if it can. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"524dkWbpWUJKFaj2","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 32 (5d10 + 5) piercing damage.The Nalfeshnee attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d10+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"xhKo80CbyA57Kl1l","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 15 (3d6 + 5) slashing damage.The Nalfeshnee attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"RFPDYIhkmBW2B47S","name":"Horror Nimbus","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"The nalfeshnee magically emits scintillating, multicolored light. Each creature within 15 feet of the nalfeshnee that can see the light must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the nalfeshnee's Horror Nimbus for the next 24 hours.A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the nalfeshnee's Horror Nimbus for the next 24 hours.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":15,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hu2pgYS1RD7hglvg"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zK5E9yD6BR0fZRBo","name":"Teleport","type":"feat","img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","system":{"description":{"value":"The nalfeshnee magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.PPzVD90vab60FqCt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233201,"modifiedTime":1672596107525,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rb7OJt822wIO52qY","name":"Bandit Captain","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":65,"min":0,"max":65,"temp":0,"tempmax":0,"formula":"10d8 + 20"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Any Non-Lawful Alignment","race":"","type":{"value":"humanoid","subtype":"Any Race","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"any two languages"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Bandit Captain","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"8NY9Oy7LGoZ1f7gW","name":"Studded Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-rivited-red.webp","system":{"description":{"value":"Made from tough but flexible leather, studded leather is reinforced with close-set rivets or spikes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":13,"price":{"value":45,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.TIV3B1vbrVHIhQAm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"u3rhYD4gsxWEFbMc","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The captain makes three melee attacks: two with its scimitar and one with its dagger. Or the captain makes two ranged attacks with its daggers.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tSPkVJScEndipsFU","name":"Scimitar","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\nThe Bandit Captain attacks with their Scimitar.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.fbC0Mg1a73wdFbqO"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mBUKIzY6aUW5Fnlm","name":"Dagger","type":"weapon","img":"icons/weapons/daggers/dagger-jeweled-purple.webp","system":{"description":{"value":"\nMelee or Ranged Weapon Attack: +5 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 5 (1d4 + 3) piercing damage.\nThe Bandit Captain attacks with their Dagger.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.0E565kQUBmndJ1a2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mGcPB4SMyYkHFK9N","name":"Parry","type":"feat","img":"icons/skills/melee/weapons-crossed-swords-yellow-teal.webp","system":{"description":{"value":"The captain adds 2 to its AC against one melee attack that would hit it. To do so, the captain must see the attacker and be wielding a melee weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kfi26Jy0VLXv9TTm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233203,"modifiedTime":1672596107582,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rbyp54px2D0ql4QK","name":"Wight","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":45,"min":0,"max":45,"temp":null,"tempmax":0,"formula":"6d8 + 18"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":3,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","necrotic","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned","exhaustion"],"custom":""},"languages":{"value":[],"custom":"the languages it knew in life"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Wight","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"nkPIb1htkHIdbJ97","name":"Studded Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-rivited-red.webp","system":{"description":{"value":"Made from tough but flexible leather, studded leather is reinforced with close-set rivets or spikes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":13,"price":{"value":45,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":12,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.TIV3B1vbrVHIhQAm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qodTzcDY37TCj4GN","name":"Sunlight Sensitivity","type":"feat","img":"icons/magic/light/explosion-star-glow-blue-purple.webp","system":{"description":{"value":"While in sunlight, the wight has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.F14aW2Ke3I5ZtSg4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fKIUImfcNk0pU2HN","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The wight makes two longsword attacks or two longbow attacks. It can use its Life Drain in place of one longsword attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"PUYwkzEiKopyM6YL","name":"Longbow","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"\nRanged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n\nThe Wight attacks with its Longbow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.3cymOVja8jXbzrdT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WZ3XGh48UoyAvBhS","name":"Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 6 (1d8 + 2) slashing damage, or 7 (1d10 + 2) slashing damage if used with two hands.\n\nThe Wight attacks with its Longsword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":"1d10 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"NX8cqG6aZMns8wvY","name":"Life Drain","type":"weapon","img":"icons/magic/unholy/strike-hand-glow-pink.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 5 (1d6 + 2) necrotic damage.\nThe target must succeed on a DC 13 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\nA humanoid slain by this attack rises 24 hours later as a zombie under the wight's control, unless the humanoid is restored to life or its body is destroyed. The wight can have no more than twelve zombies under its control at one time.\n\nThe Wight attacks with its Life Drain. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233205,"modifiedTime":1672596107628,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rjqk7ToMD8sGr3n4","name":"Giant Goat","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":19,"min":0,"max":19,"temp":0,"tempmax":0,"formula":"3d10 + 3"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":0.5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Goat","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"dBII3VhTvg43aTUI","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nIf the goat moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 5 (2d4) bludgeoning damage.\nIf the target is a creature, it must succeed on a DC 13 Strength saving throw or be knocked prone.\n\nIf the goat moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes a extra bludgeoning damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"Goat","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kqrWunjvDSHdnPmW","name":"Sure-Footed","type":"feat","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"The goat has advantage on Strength and Dexterity saving throws made against effects that would knock it prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nJHx2fudYhZeexDP"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"t8cKnWGtgVCfhW5v","name":"Ram","type":"weapon","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 8 (2d4 + 3) bludgeoning damage.\nThe Giant Goat attacks with its Ram.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233206,"modifiedTime":1672596107673,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"rz8UTUnFT87BsAFR","name":"Riding Horse","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":13,"min":0,"max":13,"temp":0,"tempmax":0,"formula":"2d10 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":60,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Riding Horse","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"alpha":1,"light":{"alpha":0.5,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"reverse":false,"type":null},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.3},"disposition":-1,"displayBars":0,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"CwpmLFcikAet169F","name":"Hooves","type":"weapon","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 8 (2d4 + 3) bludgeoning damage.\nThe Riding Horse attacks with its Hooves.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233208,"modifiedTime":1672596107713,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"sApYLZj9PTZ40wJr","name":"Earth Elemental","type":"npc","img":"","system":{"abilities":{"str":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":126,"min":0,"max":126,"temp":null,"tempmax":0,"formula":"12d10 + 60"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":30,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":60,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":["thunder"],"bypasses":[],"custom":""},"ci":{"value":["paralyzed","petrified","poisoned","unconscious","exhaustion"],"custom":""},"languages":{"value":["terran"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Earth Elemental","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Ctnlm397G5vkwWA4","name":"Earth Glide","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The elemental can burrow through nonmagical, unworked earth and stone. While doing so, the elemental doesn't disturb the material it moves through.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yrpqazOHqI4BrYW4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1fGoFeub69Dueemk","name":"Siege Monster","type":"feat","img":"icons/creatures/magical/construct-iron-stomping-yellow.webp","system":{"description":{"value":"The elemental deals double damage to objects and structures.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.cSA0EbjlxCbst4gJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"A8nxS57cG2yZpu1m","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The elemental makes two slam attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2AD5aTLMPDmQFhGZ","name":"Slam","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"Melee Weapon Attack:+8 to hit,, 10 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.The Earth Elemental attacks with its Slam.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+@mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233209,"modifiedTime":1672596107754,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"sLdpiuaZF8lujJQy","name":"Barbed Devil","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"dex":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":110,"min":0,"max":110,"temp":null,"tempmax":0,"formula":"13d8 + 52"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"Devil","swarm":"","custom":""},"environment":"","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["infernal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Barbed Devil","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"8QaMc1baRrSlLFXN","name":"Barbed Hide","type":"feat","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"At the start of each of its turns, the barbed devil deals 5 (1d10) piercing damage to any creature grappling it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.QMGBV7OSnXqWLdhr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wPHhtm2eyM9LKpT4","name":"Devil's Sight","type":"feat","img":"icons/magic/perception/eye-slit-pink.webp","system":{"description":{"value":"Magical darkness doesn't impede the devil's Darkvision.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"f3ItDDfd5L4WMGlf","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The devil has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JbDDt9MNYFyEbHsm","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The devil makes three melee attacks: one with its tail and two with its claws. Alternatively, it can use Hurl Flame twice.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pya9jchjLkwMedEr","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack: +6 to hit, reach 5 ft ., one target. Hit: 6 (1d6 + 3) piercing damage.\nThe Barbed Devil attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mlWql992zSZ6hvl6","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\nThe Barbed Devil attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"syCZDlwGoyT1GvJv","name":"Hurl Flame","type":"weapon","img":"icons/magic/fire/blast-jet-stream-splash.webp","system":{"description":{"value":"\nRanged Spell Attack:+5 to hit,, 150 ft., one target. Hit: 10 (3d6) fire damage.\nIf the target is a flammable object that isn't being worn or carried, it also catches fire.\n\nThe Barbed Devil attacks with its Hurl Flame. If the target is a flammable object that isn't being worn or carried, it also catches fire.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":true,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233211,"modifiedTime":1672596107819,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"saq6WM959pKHuaqP","name":"Green Hag","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":82,"min":0,"max":82,"temp":0,"tempmax":0,"formula":"11d8 + 33"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"fey","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":3,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic","sylvan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Green Hag","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"TwdKEVj1NjVefyq9","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The hag can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9HX1VdEInbRUnBVL","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The hag's innate spellcasting ability is Charisma (spell save DC 12). She can innately cast the following spells, requiring no material components:\nAt will: dancing lights, minor illusion, vicious mockery","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"C2ZJ3Oe30dyU2o7E","name":"Mimicry","type":"feat","img":"icons/creatures/birds/corvid-flying-wings-purple.webp","system":{"description":{"value":"The hag can mimic animal sounds and humanoid voices. A creature that hears the sounds can tell they are imitations with a successful DC 14 Wisdom (Insight) check.The hag can mimic animal sounds and humanoid voices. A creature that hears the sounds can tell they are imitations with a successful Wisdom (Insight) check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zZkNtL97hn1P6OJC"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gtixTr9i63RtsSCv","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.The Green Hag attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"cvdyEyn0s7hKwIcN","name":"Illusory Appearance","type":"feat","img":"icons/creatures/mammals/humanoid-cat-skulking-teal.webp","system":{"description":{"value":"The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like another creature of her general size and humanoid shape. The illusion ends if the hag takes a bonus action to end it or if she dies.\nThe changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have smooth skin, but someone touching her would feel her rough flesh. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 20 Intelligence (Investigation) check to discern that the hag is disguised.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.s7kqggp9VLDb39nu"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Cdis1lnjFvqfoScV","name":"Invisible Passage","type":"feat","img":"icons/magic/perception/silhouette-stealth-shadow.webp","system":{"description":{"value":"The hag magically turns invisible until she attacks or casts a spell, or until her concentration ends (as if concentrating on a spell). While invisible, she leaves no physical evidence of her passage, so she can be tracked only by magic. Any equipment she wears or carries is invisible with her.The hag magically turns invisible. Any equipment she wears or carries is invisible with her.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FRIASnssihfMTZ7q"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CAxSzHWizrafT033","name":"Dancing Lights","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create up to four torch-sized lights within range, making them appear as torches, lanterns, or glowing orbs that hover in the air for the duration. You can also combine the four lights into one glowing vaguely humanoid form of Medium size. Whichever form you choose, each light sheds dim light in a 10-foot radius.As a bonus action on your turn, you can move the lights up to 60 feet to a new spot within range. A light must be within 20 feet of another light created by this spell, and a light winks out if it exceeds the spell's range.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of phosphorus or wychwood, or a glowworm","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.CAxSzHWizrafT033"}},"img":"icons/magic/fire/projectile-meteor-salvo-strong-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234094,"modifiedTime":1661791116911,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"oIzA2MEHwxhtQneU","name":"Minor Illusion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a sound or an image of an object within range that lasts for the duration. The illusion also ends if you dismiss it as an action or cast this spell again.If you create a sound, its volume can range from a whisper to a scream. It can be your voice, someone else's voice, a lion's roar, a beating of drums, or any other sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends.If you create an image of an object—such as a chair, muddy footprints, or a small chest—it must be no larger than a 5-foot cube. The image can't create sound, light, smell, or any other sensory effect. Physical interaction with the image reveals it to be an illusion, because things can pass through it.If a creature uses its action to examine the sound or image, the creature can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the illusion becomes faint to the creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"cube"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":12,"scaling":"spell"},"level":0,"school":"ill","components":{"vocal":false,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of fleece.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.oIzA2MEHwxhtQneU"}},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234224,"modifiedTime":1661791116912,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"cdrYKaFi98YWaBMw","name":"Vicious Mockery","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You unleash a string of insults laced with subtle enchantments at a creature you can see within range. If the target can hear you (though it need not understand you), it must succeed on a Wisdom saving throw or take 1d4 psychic damage and have disadvantage on the next attack roll it makes before the end of its next turn.This spell's damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","psychic"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":12,"scaling":"spell"},"level":0,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.cdrYKaFi98YWaBMw"}},"img":"icons/skills/toxins/cup-goblet-poisoned-spilled.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234175,"modifiedTime":1661791116912,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233213,"modifiedTime":1672596107911,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"shhHtE7b92PefCWB","name":"Aboleth","type":"npc","img":"","system":{"abilities":{"str":{"value":21,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":135,"min":0,"max":135,"temp":0,"tempmax":0,"formula":"18d10 + 36"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"aberration","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":10,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["deep"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":2,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":0,"max":0},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Aboleth","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":true,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"Wpa7li8EJJJ7W3kA","name":"Enslave","type":"feat","img":"icons/magic/control/hypnosis-mesmerism-watch.webp","system":{"description":{"value":"\nThe aboleth targets one creature it can see within 30 ft. of it. The target must succeed on a DC 14 Wisdom saving throw or be magically charmed by the aboleth until the aboleth dies or until it is on a different plane of existence from the target.\nThe charmed target is under the aboleth's control and can't take reactions, and the aboleth and the target can communicate telepathically with each other over any distance.Whenever the charmed target takes damage, the target can repeat the saving throw. On a success, the effect ends. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the aboleth.\n\nThe target must make a Wisdom saving throw. Whenever the target takes damage, the target can repeat the saving throw. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the aboleth.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":3,"max":"3","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":14,"scaling":"wis"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.gbcy9MyUF06iUC88"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eK34LWjCZnoLqUbv","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"The aboleth makes a Wisdom (Perception) check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":"wis","actionType":"abil","attackBonus":"","chatFlavor":"The aboleth focuses its gaze!","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"d20+@skills.prc.total","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"nb2rVHLawik6EjMJ","name":"Tail Swipe","type":"feat","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nThe aboleth makes one tail attack.\n\nThe aboleth swipes its tail against its prey!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SCTJPlV2KrhVflgI","name":"Psychic Drain","type":"feat","img":"icons/magic/death/projectile-skull-flaming-green.webp","system":{"description":{"value":"One creature charmed by the aboleth takes 10 (3d6) psychic damage, and the aboleth regains hit points equal to the damage the creature takes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","psychic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.OejKD6LitlURecxp"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dZWUNgKiLNxVg983","name":"Mucous Cloud","type":"feat","img":"icons/magic/water/bubbles-air-water-blue.webp","system":{"description":{"value":"\nWhile underwater, the aboleth is surrounded by transformative mucus. A creature that touches the aboleth or that hits it with a melee attack while within 5 ft. of it must make a DC 14 Constitution saving throw. On a failure, the creature is diseased for 1d4 hours. The diseased creature can breathe only underwater.\n\nWhile underwater, the aboleth is surrounded by transformative mucus. A creature that touches the aboleth or that hits it with a melee attack while within 5 ft. of it must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"con","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.HMOOZRxolMmv91xm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"R5sQYgehDyPiDyyE","name":"Probing Telepathy","type":"feat","img":"icons/magic/defensive/illusion-evasion-echo-purple.webp","system":{"description":{"value":"If a creature communicates telepathically with the aboleth, the aboleth learns the creature's greatest desires if the aboleth can see the creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iDem2vV36tRkZUx0"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sgauK8Lyt8qxsxOH","name":"Tentacle","type":"weapon","img":"icons/creatures/tentacles/tentacles-thing-green.webp","system":{"description":{"value":"\nMelee Weapon Attack:+9 to hit,, 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage.\nIf the target is a creature, it must succeed on a DC 14 Constitution saving throw or become diseased. The disease has no effect for 1 minute and can be removed by any magic that cures disease. After 1 minute, the diseased creature gains Tentacle Disease.\n\nThe Aboleth attacks with its Tentacle. If the target is a creature, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FwOZEwx7MPDq8Igu","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"\nMelee Weapon Attack: +9 to hit, reach 10 ft. one target. Hit: 15 (3d6 + 5) bludgeoning damage.\n\nThe Aboleth attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"fI8m07LnyCCdsSpn","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The aboleth can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Lnp6wFaKnkpuWJs2","name":"Tentacle Disease","type":"feat","img":"icons/magic/acid/projectile-glowing-bubbles.webp","system":{"description":{"value":"\nAfter 1 minute, the diseased creature's skin becomes translucent and slimy, the creature can't regain hit points unless it is underwater, and the disease can be removed only by heal or another disease-curing spell of 6th level or higher. When the creature is outside a body of water, it takes 6 (1d12) acid damage every 10 minutes unless moisture is applied to the skin before 10 minutes have passed.\n\nYou feel a surging pain rushing through your body!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.y18y37F8ppFLGuLb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5zfFkWqOMddCmxiR","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The aboleth makes three tentacle attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7GePgmNDyzzHHCKS","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SHlQeobxHZU6iQ24","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe aboleth can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The aboleth regains spent legendary actions at the start of its turn.\n\nThe aboleth can take 3 legendary actions.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"a4mvD9abiTdVlDIh","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233214,"modifiedTime":1672596108032,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"siBUEAj4UVdaiH6p","name":"Hunter Shark","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":45,"min":0,"max":45,"temp":0,"tempmax":0,"formula":"6d10 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":40,"walk":0,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underwater","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Hunter Shark","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":30,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"nobk1ka9lHYyoww0","name":"Blood Frenzy","type":"feat","img":"icons/skills/wounds/blood-spurt-spray-red.webp","system":{"description":{"value":"The shark has advantage on melee attack rolls against any creature that doesn't have all its hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.B2kZOyrB7poB4liR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"QX33CsCo431JxQxy","name":"Water Breathing","type":"feat","img":"icons/magic/water/projectile-water-ice-orb.webp","system":{"description":{"value":"The shark can breathe only underwater.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.c4Q6NDCLJSNcNc9T"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KcQolnG6732GPN3o","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.\nThe Hunter Shark attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233217,"modifiedTime":1672596108078,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"t8WYD7ak07X7xpx8","name":"Mummy","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":11,"calc":"natural","formula":""},"hp":{"value":58,"min":0,"max":58,"temp":null,"tempmax":0,"formula":"9d8 + 18"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":20,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"int"},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"","cr":3,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["necrotic","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":["fire"],"bypasses":[],"custom":""},"ci":{"value":["charmed","exhaustion","frightened","paralyzed","poisoned"],"custom":""},"languages":{"value":[],"custom":"the languages it knew in life"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Mummy","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"uGJpXeUbei6zXTd1","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The mummy can use its Dreadful Glare and makes one attack with its rotting fist.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ik1IkSZi4fpiGbB3","name":"Rotting Fist","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage plus 10 (3d6) necrotic damage. If the target is a creature, it must succeed on a DC 12 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.The Mummy attacks with its Rotting Fist. If the target is a creature, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6+@mod","bludgeoning"],["3d6","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":12,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8Jju4CVZaIDab6Ju","name":"Dreadful Glare","type":"feat","img":"icons/magic/perception/hand-eye-pink.webp","system":{"description":{"value":"The mummy targets one creature it can see within 60 ft. of it. If the target can see the mummy, it must succeed on a DC 11 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies (but not mummy lords) for the next 24 hours.The mummy targets one creature it can see within 60 ft. of it. If the target can see the mummy, it must make a Wisdom saving throw against this magic.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":11,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.H306eluIH47Wfr0U"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233218,"modifiedTime":1672596108118,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"tFJX45zj3QDc3Zli","name":"Grick","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":27,"min":0,"max":27,"temp":null,"tempmax":0,"formula":"6d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Grick","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"mZf3scqsBLavvot1","name":"Stone Camouflage","type":"feat","img":"icons/environment/settlement/stone-stairs.webp","system":{"description":{"value":"The grick has advantage on Dexterity (Stealth) checks made to hide in rocky terrain.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.j1cPfWFNvxGoex9Z"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"dw5lQaT8ySNuOVd4","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The grick makes one attack with its tentacles. If that attack hits, the grick can make one beak attack against the same target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tkVlxJxg4LBVJvuX","name":"Tentacles","type":"weapon","img":"icons/creatures/tentacles/tentacles-thing-green.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage.The Grick attacks with its Tentacles.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nKpLMXS9E10TSGhU"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AGLjE9RSCjg1vQ6R","name":"Beak","type":"weapon","img":"icons/commodities/bones/beak-hooked-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.The Grick attacks with its Beak.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233220,"modifiedTime":1672596108164,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"tYYoifu9teGLetVI","name":"Saber-Toothed Tiger","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":52,"min":0,"max":52,"temp":0,"tempmax":0,"formula":"7d10 + 14"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Saber-Toothed Tiger","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"1GpwqMUVXUhKvZSS","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The tiger has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6f3yWYLcONtKe72e","name":"Pounce","type":"feat","img":"icons/creatures/abilities/cougar-pounce-stalk-black.webp","system":{"description":{"value":"\nIf the tiger moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a DC 14 Strength saving throw or be knocked prone.\nIf the target is prone, the lion can make one bite attack against it as a bonus action.\n\nIf the tiger moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must make a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.MqAVplIArAKzpnXB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"npiswgaiGzupcEmw","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 10 (1d10 + 5) piercing damage.\nThe Saber-Toothed Tiger attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod + 1","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"I9zJprscDFYpwwJR","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.\nThe Saber-Toothed Tiger attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod + 1","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233221,"modifiedTime":1672596108207,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"tYfQIxCJT0WaaKmc","name":"Cult Fanatic","type":"npc","img":"","system":{"abilities":{"str":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":null,"calc":"default","formula":""},"hp":{"value":33,"min":0,"max":33,"temp":0,"tempmax":0,"formula":"6d8 + 6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"wis"},"details":{"biography":{"value":"","public":""},"alignment":"Any Non-Good","race":"","type":{"value":"humanoid","subtype":"Any Race","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":4,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"any one language (usually Common)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":4,"override":4},"spell2":{"value":3,"override":3},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Cult Fanatic","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"vTb2KSllrajm88Ni","name":"Leather Armor","type":"equipment","img":"icons/equipment/chest/breastplate-quilted-brown.webp","system":{"description":{"value":"The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":10,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":null,"attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":11,"type":"light","dex":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"baseItem":"","speed":{"value":null,"conditions":""},"strength":null,"stealth":false,"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.WwdpHLXGX5r8uZu5"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lSteE7vBmM70Jy3Z","name":"Dark Devotion","type":"feat","img":"icons/magic/control/control-influence-rally-purple.webp","system":{"description":{"value":"The fanatic has advantage on saving throws against being charmed or frightened.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.XFvk6ywwZWTkMmQR"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KRbUbk5AkQOabBhO","name":"Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"\nThe fanatic is a 4th-level spellcaster. Its spell casting ability is Wisdom (spell save DC 11, +3 to hit with spell attacks).\nThe fanatic has the following cleric spells prepared:\nCantrips (at will): light, sacred flame, thaumaturgy\n1st level (4 slots): command, inflict wounds, shield of faith\n 2nd level (3 slots): hold person, spiritual weapon\n\nThe fanatic is a spellcaster. Its spell casting ability is Wisdom.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"WfqCnxOUS8aXxd7O","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The fanatic makes two melee attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"zTX7ZTUkqUMSbGII","name":"Dagger","type":"weapon","img":"icons/weapons/daggers/dagger-jeweled-purple.webp","system":{"description":{"value":"\nMelee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one creature. Hit: 4 (1d4 + 2) piercing damage.\nThe Cult Fanatic attacks with their Dagger.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"fin":true,"lgt":true,"thr":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.0E565kQUBmndJ1a2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Bnn9Nzajixvow9xi","name":"Light","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":11,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A firefly or phosphorescent moss.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.Bnn9Nzajixvow9xi"}},"img":"icons/magic/light/explosion-star-small-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234093,"modifiedTime":1661791116930,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"n9pJzTDsAwQxJVRl","name":"Sacred Flame","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Flame-like radiance descends on a creature that you can see within range. The target must succeed on a Dexterity saving throw or take 1d8 radiant damage. The target gains no benefit from cover for this saving throw.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":11,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.n9pJzTDsAwQxJVRl"}},"img":"icons/magic/light/beam-rays-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234221,"modifiedTime":1661791116930,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"MUO1uYN7JR1hm4dR","name":"Thaumaturgy","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create one of the following magical effects within range:\n\nYour voice booms up to three times as loud as normal for 1 minute.\nYou cause flames to flicker, brighten, dim, or change color for 1 minute.\nYou cause harmless tremors in the ground for 1 minute.\nYou create a sound that originates from a point of your choice within range.\nYou cause an unlocked door or window to fly open or slam shut.\nYou alter the appearance of your eyes for 1 minute.\n\nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR"}},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234127,"modifiedTime":1661791116931,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"arzCrMRgcNiQuh43","name":"Command","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You speak a one-word command to a creature you can see within range. The target must succeed on a Wisdom saving throw or follow the command on its next turn. The spell has no effect if the target is undead, if it doesn't understand your language, or if your command is directly harmful to it.Some typical commands and their effects follow. You might issue a command other than one described here. If you do so, the DM determines how the target behaves. If the target can't follow your command, the spell ends.Approach. The target moves toward you by the shortest and most direct route, ending its turn if it moves within 5 feet of you.Drop. The target drops whatever it is holding and then ends its turn.Flee. The target spends its turn moving away from you by the fastest available means.Grovel. The target falls prone and then ends its turn.Halt. The target doesn't move and takes no actions. A flying creature stays aloft, provided that it is able to do so. If it must move to stay aloft, it flies the minimum distance needed to remain in the air.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":11,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.arzCrMRgcNiQuh43"}},"img":"icons/magic/fire/explosion-fireball-small-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234169,"modifiedTime":1661791116931,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ksaaTxIbKx2sJfia","name":"Inflict Wounds","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Make a melee spell Attack against a creature you can reach. On a hit, the target takes 3d10 necrotic damage.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d10 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":"1d10"}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ksaaTxIbKx2sJfia"}},"img":"icons/magic/unholy/strike-beam-blood-red-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234216,"modifiedTime":1661791116932,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"jZ6JNykRtdQ90MOo","name":"Shield of Faith","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A shimmering field appears and surrounds a creature of your choice within range, granting it a +2 bonus to AC for the duration.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small parchment with a bit of holy text written on it.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.jZ6JNykRtdQ90MOo"}},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234212,"modifiedTime":1661791116932,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"3Lo9boi7P2ro6QV4","name":"Hold Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a humanoid that you can see within range. The target must succeed on a Wisdom saving throw or be paralyzed for the duration. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional humanoid for each slot level above 2nd. The humanoids must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":11,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small, straight piece of iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.3Lo9boi7P2ro6QV4"}},"img":"icons/magic/control/debuff-chains-ropes-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234063,"modifiedTime":1661791116932,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"JbxsYXxSOTZbf9I0","name":"Spiritual Weapon","type":"spell","img":"icons/magic/fire/dagger-rune-enchant-flame-purple.webp","system":{"description":{"value":"You create a floating, spectral weapon within range that lasts for the duration or until you cast this spell again. When you cast the spell, you can make a melee spell attack against a creature within 5 feet of the weapon. On a hit, the target takes force damage equal to 1d8 + your spellcasting ability modifier.As a bonus action on your turn, you can move the weapon up to 20 feet and repeat the attack against a creature within 5 feet of it.The weapon can take whatever form you choose. Clerics of deities who are associated with a particular weapon (as St. Cuthbert is known for his mace and Thor for his hammer) make this spell's effect resemble that weapon.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for every two slot levels above the 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"square"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["floor(@item.level / 2)d8 + @mod","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.JbxsYXxSOTZbf9I0"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234115,"modifiedTime":1661791116932,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233223,"modifiedTime":1672596108311,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"tubcO7kaQ4w0soxS","name":"Lemure","type":"npc","img":"","system":{"abilities":{"str":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":7,"calc":"natural","formula":""},"hp":{"value":13,"min":0,"max":13,"temp":0,"tempmax":0,"formula":"3d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":15,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"fiend","subtype":"Devil","swarm":"","custom":""},"environment":"","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["cold"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","poisoned"],"custom":""},"languages":{"value":["infernal","custom"],"custom":"Cannot Speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Lemure","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.3},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"zEGUljO44aDmj8z5","name":"Devil's Sight","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"Magical darkness doesn't impede the lemure's darkvision.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Lemure","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7gfe5c1qGIvai12V","name":"Hellish Rejuvenation","type":"feat","img":"icons/skills/wounds/anatomy-organ-heart-red.webp","system":{"description":{"value":"\nA lemure that dies in the Nine Hells sometimes comes back to comes back to life with all its hit points in 1d10 days unless it is killed by a good-aligned creature with a bless spell cast on that creature or its remains are sprinkled with holy water.\n\nA lemure that dies in the Nine Hells sometimes comes back to life.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d10","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Lemure","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.XmLuhZYd9WnCWBlU"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TypCj0S846TqsHzI","name":"Fist","type":"weapon","img":"icons/magic/fire/flame-burning-fist-strike.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 2 (1d4) bludgeoning damage.\nThe Lemure attacks with its Fist.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"1","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233226,"modifiedTime":1672596108358,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"u0FWdplSOMTXGnN1","name":"Ancient Copper Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":27,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":25,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":21,"calc":"natural","formula":""},"hp":{"value":350,"min":0,"max":350,"temp":0,"tempmax":0,"formula":"20d20 +140"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":40,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Good","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Hill","cr":21,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"grg","di":{"value":["acid"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Ancient Copper Dragon","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"1sKXBcJq4vo5LyOB","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ztuakGSKlE6QF2MC","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hGGrGcyo6L62I2rM","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CXPSEbsRqSkZnER8","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"eCpXCLFLV7W22orV","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+15 to hit,, 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.The Ancient Copper Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lsey8RJZiuByt97z","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+15 to hit,, 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.The Ancient Copper Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SvpSnbfGzHw6dW0p","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+15 to hit,, 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.The Ancient Copper Dragon attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"YkCurZ53A7ciRit3","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":19,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gkVpkxWRXjzllWOH","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8GXBUXkbu1e62ZDK","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"O2pIuhKov4RccvzH","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"oSQ8xmkOOeRaSlFz","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"sacY5ISgjFZCSNUi","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 23 Dexterity saving throw or take 15 ([[/r 2d6+8]]) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":23,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"TXjalusRqJTJKFCq","name":"Breath Weapons","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\nThe dragon uses one of the following breath weapons.\n**Acid Breath.** The dragon exhales acid in an 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 63 (14d8) acid damage on a failed save, or half as much damage on a successful one.\n**Slowing Breath.** The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 22 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n\nThe dragon breathes in!","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.KcUjvqIXZI3APp5a"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gWVU1Bt1WhK9lLEf","name":"Acid Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"\n**Acid Breath.** The dragon exhales acid in an 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 63 (14d8) acid damage on a failed save, or half as much damage on a successful one.\n\nThe dragon exhales acid in an 90-foot line that is 10 feet wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["14d8","acid"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":22,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zjcGly9P3Gn9MXt7"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"B8O16TZ5LWWKc4a4","name":"Slowing Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\n**Slowing Breath.** The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 22 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n\nThe dragon exhales gas in a 90-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":22,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JRy507rS9wxT3GBh"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233228,"modifiedTime":1672596108451,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"u1UQfHutP5eEKkjM","name":"Young White Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":133,"min":0,"max":133,"temp":0,"tempmax":0,"formula":"14d10 + 56"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":20,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":30,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Arctic","cr":6,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["cold"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Young White Dragon","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"qFfEF7lLt2kH3RbA","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) cold damage.The Young White Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"The dragon opens its wide mouth to bite its foe.","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["1d8","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"d9xXEIYNNQjIMGF8","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.The Young White Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"The dragon strikes with one of its claws.","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"78LbjdfWaZcAqVE7","name":"Cold Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 15 Constitution saving throw, taking 45 (10d8) cold damage on a failed save, or half as much damage on a successful one.The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"The dragon exhales its deadly breath attack.","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d8","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iHOaiOqwUWIfCljJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"g2nJbBJ06mRtxEy0","name":"Ice Walk","type":"feat","img":"icons/magic/water/water-iceberg-bubbles.webp","system":{"description":{"value":"The dragon can move across and climb icy surfaces without needing to make an ability check. Additionally, difficult terrain composed of ice or snow doesn't cost it extra movement.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.YKC7pwYkJSKn1vuw"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lRFwKaRqhFY4xNhJ","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233230,"modifiedTime":1672596108500,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"uZ8NrRenwYZ4qNf6","name":"Balor","type":"npc","img":"","system":{"abilities":{"str":{"value":26,"proficient":1,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":22,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":22,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":19,"calc":"natural","formula":""},"hp":{"value":262,"min":0,"max":262,"temp":null,"tempmax":0,"formula":"21d12 + 126"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":120,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"fiend","subtype":"Demon","swarm":"","custom":""},"environment":"","cr":19,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":["fire","poison"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","lightning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["abyssal"],"custom":"Telepathy 120 ft."}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Balor","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"nzkZgDrDq0RwWUao","name":"Death Throes","type":"feat","img":"icons/magic/fire/explosion-fireball-large-red-orange.webp","system":{"description":{"value":"\nWhen the balor dies, it explodes, and each creature within 30 feet of it must make a DC 20 Dexterity saving throw, taking 70 (20d6) fire damage on a failed save, or half as much damage on a successful one.\nThe explosion ignites flammable objects in that area that aren't being worn or carried, and it destroys the balor's weapons.\n\nWhen the balor dies, it explodes, and each creature within 30 feet of it must make a Dexterity saving throw. The explosion ignites flammable objects in that area that aren't being worn or carried, and it destroys the balor's weapons.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":"Upon death"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["20d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":20,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EmlE1a0rhucK2UT1"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FWSzSLqeIDq7meXC","name":"Fire Aura","type":"feat","img":"icons/magic/air/fog-gas-smoke-swirling-orange.webp","system":{"description":{"value":"\nAt the start of each of the balor's turns, each creature within 5 feet of it takes 10 (3d6) fire damage, and flammable objects in the aura that aren't being worn or carried ignite.\nA creature that touches the balor or hits it with a melee attack while within 5 feet of it takes 10 (3d6) fire damage.\n\nAt the start of each of the balor's turns, each creature within 5 feet of it takes fire damage, and flammable objects in the aura that aren't being worn or carried ignite. A creature that touches the balor or hits it with a melee attack while within 5 feet of it takes fire damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LJTY3nl1cp9go4eT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0Y2ThqWytMPb9RlR","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The balor has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5TGqX6bI8BdLEvTk","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The balor's weapon attacks are magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qzphlErr2D2mRpxT","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The balor makes two attacks: one with its longsword and one with its whip.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"mw93amZDA4ctKqvQ","name":"Teleport","type":"feat","img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","system":{"description":{"value":"The balor magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.PPzVD90vab60FqCt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6ZAh5TkiXwQMUfDB","name":"Longsword","type":"weapon","img":"icons/weapons/swords/greatsword-crossguard-steel.webp","system":{"description":{"value":"\nMelee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 21 (3d8 + 8) slashing damage plus 13 (3d8) lightning damage.\nIf the balor scores a critical hit, it rolls damage dice three times, instead of twice.\n\nThe Balor attacks with its Longsword.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8 + @mod","slashing"],["3d8","lightning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"ver":true,"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1oGgJQB1ItqyKoZ5","name":"Whip","type":"weapon","img":"icons/weapons/misc/whip-red-yellow.webp","system":{"description":{"value":"\nMelee Weapon Attack:+14 to hit,, 30 ft., one target. Hit: 15 (2d6 + 8) slashing damage plus 10 (3d6) fire damage.\nThe target must succeed on a DC 20 Strength saving throw or be pulled up to 25 feet toward the balor.\n\nThe Balor attacks with its Whip. The target must make a Strength saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"],["3d6","fire"]],"versatile":""},"formula":"","save":{"ability":"str","dc":20,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"rch":true,"amm":false,"hvy":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.QKTyxoO0YDnAsbYe"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233232,"modifiedTime":1672596108544,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"v99wOosUJjUgcUNF","name":"Giant Spider","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":14,"calc":"natural","formula":""},"hp":{"value":26,"min":0,"max":26,"temp":0,"tempmax":0,"formula":"4d10 + 4"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":1,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":2,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Spider","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"OPXUPzkwhBaLTt7a","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The spider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"1LTl2RCToU6ZLZdi","name":"Web Sense","type":"feat","img":"icons/creatures/webs/web-spider-glowing-purple.webp","system":{"description":{"value":"While in contact with a web, the spider knows the exact location of any other creature in contact with the same web.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kjF0btAMYHUAQgOt"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tEmV0HTreVHudOYa","name":"Web Walker","type":"feat","img":"icons/magic/nature/tree-bare-glow-yellow.webp","system":{"description":{"value":"The spider ignores movement restrictions caused by webbing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.zITrVwmnPpLoBZI1"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SuRAERXystPvC7Ci","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one creature. Hit: 7 (1d8 + 3) piercing damage.\nThe target must make a DC 11 Constitution saving throw, taking 9 (2d8) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but poisoned for 1 hour, even after regaining hit points, and is paralyzed while poisoned in this way.\n\nThe Giant Spider attacks with its Bite. The target must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":"2d8"},"formula":"","save":{"ability":"con","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"g7e60AxXarlQ9xQC","name":"Web","type":"feat","img":"icons/creatures/webs/web-spider-glowing-purple.webp","system":{"description":{"value":"\nRanged Weapon Attack: +5 to hit, range 30/60 ft., one creature. Hit: The target is restrained by webbing.\nAs an action, the restrained target can make a DC 12 Strength check, bursting the webbing on a success. The webbing can also be attacked and destroyed (AC 10; hp 5; vulnerability to fire damage; immunity to bludgeoning, poison, and psychic damage).\n\nThe target is restrained by webbing. As an action, the restrained target can make a Strength check, bursting the webbing on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":12,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.i8WDjw4J1gJWQmqG"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233234,"modifiedTime":1672596108588,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"vFeFRlF2FOgf2HIL","name":"Ancient Red Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":30,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":29,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":23,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":22,"calc":"natural","formula":""},"hp":{"value":546,"min":0,"max":546,"temp":0,"tempmax":0,"formula":"28d20+252"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":40,"fly":80,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":24,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"grg","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Ancient Red Dragon","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"nOBAY4ulYbWMc8Pz","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+17 to hit,, 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage plus 14 (4d6) fire damage.The Ancient Red Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["4d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"AheA06jKecElYrVt","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+17 to hit,, 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.The Ancient Red Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EjnCigBWyq30VL4S","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+17 to hit,, 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.The Ancient Red Dragon attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"LQKBexRS91dTMEKa","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wUEVmK5TEnYsMuwJ","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 91 (26d6) fire damage on a failed save, or half as much damage on a successful one.The dragon exhales fire in a 90-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["26d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CGGqslZMTHbSwRwP","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Whn4pPAB1YSnvocN","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"diR3Lju2cmIwIOyG","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rOXIh3YF5Aiu8aVC","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0fheJO7kmH1UV99g","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 25 Dexterity saving throw or take 17 ([[/r 2d6+10]]) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":25,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7WxDZHowVjqC4DfC","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"H2ocal2ApylIiTPs","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CKhSReu2mqp91FfW","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233235,"modifiedTime":1672596108681,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"vc2TAgIuq4yInjbf","name":"White Dragon Wyrmling","type":"npc","img":"","system":{"abilities":{"str":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":16,"calc":"natural","formula":""},"hp":{"value":32,"min":0,"max":32,"temp":0,"tempmax":0,"formula":"5d8 + 10"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":15,"climb":0,"fly":60,"swim":30,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["cold"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"White Dragon Wyrmling","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"5fAK2gZdIiYxLNzK","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) cold damage.The White Dragon Wyrmling attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"],["1d4","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"8ZXdgzpI6WytT63w","name":"Cold Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"The dragon exhales an icy blast of hail in a 15-foot cone. Each creature in that area must make a DC 12 Constitution saving throw, taking 22 (5d8) cold damage on a failed save, or half as much damage on a successful one.The dragon exhales an icy blast of hail in a 15-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":12,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iHOaiOqwUWIfCljJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233237,"modifiedTime":1672596108728,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"x47ZnpHfYl0ptDM9","name":"Behir","type":"npc","img":"","system":{"abilities":{"str":{"value":23,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":168,"min":0,"max":168,"temp":0,"tempmax":0,"formula":"16d12 + 64"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":40,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":90,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":11,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"huge","di":{"value":["lightning"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Behir","displayName":20,"actorLink":false,"width":3,"height":3,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":90,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"LzR8BLFWMmqI6gTl","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The behir makes two attacks: one with its bite and one to constrict.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4fNbTxkAFYHxDdJX","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 22 (3d10 + 6) piercing damage.\nThe Behir attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":true,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GCUh42hMUnKtxx8j","name":"Constrict","type":"weapon","img":"icons/creatures/reptiles/serpent-horned-green.webp","system":{"description":{"value":"\nMelee Weapon Attack: +10 to hit, reach 5 ft., one Large or smaller creature. Hit: 17 (2d10 + 6) bludgeoning damage plus 17 (2d10 + 6) slashing damage.\nThe target is grappled (escape DC 16) if the behir isn't already constricting a creature, and the target is restrained until this grapple ends.\n\nThe Behir attacks with its Constrict. The target is grappled if the Behir isn't already constricting a creature, and the target is restrained until this grapple ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","bludgeoning"],["2d10 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gjce4R2feN2UH0YE","name":"Lightning Breath","type":"feat","img":"icons/magic/lightning/bolt-strike-smoke-yellow.webp","system":{"description":{"value":"\nThe behir exhales a line of lightning that is 20 ft. long and 5 ft. wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\nThe behir exhales a line of lightning that is 20 ft. long and 5 ft. wide. Each creature in that line must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d10","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":16,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.LVnd9fq9cQj7rR0Q"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0QJeW80m89X0RLNz","name":"Swallow","type":"feat","img":"icons/creatures/abilities/mouth-teeth-tongue-purple.webp","system":{"description":{"value":"\nThe behir makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is also swallowed, and the grapple ends. While swallowed, the target is blinded and restrained, it has total cover against attacks and other effects outside the behir, and it takes 21 (6d6) acid damage at the start of each of the behir's turns. A behir can have only one creature swallowed at a time.\nIf the behir takes 30 damage or more on a single turn from the swallowed creature, the behir must succeed on a DC 14 Constitution saving throw at the end of that turn or regurgitate the creature, which falls prone in a space within 10 ft. of the behir. If the behir dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 15 ft. of movement, exiting prone.\n\nThe Behir attacks with its Swallow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.aH5ncM30tP8tPQ24"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233239,"modifiedTime":1672596108777,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xBhG7Dos3tkg9jWz","name":"Ochre Jelly","type":"npc","img":"","system":{"abilities":{"str":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":8,"calc":"natural","formula":""},"hp":{"value":45,"min":0,"max":45,"temp":0,"tempmax":0,"formula":"6d10 + 12"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":10,"fly":0,"swim":0,"walk":10,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":"Blind beyond this radius"},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"ooze","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["lightning","slashing"],"bypasses":[],"custom":""},"dr":{"value":["acid"],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["blinded","charmed","deafened","frightened","prone","exhaustion"],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Ochre Jelly","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"SYdqeemFOudCYb9E","name":"Pseudopod","type":"weapon","img":"icons/creatures/slimes/slime-movement-dripping-pseudopods-green.webp","system":{"description":{"value":"Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 9 (2d6 + 2) bludgeoning damage plus 3 (1d6) acid damage.The Ochre Jelly attacks with its Pseudopod.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"],["1d6","acid"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Rrswv9BPB94D3xHQ","name":"Amorphous","type":"feat","img":"icons/creatures/slimes/slime-movement-dripping-purple.webp","system":{"description":{"value":"The jelly can move through a space as narrow as 1 inch wide without squeezing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.3lDp8DtWwNDHSvxX"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"aaVwT7vVSywUzWhC","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The jelly can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2ifhxY5f2Xs4GMxR","name":"Split","type":"feat","img":"icons/creatures/slimes/slime-movement-pseudopod-green.webp","system":{"description":{"value":"When a jelly that is Medium or larger is subjected to lightning or slashing damage, it splits into two new jellies if it has at least 10 Hit Points. Each new jelly has Hit Points equal to half the original jelly's, rounded down. New jellies are one size smaller than the original jelly.The jelly splits into two new jellies. New jellies are one size smaller than the original jelly.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.NzHwrEuKnKxZ4NTP"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233240,"modifiedTime":1672596108817,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xple5bvGj42uGgdd","name":"Minotaur Skeleton","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":67,"min":0,"max":67,"temp":0,"tempmax":0,"formula":"9d10 + 18"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":2,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":["bludgeoning"],"bypasses":[],"custom":""},"ci":{"value":["poisoned","exhaustion"],"custom":""},"languages":{"value":["abyssal"],"custom":"understands but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Minotaur Skeleton","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"p7R5kkqAVQFKClRm","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"If the skeleton moves at least 10 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 9 (2d8) piercing damage. If the target is a creature, it must succeed on a DC 14 Strength saving throw or be pushed up to 10 feet away and knocked prone.If the skeleton moves at least 10 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes extra piercing damage. If the target is a creature, it must make a Strength saving throw or be pushed up to 10 feet away and knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","piercing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vJAkNKhTmRrz6Zoq","name":"Greataxe","type":"weapon","img":"icons/weapons/axes/axe-double.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.The Minotaur Skeleton attacks with its Greataxe.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":7,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d12+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":true,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.1Lxk6kmoRhG8qQ0u"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"3Fsct4zbAf7l47Lp","name":"Gore","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.The Minotaur Skeleton attacks with its Gore.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+@mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233242,"modifiedTime":1672596108859,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xvh2UOKv1bh03Gih","name":"Night Hag","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":112,"min":0,"max":112,"temp":null,"tempmax":0,"formula":"15d8 + 45"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"cha"},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"fiend","subtype":"","swarm":"","custom":""},"environment":"","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","cold","fire","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed"],"custom":""},"languages":{"value":["abyssal","common","infernal","primordial"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Night Hag","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"bUkTkdnQ3XbRcXkD","name":"Innate Spellcasting","type":"feat","img":"icons/magic/light/projectiles-star-purple.webp","system":{"description":{"value":"The hag's innate spellcasting ability is Charisma (spell save DC 14, +6 to hit with spell attacks). She can innately cast the following spells, requiring no material components:\nAt will: detect magic, magic missile\n2/day each: plane shift (self only), ray of enfeeblement, sleep","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9Gf1hal94HjuAHMN","name":"Plane Shift (self only)","type":"spell","img":"icons/magic/symbols/runes-star-pentagon-orange-purple.webp","system":{"description":{"value":"You and up to eight willing creatures who link hands in a circle are transported to a different plane of existence. You can specify a target destination in general terms, such as the City of Brass on the Elemental Plane of Fire or the palace of Dispater on the second level of the Nine Hells, and you appear in or near that destination. If you are trying to reach the City of Brass, for example, you might arrive in its Street of Steel, before its Gate of Ashes, or looking at the city from across the Sea of Fire, at the DM's discretion.Alternatively, if you know the sigil sequence of a teleportation circle on another plane of existence, this spell can take you to that circle. If the teleportation circle is too small to hold all the creatures you transported, they appear in the closest unoccupied spaces next to the circle.You can use this spell to banish an unwilling creature to another plane. Choose a creature within your reach and make a melee spell attack against it. On a hit, the creature must make a Charisma saving throw. If the creature fails this save, it is transported to a random location on the plane of existence you specify. A creature so transported must find its own way back to your current plane of existence.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":8,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":2,"max":"2","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":14,"scaling":"spell"},"level":7,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":250,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.J6Jpw5XzB5aTeqnz"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OMZ6qNK1bdpI8ryh","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The hag has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Um3cK4i4ZQSTqodb","name":"Claws (Hag Form Only)","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.The Night Hag attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8+@mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ftmaVOSJXvHPhraJ","name":"Change Shape","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The hag magically polymorphs into a Small or Medium female humanoid, or back into her true form. Her statistics are the same in each form. Any equipment she is wearing or carrying isn't transformed. She reverts to her true form if she dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JsAys4RSGi4lN5Jy"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"0blKOND2AnsMsZa6","name":"Etherealness","type":"feat","img":"icons/magic/unholy/barrier-shield-glowing-pink.webp","system":{"description":{"value":"The hag magically enters the Ethereal Plane from the Material Plane, or vice versa. To do so, the hag must have a heartstone in her possession.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.rDoNJnKdY47x8MD4"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"tYZggJHgAbixP5rs","name":"Nightmare Haunting","type":"feat","img":"icons/commodities/tech/smoke-bomb-purple.webp","system":{"description":{"value":"While on the Ethereal Plane, the hag magically touches a sleeping humanoid on the Material Plane. A protection from evil and good spell cast on the target prevents this contact, as does a magic circle. As long as the contact persists, the target has dreadful visions. If these visions last for at least 1 hour, the target gains no benefit from its rest, and its hit point maximum is reduced by 5 (1d10). If this effect reduces the target's hit point maximum to 0, the target dies, and if the target was evil, its soul is trapped in the hag's soul bag. The reduction to the target's hit point maximum lasts until removed by the greater restoration spell or similar magic.While on the Ethereal Plane, the hag magically touches a sleeping humanoid on the Material Plane. As long as the contact persists, the target has dreadful visions.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VbBHypDc0eLWbsNE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ghXTfe7sgCbgf1Q8"}},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234192,"modifiedTime":1661791116952,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"41JIhpDyM9Anm7cs","name":"Magic Missile","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create three glowing darts of magical force. Each dart hits a creature of your choice that you can see within range. A dart deals 1d4 + 1 force damage to its target. The darts all strike simultaneously, and you can direct them to hit one creature or several.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the spell creates one more dart for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + 1","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"atwill","prepared":true},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.41JIhpDyM9Anm7cs"}},"img":"icons/magic/fire/projectile-meteor-salvo-light-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234065,"modifiedTime":1661791116952,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"ODhLKBxLnvvLOnw1","name":"Ray of Enfeeblement","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A black beam of enervating energy springs from your finger toward a creature within range. Make a ranged spell attack against the target. On a hit, the target deals only half damage with weapon attacks that use Strength until the spell ends.At the end of each of the target's turns, it can make a Constitution saving throw against the spell. On a success, the spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":2,"max":"2","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":14,"scaling":"spell"},"level":2,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.ODhLKBxLnvvLOnw1"}},"img":"icons/magic/light/beam-rays-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234130,"modifiedTime":1661791116952,"lastModifiedBy":"dnd5ebuilder0000"}},{"_id":"KhwiSi9fwVfUPtku","name":"Sleep","type":"spell","img":"icons/magic/light/explosion-star-small-pink.webp","system":{"description":{"value":"This spell sends creatures into a magical slumber. Roll 5d8; the total is how many hit points of creatures this spell can affect. Creatures within 20 feet of a point you choose within range are affected in ascending order of their current hit points (ignoring unconscious creatures).Starting with the creature that has the lowest current hit points, each creature affected by this spell falls unconscious until the spell ends, the sleeper takes damage, or someone uses an action to shake or slap the sleeper awake. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.Undead and creatures immune to being charmed aren't affected by this spell.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d8 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":2,"max":"2","per":"day","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of fine sand, rose petals, or a cricket.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"innate","prepared":true},"scaling":{"mode":"level","formula":"2d8"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.spells.KhwiSi9fwVfUPtku"}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.0","coreVersion":"10.279","createdTime":1661787234117,"modifiedTime":1661791116953,"lastModifiedBy":"dnd5ebuilder0000"}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233243,"modifiedTime":1672596108951,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"y8sRU8Ks2lcrGsaf","name":"Goat","type":"npc","img":"","system":{"abilities":{"str":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":5,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":10,"calc":"natural","formula":""},"hp":{"value":4,"min":0,"max":4,"temp":0,"tempmax":0,"formula":"1d8"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Mountain","cr":0,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Goat","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":0,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"fmILoB0arLdodNGB","name":"Charge","type":"feat","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nIf the goat moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 2 (1d4) bludgeoning damage.\nIf the target is a creature, it must succeed on a DC 10 Strength saving throw or be knocked prone.\n\nIf the goat moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes a extra bludgeoning damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"gyY5rw0x4itzMKoj","name":"Sure-Footed","type":"feat","img":"icons/commodities/bones/hooves-cloven-brown.webp","system":{"description":{"value":"The goat has advantage on Strength and Dexterity saving throws made against effects that would knock it prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"Goat","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nJHx2fudYhZeexDP"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"I3ioyE4CVHPLGGy7","name":"Ram","type":"weapon","img":"icons/creatures/mammals/ox-bull-horned-glowing-orange.webp","system":{"description":{"value":"\nMelee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 3 (1d4 + 1) bludgeoning damage.\nThe Goat attacks with its Ram.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233245,"modifiedTime":1672596108999,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"yGTh874etxUckmAf","name":"Winter Wolf","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":75,"min":0,"max":75,"temp":0,"tempmax":0,"formula":"10d10 + 20"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":50,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Arctic","cr":3,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["cold"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common","giant","custom"],"custom":"Winter Wolf"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Winter Wolf","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"gbqFx1sEQUYQlDpJ","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The wolf has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"axhIBG9zM7Z9AHxL","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The wolf has advantage on an attack roll against a creature if at least one of the wolf's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"pu8fxDuua6ObNqtg","name":"Snow Camouflage","type":"feat","img":"icons/magic/water/barrier-ice-crystal-wall-faceted.webp","system":{"description":{"value":"The wolf has advantage on Dexterity (Stealth) checks made to hide in snowy terrain.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.jnKOUieu2UO1xHhT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5PmQuifZGbPWxAYz","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) piercing damage. If the target is a creature, it must succeed on a DC 14 Strength saving throw or be knocked prone.\n\nThe Winter Wolf attacks with its Bite. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":14,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Rj3oSInoQMIfHrPc","name":"Cold Breath","type":"feat","img":"icons/creatures/abilities/dragon-ice-breath-blue.webp","system":{"description":{"value":"\nThe wolf exhales a blast of freezing wind in a 15-foot cone. Each creature in that area must make a DC 12 Dexterity saving throw, taking 18 (4d8) cold damage on a failed save, or half as much damage on a successful one. Recharge 5-6.\nThe wolf exhales a blast of freezing wind in a 15-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"charges","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8","cold"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":12,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iHOaiOqwUWIfCljJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233247,"modifiedTime":1672596109040,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"yVNPVJIBpQ2Mp3Xa","name":"Salamander","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":14,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":90,"min":0,"max":90,"temp":null,"tempmax":0,"formula":"12d10 + 24"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"elemental","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":["cold"],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["ignan"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Salamander","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"2n8ByeQNl7QkjNVA","name":"Heated Body","type":"feat","img":"icons/creatures/abilities/mouth-teeth-fire-orange.webp","system":{"description":{"value":"A creature that touches the salamander or hits it with a melee attack while within 5 ft. of it takes 7 (2d6) fire damage.A creature that touches the salamander or hits it with a melee attack while within 5 ft. of it takes fire damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.iFNpsEMJT66eLoat"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2y0o9wGzCVoBBuDZ","name":"Heated Weapons","type":"feat","img":"icons/skills/melee/strike-weapons-orange.webp","system":{"description":{"value":"Any metal melee weapon the salamander wields deals an extra 3 (1d6) fire damage on a hit (included in the attack).Any metal melee weapon the salamander wields deals an extra fire damage on a hit (included in the attack).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.i3viKtKcSVeWLJFJ"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"H9TCRB3zfkFwk192","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The salamander makes two attacks: one with its spear and one with its tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rvRy41yt9zowrAr1","name":"Salamander - Tail","type":"weapon","img":"icons/magic/lightning/bolt-strike-smoke-yellow.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage plus 7 (2d6) fire damage.The target is grappled (escape DC 14). Until this grapple ends, the target is restrained, the salamander can automatically hit the target with its tail, and the salamander can't make tail attacks against other targets.The Salamander attacks with its Tail. The target is grappled. Until this grapple ends, the target is restrained, the salamander can automatically hit the target with its tail, and the salamander can't make tail attacks against other targets.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"],["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SKwOsrThcwqMXCZv","name":"Spear","type":"weapon","img":"icons/magic/fire/projectile-arrow-fire-red-yellow.webp","system":{"description":{"value":"\nMelee or Ranged Weapon Attack: +7 to hit, reach 5 ft. or range 20 ft./60 ft., one target. Hit: 11 (2d6 + 4) piercing damage, or 13 (2d8 + 4) piercing damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.\nThe Salamander attacks with its Spear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","piercing"],["1d6","fire"]],"versatile":"2d8 + @mod"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"simpleM","baseItem":"","properties":{"thr":true,"ver":true,"amm":false,"hvy":false,"fin":false,"fir":false,"foc":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"two":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.items.OG4nBBydvmfWYXIk"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233249,"modifiedTime":1672596109088,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"yawTeS8u2FCfzzZH","name":"Wolf","type":"npc","img":"","system":{"abilities":{"str":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":6,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":11,"min":0,"max":11,"temp":0,"tempmax":0,"formula":"2d8 + 2"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Grassland","cr":0.25,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Wolf","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":0,"brightness":1,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"z1WFJdHb8OXvW2yy","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The wolf has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GtradZW0Fk8JKMAe","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The wolf has advantage on an attack roll against a creature if at least one of the wolf's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"MuH5aMoKOyZanrFf","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (2d4 + 2) piercing damage.\nIf the target is a creature, it must succeed on a DC 11 Strength saving throw or be knocked prone.\n\nThe Wolf attacks with its Bite. If the target is a creature, it must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"str","dc":11,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233251,"modifiedTime":1672596109135,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"z0zvgcIugizwcuxJ","name":"Giant Rat (Diseased)","type":"npc","img":"","system":{"abilities":{"str":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":2,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":4,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":7,"min":0,"max":7,"temp":0,"tempmax":0,"formula":"2d6"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"beast","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":0.125,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Giant Rat (Diseased)","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"52m3BQ2wpXvT0jOM","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"\nMelee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 3 (1d4 + 2) piercing damage.\nIf the target is a creature, it must succeed on a DC 10 Constitution saving throw or contract a disease. Until the disease is cured, the target can't regain hit points except by magical means, and the target's hit point maximum decreases by 3 (1d6) every 24 hours. If the target's hit point maximum drops to 0 as a result of this disease, the target dies.\n\nThe Giant Rat (Diseased) attacks with its Bite. If the target is a creature, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":10,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"fin":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"uQpDpdmzlAyQKbRu","name":"Keen Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The rat has advantage on Wisdom (Perception) checks that rely on smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"5ZWzJ5OSQh22ueeq","name":"Pack Tactics","type":"feat","img":"icons/creatures/abilities/paw-print-orange.webp","system":{"description":{"value":"The rat has advantage on an attack roll against a creature if at least one of the rat's allies is within 5 ft. of the creature and the ally isn't incapacitated.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233253,"modifiedTime":1672596109177,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"z3gSIXHHWYaHjfBT","name":"Stone Golem","type":"npc","img":"","system":{"abilities":{"str":{"value":22,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":9,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":1,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":178,"min":0,"max":178,"temp":null,"tempmax":0,"formula":"17d10 + 85"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"construct","subtype":"","swarm":"","custom":""},"environment":"","cr":10,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["bludgeoning","piercing","poison","psychic","slashing"],"bypasses":["ada","mgc"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","exhaustion","frightened","paralyzed","petrified","poisoned"],"custom":""},"languages":{"value":[],"custom":"understands the languages of its creator but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Stone Golem","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"FWww5Mv4eoxXAADH","name":"Immutable Form","type":"feat","img":"icons/magic/unholy/orb-beam-pink.webp","system":{"description":{"value":"The golem is immune to any spell or effect that would alter its form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.MFuiImIvLzYA3osc"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kf6ELkKrSnpD2fwD","name":"Magic Resistance","type":"feat","img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","system":{"description":{"value":"The golem has advantage on saving throws against spells and other magical effects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"GGgxGpYSCDYiflMA","name":"Magic Weapons","type":"feat","img":"icons/weapons/swords/sword-runed-glowing.webp","system":{"description":{"value":"The golem's weapon attacks are magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nahRRxck9R5GVVFS"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ym2CUTgDPucdmj1W","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The golem makes two slam attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DelAxHnRbNHC6OoV","name":"Slam","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist-yellow-red.webp","system":{"description":{"value":"Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.The Stone Golem attacks with its Slam.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"9aTwUWuZQLhMxjcD","name":"Stone Golem - Slow","type":"feat","img":"icons/tools/navigation/watch-simple-blue.webp","system":{"description":{"value":"The golem targets one or more creatures it can see within 10 ft. of it. Each target must make a DC 17 Wisdom saving throw against this magic. On a failed save, a target can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the target can take either an action or a bonus action on its turn, not both. These effects last for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.The golem targets one or more creatures it can see within 10 ft. of it. Each target must make a Wisdom saving throw against this magic. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.BDnjS1sQi2pdARh8"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233254,"modifiedTime":1672596109220,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"z85EsGS2GVWj46qE","name":"Shield Guardian","type":"npc","img":"","system":{"abilities":{"str":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":8,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":18,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":142,"min":0,"max":142,"temp":0,"tempmax":0,"formula":"15d10 + 60"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"construct","subtype":"","swarm":"","custom":""},"environment":"Urban","cr":7,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["charmed","frightened","paralyzed","poisoned","exhaustion"],"custom":""},"languages":{"value":["custom"],"custom":"understands commands given in any language but can't speak"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Shield Guardian","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"mJoNsESU5X2lBKqn","name":"Bound","type":"feat","img":"icons/equipment/neck/choker-chain-thick-silver.webp","system":{"description":{"value":"The shield guardian is magically bound to an amulet. As long as the guardian and its amulet are on the same plane of existence, the amulet's wearer can telepathically call the guardian to travel to it, and the guardian knows the distance and direction to the amulet. If the guardian is within 60 feet of the amulet's wearer, half of any damage the wearer takes (rounded up) is transferred to the guardian.The shield guardian is magically bound to an amulet. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.twrIaUZ79Yn5qpML"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vk0gd3buCPWGpyYF","name":"Regeneration","type":"feat","img":"icons/skills/wounds/anatomy-organ-heart-red.webp","system":{"description":{"value":"The shield guardian regains 10 hit points at the start of its turn if it has at least 1 hit point.The shield guardian regains 10 hit points at the start of its turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Av7H0ymGdPeTsnwV"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qbSL2A0uKuh2iER5","name":"Spell Storing","type":"feat","img":"icons/magic/defensive/shield-barrier-blades-teal.webp","system":{"description":{"value":"A spellcaster who wears the shield guardian's amulet can cause the guardian to store one spell of 4th level or lower. To do so, the wearer must cast the spell on the guardian. The spell has no effect but is stored within the guardian. When commanded to do so by the wearer or when a situation arises that was predefined by the spellcaster, the guardian casts the stored spell with any parameters set by the original caster, requiring no components. When the spell is cast or a new spell is stored, any previously stored spell is lost.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.kSgBb9r1TCfDIMY0"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"7R1cDGKMv0mdxaE7","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The guardian makes two fist attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"r6GQ1TwNK7pinX0a","name":"Fist","type":"weapon","img":"icons/magic/fire/flame-burning-fist-strike.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.The Shield Guardian attacks with its Fist.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"EjeLsaCua7yjgxax","name":"Shield","type":"feat","img":"icons/equipment/shield/oval-wooden-boss-steel.webp","system":{"description":{"value":"When a creature makes an Attack against the wearer of the guardian's Amulet, the Guardian grants a +2 bonus to the wearer's AC if the Guardian is within 5 feet of the wearer.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.yHcr3vlkmtInELj2"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233256,"modifiedTime":1672596109269,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zIr3NaNF0mWz5Ahq","name":"Weretiger","type":"npc","img":"","system":{"abilities":{"str":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":15,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":10,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":13,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":12,"calc":"natural","formula":""},"hp":{"value":120,"min":0,"max":120,"temp":null,"tempmax":0,"formula":"16d8 + 48"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral","race":"","type":{"value":"humanoid","subtype":"Human, Shapechanger","swarm":"","custom":""},"environment":"Grassland","cr":4,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["bludgeoning","piercing","slashing"],"bypasses":["mgc","sil"],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["common"],"custom":"(can't speak in tiger form)"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Weretiger","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"EjU9p4Wh1U2wsnFK","name":"Shapechanger","type":"feat","img":"icons/magic/control/silhouette-hold-change-blue.webp","system":{"description":{"value":"The weretiger can use its action to polymorph into a tiger-humanoid hybrid or into a tiger, or back into its true form, which is humanoid. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies.The weretiger can use its action to polymorph, or return to its true form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"2iPYXoxM2ZReuhSL","name":"Keen Hearing and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The weretiger has advantage on Wisdom (Perception) checks that rely on hearing or smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"jW4qHQ761qRLeWM8","name":"Pounce (Tiger or Hybrid Form Only)","type":"feat","img":"icons/creatures/abilities/cougar-pounce-stalk-black.webp","system":{"description":{"value":"If the weretiger moves at least 15 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a DC 14 Strength saving throw or be knocked prone. If the target is prone, the weretiger can make one bite attack against it as a bonus action.If the target is prone, the panther can make one bite attack against it as a bonus action.If the weretiger moves at least 15 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must make a Strength saving throw or be knocked prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":14,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"SmUCt79LtakgTJoa","name":"Multiattack (Humanoid or Hybrid Form Only)","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"In humanoid form, the weretiger makes two scimitar attacks or two longbow attacks. In hybrid form, it can attack like a humanoid or make two claw attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FOkSL18gU0Sli5ZA","name":"Bite (Tiger or Hybrid Form Only)","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage. If the target is a humanoid, it must succeed on a DC 13 Constitution saving throw or be cursed with weretiger lycanthropy.The Weretiger attacks with its Bite. If the target is a humanoid, it must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"HPmjVRKpG08bgohb","name":"Claw (Tiger or Hybrid Form Only)","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage.The Weretiger attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"vtnEGCOptmp2bcqG","name":"Scimitar (Humanoid or Hybrid Form Only)","type":"weapon","img":"icons/weapons/swords/sword-katana.webp","system":{"description":{"value":"\nMelee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n\nThe Weretiger attacks with its Scimitar.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":3,"price":{"value":25,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialM","baseItem":"","properties":{"fin":true,"lgt":true,"amm":false,"fir":false,"foc":false,"hvy":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"onmNGMiE4AyvYxDQ","name":"Longbow (Humanoid or Hybrid Form Only)","type":"weapon","img":"icons/weapons/bows/longbow-leather-green.webp","system":{"description":{"value":"\nRanged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n\nThe Weretiger attacks with its Longbow.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":150,"long":600,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"rwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"martialR","baseItem":"","properties":{"amm":true,"hvy":true,"two":true,"fin":false,"fir":false,"foc":false,"lgt":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"ver":false,"lod":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233258,"modifiedTime":1672596109360,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zY3W5MG7FjssENf6","name":"Owlbear","type":"npc","img":"","system":{"abilities":{"str":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":3,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"cha":{"value":7,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":13,"calc":"natural","formula":""},"hp":{"value":59,"min":0,"max":59,"temp":0,"tempmax":0,"formula":"7d10 + 21"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Unaligned","race":"","type":{"value":"monstrosity","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":3,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"lg","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":[],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Owlbear","displayName":20,"actorLink":false,"width":2,"height":2,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"QOTQoJFlLIMWmJsu","name":"Keen Sight and Smell","type":"feat","img":"icons/creatures/mammals/wolf-howl-moon-forest-blue.webp","system":{"description":{"value":"The owlbear has advantage on Wisdom (Perception) checks that rely on sight or smell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"R7Vx1RxO8OjXpzQd","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The owlbear makes two attacks: one with its beak and one with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"CwKQlVkFc2uJW0HL","name":"Beak","type":"weapon","img":"icons/skills/wounds/bone-broken-tooth-fang-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one creature. Hit: 10 (1d10 + 5) piercing damage.The Owlbear attacks with its Beak.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FpbBzMs3wu1NK3Zu","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.The Owlbear attacks with its Claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233260,"modifiedTime":1672596109405,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zgWkII3VoE4AHCND","name":"Red Dragon Wyrmling","type":"npc","img":"","system":{"abilities":{"str":{"value":19,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":11,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":15,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":17,"calc":"natural","formula":""},"hp":{"value":75,"min":0,"max":75,"temp":0,"tempmax":0,"formula":"10d8 + 30"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":30,"fly":60,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":10,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Chaotic Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"","cr":4,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":["fire"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Red Dragon Wyrmling","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"iGge3BzjEfpSeaxP","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage plus 3 (1d6) fire damage.The Red Dragon Wyrmling attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10 + @mod","piercing"],["1d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"KVIjYSLZoYmdFwzS","name":"Fire Breath","type":"feat","img":"icons/creatures/abilities/dragon-fire-breath-orange.webp","system":{"description":{"value":"The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.The dragon exhales fire in a 15-foot cone. Each creature in that area must make a Dexterity saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["7d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233262,"modifiedTime":1672596109447,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zjqjcRWKDMc59Tnx","name":"Ancient Green Dragon","type":"npc","img":"","system":{"abilities":{"str":{"value":27,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":12,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":25,"proficient":1,"bonuses":{"check":"","save":""}},"int":{"value":20,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":17,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":19,"proficient":1,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":21,"calc":"natural","formula":""},"hp":{"value":385,"min":0,"max":385,"temp":0,"tempmax":0,"formula":"22d20+154"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":80,"swim":40,"walk":40,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":120,"blindsight":60,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Lawful Evil","race":"","type":{"value":"dragon","subtype":"","swarm":"","custom":""},"environment":"Forest","cr":22,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"grg","di":{"value":["poison"],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":["poisoned"],"custom":""},"languages":{"value":["common","draconic"],"custom":""}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":2,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":1,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":3,"max":3},"legres":{"value":3,"max":3},"lair":{"value":true,"initiative":20}}},"prototypeToken":{"name":"Ancient Green Dragon","displayName":0,"actorLink":false,"width":4,"height":4,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"resources.legact"},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":120,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"AyIhVI6Kj5ONGc6I","name":"Amphibious","type":"feat","img":"icons/environment/creatures/frog-spotted-green.webp","system":{"description":{"value":"The dragon can breathe air and water.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.4Fap14HgvAwTAZuD"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"hu8nutF4VrQWCe3U","name":"Legendary Resistance","type":"feat","img":"icons/equipment/shield/kite-wooden-oak-glow.webp","system":{"description":{"value":"If the dragon fails a saving throw, it can choose to succeed instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legres.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.J1NxNTJ2qi05iAFF"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lQLxY76Q2g6iB9UT","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"qq17e5u6Bey1aHqo","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+15 to hit,, 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 10 (3d6) poison damage.The Ancient Green Dragon attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10 + @mod","piercing"],["3d6","poison"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Ja5vvhGRJnCi9YGT","name":"Claw","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+15 to hit,, 10 ft., one target. Hit: 22 (4d6 + 8) slashing damage.The Ancient Green Dragon attacks with its Claw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"X1d4jzEXKYOuvEjT","name":"Tail","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"Melee Weapon Attack:+15 to hit,, 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.The Ancient Green Dragon attacks with its Tail.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":20,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"kZAndihX3RcDqN5P","name":"Frightful Presence","type":"feat","img":"icons/creatures/unholy/demons-horned-glowing-pink.webp","system":{"description":{"value":"Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"cha","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":19,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"4Ntr5H946Prr6gC0","name":"Poison Breath","type":"feat","img":"icons/magic/acid/projectile-smoke-glowing.webp","system":{"description":{"value":"The dragon exhales poisonous gas in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 77 (22d6) poison damage on a failed save, or half as much damage on a successful one.The dragon exhales poisonous gas in a 90-foot cone. Each creature in that area must make a Constitution saving throw.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["22d6","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":22,"scaling":"flat"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":5,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.JAEclghgOT24pQD9"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"6y5ZnqreJDNfNzBm","name":"Legendary Actions","type":"feat","img":"icons/magic/light/hand-sparks-glow-yellow.webp","system":{"description":{"value":"\nThe dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.\n\nThe dragon can take 3 legendary actions. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.terEuqr148hQBkIq"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"JYKvD7WqfnM7mgru","name":"Detect","type":"feat","img":"icons/creatures/eyes/lizard-single-slit-blue.webp","system":{"description":{"value":"\nThe dragon makes a Wisdom (Perception) check.\n\nThe dragon watches its surrounding...","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":true}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"bsXRf7yffdCDv9xp","name":"Tail Attack","type":"weapon","img":"icons/skills/wounds/injury-pain-impaled-hand-blood.webp","system":{"description":{"value":"The dragon makes a tail attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":1},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"X7cYMwpdqWU6j4kt","name":"Wing Attack","type":"weapon","img":"icons/creatures/abilities/wing-batlike-white-blue.webp","system":{"description":{"value":"The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 23 Dexterity saving throw or take 15 ([[/r 2d6+8]]) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"legendary","cost":2,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"attribute","target":"resources.legact.value","amount":2},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":23,"scaling":"flat"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"rjVthf9YEA81XZjL","name":"Lair Actions","type":"feat","img":"icons/magic/nature/stealth-hide-eyes-green.webp","system":{"description":{"value":"\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.\n\nIf a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. ","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"OoVAWU2oGYfbBuiv","name":"Regional Effects","type":"feat","img":"icons/environment/wilderness/cave-entrance-mountain-blue.webp","system":{"description":{"value":"The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233263,"modifiedTime":1672596109541,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zpaZb7I8alY32vWV","name":"Vampire Spawn","type":"npc","img":"","system":{"abilities":{"str":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"dex":{"value":16,"proficient":1,"bonuses":{"check":"","save":""}},"con":{"value":16,"proficient":0,"bonuses":{"check":"","save":""}},"int":{"value":11,"proficient":0,"bonuses":{"check":"","save":""}},"wis":{"value":10,"proficient":1,"bonuses":{"check":"","save":""}},"cha":{"value":12,"proficient":0,"bonuses":{"check":"","save":""}}},"attributes":{"ac":{"flat":15,"calc":"natural","formula":""},"hp":{"value":82,"min":0,"max":82,"temp":null,"tempmax":0,"formula":"11d8 + 33"},"init":{"ability":"","bonus":"0"},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":30,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":60,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":""},"details":{"biography":{"value":"","public":""},"alignment":"Neutral Evil","race":"","type":{"value":"undead","subtype":"","swarm":"","custom":""},"environment":"Underdark","cr":5,"spellLevel":0,"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"}},"traits":{"size":"med","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":["bludgeoning","necrotic","piercing","slashing"],"bypasses":["mgc"],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":""},"languages":{"value":["custom"],"custom":"the languages it knew in life"}},"currency":{"pp":0,"gp":0,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ath":{"value":0,"ability":"str","bonuses":{"check":"","passive":""}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"ins":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"prc":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""}},"rel":{"value":0,"ability":"int","bonuses":{"check":"","passive":""}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""}},"ste":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"legact":{"value":0,"max":0},"legres":{"value":0,"max":0},"lair":{"value":false,"initiative":null}}},"prototypeToken":{"name":"Vampire Spawn","displayName":20,"actorLink":false,"width":1,"height":1,"lockRotation":false,"rotation":0,"disposition":-1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":null},"flags":{},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"attenuation":0.5,"color":null},"texture":{"src":"","tint":null,"scaleX":1,"scaleY":1,"offsetX":0,"offsetY":0,"rotation":0},"sight":{"angle":360,"enabled":false,"range":60,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[]},"items":[{"_id":"HebvJc2NqYvdR79s","name":"Bite","type":"weapon","img":"icons/creatures/abilities/mouth-teeth-long-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 6 (1d6 + 3) piercing damage plus 7 (2d6) necrotic damage.The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.The Vampire Spawn attacks with its Bite.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6 + @mod","piercing"],["2d6","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"DY9MW3aTF5T5zhpo","name":"Claws","type":"weapon","img":"icons/skills/melee/strike-slashes-red.webp","system":{"description":{"value":"Melee Weapon Attack:+6 to hit,, 5 ft., one creature. Hit: 8 (2d4 + 3) slashing damage. The Vampire Spawn attacks with its Claws. Instead of dealing damage, the vampire can grapple the target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0,"price":{"value":0,"denomination":"gp"},"attunement":0,"equipped":true,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"mwak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4 + @mod","slashing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"weaponType":"natural","baseItem":"","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":true},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"Q9tHfkUiN6f1sguc","name":"Multiattack","type":"feat","img":"icons/skills/melee/blade-tips-triple-steel.webp","system":{"description":{"value":"The vampire makes two attacks, only one of which can be a bite attack.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"wzRyhY2I1U0ytB7D","name":"Regeneration","type":"feat","img":"icons/skills/wounds/anatomy-organ-heart-red.webp","system":{"description":{"value":"The vampire regains 10 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or running water. If the vampire takes radiant damage or damage from holy water, this trait doesn't function at the start of the vampire's next turn.The vampire regains 10 hit points at the start of its turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Av7H0ymGdPeTsnwV"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"FY5L5oISibzOxcRY","name":"Spider Climb","type":"feat","img":"icons/creatures/invertebrates/spider-beetle-runed-green.webp","system":{"description":{"value":"The vampire can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.FXHEc39G2d19opuE"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}},{"_id":"lLAigtCvoIuj0TM9","name":"Vampire Weaknesses","type":"feat","img":"icons/magic/time/day-night-sunset-sunrise.webp","system":{"description":{"value":"The vampire has the following flaws:\nForbiddance. The vampire can't enter a residence without an invitation from one of the occupants. \nHarmed by Running Water. The vampire takes 20 acid damage when it ends its turn in running water. \nStake to the Heart. The vampire is destroyed if a piercing weapon made of wood is driven into its heart while it is incapacitated in its resting place. \nSunlight Hypersensitivity. The vampire takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"","subtype":""},"requirements":"","recharge":{"value":null,"charged":false}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{"core":{"sourceId":"Compendium.dnd5e.monsterfeatures.Ervkb8H99e2Beiae"}},"_stats":{"systemId":null,"systemVersion":null,"coreVersion":null,"createdTime":null,"modifiedTime":null,"lastModifiedBy":null}}],"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787233265,"modifiedTime":1672596109590,"lastModifiedBy":"dnd5ebuilder0000"}} diff --git a/packs/races.db b/packs/races.db index 886bff5718..604db4bbd0 100644 --- a/packs/races.db +++ b/packs/races.db @@ -1,29 +1,35 @@ -{"_id":"0kUsT4sMUOr5FcoX","name":"Savage Attacks","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.Foundry NoteEnable this feature in the Special Traits section of the character sheet.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Half-Orc","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234460,"modifiedTime":1672336335924,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"6N31WSez2szqQcIQ","name":"Dwarf","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your dwarf character has an assortment of inborn abilities, part and parcel of dwarven nature.\nAbility Score Increase. Your Constitution score increases by 2.\nAge. Dwarves mature at the same rate as humans, but they're considered young until they reach the age of 50. On average, they live about 350 years.\nAlignment. Most dwarves are lawful, believing firmly in the benefits of a well-ordered society. They tend toward good as well, with a strong sense of fair play and a belief that everyone deserves to share in the benefits of a just order.\nSize. Dwarves stand between 4 and 5 feet tall and average about 150 pounds. Your size is Medium.\nSpeed. Your base walking speed is 25 feet. Your speed is not reduced by wearing heavy armor.\nDarkvision. Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.\nDwarven Resilience. @Compendium[dnd5e.races.ufysTkqet2Ctmtyi]{Dwarven Resilience} You have advantage on saving throws against poison, and you have resistance against poison damage.\nDwarven Combat Training. You have proficiency with the battleaxe, handaxe, light hammer, and warhammer.\nTool Proficiency. You gain proficiency with the artisan's tools of your choice: smith's tools, brewer's supplies, or mason's tools.\nStonecunning. @Compendium[dnd5e.races.mQPZDRbUhgYTbXKa]{Stonecunning} Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.\nLanguages. You can speak, read, and write Common and Dwarvish. Dwarvish is full of hard consonants and guttural sounds, and those characteristics spill over into whatever other language a dwarf might speak.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/shield-barrier-glowing-triangle-teal-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234462,"modifiedTime":1671220977299,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7Yoo9hG0hfPSmBoC","name":"Brave","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have advantage on saving throws against being frightened.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"You have advantage on saving throws against being frightened.","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Halfling","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234462,"modifiedTime":1672336388358,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"97c8i9Z28thvZuA8","name":"Relentless Endurance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"special","cost":null,"condition":"When you are reduced to 0 hit points"},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"lr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Half-Orc","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/control-influence-rally-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234463,"modifiedTime":1672336340150,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"A69KxdH1renVPrQV","name":"High Elf","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As a high elf, you have a keen mind and a mastery of at least the basics of magic. In many fantasy gaming worlds, there are two kinds of high elves. One type is haughty and reclusive, believing themselves to be superior to non-elves and even other elves. The other type is more common and more friendly, and often encountered among humans and other races. \nAbility Score Increase. Your Intelligence score increases by 1.\nElf Weapon Training. You have proficiency with the longsword, shortsword, shortbow, and longbow.\nCantrip. You know one cantrip of your choice from the wizard spell list. Intelligence is your spellcasting ability for it.\nExtra Language. You can speak, read, and write one extra language of your choice.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"requirements":"Elf","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/leaf-glow-maple-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234463,"modifiedTime":1671220977452,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"EHhr9umJ5kxJFCQH","name":"Gnome Cunning","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Gnome","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/hand-sparks-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234464,"modifiedTime":1672336366382,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"GH2dNne2bt1NjcJk","name":"Halfling","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your halfling character has a number of traits in common with all other halflings. \nAbility Score Increase. Your Dexterity score increases by 2.\nAge. A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.\nAlignment. Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.\nSize. Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.\nSpeed. Your base walking speed is 25 feet.\nLucky. @Compendium[dnd5e.races.LOMdcNAGWh5xpfm4]{Lucky} When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.\nBrave. @Compendium[dnd5e.races.7Yoo9hG0hfPSmBoC]{Brave} You have advantage on saving throws against being frightened.\nHalfling Nimbleness. @Compendium[dnd5e.races.PqxZgcJzp1VVgP8t]{Halfling Nimbleness} You can move through the space of any creature that is of a size larger than yours.\nLanguages. You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/lightning/bolt-forked-large-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234464,"modifiedTime":1671220977472,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"GWPjKFeIthBBeCFJ","name":"Naturally Stealthy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Lightfoot Halfling","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/silhouette-stealth-shadow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234465,"modifiedTime":1672336343080,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Hye5IZwPOSwV0qRR","name":"Half-Elf","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your half-elf character has some qualities in common with elves and some that are unique to half-elves. \nAbility Score Increase. Your Charisma score increases by 2, and two other ability scores of your choice increase by 1.\nAge. Half-elves mature at the same rate humans do and reach adulthood around the age of 20. They live much longer than humans, however, often exceeding 180 years.\nAlignment. Half-elves share the chaotic bent of their elven heritage. They value both personal freedom and creative expression, demonstrating neither love of leaders nor desire for followers. They chafe at rules, resent others' demands, and sometimes prove unreliable, or at least unpredictable.\nSize. Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.\nSpeed. Your base walking speed is 30 feet.\nDarkvision. Thanks to your elf blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.\nFey Ancestry. @Compendium[dnd5e.races.cnTbpPPeGW7vGjOV]{Fey Ancestry} You have advantage on saving throws against being charmed, and magic can't put you to sleep.\nSkill Versatility. You gain proficiency in two skills of your choice.\nLanguages. You can speak, read, and write Common, Elvish, and one extra language of your choice.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/leaf-glow-triple-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234465,"modifiedTime":1671220977496,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"K4DNDcR6vngbp0pf","name":"Dragonborn","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your draconic heritage manifests in a variety of traits you share with other dragonborn. \nAbility Score Increase. Your Strength score increases by 2, and your Charisma score increases by 1.\nAge. Young dragonborn grow quickly. They walk hours after hatching, attain the size and development of a 10-year-old human child by the age of 3, and reach adulthood by 15. They live to be around 80.\nAlignment. Dragonborn tend to extremes, making a conscious choice for one side or the other in the cosmic war between good and evil. Most dragonborn are good, but those who side with evil can be terrible villains.\nSize. Dragonborn are taller and heavier than humans, standing well over 6 feet tall and averaging almost 250 pounds. Your size is Medium.\nSpeed. Your base walking speed is 30 feet.\nDraconic Ancestry. You have draconic ancestry. Choose one type of dragon from the Draconic Ancestry table. Your breath weapon and damage resistance are determined by the dragon type, as shown in the table.\n\n\n\nDragon\nDamage Type\nBreath Weapon\n\n\n\n\nBlack\nAcid\n5 by 30 ft. line (Dex. save)\n\n\nBlue\nLightning\n5 by 30 ft. line (Dex. save)\n\n\nBrass\nFire\n5 by 30 ft. line (Dex. save)\n\n\nBronze\nLightning\n5 by 30 ft. line (Dex. save)\n\n\nCopper\nAcid\n5 by 30 ft. line (Dex. save)\n\n\nGold\nFire\n15 ft. cone (Dex. save)\n\n\nGreen\nPoison\n15 ft. cone (Con. save)\n\n\nRed\nFire\n15 ft. cone (Dex. save)\n\n\nSilver\nCold\n15 ft. cone (Con. save)\n\n\nWhite\nCold\n15 ft. cone (Con. save)\n\n\n\nBreath Weapon. @Compendium[dnd5e.races.KL7wx9Q8XNJQir0k]{Breath Weapon} You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.\nWhen you use your breath weapon, each creature in the area of the exhalation must make a saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.\nAfter you use your breath weapon, you can't use it again until you complete a short or long rest.\nDamage Resistance. @Compendium[dnd5e.races.XxCuhIk6hAu6rNB0]{Damage Resistance} You have resistance to the damage type associated with your draconic ancestry.\nLanguages. You can speak, read, and write Common and Draconic. Draconic is thought to be one of the oldest languages and is often used in the study of magic. The language sounds harsh to most other creatures and includes numerous hard consonants and sibilants.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-small-red.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234466,"modifiedTime":1671220977499,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KL7wx9Q8XNJQir0k","name":"Breath Weapon","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.Foundry NoteEdit the Details for this feat, so that the damage type, saving throw, and area of effect match those of your Draconic Ancestry.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["((ceil((@details.level - 5)/5)) +2)d6","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"con"},"type":{"value":"race","subtype":""},"requirements":"Dragonborn","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/acid/projectile-smoke-glowing.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234466,"modifiedTime":1672336385274,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LOMdcNAGWh5xpfm4","name":"Lucky","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Halfling","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/sundries/gaming/dice-runed-brown.webp","effects":[{"_id":"3ZXTUDl62zDpvpai","changes":[{"key":"flags.dnd5e.halflingLucky","mode":5,"value":"true","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/sundries/gaming/dice-runed-brown.webp","label":"Lucky","origin":"Item.LOMdcNAGWh5xpfm4","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234467,"modifiedTime":1672336345266,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"OQA1sHxKnSJq01dL","name":"Artificer's Lore","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Rock Gnome","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/flame-burning-chain.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234468,"modifiedTime":1672336391468,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"PqxZgcJzp1VVgP8t","name":"Halfling Nimbleness","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can move through the space of any creature that is of a size larger than yours.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Halfling","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234468,"modifiedTime":1672336359296,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"TZtarkKs6cgGD7z2","name":"Rock Gnome","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As a rock gnome, you have a natural inventiveness and hardiness beyond that of other gnomes.\nAbility Score Increase. Your Constitution score increases by 1.\nArtificer's Lore. @Compendium[dnd5e.races.OQA1sHxKnSJq01dL]{Artificer's Lore} Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.\nTinker. @Compendium[dnd5e.races.koRPOLtj8XAFMwnW]{Tinker} You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time.\nWhen you create a device, choose one of the following options:\nClockwork Toy. This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.\nFire Starter. The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.\nMusic Box. When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"requirements":"Gnome","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/projectile-meteor-salvo-light-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234469,"modifiedTime":1671220977544,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"UQiRQUTBcsz8gZU1","name":"Hill Dwarf","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As a hill dwarf, you have keen senses, deep intuition, and remarkable resilience. \nAbility Score Increase. Your Wisdom score increases by 1.\nDwarven Toughness. Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"requirements":"Dwarf","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234469,"modifiedTime":1671220977548,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XxCuhIk6hAu6rNB0","name":"Damage Resistance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have resistance to the damage type associated with your draconic ancestry.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Dragonborn","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234470,"modifiedTime":1672336381975,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZgYBjYYfiUstQD6f","name":"Lightfoot Halfling","ownership":{"default":0},"type":"feat","system":{"description":{"value":"As a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others. \nLightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life. \nAbility Score Increase. Your Charisma score increases by 1.\nNaturally Stealthy. @Compendium[dnd5e.races.GWPjKFeIthBBeCFJ]{Naturally Stealthy} You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"requirements":"Halfling","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/lightning/bolt-forked-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234470,"modifiedTime":1671220977572,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"aHTokZ151W0ASSmo","name":"Tiefling","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Tieflings share certain racial traits as a result of their infernal descent. \nAbility Score Increase. Your Intelligence score increases by 1, and your Charisma score increases by 2.\nAge. Tieflings mature at the same rate as humans but live a few years longer.\nAlignment. Tieflings might not have an innate tendency toward evil, but many of them end up there. Evil or not, an independent nature inclines many tieflings toward a chaotic alignment.\nSize. Tieflings are about the same size and build as humans. Your size is Medium.\nSpeed. Your base walking speed is 30 feet.\nDarkvision. Thanks to your infernal heritage, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.\nHellish Resistance. @Compendium[dnd5e.races.q71Pe1F8RRtEJt8Q]{Hellish Resistance} You have resistance to fire damage.\nInfernal Legacy. @Compendium[dnd5e.races.wJc88B8OP1y1xzMw]{Infernal Legacy} You know the @Compendium[dnd5e.spells.MUO1uYN7JR1hm4dR]{Thaumaturgy} cantrip. When you reach 3rd level, you can cast the @Compendium[dnd5e.spells.22dPoeXfaaAv4K3h]{Hellish Rebuke} spell as a 2nd‑level spell once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the @Compendium[dnd5e.spells.S7VbUetIfVT7B6Eq]{Darkness} spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.\nLanguages. You can speak, read, and write Common and Infernal.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/wind-tornado-cyclone-red-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234471,"modifiedTime":1671220977578,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"cnTbpPPeGW7vGjOV","name":"Fey Ancestry","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have advantage on saving throws against being charmed, and magic can't put you to sleep.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Elf, Half-Elf","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/elk-moose-marked-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234471,"modifiedTime":1672336370724,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kmRnMETG5hB9Bmwu","name":"Gnome","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your gnome character has certain characteristics in common with all other gnomes. \nAbility Score Increase. Your Intelligence score increases by 2.\nAge. Gnomes mature at the same rate humans do, and most are expected to settle down into an adult life by around age 40. They can live 350 to almost 500 years.\nAlignment. Gnomes are most often good. Those who tend toward law are sages, engineers, researchers, scholars, investigators, or inventors. Those who tend toward chaos are minstrels, tricksters, wanderers, or fanciful jewelers. Gnomes are good-‐‑hearted, and even the tricksters among them are more playful than vicious.\nSize. Gnomes are between 3 and 4 feet tall and average about 40 pounds. Your size is Small. Speed. Your base walking speed is 25 feet.\nDarkvision. Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.\nGnome Cunning. @Compendium[dnd5e.races.EHhr9umJ5kxJFCQH]{Gnome Cunning} You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.\nLanguages. You can speak, read, and write Common and Gnomish. The Gnomish language, which uses the Dwarvish script, is renowned for its technical treatises and its catalogs of knowledge about the natural world.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/projectile-meteor-salvo-strong-purple-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234471,"modifiedTime":1671220977585,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"koRPOLtj8XAFMwnW","name":"Tinker","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time. When you create a device, choose one of the following options:\nClockwork Toy: This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.\nFire Starter: The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.\nMusic Box: When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"hour","cost":1,"condition":"Expend 10 gp worth of materials"},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Rock Gnome","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/commodities/tech/cog-steel.webp","effects":[{"_id":"CkQlNsLyTZGVbnKM","changes":[{"key":"system.traits.toolProf.value","mode":2,"value":"tinker","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/commodities/tech/cog-steel.webp","label":"Tinker","origin":"Item.koRPOLtj8XAFMwnW","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234472,"modifiedTime":1672336327620,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"mQPZDRbUhgYTbXKa","name":"Stonecunning","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Dwarf","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/commodities/tech/cog-bronze.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234472,"modifiedTime":1672336332532,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"n5L000DkNBU6h2oJ","name":"Half-Orc","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your half-orc character has certain traits deriving from your orc ancestry. \nAbility Score Increase. Your Strength score increases by 2, and your Constitution score increases by 1.\nAge. Half-orcs mature a little faster than humans, reaching adulthood around age 14. They age noticeably faster and rarely live longer than 75 years.\nAlignment. Half-orcs inherit a tendency toward chaos from their orc parents and are not strongly inclined toward good. Half-orcs raised among orcs and willing to live out their lives among them are usually evil.\nSize. Half-orcs are somewhat larger and bulkier than humans, and they range from 5 to well over 6 feet tall. Your size is Medium.\nSpeed. Your base walking speed is 30 feet.\nDarkvision. Thanks to your orc blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.\nMenacing. You gain proficiency in the Intimidation skill.\nRelentless Endurance. @Compendium[dnd5e.races.97c8i9Z28thvZuA8]{Relentless Endurance} When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.\nSavage Attacks. @Compendium[dnd5e.races.0kUsT4sMUOr5FcoX]{Savage Attacks} When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.\nLanguages. You can speak, read, and write Common and Orc. Orc is a harsh, grating language with hard consonants. It has no script of its own but is written in the Dwarvish script.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/unholy/orb-smoking-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234473,"modifiedTime":1671220977599,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"q71Pe1F8RRtEJt8Q","name":"Hellish Resistance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have resistance to fire damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Tiefling","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-orange.webp","effects":[{"_id":"0rAhv7npcNmDcQ3B","changes":[{"key":"system.traits.dr.value","mode":2,"value":"fire","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/air/fog-gas-smoke-swirling-orange.webp","label":"Hellish Resistance","origin":"Item.q71Pe1F8RRtEJt8Q","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234473,"modifiedTime":1672336356633,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"rAGnsfgw3ZqAme1v","name":"Elf","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Your elf character has a variety of natural abilities, the result of thousands of years of elven refinement. \nAbility Score Increase. Your Dexterity score increases by 2.\nAge. Although elves reach physical maturity at about the same age as humans, the elven understanding of adulthood goes beyond physical growth to encompass worldly experience. An elf typically claims adulthood and an adult name around the age of 100 and can live to be 750 years old.\nAlignment. Elves love freedom, variety, and self-expression, so they lean strongly toward the gentler aspects of chaos. They value and protect others' freedom as well as their own, and they are more often good than not.\nSize. Elves range from under 5 to over 6 feet tall and have slender builds. Your size is Medium.\nSpeed. Your base walking speed is 30 feet.\nDarkvision. Accustomed to twilit forests and the night sky, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.\nKeen Senses. You have proficiency in the Perception skill.\nFey Ancestry. @Compendium[dnd5e.races.cnTbpPPeGW7vGjOV]{Fey Ancestry} You have advantage on saving throws against being charmed, and magic can't put you to sleep.\nTrance. Elves don't need to sleep. Instead, they meditate deeply, remaining semiconscious, for 4 hours a day. (The Common word for such meditation is \"trance.\") While meditating, you can dream after a fashion; such dreams are actually mental exercises that have become reflexive through years of practice. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.\nLanguages. You can speak, read, and write Common and Elvish. Elvish is fluid, with subtle intonations and intricate grammar. Elven literature is rich and varied, and their songs and poems are famous among other races. Many bards learn their language so they can add Elvish ballads to their repertoires.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/nature/leaf-glow-maple-teal.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234474,"modifiedTime":1671220977660,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ufysTkqet2Ctmtyi","name":"Dwarven Resilience","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have advantage on saving throws against poison, and you have resistance against poison damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Dwarf","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/stinger-poison-green.webp","effects":[{"_id":"hIaIpLxcMZSY3qXi","changes":[{"key":"system.traits.dr.value","mode":2,"value":"poison","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/abilities/stinger-poison-green.webp","label":"Dwarven Resilience","origin":"Item.ufysTkqet2Ctmtyi","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234474,"modifiedTime":1672336375921,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"wJc88B8OP1y1xzMw","name":"Infernal Legacy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You know the @Compendium[dnd5e.spells.MUO1uYN7JR1hm4dR]{Thaumaturgy} cantrip.\nWhen you reach 3rd level, you can cast the @Compendium[dnd5e.spells.22dPoeXfaaAv4K3h]{Hellish Rebuke} spell as a 2nd-level spell once with this trait and regain the ability to do so when you finish a long rest.\nWhen you reach 5th level, you can cast the @Compendium[dnd5e.spells.S7VbUetIfVT7B6Eq]{Darkness} spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Tiefling","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/unholy/demon-fanged-horned-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234475,"modifiedTime":1672336349587,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ydP3QzCmur55mtY2","name":"Human","ownership":{"default":0},"type":"feat","system":{"description":{"value":"It's hard to make generalizations about humans, but your human character has these traits. \nAbility Score Increase. Your ability scores each increase by 1.\nAge. Humans reach adulthood in their late teens and live less than a century.\nAlignment. Humans tend toward no particular alignment. The best and the worst are found among them.\nSize. Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.\nSpeed. Your base walking speed is 30 feet.\nLanguages. You can speak, read, and write Common and one extra language of your choice. Humans typically learn the languages of other peoples they deal with, including obscure dialects. They are fond of sprinkling their speech with words borrowed from other tongues: Orc curses, Elvish musical expressions, Dwarvish military phrases, and so on.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"requirements":"","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/explosion-star-large-orange.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234475,"modifiedTime":1671220977692,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"0kUsT4sMUOr5FcoX","name":"Savage Attacks","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.Foundry NoteEnable this feature in the Special Traits section of the character sheet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Half-Orc","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/weapons-crossed-swords-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234460,"modifiedTime":1699397219108,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"4v2PiBrAbqDizdSJ","name":"Trance","type":"feat","img":"icons/magic/perception/third-eye-blue-red.webp","system":{"description":{"value":"Elves don't need to sleep. Instead, they meditate deeply, remaining semiconscious, for 4 hours a day. (The Common word for such meditation is \"trance.\") While meditating, you can dream after a fashion; such dreams are actually mental exercises that have become reflexive through years of practice. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Elf","recharge":{"value":null,"charged":false}},"effects":[],"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1677179906781,"modifiedTime":1699397219112,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null} +{"_id":"7Yoo9hG0hfPSmBoC","name":"Brave","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have advantage on saving throws against being frightened.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"You have advantage on saving throws against being frightened.","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Halfling","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234462,"modifiedTime":1699397219116,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"97c8i9Z28thvZuA8","name":"Relentless Endurance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"special","cost":null,"condition":"When you are reduced to 0 hit points"},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"self","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"lr","recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Half-Orc","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/control/control-influence-rally-purple.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234463,"modifiedTime":1699397219121,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"A69KxdH1renVPrQV","name":"High Elf","type":"race","img":"icons/commodities/treasure/statue-gold-laurel-wreath.webp","system":{"description":{"value":"Your elf character has a variety of natural abilities, the result of thousands of years of elven refinement.Ability Score Increase. Your Dexterity score increases by 2.Age. Although elves reach physical maturity at about the same age as humans, the elven understanding of adulthood goes beyond physical growth to encompass worldly experience. An elf typically claims adulthood and an adult name around the age of 100 and can live to be 750 years old.Alignment. Elves love freedom, variety, and self-expression, so they lean strongly toward the gentler aspects of chaos. They value and protect others' freedom as well as their own, and they are more often good than not.Size. Elves range from under 5 to over 6 feet tall and have slender builds. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Accustomed to twilit forests and the night sky, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Keen Senses. You have proficiency in the Perception skill.Fey Ancestry. You have advantage on saving throws against being charmed, and magic can't put you to sleep.Trance. Elves don't need to sleep. Instead, they meditate deeply, remaining semiconscious, for 4 hours a day. (The Common word for such meditation is \"trance.\") While meditating, you can dream after a fashion; such dreams are actually mental exercises that have become reflexive through years of practice. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.Languages. You can speak, read, and write Common and Elvish. Elvish is fluid, with subtle intonations and intricate grammar. Elven literature is rich and varied, and their songs and poems are famous among other races. Many bards learn their language so they can add Elvish ballads to their repertoires.High ElfAs a high elf, you have a keen mind and a mastery of at least the basics of magic. In many fantasy gaming worlds, there are two kinds of high elves. One type is haughty and reclusive, believing themselves to be superior to non-elves and even other elves. The other type is more common and more friendly, and often encountered among humans and other races.Ability Score Increase. Your Intelligence score increases by 1.Elf Weapon Training. You have proficiency with the longsword, shortsword, shortbow, and longbow.Cantrip. You know one cantrip of your choice from the wizard spell list. Intelligence is your spellcasting ability for it.Extra Language. You can speak, read, and write one extra language of your choice.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"identifier":"high-elf","advancement":[{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.races.cnTbpPPeGW7vGjOV","Compendium.dnd5e.races.4v2PiBrAbqDizdSJ"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":0,"title":"Grant Items","icon":"systems/dnd5e/icons/svg/item-grant.svg","_id":"9SgUOZ9mjqyA8Q2d"},{"_id":"l1Pw82BvhrSkYiyF","type":"ItemChoice","configuration":{"hint":"You know one cantrip of your choice from the wizard spell list. Intelligence is your spellcasting ability for it.","choices":{"0":1},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"int","preparation":"innate","uses":{"max":"","per":""}},"restriction":{"type":"","subtype":"","level":"0"}},"value":{},"title":"Cantrip"},{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":0,"fixed":{"str":0,"dex":2,"con":0,"int":1,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":0,"title":""},{"_id":"eqSwyWvm0gYgBzJJ","type":"Size","configuration":{"hint":"Elves range from under 5 to over 6 feet tall and have slender builds. Your size is Medium.","sizes":["med"]},"value":{"size":""},"level":1,"title":""},{"_id":"eAv9eLr0ackU7WO2","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["skills:prc"],"choices":[]},"level":0,"title":"Keen Senses","value":{}},{"_id":"vNyszlmxQeXRjYIH","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:standard:common","languages:standard:elvish"],"choices":[{"count":1,"pool":["languages:*"]}]},"level":0,"title":""},{"_id":"ZwJOJ5Ywagq7rWNI","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim:shortbow","weapon:mar:longbow","weapon:mar:longsword","weapon:mar:shortsword"],"choices":[]},"level":0,"title":"Elf Weapon Training","value":{}}],"senses":{"darkvision":60,"blindsight":null,"tremorsense":null,"truesight":null,"units":"ft","special":""},"movement":{"burrow":null,"climb":null,"fly":null,"swim":null,"walk":30,"units":"ft","hover":false},"type":{"value":"humanoid","subtype":"","custom":""}},"effects":[],"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1677179211328,"modifiedTime":1699987871524,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null} +{"_id":"EHhr9umJ5kxJFCQH","name":"Gnome Cunning","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Gnome","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/light/hand-sparks-glow-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234464,"modifiedTime":1699397219152,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"GWPjKFeIthBBeCFJ","name":"Naturally Stealthy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Lightfoot Halfling","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/perception/silhouette-stealth-shadow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234465,"modifiedTime":1699397219156,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Hye5IZwPOSwV0qRR","name":"Half-Elf","type":"race","img":"icons/magic/nature/leaf-glow-triple-green.webp","system":{"description":{"value":"Your half‑elf character has some qualities in common with elves and some that are unique to half-elves.Ability Score Increase. Your Charisma score increases by 2, and two other ability scores of your choice increase by 1.Age. Half-elves mature at the same rate humans do and reach adulthood around the age of 20. They live much longer than humans, however, often exceeding 180 years.Alignment. Half-elves share the chaotic bent of their elven heritage. They value both personal freedom and creative expression, demonstrating neither love of leaders nor desire for followers. They chafe at rules, resent others' demands, and sometimes prove unreliable, or at least unpredictable.Size. Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Thanks to your elf blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Fey Ancestry. You have advantage on saving throws against being charmed, and magic can't put you to sleep.Skill Versatility. You gain proficiency in two skills of your choice.Languages. You can speak, read, and write Common, Elvish, and one extra language of your choice.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"identifier":"half-elf","advancement":[{"_id":"rXyxzoqxdxlspMi5","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.races.cnTbpPPeGW7vGjOV"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":0,"title":""},{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":2},"cap":1},"value":{"type":"asi"},"level":0,"title":""},{"_id":"r3PSgtQO6Eim49LU","type":"Size","configuration":{"hint":"Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.","sizes":["med"]},"value":{"size":""},"level":1,"title":""},{"_id":"CormRQZ5momyvS2I","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:*"]}]},"level":0,"title":"Skill Versatility","value":{}},{"_id":"U3OO7jLU0nm0Z7zw","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:standard:common","languages:standard:elvish"],"choices":[{"count":1,"pool":["languages:*"]}]},"level":0,"title":"","value":{}}],"senses":{"darkvision":60,"blindsight":null,"tremorsense":null,"truesight":null,"units":"ft","special":""},"type":{"subtype":"elf","value":"humanoid","custom":""},"movement":{"burrow":null,"climb":null,"fly":null,"swim":null,"walk":30,"units":"ft","hover":false}},"effects":[],"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1677181061205,"modifiedTime":1699987889302,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null} +{"_id":"JrUcwLR2aQC09iUM","name":"Breath Weapon - Brass","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a dexterity saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 fire damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":30,"width":5,"units":"ft","type":"line","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@scale.dragonborn.breath-weapon","fire"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"con"},"type":{"value":"race","subtype":""},"requirements":"Brass Dragonborn","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/beam-jet-stream-trails-orange.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234466,"modifiedTime":1699397219165,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null} +{"_id":"K4DNDcR6vngbp0pf","name":"Dragonborn","type":"race","img":"icons/creatures/eyes/lizard-single-slit-green.webp","system":{"description":{"value":"Your draconic heritage manifests in a variety of traits you share with other dragonborn.Ability Score Increase. Your Strength score increases by 2, and your Charisma score increases by 1.Age. Young dragonborn grow quickly. They walk hours after hatching, attain the size and development of a 10-year-old human child by the age of 3, and reach adulthood by 15. They live to be around 80.Alignment. Dragonborn tend to extremes, making a conscious choice for one side or the other in the cosmic war between good and evil. Most dragonborn are good, but those who side with evil can be terrible villains.Size. Dragonborn are taller and heavier than humans, standing well over 6 feet tall and averaging almost 250 pounds. Your size is Medium.Speed. Your base walking speed is 30 feet.Draconic AncestryDragonDamage TypeBreath WeaponBlackAcid5 by 30 ft. line (Dex. save)BlueLightning5 by 30 ft. line (Dex. save)BrassFire5 by 30 ft. line (Dex. save)BronzeLightning5 by 30 ft. line (Dex. save)CopperAcid5 by 30 ft. line (Dex. save)GoldFire15 ft. cone (Dex. save)GreenPoison15 ft. cone (Con. save)RedFire15 ft. cone (Dex. save)SilverCold15 ft. cone (Con. save)WhiteCold15 ft. cone (Con. save)Draconic Ancestry. You have draconic ancestry. Choose one type of dragon from the Draconic Ancestry table. Your breath weapon and damage resistance are determined by the dragon type, as shown in the table.Breath Weapon. You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.Damage Resistance. You have resistance to the damage type associated with your draconic ancestry.Languages. You can speak, read, and write Common and Draconic. Draconic is thought to be one of the oldest languages and is often used in the study of magic. The language sounds harsh to most other creatures and includes numerous hard consonants and sibilants.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"identifier":"dragonborn","advancement":[{"_id":"QIrBmvSmNOTEJLWn","type":"ItemChoice","configuration":{"hint":"You have draconic ancestry. Choose one type of dragon from the list. Your breath weapon and damage resistance are determined by the dragon type.","choices":{"0":1},"allowDrops":false,"type":"feat","pool":["Compendium.dnd5e.races.NnSZlrsHCFeH3cCq","Compendium.dnd5e.races.KVgvW5yhKcmQUanz","Compendium.dnd5e.races.JrUcwLR2aQC09iUM","Compendium.dnd5e.races.pJzMSk9qYywYy65w","Compendium.dnd5e.races.bFpLM0N3uTeHLdzu","Compendium.dnd5e.races.YPQQBZAuRiSwuBfh","Compendium.dnd5e.races.lXIxndsBaQglHBtO","Compendium.dnd5e.races.kB61JPKQrDBbSNU7","Compendium.dnd5e.races.pAYTdRGftNr8AitK","Compendium.dnd5e.races.KL7wx9Q8XNJQir0k"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"race","subtype":"","level":""}},"value":{},"title":"Draconic Ancestry"},{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":0,"fixed":{"str":2,"dex":0,"con":0,"int":0,"wis":0,"cha":1},"cap":2},"value":{"type":"asi"},"level":0,"title":""},{"_id":"rXLC7smebN2zPOBT","type":"ScaleValue","configuration":{"identifier":"breath-weapon","type":"dice","distance":{"units":""},"scale":{"0":{"number":2,"faces":6},"6":{"number":3,"faces":6},"11":{"number":4,"faces":6},"16":{"number":5,"faces":6}}},"value":{},"title":"Breath Weapon"},{"_id":"9D8XNnmTLWfzN32K","type":"Size","configuration":{"hint":"Dragonborn are taller and heavier than humans, standing well over 6 feet tall and averaging almost 250 pounds. Your size is Medium.","sizes":["med"]},"value":{"size":""},"level":1,"title":""},{"_id":"6WUcKNSLh5WJ3Q24","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:standard:common","languages:exotic:draconic"],"choices":[]},"level":0,"title":"","value":{}},{"_id":"2f4dkpTYlhOgRgxu","type":"Trait","configuration":{"hint":"You have resistance to the damage type associated with your draconic ancestry.","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":1,"pool":["dr:acid","dr:cold","dr:fire","dr:lightning","dr:poison"]}]},"level":0,"title":""}],"movement":{"burrow":null,"climb":null,"fly":null,"swim":null,"walk":30,"units":"ft","hover":false},"senses":{"darkvision":null,"blindsight":null,"tremorsense":null,"truesight":null,"units":"ft","special":""},"type":{"value":"humanoid","subtype":"dragonborn","custom":""}},"effects":[],"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1677180157568,"modifiedTime":1699987919586,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null} +{"_id":"KL7wx9Q8XNJQir0k","name":"Breath Weapon - White","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a Constitution saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 cold damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":15,"width":null,"units":"ft","type":"cone","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@scale.dragonborn.breath-weapon","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"con"},"type":{"value":"race","subtype":""},"requirements":"White Dragonborn","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/projectile-icecicle.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234466,"modifiedTime":1699397219179,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null} +{"_id":"KVgvW5yhKcmQUanz","name":"Breath Weapon - Blue","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a dexterity saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 lightning damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":30,"width":5,"units":"ft","type":"line","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@scale.dragonborn.breath-weapon","lightning"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"con"},"type":{"value":"race","subtype":""},"requirements":"Blue Dragonborn","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/lightning/bolt-blue.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234466,"modifiedTime":1699397219183,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null} +{"_id":"LOMdcNAGWh5xpfm4","name":"Lucky","ownership":{"default":0},"type":"feat","system":{"description":{"value":"When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.Foundry NoteThis property can be enabled on your character sheet in the Special Traits configuration on the Attributes tab.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Halfling","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/sundries/gaming/dice-runed-brown.webp","effects":[{"_id":"3ZXTUDl62zDpvpai","changes":[{"key":"flags.dnd5e.halflingLucky","mode":5,"value":"true","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/sundries/gaming/dice-runed-brown.webp","label":"Lucky","origin":"Item.LOMdcNAGWh5xpfm4","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234467,"modifiedTime":1699461251311,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NnSZlrsHCFeH3cCq","name":"Breath Weapon - Black","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a dexterity saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 acid damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":30,"width":5,"units":"ft","type":"line","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":"str","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@scale.dragonborn.breath-weapon","acid"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"con"},"type":{"value":"race","subtype":""},"requirements":"Black Dragonborn","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/acid/projectile-smoke-glowing.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234466,"modifiedTime":1699397219194,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null} +{"_id":"OQA1sHxKnSJq01dL","name":"Artificer's Lore","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Rock Gnome","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/flame-burning-chain.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234468,"modifiedTime":1699397219198,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"PqxZgcJzp1VVgP8t","name":"Halfling Nimbleness","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can move through the space of any creature that is of a size larger than yours.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Halfling","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234468,"modifiedTime":1699397219202,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"TZtarkKs6cgGD7z2","name":"Rock Gnome","type":"race","img":"icons/environment/wilderness/terrain-rocks-brown.webp","system":{"description":{"value":"Your gnome character has certain characteristics in common with all other gnomes.Ability Score Increase. Your Intelligence score increases by 2.Age. Gnomes mature at the same rate humans do, and most are expected to settle down into an adult life by around age 40. They can live 350 to almost 500 years.Alignment. Gnomes are most often good. Those who tend toward law are sages, engineers, researchers, scholars, investigators, or inventors. Those who tend toward chaos are minstrels, tricksters, wanderers, or fanciful jewelers. Gnomes are good‑hearted, and even the tricksters among them are more playful than vicious.Size. Gnomes are between 3 and 4 feet tall and average about 40 pounds. Your size is Small.Speed. Your base walking speed is 25 feet.Darkvision. Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Gnome Cunning. You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.Languages. You can speak, read, and write Common and Gnomish. The Gnomish language, which uses the Dwarvish script, is renowned for its technical treatises and its catalogs of knowledge about the natural world.Rock GnomeAs a rock gnome, you have a natural inventiveness and hardiness beyond that of other gnomes.Ability Score Increase. Your Constitution score increases by 1.Artificer's Lore. Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.Tinker. You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time.When you create a device, choose one of the following options:Clockwork Toy. This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.Fire Starter. The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.Music Box. When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"identifier":"rock-gnome","advancement":[{"_id":"oHASjkY2yexn8nAv","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.races.EHhr9umJ5kxJFCQH","Compendium.dnd5e.races.OQA1sHxKnSJq01dL","Compendium.dnd5e.races.koRPOLtj8XAFMwnW"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":0,"title":""},{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":0,"fixed":{"str":0,"dex":0,"con":1,"int":2,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":0,"title":""},{"_id":"1qwH1s1GrEC8T8Qp","type":"Size","configuration":{"hint":"Gnomes are between 3 and 4 feet tall and average about 40 pounds. Your size is Small.","sizes":["sm"]},"value":{"size":""},"level":1,"title":""},{"_id":"lQjgBd250F2JZeo2","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:standard:common","languages:standard:gnomish"],"choices":[]},"level":1,"title":"","value":{}}],"movement":{"walk":25,"burrow":null,"climb":null,"fly":null,"swim":null,"units":"ft","hover":false},"senses":{"darkvision":60,"blindsight":null,"tremorsense":null,"truesight":null,"units":"ft","special":""},"type":{"subtype":"gnome","value":"humanoid","custom":""}},"effects":[],"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1677181053374,"modifiedTime":1699987615902,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null} +{"_id":"UQiRQUTBcsz8gZU1","name":"Hill Dwarf","type":"race","img":"icons/environment/wilderness/cave-entrance-rocky.webp","system":{"description":{"value":"Your dwarf character has an assortment of inborn abilities, part and parcel of dwarven nature.Ability Score Increase. Your Constitution score increases by 2.Age. Dwarves mature at the same rate as humans, but they're considered young until they reach the age of 50. On average, they live about 350 years.Alignment. Most dwarves are lawful, believing firmly in the benefits of a well-ordered society. They tend toward good as well, with a strong sense of fair play and a belief that everyone deserves to share in the benefits of a just order.Size. Dwarves stand between 4 and 5 feet tall and average about 150 pounds. Your size is Medium.Speed. Your base walking speed is 25 feet. Your speed is not reduced by wearing heavy armor.Darkvision. Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Dwarven Resilience. You have advantage on saving throws against poison, and you have resistance against poison damage.Dwarven Combat Training. You have proficiency with the battleaxe, handaxe, light hammer, and warhammer.Tool Proficiency. You gain proficiency with the artisan's tools of your choice: smith's tools, brewer's supplies, or mason's tools.Stonecunning. Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.Languages. You can speak, read, and write Common and Dwarvish. Dwarvish is full of hard consonants and guttural sounds, and those characteristics spill over into whatever other language a dwarf might speak.Hill DwarfAs a hill dwarf, you have keen senses, deep intuition, and remarkable resilience.Ability Score Increase. Your Wisdom score increases by 1.Dwarven Toughness. Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.Foundry NoteDwarven Toughness should be configured by adding 1 to the \"Per Level\" bonus in HP configuration on your character sheet (accessible using the cog next to your character's hit points).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"identifier":"hill-dwarf","advancement":[{"_id":"tNfLTuoHfvAxg2FC","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.races.ufysTkqet2Ctmtyi","Compendium.dnd5e.races.mQPZDRbUhgYTbXKa"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":0,"title":""},{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":0,"fixed":{"str":0,"dex":0,"con":2,"int":0,"wis":1,"cha":0},"cap":2},"value":{"type":"asi"},"level":0,"title":""},{"_id":"kdMPoRp3j1uOHQom","type":"Size","configuration":{"hint":"Dwarves stand between 4 and 5 feet tall and average about 150 pounds. Your size is Medium.","sizes":["med"]},"value":{"size":""},"level":1,"title":""},{"_id":"rmcKuRQ2Laloq1xp","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:standard:common","languages:standard:dwarvish"],"choices":[]},"level":0,"title":"","value":{}},{"_id":"5zWGcz9uAerx3Dh5","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["dr:poison"],"choices":[]},"level":0,"title":"Dwarven Resilience","value":{}},{"_id":"J0UGmCyMy6thWDeU","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["weapon:sim:handaxe","weapon:sim:lighthammer","weapon:mar:battleaxe","weapon:mar:warhammer"],"choices":[]},"level":0,"title":"Dwarven Combat Training","value":{}},{"_id":"9CYW7Bj53L9G8Zsw","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":1,"pool":["tool:art:brewer","tool:art:mason","tool:art:smith"]}]},"level":0,"title":"","value":{}}],"senses":{"darkvision":60,"blindsight":null,"tremorsense":null,"truesight":null,"units":"ft","special":""},"movement":{"walk":25,"burrow":null,"climb":null,"fly":null,"swim":null,"units":"ft","hover":false},"type":{"subtype":"dwarf","value":"humanoid","custom":""}},"effects":[],"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1677179053861,"modifiedTime":1699987862731,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null} +{"_id":"XxCuhIk6hAu6rNB0","name":"Damage Resistance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have resistance to the damage type associated with your draconic ancestry.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Dragonborn","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/defensive/shield-barrier-glowing-blue.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234470,"modifiedTime":1699397219219,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YPQQBZAuRiSwuBfh","name":"Breath Weapon - Gold","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a Dexterity saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 fire damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":15,"width":null,"units":"ft","type":"cone","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@scale.dragonborn.breath-weapon","fire"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"con"},"type":{"value":"race","subtype":""},"requirements":"Gold Dragonborn","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/beam-jet-stream-trails-orange.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234466,"modifiedTime":1699397219223,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null} +{"_id":"ZgYBjYYfiUstQD6f","name":"Lightfoot Halfling","type":"race","img":"icons/equipment/feet/shoes-leather-simple-brown.webp","system":{"description":{"value":"Your halfling character has a number of traits in common with all other halflings.Ability Score Increase. Your Dexterity score increases by 2.Age. A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.Alignment. Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.Size. Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.Speed. Your base walking speed is 25 feet.Lucky. When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.Brave. You have advantage on saving throws against being frightened.Halfling Nimbleness. You can move through the space of any creature that is of a size larger than yours.Languages. You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.LightfootAs a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others.Lightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life.Ability Score Increase. Your Charisma score increases by 1.Naturally Stealthy. You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"identifier":"lightfoot-halfling","advancement":[{"_id":"nInhIgkbzzJTdm8F","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.races.LOMdcNAGWh5xpfm4","Compendium.dnd5e.races.7Yoo9hG0hfPSmBoC","Compendium.dnd5e.races.PqxZgcJzp1VVgP8t","Compendium.dnd5e.races.GWPjKFeIthBBeCFJ"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":0,"title":""},{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":0,"fixed":{"str":0,"dex":2,"con":0,"int":0,"wis":0,"cha":1},"cap":2},"value":{"type":"asi"},"level":0,"title":""},{"_id":"hv2bcANK5jEJZaAb","type":"Size","configuration":{"hint":"Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.","sizes":["sm"]},"value":{"size":""},"level":1,"title":""},{"_id":"nGwMjsfNU6CXHk3A","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:standard:common","languages:standard:halfling"],"choices":[]},"level":0,"title":"","value":{}}],"movement":{"walk":25,"burrow":null,"climb":null,"fly":null,"swim":null,"units":"ft","hover":false},"type":{"subtype":"halfling","value":"humanoid","custom":""},"senses":{"darkvision":null,"blindsight":null,"tremorsense":null,"truesight":null,"units":"ft","special":""}},"effects":[],"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1677178323356,"modifiedTime":1699987624582,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null} +{"_id":"aHTokZ151W0ASSmo","name":"Tiefling","type":"race","img":"icons/creatures/unholy/demon-female-succubus-orange.webp","system":{"description":{"value":"Tieflings share certain racial traits as a result of their infernal descent.Ability Score Increase. Your Intelligence score increases by 1, and your Charisma score increases by 2.Age. Tieflings mature at the same rate as humans but live a few years longer.Alignment. Tieflings might not have an innate tendency toward evil, but many of them end up there. Evil or not, an independent nature inclines many tieflings toward a chaotic alignment.Size. Tieflings are about the same size and build as humans. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Thanks to your infernal heritage, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Hellish Resistance. You have resistance to fire damage.Infernal Legacy. You know the thaumaturgy cantrip. When you reach 3rd level, you can cast the hellish rebuke spell as a 2nd-level spell once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the darkness spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.Languages. You can speak, read, and write Common and Infernal.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"identifier":"tiefling","advancement":[{"_id":"1TyE6rcEq01VWRZc","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.races.q71Pe1F8RRtEJt8Q","Compendium.dnd5e.races.wJc88B8OP1y1xzMw"],"optional":false,"spell":{"ability":"cha","preparation":"innate","uses":{"max":"","per":""}}},"value":{},"level":0,"title":""},{"_id":"d8rqpB59h8lfbnva","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.spells.22dPoeXfaaAv4K3h"],"optional":false,"spell":{"ability":"cha","preparation":"innate","uses":{"max":"1","per":"lr"}}},"value":{},"level":3,"title":"Infernal Legacy"},{"_id":"p2AP4Rn6S8A8Xu5L","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.spells.S7VbUetIfVT7B6Eq"],"optional":false,"spell":{"ability":"cha","preparation":"innate","uses":{"max":"1","per":"lr"}}},"value":{},"level":5,"title":"Infernal Legacy"},{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":0,"fixed":{"str":0,"dex":0,"con":0,"int":1,"wis":0,"cha":2},"cap":2},"value":{"type":"asi"},"level":0,"title":""},{"_id":"RdFKqK8MykC5CYIB","type":"Size","configuration":{"hint":"Tieflings are about the same size and build as humans. Your size is Medium.","sizes":["med"]},"value":{"size":""},"level":1,"title":""},{"_id":"rE6m74Xp32VuJC5y","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["dr:fire"],"choices":[]},"level":0,"title":"Hellish Resistance","value":{}},{"type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR"],"optional":false,"spell":{"ability":"cha","preparation":"innate","uses":{"max":"","per":""}}},"value":{},"level":0,"title":"Infernal Legacy","_id":"VUUQMvAtL25wj3vD"},{"_id":"jGeaKhTjGApgqmWw","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:standard:common","languages:exotic:infernal"],"choices":[]},"level":0,"title":"","value":{}}],"senses":{"darkvision":60,"blindsight":null,"tremorsense":null,"truesight":null,"units":"ft","special":""},"movement":{"burrow":null,"climb":null,"fly":null,"swim":null,"walk":30,"units":"ft","hover":false},"type":{"value":"humanoid","subtype":"tiefling","custom":""}},"effects":[],"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1677181073037,"modifiedTime":1699987908467,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null} +{"_id":"bFpLM0N3uTeHLdzu","name":"Breath Weapon - Copper","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a dexterity saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 acid damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":30,"width":5,"units":"ft","type":"line","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@scale.dragonborn.breath-weapon","acid"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"con"},"type":{"value":"race","subtype":""},"requirements":"Copper Dragonborn","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/acid/projectile-smoke-glowing.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234466,"modifiedTime":1699397219239,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null} +{"_id":"cnTbpPPeGW7vGjOV","name":"Fey Ancestry","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have advantage on saving throws against being charmed, and magic can't put you to sleep.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Elf, Half-Elf","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/mammals/elk-moose-marked-green.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234471,"modifiedTime":1699397219242,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kB61JPKQrDBbSNU7","name":"Breath Weapon - Red","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a Dexterity saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 fire damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":15,"width":null,"units":"ft","type":"cone","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@scale.dragonborn.breath-weapon","fire"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"con"},"type":{"value":"race","subtype":""},"requirements":"Red Dragonborn","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/fire/beam-jet-stream-trails-orange.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234466,"modifiedTime":1699397219246,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null} +{"_id":"koRPOLtj8XAFMwnW","name":"Tinker","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time. When you create a device, choose one of the following options:\nClockwork Toy: This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.\nFire Starter: The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.\nMusic Box: When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"hour","cost":1,"condition":"Expend 10 gp worth of materials"},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Rock Gnome","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/commodities/tech/cog-steel.webp","effects":[{"_id":"CkQlNsLyTZGVbnKM","changes":[{"key":"system.traits.toolProf.value","mode":2,"value":"tinker","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/commodities/tech/cog-steel.webp","label":"Tinker","origin":"Item.koRPOLtj8XAFMwnW","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234472,"modifiedTime":1699397219263,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lXIxndsBaQglHBtO","name":"Breath Weapon - Green","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a Constitution saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 poison damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":15,"width":null,"units":"ft","type":"cone","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@scale.dragonborn.breath-weapon","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"con"},"type":{"value":"race","subtype":""},"requirements":"Green Dragonborn","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/acid/projectile-beams-salvo-green.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234466,"modifiedTime":1699397219268,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null} +{"_id":"mQPZDRbUhgYTbXKa","name":"Stonecunning","ownership":{"default":0},"type":"feat","system":{"description":{"value":"Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Dwarf","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/commodities/tech/cog-bronze.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234472,"modifiedTime":1699397219272,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"n5L000DkNBU6h2oJ","name":"Half-Orc","type":"race","img":"icons/commodities/bones/skull-tusked-grey.webp","system":{"description":{"value":"Your half-orc character has certain traits deriving from your orc ancestry.Ability Score Increase. Your Strength score increases by 2, and your Constitution score increases by 1.Age. Half-orcs mature a little faster than humans, reaching adulthood around age 14. They age noticeably faster and rarely live longer than 75 years.Alignment. Half-orcs inherit a tendency toward chaos from their orc parents and are not strongly inclined toward good. Half-orcs raised among orcs and willing to live out their lives among them are usually evil.Size. Half‑orcs are somewhat larger and bulkier than humans, and they range from 5 to well over 6 feet tall. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Thanks to your orc blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Menacing. You gain proficiency in the Intimidation skill.Relentless Endurance. When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.Savage Attacks. When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.Languages. You can speak, read, and write Common and Orc. Orc is a harsh, grating language with hard consonants. It has no script of its own but is written in the Dwarvish script.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"identifier":"half-orc","advancement":[{"_id":"Nj1VOKOTjxKU15J8","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.races.97c8i9Z28thvZuA8","Compendium.dnd5e.races.0kUsT4sMUOr5FcoX"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":0,"title":""},{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":0,"fixed":{"str":2,"dex":0,"con":1,"int":0,"wis":0,"cha":0},"cap":2},"value":{"type":"asi"},"level":0,"title":""},{"_id":"jdak6D1rjScJSK8i","type":"Size","configuration":{"hint":"Half-‐‑orcs are somewhat larger and bulkier than humans, and they range from 5 to well over 6 feet tall. Your size is Medium.","sizes":["med"]},"value":{"size":""},"level":1,"title":""},{"_id":"aRv9Ec4xJCyrFMpY","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["skills:itm"],"choices":[]},"level":0,"title":"Menacing","value":{}},{"_id":"4cI2nhWNr0D1hOnx","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:standard:common","languages:standard:orc"],"choices":[]},"level":0,"title":"","value":{}}],"type":{"subtype":"orc","value":"humanoid","custom":""},"senses":{"darkvision":60,"blindsight":null,"tremorsense":null,"truesight":null,"units":"ft","special":""},"movement":{"burrow":null,"climb":null,"fly":null,"swim":null,"walk":30,"units":"ft","hover":false}},"effects":[],"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1677181067463,"modifiedTime":1699987880029,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null} +{"_id":"pAYTdRGftNr8AitK","name":"Breath Weapon - Silver","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a Constitution saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 cold damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":15,"width":null,"units":"ft","type":"cone","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":"con","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@scale.dragonborn.breath-weapon","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"con"},"type":{"value":"race","subtype":""},"requirements":"Silver Dragonborn","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/water/projectile-icecicle.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234466,"modifiedTime":1699397219281,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null} +{"_id":"pJzMSk9qYywYy65w","name":"Breath Weapon - Bronze","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a dexterity saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 lightning damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"crewed":false,"target":{"value":30,"width":5,"units":"ft","type":"line","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":"1","per":"sr","recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":"dex","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@scale.dragonborn.breath-weapon","lightning"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"con"},"type":{"value":"race","subtype":""},"requirements":"Bronze Dragonborn","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/lightning/bolt-blue.webp","effects":[],"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234466,"modifiedTime":1699397219288,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null} +{"_id":"q71Pe1F8RRtEJt8Q","name":"Hellish Resistance","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have resistance to fire damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Tiefling","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-orange.webp","effects":[{"_id":"0rAhv7npcNmDcQ3B","changes":[{"key":"system.traits.dr.value","mode":2,"value":"fire","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/air/fog-gas-smoke-swirling-orange.webp","label":"Hellish Resistance","origin":"Item.q71Pe1F8RRtEJt8Q","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234473,"modifiedTime":1699397219293,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ufysTkqet2Ctmtyi","name":"Dwarven Resilience","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You have advantage on saving throws against poison, and you have resistance against poison damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Dwarf","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/abilities/stinger-poison-green.webp","effects":[{"_id":"hIaIpLxcMZSY3qXi","changes":[{"key":"system.traits.dr.value","mode":2,"value":"poison","priority":null}],"disabled":false,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/creatures/abilities/stinger-poison-green.webp","label":"Dwarven Resilience","origin":"Item.ufysTkqet2Ctmtyi","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234474,"modifiedTime":1699397219296,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"wJc88B8OP1y1xzMw","name":"Infernal Legacy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"You know the @Compendium[dnd5e.spells.MUO1uYN7JR1hm4dR]{Thaumaturgy} cantrip.\nWhen you reach 3rd level, you can cast the @Compendium[dnd5e.spells.22dPoeXfaaAv4K3h]{Hellish Rebuke} spell as a 2nd-level spell once with this trait and regain the ability to do so when you finish a long rest.\nWhen you reach 5th level, you can cast the @Compendium[dnd5e.spells.S7VbUetIfVT7B6Eq]{Darkness} spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"activation":{"type":"","cost":null,"condition":""},"duration":{"value":"","units":""},"cover":null,"crewed":false,"target":{"value":null,"width":null,"units":"","type":"","prompt":true},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":"","prompt":true},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"type":{"value":"race","subtype":""},"requirements":"Tiefling","recharge":{"value":null,"charged":false}},"flags":{},"img":"icons/creatures/unholy/demon-fanged-horned-yellow.webp","effects":[],"folder":null,"sort":0,"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234475,"modifiedTime":1699397219300,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ydP3QzCmur55mtY2","name":"Human","type":"race","img":"icons/environment/people/commoner.webp","system":{"description":{"value":"It's hard to make generalizations about humans, but your human character has these traits.Ability Score Increase. Your ability scores each increase by 1.Age. Humans reach adulthood in their late teens and live less than a century.Alignment. Humans tend toward no particular alignment. The best and the worst are found among them.Size. Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.Speed. Your base walking speed is 30 feet.Languages. You can speak, read, and write Common and one extra language of your choice. Humans typically learn the languages of other peoples they deal with, including obscure dialects. They are fond of sprinkling their speech with words borrowed from other tongues: Orc curses, Elvish musical expressions, Dwarvish military phrases, and so on.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","uuid":"","license":"CC-BY-4.0"},"identifier":"human","advancement":[{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":0,"fixed":{"str":1,"dex":1,"con":1,"int":1,"wis":1,"cha":1},"cap":2},"value":{"type":"asi"},"level":0,"title":""},{"_id":"dNSrZePZHz2qwVpi","type":"Size","configuration":{"hint":"Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.","sizes":["med"]},"value":{"size":""},"level":1,"title":""},{"_id":"HI6r4Y6KjHND0i53","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["languages:standard:common"],"choices":[{"count":1,"pool":["languages:*"]}]},"level":0,"title":"","value":{}}],"movement":{"burrow":null,"climb":null,"fly":null,"swim":null,"walk":30,"units":"ft","hover":false},"senses":{"darkvision":null,"blindsight":null,"tremorsense":null,"truesight":null,"units":"ft","special":""},"type":{"value":"humanoid","subtype":"human","custom":""}},"effects":[],"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.4.0","coreVersion":"10.303","createdTime":1677180079259,"modifiedTime":1699987914586,"lastModifiedBy":"dnd5ebuilder0000"},"sort":0,"folder":null} diff --git a/packs/rules.db b/packs/rules.db index 0a11100105..54f8151fef 100644 --- a/packs/rules.db +++ b/packs/rules.db @@ -6,7 +6,7 @@ {"name":"Chapter 10: Spellcasting","pages":[{"name":"Spellcasting","type":"text","title":{"show":false,"level":1},"text":{"format":1,"content":"Magic permeates fantasy gaming worlds and often appears in the form of a spell.\nThis section provides the rules for casting spells. Different character classes have distinctive ways of learning and preparing their spells, and monsters use spells in unique ways. Regardless of its source, a spell follows the rules here."},"_id":"FX9TS9vmt4dyOoqJ","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":100000,"ownership":{"default":-1},"flags":{}},{"name":"What Is a Spell?","type":"text","title":{"show":true,"level":1},"text":{"format":1,"content":"A spell is a discrete magical effect, a single shaping of the magical energies that suffuse the multiverse into a specific, limited expression. In casting a spell, a character carefully plucks at the invisible strands of raw magic suffusing the world, pins them in place in a particular pattern, sets them vibrating in a specific way, and then releases them to unleash the desired effect—in most cases, all in the span of seconds.\nSpells can be versatile tools, weapons, or protective wards. They can deal damage or undo it, impose or remove conditions (see @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0]{Appendix A: Conditions}), drain life energy away, and restore life to the dead.\nUncounted thousands of spells have been created over the course of the multiverse's history, and many of them are long forgotten. Some might yet lie recorded in crumbling spellbooks hidden in ancient ruins or trapped in the minds of dead gods. Or they might someday be reinvented by a character who has amassed enough power and wisdom to do so.\nSpell Level\nEvery spell has a level from 0 to 9. A spell's level is a general indicator of how powerful it is, with the lowly (but still impressive) @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile} at 1st level and the earth-shaking @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} at 9th. Cantrips—simple but powerful spells that characters can cast almost by rote—are level 0. The higher a spell's level, the higher level a spellcaster must be to use that spell.\nSpell level and character level don't correspond directly. Typically, a character has to be at least 17th level, not 9th level, to cast a 9th-level spell.\nKnown and Prepared Spells\nBefore a spellcaster can use a spell, he or she must have the spell firmly fixed in mind, or must have access to the spell in a magic item. Members of a few classes, including bards and sorcerers, have a limited list of spells they know that are always fixed in mind. The same thing is true of many magic-using monsters. Other spellcasters, such as clerics and wizards, undergo a process of preparing spells. This process varies for different classes, as detailed in their descriptions.\nIn every case, the number of spells a caster can have fixed in mind at any given time depends on the character's level.\nSpell Slots\nRegardless of how many spells a caster knows or prepares, he or she can cast only a limited number of spells before resting. Manipulating the fabric of magic and channeling its energy into even a simple spell is physically and mentally taxing, and higherlevel spells are even more so. Thus, each spellcasting class's description (except that of the warlock) includes a table showing how many spell slots of each spell level a character can use at each character level. For example, the 3rd-level wizard Umara has four 1st-level spell slots and two 2nd-level slots.\nWhen a character casts a spell, he or she expends a slot of that spell's level or higher, effectively “filling” a slot with the spell. You can think of a spell slot as a groove of a certain size—small for a 1st-level slot, larger for a spell of higher level. A 1st-level spell fits into a slot of any size, but a 9th-level spell fits only in a 9th-level slot. So when Umara casts @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile}, a 1st-level spell, she spends one of her four 1st-level slots and has three remaining.\nFinishing a long rest restores any expended spell slots.\nSome characters and monsters have special abilities that let them cast spells without using spell slots. For example, a monk who follows the Way of the Four Elements, a warlock who chooses certain eldritch invocations, and a pit fiend from the Nine Hells can all cast spells in such a way.\nCasting a Spell at a Higher Level\nWhen a spellcaster casts a spell using a slot that is of a higher level than the spell, the spell assumes the higher level for that casting. For instance, if Umara casts @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile} using one of her 2nd-level slots, that magic missile is 2nd level. Effectively, the spell expands to fill the slot it is put into.\nSome spells, such as magic missile and @Compendium[dnd5e.spells.uUWb1wZgtMou0TVP]{Cure Wounds}, have more powerful effects when cast at a higher level, as detailed in a spell's description.\n\nCasting in Armor\nBecause of the mental focus and precise gestures required for spellcasting, you must be proficient with the armor you are wearing to cast a spell. You are otherwise too distracted and physically hampered by your armor for spellcasting.\n\nCantrips\nA cantrip is a spell that can be cast at will, without using a spell slot and without being prepared in advance. Repeated practice has fixed the spell in the caster's mind and infused the caster with the magic needed to produce the effect over and over. A cantrip's spell level is 0.\nRituals\nCertain spells have a special tag: ritual. Such a spell can be cast following the normal rules for spellcasting, or the spell can be cast as a ritual. The ritual version of a spell takes 10 minutes longer to cast than normal. It also doesn't expend a spell slot, which means the ritual version of a spell can't be cast at a higher level.\nTo cast a spell as a ritual, a spellcaster must have a feature that grants the ability to do so. The cleric and the druid, for example, have such a feature. The caster must also have the spell prepared or on his or her list of spells known, unless the character's ritual feature specifies otherwise, as the wizard's does.","markdown":""},"_id":"evx9TWix4wYU51a5","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":200000,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.ixN1vVJkzhiaebQK.JournalEntryPage.HEMX6LV0JOBk22IM"}}},{"name":"Casting a Spell","type":"text","title":{"show":true,"level":1},"text":{"format":1,"content":"When a character casts any spell, the same basic rules are followed, regardless of the character’s class or the spell’s effects.\nEach spell description begins with a block of information, including the spell’s name, level, school of magic, casting time, range, components, and duration. The rest of a spell entry describes the spell’s effect.\nCasting Time\nMost spells require a single action to cast, but some spells require a bonus action, a reaction, or much more time to cast.\nBonus Action\nA spell cast with a bonus action is especially swift. You must use a bonus action on your turn to cast the spell, provided that you haven’t already taken a bonus action this turn. You can’t cast another spell during the same turn, except for a cantrip with a casting time of 1 action.\nReactions\nSome spells can be cast as reactions. These spells take a fraction of a second to bring about and are cast in response to some event. If a spell can be cast as a reaction, the spell description tells you exactly when you can do so.\nLonger Casting Times\nCertain spells (including spells cast as rituals) require more time to cast: minutes or even hours. When you cast a spell with a casting time longer than a single action or reaction, you must spend your action each turn casting the spell, and you must maintain your concentration while you do so (see “Concentration” below). If your concentration is broken, the spell fails, but you don’t expend a spell slot. If you want to try casting the spell again, you must start over.\nRange\nThe target of a spell must be within the spell’s range. For a spell like @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile}, the target is a creature. For a spell like @Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball}, the target is the point in space where the ball of fire erupts.\nMost spells have ranges expressed in feet. Some spells can target only a creature (including you) that you touch. Other spells, such as the @Compendium[dnd5e.spells.z1mx84ONwkXKUZd7]{Shield} spell, affect only you. These spells have a range of self.\nSpells that create cones or lines of effect that originate from you also have a range of self, indicating that the origin point of the spell’s effect must be you (see “Areas of Effect”).\nOnce a spell is cast, its effects aren’t limited by its range, unless the spell’s description says otherwise.\nComponents\nA spell’s components are the physical requirements you must meet in order to cast it. Each spell’s description indicates whether it requires verbal (V), somatic (S), or material (M) components. If you can’t provide one or more of a spell’s components, you are unable to cast the spell.\nVerbal (V)\nMost spells require the chanting of mystic words. The words themselves aren’t the source of the spell’s power; rather, the particular combination of sounds, with specific pitch and resonance, sets the threads of magic in motion. Thus, a character who is gagged or in an area of silence, such as one created by the silence spell, can’t cast a spell with a verbal component.\nSomatic (S)\nSpellcasting gestures might include a forceful gesticulation or an intricate set of gestures. If a spell requires a somatic component, the caster must have free use of at least one hand to perform these gestures.\nMaterial (M)\nCasting some spells requires particular objects, specified in parentheses in the component entry. A character can use a component pouch or a spellcasting focus (found in @UUID[Compendium.dnd5e.rules.BYFd9hiJGo9L5aOM]{Chapter 5: Equipment}) in place of the components specified for a spell. But if a cost is indicated for a component, a character must have that specific component before he or she can cast the spell.\nIf a spell states that a material component is consumed by the spell, the caster must provide this component for each casting of the spell.\nA spellcaster must have a hand free to access a spell’s material components—or to hold a spellcasting focus—but it can be the same hand that he or she uses to perform somatic components.\nDuration\nA spell’s duration is the length of time the spell persists. A duration can be expressed in rounds, minutes, hours, or even years. Some spells specify that their effects last until the spells are dispelled or destroyed.\nInstantaneous\nMany spells are instantaneous. The spell harms, heals, creates, or alters a creature or an object in a way that can’t be dispelled, because its magic exists only for an instant.\nConcentration\nSome spells require you to maintain concentration in order to keep their magic active. If you lose concentration, such a spell ends.\nIf a spell must be maintained with concentration, that fact appears in its Duration entry, and the spell specifies how long you can concentrate on it. You can end concentration at any time (no action required).\nNormal activity, such as moving and attacking, doesn’t interfere with concentration. The following factors can break concentration:\n\nCasting another spell that requires concentration. You lose concentration on a spell if you cast another spell that requires concentration. You can’t concentrate on two spells at once.\nTaking damage. Whenever you take damage while you are concentrating on a spell, you must make a Constitution saving throw to maintain your concentration. The DC equals 10 or half the damage you take, whichever number is higher. If you take damage from multiple sources, such as an arrow and a dragon’s breath, you make a separate saving throw for each source of damage.\nBeing incapacitated or killed. You lose concentration on a spell if you are incapacitated or if you die.\n\nThe GM might also decide that certain environmental phenomena, such as a wave crashing over you while you’re on a storm-tossed ship, require you to succeed on a DC 10 Constitution saving throw to maintain concentration on a spell.\nTargets\nA typical spell requires you to pick one or more targets to be affected by the spell’s magic. A spell’s description tells you whether the spell targets creatures, objects, or a point of origin for an area of effect (described below).\nUnless a spell has a perceptible effect, a creature might not know it was targeted by a spell at all. An effect like crackling lightning is obvious, but a more subtle effect, such as an attempt to read a creature’s thoughts, typically goes unnoticed, unless a spell says otherwise.\nA Clear Path to the Target\nTo target something, you must have a clear path to it, so it can’t be behind total cover.\nIf you place an area of effect at a point that you can’t see and an obstruction, such as a wall, is between you and that point, the point of origin comes into being on the near side of that obstruction.\nTargeting Yourself\nIf a spell targets a creature of your choice, you can choose yourself, unless the creature must be hostile or specifically a creature other than you. If you are in the area of effect of a spell you cast, you can target yourself.\nAreas of Effect\nSpells such as @Compendium[dnd5e.spells.5SuJewoa1CRWaj1F]{Burning Hands} and @Compendium[dnd5e.spells.RpKjTlYASrfqUPVA]{Cone of Cold} cover an area, allowing them to affect multiple creatures at once.\nA spell’s description specifies its area of effect, which typically has one of five different shapes: cone, cube, cylinder, line, or sphere. Every area of effect has a point of origin, a location from which the spell’s energy erupts. The rules for each shape specify how you position its point of origin. Typically, a point of origin is a point in space, but some spells have an area whose origin is a creature or an object.\nA spell’s effect expands in straight lines from the point of origin. If no unblocked straight line extends from the point of origin to a location within the area of effect, that location isn’t included in the spell’s area. To block one of these imaginary lines, an obstruction must provide total cover.\nCone\nA cone extends in a direction you choose from its point of origin. A cone’s width at a given point along its length is equal to that point’s distance from the point of origin. A cone’s area of effect specifies its maximum length.\nA cone’s point of origin is not included in the cone’s area of effect, unless you decide otherwise.\nCube\nYou select a cube’s point of origin, which lies anywhere on a face of the cubic effect. The cube’s size is expressed as the length of each side.\nA cube’s point of origin is not included in the cube’s area of effect, unless you decide otherwise.\nCylinder\nA cylinder’s point of origin is the center of a circle of a particular radius, as given in the spell description. The circle must either be on the ground or at the height of the spell effect. The energy in a cylinder expands in straight lines from the point of origin to the perimeter of the circle, forming the base of the cylinder. The spell’s effect then shoots up from the base or down from the top, to a distance equal to the height of the cylinder.\nA cylinder’s point of origin is included in the cylinder’s area of effect.\nLine\nA line extends from its point of origin in a straight path up to its length and covers an area defined by its width.\nA line’s point of origin is not included in the line’s area of effect, unless you decide otherwise.\nSphere\nYou select a sphere’s point of origin, and the sphere extends outward from that point. The sphere’s size is expressed as a radius in feet that extends from the point.\nA sphere’s point of origin is included in the sphere’s area of effect.\nSaving Throws\nMany spells specify that a target can make a saving throw to avoid some or all of a spell’s effects. The spell specifies the ability that the target uses for the save and what happens on a success or failure.\nThe DC to resist one of your spells equals 8 + your spellcasting ability modifier + your proficiency bonus + any special modifiers.\nAttack Rolls\nSome spells require the caster to make an attack roll to determine whether the spell effect hits the intended target. Your attack bonus with a spell attack equals your spellcasting ability modifier + your proficiency bonus.\nMost spells that require attack rolls involve ranged attacks. Remember that you have disadvantage on a ranged attack roll if you are within 5 feet of a hostile creature that can see you and that isn’t incapacitated.\nCombining Magical Effects\nThe effects of different spells add together while the durations of those spells overlap. The effects of the same spell cast multiple times don’t combine, however. Instead, the most potent effect—such as the highest bonus—from those castings applies while their durations overlap.\nFor example, if two clerics cast bless on the same target, that character gains the spell’s benefit only once; he or she doesn’t get to roll two bonus dice.\n\nThe Schools of Magic\nAcademies of magic group spells into eight categories called schools of magic. Scholars, particularly wizards, apply these categories to all spells, believing that all magic functions in essentially the same way, whether it derives from rigorous study or is bestowed by a deity.\nThe schools of magic help describe spells; they have no rules of their own, although some rules refer to the schools.\nAbjuration spells are protective in nature, though some of them have aggressive uses. They create magical barriers, negate harmful effects, harm trespassers, or banish creatures to other planes of existence.\nConjuration spells involve the transportation of objects and creatures from one location to another. Some spells summon creatures or objects to the caster’s side, whereas others allow the caster to teleport to another location. Some conjurations create objects or effects out of nothing.\nDivination spells reveal information, whether in the form of secrets long forgotten, glimpses of the future, the locations of hidden things, the truth behind illusions, or visions of distant people or places.\nEnchantment spells affect the minds of others, influencing or controlling their behavior. Such spells can make enemies see the caster as a friend, force creatures to take a course of action, or even control another creature like a puppet.\nEvocation spells manipulate magical energy to produce a desired effect. Some call up blasts of fire or lightning. Others channel positive energy to heal wounds.\nIllusion spells deceive the senses or minds of others. They cause people to see things that are not there, to miss things that are there, to hear phantom noises, or to remember things that never happened. Some illusions create phantom images that any creature can see, but the most insidious illusions plant an image directly in the mind of a creature.\nNecromancy spells manipulate the energies of life and death. Such spells can grant an extra reserve of life force, drain the life energy from another creature, create the undead, or even bring the dead back to life. Creating the undead through the use of necromancy spells such as animate dead is not a good act, and only evil casters use such spells frequently.\nTransmutation spells change the properties of a creature, object, or environment. They might turn an enemy into a harmless creature, bolster the strength of an ally, make an object move at the caster’s command, or enhance a creature’s innate healing abilities to rapidly recover from injury.","markdown":""},"_id":"wre9ECSVuEyJBYhr","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":300000,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.JH4AH5qkr4FNCXnQ.JournalEntryPage.4ZbbvtpSTsi89DRz"}}},{"name":"Bard Spells","type":"text","title":{"show":false,"level":1},"text":{"format":1,"content":"Cantrips (0 Level)\n@Compendium[dnd5e.spells.CAxSzHWizrafT033]{Dancing Lights}\n@Compendium[dnd5e.spells.Bnn9Nzajixvow9xi]{Light}\n@Compendium[dnd5e.spells.Utk1OQRwYkMkFRD3]{Mage Hand}\n@Compendium[dnd5e.spells.kjmjY0zlE6IEiQVL]{Mending}\n@Compendium[dnd5e.spells.icZokbgV1jIMpNCv]{Message}\n@Compendium[dnd5e.spells.oIzA2MEHwxhtQneU]{Minor Illusion}\n@Compendium[dnd5e.spells.udsLtG0BugXHR2JQ]{Prestidigitation}\n@Compendium[dnd5e.spells.mGGlcLdggHwcL7MG]{True Strike}\n@Compendium[dnd5e.spells.cdrYKaFi98YWaBMw]{Vicious Mockery}\n1st Level\n@Compendium[dnd5e.spells.hDOENzjuj5WpLq7B]{Animal Friendship}\n@Compendium[dnd5e.spells.95K2aUhAGV9qXjnf]{Bane}\n@Compendium[dnd5e.spells.eS7XnnApoxRxYXPs]{Charm Person}\n@Compendium[dnd5e.spells.4dSvfvTy2ZIJ3K4k]{Comprehend Languages}\n@Compendium[dnd5e.spells.uUWb1wZgtMou0TVP]{Cure Wounds}\n@Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic}\n@Compendium[dnd5e.spells.A3q2gTNqG6fvNGrv]{Disguise Self}\n@Compendium[dnd5e.spells.nqBDWkVOfcGZt4YU]{Faerie Fire}\n@Compendium[dnd5e.spells.pub0OWVEB71XQx1n]{Feather Fall}\n@Compendium[dnd5e.spells.o8Dh7fblk1d16tnO]{Healing Word}\n@Compendium[dnd5e.spells.ge3Saet9zPTDyaoL]{Heroism}\n@Compendium[dnd5e.spells.BQk5Row4NymMnUQl]{Hideous Laughter}\n@Compendium[dnd5e.spells.3OZnNhunvRtPOQmH]{Identify}\n@Compendium[dnd5e.spells.82jM6qD9axLJsTrH]{Illusory Script}\n@Compendium[dnd5e.spells.B0pnIcc52O6G8hi8]{Longstrider}\n@Compendium[dnd5e.spells.BrBZdCCrJRIVg7YX]{Silent Image}\n@Compendium[dnd5e.spells.KhwiSi9fwVfUPtku]{Sleep}\n@Compendium[dnd5e.spells.aL1F8fvYLtNzUbKu]{Speak with Animals}\n@Compendium[dnd5e.spells.WTbOQBsarsL1LuXJ]{Thunderwave}\n@Compendium[dnd5e.spells.ccduLIvutyNqvkgv]{Unseen Servant}\n2nd Level\n@Compendium[dnd5e.spells.X8w9EzYLGc4vQ1H2]{Animal Messenger}\n@Compendium[dnd5e.spells.zwGsAv6kmwzYGhh3]{Blindness/Deafness}\n@Compendium[dnd5e.spells.3MYDjS6k9IYL0aTj]{Calm Emotions}\n@Compendium[dnd5e.spells.ppWAAEul0QHtm4er]{Detect Thoughts}\n@Compendium[dnd5e.spells.9eOZDBImVKxbeOyZ]{Enhance Ability}\n@Compendium[dnd5e.spells.30ZgXtijJVCxQk5N]{Enthrall}\n@Compendium[dnd5e.spells.2yHXEcrRbadZDr5M]{Heat Metal}\n@Compendium[dnd5e.spells.3Lo9boi7P2ro6QV4]{Hold Person}\n@Compendium[dnd5e.spells.1N8dDMMgZ1h1YJ3B]{Invisibility}\n@Compendium[dnd5e.spells.1nhIxh0DsJsntCfj]{Knock}\n@Compendium[dnd5e.spells.F0GsG0SJzsIOacwV]{Lesser Restoration}\n@Compendium[dnd5e.spells.Iv2qqSAT7OkXKPFx]{Locate Animals or Plants}\n@Compendium[dnd5e.spells.SleYkHovQ8NagmeV]{Locate Object}\n@Compendium[dnd5e.spells.7v06rdmUakoTk1LQ]{Magic Mouth}\n@Compendium[dnd5e.spells.DQzlB5Y3k791W5bH]{See Invisibility}\n@Compendium[dnd5e.spells.wJKpSvSTbSkTjqyb]{Shatter}\n@Compendium[dnd5e.spells.5VhqFROQYjr1P9lp]{Silence}\n@Compendium[dnd5e.spells.zMAWdyc8UVb37BK4]{Suggestion}\n@Compendium[dnd5e.spells.CylBa7jR8DSbo8Z3]{Zone of Truth}\n3rd Level\n@Compendium[dnd5e.spells.pO4zGe5LmFIYqJiL]{Bestow Curse}\n@Compendium[dnd5e.spells.cg50KpBkBdPK6vPL]{Clairvoyance}\n@Compendium[dnd5e.spells.15Fa6q1nH27XfbR8]{Dispel Magic}\n@Compendium[dnd5e.spells.XXUDGFELgoskdOD0]{Fear}\n@Compendium[dnd5e.spells.pB7XVYwdGNcUG935]{Glyph of Warding}\n@Compendium[dnd5e.spells.6g3WLOZ2u0EbaLAd]{Hypnotic Pattern}\n@Compendium[dnd5e.spells.nslx2nT3p4lNkmdp]{Major Image}\n@Compendium[dnd5e.spells.aU62xVUBYkAQWIHv]{Nondetection}\n@Compendium[dnd5e.spells.YWtwzp6ZnQJMEmVW]{Plant Growth}\n@Compendium[dnd5e.spells.GtGjNjPBgUHxGYAD]{Sending}\n@Compendium[dnd5e.spells.I2LUSF5ogc7Bj62e]{Speak with Dead}\n@Compendium[dnd5e.spells.2VXGS206tuChoeXy]{Speak with Plants}\n@Compendium[dnd5e.spells.TwlD4PLcltv7Xh7j]{Stinking Cloud}\n@Compendium[dnd5e.spells.NXWWWgHtWb7Nv21F]{Tiny Hut}\n@Compendium[dnd5e.spells.gopnZvS0c2jD5FP8]{Tongues}\n4th Level\n@Compendium[dnd5e.spells.P6f1PPKPd9BCb742]{Compulsion}\n@Compendium[dnd5e.spells.9hQXdMSmerkTsHDe]{Confusion}\n@Compendium[dnd5e.spells.A4RsPuSvB9wFtz1j]{Dimension Door}\n@Compendium[dnd5e.spells.da0a1t2FqaTjRZGT]{Freedom of Movement}\n@Compendium[dnd5e.spells.tEpDmYZNGc9f5OhJ]{Greater Invisibility}\n@Compendium[dnd5e.spells.sTIkQK7KuQNOyY0C]{Hallucinatory Terrain}\n@Compendium[dnd5e.spells.gXtzz9t1DTzJeLr4]{Locate Creature}\n@Compendium[dnd5e.spells.04nMsTWkIFvkbXlY]{Polymorph}\n5th Level\n@Compendium[dnd5e.spells.ATo0Eb63TDtnu6iA]{Animate Objects}\n@Compendium[dnd5e.spells.MCEpGpvovcXagwQS]{Awaken}\n@Compendium[dnd5e.spells.91Sw6vOIaO7U8DvM]{Dominate Person}\n@Compendium[dnd5e.spells.kSPRpeIx3w3nihrF]{Dream}\n@Compendium[dnd5e.spells.JQyigMNPiDnGI18b]{Geas}\n@Compendium[dnd5e.spells.WzvJ7G3cqvIubsLk]{Greater Restoration}\n@Compendium[dnd5e.spells.l9Ju5KE7bbn3WpTm]{Hold Monster}\n@Compendium[dnd5e.spells.W4Qx5z0id6da0vqg]{Legend Lore}\n@Compendium[dnd5e.spells.Pyzmm8R7rVsNAPsd]{Mass Cure Wounds}\n@Compendium[dnd5e.spells.MBMaQLwoy05qzMJ3]{Mislead}\n@Compendium[dnd5e.spells.r3243JU4AyQJyfX4]{Modify Memory}\n@Compendium[dnd5e.spells.42O2aNBW7vK90gTL]{Planar Binding}\n@Compendium[dnd5e.spells.AGFMPAmuzwWO6Dfz]{Raise Dead}\n@Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying}\n@Compendium[dnd5e.spells.mbFw57uyfLkyiw5k]{Seeming}\n@Compendium[dnd5e.spells.8aWtP5hcrmcEesBW]{Teleportation Circle}\n6th Level\n@Compendium[dnd5e.spells.ZRqu3Xh9FmlBCZGy]{Eyebite}\n@Compendium[dnd5e.spells.cYI4RNNjI5GAmLhy]{Find the Path}\n@Compendium[dnd5e.spells.yw0tYQkOMCgKZ8Ur]{Guards and Wards}\n@Compendium[dnd5e.spells.TfRzwEgBHHkCc6Ql]{Irresistible Dance}\n@Compendium[dnd5e.spells.5OGFdJw35QXp6mh6]{Mass Suggestion}\n@Compendium[dnd5e.spells.bA2sk9eMKBeY7EPD]{Programmed Illusion}\n@Compendium[dnd5e.spells.XzkJpE6XpZfKjODD]{True Seeing}\n7th Level\n@Compendium[dnd5e.spells.LTDNWoFVJNLjiiNa]{Arcane Sword}\n@Compendium[dnd5e.spells.PQuEgKyCdovOvhqN]{Etherealness}\n@Compendium[dnd5e.spells.Y7uWUO4yqUN0JKl0]{Forcecage}\n@Compendium[dnd5e.spells.pn4SnsFDvYDiE6rC]{Magnificent Mansion}\n@Compendium[dnd5e.spells.f38w5rd9SgdmWc6F]{Mirage Arcane}\n@Compendium[dnd5e.spells.ePhRKHXRE7l1sEoQ]{Project Image}\n@Compendium[dnd5e.spells.9kGrFXnLiRg3Xnbo]{Regenerate}\n@Compendium[dnd5e.spells.jhhT9PsHy5A7EojO]{Resurrection}\n@Compendium[dnd5e.spells.B2kbmgbA2WQR00kx]{Symbol}\n@Compendium[dnd5e.spells.L4J89JXqbKs6puEV]{Teleport}\n8th Level\n@Compendium[dnd5e.spells.eEpy1ONlXumKS1mp]{Dominate Monster}\n@Compendium[dnd5e.spells.hYCrN82dMJFuJODB]{Feeblemind}\n@Compendium[dnd5e.spells.1RzxKZzkQOoioxPj]{Glibness}\n@Compendium[dnd5e.spells.bllEWfm9xfEKynhv]{Mind Blank}\n@Compendium[dnd5e.spells.35j2QIMmIk6aEdxj]{Power Word Stun}\n9th Level\n@Compendium[dnd5e.spells.6HEEhLdJz32TL4Js]{Foresight}\n@Compendium[dnd5e.spells.dmvaMLFWFtv0qx0S]{Power Word Kill}\n@Compendium[dnd5e.spells.QbQZKoXOgHWN06aa]{True Polymorph}"},"_id":"ziBzRlrpBm1KVV0j","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":400000,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.IryZdZqi3R8JdTi1.JournalEntryPage.3s1zGPfT91CpLKgC"}}},{"name":"Cleric Spells","type":"text","title":{"show":false,"level":1},"text":{"format":1,"content":"Cantrips (0 Level)\n@Compendium[dnd5e.spells.P7mF2MxSuVJwHRRY]{Guidance}\n@Compendium[dnd5e.spells.Bnn9Nzajixvow9xi]{Light}\n@Compendium[dnd5e.spells.kjmjY0zlE6IEiQVL]{Mending}\n@Compendium[dnd5e.spells.dl8YwvMboBqX2OC4]{Resistance}\n@Compendium[dnd5e.spells.n9pJzTDsAwQxJVRl]{Sacred Flame}\n@Compendium[dnd5e.spells.8zT7njvqbpXs4Cel]{Spare the Dying}\n@Compendium[dnd5e.spells.MUO1uYN7JR1hm4dR]{Thaumaturgy}\n1st Level\n@Compendium[dnd5e.spells.95K2aUhAGV9qXjnf]{Bane}\n@Compendium[dnd5e.spells.8dzaICjGy6mTUaUr]{Bless}\n@Compendium[dnd5e.spells.arzCrMRgcNiQuh43]{Command}\n@Compendium[dnd5e.spells.a3XtAO5n2GrqiAh5]{Create or Destroy Water}\n@Compendium[dnd5e.spells.uUWb1wZgtMou0TVP]{Cure Wounds}\n@Compendium[dnd5e.spells.Mzh95utKDPIrjiH8]{Detect Evil and Good}\n@Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic}\n@Compendium[dnd5e.spells.2skfDtglk1mGrb3l]{Detect Poison and Disease}\n@Compendium[dnd5e.spells.7buEm5KhI5lP8m1z]{Guiding Bolt}\n@Compendium[dnd5e.spells.o8Dh7fblk1d16tnO]{Healing Word}\n@Compendium[dnd5e.spells.ksaaTxIbKx2sJfia]{Inflict Wounds}\n@Compendium[dnd5e.spells.xmDBqZhRVrtLP8h2]{Protection from Evil and Good}\n@Compendium[dnd5e.spells.Kn7K5PtYUJAKZTTp]{Purify Food and Drink}\n@Compendium[dnd5e.spells.gvdA9nPuWLck4tBl]{Sanctuary}\n@Compendium[dnd5e.spells.jZ6JNykRtdQ90MOo]{Shield of Faith}\n2nd Level\n@Compendium[dnd5e.spells.Opwh2PdX4runSBlm]{Aid}\n@Compendium[dnd5e.spells.4v2H3hHb3Ph9XLNd]{Augury}\n@Compendium[dnd5e.spells.zwGsAv6kmwzYGhh3]{Blindness/Deafness}\n@Compendium[dnd5e.spells.3MYDjS6k9IYL0aTj]{Calm Emotions}\n@Compendium[dnd5e.spells.MK6gpQMeDFo0cP9f]{Continual Flame}\n@Compendium[dnd5e.spells.9eOZDBImVKxbeOyZ]{Enhance Ability}\n@Compendium[dnd5e.spells.KrM3oHVv13RAALrS]{Find Traps}\n@Compendium[dnd5e.spells.n4JDcFKe5ikzYmAc]{Gentle Repose}\n@Compendium[dnd5e.spells.3Lo9boi7P2ro6QV4]{Hold Person}\n@Compendium[dnd5e.spells.F0GsG0SJzsIOacwV]{Lesser Restoration}\n@Compendium[dnd5e.spells.SleYkHovQ8NagmeV]{Locate Object}\n@Compendium[dnd5e.spells.MOEmz9N0j0QPkKEE]{Prayer of Healing}\n@Compendium[dnd5e.spells.MAxM77CDUu8dgIRQ]{Protection from Poison}\n@Compendium[dnd5e.spells.5VhqFROQYjr1P9lp]{Silence}\n@Compendium[dnd5e.spells.JbxsYXxSOTZbf9I0]{Spiritual Weapon}\n@Compendium[dnd5e.spells.JVhKeanAXZH62DrF]{Warding Bond}\n@Compendium[dnd5e.spells.CylBa7jR8DSbo8Z3]{Zone of Truth}\n3rd Level\n@Compendium[dnd5e.spells.oyE5nVppa5mde5gT]{Animate Dead}\n@Compendium[dnd5e.spells.ZU9d6woBdUP8pIPt]{Beacon of Hope}\n@Compendium[dnd5e.spells.pO4zGe5LmFIYqJiL]{Bestow Curse}\n@Compendium[dnd5e.spells.cg50KpBkBdPK6vPL]{Clairvoyance}\n@Compendium[dnd5e.spells.BV0mpbHh29IbbIj5]{Create Food and Water}\n@Compendium[dnd5e.spells.BP3GCwa66IAw1yTG]{Daylight}\n@Compendium[dnd5e.spells.15Fa6q1nH27XfbR8]{Dispel Magic}\n@Compendium[dnd5e.spells.pB7XVYwdGNcUG935]{Glyph of Warding}\n@Compendium[dnd5e.spells.y8A4HfTwd93ypdEz]{Magic Circle}\n@Compendium[dnd5e.spells.34ddoYIrnOZ2GFYi]{Mass Healing Word}\n@Compendium[dnd5e.spells.64uo4fHriHLjRUrX]{Meld into Stone}\n@Compendium[dnd5e.spells.j8NtLXOOJ3GAKF8I]{Protection from Energy}\n@Compendium[dnd5e.spells.XZhdgVK3cLoxNCQl]{Remove Curse}\n@Compendium[dnd5e.spells.LmRHHMtplpxr9fX6]{Revivify}\n@Compendium[dnd5e.spells.GtGjNjPBgUHxGYAD]{Sending}\n@Compendium[dnd5e.spells.I2LUSF5ogc7Bj62e]{Speak with Dead}\n@Compendium[dnd5e.spells.uCud2s4TjMfjiXUb]{Spirit Guardians}\n@Compendium[dnd5e.spells.gopnZvS0c2jD5FP8]{Tongues}\n@Compendium[dnd5e.spells.YBda6nLKjxdT1LbS]{Water Walk}\n4th Level\n@Compendium[dnd5e.spells.pxpb2eOB6bv4phAf]{Banishment}\n@Compendium[dnd5e.spells.7fFHlBk3UNX8gPKL]{Control Water}\n@Compendium[dnd5e.spells.VtCXMdyM6mAdIJZb]{Death Ward}\n@Compendium[dnd5e.spells.XqzXSKNR75ZdYTA9]{Divination}\n@Compendium[dnd5e.spells.da0a1t2FqaTjRZGT]{Freedom of Movement}\n@Compendium[dnd5e.spells.TgHsuhNasPbhu8MO]{Guardian of Faith}\n@Compendium[dnd5e.spells.gXtzz9t1DTzJeLr4]{Locate Creature}\n@Compendium[dnd5e.spells.QvGcdRUSNRKEQJlK]{Stone Shape}\n5th Level\n@Compendium[dnd5e.spells.d54VDyFulD9xxY7J]{Commune}\n@Compendium[dnd5e.spells.CjIq8Ed7bu3vVwT1]{Contagion}\n@Compendium[dnd5e.spells.TkJ8Wtg1L7TZtspm]{Dispel Evil and Good}\n@Compendium[dnd5e.spells.5e1xTohkzqFqbYH4]{Flame Strike}\n@Compendium[dnd5e.spells.JQyigMNPiDnGI18b]{Geas}\n@Compendium[dnd5e.spells.WzvJ7G3cqvIubsLk]{Greater Restoration}\n@Compendium[dnd5e.spells.SLxA9QhrggTz0taU]{Hallow}\n@Compendium[dnd5e.spells.OVikYmSdHliAG2YD]{Insect Plague}\n@Compendium[dnd5e.spells.W4Qx5z0id6da0vqg]{Legend Lore}\n@Compendium[dnd5e.spells.Pyzmm8R7rVsNAPsd]{Mass Cure Wounds}\n@Compendium[dnd5e.spells.42O2aNBW7vK90gTL]{Planar Binding}\n@Compendium[dnd5e.spells.AGFMPAmuzwWO6Dfz]{Raise Dead}\n@Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying}\n6th Level\n@Compendium[dnd5e.spells.dLJhxDfeyOsc3zsY]{Blade Barrier}\n@Compendium[dnd5e.spells.E4NXux0RHvME1XgP]{Create Undead}\n@Compendium[dnd5e.spells.cYI4RNNjI5GAmLhy]{Find the Path}\n@Compendium[dnd5e.spells.64D1gNZ4hx7SWG2x]{Forbiddance}\n@Compendium[dnd5e.spells.tMH6Ivn4GmE1naMj]{Harm}\n@Compendium[dnd5e.spells.qcYitWoSMTnKkzM1]{Heal}\n@Compendium[dnd5e.spells.mgFqi0ev8f7Ut19y]{Heroes' Feast}\n@Compendium[dnd5e.spells.fkREcytuZ8sngWtC]{Planar Ally}\n@Compendium[dnd5e.spells.XzkJpE6XpZfKjODD]{True Seeing}\n@Compendium[dnd5e.spells.76C0FdcxlU8F9Rl2]{Word of Recall}\n7th Level\n@Compendium[dnd5e.spells.XT7nzJmVGgv73uaf]{Conjure Celestial}\n@Compendium[dnd5e.spells.T1vpZLam7LezjToj]{Divine Word}\n@Compendium[dnd5e.spells.PQuEgKyCdovOvhqN]{Etherealness}\n@Compendium[dnd5e.spells.J3uILDYS7MiOfmTJ]{Fire Storm}\n@Compendium[dnd5e.spells.J6Jpw5XzB5aTeqnz]{Plane Shift}\n@Compendium[dnd5e.spells.9kGrFXnLiRg3Xnbo]{Regenerate}\n@Compendium[dnd5e.spells.jhhT9PsHy5A7EojO]{Resurrection}\n@Compendium[dnd5e.spells.B2kbmgbA2WQR00kx]{Symbol}\n8th Level\n@Compendium[dnd5e.spells.Eon0jzGzQRNluTPQ]{Antimagic Field}\n@Compendium[dnd5e.spells.ZPd73HtKF3At11jh]{Control Weather}\n@Compendium[dnd5e.spells.x5JNBSyIBBZsjcGT]{Earthquake}\n@Compendium[dnd5e.spells.j8S49Rea8b1640Zi]{Holy Aura}\n9th Level\n@Compendium[dnd5e.spells.TIoadMIsUKD4edXi]{Astral Projection}\n@Compendium[dnd5e.spells.XbwGq5kDJNvAxNXV]{Gate}\n@Compendium[dnd5e.spells.Y6oItIuhOJZ0i0FC]{Mass Heal}\n@Compendium[dnd5e.spells.qLeEXZDbW5y4bmLY]{True Resurrection}"},"_id":"cuG9d7J9fQH9InYT","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":500000,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.pp8EcJKHl05DxFPO.JournalEntryPage.42FZuER5aDbNoYmO"}}},{"name":"Druid Spells","type":"text","title":{"show":false,"level":1},"text":{"format":1,"content":"Cantrips (0 Level)\n@Compendium[dnd5e.spells.SbSvZKkJASyk8jKo]{Druidcraft}\n@Compendium[dnd5e.spells.P7mF2MxSuVJwHRRY]{Guidance}\n@Compendium[dnd5e.spells.kjmjY0zlE6IEiQVL]{Mending}\n@Compendium[dnd5e.spells.g2u9PYfqWQAyg9OI]{Poison Spray}\n@Compendium[dnd5e.spells.eCPQuQkIabFKTl9u]{Produce Flame}\n@Compendium[dnd5e.spells.dl8YwvMboBqX2OC4]{Resistance}\n@Compendium[dnd5e.spells.VzgFzcmocr1X1cp4]{Shillelagh}\n1st Level\n@Compendium[dnd5e.spells.hDOENzjuj5WpLq7B]{Animal Friendship}\n@Compendium[dnd5e.spells.eS7XnnApoxRxYXPs]{Charm Person}\n@Compendium[dnd5e.spells.a3XtAO5n2GrqiAh5]{Create or Destroy Water}\n@Compendium[dnd5e.spells.uUWb1wZgtMou0TVP]{Cure Wounds}\n@Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic}\n@Compendium[dnd5e.spells.2skfDtglk1mGrb3l]{Detect Poison and Disease}\n@Compendium[dnd5e.spells.gMrWeG8fMDPRFiVe]{Entangle}\n@Compendium[dnd5e.spells.nqBDWkVOfcGZt4YU]{Faerie Fire}\n@Compendium[dnd5e.spells.IBJmWjzbQGu7M4UX]{Fog Cloud}\n@Compendium[dnd5e.spells.Qf6CAZkc7ms4ZY3e]{Goodberry}\n@Compendium[dnd5e.spells.o8Dh7fblk1d16tnO]{Healing Word}\n@Compendium[dnd5e.spells.ZrTc23tToJ0JpH2h]{Jump}\n@Compendium[dnd5e.spells.B0pnIcc52O6G8hi8]{Longstrider}\n@Compendium[dnd5e.spells.Kn7K5PtYUJAKZTTp]{Purify Food and Drink}\n@Compendium[dnd5e.spells.aL1F8fvYLtNzUbKu]{Speak with Animals}\n@Compendium[dnd5e.spells.WTbOQBsarsL1LuXJ]{Thunderwave}\n2nd Level\n@Compendium[dnd5e.spells.X8w9EzYLGc4vQ1H2]{Animal Messenger}\n@Compendium[dnd5e.spells.JPwIEfgUPVebr5AH]{Barkskin}\n@Compendium[dnd5e.spells.hJ6ZiA3fpoY8v9cp]{Darkvision}\n@Compendium[dnd5e.spells.9eOZDBImVKxbeOyZ]{Enhance Ability}\n@Compendium[dnd5e.spells.KrM3oHVv13RAALrS]{Find Traps}\n@Compendium[dnd5e.spells.Advtckpz1B733bu9]{Flame Blade}\n@Compendium[dnd5e.spells.FjYE214HTERCRZNm]{Flaming Sphere}\n@Compendium[dnd5e.spells.FSMy6VAjDnXY9vWz]{Gust of Wind}\n@Compendium[dnd5e.spells.2yHXEcrRbadZDr5M]{Heat Metal}\n@Compendium[dnd5e.spells.3Lo9boi7P2ro6QV4]{Hold Person}\n@Compendium[dnd5e.spells.F0GsG0SJzsIOacwV]{Lesser Restoration}\n@Compendium[dnd5e.spells.Iv2qqSAT7OkXKPFx]{Locate Animals or Plants}\n@Compendium[dnd5e.spells.SleYkHovQ8NagmeV]{Locate Object}\n@Compendium[dnd5e.spells.bV3yun6MIuFj71Er]{Moonbeam}\n@Compendium[dnd5e.spells.pRMvmknwLf2tdMTj]{Pass without Trace}\n@Compendium[dnd5e.spells.MAxM77CDUu8dgIRQ]{Protection from Poison}\n@Compendium[dnd5e.spells.9gYGkrL6qFTsE6fw]{Spike Growth}\n3rd Level\n@Compendium[dnd5e.spells.ehvmg9U9fcMEhE4z]{Call Lightning}\n@Compendium[dnd5e.spells.1Drt0SHxbEAHxprN]{Conjure Animals}\n@Compendium[dnd5e.spells.BP3GCwa66IAw1yTG]{Daylight}\n@Compendium[dnd5e.spells.15Fa6q1nH27XfbR8]{Dispel Magic}\n@Compendium[dnd5e.spells.64uo4fHriHLjRUrX]{Meld into Stone}\n@Compendium[dnd5e.spells.YWtwzp6ZnQJMEmVW]{Plant Growth}\n@Compendium[dnd5e.spells.j8NtLXOOJ3GAKF8I]{Protection from Energy}\n@Compendium[dnd5e.spells.dhqBY4TvVjxVmOZd]{Sleet Storm}\n@Compendium[dnd5e.spells.2VXGS206tuChoeXy]{Speak with Plants}\n@Compendium[dnd5e.spells.13uVuBQP6VaiSPvC]{Water Breathing}\n@Compendium[dnd5e.spells.YBda6nLKjxdT1LbS]{Water Walk}\n@Compendium[dnd5e.spells.ew6GA8dJy2spQmFW]{Wind Wall}\n4th Level\n@Compendium[dnd5e.spells.pybg5MNc3lkerH4Y]{Blight}\n@Compendium[dnd5e.spells.9hQXdMSmerkTsHDe]{Confusion}\n@Compendium[dnd5e.spells.KgEw3sDr39C6g8nY]{Conjure Minor Elementals}\n@Compendium[dnd5e.spells.dEfSELiY1eO3cpX9]{Conjure Woodland Beings}\n@Compendium[dnd5e.spells.7fFHlBk3UNX8gPKL]{Control Water}\n@Compendium[dnd5e.spells.LrPvWHBPmiMQQsKB]{Dominate Beast}\n@Compendium[dnd5e.spells.da0a1t2FqaTjRZGT]{Freedom of Movement}\n@Compendium[dnd5e.spells.czXrVRx6XYRWsHAi]{Giant Insect}\n@Compendium[dnd5e.spells.sTIkQK7KuQNOyY0C]{Hallucinatory Terrain}\n@Compendium[dnd5e.spells.WN2LWEljYU6QqnRH]{Ice Storm}\n@Compendium[dnd5e.spells.gXtzz9t1DTzJeLr4]{Locate Creature}\n@Compendium[dnd5e.spells.04nMsTWkIFvkbXlY]{Polymorph}\n@Compendium[dnd5e.spells.QvGcdRUSNRKEQJlK]{Stone Shape}\n@Compendium[dnd5e.spells.ReMbjfeOKoSj3O79]{Stoneskin}\n@Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire}\n5th Level\n@Compendium[dnd5e.spells.wXzkqpeFP8eWgJzK]{Antilife Shell}\n@Compendium[dnd5e.spells.MCEpGpvovcXagwQS]{Awaken}\n@Compendium[dnd5e.spells.dp6xny4v8PDoIGjh]{Commune with Nature}\n@Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental}\n@Compendium[dnd5e.spells.CjIq8Ed7bu3vVwT1]{Contagion}\n@Compendium[dnd5e.spells.JQyigMNPiDnGI18b]{Geas}\n@Compendium[dnd5e.spells.WzvJ7G3cqvIubsLk]{Greater Restoration}\n@Compendium[dnd5e.spells.OVikYmSdHliAG2YD]{Insect Plague}\n@Compendium[dnd5e.spells.Pyzmm8R7rVsNAPsd]{Mass Cure Wounds}\n@Compendium[dnd5e.spells.42O2aNBW7vK90gTL]{Planar Binding}\n@Compendium[dnd5e.spells.zMEo5DKK8uxsuWnq]{Reincarnate}\n@Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying}\n@Compendium[dnd5e.spells.DUBgwHPakcLDkB6W]{Tree Stride}\n@Compendium[dnd5e.spells.NmoRmM1mhuM3pqnY]{Wall of Stone}\n6th Level\n@Compendium[dnd5e.spells.yN3XZZujhR4aVvPa]{Conjure Fey}\n@Compendium[dnd5e.spells.cYI4RNNjI5GAmLhy]{Find the Path}\n@Compendium[dnd5e.spells.qcYitWoSMTnKkzM1]{Heal}\n@Compendium[dnd5e.spells.mgFqi0ev8f7Ut19y]{Heroes' Feast}\n@Compendium[dnd5e.spells.yI0XWIgI0IGGsR3R]{Move Earth}\n@Compendium[dnd5e.spells.2RC0EyvBLPH88PZF]{Sunbeam}\n@Compendium[dnd5e.spells.s7nXgot5gGZVcMrv]{Transport via Plants}\n@Compendium[dnd5e.spells.AQsBc94ES7W7s7iG]{Wall of Thorns}\n@Compendium[dnd5e.spells.8PJAsHmbu6UgDHC0]{Wind Walk}\n7th Level\n@Compendium[dnd5e.spells.J3uILDYS7MiOfmTJ]{Fire Storm}\n@Compendium[dnd5e.spells.f38w5rd9SgdmWc6F]{Mirage Arcane}\n@Compendium[dnd5e.spells.J6Jpw5XzB5aTeqnz]{Plane Shift}\n@Compendium[dnd5e.spells.9kGrFXnLiRg3Xnbo]{Regenerate}\n@Compendium[dnd5e.spells.ERCv7yuRkQ0YjGx6]{Reverse Gravity}\n8th Level\n@Compendium[dnd5e.spells.ohqAIBg6de989CIo]{Animal Shapes}\n@Compendium[dnd5e.spells.GJ2WYm3SQFR0winH]{Antipathy/Sympathy}\n@Compendium[dnd5e.spells.ZPd73HtKF3At11jh]{Control Weather}\n@Compendium[dnd5e.spells.x5JNBSyIBBZsjcGT]{Earthquake}\n@Compendium[dnd5e.spells.hYCrN82dMJFuJODB]{Feeblemind}\n@Compendium[dnd5e.spells.hzK7FQya0BDjSmLE]{Sunburst}\n9th Level\n@Compendium[dnd5e.spells.6HEEhLdJz32TL4Js]{Foresight}\n@Compendium[dnd5e.spells.N2UEFq8X5LRsLcOZ]{Shapechange}\n@Compendium[dnd5e.spells.7KjExw0kmuqERa7C]{Storm of Vengeance}\n@Compendium[dnd5e.spells.qLeEXZDbW5y4bmLY]{True Resurrection}"},"_id":"MWiN7ILEO0Vd3zAZ","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":600000,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.qsjZVCAWStczYC6g.JournalEntryPage.sq9LED0wxdFEfrmP"}}},{"name":"Paladin Spells","type":"text","title":{"show":false,"level":1},"text":{"format":1,"content":"1st Level\n@Compendium[dnd5e.spells.8dzaICjGy6mTUaUr]{Bless}\n@Compendium[dnd5e.spells.arzCrMRgcNiQuh43]{Command}\n@Compendium[dnd5e.spells.uUWb1wZgtMou0TVP]{Cure Wounds}\n@Compendium[dnd5e.spells.Mzh95utKDPIrjiH8]{Detect Evil and Good}\n@Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic}\n@Compendium[dnd5e.spells.2skfDtglk1mGrb3l]{Detect Poison and Disease}\n@Compendium[dnd5e.spells.8MICCMeOXT3aJUy9]{Divine Favor}\n@Compendium[dnd5e.spells.ge3Saet9zPTDyaoL]{Heroism}\n@Compendium[dnd5e.spells.xmDBqZhRVrtLP8h2]{Protection from Evil and Good}\n@Compendium[dnd5e.spells.Kn7K5PtYUJAKZTTp]{Purify Food and Drink}\n@Compendium[dnd5e.spells.jZ6JNykRtdQ90MOo]{Shield of Faith}\n2nd Level\n@Compendium[dnd5e.spells.Opwh2PdX4runSBlm]{Aid}\n@Compendium[dnd5e.spells.7UwUjJ6owIQkEPrs]{Branding Smite}\n@Compendium[dnd5e.spells.5eh2HFbS13078Y3H]{Find Steed}\n@Compendium[dnd5e.spells.F0GsG0SJzsIOacwV]{Lesser Restoration}\n@Compendium[dnd5e.spells.SleYkHovQ8NagmeV]{Locate Object}\n@Compendium[dnd5e.spells.Sgjrf8qqv97CCWM4]{Magic Weapon}\n@Compendium[dnd5e.spells.MAxM77CDUu8dgIRQ]{Protection from Poison}\n@Compendium[dnd5e.spells.CylBa7jR8DSbo8Z3]{Zone of Truth}\n3rd Level\n@Compendium[dnd5e.spells.BV0mpbHh29IbbIj5]{Create Food and Water}\n@Compendium[dnd5e.spells.BP3GCwa66IAw1yTG]{Daylight}\n@Compendium[dnd5e.spells.15Fa6q1nH27XfbR8]{Dispel Magic}\n@Compendium[dnd5e.spells.y8A4HfTwd93ypdEz]{Magic Circle}\n@Compendium[dnd5e.spells.XZhdgVK3cLoxNCQl]{Remove Curse}\n@Compendium[dnd5e.spells.LmRHHMtplpxr9fX6]{Revivify}\n4th Level\n@Compendium[dnd5e.spells.pxpb2eOB6bv4phAf]{Banishment}\n@Compendium[dnd5e.spells.VtCXMdyM6mAdIJZb]{Death Ward}\n@Compendium[dnd5e.spells.gXtzz9t1DTzJeLr4]{Locate Creature}\n5th Level\n@Compendium[dnd5e.spells.TkJ8Wtg1L7TZtspm]{Dispel Evil and Good}\n@Compendium[dnd5e.spells.JQyigMNPiDnGI18b]{Geas}\n@Compendium[dnd5e.spells.AGFMPAmuzwWO6Dfz]{Raise Dead}"},"_id":"FhucONA0yRZQjMmb","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":700000,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.9Gh9e6C8f1b8hMDo.JournalEntryPage.HUaeytxY79zc7aDx"}}},{"name":"Ranger Spells","type":"text","title":{"show":false,"level":1},"text":{"format":1,"content":"1st Level\n@Compendium[dnd5e.spells.7p9IuWrSWFgfyQo2]{Alarm}\n@Compendium[dnd5e.spells.hDOENzjuj5WpLq7B]{Animal Friendship}\n@Compendium[dnd5e.spells.uUWb1wZgtMou0TVP]{Cure Wounds}\n@Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic}\n@Compendium[dnd5e.spells.2skfDtglk1mGrb3l]{Detect Poison and Disease}\n@Compendium[dnd5e.spells.IBJmWjzbQGu7M4UX]{Fog Cloud}\n@Compendium[dnd5e.spells.Qf6CAZkc7ms4ZY3e]{Goodberry}\n@Compendium[dnd5e.spells.0xmXiPiuYws1OGcX]{Hunter's Mark}\n@Compendium[dnd5e.spells.ZrTc23tToJ0JpH2h]{Jump}\n@Compendium[dnd5e.spells.B0pnIcc52O6G8hi8]{Longstrider}\n@Compendium[dnd5e.spells.aL1F8fvYLtNzUbKu]{Speak with Animals}\n2nd Level\n@Compendium[dnd5e.spells.X8w9EzYLGc4vQ1H2]{Animal Messenger}\n@Compendium[dnd5e.spells.JPwIEfgUPVebr5AH]{Barkskin}\n@Compendium[dnd5e.spells.hJ6ZiA3fpoY8v9cp]{Darkvision}\n@Compendium[dnd5e.spells.KrM3oHVv13RAALrS]{Find Traps}\n@Compendium[dnd5e.spells.F0GsG0SJzsIOacwV]{Lesser Restoration}\n@Compendium[dnd5e.spells.Iv2qqSAT7OkXKPFx]{Locate Animals or Plants}\n@Compendium[dnd5e.spells.SleYkHovQ8NagmeV]{Locate Object}\n@Compendium[dnd5e.spells.pRMvmknwLf2tdMTj]{Pass without Trace}\n@Compendium[dnd5e.spells.MAxM77CDUu8dgIRQ]{Protection from Poison}\n@Compendium[dnd5e.spells.5VhqFROQYjr1P9lp]{Silence}\n@Compendium[dnd5e.spells.9gYGkrL6qFTsE6fw]{Spike Growth}\n3rd Level\n@Compendium[dnd5e.spells.1Drt0SHxbEAHxprN]{Conjure Animals}\n@Compendium[dnd5e.spells.BP3GCwa66IAw1yTG]{Daylight}\n@Compendium[dnd5e.spells.aU62xVUBYkAQWIHv]{Nondetection}\n@Compendium[dnd5e.spells.YWtwzp6ZnQJMEmVW]{Plant Growth}\n@Compendium[dnd5e.spells.j8NtLXOOJ3GAKF8I]{Protection from Energy}\n@Compendium[dnd5e.spells.2VXGS206tuChoeXy]{Speak with Plants}\n@Compendium[dnd5e.spells.13uVuBQP6VaiSPvC]{Water Breathing}\n@Compendium[dnd5e.spells.YBda6nLKjxdT1LbS]{Water Walk}\n@Compendium[dnd5e.spells.ew6GA8dJy2spQmFW]{Wind Wall}\n4th Level\n@Compendium[dnd5e.spells.dEfSELiY1eO3cpX9]{Conjure Woodland Beings}\n@Compendium[dnd5e.spells.da0a1t2FqaTjRZGT]{Freedom of Movement}\n@Compendium[dnd5e.spells.gXtzz9t1DTzJeLr4]{Locate Creature}\n@Compendium[dnd5e.spells.ReMbjfeOKoSj3O79]{Stoneskin}\n5th Level\n@Compendium[dnd5e.spells.dp6xny4v8PDoIGjh]{Commune with Nature}\n@Compendium[dnd5e.spells.DUBgwHPakcLDkB6W]{Tree Stride}"},"_id":"sANq9JMycfSq3A5d","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":800000,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.MPeAbrndRwp12KBS.JournalEntryPage.mHDXoSVyYGdlhyo4"}}},{"name":"Sorcerer Spells","type":"text","title":{"show":false,"level":1},"text":{"format":1,"content":"Cantrips (0 Level)\n@Compendium[dnd5e.spells.JLTQyqXEaJDrTXyW]{Acid Splash}\n@Compendium[dnd5e.spells.vrN18tbTw7io5MWd]{Chill Touch}\n@Compendium[dnd5e.spells.CAxSzHWizrafT033]{Dancing Lights}\n@Compendium[dnd5e.spells.EOmsUcFQJTfG2oio]{Fire Bolt}\n@Compendium[dnd5e.spells.Bnn9Nzajixvow9xi]{Light}\n@Compendium[dnd5e.spells.Utk1OQRwYkMkFRD3]{Mage Hand}\n@Compendium[dnd5e.spells.kjmjY0zlE6IEiQVL]{Mending}\n@Compendium[dnd5e.spells.icZokbgV1jIMpNCv]{Message}\n@Compendium[dnd5e.spells.oIzA2MEHwxhtQneU]{Minor Illusion}\n@Compendium[dnd5e.spells.g2u9PYfqWQAyg9OI]{Poison Spray}\n@Compendium[dnd5e.spells.udsLtG0BugXHR2JQ]{Prestidigitation}\n@Compendium[dnd5e.spells.ctW81uiX56xZR2c5]{Ray of Frost}\n@Compendium[dnd5e.spells.XvbiNhNqXXIFisIy]{Shocking Grasp}\n@Compendium[dnd5e.spells.mGGlcLdggHwcL7MG]{True Strike}\n1st Level\n@Compendium[dnd5e.spells.5SuJewoa1CRWaj1F]{Burning Hands}\n@Compendium[dnd5e.spells.eS7XnnApoxRxYXPs]{Charm Person}\n@Compendium[dnd5e.spells.LWTUqKkUQdMAmOe0]{Color Spray}\n@Compendium[dnd5e.spells.4dSvfvTy2ZIJ3K4k]{Comprehend Languages}\n@Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic}\n@Compendium[dnd5e.spells.A3q2gTNqG6fvNGrv]{Disguise Self}\n@Compendium[dnd5e.spells.zPGohqJRir6MyQ3U]{Expeditious Retreat}\n@Compendium[dnd5e.spells.7e3QXF10hLNDEdr6]{False Life}\n@Compendium[dnd5e.spells.pub0OWVEB71XQx1n]{Feather Fall}\n@Compendium[dnd5e.spells.IBJmWjzbQGu7M4UX]{Fog Cloud}\n@Compendium[dnd5e.spells.ZrTc23tToJ0JpH2h]{Jump}\n@Compendium[dnd5e.spells.CKZTpZlxj7hjjo2H]{Mage Armor}\n@Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile}]\n@Compendium[dnd5e.spells.z1mx84ONwkXKUZd7]{Shield}\n@Compendium[dnd5e.spells.BrBZdCCrJRIVg7YX]{Silent Image}\n@Compendium[dnd5e.spells.KhwiSi9fwVfUPtku]{Sleep}\n@Compendium[dnd5e.spells.WTbOQBsarsL1LuXJ]{Thunderwave}\n2nd Level\n@Compendium[dnd5e.spells.8RTDOt80u8aBv9qx]{Alter Self}\n@Compendium[dnd5e.spells.zwGsAv6kmwzYGhh3]{Blindness/Deafness}\n@Compendium[dnd5e.spells.UDUnlfPsOAbq2RSE]{Blur}\n@Compendium[dnd5e.spells.S7VbUetIfVT7B6Eq]{Darkness}\n@Compendium[dnd5e.spells.hJ6ZiA3fpoY8v9cp]{Darkvision}\n@Compendium[dnd5e.spells.ppWAAEul0QHtm4er]{Detect Thoughts}\n@Compendium[dnd5e.spells.9eOZDBImVKxbeOyZ]{Enhance Ability}\n@Compendium[dnd5e.spells.WahI41a3goVUg0x1]{Enlarge/Reduce}\n@Compendium[dnd5e.spells.FSMy6VAjDnXY9vWz]{Gust of Wind}\n@Compendium[dnd5e.spells.3Lo9boi7P2ro6QV4]{Hold Person}\n@Compendium[dnd5e.spells.1N8dDMMgZ1h1YJ3B]{Invisibility}\n@Compendium[dnd5e.spells.1nhIxh0DsJsntCfj]{Knock}\n@Compendium[dnd5e.spells.MRxldJd6C4bsBo3O]{Levitate}\n@Compendium[dnd5e.spells.X4c8xCkmF8U9HUMz]{Mirror Image}\n@Compendium[dnd5e.spells.wqfAVANuQonNBgnL]{Misty Step}\n@Compendium[dnd5e.spells.7u2obDvuvtZBkTfq]{Scorching Ray}\n@Compendium[dnd5e.spells.DQzlB5Y3k791W5bH]{See Invisibility}\n@Compendium[dnd5e.spells.wJKpSvSTbSkTjqyb]{Shatter}\n@Compendium[dnd5e.spells.KJRVzeMQXPj8Gtyx]{Spider Climb}\n@Compendium[dnd5e.spells.zMAWdyc8UVb37BK4]{Suggestion}\n@Compendium[dnd5e.spells.UJJu9c2UvCzVljiP]{Web}\n3rd Level\n@Compendium[dnd5e.spells.GSvLWcdCZLQkilXT]{Blink}\n@Compendium[dnd5e.spells.cg50KpBkBdPK6vPL]{Clairvoyance}\n@Compendium[dnd5e.spells.Ek45cBpVXvJdv1Qy]{Counterspell}\n@Compendium[dnd5e.spells.BP3GCwa66IAw1yTG]{Daylight}\n@Compendium[dnd5e.spells.15Fa6q1nH27XfbR8]{Dispel Magic}\n@Compendium[dnd5e.spells.XXUDGFELgoskdOD0]{Fear}\n@Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball}\n@Compendium[dnd5e.spells.yfbK8gZqESlaoY5t]{Fly}\n@Compendium[dnd5e.spells.2IWiZAJtOGDoKjiz]{Gaseous Form}\n@Compendium[dnd5e.spells.Szvk5FEVQW3uhJi5]{Haste}\n@Compendium[dnd5e.spells.6g3WLOZ2u0EbaLAd]{Hypnotic Pattern}\n@Compendium[dnd5e.spells.IyikgTEOTv701jgQ]{Lightning Bolt}\n@Compendium[dnd5e.spells.nslx2nT3p4lNkmdp]{Major Image}\n@Compendium[dnd5e.spells.j8NtLXOOJ3GAKF8I]{Protection from Energy}\n@Compendium[dnd5e.spells.dhqBY4TvVjxVmOZd]{Sleet Storm}\n@Compendium[dnd5e.spells.yqUDoxk4x0NWG5Bz]{Slow}\n@Compendium[dnd5e.spells.TwlD4PLcltv7Xh7j]{Stinking Cloud}\n@Compendium[dnd5e.spells.gopnZvS0c2jD5FP8]{Tongues}\n@Compendium[dnd5e.spells.13uVuBQP6VaiSPvC]{Water Breathing}\n@Compendium[dnd5e.spells.YBda6nLKjxdT1LbS]{Water Walk}\n4th Level\n@Compendium[dnd5e.spells.pxpb2eOB6bv4phAf]{Banishment}\n@Compendium[dnd5e.spells.pybg5MNc3lkerH4Y]{Blight}\n@Compendium[dnd5e.spells.9hQXdMSmerkTsHDe]{Confusion}\n@Compendium[dnd5e.spells.A4RsPuSvB9wFtz1j]{Dimension Door}\n@Compendium[dnd5e.spells.LrPvWHBPmiMQQsKB]{Dominate Beast}\n@Compendium[dnd5e.spells.tEpDmYZNGc9f5OhJ]{Greater Invisibility}\n@Compendium[dnd5e.spells.WN2LWEljYU6QqnRH]{Ice Storm}\n@Compendium[dnd5e.spells.04nMsTWkIFvkbXlY]{Polymorph}\n@Compendium[dnd5e.spells.ReMbjfeOKoSj3O79]{Stoneskin}\n@Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire}\n5th Level\n@Compendium[dnd5e.spells.ATo0Eb63TDtnu6iA]{Animate Objects}\n@Compendium[dnd5e.spells.LkvI11Uue774QBKZ]{Cloudkill}\n@Compendium[dnd5e.spells.RpKjTlYASrfqUPVA]{Cone of Cold}\n@Compendium[dnd5e.spells.lnaGnxMzpYnbw1uU]{Creation}\n@Compendium[dnd5e.spells.91Sw6vOIaO7U8DvM]{Dominate Person}\n@Compendium[dnd5e.spells.l9Ju5KE7bbn3WpTm]{Hold Monster}\n@Compendium[dnd5e.spells.OVikYmSdHliAG2YD]{Insect Plague}\n@Compendium[dnd5e.spells.mbFw57uyfLkyiw5k]{Seeming}\n@Compendium[dnd5e.spells.HQfd7jJyULIoGxrZ]{Telekinesis}\n@Compendium[dnd5e.spells.8aWtP5hcrmcEesBW]{Teleportation Circle}\n@Compendium[dnd5e.spells.NmoRmM1mhuM3pqnY]{Wall of Stone}\n6th Level\n@Compendium[dnd5e.spells.QbTxN5dWIbYZ4jLU]{Chain Lightning}\n@Compendium[dnd5e.spells.KeunEkg1JYbOCOhV]{Circle of Death}\n@Compendium[dnd5e.spells.HBHbOGKNVVprSlwn]{Disintegrate}\n@Compendium[dnd5e.spells.ZRqu3Xh9FmlBCZGy]{Eyebite}\n@Compendium[dnd5e.spells.WmQpxfjZwF3MGUby]{Globe of Invulnerability}\n@Compendium[dnd5e.spells.5OGFdJw35QXp6mh6]{Mass Suggestion}\n@Compendium[dnd5e.spells.yI0XWIgI0IGGsR3R]{Move Earth}\n@Compendium[dnd5e.spells.2RC0EyvBLPH88PZF]{Sunbeam}\n@Compendium[dnd5e.spells.XzkJpE6XpZfKjODD]{True Seeing}\n7th Level\n@Compendium[dnd5e.spells.AoTTjapz1FsGOIZz]{Delayed Blast Fireball}\n@Compendium[dnd5e.spells.PQuEgKyCdovOvhqN]{Etherealness}\n@Compendium[dnd5e.spells.HPvZm8YJO91k6Qdg]{Finger of Death}\n@Compendium[dnd5e.spells.J3uILDYS7MiOfmTJ]{Fire Storm}\n@Compendium[dnd5e.spells.J6Jpw5XzB5aTeqnz]{Plane Shift}\n@Compendium[dnd5e.spells.eGMhwmuleAM46C6L]{Prismatic Spray}\n@Compendium[dnd5e.spells.ERCv7yuRkQ0YjGx6]{Reverse Gravity}\n@Compendium[dnd5e.spells.L4J89JXqbKs6puEV]{Teleport}\n8th Level\n@Compendium[dnd5e.spells.eEpy1ONlXumKS1mp]{Dominate Monster}\n@Compendium[dnd5e.spells.x5JNBSyIBBZsjcGT]{Earthquake}\n@Compendium[dnd5e.spells.pV04y1iXoWiom6bp]{Incendiary Cloud}\n@Compendium[dnd5e.spells.35j2QIMmIk6aEdxj]{Power Word Stun}\n@Compendium[dnd5e.spells.hzK7FQya0BDjSmLE]{Sunburst}\n9th Level\n@Compendium[dnd5e.spells.XbwGq5kDJNvAxNXV]{Gate}\n@Compendium[dnd5e.spells.mF52ldF79Cr7wfQo]{Meteor Swarm}\n@Compendium[dnd5e.spells.dmvaMLFWFtv0qx0S]{Power Word Kill}\n@Compendium[dnd5e.spells.JYuRBwxpoFhXduvD]{Time Stop}\n@Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish}"},"_id":"PVgly1xB2S2I8GLQ","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":900000,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.HYaZMaOl1m71xCuZ.JournalEntryPage.mlcjhn6WEG6v0iZo"}}},{"name":"Warlock Spells","type":"text","title":{"show":false,"level":1},"text":{"format":1,"content":"Cantrips (0 Level)\n@Compendium[dnd5e.spells.vrN18tbTw7io5MWd]{Chill Touch}\n@Compendium[dnd5e.spells.Z9p1vezIn95jw1Yw]{Eldritch Blast}\n@Compendium[dnd5e.spells.Utk1OQRwYkMkFRD3]{Mage Hand}\n@Compendium[dnd5e.spells.oIzA2MEHwxhtQneU]{Minor Illusion}\n@Compendium[dnd5e.spells.g2u9PYfqWQAyg9OI]{Poison Spray}\n@Compendium[dnd5e.spells.udsLtG0BugXHR2JQ]{Prestidigitation}\n@Compendium[dnd5e.spells.mGGlcLdggHwcL7MG]{True Strike}\n1st Level\n@Compendium[dnd5e.spells.eS7XnnApoxRxYXPs]{Charm Person}\n@Compendium[dnd5e.spells.4dSvfvTy2ZIJ3K4k]{Comprehend Languages}\n@Compendium[dnd5e.spells.zPGohqJRir6MyQ3U]{Expeditious Retreat}\n@Compendium[dnd5e.spells.22dPoeXfaaAv4K3h]{Hellish Rebuke}\n@Compendium[dnd5e.spells.82jM6qD9axLJsTrH]{Illusory Script}\n@Compendium[dnd5e.spells.xmDBqZhRVrtLP8h2]{Protection from Evil and Good}\n@Compendium[dnd5e.spells.ccduLIvutyNqvkgv]{Unseen Servant}\n2nd Level\n@Compendium[dnd5e.spells.S7VbUetIfVT7B6Eq]{Darkness}\n@Compendium[dnd5e.spells.30ZgXtijJVCxQk5N]{Enthrall}\n@Compendium[dnd5e.spells.3Lo9boi7P2ro6QV4]{Hold Person}\n@Compendium[dnd5e.spells.1N8dDMMgZ1h1YJ3B]{Invisibility}\n@Compendium[dnd5e.spells.X4c8xCkmF8U9HUMz]{Mirror Image}\n@Compendium[dnd5e.spells.wqfAVANuQonNBgnL]{Misty Step}\n@Compendium[dnd5e.spells.ODhLKBxLnvvLOnw1]{Ray of Enfeeblement}\n@Compendium[dnd5e.spells.wJKpSvSTbSkTjqyb]{Shatter}\n@Compendium[dnd5e.spells.KJRVzeMQXPj8Gtyx]{Spider Climb}\n@Compendium[dnd5e.spells.zMAWdyc8UVb37BK4]{Suggestion}\n3rd Level\n@Compendium[dnd5e.spells.Ek45cBpVXvJdv1Qy]{Counterspell}\n@Compendium[dnd5e.spells.15Fa6q1nH27XfbR8]{Dispel Magic}\n@Compendium[dnd5e.spells.XXUDGFELgoskdOD0]{Fear}\n@Compendium[dnd5e.spells.yfbK8gZqESlaoY5t]{Fly}\n@Compendium[dnd5e.spells.2IWiZAJtOGDoKjiz]{Gaseous Form}\n@Compendium[dnd5e.spells.6g3WLOZ2u0EbaLAd]{Hypnotic Pattern}\n@Compendium[dnd5e.spells.y8A4HfTwd93ypdEz]{Magic Circle}\n@Compendium[dnd5e.spells.nslx2nT3p4lNkmdp]{Major Image}\n@Compendium[dnd5e.spells.XZhdgVK3cLoxNCQl]{Remove Curse}\n@Compendium[dnd5e.spells.gopnZvS0c2jD5FP8]{Tongues}\n@Compendium[dnd5e.spells.UfHQhA54M4323gVO]{Vampiric Touch}\n4th Level\n@Compendium[dnd5e.spells.pxpb2eOB6bv4phAf]{Banishment}\n@Compendium[dnd5e.spells.pybg5MNc3lkerH4Y]{Blight}\n@Compendium[dnd5e.spells.A4RsPuSvB9wFtz1j]{Dimension Door}\n@Compendium[dnd5e.spells.sTIkQK7KuQNOyY0C]{Hallucinatory Terrain}\n5th Level\n@Compendium[dnd5e.spells.dSTu1MaPhBqPITwM]{Contact Other Plane}\n@Compendium[dnd5e.spells.kSPRpeIx3w3nihrF]{Dream}\n@Compendium[dnd5e.spells.l9Ju5KE7bbn3WpTm]{Hold Monster}\n@Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying}\n6th Level\n@Compendium[dnd5e.spells.KeunEkg1JYbOCOhV]{Circle of Death}\n@Compendium[dnd5e.spells.yN3XZZujhR4aVvPa]{Conjure Fey}\n@Compendium[dnd5e.spells.E4NXux0RHvME1XgP]{Create Undead}\n@Compendium[dnd5e.spells.ZRqu3Xh9FmlBCZGy]{Eyebite}\n@Compendium[dnd5e.spells.kozNy29b0X6exFhY]{Flesh to Stone}\n@Compendium[dnd5e.spells.5OGFdJw35QXp6mh6]{Mass Suggestion}\n@Compendium[dnd5e.spells.XzkJpE6XpZfKjODD]{True Seeing}\n7th Level\n@Compendium[dnd5e.spells.PQuEgKyCdovOvhqN]{Etherealness}\n@Compendium[dnd5e.spells.HPvZm8YJO91k6Qdg]{Finger of Death}\n@Compendium[dnd5e.spells.Y7uWUO4yqUN0JKl0]{Forcecage}\n@Compendium[dnd5e.spells.J6Jpw5XzB5aTeqnz]{Plane Shift}\n8th Level\n@Compendium[dnd5e.spells.xNM9CzQQr2CieM4B]{Demiplane}\n@Compendium[dnd5e.spells.eEpy1ONlXumKS1mp]{Dominate Monster}\n@Compendium[dnd5e.spells.hYCrN82dMJFuJODB]{Feeblemind}\n@Compendium[dnd5e.spells.1RzxKZzkQOoioxPj]{Glibness}\n@Compendium[dnd5e.spells.35j2QIMmIk6aEdxj]{Power Word Stun}\n9th Level\n@Compendium[dnd5e.spells.TIoadMIsUKD4edXi]{Astral Projection}\n@Compendium[dnd5e.spells.6HEEhLdJz32TL4Js]{Foresight}\n@Compendium[dnd5e.spells.ZVnL9L8v1KC9TBF4]{Imprisonment}\n@Compendium[dnd5e.spells.dmvaMLFWFtv0qx0S]{Power Word Kill}\n@Compendium[dnd5e.spells.QbQZKoXOgHWN06aa]{True Polymorph}"},"_id":"mx4TsSbBIAaAkhQ7","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":1000000,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.FP5bLScw7BLxhpBc.JournalEntryPage.3770jitjFLEA9CRC"}}},{"name":"Wizard Spells","type":"text","title":{"show":false,"level":1},"text":{"format":1,"content":"Cantrips (0 Level)\n@Compendium[dnd5e.spells.JLTQyqXEaJDrTXyW]{Acid Splash}\n@Compendium[dnd5e.spells.vrN18tbTw7io5MWd]{Chill Touch}\n@Compendium[dnd5e.spells.CAxSzHWizrafT033]{Dancing Lights}\n@Compendium[dnd5e.spells.EOmsUcFQJTfG2oio]{Fire Bolt}\n@Compendium[dnd5e.spells.Bnn9Nzajixvow9xi]{Light}\n@Compendium[dnd5e.spells.Utk1OQRwYkMkFRD3]{Mage Hand}\n@Compendium[dnd5e.spells.kjmjY0zlE6IEiQVL]{Mending}\n@Compendium[dnd5e.spells.icZokbgV1jIMpNCv]{Message}\n@Compendium[dnd5e.spells.oIzA2MEHwxhtQneU]{Minor Illusion}\n@Compendium[dnd5e.spells.g2u9PYfqWQAyg9OI]{Poison Spray}\n@Compendium[dnd5e.spells.udsLtG0BugXHR2JQ]{Prestidigitation}\n@Compendium[dnd5e.spells.ctW81uiX56xZR2c5]{Ray of Frost}\n@Compendium[dnd5e.spells.XvbiNhNqXXIFisIy]{Shocking Grasp}\n@Compendium[dnd5e.spells.mGGlcLdggHwcL7MG]{True Strike}\n1st Level\n@Compendium[dnd5e.spells.7p9IuWrSWFgfyQo2]{Alarm}\n@Compendium[dnd5e.spells.5SuJewoa1CRWaj1F]{Burning Hands}\n@Compendium[dnd5e.spells.eS7XnnApoxRxYXPs]{Charm Person}\n@Compendium[dnd5e.spells.LWTUqKkUQdMAmOe0]{Color Spray}\n@Compendium[dnd5e.spells.4dSvfvTy2ZIJ3K4k]{Comprehend Languages}\n@Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic}\n@Compendium[dnd5e.spells.A3q2gTNqG6fvNGrv]{Disguise Self}\n@Compendium[dnd5e.spells.zPGohqJRir6MyQ3U]{Expeditious Retreat}\n@Compendium[dnd5e.spells.7e3QXF10hLNDEdr6]{False Life}\n@Compendium[dnd5e.spells.pub0OWVEB71XQx1n]{Feather Fall}\n@Compendium[dnd5e.spells.JGT5bNqu9REL7Fuz]{Find Familiar}\n@Compendium[dnd5e.spells.bnjXlk13ZRJuf5d0]{Floating Disk}\n@Compendium[dnd5e.spells.IBJmWjzbQGu7M4UX]{Fog Cloud}\n@Compendium[dnd5e.spells.etgcR9wqmrhyZ0tx]{Grease}\n@Compendium[dnd5e.spells.BQk5Row4NymMnUQl]{Hideous Laughter}\n@Compendium[dnd5e.spells.3OZnNhunvRtPOQmH]{Identify}\n@Compendium[dnd5e.spells.82jM6qD9axLJsTrH]{Illusory Script}\n@Compendium[dnd5e.spells.ZrTc23tToJ0JpH2h]{Jump}\n@Compendium[dnd5e.spells.B0pnIcc52O6G8hi8]{Longstrider}\n@Compendium[dnd5e.spells.CKZTpZlxj7hjjo2H]{Mage Armor}\n@Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile}\n@Compendium[dnd5e.spells.xmDBqZhRVrtLP8h2]{Protection from Evil and Good}\n@Compendium[dnd5e.spells.z1mx84ONwkXKUZd7]{Shield}\n@Compendium[dnd5e.spells.BrBZdCCrJRIVg7YX]{Silent Image}\n@Compendium[dnd5e.spells.KhwiSi9fwVfUPtku]{Sleep}\n@Compendium[dnd5e.spells.WTbOQBsarsL1LuXJ]{Thunderwave}\n@Compendium[dnd5e.spells.ccduLIvutyNqvkgv]{Unseen Servant}\n2nd Level\n@Compendium[dnd5e.spells.4H6YgYdKgnX6ZQ8M]{Acid Arrow}\n@Compendium[dnd5e.spells.8RTDOt80u8aBv9qx]{Alter Self}\n@Compendium[dnd5e.spells.8cse7rit0oswRPUP]{Arcane Lock}\n@Compendium[dnd5e.spells.RvEqsD89Zvd5yex4]{Arcanist's Magic Aura}\n@Compendium[dnd5e.spells.zwGsAv6kmwzYGhh3]{Blindness/Deafness}\n@Compendium[dnd5e.spells.UDUnlfPsOAbq2RSE]{Blur}\n@Compendium[dnd5e.spells.MK6gpQMeDFo0cP9f]{Continual Flame}\n@Compendium[dnd5e.spells.S7VbUetIfVT7B6Eq]{Darkness}\n@Compendium[dnd5e.spells.hJ6ZiA3fpoY8v9cp]{Darkvision}\n@Compendium[dnd5e.spells.ppWAAEul0QHtm4er]{Detect Thoughts}\n@Compendium[dnd5e.spells.WahI41a3goVUg0x1]{Enlarge/Reduce}\n@Compendium[dnd5e.spells.FjYE214HTERCRZNm]{Flaming Sphere}\n@Compendium[dnd5e.spells.n4JDcFKe5ikzYmAc]{Gentle Repose}\n@Compendium[dnd5e.spells.FSMy6VAjDnXY9vWz]{Gust of Wind}\n@Compendium[dnd5e.spells.3Lo9boi7P2ro6QV4]{Hold Person}\n@Compendium[dnd5e.spells.1N8dDMMgZ1h1YJ3B]{Invisibility}\n@Compendium[dnd5e.spells.1nhIxh0DsJsntCfj]{Knock}\n@Compendium[dnd5e.spells.MRxldJd6C4bsBo3O]{Levitate}\n@Compendium[dnd5e.spells.SleYkHovQ8NagmeV]{Locate Object}\n@Compendium[dnd5e.spells.7v06rdmUakoTk1LQ]{Magic Mouth}\n@Compendium[dnd5e.spells.Sgjrf8qqv97CCWM4]{Magic Weapon}\n@Compendium[dnd5e.spells.X4c8xCkmF8U9HUMz]{Mirror Image}\n@Compendium[dnd5e.spells.wqfAVANuQonNBgnL]{Misty Step}\n@Compendium[dnd5e.spells.ODhLKBxLnvvLOnw1]{Ray of Enfeeblement}\n@Compendium[dnd5e.spells.ap4dmtshjEbwU3Ts]{Rope Trick}\n@Compendium[dnd5e.spells.7u2obDvuvtZBkTfq]{Scorching Ray}\n@Compendium[dnd5e.spells.DQzlB5Y3k791W5bH]{See Invisibility}\n@Compendium[dnd5e.spells.wJKpSvSTbSkTjqyb]{Shatter}\n@Compendium[dnd5e.spells.KJRVzeMQXPj8Gtyx]{Spider Climb}\n@Compendium[dnd5e.spells.zMAWdyc8UVb37BK4]{Suggestion}\n@Compendium[dnd5e.spells.UJJu9c2UvCzVljiP]{Web}\n3rd Level\n@Compendium[dnd5e.spells.oyE5nVppa5mde5gT]{Animate Dead}\n@Compendium[dnd5e.spells.pO4zGe5LmFIYqJiL]{Bestow Curse}\n@Compendium[dnd5e.spells.GSvLWcdCZLQkilXT]{Blink}\n@Compendium[dnd5e.spells.cg50KpBkBdPK6vPL]{Clairvoyance}\n@Compendium[dnd5e.spells.Ek45cBpVXvJdv1Qy]{Counterspell}\n@Compendium[dnd5e.spells.15Fa6q1nH27XfbR8]{Dispel Magic}\n@Compendium[dnd5e.spells.XXUDGFELgoskdOD0]{Fear}\n@Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball}\n@Compendium[dnd5e.spells.yfbK8gZqESlaoY5t]{Fly}\n@Compendium[dnd5e.spells.2IWiZAJtOGDoKjiz]{Gaseous Form}\n@Compendium[dnd5e.spells.pB7XVYwdGNcUG935]{Glyph of Warding}\n@Compendium[dnd5e.spells.Szvk5FEVQW3uhJi5]{Haste}\n@Compendium[dnd5e.spells.6g3WLOZ2u0EbaLAd]{Hypnotic Pattern}\n@Compendium[dnd5e.spells.IyikgTEOTv701jgQ]{Lightning Bolt}\n@Compendium[dnd5e.spells.y8A4HfTwd93ypdEz]{Magic Circle}\n@Compendium[dnd5e.spells.nslx2nT3p4lNkmdp]{Major Image}\n@Compendium[dnd5e.spells.aU62xVUBYkAQWIHv]{Nondetection}\n@Compendium[dnd5e.spells.wpx42mtoZ5BmXRs1]{Phantom Steed}\n@Compendium[dnd5e.spells.j8NtLXOOJ3GAKF8I]{Protection from Energy}\n@Compendium[dnd5e.spells.XZhdgVK3cLoxNCQl]{Remove Curse}\n@Compendium[dnd5e.spells.GtGjNjPBgUHxGYAD]{Sending}\n@Compendium[dnd5e.spells.dhqBY4TvVjxVmOZd]{Sleet Storm}\n@Compendium[dnd5e.spells.yqUDoxk4x0NWG5Bz]{Slow}\n@Compendium[dnd5e.spells.TwlD4PLcltv7Xh7j]{Stinking Cloud}\n@Compendium[dnd5e.spells.NXWWWgHtWb7Nv21F]{Tiny Hut}\n@Compendium[dnd5e.spells.gopnZvS0c2jD5FP8]{Tongues}\n@Compendium[dnd5e.spells.UfHQhA54M4323gVO]{Vampiric Touch}\n@Compendium[dnd5e.spells.13uVuBQP6VaiSPvC]{Water Breathing}\n4th Level\n@Compendium[dnd5e.spells.ImlCJQwR1VL40Qem]{Arcane Eye}\n@Compendium[dnd5e.spells.pxpb2eOB6bv4phAf]{Banishment}\n@Compendium[dnd5e.spells.DGONTFbk5eORs5qv]{Black Tentacles}\n@Compendium[dnd5e.spells.pybg5MNc3lkerH4Y]{Blight}\n@Compendium[dnd5e.spells.9hQXdMSmerkTsHDe]{Confusion}\n@Compendium[dnd5e.spells.KgEw3sDr39C6g8nY]{Conjure Minor Elementals}\n@Compendium[dnd5e.spells.7fFHlBk3UNX8gPKL]{Control Water}\n@Compendium[dnd5e.spells.A4RsPuSvB9wFtz1j]{Dimension Door}\n@Compendium[dnd5e.spells.7Fw7Bf1k3xxDVr5L]{Fabricate}\n@Compendium[dnd5e.spells.SAj03P2WBDiWu7zu]{Faithful Hound}\n@Compendium[dnd5e.spells.avD5XUtkBPQQR97c]{Fire Shield}\n@Compendium[dnd5e.spells.tEpDmYZNGc9f5OhJ]{Greater Invisibility}\n@Compendium[dnd5e.spells.sTIkQK7KuQNOyY0C]{Hallucinatory Terrain}\n@Compendium[dnd5e.spells.WN2LWEljYU6QqnRH]{Ice Storm}\n@Compendium[dnd5e.spells.gXtzz9t1DTzJeLr4]{Locate Creature}\n@Compendium[dnd5e.spells.BYNvBJzHcF5VJhXw]{Phantasmal Killer}\n@Compendium[dnd5e.spells.04nMsTWkIFvkbXlY]{Polymorph}\n@Compendium[dnd5e.spells.NJgxf7pmSsBArIG7]{Private Sanctum}\n@Compendium[dnd5e.spells.1ADstb0Xec6HHRcU]{Resilient Sphere}\n@Compendium[dnd5e.spells.8sgwRh8NUNkn9Vi0]{Secret Chest}\n@Compendium[dnd5e.spells.QvGcdRUSNRKEQJlK]{Stone Shape}\n@Compendium[dnd5e.spells.ReMbjfeOKoSj3O79]{Stoneskin}\n@Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire}\n5th Level\n@Compendium[dnd5e.spells.ATo0Eb63TDtnu6iA]{Animate Objects}\n@Compendium[dnd5e.spells.a2KJHCIbY5Mi4Dmn]{Arcane Hand}\n@Compendium[dnd5e.spells.LkvI11Uue774QBKZ]{Cloudkill}\n@Compendium[dnd5e.spells.RpKjTlYASrfqUPVA]{Cone of Cold}\n@Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental}\n@Compendium[dnd5e.spells.dSTu1MaPhBqPITwM]{Contact Other Plane}\n@Compendium[dnd5e.spells.lnaGnxMzpYnbw1uU]{Creation}\n@Compendium[dnd5e.spells.91Sw6vOIaO7U8DvM]{Dominate Person}\n@Compendium[dnd5e.spells.kSPRpeIx3w3nihrF]{Dream}\n@Compendium[dnd5e.spells.JQyigMNPiDnGI18b]{Geas}\n@Compendium[dnd5e.spells.l9Ju5KE7bbn3WpTm]{Hold Monster}\n@Compendium[dnd5e.spells.W4Qx5z0id6da0vqg]{Legend Lore}\n@Compendium[dnd5e.spells.MBMaQLwoy05qzMJ3]{Mislead}\n@Compendium[dnd5e.spells.r3243JU4AyQJyfX4]{Modify Memory}\n@Compendium[dnd5e.spells.d9MwcXi7Il3HROXd]{Passwall}\n@Compendium[dnd5e.spells.42O2aNBW7vK90gTL]{Planar Binding}\n@Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying}\n@Compendium[dnd5e.spells.mbFw57uyfLkyiw5k]{Seeming}\n@Compendium[dnd5e.spells.HQfd7jJyULIoGxrZ]{Telekinesis}\n@Compendium[dnd5e.spells.uAwtVZkiSTyP6ORB]{Telepathic Bond}\n@Compendium[dnd5e.spells.8aWtP5hcrmcEesBW]{Teleportation Circle}\n@Compendium[dnd5e.spells.o9ZCvuD2B1OTcubb]{Wall of Force}\n@Compendium[dnd5e.spells.NmoRmM1mhuM3pqnY]{Wall of Stone}\n6th Level\n@Compendium[dnd5e.spells.QbTxN5dWIbYZ4jLU]{Chain Lightning}\n@Compendium[dnd5e.spells.KeunEkg1JYbOCOhV]{Circle of Death}\n@Compendium[dnd5e.spells.4smlOvpF5AQHcyg1]{Contingency}\n@Compendium[dnd5e.spells.E4NXux0RHvME1XgP]{Create Undead}\n@Compendium[dnd5e.spells.HBHbOGKNVVprSlwn]{Disintegrate}\n@Compendium[dnd5e.spells.ZRqu3Xh9FmlBCZGy]{Eyebite}\n@Compendium[dnd5e.spells.kozNy29b0X6exFhY]{Flesh to Stone}\n@Compendium[dnd5e.spells.MImfWCzEPRMYD3Xp]{Freezing Sphere}\n@Compendium[dnd5e.spells.WmQpxfjZwF3MGUby]{Globe of Invulnerability}\n@Compendium[dnd5e.spells.yw0tYQkOMCgKZ8Ur]{Guards and Wards}\n@Compendium[dnd5e.spells.SgrEKiC6dAtvy6Pz]{Instant Summons}\n@Compendium[dnd5e.spells.TfRzwEgBHHkCc6Ql]{Irresistible Dance}\n@Compendium[dnd5e.spells.ej6wyY4G1gOcb1U6]{Magic Jar}\n@Compendium[dnd5e.spells.5OGFdJw35QXp6mh6]{Mass Suggestion}\n@Compendium[dnd5e.spells.yI0XWIgI0IGGsR3R]{Move Earth}\n@Compendium[dnd5e.spells.bA2sk9eMKBeY7EPD]{Programmed Illusion}\n@Compendium[dnd5e.spells.2RC0EyvBLPH88PZF]{Sunbeam}\n@Compendium[dnd5e.spells.XzkJpE6XpZfKjODD]{True Seeing}\n@Compendium[dnd5e.spells.fzZnVKLmBMo2f5up]{Wall of Ice}\n7th Level\n@Compendium[dnd5e.spells.LTDNWoFVJNLjiiNa]{Arcane Sword}\n@Compendium[dnd5e.spells.AoTTjapz1FsGOIZz]{Delayed Blast Fireball}\n@Compendium[dnd5e.spells.PQuEgKyCdovOvhqN]{Etherealness}\n@Compendium[dnd5e.spells.HPvZm8YJO91k6Qdg]{Finger of Death}\n@Compendium[dnd5e.spells.Y7uWUO4yqUN0JKl0]{Forcecage}\n@Compendium[dnd5e.spells.pn4SnsFDvYDiE6rC]{Magnificent Mansion}\n@Compendium[dnd5e.spells.f38w5rd9SgdmWc6F]{Mirage Arcane}\n@Compendium[dnd5e.spells.J6Jpw5XzB5aTeqnz]{Plane Shift}\n@Compendium[dnd5e.spells.eGMhwmuleAM46C6L]{Prismatic Spray}\n@Compendium[dnd5e.spells.ePhRKHXRE7l1sEoQ]{Project Image}\n@Compendium[dnd5e.spells.ERCv7yuRkQ0YjGx6]{Reverse Gravity}\n@Compendium[dnd5e.spells.wvLbtemkH8gyBpdc]{Sequester}\n@Compendium[dnd5e.spells.jccbeBIfLrqEZnDP]{Simulacrum}\n@Compendium[dnd5e.spells.B2kbmgbA2WQR00kx]{Symbol}\n@Compendium[dnd5e.spells.L4J89JXqbKs6puEV]{Teleport}\n8th Level\n@Compendium[dnd5e.spells.Eon0jzGzQRNluTPQ]{Antimagic Field}\n@Compendium[dnd5e.spells.GJ2WYm3SQFR0winH]{Antipathy/Sympathy}\n@Compendium[dnd5e.spells.h830iyqParFleNqR]{Clone}\n@Compendium[dnd5e.spells.ZPd73HtKF3At11jh]{Control Weather}\n@Compendium[dnd5e.spells.xNM9CzQQr2CieM4B]{Demiplane}\n@Compendium[dnd5e.spells.eEpy1ONlXumKS1mp]{Dominate Monster}\n@Compendium[dnd5e.spells.hYCrN82dMJFuJODB]{Feeblemind}\n@Compendium[dnd5e.spells.pV04y1iXoWiom6bp]{Incendiary Cloud}\n@Compendium[dnd5e.spells.clwv2PWOcT822hlr]{Maze}\n@Compendium[dnd5e.spells.bllEWfm9xfEKynhv]{Mind Blank}\n@Compendium[dnd5e.spells.35j2QIMmIk6aEdxj]{Power Word Stun}\n@Compendium[dnd5e.spells.hzK7FQya0BDjSmLE]{Sunburst}\n9th Level\n@Compendium[dnd5e.spells.TIoadMIsUKD4edXi]{Astral Projection}\n@Compendium[dnd5e.spells.6HEEhLdJz32TL4Js]{Foresight}\n@Compendium[dnd5e.spells.XbwGq5kDJNvAxNXV]{Gate}\n@Compendium[dnd5e.spells.ZVnL9L8v1KC9TBF4]{Imprisonment}\n@Compendium[dnd5e.spells.mF52ldF79Cr7wfQo]{Meteor Swarm}\n@Compendium[dnd5e.spells.dmvaMLFWFtv0qx0S]{Power Word Kill}\n@Compendium[dnd5e.spells.jmfu8zj4zjjzUbeh]{Prismatic Wall}\n@Compendium[dnd5e.spells.N2UEFq8X5LRsLcOZ]{Shapechange}\n@Compendium[dnd5e.spells.JYuRBwxpoFhXduvD]{Time Stop}\n@Compendium[dnd5e.spells.QbQZKoXOgHWN06aa]{True Polymorph}\n@Compendium[dnd5e.spells.Wl2vtJ4hCt2tpWfR]{Weird}\n@Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish}"},"_id":"k7Rs5EyXeA0SFTXD","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":1100000,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.EbRDzqsXhoaJ1wOe.JournalEntryPage.cnf2DeqbekRnEBEy"}}}],"ownership":{"default":0},"flags":{"core":{"viewMode":1},"dnd5e":{"type":"chapter","position":10}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.2","coreVersion":"10.285","createdTime":1660925148884,"modifiedTime":1663018863337,"lastModifiedBy":"dnd5ebuilder0000"},"folder":null,"sort":0,"_id":"QvPDSUsAiEn3hD8s"} {"name":"Chapter 8: Adventuring","pages":[{"name":"Time","type":"text","title":{"show":true,"level":1},"text":{"format":1,"content":"In situations where keeping track of the passage of time is important, the GM determines the time a task requires. The GM might use a different time scale depending on the context of the situation at hand. In a dungeon environment, the adventurers' movement happens on a scale of minutes. It takes them about a minute to creep down a long hallway, another minute to check for traps on the door at the end of the hall, and a good ten minutes to search the chamber beyond for anything interesting or valuable.\nIn a city or wilderness, a scale of hours is often more appropriate. Adventurers eager to reach the lonely tower at the heart of the forest hurry across those fifteen miles in just under four hours' time.\nFor long journeys, a scale of days works best. Following the road from Baldur's Gate to Waterdeep, the adventurers spend four uneventful days before a goblin ambush interrupts their journey.\nIn combat and other fast-paced situations, the game relies on rounds, a 6-second span of time."},"_id":"nqt4mR004wWbljhw","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":0,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.gRcWZ56MBxjX2mbO.JournalEntryPage.hc8qQRIchcU9SCAY"}}},{"name":"Movement","type":"text","title":{"show":true,"level":1},"text":{"format":1,"content":"Swimming across a rushing river, sneaking down a dungeon corridor, scaling a treacherous mountain slope—all sorts of movement play a key role in fantasy gaming adventures.\nThe GM can summarize the adventurers’ movement without calculating exact distances or travel times: “You travel through the forest and find the dungeon entrance late in the evening of the third day.” Even in a dungeon, particularly a large dungeon or a cave network, the GM can summarize movement between encounters: “After killing the guardian at the entrance to the ancient dwarven stronghold, you consult your map, which leads you through miles of echoing corridors to a chasm bridged by a narrow stone arch.”\nSometimes it’s important, though, to know how long it takes to get from one spot to another, whether the answer is in days, hours, or minutes. The rules for determining travel time depend on two factors: the speed and travel pace of the creatures moving and the terrain they’re moving over.\nSpeed\nEvery character and monster has a speed, which is the distance in feet that the character or monster can walk in 1 round. This number assumes short bursts of energetic movement in the midst of a lifethreatening situation.\nThe following rules determine how far a character or monster can move in a minute, an hour, or a day.\nTravel Pace\nWhile traveling, a group of adventurers can move at a normal, fast, or slow pace, as shown on the Travel Pace table. The table states how far the party can move in a period of time and whether the pace has any effect. A fast pace makes characters less perceptive, while a slow pace makes it possible to sneak around and to search an area more carefully.\nForced March. The Travel Pace table assumes that characters travel for 8 hours in day. They can push on beyond that limit, at the risk of exhaustion.\nFor each additional hour of travel beyond 8 hours, the characters cover the distance shown in the Hour column for their pace, and each character must make a Constitution saving throw at the end of the hour. The DC is 10 + 1 for each hour past 8 hours. On a failed saving throw, a character suffers one level of @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.cspWveykstnu3Zcv]{Exhaustion}.\nMounts and Vehicles. For short spans of time (up to an hour), many animals move much faster than humanoids. A mounted character can ride at a gallop for about an hour, covering twice the usual distance for a fast pace. If fresh mounts are available every 8 to 10 miles, characters can cover larger distances at this pace, but this is very rare except in densely populated areas.\nCharacters in wagons, carriages, or other land vehicles choose a pace as normal. Characters in a waterborne vessel are limited to the speed of the vessel, and they don’t suffer penalties for a fast pace or gain benefits from a slow pace. Depending on the vessel and the size of the crew, ships might be able to travel for up to 24 hours per day.\nCertain special mounts, such as a pegasus or griffon, or special vehicles, such as a @Compendium[dnd5e.items.TjWk2mpNXjDdfIDM]{Carpet of Flying}, allow you to travel more swiftly.\n\nTravel Pace\n\n\n\nPace\nDistance Traveled per . . .\n\n\nMinute\nHour\nDay\nEffect\n\n\n\n\nFast\n400 feet\n4 miles\n30 miles\n- 5 penalty to passive Wisdom (Perception) scores\n\n\nNormal\n300 feet\n3 miles\n24 miles\n—\n\n\nSlow\n200 feet\n2 miles\n18 miles\nAble to use stealth\n\n\n\nDifficult Terrain\nThe travel speeds given in the Travel Pace table assume relatively simple terrain: roads, open plains, or clear dungeon corridors. But adventurers often face dense forests, deep swamps, rubble-filled ruins, steep mountains, and ice-covered ground—all considered difficult terrain.\nYou move at half speed in difficult terrain— moving 1 foot in difficult terrain costs 2 feet of speed—so you can cover only half the normal distance in a minute, an hour, or a day.\nSpecial Types of Movement\nMovement through dangerous dungeons or wilderness areas often involves more than simply walking. Adventurers might have to climb, crawl, swim, or jump to get where they need to go.\nClimbing, Swimming, and Crawling\nWhile climbing or swimming, each foot of movement costs 1 extra foot (2 extra feet in difficult terrain), unless a creature has a climbing or swimming speed. At the GM’s option, climbing a slippery vertical surface or one with few handholds requires a successful Strength (Athletics) check. Similarly, gaining any distance in rough water might require a successful Strength (Athletics) check.\nJumping\nYour Strength determines how far you can jump.\nLong Jump. When you make a long jump, you cover a number of feet up to your Strength score if you move at least 10 feet on foot immediately before the jump. When you make a standing long jump, you can leap only half that distance. Either way, each foot you clear on the jump costs a foot of movement.\nThis rule assumes that the height of your jump doesn’t matter, such as a jump across a stream or chasm. At your GM’s option, you must succeed on a DC 10 Strength (Athletics) check to clear a low obstacle (no taller than a quarter of the jump’s distance), such as a hedge or low wall. Otherwise, you hit it.\nWhen you land in difficult terrain, you must succeed on a DC 10 Dexterity (Acrobatics) check to land on your feet. Otherwise, you land prone.\nHigh Jump. When you make a high jump, you leap into the air a number of feet equal to 3 + your Strength modifier if you move at least 10 feet on foot immediately before the jump. When you make a standing high jump, you can jump only half that distance. Either way, each foot you clear on the jump costs a foot of movement. In some circumstances, your GM might allow you to make a Strength (Athletics) check to jump higher than you normally can.\nYou can extend your arms half your height above yourself during the jump. Thus, you can reach above you a distance equal to the height of the jump plus 1½ times your height.","markdown":""},"_id":"vR9rCM0UXPM9zl43","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":0,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.87bCRbO4gFLQJXX4.JournalEntryPage.gQKxqJ2HYhyg188U"}}},{"name":"The Environment","type":"text","title":{"show":true,"level":1},"text":{"format":1,"content":"By its nature, adventuring involves delving into places that are dark, dangerous, and full of mysteries to be explored. The rules in this section cover some of the most important ways in which adventurers interact with the environment in such places.\nFalling\nA fall from a great height is one of the most common hazards facing an adventurer. At the end of a fall, a creature takes 1d6 bludgeoning damage for every 10 feet it fell, to a maximum of 20d6. The creature lands prone, unless it avoids taking damage from the fall.\nSuffocating\nA creature can hold its breath for a number of minutes equal to 1 + its Constitution modifier (minimum of 30 seconds).\nWhen a creature runs out of breath or is choking, it can survive for a number of rounds equal to its Constitution modifier (minimum of 1 round). At the start of its next turn, it drops to 0 hit points and is dying, and it can't regain hit points or be stabilized until it can breathe again.\nFor example, a creature with a Constitution of 14 can hold its breath for 3 minutes. If it starts suffocating, it has 2 rounds to reach air before it drops to 0 hit points.\nVision and Light\nThe most fundamental tasks of adventuring— noticing danger, finding hidden objects, hitting an enemy in combat, and targeting a spell, to name just a few—rely heavily on a character's ability to see. Darkness and other effects that obscure vision can prove a significant hindrance.\nA given area might be lightly or heavily obscured. In a lightly obscured area, such as dim light, patchy fog, or moderate foliage, creatures have disadvantage on Wisdom (Perception) checks that rely on sight.\nA heavily obscured area—such as darkness, opaque fog, or dense foliage—blocks vision entirely. A creature effectively suffers from the @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.0b8N4FymGGfbZGpJ]{Blinded} condition when trying to see something in that area.\nThe presence or absence of light in an environment creates three categories of illumination: bright light, dim light, and darkness.\nBright light lets most creatures see normally. Even gloomy days provide bright light, as do torches, lanterns, fires, and other sources of illumination within a specific radius.\nDim light, also called shadows, creates a lightly obscured area. An area of dim light is usually a boundary between a source of bright light, such as a torch, and surrounding darkness. The soft light of twilight and dawn also counts as dim light. A particularly brilliant full moon might bathe the land in dim light.\nDarkness creates a heavily obscured area. Characters face darkness outdoors at night (even most moonlit nights), within the confines of an unlit dungeon or a subterranean vault, or in an area of magical darkness.\nBlindsight\nA creature with blindsight can perceive its surroundings without relying on sight, within a specific radius. Creatures without eyes, such as oozes, and creatures with echolocation or heightened senses, such as bats and true dragons, have this sense.\nDarkvision\nMany creatures in fantasy gaming worlds, especially those that dwell underground, have darkvision. Within a specified range, a creature with darkvision can see in darkness as if the darkness were dim light, so areas of darkness are only lightly obscured as far as that creature is concerned. However, the creature can't discern color in darkness, only shades of gray.\nTruesight\nA creature with truesight can, out to a specific range, see in normal and magical darkness, see @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.3UU5GCTVeRDbZy9u]{Invisible} creatures and objects, automatically detect visual illusions and succeed on saving throws against them, and perceives the original form of a shapechanger or a creature that is transformed by magic. Furthermore, the creature can see into the Ethereal Plane.\nFood and Water\nCharacters who don't eat or drink suffer the effects of @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.cspWveykstnu3Zcv]{Exhaustion}. Exhaustion caused by lack of food or water can't be removed until the character eats and drinks the full required amount.\nFood\nA character needs one pound of food per day and can make food last longer by subsisting on half rations. Eating half a pound of food in a day counts as half a day without food.\nA character can go without food for a number of days equal to 3 + his or her Constitution modifier (minimum 1). At the end of each day beyond that limit, a character automatically suffers one level of exhaustion.\nA normal day of eating resets the count of days without food to zero.\nWater\nA character needs one gallon of water per day, or two gallons per day if the weather is hot. A character who drinks only half that much water must succeed on a DC 15 Constitution saving throw or suffer one level of exhaustion at the end of the day. A character with access to even less water automatically suffers one level of exhaustion at the end of the day.\nIf the character already has one or more levels of exhaustion, the character takes two levels in either case.\nInteracting with Objects\nA character's interaction with objects in an environment is often simple to resolve in the game. The player tells the GM that his or her character is doing something, such as moving a lever, and the GM describes what, if anything, happens.\nFor example, a character might decide to pull a lever, which might, in turn, raise a portcullis, cause a room to flood with water, or open a secret door in a nearby wall. If the lever is rusted in position, though, a character might need to force it. In such a situation, the GM might call for a Strength check to see whether the character can wrench the lever into place. The GM sets the DC for any such check based on the difficulty of the task.\nCharacters can also damage objects with their weapons and spells. Objects are immune to poison and psychic damage, but otherwise they can be affected by physical and magical attacks much like creatures can. The GM determines an object's Armor Class and hit points, and might decide that certain objects have resistance or immunity to certain kinds of attacks. (It's hard to cut a rope with a club, for example.) Objects always fail Strength and Dexterity saving throws, and they are immune to effects that require other saves. When an object drops to 0 hit points, it breaks.\nA character can also attempt a Strength check to break an object. The GM sets the DC for any such check.","markdown":""},"_id":"9jyye7TeGlY4FRf3","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":0,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.mKsmKfuLvJ3GjPzN.JournalEntryPage.VeVttO6IgNSFH8cG"}}},{"name":"Resting","type":"text","title":{"show":true,"level":1},"text":{"format":1,"content":"Heroic though they might be, adventurers can't spend every hour of the day in the thick of exploration, social interaction, and combat. They need rest—time to sleep and eat, tend their wounds, refresh their minds and spirits for spellcasting, and brace themselves for further adventure.\nAdventurers can take short rests in the midst of an adventuring day and a long rest to end the day.\nShort Rest\nA short rest is a period of downtime, at least 1 hour long, during which a character does nothing more strenuous than eating, drinking, reading, and tending to wounds.\nA character can spend one or more Hit Dice at the end of a short rest, up to the character's maximum number of Hit Dice, which is equal to the character's level. For each Hit Die spent in this way, the player rolls the die and adds the character's Constitution modifier to it. The character regains hit points equal to the total. The player can decide to spend an additional Hit Die after each roll. A character regains some spent Hit Dice upon finishing a long rest, as explained below.\nLong Rest\nA long rest is a period of extended downtime, at least 8 hours long, during which a character sleeps or performs light activity: reading, talking, eating, or standing watch for no more than 2 hours. If the rest is interrupted by a period of strenuous activity—at least 1 hour of walking, fighting, casting spells, or similar adventuring activity—the characters must begin the rest again to gain any benefit from it.\nAt the end of a long rest, a character regains all lost hit points. The character also regains spent Hit Dice, up to a number of dice equal to half of the character's total number of them (minimum of one die). For example, if a character has eight Hit Dice, he or she can regain four spent Hit Dice upon finishing a long rest.\nA character can't benefit from more than one long rest in a 24-hour period, and a character must have at least 1 hit point at the start of the rest to gain its benefits."},"_id":"n0gCL50RM2QjHw6F","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":0,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.ei4esVo9XkUXRccq.JournalEntryPage.o09R0QcjGH5Gpzxu"}}},{"name":"Between Adventures","type":"text","title":{"show":true,"level":1},"text":{"format":1,"content":"Between trips to dungeons and battles against ancient evils, adventurers need time to rest, recuperate, and prepare for their next adventure. Many adventurers also use this time to perform other tasks, such as crafting arms and armor, performing research, or spending their hard-earned gold.\nIn some cases, the passage of time is something that occurs with little fanfare or description. When starting a new adventure, the GM might simply declare that a certain amount of time has passed and allow you to describe in general terms what your character has been doing. At other times, the GM might want to keep track of just how much time is passing as events beyond your perception stay in motion.\nLifestyle Expenses\nBetween adventures, you choose a particular quality of life and pay the cost of maintaining that lifestyle.\nLiving a particular lifestyle doesn't have a huge effect on your character, but your lifestyle can affect the way other individuals and groups react to you. For example, when you lead an aristocratic lifestyle, it might be easier for you to influence the nobles of the city than if you live in poverty.\nDowntime Activities\nBetween adventures, the GM might ask you what your character is doing during his or her downtime. Periods of downtime can vary in duration, but each downtime activity requires a certain number of days to complete before you gain any benefit, and at least 8 hours of each day must be spent on the downtime activity for the day to count. The days do not need to be consecutive. If you have more than the minimum amount of days to spend, you can keep doing the same thing for a longer period of time, or switch to a new downtime activity.\nDowntime activities other than the ones presented below are possible. If you want your character to spend his or her downtime performing an activity not covered here, discuss it with your GM.\nCrafting\nYou can craft nonmagical objects, including adventuring equipment and works of art. You must be proficient with tools related to the object you are trying to create (typically artisan's tools). You might also need access to special materials or locations necessary to create it. For example, someone proficient with smith's tools needs a forge in order to craft a sword or suit of armor.\nFor every day of downtime you spend crafting, you can craft one or more items with a total market value not exceeding 5 gp, and you must expend raw materials worth half the total market value. If something you want to craft has a market value greater than 5 gp, you make progress every day in 5- gp increments until you reach the market value of the item. For example, a suit of plate armor (market value 1,500 gp) takes 300 days to craft by yourself.\nMultiple characters can combine their efforts toward the crafting of a single item, provided that the characters all have proficiency with the requisite tools and are working together in the same place. Each character contributes 5 gp worth of effort for every day spent helping to craft the item. For example, three characters with the requisite tool proficiency and the proper facilities can craft a suit of plate armor in 100 days, at a total cost of 750 gp.\nWhile crafting, you can maintain a modest lifestyle without having to pay 1 gp per day, or a comfortable lifestyle at half the normal cost.\nPracticing a Profession\nYou can work between adventures, allowing you to maintain a modest lifestyle without having to pay 1 gp per day. This benefit lasts as long you continue to practice your profession.\nIf you are a member of an organization that can provide gainful employment, such as a temple or a thieves' guild, you earn enough to support a comfortable lifestyle instead.\nIf you have proficiency in the Performance skill and put your performance skill to use during your downtime, you earn enough to support a wealthy lifestyle instead.\nRecuperating\nYou can use downtime between adventures to recover from a debilitating injury, disease, or poison.\nAfter three days of downtime spent recuperating, you can make a DC 15 Constitution saving throw. On a successful save, you can choose one of the following results:\n\nEnd one effect on you that prevents you from regaining hit points.\nFor the next 24 hours, gain advantage on saving throws against one disease or poison currently affecting you.\n\nResearching\nThe time between adventures is a great chance to perform research, gaining insight into mysteries that have unfurled over the course of the campaign. Research can include poring over dusty tomes and crumbling scrolls in a library or buying drinks for the locals to pry rumors and gossip from their lips.\nWhen you begin your research, the GM determines whether the information is available, how many days of downtime it will take to find it, and whether there are any restrictions on your research (such as needing to seek out a specific individual, tome, or location). The GM might also require you to make one or more ability checks, such as an Intelligence (Investigation) check to find clues pointing toward the information you seek, or a Charisma (Persuasion) check to secure someone's aid. Once those conditions are met, you learn the information if it is available.\nFor each day of research, you must spend 1 gp to cover your expenses. This cost is in addition to your normal lifestyle expenses.\nTraining\nYou can spend time between adventures learning a new language or training with a set of tools. Your GM might allow additional training options.\nFirst, you must find an instructor willing to teach you. The GM determines how long it takes, and whether one or more ability checks are required.\nThe training lasts for 250 days and costs 1 gp per day. After you spend the requisite amount of time and money, you learn the new language or gain proficiency with the new tool."},"_id":"WTgThIDXBP3BhTJK","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":0,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.gPaI6ycBI7MRz2IJ.JournalEntryPage.VfAJSxahfZcj89Bi"}}}],"ownership":{"default":0},"flags":{"core":{"viewMode":2},"dnd5e":{"type":"chapter","position":8}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.2","coreVersion":"10.285","createdTime":1660925148884,"modifiedTime":1663018863337,"lastModifiedBy":"dnd5ebuilder0000"},"folder":null,"sort":0,"_id":"aYmUMcQfSIqYWpKk"} {"name":"Appendix D: Senses and Speeds","pages":[{"name":"Blindsight","type":"text","title":{"show":true,"level":2},"text":{"format":1,"content":"A monster with blindsight can perceive its surroundings without relying on sight, within a specific radius.\nCreatures without eyes, such as grimlocks and gray oozes, typically have this special sense, as do creatures with echolocation or heightened senses, such as bats and true dragons.\nIf a monster is naturally blind, it has a parenthetical note to this effect, indicating that the radius of its blindsight defines the maximum range of its perception."},"_id":"I6ABWHBYwGl55dLY","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":0,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.oag7MR9Omacmhzb7.JournalEntryPage.9IYGlnEcbvDsesqE"}}},{"name":"Darkvision","type":"text","title":{"show":true,"level":2},"text":{"format":1,"content":"A monster with darkvision can see in the dark within a specific radius. The monster can see in dim light within the radius as if it were bright light, and in darkness as if it were dim light. The monster can't discern color in darkness, only shades of gray. Many creatures that live underground have this special sense."},"_id":"0RBamBThjzeAdMSt","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":0,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.10RNSKCH2hTja3DG.JournalEntryPage.njFKuQXewyxEKhhy"}}},{"name":"Tremorsense","type":"text","title":{"show":true,"level":2},"text":{"format":1,"content":"A monster with tremorsense can detect and pinpoint the origin of vibrations within a specific radius, provided that the monster and the source of the vibrations are in contact with the same ground or substance. Tremorsense can't be used to detect flying or incorporeal creatures. Many burrowing creatures, such as ankhegs and umber hulks, have this special sense."},"_id":"8AIlZ95v54mL531X","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":0,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.MzNASNCgB0Qi2m8p.JournalEntryPage.h2Abug4QLGjQyLUC"}}},{"name":"Truesight","type":"text","title":{"show":true,"level":2},"text":{"format":1,"content":"A monster with truesight can, out to a specific range, see in normal and magical darkness, see invisible creatures and objects, automatically detect visual illusions and succeed on saving throws against them, and perceive the original form of a shapechanger or a creature that is transformed by magic. Furthermore, the monster can see into the Ethereal Plane within the same range."},"_id":"8iC24otVX4n1yrYw","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":0,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.eeQ4uW3yMwnbIYVs.JournalEntryPage.trtVIxHQGLdoQlNU"}}},{"name":"Burrow","type":"text","title":{"show":true,"level":2},"text":{"format":1,"content":"A monster that has a burrowing speed can use that speed to move through sand, earth, mud, or ice. A monster can't burrow through solid rock unless it has a special trait that allows it to do so."},"_id":"I13SYX1zaCLYmaYF","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":0,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.treKHmCjr4aQiVyd.JournalEntryPage.xTlI7NaMAsWfKU85"}}},{"name":"Climb","type":"text","title":{"show":true,"level":2},"text":{"format":1,"content":"A monster that has a climbing speed can use all or part of its movement to move on vertical surfaces. The monster doesn't need to spend extra movement to climb."},"_id":"eW0LypO5xZZdq4I9","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":0,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.cvRB5qT2M8wVUGRb.JournalEntryPage.txo9niGHXsuleMgb"}}},{"name":"Fly","type":"text","title":{"show":true,"level":2},"text":{"format":1,"content":"A monster that has a flying speed can use all or part of its movement to fly. Some monsters have the ability to hover, which makes them hard to knock out of the air (as explained in the rules on flying in the Player's Handbook). Such a monster stops hovering when it dies."},"_id":"X2CTP455Zpr7Shs9","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":0,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.KJHSCRHWW0UuhtoE.JournalEntryPage.lJtdbApn5zHZvyoq"}}},{"name":"Swim","type":"text","title":{"show":true,"level":2},"text":{"format":1,"content":"A monster that has a swimming speed doesn't need to spend extra movement to swim."},"_id":"EQWAcrLYsd96MzJH","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":0,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.J9ppEykIQxUIarUj.JournalEntryPage.xRaG4s8Y4Jaz904c"}}}],"ownership":{"default":0},"flags":{"core":{"viewMode":2},"dnd5e":{"type":"appendix","position":4}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.2","coreVersion":"10.285","createdTime":1660925148884,"modifiedTime":1663018863337,"lastModifiedBy":"dnd5ebuilder0000"},"folder":null,"sort":0,"_id":"eVtpEGXjA2tamEIJ"} -{"name":"Chapter 3: Classes","pages":[{"name":"Overview","type":"text","title":{"show":false,"level":1},"text":{"format":1,"content":"Classes Summary\n\n\nClass\nHit Die\nPrimary Ability\nSaving Throw Proficiencies\nArmor and Weapon Proficiencies\n\n\n\n\n@Compendium[dnd5e.classes.pvEzGSv71zBhaolc]{Barbarian}\nd12\nStrength\nStrength & Constitution\nLight and medium armor, shields, simple and martial weapons\n\n\n@Compendium[dnd5e.classes.ILvRZGEx3aXqSVUt]{Bard}\nd8\nCharisma\nDexterity & Charisma\nLight armor, simple weapons, hand crossbows, longswords, rapiers, shortswords\n\n\n@Compendium[dnd5e.classes.tlwBnN8GmqJcTgub]{Cleric}\nd8\nWisdom\nWisdom & Charisma\nLight and medium armor, shields, simple weapons\n\n\n@Compendium[dnd5e.classes.ygVYgPbJkaH0tH1N]{Druid}\nd8\nWisdom\nIntelligence & Wisdom\nLight and medium armor (nonmetal), shields (nonmetal), clubs, daggers, darts, javelins, maces, quarterstaffs, scimitars, sickles, slings, spears\n\n\n@Compendium[dnd5e.classes.ABEBgWyRhVlDUIfq]{Fighter}\nd10\nStrength or Dexterity\nStrength & Constitution\nAll armor, shields, simple and martial weapons\n\n\n@Compendium[dnd5e.classes.6VoZrWxhOEKGYhnq]{Monk}\nd8\nDexterity & Wisdom\nStrength & Dexterity\nSimple weapons, shortswords\n\n\n@Compendium[dnd5e.classes.gZiUvbXWLs0pOp0c]{Paladin}\nd10\nStrength & Charisma\nWisdom & Charisma\nAll armor, shields, simple and martial weapons\n\n\n@Compendium[dnd5e.classes.VkRQ7glQvTWWiOCS]{Ranger}\nd10\nDexterity & Wisdom\nStrength & Dexterity\nLight and medium armor, shields, simple and martial weapons\n\n\n@Compendium[dnd5e.classes.xEb8jmA5HlNs7xTF]{Rogue}\nd8\nDexterity\nDexterity & Intelligence\nLight armor, simple weapons, hand crossbows, longswords, rapiers, shortswords\n\n\n@Compendium[dnd5e.classes.6T08zzKtmmpVwlXU]{Sorcerer}\nd6\nCharisma\nConstitution & Charisma\nDaggers, darts, slings, quarterstaffs, light crossbows\n\n\n@Compendium[dnd5e.classes.7WJp9vhi6F6SlAFa]{Warlock}\nd8\nCharisma\nWisdom & Charisma\nLight armor, simple weapons\n\n\n@Compendium[dnd5e.classes.wZK2Q0rXB0AQo8h3]{Wizard}\nd6\nIntelligence\nIntelligence & Wisdom\nDaggers, darts, slings, quarterstaffs, light crossbows\n\n\n"},"_id":"8jxEuy0PV2HNySQC","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Barbarian","type":"class","_id":"lQ6qPkCfIyjIADY5","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.pvEzGSv71zBhaolc","description":{"value":"","additionalHitPoints":"","additionalTraits":"Armor: Light armor, medium armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, ConstitutionSkills: Choose two from Animal Handling, Athletics, Intimidation, Nature, Perception, and Survival","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a greataxe or (b) any martial melee weapon\n(a) two handaxes or (b) any simple weapon\nAn explorer’s pack and four javelins\n","subclass":""},"subclassHeader":"Primal Paths","subclassItems":["Compendium.dnd5e.subclasses.uGuDQX9Mz3oHNHkU"]},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Bard","type":"class","_id":"WYZMEei2b0HZgWdu","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.ILvRZGEx3aXqSVUt","description":{"value":"","additionalHitPoints":"","additionalTraits":"Armor: Light armorWeapons: Simple weapons, hand crossbows, longswords, rapiers, shortswordsTools: Three musical instruments of your choiceSaving Throws: Dexterity, CharismaSkills: Choose any three","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a rapier, (b) a longsword, or (c) any simple weapon\n(a) a diplomat’s pack or (b) an entertainer’s pack\n(a) a lute or (b) any other musical instrument\nLeather armor and a dagger\n","subclass":""},"subclassHeader":"Bard Colleges","subclassItems":["Compendium.dnd5e.subclasses.MNvsEc4D2ccX7dQT"]},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Cleric","type":"class","_id":"7xAozaqWq3Z6YTsf","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.tlwBnN8GmqJcTgub","description":{"value":"","additionalHitPoints":"","additionalTraits":"Armor: Light armor, medium armor, shieldsWeapons: Simple weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two from History, Insight, Medicine, Persuasion, and Religion","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a mace or (b) a warhammer (if proficient)\n(a) scale mail, (b) leather armor, or (c) chain mail (if proficient)\n(a) a light crossbow and 20 bolts or (b) any simple weapon\n(a) a priest’s pack or (b) an explorer’s pack • A shield and a holy symbol\n","subclass":""},"subclassHeader":"Divine Domains","subclassItems":["Compendium.dnd5e.subclasses.H3RYLGqCiqm8BP3q"]},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Druid","type":"class","_id":"0LfgSuMJmv7bf1JU","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.ygVYgPbJkaH0tH1N","description":{"value":"","additionalHitPoints":"","additionalTraits":"Armor: Light armor, medium armor, shields (druids will not wear armor or use shields made of metal)Weapons: Clubs, daggers, darts, javelins, maces, quarterstaffs, scimitars, sickles, slings, spearsTools: Herbalism kitSaving Throws: Intelligence, WisdomSkills: Choose two from Arcana, Animal Handling, Insight, Medicine, Nature, Perception, Religion, and Survival","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a wooden shield or (b) any simple weapon\n(a) a scimitar or (b) any simple melee weapon\nLeather armor, an explorer’s pack, and a druidic focus\n","subclass":""},"subclassHeader":"Druid Circles","subclassItems":["Compendium.dnd5e.subclasses.4Ae2SPZRXEVbVs0M"]},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Fighter","type":"class","_id":"ygdteO7FoWsKqfOD","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.ABEBgWyRhVlDUIfq","description":{"value":"","additionalHitPoints":"","additionalTraits":"Armor: All armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, ConstitutionSkills: Choose two skills from Acrobatics, Animal Handling, Athletics, History, Insight, Intimidation, Perception, and Survival","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) chain mail or (b) leather armor, longbow, and 20 arrows\n(a) a martial weapon and a shield or (b) two martial weapons\n(a) a light crossbow and 20 bolts or (b) two handaxes\n(a) a dungeoneer’s pack or (b) an explorer’s pack\n","subclass":""},"subclassHeader":"Martial Archetypes","subclassItems":["Compendium.dnd5e.subclasses.sprHbe7cRg9osTzf"]},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Monk","type":"class","_id":"9lcffy0dOmFDaoKr","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.6VoZrWxhOEKGYhnq","description":{"value":"","additionalHitPoints":"","additionalTraits":"Armor: NoneWeapons: Simple weapons, shortswordsTools: Choose one type of artisan’s tools or one musical instrumentSaving Throws: Strength, DexteritySkills: Choose two from Acrobatics, Athletics, History, Insight, Religion, and Stealth","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a shortsword or (b) any simple weapon\n(a) a dungeoneer’s pack or (b) an explorer’s pack • 10 darts\n","subclass":"Three traditions of monastic pursuit are common in the monasteries scattered across the multiverse. Most monasteries practice one tradition exclusively, but a few honor the three traditions and instruct each monk according to his or her aptitude and interest. All three traditions rely on the same basic techniques, diverging as the student grows more adept. Thus, a monk need choose a tradition only upon reaching 3rd level."},"subclassHeader":"Monastic Traditions","subclassItems":["Compendium.dnd5e.subclasses.IvlpKMXX3PmW1NY2"]},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Paladin","type":"class","_id":"doLlxoEonAEiIJM7","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.gZiUvbXWLs0pOp0c","description":{"value":"","additionalHitPoints":"","additionalTraits":"Armor: All armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two from Athletics, Insight, Intimidation, Medicine, Persuasion, and Religion","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a martial weapon and a shield or (b) two martial weapons\n(a) five javelins or (b) any simple melee weapon\n(a) a priest’s pack or (b) an explorer’s pack\nChain mail and a holy symbol\n","subclass":"Becoming a paladin involves taking vows that commit the paladin to the cause of righteousness, an active path of fighting wickedness. The final oath, taken when he or she reaches 3rd level, is the culmination of all the paladin’s training. Some characters with this class don’t consider themselves true paladins until they have reached 3rd level and made this oath. For others, the actual swearing of the oath is a formality, an official stamp on what has always been true in the paladin’s heart."},"subclassHeader":"Sacred Oaths","subclassItems":["Compendium.dnd5e.subclasses.sZ86mbX8D5PfYuhl"]},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Ranger","type":"class","_id":"nLK08pRtyaLLuB4w","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.VkRQ7glQvTWWiOCS","description":{"value":"","additionalHitPoints":"","additionalTraits":"Armor: Light armor, medium armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, DexteritySkills: Choose three from Animal Handling, Athletics, Insight, Investigation, Nature, Perception, Stealth, and Survival","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) scale mail or (b) leather armor\n(a) two shortswords or (b) two simple melee weapons\n(a) a dungeoneer’s pack or (b) an explorer’s pack\nA longbow and a quiver of 20 arrows\n","subclass":"A classic expression of the ranger ideal is the Hunter."},"subclassHeader":"Ranger Archetypes","subclassItems":["Compendium.dnd5e.subclasses.uqd2q6WjVfcsaaGb"]},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Rogue","type":"class","_id":"sgs4mhWwQev8JY03","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.xEb8jmA5HlNs7xTF","description":{"value":"","additionalHitPoints":"","additionalTraits":"Armor: Light armorWeapons: Simple weapons, hand crossbows, longswords, rapiers, shortswordsTools: Thieves’ toolsSaving Throws: Dexterity, IntelligenceSkills: Choose four from Acrobatics, Athletics, Deception, Insight, Intimidation, Investigation, Perception, Performance, Persuasion, Sleight of Hand, and Stealth","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a rapier or (b) a shortsword\n(a) a shortbow and quiver of 20 arrows or (b) a shortsword\n(a) a burglar’s pack, (b) a dungeoneer’s pack, or (c) an explorer’s pack\n(a) Leather armor, two daggers, and thieves’ tools\n","subclass":"Rogues have many features in common, including their emphasis on perfecting their skills, their precise and deadly approach to combat, and their increasingly quick reflexes. But different rogues steer those talents in varying directions, embodied by the rogue archetypes. Your choice of archetype is a reflection of your focus—not necessarily an indication of your chosen profession, but a description of your preferred techniques."},"subclassHeader":"Roguish Archetypes","subclassItems":["Compendium.dnd5e.subclasses.k8iuefRorWOjb9gR"]},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Sorcerer","type":"class","_id":"mh73MffZNiVCVxJV","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.6T08zzKtmmpVwlXU","description":{"value":"","additionalHitPoints":"","additionalTraits":"Armor: NoneWeapons: Daggers, darts, slings, quarterstaffs, light crossbowsTools: NoneSaving Throws: Constitution, CharismaSkills: Choose two from Arcana, Deception, Insight, Intimidation, Persuasion, and Religion","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a light crossbow and 20 bolts or (b) any simple weapon\n(a) a component pouch or (b) an arcane focus\n(a) a dungeoneer’s pack or (b) an explorer’s pack\nTwo daggers\n","subclass":"Different sorcerers claim different origins for their innate magic, such as a draconic bloodline."},"subclassHeader":"Sorcerous Origins","subclassItems":["Compendium.dnd5e.subclasses.2nadB2MBSHTQ0kcl"]},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Warlock","type":"class","_id":"nBRkCAhWQOChx5qN","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.7WJp9vhi6F6SlAFa","description":{"value":"","additionalHitPoints":"","additionalTraits":"Armor: Light armorWeapons: Simple weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two skills from Arcana, Deception, History, Intimidation, Investigation, Nature, and Religion","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a light crossbow and 20 bolts or (b) any simple weapon\n(a) a component pouch or (b) an arcane focus\n(a) a scholar’s pack or (b) a dungeoneer’s pack\nLeather armor, any simple weapon, and two daggers\n","subclass":"The beings that serve as patrons for warlocks are mighty inhabitants of other planes of existence—not gods, but almost godlike in their power. Various patrons give their warlocks access to different powers and invocations, and expect significant favors in return.\nSome patrons collect warlocks, doling out mystic knowledge relatively freely or boasting of their ability to bind mortals to their will. Other patrons bestow their power only grudgingly, and might make a pact with only one warlock. Warlocks who serve the same patron might view each other as allies, siblings, or rivals."},"subclassHeader":"Otherworldly Patrons","subclassItems":["Compendium.dnd5e.subclasses.WPFVBg589uI8iOMH"]},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Wizard","type":"class","_id":"cmkACLWa9Hq1S6Go","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.wZK2Q0rXB0AQo8h3","description":{"value":"","additionalHitPoints":"","additionalTraits":"Armor: NoneWeapons: Daggers, darts, slings, quarterstaffs, light crossbowsTools: NoneSaving Throws: Intelligence, WisdomSkills: Choose two from Arcana, History, Insight, Investigation, Medicine, and Religion","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a quarterstaff or (b) a dagger\n(a) a component pouch or (b) an arcane focus\n(a) a scholar’s pack or (b) an explorer’s pack\nA spellbook\n","subclass":"The study of wizardry is ancient, stretching back to the earliest mortal discoveries of magic. It is firmly established in fantasy gaming worlds, with various traditions dedicated to its complex study.\nThe most common arcane traditions in the multiverse revolve around the schools of magic. Wizards through the ages have cataloged thousands of spells, grouping them into eight categories called schools. In some places, these traditions are literally schools. In other institutions, the schools are more like academic departments, with rival faculties competing for students and funding. Even wizards who train apprentices in the solitude of their own towers use the division of magic into schools as a learning device, since the spells of each school require mastery of different techniques."},"subclassHeader":"Arcane Traditions","subclassItems":["Compendium.dnd5e.subclasses.Ye5f3FReEnuXfi0y"]},"sort":0,"ownership":{"default":-1},"flags":{}}],"ownership":{"default":0},"flags":{"dnd5e":{"type":"chapter","position":3}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.2","coreVersion":"10.285","createdTime":1660925148884,"modifiedTime":1663018863337,"lastModifiedBy":"dnd5ebuilder0000"},"folder":null,"sort":0,"_id":"gqecphEUnz4ktrQ9"} +{"name":"Chapter 3: Classes","pages":[{"name":"Overview","type":"text","title":{"show":false,"level":1},"text":{"format":1,"content":"Classes Summary\n\n\nClass\nHit Die\nPrimary Ability\nSaving Throw Proficiencies\nArmor and Weapon Proficiencies\n\n\n\n\n@Compendium[dnd5e.classes.pvEzGSv71zBhaolc]{Barbarian}\nd12\nStrength\nStrength & Constitution\nLight and medium armor, shields, simple and martial weapons\n\n\n@Compendium[dnd5e.classes.ILvRZGEx3aXqSVUt]{Bard}\nd8\nCharisma\nDexterity & Charisma\nLight armor, simple weapons, hand crossbows, longswords, rapiers, shortswords\n\n\n@Compendium[dnd5e.classes.tlwBnN8GmqJcTgub]{Cleric}\nd8\nWisdom\nWisdom & Charisma\nLight and medium armor, shields, simple weapons\n\n\n@Compendium[dnd5e.classes.ygVYgPbJkaH0tH1N]{Druid}\nd8\nWisdom\nIntelligence & Wisdom\nLight and medium armor (nonmetal), shields (nonmetal), clubs, daggers, darts, javelins, maces, quarterstaffs, scimitars, sickles, slings, spears\n\n\n@Compendium[dnd5e.classes.ABEBgWyRhVlDUIfq]{Fighter}\nd10\nStrength or Dexterity\nStrength & Constitution\nAll armor, shields, simple and martial weapons\n\n\n@Compendium[dnd5e.classes.6VoZrWxhOEKGYhnq]{Monk}\nd8\nDexterity & Wisdom\nStrength & Dexterity\nSimple weapons, shortswords\n\n\n@Compendium[dnd5e.classes.gZiUvbXWLs0pOp0c]{Paladin}\nd10\nStrength & Charisma\nWisdom & Charisma\nAll armor, shields, simple and martial weapons\n\n\n@Compendium[dnd5e.classes.VkRQ7glQvTWWiOCS]{Ranger}\nd10\nDexterity & Wisdom\nStrength & Dexterity\nLight and medium armor, shields, simple and martial weapons\n\n\n@Compendium[dnd5e.classes.xEb8jmA5HlNs7xTF]{Rogue}\nd8\nDexterity\nDexterity & Intelligence\nLight armor, simple weapons, hand crossbows, longswords, rapiers, shortswords\n\n\n@Compendium[dnd5e.classes.6T08zzKtmmpVwlXU]{Sorcerer}\nd6\nCharisma\nConstitution & Charisma\nDaggers, darts, slings, quarterstaffs, light crossbows\n\n\n@Compendium[dnd5e.classes.7WJp9vhi6F6SlAFa]{Warlock}\nd8\nCharisma\nWisdom & Charisma\nLight armor, simple weapons\n\n\n@Compendium[dnd5e.classes.wZK2Q0rXB0AQo8h3]{Wizard}\nd6\nIntelligence\nIntelligence & Wisdom\nDaggers, darts, slings, quarterstaffs, light crossbows\n\n\n"},"_id":"8jxEuy0PV2HNySQC","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Barbarian","type":"class","_id":"lQ6qPkCfIyjIADY5","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.pvEzGSv71zBhaolc","description":{"value":"","additionalHitPoints":"","additionalTraits":"","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a greataxe or (b) any martial melee weapon\n(a) two handaxes or (b) any simple weapon\nAn explorer’s pack and four javelins\n","subclass":""},"subclassHeader":"Primal Paths","subclassItems":["Compendium.dnd5e.subclasses.uGuDQX9Mz3oHNHkU"]},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Bard","type":"class","_id":"WYZMEei2b0HZgWdu","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.ILvRZGEx3aXqSVUt","description":{"value":"","additionalHitPoints":"","additionalTraits":"","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a rapier, (b) a longsword, or (c) any simple weapon\n(a) a diplomat’s pack or (b) an entertainer’s pack\n(a) a lute or (b) any other musical instrument\nLeather armor and a dagger\n","subclass":""},"subclassHeader":"Bard Colleges","subclassItems":["Compendium.dnd5e.subclasses.MNvsEc4D2ccX7dQT"]},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Cleric","type":"class","_id":"7xAozaqWq3Z6YTsf","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.tlwBnN8GmqJcTgub","description":{"value":"","additionalHitPoints":"","additionalTraits":"","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a mace or (b) a warhammer (if proficient)\n(a) scale mail, (b) leather armor, or (c) chain mail (if proficient)\n(a) a light crossbow and 20 bolts or (b) any simple weapon\n(a) a priest’s pack or (b) an explorer’s pack • A shield and a holy symbol\n","subclass":""},"subclassHeader":"Divine Domains","subclassItems":["Compendium.dnd5e.subclasses.H3RYLGqCiqm8BP3q"]},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Druid","type":"class","_id":"0LfgSuMJmv7bf1JU","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.ygVYgPbJkaH0tH1N","description":{"value":"","additionalHitPoints":"","additionalTraits":"","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a wooden shield or (b) any simple weapon\n(a) a scimitar or (b) any simple melee weapon\nLeather armor, an explorer’s pack, and a druidic focus\n","subclass":""},"subclassHeader":"Druid Circles","subclassItems":["Compendium.dnd5e.subclasses.4Ae2SPZRXEVbVs0M"]},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Fighter","type":"class","_id":"ygdteO7FoWsKqfOD","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.ABEBgWyRhVlDUIfq","description":{"value":"","additionalHitPoints":"","additionalTraits":"","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) chain mail or (b) leather armor, longbow, and 20 arrows\n(a) a martial weapon and a shield or (b) two martial weapons\n(a) a light crossbow and 20 bolts or (b) two handaxes\n(a) a dungeoneer’s pack or (b) an explorer’s pack\n","subclass":""},"subclassHeader":"Martial Archetypes","subclassItems":["Compendium.dnd5e.subclasses.sprHbe7cRg9osTzf"]},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Monk","type":"class","_id":"9lcffy0dOmFDaoKr","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.6VoZrWxhOEKGYhnq","description":{"value":"","additionalHitPoints":"","additionalTraits":"","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a shortsword or (b) any simple weapon\n(a) a dungeoneer’s pack or (b) an explorer’s pack • 10 darts\n","subclass":"Three traditions of monastic pursuit are common in the monasteries scattered across the multiverse. Most monasteries practice one tradition exclusively, but a few honor the three traditions and instruct each monk according to his or her aptitude and interest. All three traditions rely on the same basic techniques, diverging as the student grows more adept. Thus, a monk need choose a tradition only upon reaching 3rd level."},"subclassHeader":"Monastic Traditions","subclassItems":["Compendium.dnd5e.subclasses.IvlpKMXX3PmW1NY2"]},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Paladin","type":"class","_id":"doLlxoEonAEiIJM7","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.gZiUvbXWLs0pOp0c","description":{"value":"","additionalHitPoints":"","additionalTraits":"","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a martial weapon and a shield or (b) two martial weapons\n(a) five javelins or (b) any simple melee weapon\n(a) a priest’s pack or (b) an explorer’s pack\nChain mail and a holy symbol\n","subclass":"Becoming a paladin involves taking vows that commit the paladin to the cause of righteousness, an active path of fighting wickedness. The final oath, taken when he or she reaches 3rd level, is the culmination of all the paladin’s training. Some characters with this class don’t consider themselves true paladins until they have reached 3rd level and made this oath. For others, the actual swearing of the oath is a formality, an official stamp on what has always been true in the paladin’s heart."},"subclassHeader":"Sacred Oaths","subclassItems":["Compendium.dnd5e.subclasses.sZ86mbX8D5PfYuhl"]},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Ranger","type":"class","_id":"nLK08pRtyaLLuB4w","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.VkRQ7glQvTWWiOCS","description":{"value":"","additionalHitPoints":"","additionalTraits":"","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) scale mail or (b) leather armor\n(a) two shortswords or (b) two simple melee weapons\n(a) a dungeoneer’s pack or (b) an explorer’s pack\nA longbow and a quiver of 20 arrows\n","subclass":"A classic expression of the ranger ideal is the Hunter."},"subclassHeader":"Ranger Archetypes","subclassItems":["Compendium.dnd5e.subclasses.uqd2q6WjVfcsaaGb"]},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Rogue","type":"class","_id":"sgs4mhWwQev8JY03","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.xEb8jmA5HlNs7xTF","description":{"value":"","additionalHitPoints":"","additionalTraits":"","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a rapier or (b) a shortsword\n(a) a shortbow and quiver of 20 arrows or (b) a shortsword\n(a) a burglar’s pack, (b) a dungeoneer’s pack, or (c) an explorer’s pack\n(a) Leather armor, two daggers, and thieves’ tools\n","subclass":"Rogues have many features in common, including their emphasis on perfecting their skills, their precise and deadly approach to combat, and their increasingly quick reflexes. But different rogues steer those talents in varying directions, embodied by the rogue archetypes. Your choice of archetype is a reflection of your focus—not necessarily an indication of your chosen profession, but a description of your preferred techniques."},"subclassHeader":"Roguish Archetypes","subclassItems":["Compendium.dnd5e.subclasses.k8iuefRorWOjb9gR"]},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Sorcerer","type":"class","_id":"mh73MffZNiVCVxJV","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.6T08zzKtmmpVwlXU","description":{"value":"","additionalHitPoints":"","additionalTraits":"","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a light crossbow and 20 bolts or (b) any simple weapon\n(a) a component pouch or (b) an arcane focus\n(a) a dungeoneer’s pack or (b) an explorer’s pack\nTwo daggers\n","subclass":"Different sorcerers claim different origins for their innate magic, such as a draconic bloodline."},"subclassHeader":"Sorcerous Origins","subclassItems":["Compendium.dnd5e.subclasses.2nadB2MBSHTQ0kcl"]},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Warlock","type":"class","_id":"nBRkCAhWQOChx5qN","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.7WJp9vhi6F6SlAFa","description":{"value":"","additionalHitPoints":"","additionalTraits":"","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a light crossbow and 20 bolts or (b) any simple weapon\n(a) a component pouch or (b) an arcane focus\n(a) a scholar’s pack or (b) a dungeoneer’s pack\nLeather armor, any simple weapon, and two daggers\n","subclass":"The beings that serve as patrons for warlocks are mighty inhabitants of other planes of existence—not gods, but almost godlike in their power. Various patrons give their warlocks access to different powers and invocations, and expect significant favors in return.\nSome patrons collect warlocks, doling out mystic knowledge relatively freely or boasting of their ability to bind mortals to their will. Other patrons bestow their power only grudgingly, and might make a pact with only one warlock. Warlocks who serve the same patron might view each other as allies, siblings, or rivals."},"subclassHeader":"Otherworldly Patrons","subclassItems":["Compendium.dnd5e.subclasses.WPFVBg589uI8iOMH"]},"sort":0,"ownership":{"default":-1},"flags":{}},{"name":"Wizard","type":"class","_id":"cmkACLWa9Hq1S6Go","title":{"show":true,"level":1},"image":{},"text":{"format":1},"video":{"controls":true,"volume":0.5},"src":null,"system":{"item":"Compendium.dnd5e.classes.wZK2Q0rXB0AQo8h3","description":{"value":"","additionalHitPoints":"","additionalTraits":"","additionalEquipment":"You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a quarterstaff or (b) a dagger\n(a) a component pouch or (b) an arcane focus\n(a) a scholar’s pack or (b) an explorer’s pack\nA spellbook\n","subclass":"The study of wizardry is ancient, stretching back to the earliest mortal discoveries of magic. It is firmly established in fantasy gaming worlds, with various traditions dedicated to its complex study.\nThe most common arcane traditions in the multiverse revolve around the schools of magic. Wizards through the ages have cataloged thousands of spells, grouping them into eight categories called schools. In some places, these traditions are literally schools. In other institutions, the schools are more like academic departments, with rival faculties competing for students and funding. Even wizards who train apprentices in the solitude of their own towers use the division of magic into schools as a learning device, since the spells of each school require mastery of different techniques."},"subclassHeader":"Arcane Traditions","subclassItems":["Compendium.dnd5e.subclasses.Ye5f3FReEnuXfi0y"]},"sort":0,"ownership":{"default":-1},"flags":{}}],"ownership":{"default":0},"flags":{"dnd5e":{"type":"chapter","position":3}},"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1660925148884,"modifiedTime":1698872328096,"lastModifiedBy":"dnd5ebuilder0000"},"folder":null,"sort":0,"_id":"gqecphEUnz4ktrQ9"} {"name":"Chapter 6: Customization Options","pages":[{"name":"Multiclassing","type":"text","title":{"show":true,"level":1},"text":{"format":1,"content":"Multiclassing allows you to gain levels in multiple classes. Doing so lets you mix the abilities of those classes to realize a character concept that might not be reflected in one of the standard class options.\nWith this rule, you have the option of gaining a level in a new class whenever you advance in level, instead of gaining a level in your current class. Your levels in all your classes are added together to determine your character level. For example, if you have three levels in wizard and two in fighter, you’re a 5th-level character.\nAs you advance in levels, you might primarily remain a member of your original class with just a few levels in another class, or you might change course entirely, never looking back at the class you left behind. You might even start progressing in a third or fourth class. Compared to a single-class character of the same level, you’ll sacrifice some focus in exchange for versatility.\nPrerequisites\nTo qualify for a new class, you must meet the ability score prerequisites for both your current class and your new one, as shown in the Multiclassing Prerequisites table. For example, a barbarian who decides to multiclass into the druid class must have both Strength and Wisdom scores of 13 or higher. Without the full training that a beginning character receives, you must be a quick study in your new class, having a natural aptitude that is reflected by higherthan-average ability scores.\n\nMulticlassing Prerequisites\n\n\n\nClass\nAbility Score Minimum\n\n\n\n\nBarbarian\nStrength 13\n\n\nBard\nCharisma 13\n\n\nCleric\nWisdom 13\n\n\nDruid\nWisdom 13\n\n\nFighter\nStrength 13 or Dexterity 13\n\n\nMonk\nDexterity 13 and Wisdom 13\n\n\nPaladin\nStrength 13 and Charisma 13\n\n\nRanger\nDexterity 13 and Wisdom 13\n\n\nRogue\nDexterity 13\n\n\nSorcerer\nCharisma 13\n\n\nWarlock\nCharisma 13\n\n\nWizard\nIntelligence 13\n\n\n\nExperience Points\nThe experience point cost to gain a level is always based on your total character level, as shown in the Character Advancement table, not your level in a particular class. So, if you are a cleric 6/fighter 1, you must gain enough XP to reach 8th level before you can take your second level as a fighter or your seventh level as a cleric.\nHit Points and Hit Dice\nYou gain the hit points from your new class as described for levels after 1st. You gain the 1st-level hit points for a class only when you are a 1st-level character.\nYou add together the Hit Dice granted by all your classes to form your pool of Hit Dice. If the Hit Dice are the same die type, you can simply pool them together. For example, both the fighter and the paladin have a d10, so if you are a paladin 5/fighter 5, you have ten d10 Hit Dice. If your classes give you Hit Dice of different types, keep track of them separately. If you are a paladin 5/cleric 5, for example, you have five d10 Hit Dice and five d8 Hit Dice.\nProficiency Bonus\nYour proficiency bonus is always based on your total character level, as shown in the @UUID[Compendium.dnd5e.rules.5LoAJLkfIYBAgWTW]{Character Advancement} table, not your level in a particular class. For example, if you are a fighter 3/rogue 2, you have the proficiency bonus of a 5th-level character, which is +3.\nProficiencies\nWhen you gain your first level in a class other than your initial class, you gain only some of new class’s starting proficiencies, as shown in the Multiclassing Proficiencies table.\n\nMulticlassing Proficiencies\n\n\n\nClass\nProficiencies Gained\n\n\n\n\n\nBarbarian\nShields, simple weapons, martial weapons\n\n\nBard\nLight armor, one skill of your choice, one musical instrument of your choice\n\n\nCleric\nLight armor, medium armor, shields\n\n\nDruid\nLight armor, medium armor, shields (druids will not wear armor or use shields made of metal)\n\n\nFighter\nLight armor, medium armor, shields, simple weapons, martial weapons\n\n\nMonk\nSimple weapons, shortswords\n\n\nPaladin\nLight armor, medium armor, shields, simple weapons, martial weapons\n\n\nRanger\nLight armor, medium armor, shields, simple weapons, martial weapons, one skill from the class’s skill list\n\n\nRogue\nLight armor, one skill from the class’s skill list, thieves’ tools\n\n\nSorcerer\n—\n\n\nWarlock\nLight armor, simple weapons\n\n\nWizard\n—\n\n\n\nClass Features\nWhen you gain a new level in a class, you get its features for that level. You don’t, however, receive the class’s starting equipment, and a few features have additional rules when you’re multiclassing: Channel Divinity, Extra Attack, Unarmored Defense, and Spellcasting.\nChannel Divinity\nIf you already have the Channel Divinity (@Compendium[dnd5e.classfeatures.YpiLQEKGalROn7iJ]{Cleric} @Compendium[dnd5e.classfeatures.8M7uOPhbTxoxxJSo]{Paladin})feature and gain a level in a class that also grants the feature, you gain the Channel Divinity effects granted by that class, but getting the feature again doesn’t give you an additional use of it. You gain additional uses only when you reach a class level that explicitly grants them to you. For example, if you are a cleric 6/paladin 4, you can use Channel Divinity twice between rests because you are high enough level in the cleric class to have more uses. Whenever you use the feature, you can choose any of the Channel Divinity effects available to you from your two classes.\nExtra Attack\nIf you gain the @Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack} class feature from more than one class, the features don’t add together. You can’t make more than two attacks with this feature unless it says you do (as the fighter’s version of @Compendium[dnd5e.classfeatures.q9g1MLXuLZyxjQMg]{Extra Attack} does). Similarly, the warlock’s eldritch invocation @Compendium[dnd5e.classfeatures.pJADgAxxefgcATWr]{Thirsting Blade} doesn’t give you additional attacks if you also have Extra Attack.\nUnarmored Defense\nIf you already have the Unarmored Defense (@Compendium[dnd5e.classfeatures.SZbsNbaxFFGwBpNK]{Barbarian} @Compendium[dnd5e.classfeatures.UAvV7N7T4zJhxdfI]{Monk}) feature, you can’t gain it again from another class.\nSpellcasting\nYour capacity for spellcasting depends partly on your combined levels in all your spellcasting classes and partly on your individual levels in those classes. Once you have the Spellcasting feature from more than one class, use the rules below. If you multiclass but have the Spellcasting feature from only one class, you follow the rules as described in that class.\nSpells Known and Prepared. You determine what spells you know and can prepare for each class individually, as if you were a single-classed member of that class. If you are a ranger 4/wizard 3, for example, you know three 1st-level ranger spells based on your levels in the ranger class. As 3rd-level wizard, you know three wizard cantrips, and your spellbook contains ten wizard spells, two of which (the two you gained when you reached 3rd level as a wizard) can be 2nd-level spells. If your Intelligence is 16, you can prepare six wizard spells from your spellbook.\nEach spell you know and prepare is associated with one of your classes, and you use the spellcasting ability of that class when you cast the spell. Similarly, a spellcasting focus, such as a holy symbol, can be used only for the spells from the class associated with that focus.\nSpell Slots. You determine your available spell slots by adding together all your levels in the bard, cleric, druid, sorcerer, and wizard classes, and half your levels (rounded down) in the paladin and ranger classes. Use this total to determine your spell slots by consulting the Multiclass Spellcaster table.\nIf you have more than one spellcasting class, this table might give you spell slots of a level that is higher than the spells you know or can prepare. You can use those slots, but only to cast your lower-level spells. If a lower-level spell that you cast, like burning hands, has an enhanced effect when cast using a higher-level slot, you can use the enhanced effect, even though you don’t have any spells of that higher level.\nFor example, if you are the aforementioned ranger 4/wizard 3, you count as a 5th-level character when determining your spell slots: you have four 1st-level slots, three 2nd-level slots, and two 3rd-level slots. However, you don’t know any 3rd-level spells, nor do you know any 2nd-level ranger spells. You can use the spell slots of those levels to cast the spells you do know—and potentially enhance their effects.\nPact Magic. If you have both the Spellcasting class feature and the Pact Magic class feature from the warlock class, you can use the spell slots you gain from the Pact Magic feature to cast spells you know or have prepared from classes with the Spellcasting class feature, and you can use the spell slots you gain from the Spellcasting class feature to cast warlock spells you know.\n\nMulticlass Spellcaster: Spell Slots per Spell Level\n\n\n\nLvl.\n1st\n2nd\n3rd\n4th\n5th\n6th\n7th\n8th\n9th\n\n\n\n\n1st\n2\n—\n—\n—\n—\n—\n—\n—\n—\n\n\n2nd\n3\n—\n—\n—\n—\n—\n—\n—\n—\n\n\n3rd\n4\n2\n—\n—\n—\n—\n—\n—\n—\n\n\n4th\n4\n3\n—\n—\n—\n—\n—\n—\n—\n\n\n5th\n4\n3\n2\n—\n—\n—\n—\n—\n—\n\n\n6th\n4\n3\n3\n—\n—\n—\n—\n—\n—\n\n\n7th\n4\n3\n3\n1\n—\n—\n—\n—\n—\n\n\n8th\n4\n3\n3\n2\n—\n—\n—\n—\n—\n\n\n9th\n4\n3\n3\n3\n1\n—\n—\n—\n—\n\n\n10th\n4\n3\n3\n3\n2\n—\n—\n—\n—\n\n\n11th\n4\n3\n3\n3\n2\n1\n—\n—\n—\n\n\n12th\n4\n3\n3\n3\n2\n1\n—\n—\n—\n\n\n13th\n4\n3\n3\n3\n2\n1\n1\n—\n—\n\n\n14th\n4\n3\n3\n3\n2\n1\n1\n—\n—\n\n\n15th\n4\n3\n3\n3\n2\n1\n1\n1\n—\n\n\n16th\n4\n3\n3\n3\n2\n1\n1\n1\n—\n\n\n17th\n4\n3\n3\n3\n2\n1\n1\n1\n1\n\n\n18th\n4\n3\n3\n3\n3\n1\n1\n1\n1\n\n\n19th\n4\n3\n3\n3\n3\n2\n1\n1\n1\n\n\n20th\n4\n3\n3\n3\n3\n2\n2\n1\n1\n\n\n","markdown":""},"_id":"icbKYJ9K1sUzmL5W","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":0,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.EUz4asMc70JCswio.JournalEntryPage.L0K9Z56X4Z499peF"}}},{"name":"Feats","type":"text","title":{"show":true,"level":1},"text":{"format":1,"content":"A feat represents a talent or an area of expertise that gives a character special capabilities. It embodies training, experience, and abilities beyond what a class provides.\nAt certain levels, your class gives you the Ability Score Improvement feature. Using the optional feats rule, you can forgo taking that feature to take a feat of your choice instead. You can take each feat only once, unless the feat's description says otherwise.\nYou must meet any prerequisite specified in a feat to take that feat. If you ever lose a feat's prerequisite, you can't use that feat until you regain the prerequisite. For example, the Grappler feat requires you to have a Strength of 13 or higher. If your Strength is reduced below 13 somehow—perhaps by a withering curse—you can't benefit from the Grappler feat until your Strength is restored.\nGrappler\nPrerequisite: Strength 13 or higher\nYou've developed the skills necessary to hold your own in close-quarters grappling. You gain the following benefits:\n\nYou have advantage on attack rolls against a creature you are grappling.\nYou can use your action to try to pin a creature grappled by you. To do so, make another grapple check. If you succeed, you and the creature are both restrained until the grapple ends.\n"},"_id":"8V1QMgTrcYbGWppo","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":0,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.F8iHVJAIMCTLClx3.JournalEntryPage.8YDjg99HOpYYbvPQ"}}}],"ownership":{"default":0},"flags":{"core":{"viewMode":2},"dnd5e":{"type":"chapter","position":6}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.2","coreVersion":"10.285","createdTime":1660925148884,"modifiedTime":1663018863337,"lastModifiedBy":"dnd5ebuilder0000"},"folder":null,"sort":0,"_id":"hgHJdp8lTiJ5TpN9"} {"name":"Chapter 4: Personality and Background","pages":[{"name":"Alignment","type":"text","title":{"show":true,"level":1},"text":{"format":1,"content":"A typical creature in the game world has an alignment, which broadly describes its moral and personal attitudes. Alignment is a combination of two factors: one identifies morality (good, evil, or neutral), and the other describes attitudes toward society and order (lawful, chaotic, or neutral). Thus, nine distinct alignments define the possible combinations.\nThese brief summaries of the nine alignments describe the typical behavior of a creature with that alignment. Individuals might vary significantly from that typical behavior, and few people are perfectly and consistently faithful to the precepts of their alignment.\nLawful good (LG) creatures can be counted on to do the right thing as expected by society. Gold dragons, paladins, and most dwarves are lawful good.\nNeutral good (NG) folk do the best they can to help others according to their needs. Many celestials, some cloud giants, and most gnomes are neutral good.\nChaotic good (CG) creatures act as their conscience directs, with little regard for what others expect. Copper dragons, many elves, and unicorns are chaotic good.\nLawful neutral (LN) individuals act in accordance with law, tradition, or personal codes. Many monks and some wizards are lawful neutral.\nNeutral (N) is the alignment of those who prefer to steer clear of moral questions and don't take sides, doing what seems best at the time. Lizardfolk, most druids, and many humans are neutral.\nChaotic neutral (CN) creatures follow their whims, holding their personal freedom above all else. Many barbarians and rogues, and some bards, are chaotic neutral.\nLawful evil (LE) creatures methodically take what they want, within the limits of a code of tradition, loyalty, or order. Devils, blue dragons, and hobgoblins are lawful evil.\nNeutral evil (NE) is the alignment of those who do whatever they can get away with, without compassion or qualms. Many drow, some cloud giants, and goblins are neutral evil.\nChaotic evil (CE) creatures act with arbitrary violence, spurred by their greed, hatred, or bloodlust. Demons, red dragons, and orcs are chaotic evil.\nAlignment in the Multiverse\nFor many thinking creatures, alignment is a moral choice. Humans, dwarves, elves, and other humanoid races can choose whether to follow the paths of good or evil, law or chaos. According to myth, the goodaligned gods who created these races gave them free will to choose their moral paths, knowing that good without free will is slavery.\nThe evil deities who created other races, though, made those races to serve them. Those races have strong inborn tendencies that match the nature of their gods. Most orcs share the violent, savage nature of the orc gods, and are thus inclined toward evil. Even if an orc chooses a good alignment, it struggles against its innate tendencies for its entire life. (Even half-orcs feel the lingering pull of the orc god's influence.)\nAlignment is an essential part of the nature of celestials and fiends. A devil does not choose to be lawful evil, and it doesn't tend toward lawful evil, but rather it is lawful evil in its essence. If it somehow ceased to be lawful evil, it would cease to be a devil.\nMost creatures that lack the capacity for rational thought do not have alignments—they are unaligned. Such a creature is incapable of making a moral or ethical choice and acts according to its bestial nature. Sharks are savage predators, for example, but they are not evil; they have no alignment."},"_id":"p1Jaf0GiuDnembBO","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":0,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.Y7UCgFzAGdCPR82z.JournalEntryPage.JKMpnUNV8tsl1dZR"}}},{"name":"Languages","type":"text","title":{"show":true,"level":1},"text":{"format":1,"content":"Your race indicates the languages your character can speak by default, and your background might give you access to one or more additional languages of your choice. Note these languages on your character sheet.\nChoose your languages from the Standard Languages table, or choose one that is common in your campaign. With your GM's permission, you can instead choose a language from the Exotic Languages table or a secret language, such as thieves' cant or the tongue of druids.\nSome of these languages are actually families of languages with many dialects. For example, the Primordial language includes the Auran, Aquan, Ignan, and Terran dialects, one for each of the four elemental planes. Creatures that speak different dialects of the same language can communicate with one another.\n\nStandard Languages\n\n\n\nLanguage\nTypical Speakers\nScript\n\n\n\n\nCommon\nHumans\nCommon\n\n\nDwarvish\nDwarves\nDwarvish\n\n\nElvish\nElves\nElvish\n\n\nGiant\nOgres, giants\nDwarvish\n\n\nGnomish\nGnomes\nDwarvish\n\n\nGoblin\nGoblinoids\nDwarvish\n\n\nHalfling\nHalflings\nCommon\n\n\nOrc\nOrcs\nDwarvish\n\n\n\n\nExotic Languages\n\n\n\nLanguage\nTypical Speakers\nScript\n\n\n\n\nAbyssal\nDemons\nInfernal\n\n\nCelestial\nCelestials\nCelestial\n\n\nDraconic\nDragons, dragonborn\nDraconic\n\n\nDeep Speech\nAboleths, cloakers\n—\n\n\nInfernal\nDevils\nInfernal\n\n\nPrimordial\nElementals\nDwarvish\n\n\nSylvan\nFey creatures\nElvish\n\n\nUndercommon\nUnderworld traders\nElvish\n\n\n"},"_id":"jcpZgjk77lUW7OkM","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":100000,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.YokpQUkuJwUB0wpy.JournalEntryPage.iBa46iYinz4U6SF7"}}},{"name":"Inspiration","type":"text","title":{"show":true,"level":1},"text":{"format":1,"content":"Inspiration is a rule the game master can use to reward you for playing your character in a way that's true to his or her personality traits, ideal, bond, and flaw. By using inspiration, you can draw on your personality trait of compassion for the downtrodden to give you an edge in negotiating with the Beggar Prince. Or inspiration can let you call on your bond to the defense of your home village to push past the effect of a spell that has been laid on you.\nGaining Inspiration\nYour GM can choose to give you inspiration for a variety of reasons. Typically, GMs award it when you play out your personality traits, give in to the drawbacks presented by a flaw or bond, and otherwise portray your character in a compelling way. Your GM will tell you how you can earn inspiration in the game.\nYou either have inspiration or you don't—you can't stockpile multiple “inspirations” for later use.\nUsing Inspiration\nIf you have inspiration, you can expend it when you make an attack roll, saving throw, or ability check. Spending your inspiration gives you advantage on that roll.\nAdditionally, if you have inspiration, you can reward another player for good roleplaying, clever thinking, or simply doing something exciting in the game. When another player character does something that really contributes to the story in a fun and interesting way, you can give up your inspiration to give that character inspiration."},"_id":"k7RmdfUGl7aQKU5I","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":300000,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.nH479uePVw8HGkLD.JournalEntryPage.I9LT01lX0cd97gWz"}}},{"name":"Backgrounds","type":"text","title":{"show":true,"level":1},"text":{"format":1,"content":"Every story has a beginning. Your character’s background reveals where you came from, how you became an adventurer, and your place in the world. Your fighter might have been a courageous knight or a grizzled soldier. Your wizard could have been a sage or an artisan. Your rogue might have gotten by as a guild thief or commanded audiences as a jester.\nChoosing a background provides you with important story cues about your character’s identity. The most important question to ask about your background is what changed? Why did you stop doing whatever your background describes and start adventuring? Where did you get the money to purchase your starting gear, or, if you come from a wealthy background, why don’t you have more money? How did you learn the skills of your class? What sets you apart from ordinary people who share your background?\nThe sample background presented here provides both concrete benefits (features, proficiencies, and languages) and roleplaying suggestions.\nProficiencies\nEach background gives a character proficiency in two skills (described in @UUID[Compendium.dnd5e.rules.0AGfrwZRzSG0vNKb]{Chapter 7: Using Ability Scores}).\nIn addition, most backgrounds give a character proficiency with one or more tools (detailed in @UUID[Compendium.dnd5e.rules.BYFd9hiJGo9L5aOM]{Chapter 5: Equipment}).\nIf a character would gain the same proficiency from two different sources, he or she can choose a different proficiency of the same kind (skill or tool) instead.\nLanguages\nSome backgrounds also allow characters to learn additional languages beyond those given by race. See @UUID[.jcpZgjk77lUW7OkM]{Languages}.\nEquipment\nEach background provides a package of starting equipment. If you use the optional rule to spend coin on gear, you do not receive the starting equipment from your background.\nSuggested Characteristics\nA background contains suggested personal characteristics based on your background. You can pick characteristics, roll dice to determine them randomly, or use the suggestions as inspiration for characteristics of your own creation.\nCustomizing a Background\nYou might want to tweak some of the features of a background so it better fits your character or the campaign setting. To customize a background, you can replace one feature with any other one, choose any two skills, and choose a total of two tool proficiencies or languages from the sample backgrounds. You can either use the equipment package from your background or spend coin on gear as described in the equipment section. (If you spend coin, you can’t also take the equipment package suggested for your class.) Finally, choose two personality traits, one ideal, one bond, and one flaw. If you can’t find a feature that matches your desired background, work with your GM to create one.\nAcolyte\n@Compendium[dnd5e.backgrounds.IgJkSnLiLJOWH7eK]{Acolyte}","markdown":""},"_id":"yVqTYrqULTs2JCV8","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":400000,"ownership":{"default":-1},"flags":{"core":{"sourceId":"Compendium.dnd5e.rules.uTHSGujAj4E8zwFx.JournalEntryPage.KBMUir6XnXUI8Jot"}}}],"ownership":{"default":0},"flags":{"core":{"viewMode":2},"dnd5e":{"type":"chapter","position":4}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.2","coreVersion":"10.285","createdTime":1660925148884,"modifiedTime":1663018863337,"lastModifiedBy":"dnd5ebuilder0000"},"folder":null,"sort":0,"_id":"kWXplnmp5JXCo84x"} {"name":"Chapter 2: Races","pages":[{"name":"Races","type":"text","title":{"show":false,"level":1},"text":{"format":1,"content":"Racial Traits\nThe description of each race includes racial traits that are common to members of that race. The following entries appear among the traits of most races.\nAbility Score Increase\nEvery race increases one or more of a character’s ability scores.\nAge\nThe age entry notes the age when a member of the race is considered an adult, as well as the race’s expected lifespan. This information can help you decide how old your character is at the start of the game. You can choose any age for your character, which could provide an explanation for some of your ability scores. For example, if you play a young or very old character, your age could explain a particularly low Strength or Constitution score, while advanced age could account for a high Intelligence or Wisdom.\nAlignment\nMost races have tendencies toward certain alignments, described in this entry. These are not binding for player characters, but considering why your dwarf is chaotic, for example, in defiance of lawful dwarf society can help you better define your character.\nSize\nCharacters of most races are Medium, a size category including creatures that are roughly 4 to 8 feet tall. Members of a few races are Small (between 2 and 4 feet tall), which means that certain rules of the game affect them differently. The most important of these rules is that Small characters have trouble wielding heavy weapons, as explained in @UUID[Compendium.dnd5e.rules.BYFd9hiJGo9L5aOM]{Chapter 5: Equipment}.\nSpeed\nYour speed determines how far you can move when traveling (@UUID[Compendium.dnd5e.rules.aYmUMcQfSIqYWpKk]{Chapter 8: Adventuring}) and fighting (@UUID[Compendium.dnd5e.rules.6PfYpwxkdQkyS6b7]{Chapter 9: Combat}).\nLanguages\nBy virtue of your race, your character can speak, read, and write certain languages.\nSubraces\nSome races have subraces. Members of a subrace have the traits of the parent race in addition to the traits specified for their subrace. Relationships among subraces vary significantly from race to race and world to world.\nDwarf\n@Compendium[dnd5e.races.6N31WSez2szqQcIQ]{Dwarf}\n@Compendium[dnd5e.races.UQiRQUTBcsz8gZU1]{Hill Dwarf}\nElf\n@Compendium[dnd5e.races.rAGnsfgw3ZqAme1v]{Elf}\n@Compendium[dnd5e.races.A69KxdH1renVPrQV]{High Elf}\nHalfling\n@Compendium[dnd5e.races.GH2dNne2bt1NjcJk]{Halfling}\n@Compendium[dnd5e.races.ZgYBjYYfiUstQD6f]{Lightfoot}\nHuman\n@Compendium[dnd5e.races.ydP3QzCmur55mtY2]{Human}\nDragonborn\n@Compendium[dnd5e.races.K4DNDcR6vngbp0pf]{Dragonborn}\nGnome\n@Compendium[dnd5e.races.kmRnMETG5hB9Bmwu]{Gnome}\n@Compendium[dnd5e.races.TZtarkKs6cgGD7z2]{Rock Gnome}\nHalf-Elf\n@Compendium[dnd5e.races.Hye5IZwPOSwV0qRR]{Half-Elf}\nHalf-Orc\n@Compendium[dnd5e.races.n5L000DkNBU6h2oJ]{Half-Orc}\nTiefling\n@Compendium[dnd5e.races.aHTokZ151W0ASSmo]{Tiefling}","markdown":""},"_id":"qiH6zRDM96meMz8Y","image":{},"video":{"controls":true,"volume":0.5},"src":null,"system":{},"sort":0,"ownership":{"default":-1},"flags":{}}],"ownership":{"default":0},"flags":{"dnd5e":{"type":"chapter","position":2}},"_stats":{"systemId":"dnd5e","systemVersion":"2.0.2","coreVersion":"10.285","createdTime":1660925148884,"modifiedTime":1663018863337,"lastModifiedBy":"dnd5ebuilder0000"},"folder":null,"sort":0,"_id":"m2K2xsTy8w0WFuoJ"} diff --git a/packs/spells.db b/packs/spells.db index 10f5252c3b..db37f9d551 100644 --- a/packs/spells.db +++ b/packs/spells.db @@ -1,319 +1,319 @@ -{"_id":"04nMsTWkIFvkbXlY","name":"Polymorph","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell transforms a creature that you can see within range into a new form. An unwilling creature must make a Wisdom saving throw to avoid the effect. The spell has no effect on a Shapechanger or a creature with 0 Hit Points.The transformation lasts for the Duration, or until the target drops to 0 Hit Points or dies. The new form can be any beast whose Challenge rating is equal to or less than the target's (or the target's level, if it doesn't have a challenge rating). The target's game statistics, including mental Ability Scores, are replaced by the Statistics of the chosen beast. It retains its Alignment and personality.The target assumes the Hit Points of its new form. When it reverts to its normal form, the creature returns to the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked Unconscious.The creature is limited in the Actions it can perform by the Nature of its new form, and it can't speak, cast Spells, or take any other action that requires hands or speech.The target's gear melds into the new form. The creature can't activate, use, wield, or otherwise benefit from any of its Equipment.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":4,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A caterpillar cocoon","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/energy-stream-link-large-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234052,"modifiedTime":1671220968303,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"0xmXiPiuYws1OGcX","name":"Hunter's Mark","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You choose a creature you can see within range and mystically mark it as your quarry. Until the spell ends, you deal an extra {@dice 1d6} damage to the target whenever you hit it with a weapon attack, and you have advantage on any Wisdom (Perception) or Wisdom (Survival) check you make to find it. If the target drops to 0 hit points before this spell ends, you can use a bonus action on a subsequent turn of yours to mark a new creature.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-small-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234053,"modifiedTime":1671220968318,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"13uVuBQP6VaiSPvC","name":"Water Breathing","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell grants up to ten willing creatures you can see within range the ability to breathe underwater until the spell ends. Affected creatures also retain their normal mode of respiration.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A short reed or piece of straw","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/water/pseudopod-swirl-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234054,"modifiedTime":1671220968323,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"15Fa6q1nH27XfbR8","name":"Dispel Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose one creature, object, or magical effect within range. Any spell of 3rd level or lower on the target ends. For each spell of 4th level or higher on the target, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a successful check, the spell ends.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you automatically end the effects of a spell on the target if the spell's level is equal to or less than the level of the spell slot you used.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/skills/melee/strike-blade-knife-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234054,"modifiedTime":1671220968331,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"1ADstb0Xec6HHRcU","name":"Resilient Sphere","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A sphere of shimmering force encloses a creature or object of Large size or smaller within range. An unwilling creature must make a Dexterity saving throw. On a failed save, the creature is enclosed for the Duration.Nothing—not physical Objects, energy, or other spell effects—can pass through the barrier, in or out, though a creature in the sphere can breathe there. The sphere is immune to all damage, and a creature or object inside can't be damaged by attacks or Effects originating from outside, nor can a creature inside the sphere damage anything outside it.The sphere is weightless and just large enough to contain the creature or object inside. An enclosed creature can use its action to push against the sphere's walls and thus roll the sphere at up to half the creature's speed. Similarly, the globe can be picked up and moved by other creatures.A Disintegrate spell targeting the globe destroys it without harming anything inside it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":4,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A hemispherical piece of clear crystal and a matching hemispherical piece of gum arabic","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-large-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234055,"modifiedTime":1671220968343,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"1Drt0SHxbEAHxprN","name":"Conjure Animals","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You summon fey spirits that take the form of beasts and appear in unoccupied spaces that you can see within range. Choose one of the following options for what appears:\n\nOne beast of challenge rating 2 or lower\nTwo beasts of challenge rating 1 or lower\nFour beasts of challenge rating 1/2 or lower\nEight beasts of challenge rating 1/4 or lower\nEach beast is also considered fey, and it disappears when it drops to 0 hit points or when the spell ends.\n\nThe summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which has its own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions.Higher Levels. When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 5th-level slot, three times as many with a 7th-level.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/wolf-paw-glow-large-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234055,"modifiedTime":1671220968359,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"1LkZvINag7KqBmDR","name":"Conjure Elemental","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You call forth an elemental servant. Choose an area of air, earth, fire, or water that fills a 10-foot cube within range. An elemental of challenge rating 5 or lower appropriate to the area you chose appears in an unoccupied space within 10 feet of it. For example, a fire elemental emerges from a bonfire, and an earth elemental rises up from the ground. The elemental disappears when it drops to 0 hit points or when the spell ends.The elemental is friendly to you and your companions for the duration. Roll initiative for the elemental, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the elemental, it defends itself from hostile creatures but otherwise takes no actions.If your concentration is broken, the elemental doesn't disappear. Instead, you lose control of the elemental, it becomes hostile toward you and your companions, and it might attack. An uncontrolled elemental can't be dismissed by you, and it disappears 1 hour after you summoned it.Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the challenge rating increases by 1 for each slot level above 5th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":"an area of air, earth, fire, or water that fills a 10-foot cube within range"},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Burning incense for air, soft clay for earth, sulfur and phosphorus for fire, or water and sand for water.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234056,"modifiedTime":1671220968382,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"1N8dDMMgZ1h1YJ3B","name":"Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An eyelash encased in gum arabic","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234056,"modifiedTime":1671220968430,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"1RzxKZzkQOoioxPj","name":"Glibness","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Until the spell ends, when you make a Charisma check, you can replace the number you roll with a 15. Additionally, no matter what you say, magic that would determine if you are telling the truth indicates that you are being truthful.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234057,"modifiedTime":1671220968441,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"1nhIxh0DsJsntCfj","name":"Knock","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose an object that you can see within range. The object can be a door, a box, a chest, a set of Manacles, a padlock, or another object that contains a mundane or magical means that prevents access.A target that is held shut by a mundane lock or that is stuck or barred becomes unlocked, unstuck, or unbarred. If the object has multiple locks, only one of them is unlocked.If you choose a target that is held shut with Arcane Lock, that spell is suppressed for 10 minutes, during which time the target can be opened and shut normally.When you cast the spell, a loud knock, audible from as far away as 300 feet, emanates from the target object.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-triangle-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234057,"modifiedTime":1671220968471,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"22dPoeXfaaAv4K3h","name":"Hellish Rebuke","ownership":{"default":0},"type":"spell","system":{"description":{"value":"When you are damaged by a creature within 60 feet of you that you can see, you point your finger, and the creature that damaged you is momentarily surrounded by hellish flames. The creature must make a Dexterity saving throw. It takes 2d10 fire damage on a failed save, or half as much damage on a successful one.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d10 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":"Which you take in response to being damaged by a creature within 60 feet of you that you can see"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d10"}},"sort":0,"flags":{},"img":"icons/magic/control/fear-fright-shadow-monster-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234058,"modifiedTime":1671220968514,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"2IWiZAJtOGDoKjiz","name":"Gaseous Form","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You transform a willing creature you touch, along with everything it's wearing and carrying, into a misty cloud for the duration. The spell ends if the creature drops to 0 hit points. An incorporeal creature isn't affected.While in this form, the target's only method of movement is a flying speed of 10 feet. The target can enter and occupy the space of another creature. The target has resistance to nonmagical damage, and it has advantage on Strength, Dexterity, and Constitution saving throws. The target can pass through small holes, narrow openings, and even mere cracks, though it treats liquids as though they were solid surfaces. The target can't fall and remains hovering in the air even when stunned or otherwise incapacitated.While in the form of a misty cloud, the target can't talk or manipulate objects, and any objects it was carrying or holding can't be dropped, used, or otherwise interacted with. The target can't attack or cast spells.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of gauze and a wisp of smoke","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-dense-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234058,"modifiedTime":1671220968521,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"2RC0EyvBLPH88PZF","name":"Sunbeam","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A beam of brilliant light flashes out from your hand in a 5-foot-wide, 60-foot-long line. Each creature in the line must make a Constitution saving throw. On a failed save, a creature takes 6d8 radiant damage and is Blinded until your next turn. On a successful save, it takes half as much damage and isn't blinded by this spell. Undead and oozes have disadvantage on this saving throw.You can create a new line of radiance as your action on any turn until the spell ends.For the Duration, a mote of brilliant radiance shines in your hand. It sheds bright light in a 30-foot radius and dim light for an additional 30 feet. This light is sunlight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":6,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A magnifying glass","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/beams-rays-orange-purple-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234059,"modifiedTime":1671220968531,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"2VXGS206tuChoeXy","name":"Speak with Plants","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You imbue Plants within 30 feet of you with limited sentience and animation, giving them the ability to communicate with you and follow your simple commands. You can question plants about events in the spell's area within the past day, gaining information about creatures that have passed, weather, and other circumstances.You can also turn difficult terrain caused by Plant Growth (such as thickets and undergrowth) into ordinary terrain that lasts for the Duration. Or you can turn ordinary terrain where Plants are present into difficult terrain that lasts for the duration, causing vines and branches to hinder pursuers, for example.Plants might be able to perform other tasks on your behalf, at the DM's discretion. The spell doesn't enable Plants to uproot themselves and move about, but they can freely move branches, tendrils, and stalks.If a plant creature is in the area, you can communicate with it as if you shared a Common language, but you gain no magical ability to influence it.This spell can cause the plants created by the Entangle spell to release a Restrained creature.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234060,"modifiedTime":1671220968535,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"2skfDtglk1mGrb3l","name":"Detect Poison and Disease","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you can sense the presence and location of poisons, poisonous creatures, and diseases within 30 feet of you. You also identify the kind of poison, poisonous creature, or disease in each case.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A yew leaf","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-teal-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234060,"modifiedTime":1671220968539,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"2yHXEcrRbadZDr5M","name":"Heat Metal","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a manufactured metal object, such as a metal weapon or a suit of heavy or medium metal armor, that you can see within range. You cause the object to glow red-hot. Any creature in physical contact with the object takes 2d8 fire damage when you cast the spell. Until the spell ends, you can use a bonus action on each of your subsequent turns to cause this damage again.If a creature is holding or wearing the object and takes the damage from it, the creature must succeed on a Constitution saving throw or drop the object if it can. If it doesn't drop the object, it has disadvantage on attack rolls and ability checks until the start of your next turn.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","fire"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A piece of iron and a flame.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-large-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234061,"modifiedTime":1671220968543,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"30ZgXtijJVCxQk5N","name":"Enthrall","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You weave a distracting string of words, causing creatures of your choice that you can see within range and that can hear you to make a Wisdom saving throw. Any creature that can't be Charmed succeeds on this saving throw automatically, and if you or your companions are fighting a creature, it has advantage on the save. On a failed save, the target has disadvantage on Wisdom (Perception) checks made to perceive any creature other than you until the spell ends or until the target can no longer hear you. The spell ends if you are Incapacitated or can no longer speak.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234061,"modifiedTime":1671220968552,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"34ddoYIrnOZ2GFYi","name":"Mass Healing Word","ownership":{"default":0},"type":"spell","system":{"description":{"value":"As you call out words of restoration, up to six creatures of your choice that you can see within range regain hit points equal to 1d4 + your spellcasting ability modifier. This spell has no effect on undead or constructs.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the healing increases by 1d4 for each slot level above 3rd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":6,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d4"}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-flame-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234062,"modifiedTime":1671220968556,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"35j2QIMmIk6aEdxj","name":"Power Word Stun","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You speak a word of power that can overwhelm the mind of one creature you can see within range, leaving it dumbfounded. If the target has 150 Hit Points or fewer, it is Stunned. Otherwise, the spell has no effect.The stunned target must make a Constitution saving throw at the end of each of its turns. On a successful save, this stunning effect ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":8,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-chains-ropes-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234062,"modifiedTime":1671220968561,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3Lo9boi7P2ro6QV4","name":"Hold Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a humanoid that you can see within range. The target must succeed on a Wisdom saving throw or be paralyzed for the duration. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional humanoid for each slot level above 2nd. The humanoids must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small, straight piece of iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-chains-ropes-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234063,"modifiedTime":1671220968566,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3MYDjS6k9IYL0aTj","name":"Calm Emotions","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to suppress strong emotions in a group of people. Each humanoid in a 20-foot-radius sphere centered on a point you choose within range must make a Charisma saving throw; a creature can choose to fail this saving throw if it wishes. If a creature fails its saving throw, choose one of the following two effects. You can suppress any effect causing a target to be charmed or frightened. When this spell ends, any suppressed effect resumes, provided that its duration has not expired in the meantime.Alternatively, you can make a target indifferent about creatures of your choice that it is hostile toward. This indifference ends if the target is attacked or harmed by a spell or if it witnesses any of its friends being harmed. When the spell ends, the creature becomes hostile again, unless the DM rules otherwise.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234063,"modifiedTime":1671220968584,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3OZnNhunvRtPOQmH","name":"Identify","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You choose one object that you must touch throughout the casting of the spell. If it is a magic item or some other magic-imbued object, you learn its properties and how to use them, whether it requires attunement to use, and how many charges it has, if any. You learn whether any spells are affecting the item and what they are. If the item was created by a spell, you learn which spell created it.If you instead touch a creature throughout the casting, you learn what spells, if any, are currently affecting it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A pearl worth at least 100gp and an owl feather","consumed":false,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-small-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234064,"modifiedTime":1671220968588,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"3okM6Gn63zzEULkz","name":"Wish","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Wish is the mightiest spell a mortal creature can cast. By simply speaking aloud, you can alter the very foundations of reality in accord with your desires.\n The basic use of this spell is to duplicate any other spell of 8th level or lower. You don't need to meet any requirements in that spell, including costly Components. The spell simply takes effect.\n Alternatively, you can create one of the following Effects of your choice:\n \n You create one object of up to 25,000 gp in value that isn't a magic item. The object can be no more than 300 feet in any dimension, and it appears in an unoccupied space you can see on the ground.\n You allow up to twenty creatures that you can see to regain all hit points, and you end all Effects on them described in the Greater Restoration spell.\n You grant up to ten creatures that you can see resistance to a damage type you choose.\n You grant up to ten creatures you can see immunity to a single spell or other magical effect for 8 hours. For instance, you could make yourself and all your companions immune to a lich's life drain attack.\n You undo a single recent event by forcing a reroll of any roll made within the last round (including your last turn). Reality reshapes itself to accommodate the new result. For example, a wish spell could undo an opponent's successful save, a foe's critical hit, or a friend's failed save. You can force the reroll to be made with advantage or disadvantage, and you can choose whether to use the reroll or the original roll.\n \n You might be able to achieve something beyond the scope of the above examples. State your wish to the DM as precisely as possible. The DM has great latitude in ruling what occurs in such an instance; the greater the wish, the greater the likelihood that something goes wrong. This spell might simply fail, the effect you desire might only be partly achieved, or you might suffer some unforeseen consequence as a result of how you worded the wish. For example, wishing that a villain were dead might propel you forward in time to a period when that villain is no longer alive, effectively removing you from the game. Similarly, wishing for a legendary magic item or artifact might instantly transport you to the presence of the item's current owner.\n The stress of casting this spell to produce any effect other than duplicating another spell weakens you. After enduring that stress, each time you cast a spell until you finish a Long Rest, you take 1d10 necrotic damage per level of that spell. This damage can't be reduced or prevented in any way. In addition, your Strength drops to 3, if it isn't 3 or lower already, for 2d4 days. For each of those days that you spend Resting and doing nothing more than light activity, your remaining recovery time decreases by 2 days. Finally, there is a 33 percent chance that you are unable to cast wish ever again if you suffer this stress.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":9,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234064,"modifiedTime":1671220968595,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"41JIhpDyM9Anm7cs","name":"Magic Missile","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create three glowing darts of magical force. Each dart hits a creature of your choice that you can see within range. A dart deals 1d4 + 1 force damage to its target. The darts all strike simultaneously, and you can direct them to hit one creature or several.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the spell creates one more dart for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + 1","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-meteor-salvo-light-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234065,"modifiedTime":1671220968604,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"42O2aNBW7vK90gTL","name":"Planar Binding","ownership":{"default":0},"type":"spell","system":{"description":{"value":"With this spell, you attempt to bind a Celestial, an elemental, a fey, or a fiend to your service. The creature must be within range for the entire casting of the spell. (Typically, the creature is first summoned into the center of an inverted Magic Circle in order to keep it trapped while this spell is cast.) At the completion of the casting, the target must make a Charisma saving throw. On a failed save, it is bound to serve you for the Duration. If the creature was summoned or created by another spell, that spell's duration is extended to match the duration of this spell.A bound creature must follow your instructions to the best of its ability. You might command the creature to accompany you on an adventure, to guard a location, or to deliver a message. The creature obeys the letter of your instructions, but if the creature is hostile to you, it strives to twist your words to achieve its own objectives. If the creature carries out your instructions completely before the spell ends, it travels to you to report this fact if you are on the same plane of existence. If you are on a different plane of existence, it returns to the place where you bound it and remains there until the spell ends.At Higher Levels. When you cast this spell using a spell slot of a higher level, the Duration increases to 10 days with a 6th-level slot, to 30 days with a 7th-level slot, to 180 days with an 8th-level slot, and to a year and a day with a 9th-level spell slot.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":5,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A jewel worth at least 1,000gp, which the spell consumes","consumed":true,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234065,"modifiedTime":1671220968610,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"4H6YgYdKgnX6ZQ8M","name":"Acid Arrow","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A shimmering green arrow streaks toward a target within range and bursts in a spray of acid. Make a ranged spell Attack against the target. On a hit, the target takes 4d4 acid damage immediately and 2d4 acid damage at the end of its next turn. On a miss, the arrow splashes the target with acid for half as much of the initial damage and no damage at the end of its next turn.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage (both initial and later) increases by 1d4 for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d4","acid"]],"versatile":"2d4"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"powdered rhubarb leaf and an adder's stomach","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d4"}},"sort":0,"flags":{},"img":"icons/magic/acid/projectile-bolts-salvo-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234066,"modifiedTime":1671220968622,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"4dSvfvTy2ZIJ3K4k","name":"Comprehend Languages","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you understand the literal meaning of any spoken language that you hear. You also understand any written language that you see, but you must be touching the surface on which the words are written. It takes about 1 minute to read one page of text.This spell doesn't decode secret messages in a text or a glyph, such as an arcane sigil, that isn't part of a written language.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A pinch of soot and salt","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-triangle-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234066,"modifiedTime":1671220968631,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"4smlOvpF5AQHcyg1","name":"Contingency","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a spell of 5th level or lower that you can cast, that has a casting time of 1 action, and that can target you. You cast that spell—called the contingent spell—as part of casting contingency, expending spell slots for both, but the contingent spell doesn't come into effect. Instead, it takes effect when a certain circumstance occurs. You describe that circumstance when you cast the two spells. For example, a contingency cast with water breathing might stipulate that water breathing comes into effect when you are engulfed in water or a similar liquid.The contingent spell takes effect immediately after the circumstance is met for the first time, whether or not you want it to. and then contingency ends.The contingent spell takes effect only on you, even if it can normally target others. You can use only one contingency spell at a time. If you cast this spell again, the effect of another contingency spell on you ends. Also, contingency ends on you if its material component is ever not on your person.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"10","units":"day"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A statuette of yourself carved from ivory and decorated with gems worth at least 1,500 gp.","consumed":false,"cost":1500,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-pentagon-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234067,"modifiedTime":1671220968635,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"4v2H3hHb3Ph9XLNd","name":"Augury","ownership":{"default":0},"type":"spell","system":{"description":{"value":"By casting gem-inlaid sticks, rolling dragon bones, laying out ornate cards, or employing some other divining tool, you receive an omen from an otherworldly entity about the results of a specific course of action that you plan to take within the next 30 minutes. The DM chooses from the following possible omens:\n\nWeal, for good results\nWoe, for bad results\nWeal and woe, for both good and bad results\nNothing, for results that aren't especially good or bad\n\nThe spell doesn't take into account any possible circumstances that might change the outcome, such as the casting of additional spells or the loss or gain of a companion.If you cast the spell two or more times before completing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get a random reading. The DM makes this roll in secret.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"Specially marked sticks, bones, or similar tokens worth at least 25 gp","consumed":false,"cost":25,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234067,"modifiedTime":1671220968640,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5OGFdJw35QXp6mh6","name":"Mass Suggestion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You suggest a course of activity (limited to a sentence or two) and magically influence up to twelve creatures of your choice that you can see within range and that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act automatically negates the effect of the spell.Each target must make a Wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do.You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a group of soldiers give all their money to the first beggar they meet. If the condition isn't met before the spell ends, the activity isn't performed.If you or any of your companions damage a creature affected by this spell, the spell ends for that creature.At Higher Levels. When you cast this spell using a 7th-level spell slot, the duration is 10 days. When you use an 8th-level spell slot, the duration is 30 days. When you use a 9th-level spell slot, the duration is a year and a day.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":12,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":6,"school":"enc","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A snake's tongue and either a bit of honeycomb or a drop of sweet oil","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-large-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234068,"modifiedTime":1671220968644,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5SuJewoa1CRWaj1F","name":"Burning Hands","ownership":{"default":0},"type":"spell","system":{"description":{"value":"As you hold your hands with thumbs touching and fingers spread, a thin sheet of flames shoots forth from your outstretched fingertips. Each creature in a 15-foot cone must make a Dexterity saving throw. A creature takes 3d6 fire damage on a failed save, or half as much damage on a successful one.The fire ignites any flammable objects in the area that aren't being worn or carried.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-dense-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234069,"modifiedTime":1671220968648,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5VhqFROQYjr1P9lp","name":"Silence","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the Duration, no sound can be created within or pass through a 20-foot-radius sphere centered on a point you choose within range. Any creature or object entirely inside the sphere is immune to thunder damage, and creatures are Deafened while entirely inside it. Casting a Spell that includes a verbal component is impossible there.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-triangle-magenta.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234069,"modifiedTime":1671220968651,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5e1xTohkzqFqbYH4","name":"Flame Strike","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A vertical column of divine fire roars down from the heavens in a location you specify. Each creature in a 10-foot-radius, 40-foot-high Cylinder centered on a point within range must make a Dexterity saving throw. A creature takes 4d6 fire damage and 4d6 radiant damage on a failed save, or half as much damage on a successful one.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the fire damage or the radiant damage (your choice) increases by 1d6 for each slot level above 5th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"cylinder"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","radiant"],["4d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of sulfur","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-red-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234070,"modifiedTime":1671220968655,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"5eh2HFbS13078Y3H","name":"Find Steed","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You summon a spirit that assumes the form of an unusually intelligent, strong, and loyal steed, creating a long-lasting bond with it. Appearing in an unoccupied space within range, the steed takes on a form that you choose, such as a warhorse, a pony, a camel, an elk, or a mastiff. (Your DM might allow other animals to be summoned as steeds.) The steed has the statistics of the chosen form, though it is a celestial, fey, or fiend (your choice) instead of its normal type. Additionally, if your steed has an Intelligence of 5 or less, its Intelligence becomes 6, and it gains the ability to understand one language of your choice that you speak.Your steed serves you as a mount, both in combat and out, and you have an instinctive bond with it that allows you to fight as a seamless unit. While mounted on your steed, you can make any spell you cast that targets only you also target your steed.When the steed drops to 0 hit points, it disappears, leaving behind no physical form. You can also dismiss your steed at any time as an action, causing it to disappear. In either case, casting this spell again summons the same steed, restored to its hit point maximum.While your steed is within 1 mile of you, you can communicate with it telepathically.You can't have more than one steed bonded by this spell at a time. As an action, you can release the steed from its bond at any time, causing it to disappear.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/wolf-paw-glow-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234070,"modifiedTime":1671220968659,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"64D1gNZ4hx7SWG2x","name":"Forbiddance","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a ward against magical travel that protects up to 40,000 square feet of floor space to a height of 30 feet above the floor. For the Duration, creatures can't teleport into the area or use portals, such as those created by the gate spell, to enter the area. The spell proofs the area against Planar Travel, and therefore prevents creatures from accessing the area by way of the Astral Plane, Ethereal Plane, Feywild, Shadowfell, or the Plane Shift spell.In addition, the spell damages types of creatures that you choose when you cast it. Choose one or more of the following: Celestials, Elementals, fey, Fiends, and Undead. When a chosen creature enters the spell's area for the first time on a turn or starts its turn there, the creature takes 5d10 radiant or necrotic damage (your choice when you cast this spell).When you cast this spell, you can designate a password. A creature that speaks the password as it enters the area takes no damage from the spell.The spell's area can't overlap with the area of another forbiddance spell. If you cast forbiddance every day for 30 days in the same location, the spell lasts until it is dispelled, and the material Components are consumed on the last casting.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"1","units":"day"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A sprinkle of holy water, rare incense, and powdered ruby worth at least 1000gp","consumed":false,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234071,"modifiedTime":1671220968662,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"64uo4fHriHLjRUrX","name":"Meld into Stone","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You step into a stone object or surface large enough to fully contain your body, melding yourself and all the Equipment you carry with the stone for the Duration. Using your Movement, you step into the stone at a point you can touch. Nothing of your presence remains visible or otherwise detectable by nonmagical Senses.While merged with the stone, you can't see what occurs outside it, and any Wisdom (Perception) checks you make to hear sounds outside it are made with disadvantage. You remain aware of the passage of time and can cast Spells on yourself while merged in the stone. You can use your Movement to leave the stone where you entered it, which ends the spell. You otherwise can't move.Minor physical damage to the stone doesn't harm you, but its partial destruction or a change in its shape (to the extent that you no longer fit within it) expels you and deals 6d6 bludgeoning damage to you. The stone's complete destruction (or Transmutation into a different substance) expels you and deals 50 bludgeoning damage to you. If expelled, you fall prone in an unoccupied space closest to where you first entered.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6","bludgeoning"]],"versatile":"50"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/earth/projectile-spiked-stone-boulder-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234071,"modifiedTime":1671220968669,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"6HEEhLdJz32TL4Js","name":"Foresight","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a willing creature and bestow a limited ability to see into the immediate future. For the Duration, the target can't be surprised and has advantage on Attack rolls, Ability Checks, and Saving Throws. Additionally, other creatures have disadvantage on attack rolls against the target for the duration.This spell immediately ends if you cast it again before its Duration ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":9,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A hummingbird feather","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-large-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234072,"modifiedTime":1671220968678,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"6g3WLOZ2u0EbaLAd","name":"Hypnotic Pattern","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a twisting pattern of colors that weaves through the air inside a 30-foot cube within range. The pattern appears for a moment and vanishes. Each creature in the area who sees the pattern must make a Wisdom saving throw. On a failed save, the creature becomes charmed for the duration. While charmed by this spell, the creature is incapacitated and has a speed of 0.The spell ends for an affected creature if it takes any damage or if someone else uses an action to shake the creature out of its stupor.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":3,"school":"ill","components":{"vocal":false,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A glowing stick of incense or a crystal vial filled with phosphorescent material.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234072,"modifiedTime":1671220968703,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"76C0FdcxlU8F9Rl2","name":"Word of Recall","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You and up to five willing creatures within 5 feet of you instantly teleport to a previously designated sanctuary. You and any creatures that teleport with you appear in the nearest unoccupied space to the spot you designated when you prepared your sanctuary (see below). If you cast this spell without first preparing a sanctuary, the spell has no effect.You must designate a sanctuary by casting this spell within a location, such as a temple, dedicated to or strongly linked to your deity. If you attempt to cast the spell in this manner in an area that isn't dedicated to your deity, the spell has no effect.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":6,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234073,"modifiedTime":1671220968710,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7Fw7Bf1k3xxDVr5L","name":"Fabricate","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You convert raw materials into products of the same material. For example, you can fabricate a wooden bridge from a clump of trees, a rope from a patch of hemp, and clothes from flax or wool.Choose raw materials that you can see within range. You can fabricate a Large or smaller object (contained within a 10-foot cube, or eight connected 5-foot cubes), given a sufficient quantity of raw material. If you are working with metal, stone, or another mineral substance, however, the fabricated object can be no larger than Medium (contained within a single 5-foot cube). The quality of Objects made by the spell is commensurate with the quality of the raw materials.Creatures or Magic Items can't be created or transmuted by this spell. You also can't use it to create items that ordinarily require a high degree of craftsmanship, such as jewelry, Weapons, glass, or armor, unless you have proficiency with the type of artisan's tools used to craft such Objects.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/explosion-fireball-medium-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234073,"modifiedTime":1671220968721,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7KjExw0kmuqERa7C","name":"Storm of Vengeance","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Range: sightA churning storm cloud forms, centered on a point you can see and spreading to a radius of 360 feet. Lightning flashes in the area, thunder booms, and strong winds roar. Each creature under the cloud (no more than 5,000 feet beneath the cloud) when it appears must make a Constitution saving throw. On a failed save, a creature takes 2d6 thunder damage and becomes Deafened for 5 minutes.Each round you maintain Concentration on this spell, the storm produces different Effects on your turn.Round 2. Acidic rain falls from the cloud. Each creature and object under the cloud takes 1d6 acid damage.Round 3. You call six bolts of lightning from the cloud to strike six creatures or objects of your choice beneath the cloud. A given creature or object can't be struck by more than one bolt. A struck creature must make a Dexterity saving throw. The creature takes 10d6 lightning damage on a failed save, or half as much damage on a successful one.Round 4. Hailstones rain down from the cloud. Each creature under the cloud takes 2d6 bludgeoning damage.Round 5–10. Gusts and freezing rain assail the area under the cloud. The area becomes difficult terrain and is heavily obscured. Each creature there takes 1d6 cold damage. Ranged weapon attacks in the area are impossible. The wind and rain count as a severe distraction for the purposes of maintaining Concentration on Spells. Finally, gusts of strong wind (ranging from 20 to 50 miles per hour) automatically disperse fog, mists, and similar phenomena in the area, whether mundane or magical.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":360,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"spec"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","thunder"]],"versatile":""},"formula":"10d6","save":{"ability":"con","dc":null,"scaling":"spell"},"level":9,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/projectile-beams-salvo-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234074,"modifiedTime":1671220968726,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7UwUjJ6owIQkEPrs","name":"Branding Smite","ownership":{"default":0},"type":"spell","system":{"description":{"value":"The next time you hit a creature with a weapon attack before this spell ends, the weapon gleams with astral radiance as you strike. The attack deals an extra 2d6 radiant damage to the target, which becomes visible if it's invisible, and the target sheds dim light in a 5-foot radius and can't become invisible until the spell ends.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the extra damage increases by 1d6 for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{},"img":"icons/magic/fire/dagger-rune-enchant-flame-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234074,"modifiedTime":1671220968731,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7buEm5KhI5lP8m1z","name":"Guiding Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A flash of light streaks toward a creature of your choice within range. Make a ranged spell attack against the target. On a hit, the target takes 4d6 radiant damage, and the next attack roll made against this target before the end of your next turn has advantage, thanks to the mystical dim light glittering on the target until then.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-fireball-smoke-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234075,"modifiedTime":1671220968745,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7e3QXF10hLNDEdr6","name":"False Life","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Bolstering yourself with a necromantic facsimile of life, you gain 1d4 + 4 Temporary Hit Points for the Duration.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you gain 5 additional Temporary Hit Points for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + 4","temphp"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small amount of alcohol or distilled spirits","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"(@item.level - 1) * 5"}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234075,"modifiedTime":1671220968751,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7fFHlBk3UNX8gPKL","name":"Control Water","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Until the spell ends, you control any freestanding water inside an area you choose that is a cube up to 100 feet on a side. You can choose from any of the following effects when you cast this spell. As an action on your turn, you can repeat the same effect or choose a different one.Flood. You cause the water level of all standing water in the area to rise by as much as 20 feet. If the area includes a shore, the flooding water spills over onto dry land, instead create a 20-foot tall wave that travels from one side of the area to the other and then crashes down. Any Huge or smaller vehicles in the wave's path are carried with it to the other side. Any Huge or smaller vehicles struck by the wave have a 25 percent chance of capsizing.The water level remains elevated until the spell ends or you choose a different effect. If this effect produced a wave, the wave repeats on the start of your next turn while the flood effect lasts.Part Water. You cause water in the area to move apart and create a trench. The trench extends across the spell's area, and the separated water forms a wall to either side. The trench remains until the spell ends or you choose a different effect. The water then slowly fills in the trench over the course of the next round until the normal water level is restored.Redirect Flow. You cause flowing water in the area to move in a direction you choose, even if the water has to flow over obstacles, up walls, or in other unlikely directions. The water in the area moves as you direct it, but once it moves beyond the spell's area, it resumes its flow based on the terrain conditions. The water continues to move in the direction you chose until the spell ends or you choose a different effect.Whirlpool. This effect requires a body of water at least 50 feet square and 25 feet deep. You cause a whirlpool to form in the center of the area. The whirlpool forms a vortex that is 5 feet wide at the base, up to 50 feet wide at the top, and 25 feet tall. Any creature or object in the water and within 25 feet of the vortex is pulled 10 feet toward it. A creature can swim away from the vortex by making a Strength (Athletics) check against your spell save DC.When a creature enters the vortex for the first time on a turn or starts its turn there, it must make a Strength saving throw. On a failed save, the creature takes 2d8 bludgeoning damage and is caught in the vortex until the spell ends. On a successful save, the creature takes half damage, and isn't caught in the vortex. A creature caught in the vortex can use its action to try to swim away from the vortex as described above, but has disadvantage on the Strength (Athletics) check to do so.The first time each turn that an object enters the vortex, the object takes 2d8 bludgeoning damage; this damage occurs each round it remains in the vortex.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"cube"},"range":{"value":300,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":null,"scaling":"spell"},"level":4,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A drop of water and a pinch of dust.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234076,"modifiedTime":1671220968756,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7p9IuWrSWFgfyQo2","name":"Alarm","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You set an alarm against unwanted intrusion. Choose a door, a window, or an area within range that is no larger than a 20-foot cube. Until the spell ends, an alarm alerts you whenever a Tiny or larger creature touches or enters the warded area. When you cast the spell, you can designate creatures that won't set off the alarm. You also choose whether the alarm is mental or audible.A mental alarm alerts you with a ping in your mind if you are within 1 mile of the warded area. This ping awakens you if you are sleeping.An audible alarm produces the sound of a hand bell for 10 seconds within 60 feet.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A tiny bell and a piece of fine silver wire.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-triangle-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234077,"modifiedTime":1671220968762,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7u2obDvuvtZBkTfq","name":"Scorching Ray","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create three rays of fire and hurl them at targets within range. You can hurl them at one target or several.Make a ranged Spell Attack for each ray. On a hit, the target takes 2d6 fire damage.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you create one additional ray for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":3,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234077,"modifiedTime":1671220968765,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"7v06rdmUakoTk1LQ","name":"Magic Mouth","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You implant a message within an object in range, a message that is uttered when a trigger condition is met. Choose an object that you can see and that isn't being worn or carried by another creature. Then speak the message, which must be 25 words or less, though it can be delivered over as long as 10 minutes. Finally, determine the circumstance that will trigger the spell to deliver your message.When that circumstance occurs, a magical mouth appears on the object and recites the message in your voice and at the same volume you spoke. If the object you chose has a mouth or something that looks like a mouth (for example, the mouth of a statue), the magical mouth appears there so that the words appear to come from the object's mouth. When you cast this spell, you can have the spell end after it delivers its message, or it can remain and repeat its message whenever the trigger occurs.The triggering circumstance can be as general or as detailed as you like, though it must be based on visual or audible conditions that occur within 30 feet of the object. For example, you could instruct the mouth to speak when any creature moves within 30 feet of the object or when a silver bell rings within 30 feet of it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"disp"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A small bit of honeycomb and jade dust worth at least 10gp, which the spell consumes","consumed":true,"cost":10,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/wind-vortex-swirl-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234078,"modifiedTime":1674761617008,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"82jM6qD9axLJsTrH","name":"Illusory Script","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You write on Parchment, paper, or some other suitable writing material and imbue it with a potent Illusion that lasts for the Duration.To you and any creatures you designate when you cast the spell, the writing appears normal, written in your hand, and conveys whatever meaning you intended when you wrote the text. To all others, the writing appears as if it were written in an unknown or magical script that is unintelligible. Alternatively, you can cause the writing to appear to be an entirely different message, written in a different hand and language, though the language must be one you know.Should the spell be dispelled, the original script and the Illusion both disappear.A creature with Truesight can read the hidden message.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"10","units":"day"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"ill","components":{"vocal":false,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A lead-based ink worth at least 10gp, which the spell consumes","consumed":true,"cost":10,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234078,"modifiedTime":1671220968772,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8MICCMeOXT3aJUy9","name":"Divine Favor","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your prayer empowers you with divine radiance. Until the spell ends, your weapon attacks deal an extra 1d4 radiant damage on a hit.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/dagger-rune-enchant-flame-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234079,"modifiedTime":1671220968776,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8PJAsHmbu6UgDHC0","name":"Wind Walk","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You and up to ten willing creatures you can see within range assume a gaseous form for the Duration, appearing as wisps of cloud. While in this cloud form, a creature has a flying speed of 300 feet and has resistance to damage from nonmagical weapons. The only Actions a creature can take in this form are the Dash action or to revert to its normal form. Reverting takes 1 minute, during which time a creature is Incapacitated and can't move. Until the spell ends, a creature can revert to cloud form, which also requires the 1-minute transformation.\n If a creature is in cloud form and flying when the effect ends, the creature descends 60 feet per round for 1 minute until it lands, which it does safely. If it can't land after 1 minute, the creature falls the remaining distance.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":11,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Fire and holy water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/wind-swirl-gray-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234079,"modifiedTime":1671220968793,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8RTDOt80u8aBv9qx","name":"Alter Self","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You assume a different form. When you cast the spell, choose one of the following options, the effects of which last for the duration of the spell. While the spell lasts, you can end one option as an action to gain the benefits of a different one.Aquatic Adaptation. You adapt your body to an aquatic environment, sprouting gills and growing webbing between your fingers. You can breathe underwater and gain a swimming speed equal to your walking speed.Change Appearance. You transform your appearance. You decide what you look like, including your height, weight, facial features, sound of your voice, hair length, coloration, and distinguishing characteristics, if any. You can make yourself appear as a member of another race, though none of your statistics change. You also can't appear as a creature of a different size than you, and your basic shape stays the same; if you're bipedal, you can't use this spell to become quadrupedal, for instance. At any time for the duration of the spell, you can use your action to change your appearance in this way again.Natural Weapons. You grow claws, fangs, spines, horns, or a different natural weapon of your choice. Your unarmed strikes deal 1d6 bludgeoning, piercing, or slashing damage, as appropriate to the natural weapon you chose, and you are proficient with your unarmed strikes. Finally, the natural weapon is magic and you have a +1 bonus to the attack and damage rolls you make using it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234080,"modifiedTime":1671220968797,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8aWtP5hcrmcEesBW","name":"Teleportation Circle","ownership":{"default":0},"type":"spell","system":{"description":{"value":"As you cast the spell, you draw a 10-foot-diameter circle on the ground inscribed with sigils that link your location to a permanent teleportation circle of your choice whose sigil sequence you know and that is on the same plane of existence as you. A shimmering portal opens within the circle you drew and remains open until the end of your next turn. Any creature that enters the portal instantly appears within 5 feet of the destination circle or in the nearest unoccupied space if that space is occupied.Many major temples, guilds, and other important places have permanent teleportation circles inscribed somewhere within their confines. Each such circle includes a unique sigil sequence—a string of magical runes arranged in a particular pattern. When you first gain the ability to cast this spell, you learn the sigil sequences for two destinations on The Material Plane, determined by the DM. You can learn additional sigil sequences during your adventures. You can commit a new sigil sequence to memory after studying it for 1 minute.You can create a permanent teleportation circle by casting this spell in the same location every day for one year. You need not use the circle to Teleport when you cast the spell in this way.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"con","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Rare chalks and inks infused with precious gems with 50 gp, which the spell consumes","consumed":true,"cost":50,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234080,"modifiedTime":1671220968802,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8cse7rit0oswRPUP","name":"Arcane Lock","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a closed door, window, gate, chest, or other entryway, and it becomes locked for the duration. You and the creatures you designate when you cast this spell can open the object normally. You can also set a password that, when spoken within 5 feet of the object, suppresses this spell for 1 minute. Otherwise, it is impassable until it is broken or the spell is dispelled or suppressed. Casting knock on the object suppresses arcane lock for 10 minutes.While affected by this spell, the object is more difficult to break or force open; the DC to break it or pick any locks on it increases by 10.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"disp"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Gold dust worth at least 25 gp, which the spell consumes.","consumed":true,"cost":25,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234081,"modifiedTime":1674761851303,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8dzaICjGy6mTUaUr","name":"Bless","type":"spell","img":"icons/magic/control/buff-flight-wings-blue.webp","system":{"description":{"value":"You bless up to three creatures of your choice within range. Whenever a target makes an attack roll or a saving throw before the spell ends, the target can roll 1d4 and add the number rolled to the attack roll or saving throw.\nHigher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":3,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A sprinkling of holy water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"effects":[{"_id":"8rP3gwmXVTgZqYZE","flags":{},"changes":[{"key":"system.bonuses.abilities.save","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.mwak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.msak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rsak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rwak.attack","mode":2,"value":"+1d4","priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":60,"rounds":10,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/control/buff-flight-wings-blue.webp","label":"Bless","origin":"Item.kZZAZ6kp9YzgPQEe","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234081,"modifiedTime":1671220968815,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8sgwRh8NUNkn9Vi0","name":"Secret Chest","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You hide a chest, and all its contents, on the Ethereal Plane. You must touch the chest and the miniature replica that serves as a material component for the spell. The chest can contain up to 12 cubic feet of nonliving material (3 feet by 2 feet by 2 feet).While the chest remains on the Ethereal Plane, you can use an action and touch the replica to recall the chest. It appears in an unoccupied space on the ground within 5 feet of you. You can send the chest back to the Ethereal Plane by using an action and touching both the chest and the replica.After 60 days, there is a cumulative 5 percent chance per day that the spell's effect ends. This effect ends if you cast this spell again, if the smaller replica chest is destroyed, or if you choose to end the spell as an action. If the spell ends and the larger chest is on the Ethereal Plane, it is irretrievably lost.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"An exquisite chest, 3 feet by 2 feet by 2 feet, constructed from rare materials worth at least 5,000 gp, and a Tiny replica made from the same materials worth at least 50 gp","consumed":false,"cost":5050,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234082,"modifiedTime":1671220968819,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"8zT7njvqbpXs4Cel","name":"Spare the Dying","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a living creature that has 0 hit points. The creature becomes stable. This spell has no effect on undead or constructs.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234083,"modifiedTime":1671220968823,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"91Sw6vOIaO7U8DvM","name":"Dominate Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to beguile a humanoid that you can see within range. It must succeed on a Wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw.While the target is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability.You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time you can also cause the creature to use a reaction, but this requires you to use your own reaction as well.Each time the target takes damage, it makes a new Wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.At Higher Levels. When you cast this spell using a 6th-level spell slot, the duration is concentration, up to 10 minutes. When you use a 7th-level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 8th level or higher, the duration is concentration, up to 8 hours.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":5,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-large-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234083,"modifiedTime":1671220968828,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"95K2aUhAGV9qXjnf","name":"Bane","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Up to three creatures of your choice that you can see within range must make Charisma saving throws. Whenever a target that fails this saving throw makes an attack roll or a saving throw before the spell ends, the target must roll a d4 and subtract the number rolled from the attack roll or saving throw.\nHigher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":3,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A drop of blood","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/unholy/strike-beam-blood-red-purple.webp","effects":[{"_id":"potjmpJPeUA1U4oe","flags":{},"changes":[{"key":"system.bonuses.abilities.save","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.mwak.attack","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.msak.attack","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.rsak.attack","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.rwak.attack","value":"-1d4","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":60,"rounds":10,"turns":null,"startRound":null,"startTurn":null,"combat":null},"icon":"icons/magic/unholy/strike-beam-blood-red-purple.webp","label":"Bane","origin":"Item.KkaQm4OQJxc6z3to","tint":null,"transfer":true,"sort":0}],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234084,"modifiedTime":1671220968832,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9eOZDBImVKxbeOyZ","name":"Enhance Ability","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature and bestow upon it a magical enhancement. Choose one of the following effects; the target gains that effect until the spell ends.\n\nBear's Endurance. The target has advantage on Constitution Checks. It also gains 2d6 Temporary Hit Points, which are lost when the spell ends.\nBull's Strength. The target has advantage on Strength Checks, and his or her carrying capacity doubles.\nCat's Grace. The target has advantage on Dexterity Checks. It also doesn't take damage from Falling 20 feet or less if it isn't Incapacitated.\nEagle's Splendor. The target has advantage on Charisma Checks.\nFox's Cunning. The target has advantage on Intelligence Checks.\nOwl's Wisdom. The target has advantage on Wisdom Checks.\n\nAt Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","temphp"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Fur or a feather from a beast","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/buff-flight-wings-runes-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234084,"modifiedTime":1671220968836,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9gYGkrL6qFTsE6fw","name":"Spike Growth","ownership":{"default":0},"type":"spell","system":{"description":{"value":"The ground in a 20-foot radius centered on a point within range twists and sprouts hard spikes and thorns. The area becomes difficult terrain for the Duration. When a creature moves into or within the area, it takes 2d4 piercing damage for every 5 feet it travels.The transformation of the ground is camouflaged to look natural. Any creature that can't see the area at the time the spell is cast must make a Wisdom (Perception) check against your spell save DC to recognize the terrain as hazardous before entering it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"radius"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Seven sharp thorns or seven small twigs, each sharpened to a point","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/vines-thorned-curled-glow-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234085,"modifiedTime":1671220968842,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9hQXdMSmerkTsHDe","name":"Confusion","type":"spell","img":"icons/magic/air/wind-tornado-cyclone-purple-pink.webp","system":{"description":{"value":"This spell assaults and twists creatures' minds, spawning delusions and provoking uncontrolled action. Each creature in a 10-foot-radius sphere centered on a point you choose within range must succeed on a Wisdom saving throw when you cast this spell or be affected by it.\nAn affected target can't take reactions and must roll from the @Compendium[dnd5e.tables.LHEts1oDaDwcehuj]{Confusion} table at the start of each of its turns to determine its behavior for that turn.\nAt Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the radius of the sphere increases by 5 feet for each slot level above 4th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"sphere"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d10","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":4,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Three walnut shells.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234085,"modifiedTime":1671220968846,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9kGrFXnLiRg3Xnbo","name":"Regenerate","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature and stimulate its natural Healing ability. The target regains 4d8 + 15 Hit Points. For the Duration of the spell, the target regains 1 hit point at the start of each of its turns (10 hit points each minute).The target's severed body members (fingers, legs, tails, and so on), if any, are restored after 2 minutes. If you have the severed part and hold it to the stump, the spell instantaneously causes the limb to knit to the stump.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8 + 15","healing"]],"versatile":"1"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A prayer wheel and holy water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-flame-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234086,"modifiedTime":1671220968851,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"A3q2gTNqG6fvNGrv","name":"Disguise Self","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You make yourself—including your clothing, armor, weapons, and other belongings on your person—look different until the spell ends or until you use your action to dismiss it. You can seem 1 foot shorter or taller and can appear thin, fat, or in between. You can't change your body type, so you must adopt a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you.The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to your outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel your head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair.To discern that you are disguised, a creature can use its action to inspect your appearance and must succeed on an Intelligence (Investigation) check against your spell save DC.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234086,"modifiedTime":1671220968855,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"A4RsPuSvB9wFtz1j","name":"Dimension Door","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You teleport yourself from your current location to any other spot within range. You arrive at exactly the spot desired. It can be a place you can see, one you can visualize, or one you can describe by stating distance and direction, such as \"200 feet straight downward\" or \"upward to the northwest at a 45-degree angle, 300 feet.\"You can bring along objects as long as their weight doesn't exceed what you can carry. You can also bring one willing creature of your size or smaller who is carrying gear up to its carrying capacity. The creature must be within 5 feet of you when you cast this spell.If you would arrive in a place already occupied by an object or a creature, you and any creature traveling with you each take 4d6 force damage, and the spell fails to teleport you.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":500,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-large-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234087,"modifiedTime":1671220968859,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"AGFMPAmuzwWO6Dfz","name":"Raise Dead","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You return a dead creature you touch to life, provided that it has been dead no longer than 10 days. If the creature's soul is both willing and at liberty to rejoin the body, the creature returns to life with 1 hit point.This spell also neutralizes any poisons and cures nonmagical diseases that affected the creature at the time it died. This spell doesn't, however, remove magical diseases, curses, or similar effects; if these aren't first removed prior to casting the spell, they take effect when the creature returns to life. The spell can't return an undead creature to life.This spell closes all mortal wounds, but it doesn't restore missing body parts. If the creature is lacking body parts or organs integral for its survival—its head, for instance—the spell automatically fails.Coming back from the dead is an ordeal. The target takes a −4 penalty to all attack rolls, saving throws, and ability checks. Every time the target finishes a long rest, the penalty is reduced by 1 until it disappears.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A diamond worth at least 500gp, which the spell consumes.","consumed":true,"cost":500,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234087,"modifiedTime":1671220968863,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"AQsBc94ES7W7s7iG","name":"Wall of Thorns","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a wall of tough, pliable, tangled brush bristling with needle-sharp thorns. The wall appears within range on a solid surface and lasts for the Duration. You choose to make the wall up to 60 feet long, 10 feet high, and 5 feet thick or a circle that has a 20-foot diameter and is up to 20 feet high and 5 feet thick. The wall blocks line of sight.When the wall appears, each creature within its area must make a Dexterity saving throw. On a failed save, a creature takes 7d8 piercing damage, or half as much damage on a successful save.A creature can move through the wall, albeit slowly and painfully. For every 1 foot a creature moves through the wall, it must spend 4 feet of Movement. Furthermore, the first time a creature enters the wall on a turn or ends its turn there, the creature must make a Dexterity saving throw. It takes 7d8 slashing damage on a failed save, or half as much damage on a successful one.At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, both types of damage increase by 1d8 for each slot level above 6th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"wall"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["7d8","piercing"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":6,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A handful of thorns","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-green-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234088,"modifiedTime":1671220968867,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ATo0Eb63TDtnu6iA","name":"Animate Objects","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Objects come to life at your command. Choose up to ten nonmagical objects within range that are not being worn or carried. Medium targets count as two objects, Large targets count as four objects, Huge targets count as eight objects. You can't animate any object larger than Huge. Each target animates and becomes a creature under your control until the spell ends or until reduced to 0 hit points.As a bonus action, you can mentally command any creature you made with this spell if the creature is within 500 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete.Animated Object StatisticsSize HP AC Attack Str DexTiny 20 18 +8 to hit, 1d4 + 4 damage 4 18Small 25 16 +6 to hit, 1d8 + 2 damage 6 14Medium 40 13 +5 to hit, 2d6 + 1 damage 10 12Large 50 10 +6 to hit, 2d10 + 2 damage 14 10Huge 80 10 +8 to hit, 2d12 + 4 damage 18 6An animated object is a construct with AC, hit points, attacks, Strength, and Dexterity determined by its size. Its Constitution is 10 and its Intelligence and Wisdom are 3, and its Charisma is 1. Its speed is 30 feet; if the object lacks legs or other appendages it can use for locomotion, it instead has a flying speed of 30 feet and can hover. If the object is securely attached to a surface or a larger object, such as a chain bolted to a wall, its speed is 0. It has blindsight with a radius of 30 feet and is blind beyond that distance. When the animated object drops to 0 hit points, it reverts to its original object form, and any remaining damage carries over to its original object form.If you command an object to attack, it can make a single melee attack against a creature within 5 feet of it. It makes a slam attack with an attack bonus and bludgeoning damage determined by its size. The DM might rule that a specific object inflicts slashing or piercing damage based on its form.At Higher Levels. If you cast this spell using a spell slot of 6th level or higher, you can animate two additional objects for each slot level above 5th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"","type":"object"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/earth/projectile-stone-boulder-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234088,"modifiedTime":1671220968871,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Advtckpz1B733bu9","name":"Flame Blade","type":"spell","img":"icons/magic/fire/dagger-rune-enchant-flame-orange.webp","system":{"description":{"value":"You evoke a fiery blade in your free hand. The blade is similar in size and shape to a Scimitar, and it lasts for the Duration. If you let go of the blade, it disappears, but you can evoke the blade again as a Bonus Action.You can use your action to make a melee spell Attack with the fiery blade. On a hit, the target takes 3d6 fire damage.The flaming blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for every two slot levels above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["floor(2 + @item.level / 2)d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Leaf of sumac","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234089,"modifiedTime":1671220968875,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"AoTTjapz1FsGOIZz","name":"Delayed Blast Fireball","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A beam of yellow light flashes from your pointing finger, then condenses to linger at a chosen point within range as a glowing bead for the duration. When the spell ends, either because your concentration is broken or because you decide to end it, the bead blossoms with a low roar into an explosion of flame that spreads around corners. Each creature in a 20-foot-radius sphere centered on that point must make a Dexterity saving throw. A creature takes fire damage equal to the total accumulated damage on a failed save, or half as much damage on a successful one.The spell's base damage is 12d6. If at the end of your turn the bead has not yet detonated, the damage increases by 1d6.If the glowing bead is touched before the interval has expired, the creature touching it must make a Dexterity saving throw. On a failed save, the spell ends immediately, causing the bead to erupt in flame. On a successful save, the creature can throw the bead up to 40 feet. When it strikes a creature or a solid object, the spell ends, and the bead explodes.The fire damages objects in the area and ignites flammable objects that aren't being worn or carried.At Higher Levels. When you cast this spell using a spell slot of 8th level or higher, the base damage increases by 1d6 for each slot level above 7th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d6","fire"]],"versatile":"1d6"},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":7,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A tiny ball of bat guano and sulfur","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-fireball-smoke-strong-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234089,"modifiedTime":1671220968893,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"B0pnIcc52O6G8hi8","name":"Longstrider","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature. The target's speed increases by 10 feet until the spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of dirt","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/wind-stream-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234090,"modifiedTime":1671220968897,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"B2kbmgbA2WQR00kx","name":"Symbol","ownership":{"default":0},"type":"spell","system":{"description":{"value":"When you cast this spell, you inscribe a harmful glyph either on a surface (such as a section of floor, a wall, or a table) or within an object that can be closed to conceal the glyph (such as a book, a scroll, or a treasure chest). If you choose a surface, the glyph can cover an area of the surface no larger than 10 feet in diameter. If you choose an object, that object must remain in its place; if the object is moved more than 10 feet from where you cast this spell, the glyph is broken, and the spell ends without being triggered.The glyph is nearly invisible, requiring an Intelligence (Investigation) check against your spell save DC to find it.You decide what triggers the glyph when you cast the spell. For glyphs inscribed on a surface, the most typical triggers include touching or stepping on the glyph, removing another object covering it, approaching within a certain distance of it, or manipulating the object that holds it. For glyphs inscribed within an object, the most common triggers are opening the object, approaching within a certain distance of it, or seeing or reading the glyph.You can further refine the trigger so the spell is activated only under certain circumstances or according to a creature's physical characteristics (such as height or weight), or physical kind (for example, the ward could be set to affect hags or shapechangers). You can also specify creatures that don't trigger the glyph, such as those who say a certain password.When you inscribe the glyph, choose one of the options below for its effect. Once triggered, the glyph glows, filling a 60-foot-radius sphere with dim light for 10 minutes, after which time the spell ends. Each creature in the sphere when the glyph activates is targeted by its effect, as is a creature that enters the Sphere for the first time on a turn or ends its turn there.\n\nDeath. Each target must make a Constitution saving throw, taking 10d10 necrotic damage on a failed save, or half as much damage on a successful save.\nDiscord. Each target must make a Constitution saving throw. On a failed save, a target bickers and argues with other creatures for 1 minute. During this time, it is incapable of meaningful communication and has disadvantage on Attack rolls and Ability Checks.\nFear. Each target must make a Wisdom saving throw and becomes Frightened for 1 minute on a failed save. While Frightened, the target drops whatever it is holding and must move at least 30 feet away from the glyph on each of its turns, if able.\nHopelessness. Each target must make a Charisma saving throw. On a failed save, the target is overwhelmed with despair for 1 minute. During this time, it can't attack or target any creature with harmful Abilities, Spells, or other magical Effects.\nInsanity. Each target must make an Intelligence saving throw. On a failed save, the target is driven insane for 1 minute. An insane creature can't take Actions, can't understand what other creatures say, can't read, and speaks only in gibberish. The DM controls its Movement, which is erratic.\nPain. Each target must make a Constitution saving throw and becomes Incapacitated with excruciating pain for 1 minute on a failed save.\nSleep. Each target must make a Wisdom saving throw and falls Unconscious for 10 minutes on a failed save. A creature awakens if it takes damage or if someone uses an action to shake or slap it awake.\nStunning. Each target must make a Wisdom saving throw and becomes Stunned for 1 minute on a failed save.\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"dstr"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d10","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":7,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Mercury, phosphorus, and powdered diamond and opal with a total value of at least 1,000 gp, which the spell consumes","consumed":true,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234090,"modifiedTime":1674761650271,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"BP3GCwa66IAw1yTG","name":"Daylight","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A 60-foot-radius sphere of light spreads out from a point you choose within range. The sphere is bright light and sheds dim light for an additional 60 feet.If you chose a point on an object you are holding or one that isn't being worn or carried, the light shines from the object and moves with it. Completely covering the affected object with an opaque object, such as a bowl or a helm, blocks the light.If any of this spell's area overlaps with an area of darkness created by a spell of 3rd level or lower, the spell that created the darkness is dispelled.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234091,"modifiedTime":1671220968908,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"BQk5Row4NymMnUQl","name":"Hideous Laughter","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature of your choice that you can see within range perceives everything as hilariously funny and falls into fits of laughter if this spell affects it. The target must succeed on a Wisdom saving throw or fall prone, becoming Incapacitated and unable to stand up for the Duration. A creature with an Intelligence score of 4 or less isn't affected.At the end of each of its turns, and each time it takes damage, the target can make another Wisdom saving throw. The target has advantage on the saving throw if it's triggered by damage. On a success, the spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Tiny tarts and a feather that is waved in the air","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/explosion-fireball-medium-purple-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234092,"modifiedTime":1671220968913,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"BV0mpbHh29IbbIj5","name":"Create Food and Water","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create 45 pounds of food and 30 gallons of water on the ground or in containers within range, enough to sustain up to fifteen humanoids or five steeds for 24 hours. The food is bland but nourishing, and spoils if uneaten after 24 hours. The water is clean and doesn't go bad.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234092,"modifiedTime":1671220968918,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"BYNvBJzHcF5VJhXw","name":"Phantasmal Killer","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You tap into the nightmares of a creature you can see within range and create an illusory manifestation of its deepest fears, visible only to that creature. The target must make a Wisdom saving throw. On a failed save, the target becomes Frightened for the Duration. At the end of each of the target's turns before the spell ends, the target must succeed on a Wisdom saving throw or take 4d10 psychic damage. On a successful save, the spell ends.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d10 for each slot level above 4th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10","psychic"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":4,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d10"}},"sort":0,"flags":{},"img":"icons/magic/control/fear-fright-monster-grin-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234093,"modifiedTime":1671220968922,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Bnn9Nzajixvow9xi","name":"Light","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A firefly or phosphorescent moss.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-small-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234093,"modifiedTime":1671220968926,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"BrBZdCCrJRIVg7YX","name":"Silent Image","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 15-foot cube. The image appears at a spot within range and lasts for the duration. The image is purely visual; it isn't accompanied by sound, smell, or other sensory effects.You can use your action to cause the image to move to any spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking.Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cube"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of fleece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-teal-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234094,"modifiedTime":1671220968931,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"CAxSzHWizrafT033","name":"Dancing Lights","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create up to four torch-sized lights within range, making them appear as torches, lanterns, or glowing orbs that hover in the air for the duration. You can also combine the four lights into one glowing vaguely humanoid form of Medium size. Whichever form you choose, each light sheds dim light in a 10-foot radius.As a bonus action on your turn, you can move the lights up to 60 feet to a new spot within range. A light must be within 20 feet of another light created by this spell, and a light winks out if it exceeds the spell's range.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of phosphorus or wychwood, or a glowworm","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-meteor-salvo-strong-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234094,"modifiedTime":1671220968935,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"CKZTpZlxj7hjjo2H","name":"Mage Armor","type":"spell","img":"icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp","system":{"description":{"value":"You touch a willing creature who isn't wearing armor, and a protective magical force surrounds it until the spell ends. The target's base AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor or if you dismiss the spell as an action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A piece of cured leather","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"cfwMU7LuOJ619Lny","changes":[{"key":"system.attributes.ac.calc","value":"mage","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp","label":"Mage Armor","origin":"Compendium.dnd5e.spells.CKZTpZlxj7hjjo2H","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234095,"modifiedTime":1671220968939,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"CjIq8Ed7bu3vVwT1","name":"Contagion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your touch inflicts disease. Make a melee spell attack against a creature within your reach. On a hit, you afflict the creature with a disease of your choice from any of the ones described below.At the end of each of the target's turns, it must make a Constitution saving throw. After failing three of these saving throws, the disease's effects last for the duration, and the creature stops making these saves. After succeeding on three of these saving throws, the creature recovers from the disease, and the spell ends.Since this spell induces a natural disease in its target, any effect that removes a disease or otherwise ameliorates a disease's effects apply to it.Blinding Sickness. Pain grips the creature's mind, and its eyes turn milky white. The creature has disadvantage on Wisdom checks and Wisdom saving throws and is blinded.Filth Fever. A raging fever sweeps through the creature's body. The creature has disadvantage on Strength checks, Strength saving throws, and attack rolls that use Strength.Flesh Rot. The creature's flesh decays. The creature has disadvantage on Charisma checks and vulnerability to all damage.Mindfire. The creature's mind becomes feverish. The creature has disadvantage on Intelligence checks and Intelligence saving throws, and the creature behaves as if under the effects of the confusion spell during combat.Seizure. The creature is overcome with shaking. The creature has disadvantage on Dexterity checks, Dexterity saving throws, and attack rolls that use Dexterity.Slimy Doom. The creature begins to bleed uncontrollably. The creature has disadvantage on Constitution checks and Constitution saving throws. In addition, whenever the creature takes damage, it is stunned until the end of its next turn.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"7","units":"day"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":5,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/unholy/strike-beam-blood-large-red-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234097,"modifiedTime":1671220968946,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"CylBa7jR8DSbo8Z3","name":"Zone of Truth","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a magical zone that guards against deception in a 15-foot-radius sphere centered on a point of your choice within range. Until the spell ends, a creature that enters the spell's area for the first time on a turn or starts its turn there must make a Charisma saving throw. On a failed save, a creature can't speak a deliberate lie while in the radius. You know whether each creature succeeds or fails on its saving throw.\n An affected creature is aware of the spell and can thus avoid answering questions to which it would normally respond with a lie. Such a creature can be evasive in its answers as long as it remains within the boundaries of the truth.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-magenta.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234097,"modifiedTime":1671220968950,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"DGONTFbk5eORs5qv","name":"Black Tentacles","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Squirming, ebony tentacles fill a 20-foot square on ground that you can see within range. For the Duration, these tentacles turn the ground in the area into difficult terrain.When a creature enters the affected area for the first time on a turn or starts its turn there, the creature must succeed on a Dexterity saving throw or take 3d6 bludgeoning damage and be @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.cSVcyZyNe2iG1fIc]{Restrained} by the tentacles until the spell ends. A creature that starts its turn in the area and is already @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.cSVcyZyNe2iG1fIc]{Restrained} by the tentacles takes 3d6 bludgeoning damage.A creature @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.cSVcyZyNe2iG1fIc]{Restrained} by the tentacles can use its action to make a Strength or Dexterity check (its choice) against your spell save DC. On a success, it frees itself.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":4,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A piece of tentacle from a giant octopus or a giant squid","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/vines-thorned-curled-glow-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234098,"modifiedTime":1671220968954,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"DQzlB5Y3k791W5bH","name":"See Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you see invisible creatures and objects as if they were visible, and you can see into the Ethereal Plane. Ethereal creatures and objects appear ghostly and translucent.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of talc and a small sprinkling of silver powder","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234098,"modifiedTime":1671220968959,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"DUBgwHPakcLDkB6W","name":"Tree Stride","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You gain the ability to enter a tree and move from inside it to inside another tree of the same kind within 500 feet. Both trees must be living and at least the same size as you. You must use 5 feet of Movement to enter a tree. You instantly know the location of all other trees of the same kind within 500 feet and, as part of the move used to enter the tree, can either pass into one of those trees or step out of the tree you're in. You appear in a spot of your choice within 5 feet of the destination tree, using another 5 feet of movement. If you have no movement left, you appear within 5 feet of the tree you entered.You can use this transportation ability once per round for the Duration. You must end each turn outside a tree.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-maple-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234099,"modifiedTime":1671220968964,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"E4NXux0RHvME1XgP","name":"Create Undead","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You can cast this spell only at night. Choose up to three corpses of Medium or Small humanoids within range. Each corpse becomes a ghoul under your control. (The DM has game statistics for these creatures.)As a bonus action on each of your turns, you can mentally command any creature you animated with this spell if the creature is within 120 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete.The creature is under your control for 24 hours, after which it stops obeying any command you have given it. To maintain control of the creature for another 24 hours, you must cast this spell on the creature before the current 24-hour period ends. This use of the spell reasserts your control over up to three creatures you have animated with this spell, rather than animating new ones.Higher Levels. When you cast this spell using a 7th-level spell slot, you can animate or reassert control over four ghouls. When you cast this spell using an 8th-level spell slot, you can animate or reassert control over five ghouls or two ghasts or wights. When you cast this spell using a 9th-level spell slot, you can animate or reassert control over six ghouls, three ghasts or wights, or two mummies.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":"You can cast this spell only at night."},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":3,"width":null,"units":"spec","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"One clay pot filled with grave dirt, one clay pot filled with brackish water, and one 150 gp black onyx stone for each corpse.","consumed":false,"cost":150,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/fear-fright-monster-grin-red-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234100,"modifiedTime":1671220968968,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"EOmsUcFQJTfG2oio","name":"Fire Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You hurl a mote of fire at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried.This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-fireball-smoke-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234100,"modifiedTime":1671220968971,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ERCv7yuRkQ0YjGx6","name":"Reverse Gravity","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell reverses gravity in a 50-foot-radius, 100-foot high Cylinder centered on a point within range. All creatures and Objects that aren't somehow anchored to the ground in the area fall upward and reach the top of the area when you cast this spell. A creature can make a Dexterity saving throw to grab onto a fixed object it can reach, thus avoiding the fall.If some solid object (such as a ceiling) is encountered in this fall, Falling Objects and creatures strike it just as they would during a normal downward fall. If an object or creature reaches the top of the area without striking anything, it remains there, oscillating slightly, for the Duration.At the end of the Duration, affected Objects and creatures fall back down.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":50,"width":null,"units":"ft","type":"cylinder"},"range":{"value":100,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":7,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A lodestone and iron fillings","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234101,"modifiedTime":1671220968975,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Ek45cBpVXvJdv1Qy","name":"Counterspell","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to interrupt a creature in the process of casting a spell. If the creature is casting a spell of 3rd level or lower, its spell fails and has no effect. If it is casting a spell of 4th level or higher, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a success, the creature's spell fails and has no effect.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the interrupted spell has no effect if its level is less than or equal to the level of the spell slot you used.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":"which you take when you see a creature within 60 feet of you casting a spell"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d20 + @mod","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":false,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/skills/melee/strike-blade-hooked-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234102,"modifiedTime":1671220968994,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Eon0jzGzQRNluTPQ","name":"Antimagic Field","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A 10-foot-radius invisible sphere of antimagic surrounds you. This area is divorced from the magical energy that suffuses the multiverse. Within the sphere, spells can't be cast, summoned creatures disappear, and even magic items become mundane. Until the spell ends, the sphere moves with you, centered on you.Spells and other magical effects, except those created by an artifact or a deity, are suppressed in the sphere and can't protrude into it. A slot expended to cast a suppressed spell is consumed. While an effect is suppressed, it doesn't function, but the time it spends suppressed counts against its duration.Targeted Effects. Spells and other magical effects, such as magic missile and charm person, that target a creature or an object in the sphere have no effect on that target.Areas of Magic. The area of another spell or magical effect, such as fireball, can't extend into the sphere. If the sphere overlaps an area of magic, the part of the area that is covered by the sphere is suppressed. For example, the flames created by a wall of fire are suppressed within the sphere, creating a gap in the wall if the overlap is large enough.Spells. Any active spell or other magical effect on a creature or an object in the sphere is suppressed while the creature or object is in it.Magic Items. The properties and powers of magic items are suppressed in the sphere. For example, a +1 longsword in the sphere functions as a nonmagical longsword.A magic weapon's properties and powers are suppressed if it is used against a target in the sphere or wielded by an attacker in the sphere. If a magic weapon or a piece of magic ammunition fully leaves the sphere (for example, if you fire a magic arrow or throw a magic spear at a target outside the sphere), the magic of the item ceases to be suppressed as soon as it exits.Magical Travel. Teleportation and planar travel fail to work in the sphere, whether the sphere is the destination or the departure point for such magical travel. A portal to another location, world, or plane of existence, as well as an opening to an extradimensional space such as that created by the rope trick spell, temporarily closes while in the sphere.Creatures and Objects. A creature or object summoned or created by magic temporarily winks out of existence in the sphere. Such a creature instantly reappears once the space the creature occupied is no longer within the sphere.Dispel Magic. Spells and magical effects such as dispel magic have no effect on the sphere. Likewise, the spheres created by different antimagic field spells don't nullify each other.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"","type":"sphere"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A pinch of powdered iron or iron filings","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-chains-ropes-net-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234102,"modifiedTime":1671220969000,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"F0GsG0SJzsIOacwV","name":"Lesser Restoration","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature and can end either one disease or one condition afflicting it. The condition can be blinded, deafened, paralyzed, or poisoned.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234103,"modifiedTime":1671220969005,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FSMy6VAjDnXY9vWz","name":"Gust of Wind","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A line of strong wind 60 feet long and 10 feet wide blasts from you in a direction you choose for the spell's duration. Each creature that starts its turn in the line must succeed on a Strength saving throw or be pushed 15 feet away from you in a direction following the line.Any creature in the line must spend 2 feet of movement for every 1 foot it moves when moving closer to you.The gust disperses gas or vapor, and it extinguishes candles, torches, and similar unprotected flames in the area. It causes protected flames, such as those of lanterns, to dance wildly and has a 50 percent chance to extinguish them.As a bonus action on each of your turns before the spell ends, you can change the direction in which the line blasts from you.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A legume seed.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/wind-swirl-gray-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234103,"modifiedTime":1671220969012,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"FjYE214HTERCRZNm","name":"Flaming Sphere","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A 5-foot-diameter Sphere of fire appears in an unoccupied space of your choice within range and lasts for the Duration. Any creature that ends its turn within 5 feet of the sphere must make a Dexterity saving throw. The creature takes 2d6 fire damage on a failed save, or half as much damage on a successful one.As a Bonus Action, you can move the Sphere up to 30 feet. If you ram the sphere into a creature, that creature must make the saving throw against the sphere's damage, and the sphere stops moving this turn.When you move the Sphere, you can direct it over barriers up to 5 feet tall and jump it across pits up to 10 feet wide. The sphere ignites flammable Objects not being worn or carried, and it sheds bright light in a 20-foot radius and dim light for an additional 20 feet.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":2,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of tallow, a pinch of brimstone, and a dusting of powdered iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-large-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234104,"modifiedTime":1671220969016,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"GJ2WYm3SQFR0winH","name":"Antipathy/Sympathy","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell attracts or repels creatures of your choice. You target something within range, either a Huge or smaller object or creature or an area that is no larger than a 200-foot cube. Then specify a kind of intelligent creature, such as red dragons, goblins, or vampires. You invest the target with an aura that either attracts or repels the specified creatures for the duration. Choose antipathy or sympathy as the aura's effect.Antipathy. The enchantment causes creatures of the kind you designated to feel an intense urge to leave the area and avoid the target. When such a creature can see the target or comes within 60 feet of it, the creature must succeed on a Wisdom saving throw or become frightened. The creature remains frightened while it can see the target or is within 60 feet of it. While frightened by the target, the creature must use its movement to move to the nearest safe spot from which it can't see the target. If the creature moves more than 60 feet from the target and can't see it, the creature is no longer frightened, but the creature becomes frightened again if it regains sight of the target or moves within 60 feet of it.Sympathy. The enchantment causes the specified creatures to feel an intense urge to approach the target while within 60 feet of it or able to see it. When such a creature can see the target or comes within 60 feet of it, the creature must succeed on a Wisdom saving throw or use its movement on each of its turns to enter the area or move within reach of the target. When the creature has done so, it can't willingly move away from the target.If the target damages or otherwise harms an affected creature, the affected creature can make a Wisdom saving throw to end the effect, as described below.Ending the Effect. If an affected creature ends its turn while not within 60 feet of the target or able to see it, the creature makes a Wisdom saving throw. On a successful save, the creature is no longer affected by the target and recognizes the feeling of repugnance or attraction as magical. In addition, a creature affected by the spell is allowed another Wisdom saving throw every 24 hours while the spell persists.A creature that successfully saves against this effect is immune to it for 1 minute, after which time it can be affected again.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"10","units":"day"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":8,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Either a lump of alum soaked in vinegar for the antipathy effect or a drop of honey for the sympathy effect.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/fear-fright-monster-grin-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234104,"modifiedTime":1671220969021,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"GSvLWcdCZLQkilXT","name":"Blink","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Roll a d20 at the end of each of your turns for the duration of the spell. On a roll of 11 or higher, you vanish from your current plane of existence and appear in the Ethereal Plane (the spell fails and the casting is wasted if you were already on that plane). At the start of your next turn, and when the spell ends if you are on the Ethereal Plane, you return to an unoccupied space of your choice that you can see within 10 feet of the space you vanished from. If no unoccupied space is available within that range, you appear in the nearest unoccupied space (chosen at random if more than one space is equally near). You can dismiss this spell as an action.While on the Ethereal Plane, you can see and hear the plane you originated from, which is cast in shades of gray, and you can't see anything there more than 60 feet away. You can only affect and be affected by other creatures on the Ethereal Plane. Creatures that aren't there can't perceive you or interact with you, unless they have the ability to do so.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d20","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234105,"modifiedTime":1671220969026,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"GtGjNjPBgUHxGYAD","name":"Sending","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You send a short message of twenty-five words or less to a creature with which you are familiar. The creature hears the message in its mind, recognizes you as the sender if it knows you, and can answer in a like manner immediately. The spell enables creatures with Intelligence scores of at least 1 to understand the meaning of your message.You can send the message across any distance and even to other planes of existence, but if the target is on a different plane than you, there is a 5 percent chance that the message doesn't arrive.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"any"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A short piece of fine copper wire","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/wind-vortex-swirl-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234106,"modifiedTime":1671220969030,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"HBHbOGKNVVprSlwn","name":"Disintegrate","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A thin green ray springs from your pointing finger to a target that you can see within range. The target can be a creature, an object, or a creation of magical force, such as the wall created by wall of force.A creature targeted by this spell must make a Dexterity saving throw. On a failed save, the target takes 10d6 + 40 force damage. The target is disintegrated if this damage leaves it with 0 hit points.A disintegrated creature and everything it is wearing and carrying, except magic items, are reduced to a pile of fine gray dust. The creature can be restored to life only by means of a true resurrection or a wish spell.This spell automatically disintegrates a Large or smaller nonmagical object or a creation of magical force. If the target is a Huge or larger object or creation of force, this spell disintegrates a 10-foot-cube portion of it. A magic item is unaffected by this spell.At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the damage increases by 3d6 for each slot level above 6th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d6 + 40","force"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":6,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A lodestone and a pinch of dust","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"3d6"}},"sort":0,"flags":{},"img":"icons/magic/unholy/strike-beam-blood-large-red-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234106,"modifiedTime":1671220969034,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"HPvZm8YJO91k6Qdg","name":"Finger of Death","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You send negative energy coursing through a creature that you can see within range, causing it searing pain. The target must make a Constitution saving throw. It takes 7d8 + 30 necrotic damage on a failed save, or half as much damage on a successful one.A humanoid killed by this spell rises at the start of your next turn as a Zombie that is permanently under your command, following your verbal orders to the best of its ability.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["7d8 + 30","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":7,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/unholy/strike-beam-blood-large-red-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234107,"modifiedTime":1671220969040,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"HQfd7jJyULIoGxrZ","name":"Telekinesis","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You gain the ability to move or manipulate creatures or objects by thought. When you cast the spell, and as your action each round for the Duration, you can exert your will on one creature or object that you can see within range, causing the appropriate effect below. You can affect the same target round after round, or choose a new one at any time. If you switch targets, the prior target is no longer affected by the spell.Creature. You can try to move a Huge or smaller creature. Make an ability check with your spellcasting ability contested by the creature's Strength check. If you win the contest, you move the creature up to 30 feet in any direction, including upward but not beyond the range of this spell. Until the end of your next turn, the creature is Restrained in your telekinetic grip. A creature lifted upward is suspended in mid-air.On subsequent rounds, you can use your action to attempt to maintain your telekinetic grip on the creature by repeating the contest.Object. You can try to move an object that weighs up to 1,000 pounds. If the object isn't being worn or carried, you automatically move it up to 30 feet in any direction, but not beyond the range of this spell.If the object is worn or carried by a creature, you must make an ability check with your Spellcasting ability contested by that creature's Strength check. If you succeed, you pull the object away from that creature and can move it up to 30 feet in any direction but not beyond the range of this spell.You can exert fine control on Objects with your telekinetic grip, such as manipulating a simple tool, opening a door or a container, stowing or retrieving an item from an open container, or pouring the contents from a vial.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-levitate-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234107,"modifiedTime":1671220969044,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"I2LUSF5ogc7Bj62e","name":"Speak with Dead","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You grant the semblance of life and intelligence to a corpse of your choice within range, allowing it to answer the questions you pose. The corpse must still have a mouth and can't be undead. The spell fails if the corpse was the target of this spell within the last 10 days.Until the spell ends, you can ask the corpse up to five questions. The corpse knows only what it knew in life, including the languages it knew. Answers are usually brief, cryptic, or repetitive, and the corpse is under no compulsion to offer a truthful answer if you are hostile to it or it recognizes you as an enemy. This spell doesn't return the creature's soul to its body, only its animating spirit. Thus, the corpse can't learn new information, doesn't comprehend anything that has happened since it died, and can't speculate about future events.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Burning incense","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/fear-fright-shadow-monster-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234108,"modifiedTime":1671220969048,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"IBJmWjzbQGu7M4UX","name":"Fog Cloud","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a 20-foot-radius Sphere of fog centered on a point within range. The sphere spreads around corners, and its area is heavily obscured. It lasts for the Duration or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the radius of the fog increases by 20 feet for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234109,"modifiedTime":1671220969052,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ImlCJQwR1VL40Qem","name":"Arcane Eye","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create an invisible, magical eye within range that hovers in the air for the duration.You mentally receive visual information from the eye, which has normal vision and darkvision out to 30 feet. The eye can look in every direction.As an action, you can move the eye up to 30 feet in any direction. There is no limit to how far away from you the eye can move, but it can't enter another plane of existence. A solid barrier blocks the eye's movement, but the eye can pass through an opening as small as 1 inch in diameter.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of bat fur.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234109,"modifiedTime":1671220969058,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Iv2qqSAT7OkXKPFx","name":"Locate Animals or Plants","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Describe or name a specific kind of beast or plant. Concentrating on the voice of nature in your surroundings, you learn the direction and distance to the closest creature or plant of that kind within 5 miles, if any are present.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A bit of fur from a bloodhound","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-triple-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234110,"modifiedTime":1671220969062,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"IyikgTEOTv701jgQ","name":"Lightning Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A stroke of lightning forming a line 100 feet long and 5 feet wide blasts out from you in a direction you choose. Each creature in the line must make a Dexterity saving throw. A creature takes 8d6 lightning damage on a failed save, or half as much damage on a successful one.The lightning ignites flammable objects in the area that aren't being worn or carried.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d6","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of fur and a rod of amber, crystal, or glass","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{},"img":"icons/magic/lightning/bolt-forked-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234110,"modifiedTime":1671220969066,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"J3uILDYS7MiOfmTJ","name":"Fire Storm","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A storm made up of sheets of roaring flame appears in a location you choose within range. The area of the storm consists of up to ten 10-foot cubes, which you can arrange as you wish. Each cube must have at least one face adjacent to the face of another cube. Each creature in the area must make a Dexterity saving throw. It takes 7d10 fire damage on a failed save, or half as much damage on a successful one.The fire damages Objects in the area and ignites flammable Objects that aren't being worn or carried. If you choose, plant life in the area is unaffected by this spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"cube"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["7d10","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":7,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-meteor-salvo-heavy-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234111,"modifiedTime":1671220969069,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"J6Jpw5XzB5aTeqnz","name":"Plane Shift","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You and up to eight willing creatures who link hands in a circle are transported to a different plane of existence. You can specify a target destination in general terms, such as the City of Brass on the Elemental Plane of Fire or the palace of Dispater on the second level of the Nine Hells, and you appear in or near that destination. If you are trying to reach the City of Brass, for example, you might arrive in its Street of Steel, before its Gate of Ashes, or looking at the city from across the Sea of Fire, at the DM's discretion.Alternatively, if you know the sigil sequence of a teleportation circle on another plane of existence, this spell can take you to that circle. If the teleportation circle is too small to hold all the creatures you transported, they appear in the closest unoccupied spaces next to the circle.You can use this spell to banish an unwilling creature to another plane. Choose a creature within your reach and make a melee spell attack against it. On a hit, the creature must make a Charisma saving throw. If the creature fails this save, it is transported to a random location on the plane of existence you specify. A creature so transported must find its own way back to your current plane of existence.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":8,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":7,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A forked, metal rod worth at least 250 gp, attuned to a particular plane of existence","consumed":false,"cost":250,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234111,"modifiedTime":1671220969075,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"JGT5bNqu9REL7Fuz","name":"Find Familiar","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your familiar acts independently of you, but it always obeys your commands. In combat, it rolls its own initiative and acts on its own turn. A familiar can't attack, but it can take other actions as normal.When the familiar drops to 0 hit points, it disappears, leaving behind no physical form. It reappears after you cast this spell again.While your familiar is within 100 feet of you, you can communicate with it telepathically. Additionally, as an action, you can see through your familiar's eyes and hear what it hears until the start of your next turn, gaining the benefits of any special senses that the familiar has. During this time, you are deaf and blind with regard to your own senses.As an action, you can temporarily dismiss your familiar. It disappears into a pocket dimension where it awaits your summons. Alternatively, you can dismiss it forever. As an action while it is temporarily dismissed, you can cause it to reappear in any unoccupied space within 30 feet of you.You can't have more than one familiar at a time. If you cast this spell while you already have a familiar, you instead cause it to adopt a new form. Choose one of the forms from the above list. Your familiar transforms into the chosen creature.Finally, when you cast a spell with a range of touch, your familiar can deliver the spell as if it had cast the spell. Your familiar must be within 100 feet of you, and it must use its reaction to deliver the spell when you cast it. If the spell requires an attack roll, you use your action modifier for the roll.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"10 gp worth of charcoal, incense, and herbs that must be consumed by fire in a brass brazier","consumed":true,"cost":10,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/wolf-paw-glow-purple-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234112,"modifiedTime":1671220969093,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"JLTQyqXEaJDrTXyW","name":"Acid Splash","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You hurl a bubble of acid. Choose one creature you can see within range, or choose two creatures you can see within range that are within 5 feet of each other. A target must succeed on a Dexterity saving throw or take 1d6acid damage.This spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":2,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6","acid"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-fireball-smoke-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234112,"modifiedTime":1671220969097,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"JPwIEfgUPVebr5AH","name":"Barkskin","type":"spell","img":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","system":{"description":{"value":"You touch a willing creature. Until the spell ends, the target's skin has a rough, bark-like appearance, and the target's AC can't be less than 16, regardless of what kind of armor it is wearing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A handful of oak bark","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"uM6rgctYpcbCVSkn","flags":{},"changes":[{"key":"system.attributes.ac.formula","value":"16","mode":5,"priority":null},{"key":"system.attributes.ac.calc","value":"custom","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":3600,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","label":"Barkskin","origin":"Item.VQMKMnQDw5rzL0zp","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234113,"modifiedTime":1671220969102,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"JQyigMNPiDnGI18b","name":"Geas","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You place a magical command on a creature that you can see within range, forcing it to carry out some service or refrain from some action or course of activity as you decide. If the creature can understand you, it must succeed on a Wisdom saving throw or become Charmed by you for the Duration. While the creature is charmed by you, it takes 5d10 psychic damage each time it acts in a manner directly counter to your instructions, but no more than once each day. A creature that can't understand you is unaffected by the spell.You can issue any command you choose, short of an activity that would result in certain death. Should you issue a suicidal command, the spell ends.You can end the spell early by using an action to dismiss it. A Remove Curse, Greater Restoration, or wish spell also ends it.At Higher Levels. When you cast this spell using a spell slot of 7th or 8th level, the Duration is 1 year. When you cast this spell using a spell slot of 9th level, the spell lasts until it is ended by one of the Spells mentioned above.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"30","units":"day"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d10","psychic"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":5,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-large-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234114,"modifiedTime":1671220969109,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"JVhKeanAXZH62DrF","name":"Warding Bond","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell wards a willing creature you touch and creates a mystic connection between you and the target until the spell ends. While the target is within 60 feet of you, it gains a +1 bonus to AC and saving throws, and it has resistance to all damage. Also, each time it takes damage, you take the same amount of damage.The spell ends if you drop to 0 hit points or if you and the target become separated by more than 60 feet. It also ends if the spell is cast again on either of the connected creatures. You can also dismiss the spell as an action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pair of platinum rings worth at least 50 gp each, which you and the target must wear for the duration","consumed":false,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234114,"modifiedTime":1671220969113,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"JYuRBwxpoFhXduvD","name":"Time Stop","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You briefly stop the flow of time for everyone but yourself. No time passes for other creatures, while you take 1d4 + 1 turns in a row, during which you can use Actions and move as normal.This spell ends if one of the Actions you use during this period, or any Effects that you create during this period, affects a creature other than you or an object being worn or carried by someone other than you. In addition, the spell ends if you move to a place more than 1,000 feet from the location where you cast it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4+1","save":{"ability":"","dc":null,"scaling":"spell"},"level":9,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/time/clock-stopwatch-white-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234114,"modifiedTime":1671220969118,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"JbxsYXxSOTZbf9I0","name":"Spiritual Weapon","type":"spell","img":"icons/magic/fire/dagger-rune-enchant-flame-purple.webp","system":{"description":{"value":"You create a floating, spectral weapon within range that lasts for the duration or until you cast this spell again. When you cast the spell, you can make a melee spell attack against a creature within 5 feet of the weapon. On a hit, the target takes force damage equal to 1d8 + your spellcasting ability modifier.As a bonus action on your turn, you can move the weapon up to 20 feet and repeat the attack against a creature within 5 feet of it.The weapon can take whatever form you choose. Clerics of deities who are associated with a particular weapon (as St. Cuthbert is known for his mace and Thor for his hammer) make this spell's effect resemble that weapon.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for every two slot levels above the 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"square"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["floor(@item.level / 2)d8 + @mod","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234115,"modifiedTime":1671220969123,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KJRVzeMQXPj8Gtyx","name":"Spider Climb","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Until the spell ends, one willing creature you touch gains the ability to move up, down, and across vertical surfaces and upside down along ceilings, while leaving its hands free. The target also gains a climbing speed equal to its walking speed.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A drop of bitumen and a spider","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-chains-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234116,"modifiedTime":1671220969129,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KeunEkg1JYbOCOhV","name":"Circle of Death","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A sphere of negative energy ripples out in a 60-foot radius from a point within range. Each creature in that area must make a Constitution saving throw. A target takes 8d6 necrotic damage on a failed save, or half as much damage on a successful one.Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the damage increases by 2d6 for each slot level above 6th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"sphere"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d6","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":6,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"The powder of a crushed black pearl worth at least 500 gp.","consumed":false,"cost":500,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"2d6"}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-large-teal-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234116,"modifiedTime":1671220969133,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KgEw3sDr39C6g8nY","name":"Conjure Minor Elementals","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You summon elementals that appear in unoccupied spaces that you can see within range. You choose one the following options for what appears:\n\nOne elemental of challenge rating 2 or lower\nTwo elementals of challenge rating 1 or lower\nFour elementals of challenge rating 1/2 or lower\nEight elementals of challenge rating 1/4 or lower.\n\nAn elemental summoned by this spell disappears when it drops to 0 hit points or when the spell ends.The summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which has its own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions.Higher Levels. When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 6th-level slot and three times as many with an 8th-level slot.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234117,"modifiedTime":1671220969137,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KhwiSi9fwVfUPtku","name":"Sleep","type":"spell","img":"icons/magic/light/explosion-star-small-pink.webp","system":{"description":{"value":"This spell sends creatures into a magical slumber. Roll 5d8; the total is how many hit points of creatures this spell can affect. Creatures within 20 feet of a point you choose within range are affected in ascending order of their current hit points (ignoring unconscious creatures).Starting with the creature that has the lowest current hit points, each creature affected by this spell falls unconscious until the spell ends, the sleeper takes damage, or someone uses an action to shake or slap the sleeper awake. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.Undead and creatures immune to being charmed aren't affected by this spell.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d8 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of fine sand, rose petals, or a cricket.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"2d8"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234117,"modifiedTime":1671220969141,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Kn7K5PtYUJAKZTTp","name":"Purify Food and Drink","ownership":{"default":0},"type":"spell","system":{"description":{"value":"All nonmagical food and drink within a 5-foot-radius sphere centered on a point of your choice within range is purified and rendered free of poison and disease.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"sphere"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-small-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234118,"modifiedTime":1671220969145,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"KrM3oHVv13RAALrS","name":"Find Traps","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You sense the presence of any trap within range that is within line of sight. A trap, for the purpose of this spell, includes anything that would inflict a sudden or unexpected effect you consider harmful or undesirable, which was specifically intended as such by its creator. Thus, the spell would sense an area affected by the alarm spell, a glyph of warding, or a mechanical pit trap, but it would not reveal a natural weakness in the floor, an unstable ceiling, or a hidden sinkhole.This spell merely reveals that a trap is present. You don't learn the location of each trap, but you do learn the general nature of the danger posed by a trap you sense.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-blue-small.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234118,"modifiedTime":1671220969148,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"L4J89JXqbKs6puEV","name":"Teleport","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell instantly transports you and up to eight willing creatures of your choice that you can see within range, or a single object that you can see within range, to a destination you select. If you target an object, it must be able to fit entirely inside a 10-foot cube, and it can't be held or carried by an unwilling creature.The destination you choose must be known to you, and it must be on the same plane of existence as you. Your familiarity with the destination determines whether you arrive there successfully. The DM rolls d100 and consults the table.\n\n\n\nFamiliarity\nMishap\nSimilar Area\nOff Target\nOn Target\n\n\nPermanent circle\n-\n-\n-\n01-100\n\n\nAssociated object\n-\n-\n-\n01-100\n\n\nVery familiar\n01-05\n06-13\n14-24\n25-100\n\n\nSeen casually\n01-33\n34-43\n44-53\n54-100\n\n\nViewed once\n01-43\n44-53\n54-73\n74-100\n\n\nDescription\n01-43\n44-53\n54-73\n74-100\n\n\nFalse destination\n01-50\n51-100\n-\n-\n\n\n\nFamiliarity. \"Permanent circle\" means a permanent Teleportation Circle whose sigil sequence you know. \"Associated object\" means that you possess an object taken from the desired destination within the last six months, such as a book from a wizard's library, bed linen from a royal suite, or a chunk of marble from a lich's Secret tomb.\"Very familiar\" is a place you have been very often, a place you have carefully studied, or a place you can see when you cast the spell. \"Seen casually\" is someplace you have seen more than once but with which you aren't very familiar. \"Viewed once\" is a place you have seen once, possibly using magic. \"Description\" is a place whose location and appearance you know through someone else's description, perhaps from a map.\"False destination\" is a place that doesn't exist. Perhaps you tried to scry an enemy's sanctum but instead viewed an illusion, or you are attempting to teleport to a familiar location that no longer exists.On Target. You and your group (or the target object) appear where you want to.Off Target. You and your group (or the target object) appear a random distance away from the destination in a random direction. Distance off target is 1d10 × 1d10 percent of the distance that was to be traveled. For example, if you tried to travel 120 miles, landed off target, and rolled a 5 and 3 on the two d10s, then you would be off target by 15 percent, or 18 miles. The DM determines the direction off target randomly by rolling a d8 and designating 1 as north, 2 as northeast, 3 as east, and so on around the points of the compass. If you were teleporting to a coastal city and wound up 18 miles out at sea, you could be in trouble.Similar Area. You and your group (or the target object) wind up in a different area that's visually or thematically similar to the target area. If you are heading for your home laboratory, for example, you might wind up in another wizard's laboratory or in an alchemical supply shop that has many of the same tools and implements as your laboratory. Generally, you appear in the closest similar place, but since the spell has no range limit, you could conceivably wind up anywhere on the plane.Mishap. The spell's unpredictable magic results in a difficult journey. Each teleporting creature (or the target object) takes 3d10 force damage, and the DM rerolls on the table to see where you wind up (multiple mishaps can occur, dealing damage each time).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":9,"width":null,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d100","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234119,"modifiedTime":1671220969156,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LTDNWoFVJNLjiiNa","name":"Arcane Sword","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a sword-shaped plane of force that hovers within range. It lasts for the Duration.When the sword appears, you make a melee spell Attack against a target of your choice within 5 feet of the sword. On a hit, the target takes 3d10 force damage. Until the spell ends, you can use a Bonus Action on each of your turns to move the sword up to 20 feet to a spot you can see and repeat this Attack against the same target or a different one.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A miniature platinum sword with a grip and pommel of copper and zinc, worth 250gp","consumed":false,"cost":250,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/skills/melee/strike-blade-hooked-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234120,"modifiedTime":1671220969161,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LWTUqKkUQdMAmOe0","name":"Color Spray","type":"spell","img":"icons/magic/air/fog-gas-smoke-dense-pink.webp","system":{"description":{"value":"A dazzling array of flashing, colored light springs from your hand. Roll 6d10; the total is how many hit points of creatures this spell can effect. Creatures in a 15-foot cone originating from you are affected in ascending order of their current hit points (ignoring unconscious creatures and creatures that can't see).Starting with the creature that has the lowest current hit points, each creature affected by this spell is blinded until the spell ends. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d10 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d10",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of powder or sand that is colored red, yellow, and blue.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"2d10"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234121,"modifiedTime":1671220969165,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LkvI11Uue774QBKZ","name":"Cloudkill","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a 20-foot-radius sphere of poisonous, yellow-green fog centered on a point you choose within range. The fog spreads around corners. It lasts for the duration or until strong wind disperses the fog, ending the spell. Its area is heavily obscured.When a creature enters the spell's area for the first time on a turn or starts its turn there, that creature must make a Constitution saving throw. The creature takes 5d8 poison damage on a failed save, or half as much damage on a successful one. Creatures are affected even if they hold their breath or don't need to breathe.The fog moves 10 feet away from you at the start of each of your turns, rolling along the surface of the ground. The vapors, being heavier than air, sink to the lowest level of the land, even pouring down openings.Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":5,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234121,"modifiedTime":1671220969172,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LmRHHMtplpxr9fX6","name":"Revivify","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature that has died within the last minute. That creature returns to life with 1 hit point. This spell can't return to life a creature that has died of old age, nor can it restore any missing body parts.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Diamonds worth 300gp, which the spell consumes.","consumed":true,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234122,"modifiedTime":1671220969191,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"LrPvWHBPmiMQQsKB","name":"Dominate Beast","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to beguile a beast that you can see within range. It must succeed on a Wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw.While the beast is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability.You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time, you can also cause the creature to use a reaction, but this requires you to use your own reaction as well.Each time the target takes damage, it makes a new Wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.At Higher Levels. When you cast this spell with a 5th-level spell slot, the duration is concentration, up to 10 minutes. When you use a 6th-level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 7th level or higher, the duration is concentration, up to 8 hours.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":4,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-large-teal-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234122,"modifiedTime":1671220969198,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MAxM77CDUu8dgIRQ","name":"Protection from Poison","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature. If it is poisoned, you neutralize the poison. If more than one poison afflicts the target, you neutralize one poison that you know is present, or you neutralize one at random.For the duration, the target has advantage on saving throws against being poisoned, and it has resistance to poison damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-glowing-triangle-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234123,"modifiedTime":1671220969701,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MBMaQLwoy05qzMJ3","name":"Mislead","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You become Invisible at the same time that an illusory double of you appears where you are standing. The double lasts for the Duration, but the Invisibility ends if you Attack or Cast a Spell.You can use your action to move your illusory double up to twice your speed and make it gesture, speak, and behave in whatever way you choose.You can see through its eyes and hear through its ears as if you were located where it is. On each of your turns as a Bonus Action, you can switch from using its senses to using your own, or back again. While you are using its senses, you are Blinded and Deafened in regard to your own surroundings.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"ill","components":{"vocal":false,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-levitate-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234123,"modifiedTime":1671220969719,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MCEpGpvovcXagwQS","name":"Awaken","ownership":{"default":0},"type":"spell","system":{"description":{"value":"After spending the casting time tracing magical pathways within a precious gemstone, you touch a Huge or smaller beast or plant. The target must have either no Intelligence score or an Intelligence of 3 or less. The target gains an Intelligence of 10. The target also gains the ability to speak one language you know. If the target is a plant, it gains the ability to move its limbs, roots, vines, creepers, and so forth, and it gains senses similar to a human's. Your DM chooses statistics appropriate for the awakened plant, such as the statistics for the awakened shrub or the awakened tree.The awakened beast or plant is charmed by you for 30 days or until you or your companions do anything harmful to it. When the charmed condition ends, the awakened creature chooses whether to remain friendly to you, based on how you treated it while it was charmed.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"hour","cost":8,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"An agate worth at least 1,000 gp, which the spell consumes","consumed":true,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-maple-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234124,"modifiedTime":1671220969745,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MImfWCzEPRMYD3Xp","name":"Freezing Sphere","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A frigid globe of cold energy streaks from your fingertips to a point of your choice within range, where it explodes in a 60-foot-radius sphere. Each creature within the area must make a Constitution saving throw. On a failed save, a creature takes 10d6 cold damage. On a successful save, it takes half as much damage.If the globe strikes a body of water or a liquid that is principally water (not including water-based creatures), it freezes the liquid to a depth of 6 inches over an area 30 feet square. This ice lasts for 1 minute. Creatures that were swimming on the surface of frozen water are trapped in the ice. A trapped creature can use an action to make a Strength check against your spell save DC to break free.You can refrain from firing the globe after completing the spell, if you wish. A small globe about the size of a sling stone, cool to the touch, appears in your hand. At any time, you or a creature you give the globe to can throw the globe (to a range of 40 feet) or hurl it with a sling (to the sling's normal range). It shatters on impact, with the same effect as the normal casting of the spell. You can also set the globe down without shattering it. After 1 minute, if the globe hasn't already shattered, it explodes.At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the damage increases by 1d6 for each slot level above 6th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"sphere"},"range":{"value":300,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d6","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":6,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small crystal sphere","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-blue-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234124,"modifiedTime":1671220969764,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MK6gpQMeDFo0cP9f","name":"Continual Flame","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A flame, equivalent in brightness to a torch, springs forth from an object that you touch. The effect looks like a regular flame, but it creates no heat and doesn't use oxygen. A continual flame can be covered or hidden but not smothered or quenched.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"disp"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Ruby dust worth 50 gp, which the spell consumes","consumed":true,"cost":50,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/explosion-fireball-medium-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234126,"modifiedTime":1674761578009,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MOEmz9N0j0QPkKEE","name":"Prayer of Healing","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Up to six creatures of your choice that you can see within range each regain Hit Points equal to 2d8 + your Spellcasting ability modifier. This spell has no effect on Undead or constructs.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the Healing increases by 1d8 for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":6,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234126,"modifiedTime":1671220969788,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MRxldJd6C4bsBo3O","name":"Levitate","ownership":{"default":0},"type":"spell","system":{"description":{"value":"One creature or object of your choice that you can see within range rises vertically, up to 20 feet, and remains suspended there for the duration. The spell can levitate a target that weighs up to 500 pounds. An unwilling creature that succeeds on a Constitution saving throw is unaffected.The target can move only by pushing or pulling against a fixed object or surface within reach (such as a wall or a ceiling), which allows it to move as if it were climbing. You can change the target's altitude by up to 20 feet in either direction on your turn. If you are the target, you can move up or down as part of your move. Otherwise, you can use your action to move the target, which must remain within the spell's range.When the spell ends, the target floats gently to the ground if it is still aloft.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Either a small leather loop or a piece of golden wire bent into a cup shape with a long shank on one end","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234127,"modifiedTime":1671220969799,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"MUO1uYN7JR1hm4dR","name":"Thaumaturgy","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create one of the following magical effects within range:\n\nYour voice booms up to three times as loud as normal for 1 minute.\nYou cause flames to flicker, brighten, dim, or change color for 1 minute.\nYou cause harmless tremors in the ground for 1 minute.\nYou create a sound that originates from a point of your choice within range.\nYou cause an unlocked door or window to fly open or slam shut.\nYou alter the appearance of your eyes for 1 minute.\n\nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234127,"modifiedTime":1671220969805,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Mzh95utKDPIrjiH8","name":"Detect Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234128,"modifiedTime":1671220969810,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"N2UEFq8X5LRsLcOZ","name":"Shapechange","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You assume the form of a different creature for the Duration. The new form can be of any creature with a Challenge rating equal to your level or lower. The creature can't be a construct or an Undead, and you must have seen the sort of creature at least once. You transform into an average example of that creature, one without any class levels or the Spellcasting trait.Your game statistics are replaced by the statistics of the chosen creature, though you retain your Alignment and Intelligence, Wisdom, and Charisma scores. You also retain all of your skill and saving throw proficiencies, in addition to gaining those of the creature. If the creature has the same proficiency as you and the bonus listed in its Statistics is higher than yours, use the creature's bonus in place of yours. You can't use any legendary Actions or Lair Actions of the new form.You assume the Hit Points and Hit Dice of the new form. When you revert to your normal form, you return to the number of Hit Points you had before you transformed. If you revert as a result of Dropping to 0 Hit Points, any excess damage carries over to your normal form. As long as the excess damage doesn't reduce your normal form to 0 Hit Points, you aren't knocked Unconscious.You retain the benefit of any features from your class, race, or other source and can use them, provided that your new form is physically capable of doing so. You can't use any Special Senses you have (for example, darkvision) unless your new form also has that sense. You can only speak if the creature can normally speak.When you transform, you choose whether your Equipment falls to the ground, merges into the new form, or is worn by it. Worn equipment functions as normal. The DM determines whether it is practical for the new form to wear a piece of equipment, based on the creature's shape and size. Your equipment doesn't change shape or size to match the new form, and any equipment that the new form can't wear must either fall to the ground or merge into your new form. Equipment that merges has no effect in that state.During this spell's Duration, you can use your action to assume a different form following the same restrictions and rules for the original form, with one exception: if your new form has more hit points than your current one, your hit points remain at their current value.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":9,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A jade circlet worth at least 1,500 gp, which you must place on your head before you cast the spell","consumed":false,"cost":1500,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/wolf-paw-glow-large-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234128,"modifiedTime":1671220969815,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NJgxf7pmSsBArIG7","name":"Private Sanctum","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You make an area within range magically secure. The area is a cube that can be as small as 5 feet to as large as 100 feet on each side. The spell lasts for the Duration or until you use an action to dismiss it.When you cast the spell, you decide what sort of security the spell provides, choosing any or all of the following properties:\n\nSound can't pass through the barrier at the edge of the warded area.\nThe barrier of the warded area appears dark and foggy, preventing vision (including darkvision) through it.\nSensors created by Divination spells can't appear inside the protected area or pass through the barrier at its perimeter.\nCreatures in the area can't be targeted by divination spells.\nNothing can Teleport into or out of the warded area.\nPlanar Travel is blocked within the warded area.\n\nCasting this spell on the same spot every day for a year makes this effect permanent.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, you can increase the size of the cube by 100 feet for each slot level beyond 4th. Thus you could protect a cube that can be up to 200 feet on one side by using a spell slot of 5th level.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A thin sheet of lead, a piece of opaque glass, a wad of cotton or cloth, and a powdered chrysolite","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234129,"modifiedTime":1671220969819,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NXWWWgHtWb7Nv21F","name":"Tiny Hut","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A 10-foot-radius immobile dome of force springs into existence around and above you and remains stationary for the duration. The spell ends if you leave its area.Nine creatures of Medium size or smaller can fit inside the dome with you. The spell fails if its area includes a larger creature or more than nine creatures. Creatures and objects within the dome when you cast this spell can move through it freely. All other creatures and objects are barred from passing through it. Spells and other magical effects can't extend through the dome or be cast through it. The atmosphere inside the space is comfortable and dry, regardless of the weather outside.Until the spell ends, you can command the interior to become dimly lit or dark. The dome is opaque from the outside, of any color you choose, but it is transparent from the inside.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"sphere"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A small crystal bead","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234129,"modifiedTime":1671220969825,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"NmoRmM1mhuM3pqnY","name":"Wall of Stone","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A nonmagical wall of solid stone springs into existence at a point you choose within range. The wall is 6 inches thick and is composed of ten 10-foot-by-10-foot panels. Each panel must be contiguous with at least one other panel. Alternatively, you can create 10-foot-by-20-foot panels that are only 3 inches thick.If the wall cuts through a creature's space when it appears, the creature is pushed to one side of the wall (your choice). If a creature would be surrounded on all sides by the wall (or the wall and another solid surface), that creature can make a Dexterity saving throw. On a success, it can use its Reaction to move up to its speed so that it is no longer enclosed by the wall.The wall can have any shape you desire, though it can't occupy the same space as a creature or object. The wall doesn't need to be vertical or rest on any firm foundation. It must, however, merge with and be solidly supported by existing stone. Thus, you can use this spell to bridge a chasm or create a ramp.If you create a span greater than 20 feet in length, you must halve the size of each panel to create supports. You can crudely shape the wall to create crenellations, battlements, and so on.The wall is an object made of stone that can be damaged and thus breached. Each panel has AC 15 and 30 Hit Points per inch of thickness. Reducing a panel to 0 Hit Points destroys it and might cause connected panels to collapse at the DM's discretion.If you maintain your Concentration on this spell for its whole Duration, the wall becomes permanent and can't be dispelled. Otherwise, the wall disappears when the spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"wall"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small block of granite","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-orange-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234130,"modifiedTime":1671220969833,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ODhLKBxLnvvLOnw1","name":"Ray of Enfeeblement","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A black beam of enervating energy springs from your finger toward a creature within range. Make a ranged spell attack against the target. On a hit, the target deals only half damage with weapon attacks that use Strength until the spell ends.At the end of each of the target's turns, it can make a Constitution saving throw against the spell. On a success, the spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":2,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234130,"modifiedTime":1671220969845,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"OVikYmSdHliAG2YD","name":"Insect Plague","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Swarming, biting locusts fill a 20-foot-radius Sphere centered on a point you choose within range. The sphere spreads around corners. The sphere remains for the Duration, and its area is lightly obscured. The sphere's area is difficult terrain.When the area appears, each creature in it must make a Constitution saving throw. A creature takes 4d10 piercing damage on a failed save, or half as much damage on a successful one. A creature must also make this saving throw when it enters the spell's area for the first time on a turn or ends its turn there.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d10 for each slot level above 5th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":300,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":5,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A few grains of sugar, some kernels of grain, and a smear of fat","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d10"}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-maple-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234131,"modifiedTime":1671220969868,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Opwh2PdX4runSBlm","name":"Aid","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your spell bolsters your allies with toughness and resolve. Choose up to three creatures within range. Each target's hit point maximum and current hit points increase by 5 for the duration.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, a target's hit points increase by an additional 5 for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":3,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A tiny strip of white cloth.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"(@item.level - 2) * 5"}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234131,"modifiedTime":1671220969879,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"P6f1PPKPd9BCb742","name":"Compulsion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Creatures of your choice that you can see within range and that can hear you must make a Wisdom saving throw. A target automatically succeeds on this saving throw if it can't be charmed. On a failed save, a target is affected by this spell. Until the spell ends, you can use a bonus action on each of your turns to designate a direction that is horizontal to you. Each affected target must use as much of its movement as possible to move in that direction on its next turn. It can take any action before it moves. After moving in this way, it can make another Wisdom save to try to end the effect.A target isn't compelled to move into an obviously deadly hazard, such as a fire or a pit, but it will provoke opportunity attacks to move in the designated direction.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":4,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/explosion-fireball-large-purple-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234132,"modifiedTime":1671220969883,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"P7mF2MxSuVJwHRRY","name":"Guidance","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one willing creature. Once before the spell ends, the target can roll a d4 and add the number rolled to one ability check of its choice. It can roll the die before or after making the ability check. The spell then ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/buff-flight-wings-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234132,"modifiedTime":1671220969889,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"PQuEgKyCdovOvhqN","name":"Etherealness","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You step into the border regions of the Ethereal Plane, in the area where it overlaps with your current plane. You remain in the Border Ethereal for the Duration or until you use your action to dismiss the spell. During this time, you can move in any direction. If you move up or down, every foot of Movement costs an extra foot. You can see and hear the plane you originated from, but everything there looks gray, and you can't see anything more than 60 feet away.While on the Ethereal Plane, you can only affect and be affected by other creatures on that plane. Creatures that aren't on the Ethereal Plane can't perceive you and can't interact with you, unless a special ability or magic has given them the ability to do so.You ignore all Objects and Effects that aren't on the Ethereal Plane, allowing you to move through objects you perceive on the plane you originated from.When the spell ends, you immediately return to the plane you originated from in the spot you currently occupy. If you occupy the same spot as a solid object or creature when this happens, you are immediately shunted to the nearest unoccupied space that you can occupy and take force damage equal to twice the number of feet you are moved.This spell has no effect if you cast it while you are on the Ethereal Plane or a plane that doesn't border it, such as one of the Outer Planes.At Higher Levels. When you cast this spell using a spell slot of 8th level or higher, you can target up to three willing creatures (including you) for each slot level above 7th. The creatures must be within 10 feet of you when you cast the spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234133,"modifiedTime":1671220969894,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Pyzmm8R7rVsNAPsd","name":"Mass Cure Wounds","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A wave of Healing energy washes out from a point of your choice within range. Choose up to six creatures in a 30-foot-radius Sphere centered on that point. Each target regains Hit Points equal to 3d8 + your Spellcasting ability modifier. This spell has no effect on Undead or constructs.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the Healing increases by 1d8 for each slot level above 5th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234134,"modifiedTime":1671220969899,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"QbQZKoXOgHWN06aa","name":"True Polymorph","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose one creature or nonmagical object that you can see within range. You transform the creature into a different creature, the creature into a nonmagical object, or the object into a creature (the object must be neither worn nor carried by another creature). The transformation lasts for the duration, or until the target drops to 0 hit points or dies. If you concentrate on this spell for the full Duration, the transformation lasts until it is dispelled.This spell has no effect on a target with 0 Hit Points. An unwilling creature can make a Wisdom saving throw, and if it succeeds, it isn't affected by this spell.Creature into Creature. If you turn a creature into another kind of creature, the new form can be any kind you choose whose challenge rating is equal to or less than the target's (or its level, if the target doesn't have a Challenge rating). The target's game statistics, including mental Ability Scores, are replaced by the statistics of the new form. It retains its Alignment and personality.The target assumes the hit points of its new form, and when it reverts to its normal form, the creature returns to the number of Hit Points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked Unconscious.The creature is limited in the Actions it can perform by the nature of its new form, and it can't speak, cast Spells, or take any other action that requires hands or speech, unless its new form is capable of such Actions.The target's gear melds into the new form. The creature can't activate, use, wield, or otherwise benefit from any of its Equipment.Object into Creature. You can turn an object into any kind of creature, as long as the creature's size is no larger than the object's size and the creature's Challenge rating is 9 or lower. The creature is friendly to you and your companions. It acts on each of your turns. You decide what action it takes and how it moves. The DM has the creature's Statistics and resolves all of its Actions and Movement.If the spell becomes permanent, you no longer control the creature. It might remain friendly to you, depending on how you have treated it.Creature into Object. If you turn a creature into an object, it transforms along with whatever it is wearing and carrying into that form. The creature's statistics become those of the object, and the creature has no memory of time spent in this form, after the spell ends and it returns to its normal form.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":9,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A drop of mercury, a dollop of gum arabic, and a wisp of smoke","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-snare-purple-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234134,"modifiedTime":1671220969904,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"QbTxN5dWIbYZ4jLU","name":"Chain Lightning","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a bolt of lightning that arcs toward a target of your choice that you can see within range. Three bolts then leap from that target to as many as three other targets, each of which must be within 30 feet of the first target. A target can be a creature or an object and can be targeted by only one of the bolts.A target must make a Dexterity saving throw. The target takes 10d8 lightning damage on a failed save, or half as much damage on a successful one.Higher Levels. When you cast this spell using a spell slot of 7th level or higher, one additional bolt leaps from the first target to another target for each slot level above 6th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d8","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":6,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of fur; a piece of amber, glass, or a crystal rod; and three silver pins","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/lightning/bolt-forked-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234136,"modifiedTime":1671220969913,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Qf6CAZkc7ms4ZY3e","name":"Goodberry","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Up to ten berries appear in your hand and are infused with magic for the duration. A creature can use its action to eat one berry. Eating a berry restores 1 hit point, and the berry provides enough nourishment to sustain a creature for one day.The berries lose their potency if they have not been consumed within 24 hours of the casting of this spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A spring of mistletoe","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234136,"modifiedTime":1671220969923,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"QvGcdRUSNRKEQJlK","name":"Stone Shape","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a stone object of Medium size or smaller or a section of stone no more than 5 feet in any dimension and form it into any shape that suits your purpose. So, for example, you could shape a large rock into a weapon, idol, or coffer, or make a small passage through a wall, as long as the wall is less than 5 feet thick. You could also shape a stone door or its frame to seal the door shut. The object you create can have up to two hinges and a latch, but finer mechanical detail isn't possible.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Soft clay, which must be worked into roughly the desired shape of the stone object","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/earth/projectile-spiked-stone-boulder-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234137,"modifiedTime":1671220969928,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ReMbjfeOKoSj3O79","name":"Stoneskin","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell turns the flesh of a willing creature you touch as hard as stone. Until the spell ends, the target has resistance to nonmagical bludgeoning, piercing, and slashing damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Diamond dust worth 100 gp, which the spell consumes","consumed":true,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","effects":[{"label":"Stoneskin","icon":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","origin":"Compendium.dnd5e.spells.ReMbjfeOKoSj3O79","duration":{"startTime":null,"seconds":3600,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":true,"_id":"cSVCA9h5OEo5lfBE","changes":[{"key":"system.traits.dr.value","mode":2,"value":"bludgeoning","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"piercing","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"slashing","priority":null},{"key":"system.traits.dr.bypasses","mode":2,"value":"mgc","priority":null}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234137,"modifiedTime":1671220969932,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"RpKjTlYASrfqUPVA","name":"Cone of Cold","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A blast of cold air erupts from your hands. Each creature in a 60-foot cone must make a Constitution saving throw. A creature takes 8d8 cold damage on a failed save, or half as much damage on a successful one.A creature killed by this spell becomes a frozen statue until it thaws.Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d8","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small crystal or glass cone","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/water/projectiles-ice-faceted-shard-salvo-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234138,"modifiedTime":1671220969937,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"RvEqsD89Zvd5yex4","name":"Arcanist's Magic Aura","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You place an Illusion on a creature or an object you touch so that Divination Spells reveal false information about it. The target can be a willing creature or an object that isn't being carried or worn by another creature.When you cast the spell, choose one or both of the following Effects. The effect lasts for the Duration. If you cast this spell on the same creature or object every day for 30 days, placing the same effect on it each time, the illusion lasts until it is dispelled.False Aura. You change the way the target appears to Spells and magical Effects, such as Detect Magic, that detect magical auras. You can make a nonmagical object appear magical, a magical object appear nonmagical, or change the object's magical aura so that it appears to belong to a specific school of magic that you choose. When you use this effect on an object, you can make the false magic apparent to any creature that handles the item.Mask. You change the way the target appears to Spells and magical Effects that detect creature types, such as a paladin's Divine Sense or the trigger of a symbol spell. You choose a creature type and other Spells and magical Effects treat the target as if it were a creature of that type or of that Alignment.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"a small square of silk","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-magenta.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234138,"modifiedTime":1671220969942,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"S7VbUetIfVT7B6Eq","name":"Darkness","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Magical darkness spreads from a point you choose within range to fill a 15-foot-radius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and nonmagical light can't illuminate it.If the point you choose is on an object you are holding or one that isn't being worn or carried, the darkness emanates from the object and moves with it. Completely covering the source of the darkness with an opaque object, such as a bowl or a helm, blocks the darkness.If any of this spell's area overlaps with an area of light created by a spell of 2nd level or lower, the spell that created the light is dispelled.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Bat fur and a drop of pitch or piece of coal","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234139,"modifiedTime":1671220969947,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SAj03P2WBDiWu7zu","name":"Faithful Hound","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You conjure a phantom watchdog in an unoccupied space that you can see within range, where it remains for the Duration, until you dismiss it as an action, or until you move more than 100 feet away from it.The hound is Invisible to all creatures except you and can't be harmed. When a Small or larger creature comes within 30 feet of it without first speaking the password that you specify when you cast this spell, the hound starts barking loudly. The hound sees invisible creatures and can see into the Ethereal Plane. It ignores illusions.At the start of each of your turns, the hound attempts to bite one creature within 5 feet of it that is hostile to you. The hound's Attack bonus is equal to your Spellcasting ability modifier + your Proficiency Bonus. On a hit, it deals 4d8 piercing damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A tiny silver whistle, a piece of bone, and a thread","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/wolf-paw-glow-large-purple-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234140,"modifiedTime":1671220969974,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SLxA9QhrggTz0taU","name":"Hallow","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a point and infuse an area around it with holy (or unholy) power. The area can have a radius up to 60 feet, and the spell fails if the radius includes an area already under the effect a hallow spell. The affected area is subject to the following Effects.First, Celestials, Elementals, fey, Fiends, and Undead can't enter the area, nor can such creatures charm, frighten, or possess creatures within it. Any creature Charmed, Frightened, or possessed by such a creature is no longer charmed, frightened, or possessed upon entering the area. You can exclude one or more of those types of creatures from this effect.Second, you can bind an extra effect to the area. Choose the effect from the following list, or choose an effect offered by the DM. Some of these Effects apply to creatures in the area; you can designate whether the effect applies to all creatures, creatures that follow a specific deity or leader, or creatures of a specific sort, such as orcs or Trolls. When a creature that would be affected enters the spell's area for the first time on a turn or starts its turn there, it can make a Charisma saving throw. On a success, the creature ignores the extra effect until it leaves the area.\n\nCourage. Affected creatures can't be Frightened while in the area.\nDarkness. Darkness fills the area. Normal light, as well as magical light created by Spells of a lower level than the slot you used to cast this spell, can't illuminate the area.\nDaylight. Bright light fills the area. Magical darkness created by Spells of a lower level than the slot you used to cast this spell can't extinguish the light.\nEnergy Protection. Affected creatures in the area have Resistance to one damage type of your choice, except for bludgeoning, piercing, or slashing.\nEnergy Vulnerability. Affected creatures in the area have vulnerability to one damage type of your choice, except for bludgeoning, piercing, or slashing.\nEverlasting Rest. Dead bodies interred in the area can't be turned into Undead.\nExtradimensional Interference. Affected creatures can't move or travel using teleportation or by extradimensional or interplanar means.\nFear. Affected creatures are Frightened while in the area.\nSilence. No sound can emanate from within the area, and no sound can reach into it.\nTongues. Affected creatures can communicate with any other creature in the area, even if they don't share a Common language.\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"hour","cost":24,"condition":""},"duration":{"value":"","units":"disp"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Herbs, oils, and incense worth at least 1000gp, which the spell consumes","consumed":true,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-large-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234140,"modifiedTime":1674761585826,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SbSvZKkJASyk8jKo","name":"Druidcraft","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Whispering to the spirits of Nature, you create one of the following Effects within range:\n\nYou create a tiny, harmless sensory effect that predicts what the weather will be at your location for the next 24 hours. The effect might manifest as a golden orb for clear skies, a cloud for rain, Falling snowflakes for snow, and so on. This effect persists for 1 round.\nYou instantly make a flower blossom, a seed pod open, or a leaf bud bloom.\nYou create an Instantaneous, harmless sensory effect, such as Falling leaves, a puff of wind, the sound of a small animal, or the faint odor of skunk. The effect must fit in a 5-foot cube.\nYou instantly light or snuff out a Candle, a torch, or a small campfire.\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/vines-thorned-glow-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234141,"modifiedTime":1671220969986,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Sgjrf8qqv97CCWM4","name":"Magic Weapon","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a nonmagical weapon. Until the spell ends, that weapon becomes a magic weapon with a +1 bonus to Attack rolls and Damage Rolls.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the bonus increases to +2. When you use a spell slot of 6th level or higher, the bonus increases to +3.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/dagger-rune-enchant-flame-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234141,"modifiedTime":1671220969994,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SgrEKiC6dAtvy6Pz","name":"Instant Summons","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch an object weighing 10 pounds or less whose longest dimension is 6 feet or less. The spell leaves an Invisible mark on its surface and invisibly inscribes the name of the item on the sapphire you use as the material component. Each time you cast this spell, you must use a different sapphire.At any time thereafter, you can use your action to speak the item's name and crush the sapphire. The item instantly appears in your hand regardless of physical or planar distances, and the spell ends.If another creature is holding or carrying the item, crushing the sapphire doesn't transport the item to you, but instead you learn who the creature possessing the object is and roughly where that creature is located at that moment.Dispel Magic or a similar effect successfully applied to the sapphire ends this spell's effect.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"disp"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A sapphire worth 1000gp","consumed":false,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234142,"modifiedTime":1674761603476,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"SleYkHovQ8NagmeV","name":"Locate Object","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Describe or name an object that is familiar to you. You sense the direction to the object's location, as long as that object is within 1,000 feet of you. If the object is in motion, you know the direction of its movement.The spell can locate a specific object known to you, as long as you have seen it up close—within 30 feet—at least once. Alternatively, the spell can locate the nearest object of a particular kind, such as a certain kind of apparel, jewelry, furniture, tool, or weapon.This spell can't locate an object if any thickness of lead, even a thin sheet, blocks a direct path between you and the object.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A forked twig","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/earth/projectile-stone-boulder-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234143,"modifiedTime":1671220970003,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Szvk5FEVQW3uhJi5","name":"Haste","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a willing creature that you can see within range. Until the spell ends, the target's speed is doubled, it gains a +2 bonus to AC, it has advantage on Dexterity Saving Throws, and it gains an additional action on each of its turns. That action can be used only to take the Attack (one weapon attack only), Dash, Disengage, Hide, or Use an Object action.When the spell ends, the target can't move or take Actions until after its next turn, as a wave of lethargy sweeps over it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A shaving of licorice root","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/buff-flight-wings-runes-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234143,"modifiedTime":1671220970012,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"T1vpZLam7LezjToj","name":"Divine Word","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You utter a divine word, imbued with the power that shaped the world at the dawn of Creation. Choose any number of creatures you can see within range. Each creature that can hear you must make a Charisma saving throw. On a failed save, a creature suffers an effect based on its current hit points:\n\n50 Hit Points or fewer: Deafened for 1 minute\n40 Hit Points or fewer: Deafened and Blinded for 10 minutes\n30 Hit Points or fewer: Blinded, Deafened, and Stunned for 1 Hour\n20 Hit Points or fewer: killed instantly\n\nRegardless of its current Hit Points, a Celestial, an elemental, a fey, or a fiend that fails its save is forced back to its plane of Origin (if it isn't there already) and can't return to your current plane for 24 hours by any means short of a wish spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":7,"school":"evo","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-large-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234144,"modifiedTime":1671220970020,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"TIoadMIsUKD4edXi","name":"Astral Projection","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You and up to eight willing creatures within range project your astral bodies into the Astral Plane (the spell fails and the casting is wasted if you are already on that plane). The material body you leave behind is unconscious and in a state of suspended animation, it doesn't need food or air and doesn't age.Your astral body resembles your mortal form in almost every way, replicating your game statistics and possessions. The principal difference is the addition of a silvery cord that extends from between your shoulder blades and trails behind you, fading to invisibility after 1 foot. This cord is your tether to your material body. As long as the tether remains intact, you can find your way home. If the cord is cut-something that can happen only when an effect specifically states that it does-your soul and body are separated, killing you instantly.Your astral form can freely travel through the Astral Plane and can pass through portals there leading to any other plane. If you enter a new plane or return to the plane you were on when casting this spell, your body and possessions are transported along the silver cord, allowing you to re-enter your body as you enter the new plane. Your astral form is a separate incarnation. Any damage or other effects that apply to it have no effect on your physical body, nor do they persist when you return to it.The spell ends for you and your companions when you use your action to dismiss it. When the spell ends, the affected creature returns to its physical body, and it awakens.The spell might also end early for you or one of your companions. A successful dispel magic spell used against an astral or physical body ends the spell for that creature. If a creature's original body or its astral form drops to 0 hit points, the spell ends for that creature. If the spell ends and the silver cord is intact, the cord pulls the creature's astral form back to its body, ending its state of suspended animation.If you are returned to your body prematurely, your companions remain in their astral forms and must find their own way back to their bodies, usually by dropping to 0 hit points.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"spec"},"cover":null,"target":{"value":9,"width":null,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":9,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"For each creature you affect with this spell, you must provide one jacinth worth at least 1,000 gp and one ornately carved bar of silver worth at least 100 gp, all of which the spell consumes","consumed":true,"cost":1100,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-levitate-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234144,"modifiedTime":1671220970025,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"TfRzwEgBHHkCc6Ql","name":"Irresistible Dance","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose one creature that you can see within range. The target begins a comic dance in place: shuffling, tapping its feet, and capering for the duration. Creatures taht can't be charmed are immune to this spell.A dancing creature must use all its movement to dance without leaving its space and has disadvantage on Dexterity saving throws and attack rolls. While the target is affected by this spell, other creatures have advantage on attack rolls against it. As an action, a dancing creature makes a Wisdom saving throw to regain control of itself. On a successful save, the spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":6,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/energy-stream-link-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234145,"modifiedTime":1671220970033,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"TgHsuhNasPbhu8MO","name":"Guardian of Faith","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A Large Spectral Guardian appears and hovers for the Duration in an unoccupied space of your choice that you can see within range. The guardian occupies that space and is indistinct except for a gleaming sword and shield emblazoned with the symbol of your deity.Any creature hostile to you that moves to a space within 10 feet of the guardian for the first time on a turn must succeed on a Dexterity saving throw. The creature takes 20 radiant damage on a failed save, or half as much damage on a successful one. The guardian vanishes when it has dealt a total of 60 damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["20","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":4,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/buff-flight-wings-runes-blue-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234145,"modifiedTime":1671220970041,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"TkJ8Wtg1L7TZtspm","name":"Dispel Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Shimmering energy surrounds and protects you from fey, Undead, and creatures originating from Beyond the Material Plane. For the Duration, Celestials, Elementals, fey, Fiends, and undead have disadvantage on Attack rolls against you.You can end the spell early by using either of the following special functions.Break Enchantment. As your action, you touch a creature you can reach that is Charmed, Frightened, or possessed by a Celestial, an elemental, a fey, a fiend, or an Undead. The creature you touch is no longer charmed, frightened, or possessed by such creatures.Dismissal. As your action, make a melee spell Attack against a Celestial, an elemental, a fey, a fiend, or an Undead you can reach. On a hit, you attempt to drive the creature back to its home plane. The creature must succeed on a Charisma saving throw or be sent back to its home plane (if it isn't there already). If they aren't on their home plane, undead are sent to the Shadowfell, and fey are sent to the Feywild.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":5,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Holy water or powdered silver and iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234146,"modifiedTime":1671220970046,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"TwlD4PLcltv7Xh7j","name":"Stinking Cloud","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a 20-foot-radius sphere of yellow, nauseating gas centered on a point within range. The cloud spreads around corners, and its area is heavily obscured. The cloud lingers in the air for the duration.Each creature that is completely within the cloud at the start of its turn must make a Constitution saving throw against poison. On a failed save, the creature spends its action that turn retching and reeling. Creatures that don't need to breathe or are immune to poison automatically succeed on this saving throw.A moderate wind (at least 10 miles per hour) disperses the cloud after 4 rounds. A strong wind (at least 20 miles per hour) disperses it after 1 round.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":3,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A rotten egg or several skunk cabbage leaves","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-dense-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234146,"modifiedTime":1671220970050,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"UDUnlfPsOAbq2RSE","name":"Blur","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your body becomes blurred, shifting and wavering to all who can see you. For the duration, any creature has disadvantage on attack rolls against you. An attacker is immune to this effect if it doesn't rely on sight, as with blindsight, or can see through illusions, as with truesight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234147,"modifiedTime":1671220970071,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"UJJu9c2UvCzVljiP","name":"Web","type":"spell","img":"icons/magic/control/debuff-chains-ropes-net-white.webp","system":{"description":{"value":"You conjure a mass of thick, sticky webbing at a point of your choice within range. The webs fill a 20-foot cube from that point for the Duration. The webs are difficult terrain and lightly obscure their area.\n If the webs aren't anchored between two solid masses (such as walls or trees) or layered across a floor, wall, or ceiling, the conjured web collapses on itself, and the spell ends at the start of your next turn. Webs layered over a flat surface have a depth of 5 feet.\n Each creature that starts its turn in the webs or that enters them during its turn must make a Dexterity saving throw. On a failed save, the creature is Restrained as long as it remains in the webs or until it breaks free.\n A creature Restrained by the webs can use its action to make a Strength check against your spell save DC. If it succeeds, it is no longer Restrained.\n The webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"2d4[fire]","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":2,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of spiderweb","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234147,"modifiedTime":1671220970079,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"UfHQhA54M4323gVO","name":"Vampiric Touch","ownership":{"default":0},"type":"spell","system":{"description":{"value":"The touch of your shadow-wreathed hand can siphon life force from others to heal your wounds. Make a melee spell attack against a creature within your reach. On a hit, the target takes 3d6 necrotic damage, and you regain hit points equal to half the amount of necrotic damage dealt. Until the spell ends, you can make the attack again on each of your turns as an action.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{},"img":"icons/magic/unholy/strike-beam-blood-red-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234148,"modifiedTime":1671220970083,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Utk1OQRwYkMkFRD3","name":"Mage Hand","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.The hand can't attack, activate magic items, or carry more than 10 pounds.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/water/water-hand.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234148,"modifiedTime":1671220970087,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VtCXMdyM6mAdIJZb","name":"Death Ward","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature and grant it a measure of protection from death.The first time the target would drop to 0 hit points as a result of taking damage, the target instead drops to 1 hit point, and the spell ends.If the spell is still in effect when the target is subjected to an effect that would kill it instantaneously without dealing damage, that effect is instead negated against the target, and the spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/fear-fright-monster-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234149,"modifiedTime":1671220970092,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VzgFzcmocr1X1cp4","name":"Shillelagh","ownership":{"default":0},"type":"spell","system":{"description":{"value":"The wood of a club or quarterstaff you are holding is imbued with nature's power. For the duration, you can use your spellcasting ability instead of Strength for the attack and damage rolls of melee attacks using that weapon, and the weapon's damage die becomes a d8. The weapon also becomes magical, if it isn't already. The spell ends if you cast it again or if you let go of the weapon.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A shamrock leaf, and a club or quarterstaff","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/dagger-rune-enchant-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234149,"modifiedTime":1671220970099,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"W4Qx5z0id6da0vqg","name":"Legend Lore","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Name or describe a person, place, or object. The spell brings to your mind a brief summary of the significant lore about the thing you named. The lore might consist of current tales, forgotten stories, or even secret lore that has never been widely known. If the thing you named isn't of legendary importance, you gain no information. The more information you already have about the thing, the more precise and detailed the information you receive is.The information you learn is accurate but might be couched in figurative language. For example, if you have a mysterious magic axe on hand, the spell might yield this information: \"Woe to the evildoer whose hand touches the axe, for even the haft slices the hand of the evil ones. Only a true Child of Stone, lover and beloved of Moradin, may awaken the true powers of the axe, and only with the sacred word Rudnogg on the lips.\"","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Incense worth at least 250gp, which the spell consumes, and four ivory strips worth at least 50gp each.","consumed":true,"cost":450,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234150,"modifiedTime":1671220970103,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WN2LWEljYU6QqnRH","name":"Ice Storm","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A hail of rock-hard ice pounds to the ground in a 20-foot-radius, 40-foot-high Cylinder centered on a point within range. Each creature in the cylinder must make a Dexterity saving throw. A creature takes 2d8 bludgeoning damage and 4d6 cold damage on a failed save, or half as much damage on a successful one.Hailstones turn the storm's area of effect into difficult terrain until the end of your next turn.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the bludgeoning damage increases by 1d8 for each slot level above 4th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cylinder"},"range":{"value":300,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","bludgeoning"],["4d6","cold"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":4,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of dust and a few drops of water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/water/projectiles-ice-faceted-shard-salvo-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234152,"modifiedTime":1671220970107,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WTbOQBsarsL1LuXJ","name":"Thunderwave","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A wave of thunderous force sweeps out from you. Each creature in a 15-foot cube originating from you must make a Constitution saving throw. On a failed save, a creature takes 2d8 thunder damage and is pushed 10 feet away from you. On a successful save, the creature takes half as much damage and isn't pushed.In addition, unsecured objects that are completely within the area of effect are automatically pushed 10 feet away from you by the spell's effect, and the spell emits a thunderous boom audible out to 300 feet.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cube"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","thunder"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/lightning/bolt-forked-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234152,"modifiedTime":1671220970113,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WahI41a3goVUg0x1","name":"Enlarge/Reduce","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You cause a creature or an object you can see within range to grow larger or smaller for the Duration. Choose either a creature or an object that is neither worn nor carried. If the target is unwilling, it can make a Constitution saving throw. On a success, the spell has no effect.If the target is a creature, everything it is wearing and carrying changes size with it. Any item dropped by an affected creature returns to normal size at once.Enlarge. The target's size doubles in all dimensions, and its weight is multiplied by eight. This growth increases its size by one category—from Medium to Large, for example. If there isn't enough room for the target to double its size, the creature or object attains the maximum possible size in the space available. Until the spell ends, the target also has advantage on Strength Checks and Strength Saving Throws. The target's Weapons also grow to match its new size. While these Weapons are enlarged, the target's attacks with them deal 1d4 extra damage.Reduce. The target's size is halved in all dimensions, and its weight is reduced to one-eighth of normal. This reduction decreases its size by one category—from Medium to Small, for example. Until the spell ends, the target also has disadvantage on Strength Checks and Strength Saving Throws. The target's Weapons also shrink to match its new size. While these Weapons are reduced, the target's attacks with them deal 1d4 less damage (this can't reduce the damage below 1).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A pinch of powdered iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/energy-stream-link-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234153,"modifiedTime":1671220970118,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Wl2vtJ4hCt2tpWfR","name":"Weird","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Drawing on the deepest fears of a group of creatures, you create illusory creatures in their minds, visible only to them. Each creature in a 30-foot-radius sphere centered on a point of your choice within range must make a Wisdom saving throw. On a failed save, a creature becomes Frightened for the Duration. The illusion calls on the creature's deepest fears, manifesting its worst nightmares as an implacable threat. At the end of each of the Frightened creature's turns, it must succeed on a Wisdom saving throw or take 4d10 psychic damage. On a successful save, the spell ends for that creature.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"sphere"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10","psychic"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":9,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/fear-fright-monster-grin-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234153,"modifiedTime":1671220970122,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WmQpxfjZwF3MGUby","name":"Globe of Invulnerability","ownership":{"default":0},"type":"spell","system":{"description":{"value":"An immobile, faintly shimmering barrier springs into existence in a 10-foot radius around you and remains for the Duration.Any spell of 5th level or lower cast from outside the barrier can't affect creatures or Objects within it, even if the spell is cast using a higher level spell slot. Such a spell can target creatures and Objects within the barrier, but the spell has no effect on them. Similarly, the area within the barrier is excluded from the areas affected by such Spells.At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the barrier blocks Spells of one level higher for each slot level above 6th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A glass or crystal bead that shatters when the spell ends","consumed":true,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-pentagon-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234154,"modifiedTime":1671220970128,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WzvJ7G3cqvIubsLk","name":"Greater Restoration","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You imbue a creature you touch with positive energy to undo a debilitating effect. You can reduce the target's Exhaustion level by one, or end one of the following Effects on the target:\n\nOne effect that Charmed or Petrified the target\nOne curse, including the target's Attunement to a cursed magic item\nAny reduction to one of the target's Ability Scores\nOne effect reducing the target's hit point maximum\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"diamond dust worth at least 100gp, which the spell consumes","consumed":true,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-flame-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234154,"modifiedTime":1671220970132,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"X3DrXgxjwI2dvkD6","name":"Wall of Fire","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a wall of fire on a solid surface within range. You can make the wall up to 60 feet long, 20 feet high, and 1 foot thick, or a ringed wall up to 20 feet in diameter, 20 feet high, and 1 foot thick. The wall is opaque and lasts for the duration.When the wall appears, each creature within its area must make a Dexterity saving throw. On a failed save, a creature takes 5d8 fire damage, or half as much damage on a successful save.One side of the wall, selected by you when you cast this spell, deals 5d8 fire damage to each creature that ends its turn within 10 feet of that side or inside the wall. A creature takes the same damage when it enters the wall for the first time on a turn or ends its turn there. The other side of the wall deals no damage.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"wall"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":4,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small piece of phosphorous","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234155,"modifiedTime":1671220970136,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"X4c8xCkmF8U9HUMz","name":"Mirror Image","type":"spell","img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","system":{"description":{"value":"Three illusory duplicates of yourself appear in your space. Until the spell ends, the duplicates move with you and mimic your actions, shifting position so it's impossible to track which image is real. You can use your action to dismiss the illusory duplicates.\nEach time a creature targets you with an attack during the spell's duration, roll a [[/r 1d20 # Mirror Image Check]] to determine whether the attack instead targets one of your duplicates.\nIf you have three duplicates, you must roll a 6 or higher to change the attack's target to a duplicate. With two duplicates, you must roll an 8 or higher. With one duplicate, you must roll an 11 or higher.\nA duplicate's AC equals 10 + your Dexterity modifier. If an attack hits a duplicate, the duplicate is destroyed. A duplicate can be destroyed only by an attack that hits it. It ignores all other damage and effects. The spell ends when all three duplicates are destroyed.\nA creature is unaffected by this spell if it can't see, if it relies on senses other than sight, such as blindsight, or if it can perceive illusions as false, as with truesight.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d20","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234155,"modifiedTime":1671220970140,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"X8w9EzYLGc4vQ1H2","name":"Animal Messenger","ownership":{"default":0},"type":"spell","system":{"description":{"value":"By means of this spell, you use an animal to deliver a message. Choose a Tiny beast you can see within range, such as a squirrel, a blue jay, or a bat. You specify a location, which you must have visited, and a recipient who matches a general description, such as \"a man or woman dressed in the uniform of the town guard\" or \"a red-haired dwarf wearing a pointed hat.\" You also speak a message of up to twenty-five words. The target beast travels for the duration of the spell toward the specified location, covering about 50 miles per 24 hours for a flying messenger, or 25 miles for other animals.When the messenger arrives, it delivers your message to the creature that you described, replicating the sound of your voice. The messenger speaks only to a creature matching the description you gave. If the messenger doesn't reach its destination before the spell ends, the message is lost, and the beast makes its way back to where you cast this spell.At Higher Levels. If you cast this spell using a spell slot of 3rd level or higher, the duration of the spell increases by 48 hours for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24 + (@item.level - 2) * 48","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A morsel of food.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/wolf-paw-glow-small-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234156,"modifiedTime":1671220970145,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XT7nzJmVGgv73uaf","name":"Conjure Celestial","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You summon a celestial of challenge rating 4 or lower, which appears in an unoccupied space that you can see within range. The celestial disappears when it drops to 0 hit points or when the spell ends.The celestial is friendly to you and your companions for the duration. Roll initiative for the celestial, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you), as long as they don't violate its alignment. If you don't issue any commands to the celestial, it defends itself from hostile creatures but otherwise takes no actions.Higher Levels. When you cast this spell using a 9th-level spell slot, you summon a celestial of challenge rating 5 or lower.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234156,"modifiedTime":1671220970149,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XXUDGFELgoskdOD0","name":"Fear","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You project a phantasmal image of a creature's worst fears. Each creature in a 30-foot cone must succeed on a Wisdom saving throw or drop whatever it is holding and become Frightened for the duration.While Frightened by this spell, a creature must take the Dash action and move away from you by the safest available route on each of its turns, unless there is nowhere to move. If the creature ends its turn in a location where it doesn't have line of sight to you, the creature can make a Wisdom saving throw. On a successful save, the spell ends for that creature.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":3,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A white feather or the heart of a hen.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/fear-fright-monster-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234157,"modifiedTime":1671220970168,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XZhdgVK3cLoxNCQl","name":"Remove Curse","ownership":{"default":0},"type":"spell","system":{"description":{"value":"At your touch, all curses affecting one creature or object end. If the object is a cursed magic item, its curse remains, but the spell breaks its owner's Attunement to the object so it can be removed or discarded.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234157,"modifiedTime":1671220970178,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XbwGq5kDJNvAxNXV","name":"Gate","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You conjure a portal linking an unoccupied space you can see within range to a precise location on a different plane of existence. The portal is a circular opening, which you can make 5 to 20 feet in diameter. You can orient the portal in any direction you choose. The portal lasts for the Duration.The portal has a front and a back on each plane where it appears. Travel through the portal is possible only by moving through its front. Anything that does so is instantly transported to the other plane, appearing in the unoccupied space nearest to the portal.Deities and other planar rulers can prevent portals created by this spell from opening in their presence or anywhere within their domains.When you cast this spell, you can speak the name of a specific creature (a pseudonym, title, or nickname doesn't work). If that creature is on a plane other than the one you are on, the portal opens in the named creature's immediate vicinity and draws the creature through it to the nearest unoccupied space on your side of the portal. You gain no special power over the creature, and it is free to act as the DM deems appropriate. It might leave, Attack you, or help you.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":9,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A diamond at least worth 5000gp","consumed":false,"cost":5000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234158,"modifiedTime":1671220970189,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XqzXSKNR75ZdYTA9","name":"Divination","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your magic and an offering put you in contact with a god or a god's servants. You ask a single question concerning a specific goal, event, or activity to occur within 7 days. The DM offers a truthful reply. The reply might be a short phrase, a cryptic rhyme, or an omen.The spell doesn't take into account any possible circumstances that might change the outcome, such as the casting of additional spells or the loss or gain of a companion.If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get a random reading. The DM makes this roll in secret.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"Incense and a sacrificial offering appropiate to your religion, together worth at least 25gp, which the spell consumes","consumed":true,"cost":25,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234159,"modifiedTime":1671220970197,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XvbiNhNqXXIFisIy","name":"Shocking Grasp","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Lightning springs from your hand to deliver a shock to a creature you try to touch. Make a melee spell attack against the target. You have advantage on the attack roll if the target is wearing armor made of metal. On a hit, the target takes 1d8 lightning damage, and it can't take reactions until the start of its next turn.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","lightning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{},"img":"icons/magic/lightning/bolt-forked-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234159,"modifiedTime":1671220970201,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"XzkJpE6XpZfKjODD","name":"True Seeing","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell gives the willing creature you touch the ability to see things as they actually are. For the duration, the creature has truesight, notices secret doors hidden by magic, and can see into the Ethereal Plane, all out to a range of 120 feet.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"An ointment for the eyes that costs 25gp; is made from mushroom powder, saffron, and fat; and is consumed by the spell","consumed":true,"cost":25,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-large-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234160,"modifiedTime":1671220970206,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Y6oItIuhOJZ0i0FC","name":"Mass Heal","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A flood of Healing energy flows from you into injured creatures around you. You restore up to 700 Hit Points, divided as you choose among any number of creatures that you can see within range. Creatures healed by this spell are also cured of all Diseases and any effect making them Blinded or Deafened. This spell has no effect on Undead or constructs.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["700","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":9,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-flame-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234160,"modifiedTime":1671220970213,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Y7uWUO4yqUN0JKl0","name":"Forcecage","ownership":{"default":0},"type":"spell","system":{"description":{"value":"An immobile, Invisible, cube-shaped prison composed of magical force springs into existence around an area you choose within range. The prison can be a cage or a solid box, as you choose.A prison in the shape of a cage can be up to 20 feet on a side and is made from 1/2-inch diameter bars spaced 1/2 inch apart.A prison in the shape of a box can be up to 10 feet on a side, creating a solid barrier that prevents any matter from passing through it and blocking any Spells cast into or out from the area.When you cast the spell, any creature that is completely inside the cage's area is trapped. Creatures only partially within the area, or those too large to fit inside the area, are pushed away from the center of the area until they are completely outside the area.A creature inside the cage can't leave it by nonmagical means. If the creature tries to use teleportation or interplanar travel to leave the cage, it must first make a Charisma saving throw. On a success, the creature can use that magic to exit the cage. On a failure, the creature can't exit the cage and wastes the use of the spell or effect. The cage also extends into the Ethereal Plane, blocking ethereal travel.This spell can't be dispelled by Dispel Magic.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":100,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":7,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Ruby dust worth 1500gp","consumed":false,"cost":1500,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-chains-ropes-net-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234161,"modifiedTime":1671220970220,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YBda6nLKjxdT1LbS","name":"Water Walk","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell grants the ability to move across any liquid surface—such as water, acid, mud, snow, quicksand, or lava—as if it were harmless solid ground (creatures crossing molten lava can still take damage from the heat). Up to ten willing creatures you can see within range gain this ability for the duration.If you target a creature submerged in a liquid, the spell carries the target to the surface of the liquid at a rate of 60 feet per round.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A piece of cork","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/creatures/slimes/slime-movement-swirling-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234161,"modifiedTime":1671220970225,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YWtwzp6ZnQJMEmVW","name":"Plant Growth","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell channels vitality into plants within a specific area. There are two possible uses for the spell, granting either immediate or long-term benefits.If you cast this spell using 1 action, choose a point within range. All normal plants in a 100-foot radius centered on that point become thick and overgrown. A creature moving through the area must spend 4 feet of movement for every 1 foot it moves.You can exclude one or more areas of any size within the spell's area from being affected.If you cast this spell over 8 hours, you enrich the land. All plants in a half-mile radius centered on a point within range become enriched for 1 year. The plants yield twice the normal amount of food when harvested.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"radius"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-triple-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234162,"modifiedTime":1671220970228,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Z9p1vezIn95jw1Yw","name":"Eldritch Blast","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A beam of crackling energy streaks toward a creature within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 force damage.The spell creates more than one beam when you reach higher levels: two beams at 5th level, three beams at 11th level, and four beams at 17th level. You can direct the beams at the same target or at different ones. Make a separate attack roll for each beam.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-fireball-smoke-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234162,"modifiedTime":1671220970233,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZPd73HtKF3At11jh","name":"Control Weather","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You take control of the weather within 5 miles of you for the duration. You must be outdoors to cast this spell. Moving to a place where you don't have a clear path to the sky ends the spell early.When you cast the spell, you change the current weather conditions, which are determined by the DM based on the climate and season. You can change precipitation, temperature, and wind. It takes 1d4 x 10 minutes for the new conditions to take effect. Once they do so, you can change the conditions again. When the spell ends, the weather gradually returns to normal.When you change the weather conditions, find a current condition on the following tables and change its stage by one, up or down. When changing the wind, you can change its direction.Conditions\n\nClear\nLight clouds\nOvercast or ground fog\nRain, hail, or snow\nTorrential rain, driving hail, or blizzard\n\nTemperature\n\nUnbearable heat\nHot\nWarm\nCool\nCold\nArctic cold\n\nWind\n\nCalm\nModerate wind\nStrong wind\nGale\nStorm\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":5,"width":null,"units":"mi","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Burning incense and bits of earth and wood mixed in water.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/wind-tornado-cyclone-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234163,"modifiedTime":1671220970238,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZRqu3Xh9FmlBCZGy","name":"Eyebite","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the spell's Duration, your eyes become an inky void imbued with dread power. One creature of your choice within 60 feet of you that you can see must succeed on a Wisdom saving throw or be affected by one of the following Effects of your choice for the Duration. On each of your turns until the spell ends, you can use your action to target another creature but can't target a creature again if it has succeeded on a saving throw against this casting of eyebite.\n\nAsleep. The target falls Unconscious. It wakes up if it takes any damage or if another creature uses its action to shake the sleeper awake.\nPanicked. The target is Frightened of you. On each of its turns, the frightened creature must take the Dash action and move away from you by the safest and shortest available route, unless there is nowhere to move. If the target moves to a place at least 60 feet away from you where it can no longer see you, this effect ends.\nSickened. The target has disadvantage on Attack rolls and Ability Checks. At the end of each of its turns, it can make another Wisdom saving throw. If it succeeds, the effect ends\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":6,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-large-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234163,"modifiedTime":1671220970250,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZU9d6woBdUP8pIPt","name":"Beacon of Hope","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell bestows hope and vitality. Choose any number of creatures within range. For the duration, each target has advantage on Wisdom saving throws and death saving throws, and regains the maximum number of hit points possible from any healing.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-large-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234164,"modifiedTime":1671220970270,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZVnL9L8v1KC9TBF4","name":"Imprisonment","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a magical restraint to hold a creature that you can see within range. The target must succeed on a Wisdom saving throw or be bound by the spell; if it succeeds, it is immune to this spell if you cast it again. While affected by this spell, the creature doesn't need to breathe, eat, or drink, and it doesn't age. Divination Spells can't locate or perceive the target.When you cast the spell, you choose one of the following forms of imprisonment.Burial. The target is entombed far beneath the earth in a Sphere of magical force that is just large enough to contain the target. Nothing can pass through the sphere, nor can any creature Teleport or use Planar Travel to get into or out of it. The special component for this version of the spell is a small mithral orb.Chaining. Heavy chains, firmly rooted in the ground, hold the target in place. The target is Restrained until the spell ends, and it can't move or be moved by any means until then. The special component for this version of the spell is a fine chain of precious metal.Hedged Prison. The spell transports the target into a tiny Demiplane that is warded against teleportation and Planar Travel. The Demiplane can be a labyrinth, a cage, a tower, or any similar confined structure or area of your choice. The special component for this version of the spell is a miniature representation of the prison made from jade.Minimus Containment. The target shrinks to a height of 1 inch and is imprisoned inside a gemstone or similar object. Light can pass through the gemstone normally (allowing the target to see out and other creatures to see in), but nothing else can pass through, even by means of teleportation or Planar Travel. The gemstone can't be cut or broken while the spell remains in effect. The special component for this version of the spell is a large, transparent gemstone, such as a corundum, diamond, or ruby.Slumber. The target falls asleep and can't be awoken. The special component for this version of the spell consists of rare soporific herbs.Ending the Spell. During the casting of the spell, in any of its versions, you can specify a condition that will cause the spell to end and release the target. The condition can be as specific or as elaborate as you choose, but the DM must agree that the condition is reasonable and has a likelihood of coming to pass. The Conditions can be based on a creature's name, identity, or deity but otherwise must be based on observable Actions or qualities and not based on intangibles such as level, class, or Hit Points.A Dispel Magic spell can end the spell only if it is cast as a 9th-level spell, targeting either the prison or the special component used to create it.You can use a particular special component to create only one prison at a time. If you cast the spell again using the same component, the target of the first casting is immediately freed from its binding.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"disp"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":9,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A vellum depiction or a carved statuette in the likeness of the target, and a special component that varies according to the version of the spell you choose, worth at least 500 gp per Hit Die of the target","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-chains-ropes-net-red-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234164,"modifiedTime":1674761596278,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZrTc23tToJ0JpH2h","name":"Jump","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature. The creature's jump distance is tripled until the spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A grasshopper's hind leg","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234165,"modifiedTime":1671220970288,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"a2KJHCIbY5Mi4Dmn","name":"Arcane Hand","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a Large hand of shimmering, translucent force in an unoccupied space that you can see within range. The hand lasts for the spell's Duration, and it moves at your command, mimicking the movements of your own hand.The hand is an object that has AC 20 and Hit Points equal to your hit point maximum. If it drops to 0 Hit Points, the spell ends. It has a Strength of 26 (+8) and a Dexterity of 10 (+0). The hand doesn't fill its space.When you cast the spell and as a Bonus Action on your subsequent turns, you can move the hand up to 60 feet and then cause one of the following Effects with it.Clenched Fist. The hand strikes one creature or object within 5 feet of it. Make a melee spell Attack for the hand using your game Statistics. On a hit, the target takes 4d8 force damage.Forceful Hand. The hand attempts to push a creature within 5 feet of it in a direction you choose. Make a check with the hand's Strength contested by the Strength (Athletics) check of the target. If the target is Medium or smaller, you have advantage on the check. If you succeed, the hand pushes the target up to 5 feet plus a number of feet equal to five times your Spellcasting ability modifier. The hand moves with the target to remain within 5 feet of it.Grasping Hand. The hand attempts to grapple a Huge or smaller creature within 5 feet of it. You use the hand's Strength score to resolve the grapple. If the target is Medium or smaller, you have advantage on the check. While the hand is Grappling the target, you can use a Bonus Action to have the hand crush it. When you do so, the target takes bludgeoning damage equal to 2d6 + your Spellcasting ability modifier.Interposing Hand. The hand interposes itself between you and a creature you choose until you give the hand a different command. The hand moves to stay between you and the target, providing you with half cover against the target. The target can't move through the hand's space if its Strength score is less than or equal to the hand's Strength score. If its Strength score is higher than the hand's Strength score, the target can move toward you through the hand's space, but that space is difficult terrain for the target.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage from the clenched fist option increases by 2d8 and the damage from the grasping hand increases by 2d6 for each slot level above 5th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8","force"]],"versatile":"2d6"},"formula":"1d20+8","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An eggshell and a snakeskin glove","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"2d8"}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-fireball-smoke-strong-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234166,"modifiedTime":1671220970294,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"a3XtAO5n2GrqiAh5","name":"Create or Destroy Water","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You either create or destroy water.Create Water. You create up to 10 gallons of clean water within range in an open container. Alternatively, the water falls as rain in a 30-foot cube within range.Destroy Water. You destroy up to 10 gallons of water in an open container within range. Alternatively, you destroy fog in a 30-foot cube within range.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you create or destroy 10 additional gallons of water, or the size of the cube increases by 5 feet, for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cube"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A drop of water if creating water or a few grains of sand if destroying it.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/wind-swirl-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234167,"modifiedTime":1671220970298,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"aL1F8fvYLtNzUbKu","name":"Speak with Animals","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You gain the ability to comprehend and verbally communicate with beasts for the duration. The knowledge and awareness of many beasts is limited by their intelligence, but at minimum, beasts can give you information about nearby locations and monsters, including whatever they can perceive or have perceived within the past day. You might be able to persuade a beast to perform a small favor for you, at the DM's discretion.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/wolf-paw-glow-small-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234167,"modifiedTime":1671220970302,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"aU62xVUBYkAQWIHv","name":"Nondetection","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the Duration, you hide a target that you touch from Divination magic. The target can be a willing creature or a place or an object no larger than 10 feet in any dimension. The target can't be targeted by any divination magic or perceived through magical Scrying sensors.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of diamond dust worth 25 gp sprinkled over the target, which the spell consumes","consumed":true,"cost":25,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234168,"modifiedTime":1671220970308,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ap4dmtshjEbwU3Ts","name":"Rope Trick","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a length of rope that is up to 60 feet long. One end of the rope then rises into the air until the whole rope hangs perpendicular to the ground. At the upper end of the rope, an invisible entrance opens to an extradimensional space that lasts until the spell ends.The extradimensional space can be reached by climbing to the top of the rope. The space can hold as many as eight Medium or smaller creatures. The rope can be pulled into the space, making the rope disappear from view outside the space.Attacks and spells can't cross through the entrance into or out of the extradimensional space, but those inside can see out of it as if through a 3-foot-by-5-foot window centered on the rope.Anything inside the extradimensional space drops out when the spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Powdered corn extract and a twisted loop of parchment","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/skills/melee/strike-blade-scimitar-gray-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234169,"modifiedTime":1671220970312,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"arzCrMRgcNiQuh43","name":"Command","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You speak a one-word command to a creature you can see within range. The target must succeed on a Wisdom saving throw or follow the command on its next turn. The spell has no effect if the target is undead, if it doesn't understand your language, or if your command is directly harmful to it.Some typical commands and their effects follow. You might issue a command other than one described here. If you do so, the DM determines how the target behaves. If the target can't follow your command, the spell ends.Approach. The target moves toward you by the shortest and most direct route, ending its turn if it moves within 5 feet of you.Drop. The target drops whatever it is holding and then ends its turn.Flee. The target spends its turn moving away from you by the fastest available means.Grovel. The target falls prone and then ends its turn.Halt. The target doesn't move and takes no actions. A flying creature stays aloft, provided that it is able to do so. If it must move to stay aloft, it flies the minimum distance needed to remain in the air.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/explosion-fireball-small-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234169,"modifiedTime":1671220970317,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"avD5XUtkBPQQR97c","name":"Fire Shield","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Thin and wispy flames wreathe your body for the Duration, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. You can end the spell early by using an action to dismiss it.\nThe flames provide you with a warm shield or a chill shield, as you choose. The warm shield grants you Resistance to cold damage, and the chill shield grants you resistance to fire damage.\nIn addition, whenever a creature within 5 feet of you hits you with a melee Attack, the shield erupts with flame. The attacker takes 2d8 fire damage from a warm shield, or 2d8 cold damage from a cold shield.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of phosphorus or a firefly","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-pentagon-red.webp","effects":[{"_id":"lVKx8swB08jm6IFE","flags":{},"changes":[{"key":"system.traits.dr.value","value":"cold","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":600,"rounds":null,"turns":null,"startRound":null,"startTurn":null,"combat":null},"icon":"icons/magic/defensive/shield-barrier-flaming-pentagon-red.webp","label":"Warm Shield","origin":"Item.OtcTsffCQaOFkr9K","tint":null,"transfer":true,"sort":0},{"_id":"UUXwEKSPX4nYfDzo","flags":{},"changes":[{"key":"system.traits.dr.value","value":"fire","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":600,"rounds":null,"turns":null,"startRound":null,"startTurn":null,"combat":null},"icon":"icons/magic/defensive/shield-barrier-flaming-pentagon-blue.webp","label":"Chill Shield","origin":"Item.OtcTsffCQaOFkr9K","tint":null,"transfer":true,"sort":0}],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234170,"modifiedTime":1671220970322,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"bA2sk9eMKBeY7EPD","name":"Programmed Illusion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create an Illusion of an object, a creature, or some other visible phenomenon within range that activates when a specific condition occurs. The illusion is imperceptible until then. It must be no larger than a 30-foot cube, and you decide when you cast the spell how the illusion behaves and what sounds it makes. This scripted Performance can last up to 5 minutes.When the condition you specify occurs, the illusion springs into existence and performs in the manner you described. Once the illusion finishes performing, it disappears and remains dormant for 10 minutes. After this time, the illusion can be activated again.The triggering condition can be as general or as detailed as you like, though it must be based on visual or audible Conditions that occur within 30 feet of the area. For example, you could create an illusion of yourself to appear and warn off others who attempt to open a trapped door, or you could set the illusion to trigger only when a creature says the correct word or phrase.Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the Illusion for what it is, the creature can see through the image, and any noise it makes sounds hollow to the creature","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"disp"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of fleece and jade dust worth at least 25gp","consumed":false,"cost":25,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-chains-ropes-net-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234170,"modifiedTime":1674761623008,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"bV3yun6MIuFj71Er","name":"Moonbeam","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A silvery beam of pale light shines down in a 5-foot-radius, 40-foot-high Cylinder centered on a point within range. Until the spell ends, dim light fills the cylinder.When a creature enters the spell's area for the first time on a turn or starts its turn there, it is engulfed in ghostly flames that cause searing pain, and it must make a Constitution saving throw. It takes 2d10 radiant damage on a failed save, or half as much damage on a successful one.A Shapechanger makes its saving throw with disadvantage. If it fails, it also instantly reverts to its original form and can't assume a different form until it leaves the spell's light.On each of your turns after you cast this spell, you can use an action to move the beam up to 60 feet in any direction.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d10 for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"cylinder"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10","radiant"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Several seeds of any moonseed plant and a piece of opalescent feldspar","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d10"}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-blue-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234171,"modifiedTime":1671220970330,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"bllEWfm9xfEKynhv","name":"Mind Blank","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Until the spell ends, one willing creature you touch is immune to psychic damage, any effect that would sense its emotions or read its thoughts, Divination Spells, and the Charmed condition. The spell even foils Wish spells and Spells or Effects of similar power used to affect the target's mind or to gain information about the target.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234171,"modifiedTime":1671220970334,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"bnjXlk13ZRJuf5d0","name":"Floating Disk","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell creates a circular, horizontal plane of force, 3 feet in diameter and 1 inch thick, that floats 3 feet above the ground in an unoccupied space of your choice that you can see within range. The disk remains for the Duration, and can hold up to 500 pounds. If more weight is placed on it, the spell ends, and everything on the disk falls to the ground.The disk is immobile while you are within 20 feet of it. If you move more than 20 feet away from it, the disk follows you so that it remains within 20 feet of you. It can move across uneven terrain, up or down stairs, slopes and the like, but it can't cross an elevation change of 10 feet or more. For example, the disk can't move across a 10-foot-deep pit, nor could it leave such a pit if it was created at the bottom.If you move more than 100 feet from the disk (typically because it can't move around an obstacle to follow you), the spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A drop of mercury","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-triangle-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234172,"modifiedTime":1671220970345,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"cYI4RNNjI5GAmLhy","name":"Find the Path","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell allows you to find the shortest, most direct physical route to a specific fixed location that you are familiar with on the same plane of existence. If you name a destination on another plane of existence, a destination that moves (such as a Mobile fortress), or a destination that isn't specific (such as \"a green dragon's lair\"), the spell fails.For the Duration, as long as you are on the same plane of existence as the destination, you know how far it is and in what direction it lies. While you are traveling there, whenever you are presented with a choice of paths along the way, you automatically determine which path is the shortest and most direct route (but not necessarily the safest route) to the destination.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"day"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A set of divinatory tools—such as bones, ivory sticks, cards, teeth, or carved runes—worth 100 gp and an object from the location you wish to find","consumed":false,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234172,"modifiedTime":1671220970351,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ccduLIvutyNqvkgv","name":"Unseen Servant","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell creates an Invisible, mindless, shapeless, Medium force that performs simple tasks at your command until the spell ends. The servant springs into existence in an unoccupied space on the ground within range. It has AC 10, 1 hit point, and a Strength of 2, and it can't attack. If it drops to 0 hit points, the spell ends.Once on each of your turns as a Bonus Action, you can mentally command the servant to move up to 15 feet and interact with an object. The servant can perform simple tasks that a human servant could do, such as fetching things, cleaning, mending, folding clothes, lighting fires, serving food, and pouring wine. Once you give the command, the servant performs the task to the best of its ability until it completes the task, then waits for your next command.If you command the servant to perform a task that would move it more than 60 feet away from you, the spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A bit of string and of wood","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234174,"modifiedTime":1671220970372,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"cdrYKaFi98YWaBMw","name":"Vicious Mockery","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You unleash a string of insults laced with subtle enchantments at a creature you can see within range. If the target can hear you (though it need not understand you), it must succeed on a Wisdom saving throw or take 1d4 psychic damage and have disadvantage on the next attack roll it makes before the end of its next turn.This spell's damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","psychic"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":0,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{},"img":"icons/skills/toxins/cup-goblet-poisoned-spilled.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234175,"modifiedTime":1671220970380,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"cg50KpBkBdPK6vPL","name":"Clairvoyance","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create an invisible sensor within range in a location familiar to you (a place you have visited or seen before) or in an obvious location that is unfamiliar to you (such as behind a door, around a corner, or in a grove of trees). The sensor remains in place for the duration, and it can't be attacked or otherwise interacted with.When you cast the spell, you choose seeing or hearing. You can use the chosen sense through the sensor as if you were in its space. As your action, you can switch between seeing and hearing.A creature that can see the sensor (such as a creature benefiting from see invisibility or truesight) sees a luminous, intangible orb about the size of your fist.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":1,"long":null,"units":"mi"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A focus worth at least 100gp, either a jeweled horn for hearing or a glass eye for seeing.","consumed":false,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234175,"modifiedTime":1671220970384,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"clwv2PWOcT822hlr","name":"Maze","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You banish a creature that you can see within range into a labyrinthine Demiplane. The target remains there for the Duration or until it escapes the maze.The target can use its action to attempt to escape. When it does so, it makes a DC 20 Intelligence check. If it succeeds, it escapes, and the spell ends (a Minotaur or Goristro demon automatically succeeds).When the spell ends, the target reappears in the space it left or, if that space is occupied, in the nearest unoccupied space.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-chains-ropes-net-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234176,"modifiedTime":1671220970388,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ctW81uiX56xZR2c5","name":"Ray of Frost","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A frigid beam of blue-white light streaks toward a creature within range. Make a ranged spell attack against the target. On a hit, it takes 1d8 cold damage, and its speed is reduced by 10 feet until the start of your next turn.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-blue-small.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234176,"modifiedTime":1671220970399,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"czXrVRx6XYRWsHAi","name":"Giant Insect","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You transform up to ten centipedes, three spiders, five wasps, or one Scorpion within range into giant versions of their natural forms for the Duration. A centipede becomes a Giant Centipede, a Spider becomes a Giant Spider, a wasp becomes a Giant Wasp, and a Scorpion becomes a Giant Scorpion.Each creature obeys your verbal commands, and in Combat, they act on Your Turn each round. The DM has the Statistics for these creatures and resolves their Actions and Movement.A creature remains in its giant size for the Duration, until it drops to 0 Hit Points, or until you use an action to dismiss the effect on it.The DM might allow you to choose different Targets. For example, if you transform a bee, its giant version might have the same Statistics as a Giant Wasp.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"spec","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-triple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234177,"modifiedTime":1671220970408,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"d54VDyFulD9xxY7J","name":"Commune","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You contact your deity or a divine proxy and ask up to three questions that can be answered with a yes or no. You must ask your questions before the spell ends. You receive a correct answer for each question.Divine beings aren't necessarily omniscient, so you might receive \"unclear\" as an answer if a question pertains to information that lies beyond the deity's knowledge. In a case where a one-word answer could be misleading or contrary to the deity's interests, the DM might offer a short phrase as an answer instead.If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get no answer. The DM makes this roll in secret.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"Incense and a vial of holy or unholy water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-levitate-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234177,"modifiedTime":1671220970412,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"d9MwcXi7Il3HROXd","name":"Passwall","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A passage appears at a point of your choice that you can see on a wooden, plaster, or stone surface (such as a wall, a ceiling, or a floor) within range, and lasts for the duration. You choose the opening's dimensions: up to 5 feet wide, 8 feet tall, and 20 feet deep. The passage creates no instability in a structure surrounding it.When the opening disappears, any creatures or objects still in the passage created by the spell are safely ejected to an unoccupied space nearest to the surface on which you cast the spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of sesame seeds","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234178,"modifiedTime":1671220970422,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dEfSELiY1eO3cpX9","name":"Conjure Woodland Beings","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You summon fey creatures that appear in unoccupied spaces that you can see within range. Choose one of the following options for what appears:\n\nOne fey creature of challenge rating 2 or lower\nTwo fey creatures of challenge rating 1 or lower\nFour fey creatures of challenge rating 1/2 or lower\nEight fey creatures of challenge rating 1/4 or lower\n\nA summoned creature disappears when it drops to 0 hit points or when the spell ends.The summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which have their own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions.Higher Levels. When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 6th-level slot and three times as many with an 8th-level slot.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"One holly berry per creature summoned.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-maple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234178,"modifiedTime":1671220970427,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dLJhxDfeyOsc3zsY","name":"Blade Barrier","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a vertical wall of whirling, razor-sharp blades made of magical energy. The wall appears within range and lasts for the duration. You can make a straight wall up to 100 feet long, 20 feet high, and 5 feet thick, or a ringed wall up to 60 feet in diameter, 20 feet high, and 5 feet thick. The wall provides three-quarters cover to creatures behind it, and its space is difficult terrain.When a creature enters the wall's area for the first time on a turn or starts its turn there, the creature must make a Dexterity saving throw. On a failed save, the creature takes 6d10 slashing damage. On a successful save, the creature takes half as much damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"wall"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d10","slashing"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":6,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/projectile-beams-salvo-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234179,"modifiedTime":1671220970431,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dSTu1MaPhBqPITwM","name":"Contact Other Plane","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You mentally contact a demigod, the spirit of a long-dead sage, or some other mysterious entity from another plane. Contacting this extraplanar intelligence can strain or even break your mind. When you cast this spell, make a DC 15 Intelligence saving throw. On a failure, you take 6d6 psychic damage and are insane until you finish a long rest. While insane, you can't take actions, can't understand what other creatures say, can't read, and speak only in gibberish. A greater restoration spell cast on you ends this effect.On a successful save, you can ask the entity up to five questions. You must ask your questions before the spell ends. The DM answers each question with one word, such as \"yes,\" \"no,\" \"maybe,\" \"never,\" \"irrelevant,\" or \"unclear\" (if the entity doesn't know the answer to the question). If a one-word answer would be misleading, the DM might instead offer a short phrase as an answer.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6","psychic"]],"versatile":""},"formula":"","save":{"ability":"int","dc":15,"scaling":"flat"},"level":5,"school":"div","components":{"vocal":true,"somatic":false,"material":false,"ritual":true,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-levitate-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234180,"modifiedTime":1671220970436,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"da0a1t2FqaTjRZGT","name":"Freedom of Movement","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a willing creature. For the Duration, the target's Movement is unaffected by difficult terrain, and Spells and other magical Effects can neither reduce the target's speed nor cause the target to be Paralyzed or Restrained.The target can also spend 5 feet of Movement to automatically escape from nonmagical restraints, such as Manacles or a creature that has it Grappled. Finally, being Underwater imposes no penalties on the target's movement or attacks.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A leather strap, bound around the arm or a similar appendage","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/skills/melee/strike-blade-knife-white-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234180,"modifiedTime":1671220970446,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dhqBY4TvVjxVmOZd","name":"Sleet Storm","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Until the spell ends, freezing rain and sleet fall in a 20-foot-tall cylinder with a 40-foot radius centered on a point you choose within range. The area is heavily obscured, and exposed flames in the area are doused.The ground in the area is covered with slick ice, making it difficult terrain. When a creature enters the spell's area for the first time on a turn or starts its turn there, it must make a Dexterity saving throw. On a failed save, it falls Prone.If a creature is concentrating in the spell's area, the creature must make a successful Constitution saving throw against your spell save DC or lose concentration.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":40,"width":null,"units":"ft","type":"cylinder"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":3,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A pinch of dust and a few drops of water.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/water/projectile-beams-salvo-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234181,"modifiedTime":1671220970452,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dl8YwvMboBqX2OC4","name":"Resistance","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one willing creature. Once before the spell ends, the target can roll a d4 and add the number rolled to one saving throw of its choice. It can roll the die before or after making the saving throw. The spell then ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A miniature clock","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-glowing-triangle-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234181,"modifiedTime":1671220970474,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dmvaMLFWFtv0qx0S","name":"Power Word Kill","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You utter a word of power that can compel one creature you can see within range to die instantly. If the creature you choose has 100 hit points or fewer, it dies. Otherwise, the spell has no effect.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":9,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/unholy/strike-beam-blood-large-red-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234182,"modifiedTime":1671220970480,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"dp6xny4v8PDoIGjh","name":"Commune with Nature","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You briefly become one with nature and gain knowledge of the surrounding territory. In the outdoors, the spell gives you knowledge of the land within 3 miles of you. In caves and other natural underground settings, the radius is limited to 300 feet. The spell doesn't function where nature has been replaced by construction, such as in dungeons and towns.You instantly gain knowledge of up to three facts of your choice about any of the following subjects as they relate to the area:\n\nterrain and bodies of water\nprevalent plants, minerals, animals, or peoples\npowerful celestials, fey, fiends, elementals, or undead\ninfluence from other planes of existence\nbuildings\n\nFor example, you could determine the location of powerful undead in the area, the location of major sources of safe drinking water, and the location of any nearby towns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-triple-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234183,"modifiedTime":1671220970485,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eCPQuQkIabFKTl9u","name":"Produce Flame","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A flickering flame appears in your hand. The flame remains there for the Duration and harms neither you nor your Equipment. The flame sheds bright light in a 10-foot radius and dim light for an additional 10 feet. The spell ends if you dismiss it as an action or if you cast it again.You can also Attack with the flame, although doing so ends the spell. When you cast this spell, or as an action on a later turn, you can hurl the flame at a creature within 30 feet of you. Make a ranged spell Attack. On a hit, the target takes 1d8 fire damage.This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/explosion-fireball-medium-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234183,"modifiedTime":1671220970489,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eEpy1ONlXumKS1mp","name":"Dominate Monster","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to beguile a creature that you can see within range. It must succeed on a Wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw.While the creature is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability.You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time, you can also cause the creature to use a reaction, but this requires you to use your own reaction as well.Each time the target takes damage, it makes a new Wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.At Higher Levels. When you cast this spell with a 9th-level spell slot, the duration is concentration, up to 8 hours.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"@item.level < 9 ? 1 : 8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":8,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-large-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234184,"modifiedTime":1671220970494,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eGMhwmuleAM46C6L","name":"Prismatic Spray","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Eight multicolored rays of light flash from your hand. Each ray is a different color and has a different power and purpose. Each creature in a 60-foot cone must make a Dexterity saving throw. For each target, roll a d8 to determine which color ray affects it.\n\nRed. The target takes 10d6 fire damage on a failed save, or half as much damage on a successful one.\nOrange. The target takes 10d6 acid damage on a failed save, or half as much damage on a successful one.\nYellow. The target takes 10d6 lightning damage on a failed save, or half as much damage on a successful one.\nGreen. The target takes 10d6 poison damage on a failed save, or half as much damage on a successful one.\nBlue. The target takes 10d6 cold damage on a failed save, or half as much damage on a successful one.\nIndigo. On a failed save, the target is Restrained. It must then make a Constitution saving throw at the end of each of its turns. If it successfully saves three times, the spell ends. If it fails its save three times, it permanently turns to stone and is subjected to the Petrified condition. The successes and failures don't need to be consecutive; keep track of both until the target collects three of a kind.\nViolet. On a failed save, the target is Blinded. It must then make a Wisdom saving throw at the start of your next turn. A successful save ends the blindness. If it fails that save, the creature is transported to another plane of existence of the DM's choosing and is no longer Blinded. (Typically, a creature that is on a plane that isn't its home plane is banished home, while other creatures are usually cast into the Astral or Ethereal planes.)\nSpecial. The target is struck by two rays. Roll twice more, rerolling any 8.\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d6",""]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":7,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/projectile-beams-salvo-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234184,"modifiedTime":1671220970498,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ePhRKHXRE7l1sEoQ","name":"Project Image","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create an illusory copy of yourself that lasts for the Duration. The copy can appear at any location within range that you have seen before, regardless of intervening obstacles. The Illusion looks and sounds like you but is intangible. If the illusion takes any damage, it disappears, and the spell ends.You can use your action to move this illusion up to twice your speed, and make it gesture, speak, and behave in whatever way you choose. It mimics your mannerisms perfectly.You can see through its eyes and hear through its ears as if you were in its space. On Your Turn as a Bonus Action, you can switch from using its senses to using your own, or back again. While you are using its senses, you are Blinded and Deafened in regard to your own surroundings.Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an Illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and any noise it makes sounds hollow to the creature.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"day"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":500,"long":null,"units":"mi"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small replica of you made from material worth at least 5gp","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/energy-stream-link-spiral-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234185,"modifiedTime":1671220970502,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eS7XnnApoxRxYXPs","name":"Charm Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to charm a humanoid you can see within range. It must make a Wisdom saving throw, and does so with advantage if you or your companions are fighting it. If it fails the saving throw, it is charmed by you until the spell ends or until you or your companions do anything harmful to it. The charmed creature regards you as a friendly acquaintance. When the spell ends, the creature knows it was charmed by you.\n At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/explosion-fireball-medium-purple-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234185,"modifiedTime":1671220970507,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ehvmg9U9fcMEhE4z","name":"Call Lightning","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A storm cloud appears in the shape of a cylinder that is 10 feet tall with a 60-foot radius, centered on a point you can see 100 feet directly above you. The spell fails if you can't see a point in the air where the storm cloud could appear (for example, if you are in a room that can't accommodate the cloud).When you cast the spell, choose a point you can see within range. A bolt of lightning flashes down from the cloud to that point. Each creature within 5 feet of that point must make a Dexterity saving throw. A creature takes 3d10 lightning damage on a failed save, or half as much damage on a successful one. On each of your turns until the spell ends, you can use your action to call down lightning in this way again, targeting the same point or a different one.If you are outdoors in stormy conditions when you cast this spell, the spell gives you control over the existing storm instead of creating a new one. Under such conditions, the spell's damage increases by 1d10.Higher Levels. When you cast this spell using a spell slot of 4th or higher level, the damage increases by 1d10 for each slot level above 3rd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cylinder"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10","lightning"]],"versatile":"4d10"},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":3,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d10"}},"sort":0,"flags":{},"img":"icons/magic/lightning/bolt-forked-large-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234186,"modifiedTime":1671220970511,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ej6wyY4G1gOcb1U6","name":"Magic Jar","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your body falls into a catatonic state as your soul leaves it and enters the container you used for the spell's material component. While your soul inhabits the container, you are aware of your surroundings as if you were in the container's space. You can't move or use reactions. The only action you can take is to project your soul up to 100 feet out of the container, either returning to your living body (and ending the spell) or attempting to possess a humanoids body.You can attempt to possess any humanoid within 100 feet of you that you can see (creatures warded by a protection from evil and good or magic circle spell can't be possessed). The target must make a Charisma saving throw. On a failure, your soul moves into the target's body, and the target's soul becomes trapped in the container. On a success, the target resists your efforts to possess it, and you can't attempt to possess it again for 24 hours.Once you possess a creature's body, you control it. Your game statistics are replaced by the statistics of the creature, though you retain your alignment and your Intelligence, Wisdom, and Charisma scores. You retain the benefit of your own class features. If the target has any class levels, you can't use any of its class features.Meanwhile, the possessed creature's soul can perceive from the container using its own senses, but it can't move or take actions at all.While possessing a body, you can use your action to return from the host body to the container if it is within 100 feet of you, returning the host creature's soul to its body. If the host body dies while you're in it, the creature dies, and you must make a Charisma saving throw against your own spellcasting DC. On a success, you return to the container if it is within 100 feet of you. Otherwise, you die.If the container is destroyed or the spell ends, your soul immediately returns to your body. If your body is more than 100 feet away from you or if your body is dead when you attempt to return to it, you die. If another creature's soul is in the container when it is destroyed, the creature's soul returns to its body if the body is alive and within 100 feet. Otherwise, that creature dies.When the spell ends, the container is destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"disp"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":6,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A gem, crystal, reliquary, or some other ornamental container worth at least 500gp","consumed":false,"cost":500,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-pentagon-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234186,"modifiedTime":1674761610507,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"etgcR9wqmrhyZ0tx","name":"Grease","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Slick grease covers the ground in a 10-foot square centered on a point within range and turns it into difficult terrain for the duration.When the grease appears, each creature standing in its area must succeed on a Dexterity saving throw or fall prone. A creature that enters the area or ends its turn there must also succeed on a Dexterity saving throw or fall prone.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of pork rind or butter","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234187,"modifiedTime":1671220970520,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ew6GA8dJy2spQmFW","name":"Wind Wall","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A wall of strong wind rises from the ground at a point you choose within range. You can make the wall up to 50 feet long, 15 feet high, and 1 foot thick. You can shape the wall in any way you choose so long as it makes one continuous path along the ground. The wall lasts for the Duration.\n When the wall appears, each creature within its area must make a Strength saving throw. A creature takes 3d8 bludgeoning damage on a failed save, or half as much damage on a successful one.\n The strong wind keeps fog, smoke, and other gases at bay. Small or smaller flying creatures or objects can't pass through the wall. Loose, lightweight materials brought into the wall fly upward. Arrows, bolts, and other ordinary projectiles launched at targets behind the wall are deflected upward and automatically miss. (Boulders hurled by Giants or siege engines, and similar projectiles, are unaffected.) Creatures in gaseous form can't pass through it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":50,"width":null,"units":"ft","type":"wall"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":null,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A tiny fan and a feather of exotic origin","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234188,"modifiedTime":1671220970525,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"f38w5rd9SgdmWc6F","name":"Mirage Arcane","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You make terrain in an area up to 1 mile square look, sound, smell, and even feel like some other sort of terrain. The terrain's general shape remains the same, however. Open fields or a road could be made to resemble a swamp, hill, crevasse, or some other difficult or impassable terrain. A pond can be made to seem like a grassy meadow, a precipice like a gentle slope, or a rock-strewn gully like a wide and smooth road.Similarly, you can alter the appearance of structures, or add them where none are present. The spell doesn't disguise, conceal, or add creatures.The Illusion includes audible, visual, tactile, and olfactory elements, so it can turn clear ground into difficult terrain (or vice versa) or otherwise impede Movement through the area. Any piece of the illusory terrain (such as a rock or stick) that is removed from the spell's area disappears immediately.Creatures with Truesight can see through the Illusion to the terrain's true form; however, all other elements of the illusion remain, so while the creature is aware of the illusion's presence, the creature can still physically interact with the illusion.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"10","units":"day"},"cover":null,"target":{"value":1,"width":null,"units":"mi","type":"square"},"range":{"value":null,"long":null,"units":"spec"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234188,"modifiedTime":1671220970529,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fVbCxFRaORalHB20","name":"Scrying","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You can see and hear a particular creature you choose that is on the same plane of existence as you. The target must make a Wisdom saving throw, which is modified by how well you know the target and the sort of physical connection you have to it. If a target knows you're casting this spell, it can fail the saving throw voluntarily if it wants to be observed.\n\n\n\nKnowledge\nSave Modifier\n\n\nSecondhand (you have heard of the target)\n+5\n\n\nFirsthand (you have met the target)\n+0\n\n\nFamiliar (you know the target well)\n-5\n\n\n\n\n\n\n\nConnection\nSave Modifier\n\n\nLikeness or picture\n-2\n\n\nPossession or garment\n-4\n\n\nBody part, lock of hair, bit of nail, or the like\n-10\n\n\n\nOn a successful save, the target isn't affected, and you can't use this spell against it again for 24 hours.On a failed save, the spell creates an Invisible sensor within 10 feet of the target. You can see and hear through the sensor as if you were there. The sensor moves with the target, remaining within 10 feet of it for the Duration. A creature that can see Invisile Objects sees the sensor as a luminous orb about the size of your fist.Instead of targeting a creature, you can choose a location you have seen before as the target of this spell. When you do, the sensor appears at that location and doesn't move.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A focus worth at least 1,000 gp, such as a crystal ball, a silver mirror, or a font filled with holy water.","consumed":false,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-large-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234189,"modifiedTime":1671220970533,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fkREcytuZ8sngWtC","name":"Planar Ally","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You beseech an otherworldly entity for aid. The being must be known to you: a god, a Primordial, a demon prince, or some other being of cosmic power. That entity sends a Celestial, an elemental, or a fiend loyal to it to aid you, making the creature appear in an unoccupied space within range. If you know a specific creature's name, you can speak that name when you cast this spell to request that creature, though you might get a different creature anyway (DM's choice).When the creature appears, it is under no Compulsion to behave in any particular way. You can ask the creature to perform a service in exchange for payment, but it isn't obliged to do so. The requested task could range from simple (fly us across the chasm, or help us fight a battle) to complex (spy on our enemies, or protect us during our foray into the dungeon). You must be able to communicate with the creature to bargain for its Services.Payment can take a variety of forms. A Celestial might require a sizable donation of gold or Magic Items to an allied Temple, while a fiend might demand a living sacrifice or a gift of Treasure. Some creatures might exchange their service for a quest undertaken by you.As a rule of thumb, a task that can be measured in minutes requires a payment worth 100 gp per minute. A task measured in hours requires 1,000 gp per hour. And a task measured in days (up to 10 days) requires 10,000 gp per day. The DM can adjust these payments based on the circumstances under which you cast the spell. If the task is aligned with the creature's ethos, the payment might be halved or even waived. Nonhazardous tasks typically require only half the suggested payment, while especially dangerous tasks might require a greater gift. Creatures rarely accept tasks that seem suicidal.After the creature completes the task, or when the agreed-upon Duration of service expires, the creature returns to its home plane after reporting back to you, if appropriate to the task and if possible. If you are unable to agree on a price for the creature's service, the creature immediately returns to its home plane.A creature enlisted to join your group counts as a member of it, receiving a full share of Experience Points awarded.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234189,"modifiedTime":1671220970537,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"fzZnVKLmBMo2f5up","name":"Wall of Ice","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a wall of ice on a solid surface within range. You can form it into a hemispherical dome or a sphere with a radius of up to 10 feet, or you can shape a flat surface made up of ten 10-foot-square panels. Each panel must be contiguous with another panel. In any form, the wall is 1 foot thick and lasts for the Duration.If the wall cuts through a creature's space when it appears, the creature within its area is pushed to one side of the wall and must make a Dexterity saving throw. On a failed save, the creature takes 10d6 cold damage, or half as much damage on a successful save.The wall is an object that can be damaged and thus breached. It has AC 12 and 30 hit points per 10-foot section, and it is vulnerable to fire damage. Reducing a 10-foot section of wall to 0 hit points destroys it and leaves behind a sheet of frigid air in the space the wall occupied. A creature moving through the sheet of frigid air for the first time on a turn must make a Constitution saving throw. That creature takes 5d6 cold damage on a failed save, or half as much damage on a successful one.At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the damage the wall deals when it appears increases by 2d6, and the damage from passing through the sheet of frigid air increases by 1d6, for each slot level above 6th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"wall"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d6","cold"]],"versatile":"5d6"},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":6,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small piece of quartz","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"2d6"}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-blue-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234190,"modifiedTime":1671220970542,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"g2u9PYfqWQAyg9OI","name":"Poison Spray","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You extend your hand toward a creature you can see within range and project a puff of noxious gas from your palm. The creature must succeed on a Constitution saving throw or take 1d12 poison damage.This spell's damage increases by 1d12 when you reach 5th level (2d12), 11th level (3d12), and 17th level (4d12).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-fireball-smoke-large-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234190,"modifiedTime":1671220970553,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Entangle","type":"spell","img":"icons/magic/nature/vines-thorned-curled-glow-green.webp","system":{"description":{"value":"Grasping weeds and vines sprout from the ground in a 20-foot square starting from a point within range. For the Duration, these Plants turn the ground in the area into difficult terrain.A creature in the area when you cast the spell must succeed on a Strength saving throw or be Restrained by the entangling Plants until the spell ends. A creature restrained by the plants can use its action to make a Strength check against your spell save DC. On a success, it frees itself.When the spell ends, the conjured Plants wilt away.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":null,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"effects":[],"flags":{},"_id":"gMrWeG8fMDPRFiVe","folder":null,"sort":0,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234191,"modifiedTime":1671220970568,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gXtzz9t1DTzJeLr4","name":"Locate Creature","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Describe or name a creature that is familiar to you. You sense the direction to the creature's location, as long as that creature is within 1,000 feet of you. If the creature is moving, you know the direction of its movement.The spell can locate a specific creature known to you, or the nearest creature of a specific kind (such as a human or a unicorn), so long as you have seen such a creature up close—within 30 feet—at least once. If the creature you described or named is in a different form, such as being under the effects of a polymorph spell, this spell doesn't locate the creature.This spell can't locate a creature if running water at least 10 feet wide blocks a direct path between you and the creature.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of fur from a bloodhound","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-maple-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234191,"modifiedTime":1671220970576,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ge3Saet9zPTDyaoL","name":"Heroism","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A willing creature you touch is imbued with bravery. Until the spell ends, the creature is immune to being Frightened and gains Temporary Hit Points equal to your Spellcasting ability modifier at the start of each of its turns. When the spell ends, the target loses any remaining temporary hit points from this spell.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@mod","temphp"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234192,"modifiedTime":1671220970580,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234192,"modifiedTime":1671220970585,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gopnZvS0c2jD5FP8","name":"Tongues","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell grants the creature you touch the ability to understand any spoken language it hears. Moreover, when the target speaks, any creature that knows at least one language and can hear the target understands what it says.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"div","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small clay model of a ziggurat","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234193,"modifiedTime":1671220970589,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"gvdA9nPuWLck4tBl","name":"Sanctuary","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You ward a creature within range against attack. Until the spell ends, any creature who targets the warded creature with an attack or a harmful spell must first make a Wisdom saving throw. On a failed save, the creature must choose a new target or lose the attack or spell. This spell doesn't protect the warded creature from area effects, such as the explosion of a Fireball.If the warded creature makes an attack or casts a spell that affects an enemy creature, this spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small silver mirror","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234193,"modifiedTime":1671220970595,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"h830iyqParFleNqR","name":"Clone","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell grows an inert duplicate of a living creature as a safeguard against death. This clone forms inside a sealed vessel and grows to full size and maturity after 120 days; you can also choose to have the clone be a younger version of the same creature. It remains inert and endures indefinitely, as long as its vessel remains undisturbed.At any time after the clone matures, if the original creature dies, its soul transfers to the clone, provided that the soul is free and willing to return. The clone is physically identical to the original and has the same personality, memories, and abilities, but none of the original's equipment. The original creature's physical remains, if they still exist, become inert and can't thereafter be restored to life, since the creature's soul is elsewhere.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A diamond worth at least 1,000 gp and at least 1 cubic inch of flesh of the creature that is to be cloned, which the spell consumes, and a vessel worth at least 2,000 gp that has a sealable lid and is large enough to hold a Medium creature, such as a huge urn, coffin, mud-filled cyst in the ground, or crystal container filled with salt water.","consumed":true,"cost":null,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234194,"modifiedTime":1671220970599,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hDOENzjuj5WpLq7B","name":"Animal Friendship","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell lets you convince a beast that you mean it no harm. Choose a beast that you can see within range. It must see and hear you. If the beast's Intelligence is 4 or higher, the spell fails. Otherwise, the beast must succeed on a Wisdom saving throw or be charmed by you for the spell's duration. If you or one of your companions harms the target, the spell ends.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional beast for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A morsel of food.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/wolf-paw-glow-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234194,"modifiedTime":1671220970603,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hJ6ZiA3fpoY8v9cp","name":"Darkvision","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a willing creature to grant it the ability to see in the dark. For the duration, that creature has darkvision out to a range of 60 feet.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Either a pinch of dried carrot or an agate","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-small-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234195,"modifiedTime":1671220970608,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hYCrN82dMJFuJODB","name":"Feeblemind","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You blast the mind of a creature that you can see within range, attempting to shatter its intellect and personality. The target takes 4d6 psychic damage and must make an Intelligence saving throw.On a failed save, the creature's Intelligence and Charisma scores become 1. The creature can't cast Spells, activate Magic Items, understand language, or communicate in any intelligible way. The creature can, however, identify its friends, follow them, and even protect them.At the end of every 30 days, the creature can repeat its saving throw against this spell. If it succeeds on its saving throw, the spell ends.The spell can also be ended by Greater Restoration, heal, or wish.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","psychic"]],"versatile":""},"formula":"","save":{"ability":"int","dc":null,"scaling":"spell"},"level":8,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A handful of clay, crystal, glass, or mineral spheres","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-large-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234195,"modifiedTime":1671220971049,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"hzK7FQya0BDjSmLE","name":"Sunburst","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Brilliant sunlight flashes in a 60-foot radius centered on a point you choose within range. Each creature in that light must make a Constitution saving throw. On a failed save, a creature takes 12d6 radiant damage and is Blinded for 1 minute. On a successful save, it takes half as much damage and isn't blinded by this spell. Undead and oozes have disadvantage on this saving throw.A creature Blinded by this spell makes another Constitution saving throw at the end of each of its turns. On a successful save, it is no longer blinded.This spell dispels any Darkness in its area that was created by a spell.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"radius"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d6","radiant"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":8,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Fire and a piece of sunstone","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/explosion-fireball-large-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234209,"modifiedTime":1671220971061,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"icZokbgV1jIMpNCv","name":"Message","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You point your finger toward a creature within range and whisper a message. The target (and only the target) hears the message and can reply in a whisper that only you can hear.You can cast this spell through solid Objects if you are familiar with the target and know it is beyond the barrier. Magical silence, 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood blocks the spell. The spell doesn't have to follow a straight line and can travel freely around corners or through openings.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A short piece of copper wire","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234210,"modifiedTime":1671220971080,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"j8NtLXOOJ3GAKF8I","name":"Protection from Energy","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, the willing creature you touch has resistance to one damage type of your choice: acid, cold, fire, lightning, or thunder.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234210,"modifiedTime":1671220971085,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"j8S49Rea8b1640Zi","name":"Holy Aura","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Divine light washes out from you and coalesces in a soft radiance in a 30-foot radius around you. Creatures of your choice in that radius when you cast this spell shed dim light in a 5-foot radius and have advantage on all Saving Throws, and other creatures have disadvantage on Attack rolls against them until the spell ends. In addition, when a fiend or an Undead hits an affected creature with a melee attack, the aura flashes with brilliant light. The attacker must succeed on a Constitution saving throw or be Blinded until the spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":8,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A tiny reliquary worth at least 1,000 gp containing a sacred relic, such as a scrap of cloth from a saint's robe or a piece of parchment from a religious text","consumed":false,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/buff-flight-wings-runes-blue-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234212,"modifiedTime":1671220971091,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"jZ6JNykRtdQ90MOo","name":"Shield of Faith","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A shimmering field appears and surrounds a creature of your choice within range, granting it a +2 bonus to AC for the duration.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small parchment with a bit of holy text written on it.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234212,"modifiedTime":1671220971097,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"jccbeBIfLrqEZnDP","name":"Simulacrum","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You shape an illusory duplicate of one beast or humanoid that is within range for the entire casting time of the spell. The duplicate is a creature, partially real and formed from ice or snow, and it can take actions and otherwise be affected as a normal creature. It appears to be the same as the original, but it has half the creature's hit point maximum and is formed without any equipment. Otherwise, the illusion uses all the statistics of the creature it duplicates.The simulacrum is friendly to you and creatures you designate. It obeys your spoken commands, moving and acting in accordance with your wishes and acting on your turn in combat. The simulacrum lacks the ability to learn or become more powerful, so it never increases its level or other abilities, nor can it regain expended spell slots.If the simulacrum is damaged, you can repair it in an alchemical laboratory, using rare herbs and minerals worth 100 gp per hit point it regains. The simulacrum lasts until it drops to 0 hit points, at which point it reverts to snow and melts instantly.If you cast this spell again, any currently active duplicates you created with this spell are instantly destroyed.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"hour","cost":12,"condition":""},"duration":{"value":"","units":"disp"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Snow or ice in quantities sufficient to made a life-size copy of the duplicated creature; some hair, fingernail clippings, or other piece of that creature's body placed inside the snow or ice; and powdered ruby worth 1,500 gp, sprinkled over the duplicate and consumed by the spell","consumed":true,"cost":1500,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/energy-stream-link-spiral-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234213,"modifiedTime":1674761636359,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"jhhT9PsHy5A7EojO","name":"Resurrection","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a dead creature that has been dead for no more than a century, that didn't die of old age, and that isn't undead. If its soul is free and willing, the target returns to life with all its hit points.This spell neutralizes any poisons and cures normal diseases afflicting the creature when it died. It doesn't, however, remove magical diseases, curses, and the like; if such effects aren't removed prior to casting the spell, they afflict the target on its return to life.This spell closes all mortal wounds and restores any missing body parts.Coming back from the dead is an ordeal. The target takes a −4 penalty to all attack rolls, saving throws, and ability checks. Every time the target finishes a long rest, the penalty is reduced by 1 until it disappears.Casting this spell to restore life to a creature that has been dead for one year or longer taxes you greatly. Until you finish a long rest, you can't cast spells again, and you have disadvantage on all attack rolls, ability checks, and saving throws.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A diamond worth at least 1,000 gp, which the spell consumes","consumed":true,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-flame-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234213,"modifiedTime":1671220971105,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"jmfu8zj4zjjzUbeh","name":"Prismatic Wall","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A shimmering, multicolored plane of light forms a vertical opaque wall—up to 90 feet long, 30 feet high, and 1 inch thick—centered on a point you can see within range. Alternatively, you can shape the wall into a Sphere up to 30 feet in diameter centered on a point you choose within range. The wall remains in place for the Duration. If you position the wall so that it passes through a space occupied by a creature, the spell fails, and your action and the spell slot are wasted.The wall sheds bright light out to a range of 100 feet and dim light for an additional 100 feet. You and creatures you designate at the time you cast the spell can pass through and remain near the wall without harm. If another creature that can see the wall moves to within 20 feet of it or starts its turn there, the creature must succeed on a Constitution saving throw or become Blinded for 1 minute.The wall consists of seven layers, each with a different color. When a creature attempts to reach into or pass through the wall, it does so one layer at a time through all the wall's layers. As it passes or reaches through each layer, the creature must make a Dexterity saving throw or be affected by that layer's properties as described below.The wall can be destroyed, also one layer at a time, in order from red to violet, by means specific to each layer. Once a layer is destroyed, it remains so for the Duration of the spell. An Antimagic Field has no effect on the wall, and Dispel Magic works only against the violet layer.\n\nRed. The creature takes 10d6 fire damage on a failed save, or half as much damage on a successful one. While this layer is in place, nonmagical Ranged Attacks can't pass through the wall. The layer can be destroyed by dealing at least 25 cold damage to it.\nOrange. The creature takes 10d6 acid damage on a failed save, or half as much damage on a successful one. While this layer is in place, magical Ranged Attacks can't pass through the wall. The layer is destroyed by a strong wind.\nYellow. The creature takes 10d6 lightning damage on a failed save, or half as much damage on a successful one. This layer can be destroyed by dealing at least 60 force damage to it.\nGreen. The creature takes 10d6 poison damage on a failed save, or half as much damage on a successful one. A Passwall spell, or another spell of equal or greater level that can open a portal on a solid surface, destroys this layer.\nBlue. The creature takes 10d6 cold damage on a failed save, or half as much damage on a successful one. This layer can be destroyed by dealing at least 25 fire damage to it.\nIndigo. On a failed save, the creature is Restrained. It must then make a Constitution saving throw at the end of each of its turns. If it successfully saves three times, the spell ends. If it fails its save three times, it permanently turns to stone and is subjected to the Petrified condition. The successes and failures don't need to be consecutive; keep track of both until the creature collects three of a kind.\n\nWhile this layer is in place, Spells can't be cast through the wall. The layer is destroyed by bright light shed by a Daylight spell or a similar spell of equal or higher level.\n\n\nViolet. On a failed save, the creature is Blinded. It must then make a Wisdom saving throw at the start of your next turn. A successful save ends the blindness. If it fails that save, the creature is transported to another plane of the DM's choosing and is no longer Blinded. (Typically, a creature that is on a plane that isn't its home plane is banished home, while other creatures are usually cast into the Astral or Ethereal planes.) This layer is destroyed by a Dispel Magic spell or a similar spell of equal or higher level that can end Spells and magical Effects.\n","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"wall"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d6",""]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":9,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/beams-rays-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234214,"modifiedTime":1671220971112,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kSPRpeIx3w3nihrF","name":"Dream","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell shapes a creature's dreams. Choose a creature known to you as the target of this spell. The target must be on the same plane of existence as you. Creatures that don't sleep, such as elves, can't be contacted by this spell. You, or a willing creature you touch, enters a trance state, acting as a messenger. While in the trance, the messenger is aware of his or her surroundings, but can't take Actions or move.If the target is asleep, the messenger appears in the target's dreams and can converse with the target as long as it remains asleep, through the Duration of the spell. The messenger can also shape The Environment of the dream, creating landscapes, Objects, and other images. The messenger can emerge from the trance at any time, ending the effect of the spell early. The target recalls the dream perfectly upon waking. If the target is awake when you cast the spell, the messenger knows it, and can either end the trance (and the spell) or wait for the target to fall asleep, at which point the messenger appears in the target's dreams.You can make the messenger appear monstrous and terrifying to the target. If you do, the messenger can deliver a message of no more than ten words and then the target must make a Wisdom saving throw. On a failed save, echoes of the phantasmal monstrosity spawn a nightmare that lasts the Duration of the target's sleep and prevents the target from gaining any benefit from that rest. In addition, when the target wakes up, it takes 3d6 psychic damage.If you have a body part, lock of hair, clipping from a nail, or similar portion of the target's body, the target makes its saving throw with disadvantage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","psychic"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":5,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A handful of sand, a dab of ink, and a writing quill plucked from a sleeping bird","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234214,"modifiedTime":1671220971117,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kjmjY0zlE6IEiQVL","name":"Mending","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell repairs a single break or tear in an object you touch, such as a broken chain link, two halves of a broken key, a torn cloak, or a leaking wineskin. As long as the break or tear is no larger than 1 foot in any dimension, you mend it, leaving no trace of the former damage.This spell can physically repair a magic item or construct, but the spell can't restore magic to such an object.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Two lodestones","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/wind-stream-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234215,"modifiedTime":1671220971126,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"kozNy29b0X6exFhY","name":"Flesh to Stone","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to turn one creature that you can see within range into stone. If the target's body is made of flesh, the creature must make a Constitution saving throw. On a failed save, it is Restrained as its flesh begins to harden. On a successful save, the creature isn't affected.A creature Restrained by this spell must make another Constitution saving throw at the end of each of its turns. If it successfully saves against this spell three times, the spell ends. If it fails its saves three times, it is turned to stone and subjected to the Petrified condition for the Duration. The successes and failures don't need to be consecutive; keep track of both until the target collects three of a kind.If the creature is physically broken while Petrified, it suffers from similar deformities if it reverts to its original state.If you maintain your Concentration on this spell for the entire possible Duration, the creature is turned to stone until the effect is removed.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":6,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A pinch of lime, water, and earth","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/energy-stream-link-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234215,"modifiedTime":1671220971138,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ksaaTxIbKx2sJfia","name":"Inflict Wounds","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Make a melee spell Attack against a creature you can reach. On a hit, the target takes 3d10 necrotic damage.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d10 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d10"}},"sort":0,"flags":{},"img":"icons/magic/unholy/strike-beam-blood-red-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234216,"modifiedTime":1671220971144,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"l9Ju5KE7bbn3WpTm","name":"Hold Monster","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a creature that you can see within range. The target must succeed on a Wisdom saving throw or be Paralyzed for the Duration. This spell has no effect on Undead. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, you can target one additional creature for each slot level above 5th. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":5,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small, straight piece of iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-chains-ropes-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234216,"modifiedTime":1671220971148,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"lnaGnxMzpYnbw1uU","name":"Creation","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You pull wisps of shadow material from the Shadowfell to create a nonliving object of vegetable matter within 'range': soft goods, rope, wood, or something similar. You can also use this spell to create mineral objects such as stone, crystal, or metal. The object created must be no larger than a 5-foot cube, and the object must be of a form and material that you have seen before.The duration depends on the object's material. If the object is composed of multiple materials, use the shortest duration.\n\nVegetable matter - 1 day\nStone or crystal - 12 hours\nPrecious metals - 1 hour\nGems - 10 minutes\nAdamantine or mithral - 1 minute\n\nUsing any material created by this spell as another spell's material component causes that spell to fail.Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the cube increases by 5 feet for each slot level above 5th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"spec"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"cube"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A tiny piece of matter of the same type of the item you plan to create.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/vines-thorned-entwined-glow-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234217,"modifiedTime":1671220971152,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"mF52ldF79Cr7wfQo","name":"Meteor Swarm","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Blazing orbs of fire plummet to the ground at four different points you can see within range. Each creature in a 40-foot-radius sphere centered on each point you choose must make a Dexterity saving throw. The sphere spreads around corners. A creature takes 20d6 fire damage and 20d6 bludgeoning damage on a failed save, or half as much damage on a successful one. A creature in the area of more than one fiery burst is affected only once.The spell damages objects in the area and ignites flammable objects that aren't being worn or carried.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":40,"width":null,"units":"ft","type":"sphere"},"range":{"value":1,"long":null,"units":"mi"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["20d6","bludgeoning"],["20d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":9,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-meteor-salvo-heavy-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234217,"modifiedTime":1671220971165,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"mGGlcLdggHwcL7MG","name":"True Strike","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You extend your hand and point a finger at a target in range. Your magic grants you a brief insight into the target's defenses. On your next turn, you gain advantage on your first attack roll against the target, provided that this spell hasn't ended.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"div","components":{"vocal":false,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/dagger-rune-enchant-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234219,"modifiedTime":1671220971177,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"mbFw57uyfLkyiw5k","name":"Seeming","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell allows you to change the appearance of any number of creatures that you can see within range. You give each target you choose a new, illusory appearance. An unwilling target can make a Charisma saving throw, and if it succeeds, it is unaffected by this spell.The spell disguises physical appearance as well as clothing, armor, Weapons, and Equipment. You can make each creature seem 1 foot shorter or taller and appear thin, fat, or in between. You can't change a target's body type, so you must choose a form that has the same basic arrangement of limbs. Otherwise, the extent of the Illusion is up to you. The spell lasts for the Duration, unless you use your action to dismiss it sooner.The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to a creature's outfit, Objects pass through the hat, and anyone who touches it would feel nothing or would feel the creature's head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair.A creature can use its action to inspect a target and make an Intelligence (Investigation) check against your spell save DC. If it succeeds, it becomes aware that the target is disguised.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":5,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234219,"modifiedTime":1671220971181,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"mgFqi0ev8f7Ut19y","name":"Heroes' Feast","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You bring forth a great feast, including magnificent food and drink. The feast takes 1 Hour to consume and disappears at the end of that time, and the beneficial Effects don't set in until this hour is over. Up to twelve creatures can partake of the feast.A creature that partakes of the feast gains several benefits. The creature is cured of all Diseases and poison, becomes immune to poison and being Frightened, and makes all Wisdom Saving Throws with advantage. Its hit point maximum also increases by 2d10, and it gains the same number of Hit Points. These benefits last for 24 hours.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A gem-encrusted bowl worth at least 1000gp, which the spell consumes","consumed":true,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-flame-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234220,"modifiedTime":1671220971185,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"n4JDcFKe5ikzYmAc","name":"Gentle Repose","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a corpse or other remains. For the duration, the target is protected from decay and can't become undead.The spell also effectively extends the time limit on raising the target from the dead, since days spent under the influence of this spell don't count against the time limit of spells such as raise dead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"day"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A pinch of salt and one copper piece placed on each of the corpse's eyes, which must remain there for the duration","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234221,"modifiedTime":1671220971191,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"n9pJzTDsAwQxJVRl","name":"Sacred Flame","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Flame-like radiance descends on a creature that you can see within range. The target must succeed on a Dexterity saving throw or take 1d8 radiant damage. The target gains no benefit from cover for this saving throw.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234221,"modifiedTime":1671220971196,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nqBDWkVOfcGZt4YU","name":"Faerie Fire","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Each object in a 20-foot cube within range is outlined in blue, green, or violet light (your choice). Any creature in the area when the spell is cast is also outlined in light if it fails a Dexterity saving throw. For the duration, objects and affected creatures shed dim light in a 10-foot radius.Any attack roll against an affected creature or object has advantage if the attacker can see it, and the affected creature or object can't benefit from being invisible.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-meteor-salvo-strong-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234222,"modifiedTime":1671220971200,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"nslx2nT3p4lNkmdp","name":"Major Image","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 20-foot cube. The image appears at a spot that you can see within range and lasts for the duration. It seems completely real, including sounds, smells, and temperature appropriate to the thing depicted. You can't create sufficient heat or cold to cause damage, a sound loud enough to deal thunder damage or deafen a creature, or a smell that might sicken a creature (like a troglodyte's stench).As long as you are within range of the illusion, you can use your action to cause the image to move to any other spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking. Similarly, you can cause the illusion to make different sounds at different times, even making it carry on a conversation, for example.Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and its other sensory qualities become faint to the creature.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the spell lasts until dispelled, without requiring your concentration.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of fleece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234222,"modifiedTime":1671220971207,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"o8Dh7fblk1d16tnO","name":"Healing Word","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature of your choice that you can see within range regains hit points equal to 1d4 + your spellcasting ability modifier. This spell has no effect on undead or constructs.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d4 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d4"}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234223,"modifiedTime":1671220971212,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"o9ZCvuD2B1OTcubb","name":"Wall of Force","ownership":{"default":0},"type":"spell","system":{"description":{"value":"An invisible wall of force springs into existence at a point you choose within range. The wall appears in any orientation you choose, as a horizontal or vertical barrier or at an angle. It can be free floating or resting on a solid surface. You can form it into a hemispherical dome or a sphere with a radius of up to 10 feet, or you can shape a flat surface made up of ten 10-foot-by-10-foot panels. Each panel must be contiguous with another panel. In any form, the wall is 1/4 inch thick. It lasts for the Duration. If the wall cuts through a creature's space when it appears, the creature is pushed to one side of the wall (your choice which side).Nothing can physically pass through the wall. It is immune to all damage and can't be dispelled by Dispel Magic. A Disintegrate spell destroys the wall instantly, however. The wall also extends into the Ethereal Plane, blocking ethereal travel through the wall.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"wall"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A pinch of powder made by crushing clear gemstone","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-magenta-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234223,"modifiedTime":1671220971223,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"oIzA2MEHwxhtQneU","name":"Minor Illusion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a sound or an image of an object within range that lasts for the duration. The illusion also ends if you dismiss it as an action or cast this spell again.If you create a sound, its volume can range from a whisper to a scream. It can be your voice, someone else's voice, a lion's roar, a beating of drums, or any other sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends.If you create an image of an object—such as a chair, muddy footprints, or a small chest—it must be no larger than a 5-foot cube. The image can't create sound, light, smell, or any other sensory effect. Physical interaction with the image reveals it to be an illusion, because things can pass through it.If a creature uses its action to examine the sound or image, the creature can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the illusion becomes faint to the creature.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"cube"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"ill","components":{"vocal":false,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of fleece.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234224,"modifiedTime":1671220971236,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ohqAIBg6de989CIo","name":"Animal Shapes","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your magic turns others into beasts. Choose any number of willing creatures that you can see within range. You transform each target into the form of a Large or smaller beast with a challenge rating of 4 or lower. On subsequent turns, you can use your action to transform affected creatures into new forms.The transformation lasts for the duration for each target, or until the target drops to 0 hit points or dies. You can choose a different form for each target. A target's game statistics are replaced by the statistics of the chosen beast, though the target retains its alignment and Intelligence, Wisdom, and Charisma scores. The target assumes the hit points of its new form, and when it reverts to its normal form, it returns to the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked unconscious. The creature is limited in the actions it can perform by the nature of its new form, and it can't speak or cast spells.The target's gear melds into the new form. The target can't activate, wield, or otherwise benefit from any of its equipment.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/wolf-paw-glow-large-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234225,"modifiedTime":1671220971243,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"oyE5nVppa5mde5gT","name":"Animate Dead","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell creates an undead servant. Choose a pile of bones or a corpse of a Medium or Small humanoid within range. Your spell imbues the target with a foul mimicry of life, raising it as an undead creature. The target becomes a skeleton if you chose bones or a zombie if you chose a corpse (the DM has the creature's game statistics).On each of your turns, you can use a bonus action to mentally command any creature you made with this spell if the creature is within 60 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete.The creature is under your control for 24 hours, after which it stops obeying any command you've given it. To maintain control of the creature for another 24 hours, you must cast this spell on the creature again before the current 24-hour period ends. This use of the spell reasserts your control over up to four creatures you have animated with this spell, rather than animating a new one.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you animate or reassert control over two additional undead creatures for each slot level above 3rd. Each of the creatures must come from a different corpse or pile of bones.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A drop of blood, a piece of flesh, and a pinch of bone dust","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/fear-fright-monster-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234225,"modifiedTime":1671220971248,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Glyph of Warding","type":"spell","img":"icons/magic/symbols/runes-star-orange-purple.webp","system":{"description":{"value":"When you cast this spell, you inscribe a glyph that later unleashes a magical effect. You inscribe it either on a surface (such as a table or a section of floor or wall) or within an object that can be closed (such as a book, a scroll, or a treasure chest) to conceal the glyph. The glyph can cover an area no larger than 10 feet in diameter. If the surface or object is moved more than 10 feet from where you cast this spell, the glyph is broken, and the spell ends without being triggered.The glyph is nearly invisible and requires a successful Intelligence (Investigation) check against your spell save DC to be found.You decide what triggers the glyph when you cast the spell. For glyphs inscribed on a surface, the most typical triggers include touching or standing on the glyph, removing another object covering the glyph, approaching within a certain distance of the glyph, or manipulating the object on which the glyph is inscribed. For glyphs inscribed within an object, the most common triggers include opening that object, approaching within a certain distance of the object, or seeing or reading the glyph. Once a glyph is triggered, this spell ends.You can further refine the trigger so the spell activates only under certain circumstances or according to physical characteristics (such as height or weight), creature kind (for example, the ward could be set to affect aberrations or drow), or alignment. You can also set conditions for creatures that don't trigger the glyph, such as those who say a certain password.When you inscribe the glyph, choose explosive runes or a spell glyph.Explosive Runes. When triggered, the glyph erupts with magical energy in a 20-foot-radius sphere centered on the glyph. The sphere spreads around corners. Each creature in the area must make a Dexterity saving throw. A creature takes [[/r 5d8]] acid, cold, fire, lightning, or thunder damage on a failed saving throw (your choice when you create the glyph), or half as much damage on a successful one.Spell Glyph. You can store a prepared spell of 3rd level or lower in the glyph by casting it as part of creating the glyph. The spell must target a single creature or an area. The spell being stored has no immediate effect when cast in this way. When the glyph is triggered, the stored spell is cast. If the spell has a target, it targets the creature that triggered the glyph. If the spell affects an area, the area is centered on that creature. If the spell summons hostile creatures or creates harmful objects or traps, they appear as close as possible to the intruder and attack it. If the spell requires concentration, it lasts until the end of its full duration.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage of an explosive runes glyph increases by 1d8 for each slot level above 3rd. If you create a spell glyph, you can store any spell of up to the same level as the slot you use for the glyph of warding.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"dstr"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8",""]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Incense and powdered diamond worth at least 200gp, which the spell consumes","consumed":true,"cost":200,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"effects":[],"sort":0,"flags":{},"_id":"pB7XVYwdGNcUG935","folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234226,"modifiedTime":1674761642481,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"pO4zGe5LmFIYqJiL","name":"Bestow Curse","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature, and that creature must succeed on a Wisdom saving throw or become cursed for the duration of the spell. When you cast this spell, choose the nature of the curse from the following options:\n\nChoose one ability score. While cursed, the target has disadvantage on ability checks and saving throws made with that ability score.\nWhile cursed, the target has disadvantage on attack rolls against you.\nWhile cursed, the target must make a Wisdom saving throw at the start of each of its turns. If it fails, it wastes its action that turn doing nothing.\nWhile the target is cursed, your attacks and spells deal an extra 1d8 necrotic damage to the target.\n\nA remove curse spell ends this effect. At the DM's option, you may choose an alternative curse effect, but it should be no more powerful than those described above. The DM has final say on such a curse's effect.At Higher Levels. If you cast this spell using a spell slot of 4th level or higher, the duration is concentration, up to 10 minutes. If you use a spell slot of 5th level or higher, the duration is 8 hours. If you use a spell slot of 7th level or higher, the duration is 24 hours. If you use a 9th level spell slot, the spell lasts until it is dispelled. Using a spell slot of 5th level or higher grants a duration that doesn't require concentration.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":3,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/buff-flight-wings-runes-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234226,"modifiedTime":1671220971284,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"pRMvmknwLf2tdMTj","name":"Pass without Trace","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A veil of shadows and Silence radiates from you, masking you and your companions from detection. For the Duration, each creature you choose within 30 feet of you (including you) has a +10 bonus to Dexterity (Stealth) checks and can't be tracked except by magical means. A creature that receives this bonus leaves behind no tracks or other traces of its passage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Ashes from a burned leaf of mistletoe and a sprig of spruce","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234227,"modifiedTime":1671220971291,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"pV04y1iXoWiom6bp","name":"Incendiary Cloud","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A swirling cloud of smoke shot through with white-hot embers appears in a 20-foot-radius Sphere centered on a point within range. The cloud spreads around corners and is heavily obscured. It lasts for the Duration or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.When the cloud appears, each creature in it must make a Dexterity saving throw. A creature takes 10d8 fire damage on a failed save, or half as much damage on a successful one. A creature must also make this saving throw when it enters the spell's area for the first time on a turn or ends its turn there.The cloud moves 10 feet directly away from you in a direction that you choose at the start of each of your turns.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d8","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":8,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234228,"modifiedTime":1671220971296,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"pn4SnsFDvYDiE6rC","name":"Magnificent Mansion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You conjure an extradimensional dwelling in range that lasts for the Duration. You choose where its one entrance is located. The entrance shimmers faintly and is 5 feet wide and 10 feet tall. You and any creature you designate when you cast the spell can enter the extradimensional dwelling as long as the portal remains open. You can open or close the portal if you are within 30 feet of it. While closed, the portal is Invisible.Beyond the portal is a magnificent foyer with numerous chambers beyond. The atmosphere is clean, fresh, and warm.You can create any floor plan you like, but the space can't exceed 50 cubes, each cube being 10 feet on each side. The place is furnished and decorated as you choose. It contains sufficient food to serve a nine-course banquet for up to 100 people. A staff of 100 near-transparent Servants attends all who enter. You decide the visual appearance of these Servants and their attire. They are completely obedient to your orders. Each servant can perform any task a normal human servant could perform, but they can't Attack or take any action that would directly harm another creature. Thus the Servants can fetch things, clean, mend, fold clothes, light fires, serve food, pour wine, and so on. The Servants can go anywhere in the mansion but can't leave it. Furnishings and other Objects created by this spell dissipate into smoke if removed from the mansion. When the spell ends, any creatures inside the extradimensional space are expelled into the open spaces nearest to the entrance.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":300,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A miniature portal carved from ivory, a small piece of polished marble, and a tiny silver spoon, each item worth at least 5gp","consumed":false,"cost":15,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234228,"modifiedTime":1671220971301,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ppWAAEul0QHtm4er","name":"Detect Thoughts","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you can read the thoughts of certain creatures. When you cast the spell and as your action on each turn until the spell ends, you can focus your mind on any one creature that you can see within 30 feet of you. If the creature you choose has an Intelligence of 3 or lower or doesn't speak any language, the creature is unaffected.You initially learn the surface thoughts of the creature—what is most on its mind in that moment. As an action, you can either shift your attention to another creature's thoughts or attempt to probe deeper into the same creature's mind. If you probe deeper, the target must make a Wisdom saving throw. If it fails, you gain insight into its reasoning (if any), its emotional state, and something that looms large in its mind (such as something it worries over, loves, or hates). If it succeeds, the spell ends. Either way, the target knows that you are probing into its mind, and unless you shift your attention to another creature's thoughts, the creature can use its action on its turn to make an Intelligence check contested by your Intelligence check; if it succeeds, the spell ends.Questions verbally directed at the target creature naturally shape the course of its thoughts, so this spell is particularly effective as part of an interrogation.You can also use this spell to detect the presence of thinking creatures you can't see. When you cast the spell or as your action during the duration, you can search for thoughts within 30 feet of you. The spell can penetrate barriers, but 2 feet of rock, 2 inches of any metal other than lead, or a thin sheet of lead blocks you. You can't detect a creature with an Intelligence of 3 or lower or one that doesn't speak any language.Once you detect the presence of a creature in this way, you can read its thoughts for the rest of the duration as described above, even if you can't see it, but it must still be within range.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A copper piece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234229,"modifiedTime":1671220971305,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"pub0OWVEB71XQx1n","name":"Feather Fall","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose up to five falling creatures within range. A falling creature's rate of descent slows to 60 feet per round until the spell ends. If the creature lands before the spell ends, it takes no falling damage and can land on its feet, and the spell ends for that creature.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":"which you take when you or a creature within 60 feet of you falls"},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small feather or piece of down","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/wind-swirl-pink-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234229,"modifiedTime":1671220971309,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"pxpb2eOB6bv4phAf","name":"Banishment","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to send one creature that you can see within range to another plane of existence. The target must succeed on a Charisma saving throw or be banished.If the target is native to the plane of existence you're on, you banish the target to a harmless demiplane. While there, the target is incapacitated. The target remains there until the spell ends, at which point the target reappears in the space it left or in the nearest unoccupied space if that space is occupied.If the target is native to a different plane of existence than the one you're on, the target is banished with a faint popping noise, returning to its home plane. If the spell ends before 1 minute has passed, the target reappears in the space it left or in the nearest unoccupied space if that space is occupied. Otherwise, the target doesn't return.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An item distasteful to the target","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/energy-stream-link-spiral-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234230,"modifiedTime":1671220971314,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"pybg5MNc3lkerH4Y","name":"Blight","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Necromantic energy washes over a creature of your choice that you can see within range, draining moisture and vitality from it. The target must make a Constitution saving throw. The target takes 8d8 necrotic damage on a failed save, or half as much damage on a successful one. This spell has no effect on undead or constructs.If you target a plant creature or a magical plant, it makes the saving throw with disadvantage, and the spell deals maximum damage to it.If you target a nonmagical plant that isn't a creature, such as a tree or shrub, it doesn't make a saving throw, it simply withers and dies.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d8","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":4,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/unholy/strike-beam-blood-large-red-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234230,"modifiedTime":1671220971318,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qLeEXZDbW5y4bmLY","name":"True Resurrection","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature that has been dead for no longer than 200 years and that died for any reason except old age. If the creature's soul is free and willing, the creature is restored to life with all its hit points.This spell closes all wounds, neutralizes any poison, cures all diseases, and lifts any curses affecting the creature when it died. The spell replaces damaged or missing organs and limbs. If the creature was undead, it is restored to its non-undead form.The spell can even provide a new body if the original no longer exists, in which case you must speak the creature's name. The creature then appears in an unoccupied space you choose within 10 feet of you.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":9,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A sprinkle of holy water and diamonds worth at least 25,000 gp, which the spell consumes","consumed":true,"cost":25000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-flame-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234231,"modifiedTime":1671220971322,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"qcYitWoSMTnKkzM1","name":"Heal","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a creature that you can see within range. A surge of positive energy washes through the creature, causing it to regain 70 Hit Points. This spell also ends blindness, deafness, and any Diseases affecting the target. This spell has no effect on constructs or Undead.At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the amount of Healing increases by 10 for each slot level above 6th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["70","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"10"}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-flame-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234231,"modifiedTime":1671220971327,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"r3243JU4AyQJyfX4","name":"Modify Memory","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to reshape another creature's memories. One creature that you can see must make a Wisdom saving throw. If you are fighting the creature, it has advantage on the saving throw. On a failed save, the target becomes Charmed by you for the Duration. The charmed target is Incapacitated and unaware of its surroundings, though it can still hear you. If it takes any damage or is targeted by another spell, this spell ends, and none of the target's memories are modified.While this charm lasts, you can affect the target's memory of an event that it experienced within the last 24 hours and that lasted no more than 10 minutes. You can permanently eliminate all memory of the event, allow the target to recall the event with perfect clarity and exacting detail, change its memory of the details of the event, or create a memory of some other event.You must speak to the target to describe how its memories are affected, and it must be able to understand your language for the modified memories to take root. Its mind fills in any gaps in the details of your description. If the spell ends before you have finished describing the modified memories, the creature's memory isn't altered. Otherwise, the modified memories take hold when the spell ends.A modified memory doesn't necessarily affect how a creature behaves, particularly if the memory contradicts the creature's natural inclinations, Alignment, or beliefs. An illogical modified memory, such as implanting a memory of how much the creature enjoyed dousing itself in acid, is dismissed, perhaps as a bad dream. The DM might deem a modified memory too nonsensical to affect a creature in a significant manner.A Remove Curse or Greater Restoration spell cast on the target restores the creature's true memory.At Higher Levels. If you cast this spell using a spell slot of 6th level or higher, you can alter the target's memories of an event that took place up to 7 days ago (6th level), 30 days ago (7th level), 1 year ago (8th level), or any time in the creature's past (9th level).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":5,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-large-teal-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234232,"modifiedTime":1671220971331,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"s7nXgot5gGZVcMrv","name":"Transport via Plants","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell creates a magical link between a Large or larger inanimate plant within range and another plant, at any distance, on the same plane of existence. You must have seen or touched the destination plant at least once before. For the Duration, any creature can step into the target plant and exit from the destination plant by using 5 feet of Movement.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":2,"width":null,"units":"spec","type":"object"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-maple-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234233,"modifiedTime":1671220971335,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"sTIkQK7KuQNOyY0C","name":"Hallucinatory Terrain","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You make natural terrain in a 150-foot cube in range look, sound, and smell like some other sort of natural terrain. Thus, open fields or a road can be made to resemble a swamp, hill, crevasse, or some other difficult or impassable terrain. A pond can be made to seem like a grassy meadow, a precipice like a gentle slope, or a rock-strewn gully like a wide and smooth road. Manufactured structures, Equipment, and creatures within the area aren't changed in appearance.The tactile characteristics of the terrain are unchanged, so creatures entering the area are likely to see through the Illusion. If the difference isn't obvious by touch, a creature carefully examining the Illusion can attempt an Intelligence (Investigation) check against your spell save DC to disbelieve it. A creature who discerns the Illusion for what it is, sees it as a vague image superimposed on the terrain.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":150,"width":null,"units":"ft","type":"cube"},"range":{"value":300,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A stone, a twig, and a bit of green plant","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-teal-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234233,"modifiedTime":1671220971340,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"tEpDmYZNGc9f5OhJ","name":"Greater Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You or a creature you touch becomes Invisible until the spell ends. Anything the target is wearing or carrying is Invisible as long as it is on the target's person.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234234,"modifiedTime":1671220971344,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"tMH6Ivn4GmE1naMj","name":"Harm","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You unleash a virulent disease on a creature that you can see within range. The target must make a Constitution saving throw. On a failed save, it takes 14d6 necrotic damage, or half as much damage on a successful save. The damage can't reduce the target's Hit Points below 1. If the target fails the saving throw, its hit point maximum is reduced for 1 Hour by an amount equal to the necrotic damage it took. Any effect that removes a disease allows a creature's hit point maximum to return to normal before that time passes.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["14d6","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":6,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/unholy/strike-beam-blood-large-red-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234234,"modifiedTime":1671220971347,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"uAwtVZkiSTyP6ORB","name":"Telepathic Bond","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You forge a telepathic link among up to eight willing creatures of your choice within range, psychically linking each creature to all the others for the duration. Creatures with Intelligence scores of 2 or less aren't affected by this spell.Until the spell ends, the targets can communicate telepathically through the bond whether or not they have a common language. The communication is possible over any distance, though it can't extend to other planes of existence.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":8,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"Pieces of eggshell from two different kinds of creatures","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/energy-stream-link-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234235,"modifiedTime":1671220971351,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"uCud2s4TjMfjiXUb","name":"Spirit Guardians","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You call forth spirits to protect you. They flit around you to a distance of 15 feet for the duration. If you are good or neutral, their spectral form appears angelic or fey (your choice). If you are evil, they appear fiendish.When you cast this spell, you can designate any number of creatures you can see to be unaffected by it. An affected creature's speed is halved in the area, and when the creature enters the area for the first time on a turn or starts its turn there, it must make a Wisdom saving throw. On a failed save, the creature takes 3d8 radiant damage (if you are good or neutral) or 3d8 necrotic damage (if you are evil). On a successful save, the creature takes half as much damage.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":3,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A holy symbol","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/light/projectile-bolts-salvo-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234235,"modifiedTime":1671220971355,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"uUWb1wZgtMou0TVP","name":"Cure Wounds","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch regains a number of hit points equal to 1d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234236,"modifiedTime":1671220971372,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"udsLtG0BugXHR2JQ","name":"Prestidigitation","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell is a minor magical trick that novice spellcasters use for practice. You create one of the following magical effects within range:\n\nYou create an instantaneous, harmless sensory effect, such as a shower of sparks, a puff of wind, faint musical notes, or an odd odor.\nYou instantaneously light or snuff out a candle, a torch, or a small campfire.\nYou instantaneously clean or soil an object no larger than 1 cubic foot.\nYou chill, warm, or flavor up to 1 cubic foot of nonliving material for 1 hour.\nYou make a color, a small mark, or a symbol appear on an object or a surface for 1 hour.\nYou create a nonmagical trinket or an illusory image that can fit in your hand and that lasts until the end of your next turn.\n\nIf you cast this spell multiple times, you can have up to three of its non-instantaneous effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234236,"modifiedTime":1671220971378,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"vrN18tbTw7io5MWd","name":"Chill Touch","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a ghostly, skeletal hand in the space of a creature within range. Make a ranged spell attack against the creature to assail it with the chill of the grave. On a hit, the target takes 1d8 Necrotic damage, and it can't regain hit points until the start of your next turn. Until then, the hand clings to the target.If you hit an undead target, it also has disadvantage on attack rolls against you until the end of your next turn.This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{},"img":"icons/magic/water/projectile-ice-faceted-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234237,"modifiedTime":1671220971381,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"wJKpSvSTbSkTjqyb","name":"Shatter","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A sudden loud ringing noise, painfully intense, erupts from a point of your choice within range. Each creature in a 10-foot-radius sphere centered on that point must make a Constitution saving throw. A creature takes 3d8 thunder damage on a failed save, or half as much damage on a successful one. A creature made of inorganic material such as stone, crystal, or metal has disadvantage on this saving throw.A nonmagical object that isn't being worn or carried also takes the damage if it's in the spell's area.Higher Levels. When you cast this spell using a 3 or higher level spell slot, the damage of the spell increases by 1d8 for each level of higher spell slot 2.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8","thunder"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A chip of mica","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/fire/explosion-fireball-medium-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234237,"modifiedTime":1671220971385,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"wXzkqpeFP8eWgJzK","name":"Antilife Shell","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A shimmering barrier extends out from you in a 10-foot radius and moves with you, remaining centered on you and hedging out creatures other than undead and constructs. The barrier lasts for the duration.The barrier prevents an affected creature from passing or reaching through. An affected creature can cast spells or make attacks with ranged or reach weapons through the barrier.If you move so that an affected creature is forced to pass through the barrier, the spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234237,"modifiedTime":1671220971397,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"wpx42mtoZ5BmXRs1","name":"Phantom Steed","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A Large quasi-real, horselike creature appears on the ground in an unoccupied space of your choice within range. You decide the creature's appearance, but it is equipped with a saddle, bit, and bridle. Any of the equipment created by the spell vanishes in a puff of smoke if it is carried more than 10 feet away from the steed.For the duration, you or a creature you choose can ride the steed. The creature uses the statistics for a riding horse, except it has a speed of 100 feet and can travel 10 miles in an hour, or 13 miles at a fast pace. When the spell ends, the steed gradually fades, giving the rider 1 minute to dismount. The spell ends if you use an action to dismiss it or if the steed takes any damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/wolf-paw-glow-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234238,"modifiedTime":1671220971403,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"wqfAVANuQonNBgnL","name":"Misty Step","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Briefly surrounded by silvery mist, you teleport up to 30 feet to an unoccupied space that you can see.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"space"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-snare-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234238,"modifiedTime":1671220971408,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"wvLbtemkH8gyBpdc","name":"Sequester","ownership":{"default":0},"type":"spell","system":{"description":{"value":"By means of this spell, a willing creature or an object can be hidden away, safe from detection for the Duration. When you cast the spell and touch the target, it becomes Invisible and can't be targeted by divination spells or perceived through Scrying sensors created by Divination Spells.If the target is a creature, it falls into a state of suspended animation. Time ceases to flow for it, and it doesn't grow older.You can set a condition for the spell to end early. The condition can be anything you choose, but it must occur or be visible within 1 mile of the target. Examples include \"after 1,000 years\" or \"when the Tarrasque awakens.\" This spell also ends if the target takes any damage.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"disp"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A powder composed of diamond, emerald, ruby, and sapphire dust worth at least 5,000 gp, which the spell consumes","consumed":true,"cost":5000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-chains-ropes-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234239,"modifiedTime":1674761629775,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"x5JNBSyIBBZsjcGT","name":"Earthquake","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a seismic disturbance at a point on the ground that you can see within range. For the Duration, an intense tremor rips through the ground in a 100-foot-radius circle centered on that point and shakes creatures and structures in contact with the ground in that area.The ground in the area becomes difficult terrain. Each creature on the ground that is concentrating must make a Constitution saving throw. On a failed save, the creature's Concentration is broken.When you cast this spell and at the end of each turn you spend concentrating on it, each creature on the ground in the area must make a Dexterity saving throw. On a failed save, the creature is knocked prone.This spell can have additional Effects depending on the terrain in the area, as determined by the DM.Fissures. Fissures open throughout the spell's area at the start of your next turn after you cast the spell. A total of 1d6 such fissures open in locations chosen by the DM. Each is 1d10 × 10 feet deep, 10 feet wide, and extends from one edge of the spell's area to the opposite side. A creature standing on a spot where a fissure opens must succeed on a Dexterity saving throw or fall in. A creature that successfully saves moves with the fissure's edge as it opens.A fissure that opens beneath a structure causes it to automatically collapse (see below).Structures. The tremor deals 50 bludgeoning damage to any structure in contact with the ground in the area when you cast the spell and at the start of each of your turns until the spell ends. If a structure drops to 0 Hit Points, it collapses and potentially damages nearby creatures. A creature within half the distance of a structure's height must make a Dexterity saving throw. On a failed save, the creature takes 5d6 bludgeoning damage, is knocked prone, and is buried in the rubble, requiring a DC 20 Strength (Athletics) check as an action to escape. The DM can adjust the DC higher or lower, depending on the Nature of the rubble. On a successful save, the creature takes half as much damage and doesn't fall prone or become buried.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"radius"},"range":{"value":500,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":8,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A pinch of dirt, a piece of rock, and a lump of clay","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/earth/projectile-spiked-stone-boulder-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234239,"modifiedTime":1671220971418,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xNM9CzQQr2CieM4B","name":"Demiplane","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a shadowy door on a flat solid surface that you can see within range. The door is large enough to allow Medium creatures to pass through unhindered. When opened, the door leads to a demiplane that appears to be an empty room 30 feet in each dimension, made of wood or stone. When the spell ends, the door disappears, and any creatures or objects inside the demiplane remain trapped there, as the door also disappears from the other side.Each time you cast this spell, you can create a new demiplane, or have the shadowy door connect to a demiplane you created with a previous casting of this spell. Additionally, if you know the nature and contents of a demiplane created by a casting of this spell by another creature, you can have the shadowy door connect to its demiplane instead.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"con","components":{"vocal":false,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234240,"modifiedTime":1671220971422,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"xmDBqZhRVrtLP8h2","name":"Protection from Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Until the spell ends, one willing creature you touch is protected against certain types of creatures: aberrations, celestials, elementals, fey, fiends, and undead.The protection grants several benefits. Creatures of those types have disadvantage on attack rolls against the target. The target also can't be charmed, frightened, or possessed by them. If the target is already charmed, frightened, or possessed by such a creature, the target has advantage on any new saving throw against the relevant effect.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Holy water or powdered silver and iron, which the spell consumes","consumed":true,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234240,"modifiedTime":1671220971426,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"y8A4HfTwd93ypdEz","name":"Magic Circle","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a 10-foot-radius, 20-foot-tall Cylinder of magical energy centered on a point on the ground that you can see within range. Glowing runes appear wherever the cylinder intersects with the floor or other surface.Choose one or more of the following types of creatures: Celestials, Elementals, fey, Fiends, or Undead. The circle affects a creature of the chosen type in the following ways:\n\nThe creature can't willingly enter the cylinder by nonmagical means. If the creature tries to use teleportation or interplanar travel to do so, it must first succeed on a Charisma saving throw.\nThe creature has disadvantage on Attack rolls against Targets within the Cylinder.\nTargets within the cylinder can't be Charmed, Frightened, or possessed by the creature.\n\nWhen you cast this spell, you can elect to cause its magic to operate in the reverse direction, preventing a creature of the specified type from leaving the cylinder and protecting targets outside it.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the Duration increases by 1 Hour for each slot level above 3rd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"@item.level - 2","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"cylinder"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Holy water or powdered silver and iron worth at least 100gp, which the spell consumes","consumed":true,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234241,"modifiedTime":1671220971432,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"yI0XWIgI0IGGsR3R","name":"Move Earth","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose an area of terrain no larger than 40 feet on a side within range. You can reshape dirt, sand, or clay in the area in any manner you choose for the Duration. You can raise or lower the area's elevation, create or fill in a trench, erect or flatten a wall, or form a pillar. The extent of any such changes can't exceed half the area's largest dimension. So, if you affect a 40-foot square, you can create a pillar up to 20 feet high, raise or lower the square's elevation by up to 20 feet, dig a trench up to 20 feet deep, and so on. It takes 10 minutes for these changes to complete.At the end of every 10 minutes you spend concentrating on the spell, you can choose a new area of terrain to affect.Because the terrain's transformation occurs slowly, creatures in the area can't usually be trapped or injured by the ground's Movement.This spell can't manipulate natural stone or stone construction. Rocks and structures shift to accommodate the new terrain. If the way you shape the terrain would make a structure unstable, it might collapse.Similarly, this spell doesn't directly affect Plant Growth. The moved earth carries any Plants along with it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"2","units":"hour"},"cover":null,"target":{"value":40,"width":null,"units":"ft","type":"square"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An iron blade and a small bag containing a mixture of soils- clay, loam, and sand","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/earth/projectile-spiked-stone-boulder-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234241,"modifiedTime":1671220971444,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"yN3XZZujhR4aVvPa","name":"Conjure Fey","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You summon a fey creature of challenge rating 6 or lower, or a fey spirit that takes the form of a beast of challenge rating 6 or lower. It appears in an unoccupied space that you can see within range. The fey creature disappears when it drops to 0 hit points or when the spell ends.The fey creature is friendly to you and your companions for the duration. Roll initiative for the creature, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you), as long as they don't violate its alignment. If you don't issue any commands to the fey creature, it defends itself from hostile creatures but otherwise takes no actions.If your concentration is broken, the fey creature doesn't disappear. Instead, you lose control of the fey creature, it becomes hostile toward you and your companions, and it might attack. An uncontrolled fey creature can't be dismissed by you, and it disappears 1 hour after you summoned it.Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the challenge rating increases by 1 for each slot level above 6th.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234242,"modifiedTime":1671220971450,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"yfbK8gZqESlaoY5t","name":"Fly","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a willing creature. The target gains a flying speed of 60 feet for the Duration. When the spell ends, the target falls if it is still aloft, unless it can stop the fall.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A wing feather from any bird","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/energy-stream-link-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234243,"modifiedTime":1671220971464,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"yqUDoxk4x0NWG5Bz","name":"Slow","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You alter time around up to six creatures of your choice in a 40-foot cube within range. Each target must succeed on a Wisdom saving throw or be affected by this spell for the duration.An affected target's speed is halved, it takes a -2 penalty to AC and Dexterity saving throws, and it can't use reactions. On its turn, it can use either an action or a bonus action, not both. Regardless of the creature's abilities or magic items, it can't make more than one melee or ranged attack during its turn.If the creature attempts to cast a spell with a casting time of 1 action, roll a d20. On an 11 or higher, the spell doesn't take effect until the creature's next turn, and the creature must use its action on that turn to complete the spell. If it can't, the spell is wasted.A creature affected by this spell makes another Wisdom saving throw at the end of its turn. On a successful save, the effect ends for it.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":40,"width":null,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d20","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A drop of molasses.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-dense-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234243,"modifiedTime":1671220971484,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"yw0tYQkOMCgKZ8Ur","name":"Guards and Wards","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a ward that protects up to 2,500 square feet of floor space (an area 50 feet square, or one hundred 5-foot squares or twenty-five 10-foot squares). The warded area can be up to 20 feet tall, and shaped as you desire. You can ward several stories of a stronghold by dividing the area among them, as long as you can walk into each contiguous area while you are casting the spell.When you cast this spell, you can specify individuals that are unaffected by any or all of the Effects that you choose. You can also specify a password that, when spoken aloud, makes the speaker immune to these Effects.Guards and wards creates the following Effects within the warded area.Corridors. Fog fills all the warded corridors, making them heavily obscured. In addition, at each intersection or branching passage offering a choice of direction, there is a 50 percent chance that a creature other than you will believe it is going in the opposite direction from the one it chooses.Doors. All doors in the warded area are magically locked, as if sealed by an Arcane Lock spell. In addition, you can cover up to ten doors with an Illusion (equivalent to the illusory object function of the Minor Illusion spell) to make them appear as plain sections of wall.Stairs. Webs fill all stairs in the warded area from top to bottom, as the web spell. These strands regrow in 10 minutes if they are burned or torn away while guards and wards lasts.Other Spell Effect. You can place your choice of one of the following magical Effects within the warded area of the stronghold.\n\nPlace Dancing Lights in four corridors. You can designate a simple program that the lights repeat as long as guards and wards lasts.\nPlace Magic Mouth in two locations.\nPlace Stinking Cloud in two locations. The vapors appear in the places you designate; they return within 10 minutes if dispersed by wind while guards and wards lasts.\nPlace a constant Gust of Wind in one corridor or room.\nPlace a Suggestion in one location. You select an area of up to 5 feet square, and any creature that enters or passes through the area receives the Suggestion mentally.\n\nThe whole warded area radiates magic. A Dispel Magic cast on a specific effect, if successful, removes only that effect.You can create a permanently guarded and warded structure by casting this spell there every day for one year.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Burning incense, a small measure of brimstone and oil, a knotted string, a small amount of umber hulk blood, and a small silver rod worth at least 10gp","consumed":false,"cost":10,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234244,"modifiedTime":1671220971489,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"z1mx84ONwkXKUZd7","name":"Shield","type":"spell","img":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","system":{"description":{"value":"An invisible barrier of magical force appears and protects you. Until the start of your next turn, you have a +5 bonus to AC, including against the triggering attack, and you take no damage from magic missile.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"reaction","cost":1,"condition":"Which you take when you are hit by an attack or targeted by the magic missile spell"},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"6pbotGIvqQkraPva","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"5","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"rounds":1,"seconds":null,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","label":"Shield","origin":"Item.FlLKKv7bQBlIAs11","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234244,"modifiedTime":1671220971502,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zMAWdyc8UVb37BK4","name":"Suggestion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You suggest a course of activity (limited to a sentence or two) and magically influence a creature you can see within range that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act ends the spell.The target must make a Wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do.You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a knight give her warhorse to the first beggar she meets. If the condition isn't met before the spell expires, the activity isn't performed.If you or any of your companions damage the target, the spell ends.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A snake's tongue and either a bit of honeycomb or a drop of sweet oil","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234245,"modifiedTime":1671220971507,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zMEo5DKK8uxsuWnq","name":"Reincarnate","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a dead humanoid or a piece of a dead humanoid. Provided that the creature has been dead no longer than 10 days, the spell forms a new adult body for it and then calls the soul to enter that body. If the target's soul isn't free or willing to do so, the spell fails.The magic fashions a new body for the creature to inhabit, which likely causes the creature's race to change. The DM rolls on the @Compendium[dnd5e.tables.eXu1QFMsFtTtoJBZ]{Reincarnate} table to determine what form the creature takes when restored to life, or the DM chooses a form.\nThe reincarnated creature recalls its former life and experiences. It retains the capabilities it had in its original form, except it exchanges its original race for the new one and changes its Racial Traits accordingly.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d100","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Rare oils and unguents worth at least 1,000 gp, which the spell consumes","consumed":true,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-flame-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234245,"modifiedTime":1671220971512,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zPGohqJRir6MyQ3U","name":"Expeditious Retreat","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell allows you to move at an incredible pace. When you cast this spell, and then as a bonus action on each of your turns until the spell ends, you can take the Dash action.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/wind-stream-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234246,"modifiedTime":1671220971516,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ztgcdrWPshKRpFd0","name":"Fireball","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A bright streak flashes from your pointing finger to a point you choose within range and then blossoms with a low roar into an explosion of flame. Each creature in a 20-foot-radius sphere centered on that point must make a Dexterity saving throw. A target takes 8d6 fire damage on a failed save, or half as much damage on a successful one.The fire spreads around corners. It ignites flammable objects in the area that aren't being worn or carried.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A tiny ball of bat guano and sulfur","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-fireball-smoke-large-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234246,"modifiedTime":1671220971520,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"zwGsAv6kmwzYGhh3","name":"Blindness/Deafness","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You can blind or deafen a foe. Choose one creature that you can see within range to make a Constitution saving throw. If it fails, the target is either blinded or deafened (your choice) for the duration. At the end of each of its turns, the target can make a Constitution saving throw. On a success, the spell ends.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":"SRD 5.1","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":2,"school":"nec","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234247,"modifiedTime":1671220971532,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"04nMsTWkIFvkbXlY","name":"Polymorph","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell transforms a creature that you can see within range into a new form. An unwilling creature must make a Wisdom saving throw to avoid the effect. The spell has no effect on a Shapechanger or a creature with 0 Hit Points.The transformation lasts for the Duration, or until the target drops to 0 Hit Points or dies. The new form can be any beast whose Challenge rating is equal to or less than the target's (or the target's level, if it doesn't have a challenge rating). The target's game statistics, including mental Ability Scores, are replaced by the Statistics of the chosen beast. It retains its Alignment and personality.The target assumes the Hit Points of its new form. When it reverts to its normal form, the creature returns to the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked Unconscious.The creature is limited in the Actions it can perform by the Nature of its new form, and it can't speak, cast Spells, or take any other action that requires hands or speech.The target's gear melds into the new form. The creature can't activate, use, wield, or otherwise benefit from any of its Equipment.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":4,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A caterpillar cocoon","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/energy-stream-link-large-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234052,"modifiedTime":1671220968303,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"0xmXiPiuYws1OGcX","name":"Hunter's Mark","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You choose a creature you can see within range and mystically mark it as your quarry. Until the spell ends, you deal an extra {@dice 1d6} damage to the target whenever you hit it with a weapon attack, and you have advantage on any Wisdom (Perception) or Wisdom (Survival) check you make to find it. If the target drops to 0 hit points before this spell ends, you can use a bonus action on a subsequent turn of yours to mark a new creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-small-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234053,"modifiedTime":1671220968318,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"13uVuBQP6VaiSPvC","name":"Water Breathing","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell grants up to ten willing creatures you can see within range the ability to breathe underwater until the spell ends. Affected creatures also retain their normal mode of respiration.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A short reed or piece of straw","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/water/pseudopod-swirl-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234054,"modifiedTime":1671220968323,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"15Fa6q1nH27XfbR8","name":"Dispel Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose one creature, object, or magical effect within range. Any spell of 3rd level or lower on the target ends. For each spell of 4th level or higher on the target, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a successful check, the spell ends.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you automatically end the effects of a spell on the target if the spell's level is equal to or less than the level of the spell slot you used.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/skills/melee/strike-blade-knife-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234054,"modifiedTime":1671220968331,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"1ADstb0Xec6HHRcU","name":"Resilient Sphere","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A sphere of shimmering force encloses a creature or object of Large size or smaller within range. An unwilling creature must make a Dexterity saving throw. On a failed save, the creature is enclosed for the Duration.Nothing—not physical Objects, energy, or other spell effects—can pass through the barrier, in or out, though a creature in the sphere can breathe there. The sphere is immune to all damage, and a creature or object inside can't be damaged by attacks or Effects originating from outside, nor can a creature inside the sphere damage anything outside it.The sphere is weightless and just large enough to contain the creature or object inside. An enclosed creature can use its action to push against the sphere's walls and thus roll the sphere at up to half the creature's speed. Similarly, the globe can be picked up and moved by other creatures.A Disintegrate spell targeting the globe destroys it without harming anything inside it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":4,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A hemispherical piece of clear crystal and a matching hemispherical piece of gum arabic","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-large-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234055,"modifiedTime":1671220968343,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"1Drt0SHxbEAHxprN","name":"Conjure Animals","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You summon fey spirits that take the form of beasts and appear in unoccupied spaces that you can see within range. Choose one of the following options for what appears:\n\nOne beast of challenge rating 2 or lower\nTwo beasts of challenge rating 1 or lower\nFour beasts of challenge rating 1/2 or lower\nEight beasts of challenge rating 1/4 or lower\nEach beast is also considered fey, and it disappears when it drops to 0 hit points or when the spell ends.\n\nThe summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which has its own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions.Higher Levels. When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 5th-level slot, three times as many with a 7th-level.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/wolf-paw-glow-large-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234055,"modifiedTime":1671220968359,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"1LkZvINag7KqBmDR","name":"Conjure Elemental","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You call forth an elemental servant. Choose an area of air, earth, fire, or water that fills a 10-foot cube within range. An elemental of challenge rating 5 or lower appropriate to the area you chose appears in an unoccupied space within 10 feet of it. For example, a fire elemental emerges from a bonfire, and an earth elemental rises up from the ground. The elemental disappears when it drops to 0 hit points or when the spell ends.The elemental is friendly to you and your companions for the duration. Roll initiative for the elemental, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the elemental, it defends itself from hostile creatures but otherwise takes no actions.If your concentration is broken, the elemental doesn't disappear. Instead, you lose control of the elemental, it becomes hostile toward you and your companions, and it might attack. An uncontrolled elemental can't be dismissed by you, and it disappears 1 hour after you summoned it.Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the challenge rating increases by 1 for each slot level above 5th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":"an area of air, earth, fire, or water that fills a 10-foot cube within range"},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Burning incense for air, soft clay for earth, sulfur and phosphorus for fire, or water and sand for water.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234056,"modifiedTime":1671220968382,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"1N8dDMMgZ1h1YJ3B","name":"Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An eyelash encased in gum arabic","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234056,"modifiedTime":1671220968430,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"1RzxKZzkQOoioxPj","name":"Glibness","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Until the spell ends, when you make a Charisma check, you can replace the number you roll with a 15. Additionally, no matter what you say, magic that would determine if you are telling the truth indicates that you are being truthful.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234057,"modifiedTime":1671220968441,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"1nhIxh0DsJsntCfj","name":"Knock","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose an object that you can see within range. The object can be a door, a box, a chest, a set of Manacles, a padlock, or another object that contains a mundane or magical means that prevents access.A target that is held shut by a mundane lock or that is stuck or barred becomes unlocked, unstuck, or unbarred. If the object has multiple locks, only one of them is unlocked.If you choose a target that is held shut with Arcane Lock, that spell is suppressed for 10 minutes, during which time the target can be opened and shut normally.When you cast the spell, a loud knock, audible from as far away as 300 feet, emanates from the target object.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-triangle-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234057,"modifiedTime":1671220968471,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"22dPoeXfaaAv4K3h","name":"Hellish Rebuke","ownership":{"default":0},"type":"spell","system":{"description":{"value":"When you are damaged by a creature within 60 feet of you that you can see, you point your finger, and the creature that damaged you is momentarily surrounded by hellish flames. The creature must make a Dexterity saving throw. It takes 2d10 fire damage on a failed save, or half as much damage on a successful one.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d10 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":"Which you take in response to being damaged by a creature within 60 feet of you that you can see"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d10"}},"sort":0,"flags":{},"img":"icons/magic/control/fear-fright-shadow-monster-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234058,"modifiedTime":1671220968514,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"2IWiZAJtOGDoKjiz","name":"Gaseous Form","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You transform a willing creature you touch, along with everything it's wearing and carrying, into a misty cloud for the duration. The spell ends if the creature drops to 0 hit points. An incorporeal creature isn't affected.While in this form, the target's only method of movement is a flying speed of 10 feet. The target can enter and occupy the space of another creature. The target has resistance to nonmagical damage, and it has advantage on Strength, Dexterity, and Constitution saving throws. The target can pass through small holes, narrow openings, and even mere cracks, though it treats liquids as though they were solid surfaces. The target can't fall and remains hovering in the air even when stunned or otherwise incapacitated.While in the form of a misty cloud, the target can't talk or manipulate objects, and any objects it was carrying or holding can't be dropped, used, or otherwise interacted with. The target can't attack or cast spells.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of gauze and a wisp of smoke","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-dense-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234058,"modifiedTime":1671220968521,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"2RC0EyvBLPH88PZF","name":"Sunbeam","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A beam of brilliant light flashes out from your hand in a 5-foot-wide, 60-foot-long line. Each creature in the line must make a Constitution saving throw. On a failed save, a creature takes 6d8 radiant damage and is Blinded until your next turn. On a successful save, it takes half as much damage and isn't blinded by this spell. Undead and oozes have disadvantage on this saving throw.You can create a new line of radiance as your action on any turn until the spell ends.For the Duration, a mote of brilliant radiance shines in your hand. It sheds bright light in a 30-foot radius and dim light for an additional 30 feet. This light is sunlight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":6,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A magnifying glass","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/beams-rays-orange-purple-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234059,"modifiedTime":1671220968531,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"2VXGS206tuChoeXy","name":"Speak with Plants","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You imbue Plants within 30 feet of you with limited sentience and animation, giving them the ability to communicate with you and follow your simple commands. You can question plants about events in the spell's area within the past day, gaining information about creatures that have passed, weather, and other circumstances.You can also turn difficult terrain caused by Plant Growth (such as thickets and undergrowth) into ordinary terrain that lasts for the Duration. Or you can turn ordinary terrain where Plants are present into difficult terrain that lasts for the duration, causing vines and branches to hinder pursuers, for example.Plants might be able to perform other tasks on your behalf, at the DM's discretion. The spell doesn't enable Plants to uproot themselves and move about, but they can freely move branches, tendrils, and stalks.If a plant creature is in the area, you can communicate with it as if you shared a Common language, but you gain no magical ability to influence it.This spell can cause the plants created by the Entangle spell to release a Restrained creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234060,"modifiedTime":1671220968535,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"2skfDtglk1mGrb3l","name":"Detect Poison and Disease","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you can sense the presence and location of poisons, poisonous creatures, and diseases within 30 feet of you. You also identify the kind of poison, poisonous creature, or disease in each case.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A yew leaf","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-teal-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234060,"modifiedTime":1671220968539,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"2yHXEcrRbadZDr5M","name":"Heat Metal","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a manufactured metal object, such as a metal weapon or a suit of heavy or medium metal armor, that you can see within range. You cause the object to glow red-hot. Any creature in physical contact with the object takes 2d8 fire damage when you cast the spell. Until the spell ends, you can use a bonus action on each of your subsequent turns to cause this damage again.If a creature is holding or wearing the object and takes the damage from it, the creature must succeed on a Constitution saving throw or drop the object if it can. If it doesn't drop the object, it has disadvantage on attack rolls and ability checks until the start of your next turn.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","fire"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A piece of iron and a flame.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-large-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234061,"modifiedTime":1671220968543,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"30ZgXtijJVCxQk5N","name":"Enthrall","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You weave a distracting string of words, causing creatures of your choice that you can see within range and that can hear you to make a Wisdom saving throw. Any creature that can't be Charmed succeeds on this saving throw automatically, and if you or your companions are fighting a creature, it has advantage on the save. On a failed save, the target has disadvantage on Wisdom (Perception) checks made to perceive any creature other than you until the spell ends or until the target can no longer hear you. The spell ends if you are Incapacitated or can no longer speak.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234061,"modifiedTime":1671220968552,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"34ddoYIrnOZ2GFYi","name":"Mass Healing Word","ownership":{"default":0},"type":"spell","system":{"description":{"value":"As you call out words of restoration, up to six creatures of your choice that you can see within range regain hit points equal to 1d4 + your spellcasting ability modifier. This spell has no effect on undead or constructs.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the healing increases by 1d4 for each slot level above 3rd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":6,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d4"}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-flame-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234062,"modifiedTime":1671220968556,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"35j2QIMmIk6aEdxj","name":"Power Word Stun","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You speak a word of power that can overwhelm the mind of one creature you can see within range, leaving it dumbfounded. If the target has 150 Hit Points or fewer, it is Stunned. Otherwise, the spell has no effect.The stunned target must make a Constitution saving throw at the end of each of its turns. On a successful save, this stunning effect ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":8,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-chains-ropes-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234062,"modifiedTime":1671220968561,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3Lo9boi7P2ro6QV4","name":"Hold Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a humanoid that you can see within range. The target must succeed on a Wisdom saving throw or be paralyzed for the duration. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional humanoid for each slot level above 2nd. The humanoids must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small, straight piece of iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-chains-ropes-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234063,"modifiedTime":1671220968566,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3MYDjS6k9IYL0aTj","name":"Calm Emotions","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to suppress strong emotions in a group of people. Each humanoid in a 20-foot-radius sphere centered on a point you choose within range must make a Charisma saving throw; a creature can choose to fail this saving throw if it wishes. If a creature fails its saving throw, choose one of the following two effects. You can suppress any effect causing a target to be charmed or frightened. When this spell ends, any suppressed effect resumes, provided that its duration has not expired in the meantime.Alternatively, you can make a target indifferent about creatures of your choice that it is hostile toward. This indifference ends if the target is attacked or harmed by a spell or if it witnesses any of its friends being harmed. When the spell ends, the creature becomes hostile again, unless the DM rules otherwise.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234063,"modifiedTime":1671220968584,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3OZnNhunvRtPOQmH","name":"Identify","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You choose one object that you must touch throughout the casting of the spell. If it is a magic item or some other magic-imbued object, you learn its properties and how to use them, whether it requires attunement to use, and how many charges it has, if any. You learn whether any spells are affecting the item and what they are. If the item was created by a spell, you learn which spell created it.If you instead touch a creature throughout the casting, you learn what spells, if any, are currently affecting it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A pearl worth at least 100gp and an owl feather","consumed":false,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-small-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234064,"modifiedTime":1671220968588,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"3okM6Gn63zzEULkz","name":"Wish","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Wish is the mightiest spell a mortal creature can cast. By simply speaking aloud, you can alter the very foundations of reality in accord with your desires.\n The basic use of this spell is to duplicate any other spell of 8th level or lower. You don't need to meet any requirements in that spell, including costly Components. The spell simply takes effect.\n Alternatively, you can create one of the following Effects of your choice:\n \n You create one object of up to 25,000 gp in value that isn't a magic item. The object can be no more than 300 feet in any dimension, and it appears in an unoccupied space you can see on the ground.\n You allow up to twenty creatures that you can see to regain all hit points, and you end all Effects on them described in the Greater Restoration spell.\n You grant up to ten creatures that you can see resistance to a damage type you choose.\n You grant up to ten creatures you can see immunity to a single spell or other magical effect for 8 hours. For instance, you could make yourself and all your companions immune to a lich's life drain attack.\n You undo a single recent event by forcing a reroll of any roll made within the last round (including your last turn). Reality reshapes itself to accommodate the new result. For example, a wish spell could undo an opponent's successful save, a foe's critical hit, or a friend's failed save. You can force the reroll to be made with advantage or disadvantage, and you can choose whether to use the reroll or the original roll.\n \n You might be able to achieve something beyond the scope of the above examples. State your wish to the DM as precisely as possible. The DM has great latitude in ruling what occurs in such an instance; the greater the wish, the greater the likelihood that something goes wrong. This spell might simply fail, the effect you desire might only be partly achieved, or you might suffer some unforeseen consequence as a result of how you worded the wish. For example, wishing that a villain were dead might propel you forward in time to a period when that villain is no longer alive, effectively removing you from the game. Similarly, wishing for a legendary magic item or artifact might instantly transport you to the presence of the item's current owner.\n The stress of casting this spell to produce any effect other than duplicating another spell weakens you. After enduring that stress, each time you cast a spell until you finish a Long Rest, you take 1d10 necrotic damage per level of that spell. This damage can't be reduced or prevented in any way. In addition, your Strength drops to 3, if it isn't 3 or lower already, for 2d4 days. For each of those days that you spend Resting and doing nothing more than light activity, your remaining recovery time decreases by 2 days. Finally, there is a 33 percent chance that you are unable to cast wish ever again if you suffer this stress.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":9,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234064,"modifiedTime":1671220968595,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"41JIhpDyM9Anm7cs","name":"Magic Missile","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create three glowing darts of magical force. Each dart hits a creature of your choice that you can see within range. A dart deals 1d4 + 1 force damage to its target. The darts all strike simultaneously, and you can direct them to hit one creature or several.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the spell creates one more dart for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + 1","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-meteor-salvo-light-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234065,"modifiedTime":1671220968604,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"42O2aNBW7vK90gTL","name":"Planar Binding","ownership":{"default":0},"type":"spell","system":{"description":{"value":"With this spell, you attempt to bind a Celestial, an elemental, a fey, or a fiend to your service. The creature must be within range for the entire casting of the spell. (Typically, the creature is first summoned into the center of an inverted Magic Circle in order to keep it trapped while this spell is cast.) At the completion of the casting, the target must make a Charisma saving throw. On a failed save, it is bound to serve you for the Duration. If the creature was summoned or created by another spell, that spell's duration is extended to match the duration of this spell.A bound creature must follow your instructions to the best of its ability. You might command the creature to accompany you on an adventure, to guard a location, or to deliver a message. The creature obeys the letter of your instructions, but if the creature is hostile to you, it strives to twist your words to achieve its own objectives. If the creature carries out your instructions completely before the spell ends, it travels to you to report this fact if you are on the same plane of existence. If you are on a different plane of existence, it returns to the place where you bound it and remains there until the spell ends.At Higher Levels. When you cast this spell using a spell slot of a higher level, the Duration increases to 10 days with a 6th-level slot, to 30 days with a 7th-level slot, to 180 days with an 8th-level slot, and to a year and a day with a 9th-level spell slot.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":5,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A jewel worth at least 1,000gp, which the spell consumes","consumed":true,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234065,"modifiedTime":1671220968610,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"4H6YgYdKgnX6ZQ8M","name":"Acid Arrow","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A shimmering green arrow streaks toward a target within range and bursts in a spray of acid. Make a ranged spell Attack against the target. On a hit, the target takes 4d4 acid damage immediately and 2d4 acid damage at the end of its next turn. On a miss, the arrow splashes the target with acid for half as much of the initial damage and no damage at the end of its next turn.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage (both initial and later) increases by 1d4 for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d4","acid"]],"versatile":"2d4"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"powdered rhubarb leaf and an adder's stomach","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d4"}},"sort":0,"flags":{},"img":"icons/magic/acid/projectile-bolts-salvo-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234066,"modifiedTime":1671220968622,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"4dSvfvTy2ZIJ3K4k","name":"Comprehend Languages","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you understand the literal meaning of any spoken language that you hear. You also understand any written language that you see, but you must be touching the surface on which the words are written. It takes about 1 minute to read one page of text.This spell doesn't decode secret messages in a text or a glyph, such as an arcane sigil, that isn't part of a written language.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A pinch of soot and salt","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-triangle-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234066,"modifiedTime":1671220968631,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"4smlOvpF5AQHcyg1","name":"Contingency","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a spell of 5th level or lower that you can cast, that has a casting time of 1 action, and that can target you. You cast that spell—called the contingent spell—as part of casting contingency, expending spell slots for both, but the contingent spell doesn't come into effect. Instead, it takes effect when a certain circumstance occurs. You describe that circumstance when you cast the two spells. For example, a contingency cast with water breathing might stipulate that water breathing comes into effect when you are engulfed in water or a similar liquid.The contingent spell takes effect immediately after the circumstance is met for the first time, whether or not you want it to. and then contingency ends.The contingent spell takes effect only on you, even if it can normally target others. You can use only one contingency spell at a time. If you cast this spell again, the effect of another contingency spell on you ends. Also, contingency ends on you if its material component is ever not on your person.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"10","units":"day"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A statuette of yourself carved from ivory and decorated with gems worth at least 1,500 gp.","consumed":false,"cost":1500,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-pentagon-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234067,"modifiedTime":1671220968635,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"4v2H3hHb3Ph9XLNd","name":"Augury","ownership":{"default":0},"type":"spell","system":{"description":{"value":"By casting gem-inlaid sticks, rolling dragon bones, laying out ornate cards, or employing some other divining tool, you receive an omen from an otherworldly entity about the results of a specific course of action that you plan to take within the next 30 minutes. The DM chooses from the following possible omens:\n\nWeal, for good results\nWoe, for bad results\nWeal and woe, for both good and bad results\nNothing, for results that aren't especially good or bad\n\nThe spell doesn't take into account any possible circumstances that might change the outcome, such as the casting of additional spells or the loss or gain of a companion.If you cast the spell two or more times before completing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get a random reading. The DM makes this roll in secret.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"Specially marked sticks, bones, or similar tokens worth at least 25 gp","consumed":false,"cost":25,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234067,"modifiedTime":1671220968640,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5OGFdJw35QXp6mh6","name":"Mass Suggestion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You suggest a course of activity (limited to a sentence or two) and magically influence up to twelve creatures of your choice that you can see within range and that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act automatically negates the effect of the spell.Each target must make a Wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do.You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a group of soldiers give all their money to the first beggar they meet. If the condition isn't met before the spell ends, the activity isn't performed.If you or any of your companions damage a creature affected by this spell, the spell ends for that creature.At Higher Levels. When you cast this spell using a 7th-level spell slot, the duration is 10 days. When you use an 8th-level spell slot, the duration is 30 days. When you use a 9th-level spell slot, the duration is a year and a day.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":12,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":6,"school":"enc","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A snake's tongue and either a bit of honeycomb or a drop of sweet oil","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-large-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234068,"modifiedTime":1671220968644,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5SuJewoa1CRWaj1F","name":"Burning Hands","ownership":{"default":0},"type":"spell","system":{"description":{"value":"As you hold your hands with thumbs touching and fingers spread, a thin sheet of flames shoots forth from your outstretched fingertips. Each creature in a 15-foot cone must make a Dexterity saving throw. A creature takes 3d6 fire damage on a failed save, or half as much damage on a successful one.The fire ignites any flammable objects in the area that aren't being worn or carried.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-dense-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234069,"modifiedTime":1671220968648,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5VhqFROQYjr1P9lp","name":"Silence","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the Duration, no sound can be created within or pass through a 20-foot-radius sphere centered on a point you choose within range. Any creature or object entirely inside the sphere is immune to thunder damage, and creatures are Deafened while entirely inside it. Casting a Spell that includes a verbal component is impossible there.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-triangle-magenta.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234069,"modifiedTime":1671220968651,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5e1xTohkzqFqbYH4","name":"Flame Strike","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A vertical column of divine fire roars down from the heavens in a location you specify. Each creature in a 10-foot-radius, 40-foot-high Cylinder centered on a point within range must make a Dexterity saving throw. A creature takes 4d6 fire damage and 4d6 radiant damage on a failed save, or half as much damage on a successful one.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the fire damage or the radiant damage (your choice) increases by 1d6 for each slot level above 5th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"cylinder"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","radiant"],["4d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of sulfur","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-red-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234070,"modifiedTime":1671220968655,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"5eh2HFbS13078Y3H","name":"Find Steed","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You summon a spirit that assumes the form of an unusually intelligent, strong, and loyal steed, creating a long-lasting bond with it. Appearing in an unoccupied space within range, the steed takes on a form that you choose, such as a warhorse, a pony, a camel, an elk, or a mastiff. (Your DM might allow other animals to be summoned as steeds.) The steed has the statistics of the chosen form, though it is a celestial, fey, or fiend (your choice) instead of its normal type. Additionally, if your steed has an Intelligence of 5 or less, its Intelligence becomes 6, and it gains the ability to understand one language of your choice that you speak.Your steed serves you as a mount, both in combat and out, and you have an instinctive bond with it that allows you to fight as a seamless unit. While mounted on your steed, you can make any spell you cast that targets only you also target your steed.When the steed drops to 0 hit points, it disappears, leaving behind no physical form. You can also dismiss your steed at any time as an action, causing it to disappear. In either case, casting this spell again summons the same steed, restored to its hit point maximum.While your steed is within 1 mile of you, you can communicate with it telepathically.You can't have more than one steed bonded by this spell at a time. As an action, you can release the steed from its bond at any time, causing it to disappear.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/wolf-paw-glow-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234070,"modifiedTime":1671220968659,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"64D1gNZ4hx7SWG2x","name":"Forbiddance","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a ward against magical travel that protects up to 40,000 square feet of floor space to a height of 30 feet above the floor. For the Duration, creatures can't teleport into the area or use portals, such as those created by the gate spell, to enter the area. The spell proofs the area against Planar Travel, and therefore prevents creatures from accessing the area by way of the Astral Plane, Ethereal Plane, Feywild, Shadowfell, or the Plane Shift spell.In addition, the spell damages types of creatures that you choose when you cast it. Choose one or more of the following: Celestials, Elementals, fey, Fiends, and Undead. When a chosen creature enters the spell's area for the first time on a turn or starts its turn there, the creature takes 5d10 radiant or necrotic damage (your choice when you cast this spell).When you cast this spell, you can designate a password. A creature that speaks the password as it enters the area takes no damage from the spell.The spell's area can't overlap with the area of another forbiddance spell. If you cast forbiddance every day for 30 days in the same location, the spell lasts until it is dispelled, and the material Components are consumed on the last casting.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"1","units":"day"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A sprinkle of holy water, rare incense, and powdered ruby worth at least 1000gp","consumed":false,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234071,"modifiedTime":1671220968662,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"64uo4fHriHLjRUrX","name":"Meld into Stone","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You step into a stone object or surface large enough to fully contain your body, melding yourself and all the Equipment you carry with the stone for the Duration. Using your Movement, you step into the stone at a point you can touch. Nothing of your presence remains visible or otherwise detectable by nonmagical Senses.While merged with the stone, you can't see what occurs outside it, and any Wisdom (Perception) checks you make to hear sounds outside it are made with disadvantage. You remain aware of the passage of time and can cast Spells on yourself while merged in the stone. You can use your Movement to leave the stone where you entered it, which ends the spell. You otherwise can't move.Minor physical damage to the stone doesn't harm you, but its partial destruction or a change in its shape (to the extent that you no longer fit within it) expels you and deals 6d6 bludgeoning damage to you. The stone's complete destruction (or Transmutation into a different substance) expels you and deals 50 bludgeoning damage to you. If expelled, you fall prone in an unoccupied space closest to where you first entered.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6","bludgeoning"]],"versatile":"50"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/earth/projectile-spiked-stone-boulder-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234071,"modifiedTime":1671220968669,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"6HEEhLdJz32TL4Js","name":"Foresight","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a willing creature and bestow a limited ability to see into the immediate future. For the Duration, the target can't be surprised and has advantage on Attack rolls, Ability Checks, and Saving Throws. Additionally, other creatures have disadvantage on attack rolls against the target for the duration.This spell immediately ends if you cast it again before its Duration ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":9,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A hummingbird feather","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-large-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234072,"modifiedTime":1671220968678,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"6g3WLOZ2u0EbaLAd","name":"Hypnotic Pattern","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a twisting pattern of colors that weaves through the air inside a 30-foot cube within range. The pattern appears for a moment and vanishes. Each creature in the area who sees the pattern must make a Wisdom saving throw. On a failed save, the creature becomes charmed for the duration. While charmed by this spell, the creature is incapacitated and has a speed of 0.The spell ends for an affected creature if it takes any damage or if someone else uses an action to shake the creature out of its stupor.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":3,"school":"ill","components":{"vocal":false,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A glowing stick of incense or a crystal vial filled with phosphorescent material.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234072,"modifiedTime":1671220968703,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"76C0FdcxlU8F9Rl2","name":"Word of Recall","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You and up to five willing creatures within 5 feet of you instantly teleport to a previously designated sanctuary. You and any creatures that teleport with you appear in the nearest unoccupied space to the spot you designated when you prepared your sanctuary (see below). If you cast this spell without first preparing a sanctuary, the spell has no effect.You must designate a sanctuary by casting this spell within a location, such as a temple, dedicated to or strongly linked to your deity. If you attempt to cast the spell in this manner in an area that isn't dedicated to your deity, the spell has no effect.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":6,"width":null,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234073,"modifiedTime":1671220968710,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7Fw7Bf1k3xxDVr5L","name":"Fabricate","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You convert raw materials into products of the same material. For example, you can fabricate a wooden bridge from a clump of trees, a rope from a patch of hemp, and clothes from flax or wool.Choose raw materials that you can see within range. You can fabricate a Large or smaller object (contained within a 10-foot cube, or eight connected 5-foot cubes), given a sufficient quantity of raw material. If you are working with metal, stone, or another mineral substance, however, the fabricated object can be no larger than Medium (contained within a single 5-foot cube). The quality of Objects made by the spell is commensurate with the quality of the raw materials.Creatures or Magic Items can't be created or transmuted by this spell. You also can't use it to create items that ordinarily require a high degree of craftsmanship, such as jewelry, Weapons, glass, or armor, unless you have proficiency with the type of artisan's tools used to craft such Objects.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/explosion-fireball-medium-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234073,"modifiedTime":1671220968721,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7KjExw0kmuqERa7C","name":"Storm of Vengeance","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Range: sightA churning storm cloud forms, centered on a point you can see and spreading to a radius of 360 feet. Lightning flashes in the area, thunder booms, and strong winds roar. Each creature under the cloud (no more than 5,000 feet beneath the cloud) when it appears must make a Constitution saving throw. On a failed save, a creature takes 2d6 thunder damage and becomes Deafened for 5 minutes.Each round you maintain Concentration on this spell, the storm produces different Effects on your turn.Round 2. Acidic rain falls from the cloud. Each creature and object under the cloud takes 1d6 acid damage.Round 3. You call six bolts of lightning from the cloud to strike six creatures or objects of your choice beneath the cloud. A given creature or object can't be struck by more than one bolt. A struck creature must make a Dexterity saving throw. The creature takes 10d6 lightning damage on a failed save, or half as much damage on a successful one.Round 4. Hailstones rain down from the cloud. Each creature under the cloud takes 2d6 bludgeoning damage.Round 5–10. Gusts and freezing rain assail the area under the cloud. The area becomes difficult terrain and is heavily obscured. Each creature there takes 1d6 cold damage. Ranged weapon attacks in the area are impossible. The wind and rain count as a severe distraction for the purposes of maintaining Concentration on Spells. Finally, gusts of strong wind (ranging from 20 to 50 miles per hour) automatically disperse fog, mists, and similar phenomena in the area, whether mundane or magical.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":360,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"spec"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","thunder"]],"versatile":""},"formula":"10d6","save":{"ability":"con","dc":null,"scaling":"spell"},"level":9,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/projectile-beams-salvo-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234074,"modifiedTime":1671220968726,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7UwUjJ6owIQkEPrs","name":"Branding Smite","ownership":{"default":0},"type":"spell","system":{"description":{"value":"The next time you hit a creature with a weapon attack before this spell ends, the weapon gleams with astral radiance as you strike. The attack deals an extra 2d6 radiant damage to the target, which becomes visible if it's invisible, and the target sheds dim light in a 5-foot radius and can't become invisible until the spell ends.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the extra damage increases by 1d6 for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{},"img":"icons/magic/fire/dagger-rune-enchant-flame-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234074,"modifiedTime":1671220968731,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7buEm5KhI5lP8m1z","name":"Guiding Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A flash of light streaks toward a creature of your choice within range. Make a ranged spell attack against the target. On a hit, the target takes 4d6 radiant damage, and the next attack roll made against this target before the end of your next turn has advantage, thanks to the mystical dim light glittering on the target until then.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-fireball-smoke-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234075,"modifiedTime":1671220968745,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7e3QXF10hLNDEdr6","name":"False Life","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Bolstering yourself with a necromantic facsimile of life, you gain 1d4 + 4 Temporary Hit Points for the Duration.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you gain 5 additional Temporary Hit Points for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + 4","temphp"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small amount of alcohol or distilled spirits","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"(@item.level - 1) * 5"}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234075,"modifiedTime":1671220968751,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7fFHlBk3UNX8gPKL","name":"Control Water","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Until the spell ends, you control any freestanding water inside an area you choose that is a cube up to 100 feet on a side. You can choose from any of the following effects when you cast this spell. As an action on your turn, you can repeat the same effect or choose a different one.Flood. You cause the water level of all standing water in the area to rise by as much as 20 feet. If the area includes a shore, the flooding water spills over onto dry land, instead create a 20-foot tall wave that travels from one side of the area to the other and then crashes down. Any Huge or smaller vehicles in the wave's path are carried with it to the other side. Any Huge or smaller vehicles struck by the wave have a 25 percent chance of capsizing.The water level remains elevated until the spell ends or you choose a different effect. If this effect produced a wave, the wave repeats on the start of your next turn while the flood effect lasts.Part Water. You cause water in the area to move apart and create a trench. The trench extends across the spell's area, and the separated water forms a wall to either side. The trench remains until the spell ends or you choose a different effect. The water then slowly fills in the trench over the course of the next round until the normal water level is restored.Redirect Flow. You cause flowing water in the area to move in a direction you choose, even if the water has to flow over obstacles, up walls, or in other unlikely directions. The water in the area moves as you direct it, but once it moves beyond the spell's area, it resumes its flow based on the terrain conditions. The water continues to move in the direction you chose until the spell ends or you choose a different effect.Whirlpool. This effect requires a body of water at least 50 feet square and 25 feet deep. You cause a whirlpool to form in the center of the area. The whirlpool forms a vortex that is 5 feet wide at the base, up to 50 feet wide at the top, and 25 feet tall. Any creature or object in the water and within 25 feet of the vortex is pulled 10 feet toward it. A creature can swim away from the vortex by making a Strength (Athletics) check against your spell save DC.When a creature enters the vortex for the first time on a turn or starts its turn there, it must make a Strength saving throw. On a failed save, the creature takes 2d8 bludgeoning damage and is caught in the vortex until the spell ends. On a successful save, the creature takes half damage, and isn't caught in the vortex. A creature caught in the vortex can use its action to try to swim away from the vortex as described above, but has disadvantage on the Strength (Athletics) check to do so.The first time each turn that an object enters the vortex, the object takes 2d8 bludgeoning damage; this damage occurs each round it remains in the vortex.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"cube"},"range":{"value":300,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":null,"scaling":"spell"},"level":4,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A drop of water and a pinch of dust.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234076,"modifiedTime":1671220968756,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7p9IuWrSWFgfyQo2","name":"Alarm","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You set an alarm against unwanted intrusion. Choose a door, a window, or an area within range that is no larger than a 20-foot cube. Until the spell ends, an alarm alerts you whenever a Tiny or larger creature touches or enters the warded area. When you cast the spell, you can designate creatures that won't set off the alarm. You also choose whether the alarm is mental or audible.A mental alarm alerts you with a ping in your mind if you are within 1 mile of the warded area. This ping awakens you if you are sleeping.An audible alarm produces the sound of a hand bell for 10 seconds within 60 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A tiny bell and a piece of fine silver wire.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-triangle-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234077,"modifiedTime":1671220968762,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7u2obDvuvtZBkTfq","name":"Scorching Ray","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create three rays of fire and hurl them at targets within range. You can hurl them at one target or several.Make a ranged Spell Attack for each ray. On a hit, the target takes 2d6 fire damage.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you create one additional ray for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":3,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234077,"modifiedTime":1671220968765,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"7v06rdmUakoTk1LQ","name":"Magic Mouth","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You implant a message within an object in range, a message that is uttered when a trigger condition is met. Choose an object that you can see and that isn't being worn or carried by another creature. Then speak the message, which must be 25 words or less, though it can be delivered over as long as 10 minutes. Finally, determine the circumstance that will trigger the spell to deliver your message.When that circumstance occurs, a magical mouth appears on the object and recites the message in your voice and at the same volume you spoke. If the object you chose has a mouth or something that looks like a mouth (for example, the mouth of a statue), the magical mouth appears there so that the words appear to come from the object's mouth. When you cast this spell, you can have the spell end after it delivers its message, or it can remain and repeat its message whenever the trigger occurs.The triggering circumstance can be as general or as detailed as you like, though it must be based on visual or audible conditions that occur within 30 feet of the object. For example, you could instruct the mouth to speak when any creature moves within 30 feet of the object or when a silver bell rings within 30 feet of it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"disp"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A small bit of honeycomb and jade dust worth at least 10gp, which the spell consumes","consumed":true,"cost":10,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/wind-vortex-swirl-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234078,"modifiedTime":1674761617008,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"82jM6qD9axLJsTrH","name":"Illusory Script","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You write on Parchment, paper, or some other suitable writing material and imbue it with a potent Illusion that lasts for the Duration.To you and any creatures you designate when you cast the spell, the writing appears normal, written in your hand, and conveys whatever meaning you intended when you wrote the text. To all others, the writing appears as if it were written in an unknown or magical script that is unintelligible. Alternatively, you can cause the writing to appear to be an entirely different message, written in a different hand and language, though the language must be one you know.Should the spell be dispelled, the original script and the Illusion both disappear.A creature with Truesight can read the hidden message.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"10","units":"day"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"ill","components":{"vocal":false,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A lead-based ink worth at least 10gp, which the spell consumes","consumed":true,"cost":10,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234078,"modifiedTime":1671220968772,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8MICCMeOXT3aJUy9","name":"Divine Favor","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your prayer empowers you with divine radiance. Until the spell ends, your weapon attacks deal an extra 1d4 radiant damage on a hit.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/dagger-rune-enchant-flame-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234079,"modifiedTime":1671220968776,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8PJAsHmbu6UgDHC0","name":"Wind Walk","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You and up to ten willing creatures you can see within range assume a gaseous form for the Duration, appearing as wisps of cloud. While in this cloud form, a creature has a flying speed of 300 feet and has resistance to damage from nonmagical weapons. The only Actions a creature can take in this form are the Dash action or to revert to its normal form. Reverting takes 1 minute, during which time a creature is Incapacitated and can't move. Until the spell ends, a creature can revert to cloud form, which also requires the 1-minute transformation.\n If a creature is in cloud form and flying when the effect ends, the creature descends 60 feet per round for 1 minute until it lands, which it does safely. If it can't land after 1 minute, the creature falls the remaining distance.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":11,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Fire and holy water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/wind-swirl-gray-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234079,"modifiedTime":1671220968793,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8RTDOt80u8aBv9qx","name":"Alter Self","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You assume a different form. When you cast the spell, choose one of the following options, the effects of which last for the duration of the spell. While the spell lasts, you can end one option as an action to gain the benefits of a different one.Aquatic Adaptation. You adapt your body to an aquatic environment, sprouting gills and growing webbing between your fingers. You can breathe underwater and gain a swimming speed equal to your walking speed.Change Appearance. You transform your appearance. You decide what you look like, including your height, weight, facial features, sound of your voice, hair length, coloration, and distinguishing characteristics, if any. You can make yourself appear as a member of another race, though none of your statistics change. You also can't appear as a creature of a different size than you, and your basic shape stays the same; if you're bipedal, you can't use this spell to become quadrupedal, for instance. At any time for the duration of the spell, you can use your action to change your appearance in this way again.Natural Weapons. You grow claws, fangs, spines, horns, or a different natural weapon of your choice. Your unarmed strikes deal 1d6 bludgeoning, piercing, or slashing damage, as appropriate to the natural weapon you chose, and you are proficient with your unarmed strikes. Finally, the natural weapon is magic and you have a +1 bonus to the attack and damage rolls you make using it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234080,"modifiedTime":1671220968797,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8aWtP5hcrmcEesBW","name":"Teleportation Circle","ownership":{"default":0},"type":"spell","system":{"description":{"value":"As you cast the spell, you draw a 10-foot-diameter circle on the ground inscribed with sigils that link your location to a permanent teleportation circle of your choice whose sigil sequence you know and that is on the same plane of existence as you. A shimmering portal opens within the circle you drew and remains open until the end of your next turn. Any creature that enters the portal instantly appears within 5 feet of the destination circle or in the nearest unoccupied space if that space is occupied.Many major temples, guilds, and other important places have permanent teleportation circles inscribed somewhere within their confines. Each such circle includes a unique sigil sequence—a string of magical runes arranged in a particular pattern. When you first gain the ability to cast this spell, you learn the sigil sequences for two destinations on The Material Plane, determined by the DM. You can learn additional sigil sequences during your adventures. You can commit a new sigil sequence to memory after studying it for 1 minute.You can create a permanent teleportation circle by casting this spell in the same location every day for one year. You need not use the circle to Teleport when you cast the spell in this way.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"radius"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"con","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Rare chalks and inks infused with precious gems with 50 gp, which the spell consumes","consumed":true,"cost":50,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234080,"modifiedTime":1671220968802,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8cse7rit0oswRPUP","name":"Arcane Lock","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a closed door, window, gate, chest, or other entryway, and it becomes locked for the duration. You and the creatures you designate when you cast this spell can open the object normally. You can also set a password that, when spoken within 5 feet of the object, suppresses this spell for 1 minute. Otherwise, it is impassable until it is broken or the spell is dispelled or suppressed. Casting knock on the object suppresses arcane lock for 10 minutes.While affected by this spell, the object is more difficult to break or force open; the DC to break it or pick any locks on it increases by 10.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"disp"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Gold dust worth at least 25 gp, which the spell consumes.","consumed":true,"cost":25,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234081,"modifiedTime":1674761851303,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8dzaICjGy6mTUaUr","name":"Bless","type":"spell","img":"icons/magic/control/buff-flight-wings-blue.webp","system":{"description":{"value":"You bless up to three creatures of your choice within range. Whenever a target makes an attack roll or a saving throw before the spell ends, the target can roll 1d4 and add the number rolled to the attack roll or saving throw.\nHigher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":3,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A sprinkling of holy water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"effects":[{"_id":"8rP3gwmXVTgZqYZE","flags":{},"changes":[{"key":"system.bonuses.abilities.save","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.mwak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.msak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rsak.attack","mode":2,"value":"+1d4","priority":null},{"key":"system.bonuses.rwak.attack","mode":2,"value":"+1d4","priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":60,"rounds":10,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/control/buff-flight-wings-blue.webp","label":"Bless","origin":"Item.kZZAZ6kp9YzgPQEe","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234081,"modifiedTime":1671220968815,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8sgwRh8NUNkn9Vi0","name":"Secret Chest","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You hide a chest, and all its contents, on the Ethereal Plane. You must touch the chest and the miniature replica that serves as a material component for the spell. The chest can contain up to 12 cubic feet of nonliving material (3 feet by 2 feet by 2 feet).While the chest remains on the Ethereal Plane, you can use an action and touch the replica to recall the chest. It appears in an unoccupied space on the ground within 5 feet of you. You can send the chest back to the Ethereal Plane by using an action and touching both the chest and the replica.After 60 days, there is a cumulative 5 percent chance per day that the spell's effect ends. This effect ends if you cast this spell again, if the smaller replica chest is destroyed, or if you choose to end the spell as an action. If the spell ends and the larger chest is on the Ethereal Plane, it is irretrievably lost.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"An exquisite chest, 3 feet by 2 feet by 2 feet, constructed from rare materials worth at least 5,000 gp, and a Tiny replica made from the same materials worth at least 50 gp","consumed":false,"cost":5050,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234082,"modifiedTime":1671220968819,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8zT7njvqbpXs4Cel","name":"Spare the Dying","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a living creature that has 0 hit points. The creature becomes stable. This spell has no effect on undead or constructs.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234083,"modifiedTime":1671220968823,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"91Sw6vOIaO7U8DvM","name":"Dominate Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to beguile a humanoid that you can see within range. It must succeed on a Wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw.While the target is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability.You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time you can also cause the creature to use a reaction, but this requires you to use your own reaction as well.Each time the target takes damage, it makes a new Wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.At Higher Levels. When you cast this spell using a 6th-level spell slot, the duration is concentration, up to 10 minutes. When you use a 7th-level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 8th level or higher, the duration is concentration, up to 8 hours.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":5,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-large-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234083,"modifiedTime":1671220968828,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"95K2aUhAGV9qXjnf","name":"Bane","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Up to three creatures of your choice that you can see within range must make Charisma saving throws. Whenever a target that fails this saving throw makes an attack roll or a saving throw before the spell ends, the target must roll a d4 and subtract the number rolled from the attack roll or saving throw.\nHigher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":3,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A drop of blood","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/unholy/strike-beam-blood-red-purple.webp","effects":[{"_id":"potjmpJPeUA1U4oe","flags":{},"changes":[{"key":"system.bonuses.abilities.save","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.mwak.attack","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.msak.attack","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.rsak.attack","value":"-1d4","mode":2,"priority":null},{"key":"system.bonuses.rwak.attack","value":"-1d4","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":60,"rounds":10,"turns":null,"startRound":null,"startTurn":null,"combat":null},"icon":"icons/magic/unholy/strike-beam-blood-red-purple.webp","label":"Bane","origin":"Item.KkaQm4OQJxc6z3to","tint":null,"transfer":true,"sort":0}],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234084,"modifiedTime":1671220968832,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9eOZDBImVKxbeOyZ","name":"Enhance Ability","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature and bestow upon it a magical enhancement. Choose one of the following effects; the target gains that effect until the spell ends.\n\nBear's Endurance. The target has advantage on Constitution Checks. It also gains 2d6 Temporary Hit Points, which are lost when the spell ends.\nBull's Strength. The target has advantage on Strength Checks, and his or her carrying capacity doubles.\nCat's Grace. The target has advantage on Dexterity Checks. It also doesn't take damage from Falling 20 feet or less if it isn't Incapacitated.\nEagle's Splendor. The target has advantage on Charisma Checks.\nFox's Cunning. The target has advantage on Intelligence Checks.\nOwl's Wisdom. The target has advantage on Wisdom Checks.\n\nAt Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","temphp"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Fur or a feather from a beast","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/buff-flight-wings-runes-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234084,"modifiedTime":1671220968836,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9gYGkrL6qFTsE6fw","name":"Spike Growth","ownership":{"default":0},"type":"spell","system":{"description":{"value":"The ground in a 20-foot radius centered on a point within range twists and sprouts hard spikes and thorns. The area becomes difficult terrain for the Duration. When a creature moves into or within the area, it takes 2d4 piercing damage for every 5 feet it travels.The transformation of the ground is camouflaged to look natural. Any creature that can't see the area at the time the spell is cast must make a Wisdom (Perception) check against your spell save DC to recognize the terrain as hazardous before entering it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"radius"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d4","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Seven sharp thorns or seven small twigs, each sharpened to a point","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/vines-thorned-curled-glow-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234085,"modifiedTime":1671220968842,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9hQXdMSmerkTsHDe","name":"Confusion","type":"spell","img":"icons/magic/air/wind-tornado-cyclone-purple-pink.webp","system":{"description":{"value":"This spell assaults and twists creatures' minds, spawning delusions and provoking uncontrolled action. Each creature in a 10-foot-radius sphere centered on a point you choose within range must succeed on a Wisdom saving throw when you cast this spell or be affected by it.\nAn affected target can't take reactions and must roll from the @Compendium[dnd5e.tables.LHEts1oDaDwcehuj]{Confusion} table at the start of each of its turns to determine its behavior for that turn.\nAt Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the radius of the sphere increases by 5 feet for each slot level above 4th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"sphere"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d10","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":4,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Three walnut shells.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234085,"modifiedTime":1671220968846,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9kGrFXnLiRg3Xnbo","name":"Regenerate","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature and stimulate its natural Healing ability. The target regains 4d8 + 15 Hit Points. For the Duration of the spell, the target regains 1 hit point at the start of each of its turns (10 hit points each minute).The target's severed body members (fingers, legs, tails, and so on), if any, are restored after 2 minutes. If you have the severed part and hold it to the stump, the spell instantaneously causes the limb to knit to the stump.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8 + 15","healing"]],"versatile":"1"},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A prayer wheel and holy water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-flame-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234086,"modifiedTime":1671220968851,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"A3q2gTNqG6fvNGrv","name":"Disguise Self","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You make yourself—including your clothing, armor, weapons, and other belongings on your person—look different until the spell ends or until you use your action to dismiss it. You can seem 1 foot shorter or taller and can appear thin, fat, or in between. You can't change your body type, so you must adopt a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you.The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to your outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel your head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair.To discern that you are disguised, a creature can use its action to inspect your appearance and must succeed on an Intelligence (Investigation) check against your spell save DC.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234086,"modifiedTime":1671220968855,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"A4RsPuSvB9wFtz1j","name":"Dimension Door","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You teleport yourself from your current location to any other spot within range. You arrive at exactly the spot desired. It can be a place you can see, one you can visualize, or one you can describe by stating distance and direction, such as \"200 feet straight downward\" or \"upward to the northwest at a 45-degree angle, 300 feet.\"You can bring along objects as long as their weight doesn't exceed what you can carry. You can also bring one willing creature of your size or smaller who is carrying gear up to its carrying capacity. The creature must be within 5 feet of you when you cast this spell.If you would arrive in a place already occupied by an object or a creature, you and any creature traveling with you each take 4d6 force damage, and the spell fails to teleport you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":500,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-large-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234087,"modifiedTime":1671220968859,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"AGFMPAmuzwWO6Dfz","name":"Raise Dead","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You return a dead creature you touch to life, provided that it has been dead no longer than 10 days. If the creature's soul is both willing and at liberty to rejoin the body, the creature returns to life with 1 hit point.This spell also neutralizes any poisons and cures nonmagical diseases that affected the creature at the time it died. This spell doesn't, however, remove magical diseases, curses, or similar effects; if these aren't first removed prior to casting the spell, they take effect when the creature returns to life. The spell can't return an undead creature to life.This spell closes all mortal wounds, but it doesn't restore missing body parts. If the creature is lacking body parts or organs integral for its survival—its head, for instance—the spell automatically fails.Coming back from the dead is an ordeal. The target takes a −4 penalty to all attack rolls, saving throws, and ability checks. Every time the target finishes a long rest, the penalty is reduced by 1 until it disappears.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A diamond worth at least 500gp, which the spell consumes.","consumed":true,"cost":500,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234087,"modifiedTime":1671220968863,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"AQsBc94ES7W7s7iG","name":"Wall of Thorns","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a wall of tough, pliable, tangled brush bristling with needle-sharp thorns. The wall appears within range on a solid surface and lasts for the Duration. You choose to make the wall up to 60 feet long, 10 feet high, and 5 feet thick or a circle that has a 20-foot diameter and is up to 20 feet high and 5 feet thick. The wall blocks line of sight.When the wall appears, each creature within its area must make a Dexterity saving throw. On a failed save, a creature takes 7d8 piercing damage, or half as much damage on a successful save.A creature can move through the wall, albeit slowly and painfully. For every 1 foot a creature moves through the wall, it must spend 4 feet of Movement. Furthermore, the first time a creature enters the wall on a turn or ends its turn there, the creature must make a Dexterity saving throw. It takes 7d8 slashing damage on a failed save, or half as much damage on a successful one.At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, both types of damage increase by 1d8 for each slot level above 6th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"wall"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["7d8","piercing"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":6,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A handful of thorns","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-green-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234088,"modifiedTime":1671220968867,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ATo0Eb63TDtnu6iA","name":"Animate Objects","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Objects come to life at your command. Choose up to ten nonmagical objects within range that are not being worn or carried. Medium targets count as two objects, Large targets count as four objects, Huge targets count as eight objects. You can't animate any object larger than Huge. Each target animates and becomes a creature under your control until the spell ends or until reduced to 0 hit points.As a bonus action, you can mentally command any creature you made with this spell if the creature is within 500 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete.Animated Object StatisticsSize HP AC Attack Str DexTiny 20 18 +8 to hit, 1d4 + 4 damage 4 18Small 25 16 +6 to hit, 1d8 + 2 damage 6 14Medium 40 13 +5 to hit, 2d6 + 1 damage 10 12Large 50 10 +6 to hit, 2d10 + 2 damage 14 10Huge 80 10 +8 to hit, 2d12 + 4 damage 18 6An animated object is a construct with AC, hit points, attacks, Strength, and Dexterity determined by its size. Its Constitution is 10 and its Intelligence and Wisdom are 3, and its Charisma is 1. Its speed is 30 feet; if the object lacks legs or other appendages it can use for locomotion, it instead has a flying speed of 30 feet and can hover. If the object is securely attached to a surface or a larger object, such as a chain bolted to a wall, its speed is 0. It has blindsight with a radius of 30 feet and is blind beyond that distance. When the animated object drops to 0 hit points, it reverts to its original object form, and any remaining damage carries over to its original object form.If you command an object to attack, it can make a single melee attack against a creature within 5 feet of it. It makes a slam attack with an attack bonus and bludgeoning damage determined by its size. The DM might rule that a specific object inflicts slashing or piercing damage based on its form.At Higher Levels. If you cast this spell using a spell slot of 6th level or higher, you can animate two additional objects for each slot level above 5th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"","type":"object"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/earth/projectile-stone-boulder-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234088,"modifiedTime":1671220968871,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Advtckpz1B733bu9","name":"Flame Blade","type":"spell","img":"icons/magic/fire/dagger-rune-enchant-flame-orange.webp","system":{"description":{"value":"You evoke a fiery blade in your free hand. The blade is similar in size and shape to a Scimitar, and it lasts for the Duration. If you let go of the blade, it disappears, but you can evoke the blade again as a Bonus Action.You can use your action to make a melee spell Attack with the fiery blade. On a hit, the target takes 3d6 fire damage.The flaming blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for every two slot levels above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["floor(2 + @item.level / 2)d6","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Leaf of sumac","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234089,"modifiedTime":1671220968875,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"AoTTjapz1FsGOIZz","name":"Delayed Blast Fireball","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A beam of yellow light flashes from your pointing finger, then condenses to linger at a chosen point within range as a glowing bead for the duration. When the spell ends, either because your concentration is broken or because you decide to end it, the bead blossoms with a low roar into an explosion of flame that spreads around corners. Each creature in a 20-foot-radius sphere centered on that point must make a Dexterity saving throw. A creature takes fire damage equal to the total accumulated damage on a failed save, or half as much damage on a successful one.The spell's base damage is 12d6. If at the end of your turn the bead has not yet detonated, the damage increases by 1d6.If the glowing bead is touched before the interval has expired, the creature touching it must make a Dexterity saving throw. On a failed save, the spell ends immediately, causing the bead to erupt in flame. On a successful save, the creature can throw the bead up to 40 feet. When it strikes a creature or a solid object, the spell ends, and the bead explodes.The fire damages objects in the area and ignites flammable objects that aren't being worn or carried.At Higher Levels. When you cast this spell using a spell slot of 8th level or higher, the base damage increases by 1d6 for each slot level above 7th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d6","fire"]],"versatile":"1d6"},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":7,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A tiny ball of bat guano and sulfur","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-fireball-smoke-strong-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234089,"modifiedTime":1671220968893,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"B0pnIcc52O6G8hi8","name":"Longstrider","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature. The target's speed increases by 10 feet until the spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of dirt","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/wind-stream-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234090,"modifiedTime":1671220968897,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"B2kbmgbA2WQR00kx","name":"Symbol","ownership":{"default":0},"type":"spell","system":{"description":{"value":"When you cast this spell, you inscribe a harmful glyph either on a surface (such as a section of floor, a wall, or a table) or within an object that can be closed to conceal the glyph (such as a book, a scroll, or a treasure chest). If you choose a surface, the glyph can cover an area of the surface no larger than 10 feet in diameter. If you choose an object, that object must remain in its place; if the object is moved more than 10 feet from where you cast this spell, the glyph is broken, and the spell ends without being triggered.The glyph is nearly invisible, requiring an Intelligence (Investigation) check against your spell save DC to find it.You decide what triggers the glyph when you cast the spell. For glyphs inscribed on a surface, the most typical triggers include touching or stepping on the glyph, removing another object covering it, approaching within a certain distance of it, or manipulating the object that holds it. For glyphs inscribed within an object, the most common triggers are opening the object, approaching within a certain distance of it, or seeing or reading the glyph.You can further refine the trigger so the spell is activated only under certain circumstances or according to a creature's physical characteristics (such as height or weight), or physical kind (for example, the ward could be set to affect hags or shapechangers). You can also specify creatures that don't trigger the glyph, such as those who say a certain password.When you inscribe the glyph, choose one of the options below for its effect. Once triggered, the glyph glows, filling a 60-foot-radius sphere with dim light for 10 minutes, after which time the spell ends. Each creature in the sphere when the glyph activates is targeted by its effect, as is a creature that enters the Sphere for the first time on a turn or ends its turn there.\n\nDeath. Each target must make a Constitution saving throw, taking 10d10 necrotic damage on a failed save, or half as much damage on a successful save.\nDiscord. Each target must make a Constitution saving throw. On a failed save, a target bickers and argues with other creatures for 1 minute. During this time, it is incapable of meaningful communication and has disadvantage on Attack rolls and Ability Checks.\nFear. Each target must make a Wisdom saving throw and becomes Frightened for 1 minute on a failed save. While Frightened, the target drops whatever it is holding and must move at least 30 feet away from the glyph on each of its turns, if able.\nHopelessness. Each target must make a Charisma saving throw. On a failed save, the target is overwhelmed with despair for 1 minute. During this time, it can't attack or target any creature with harmful Abilities, Spells, or other magical Effects.\nInsanity. Each target must make an Intelligence saving throw. On a failed save, the target is driven insane for 1 minute. An insane creature can't take Actions, can't understand what other creatures say, can't read, and speaks only in gibberish. The DM controls its Movement, which is erratic.\nPain. Each target must make a Constitution saving throw and becomes Incapacitated with excruciating pain for 1 minute on a failed save.\nSleep. Each target must make a Wisdom saving throw and falls Unconscious for 10 minutes on a failed save. A creature awakens if it takes damage or if someone uses an action to shake or slap it awake.\nStunning. Each target must make a Wisdom saving throw and becomes Stunned for 1 minute on a failed save.\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"dstr"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d10","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":7,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Mercury, phosphorus, and powdered diamond and opal with a total value of at least 1,000 gp, which the spell consumes","consumed":true,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234090,"modifiedTime":1674761650271,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"BP3GCwa66IAw1yTG","name":"Daylight","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A 60-foot-radius sphere of light spreads out from a point you choose within range. The sphere is bright light and sheds dim light for an additional 60 feet.If you chose a point on an object you are holding or one that isn't being worn or carried, the light shines from the object and moves with it. Completely covering the affected object with an opaque object, such as a bowl or a helm, blocks the light.If any of this spell's area overlaps with an area of darkness created by a spell of 3rd level or lower, the spell that created the darkness is dispelled.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234091,"modifiedTime":1671220968908,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"BQk5Row4NymMnUQl","name":"Hideous Laughter","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature of your choice that you can see within range perceives everything as hilariously funny and falls into fits of laughter if this spell affects it. The target must succeed on a Wisdom saving throw or fall prone, becoming Incapacitated and unable to stand up for the Duration. A creature with an Intelligence score of 4 or less isn't affected.At the end of each of its turns, and each time it takes damage, the target can make another Wisdom saving throw. The target has advantage on the saving throw if it's triggered by damage. On a success, the spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Tiny tarts and a feather that is waved in the air","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/explosion-fireball-medium-purple-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234092,"modifiedTime":1671220968913,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"BV0mpbHh29IbbIj5","name":"Create Food and Water","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create 45 pounds of food and 30 gallons of water on the ground or in containers within range, enough to sustain up to fifteen humanoids or five steeds for 24 hours. The food is bland but nourishing, and spoils if uneaten after 24 hours. The water is clean and doesn't go bad.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234092,"modifiedTime":1671220968918,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"BYNvBJzHcF5VJhXw","name":"Phantasmal Killer","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You tap into the nightmares of a creature you can see within range and create an illusory manifestation of its deepest fears, visible only to that creature. The target must make a Wisdom saving throw. On a failed save, the target becomes Frightened for the Duration. At the end of each of the target's turns before the spell ends, the target must succeed on a Wisdom saving throw or take 4d10 psychic damage. On a successful save, the spell ends.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d10 for each slot level above 4th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10","psychic"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":4,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d10"}},"sort":0,"flags":{},"img":"icons/magic/control/fear-fright-monster-grin-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234093,"modifiedTime":1671220968922,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Bnn9Nzajixvow9xi","name":"Light","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A firefly or phosphorescent moss.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-small-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234093,"modifiedTime":1671220968926,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"BrBZdCCrJRIVg7YX","name":"Silent Image","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 15-foot cube. The image appears at a spot within range and lasts for the duration. The image is purely visual; it isn't accompanied by sound, smell, or other sensory effects.You can use your action to cause the image to move to any spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking.Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cube"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of fleece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-teal-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234094,"modifiedTime":1671220968931,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"CAxSzHWizrafT033","name":"Dancing Lights","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create up to four torch-sized lights within range, making them appear as torches, lanterns, or glowing orbs that hover in the air for the duration. You can also combine the four lights into one glowing vaguely humanoid form of Medium size. Whichever form you choose, each light sheds dim light in a 10-foot radius.As a bonus action on your turn, you can move the lights up to 60 feet to a new spot within range. A light must be within 20 feet of another light created by this spell, and a light winks out if it exceeds the spell's range.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of phosphorus or wychwood, or a glowworm","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-meteor-salvo-strong-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234094,"modifiedTime":1671220968935,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"CKZTpZlxj7hjjo2H","name":"Mage Armor","type":"spell","img":"icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp","system":{"description":{"value":"You touch a willing creature who isn't wearing armor, and a protective magical force surrounds it until the spell ends. The target's base AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor or if you dismiss the spell as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A piece of cured leather","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"cfwMU7LuOJ619Lny","changes":[{"key":"system.attributes.ac.calc","value":"mage","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp","label":"Mage Armor","origin":"Compendium.dnd5e.spells.CKZTpZlxj7hjjo2H","transfer":true,"flags":{},"tint":null,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234095,"modifiedTime":1671220968939,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"CjIq8Ed7bu3vVwT1","name":"Contagion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your touch inflicts disease. Make a melee spell attack against a creature within your reach. On a hit, you afflict the creature with a disease of your choice from any of the ones described below.At the end of each of the target's turns, it must make a Constitution saving throw. After failing three of these saving throws, the disease's effects last for the duration, and the creature stops making these saves. After succeeding on three of these saving throws, the creature recovers from the disease, and the spell ends.Since this spell induces a natural disease in its target, any effect that removes a disease or otherwise ameliorates a disease's effects apply to it.Blinding Sickness. Pain grips the creature's mind, and its eyes turn milky white. The creature has disadvantage on Wisdom checks and Wisdom saving throws and is blinded.Filth Fever. A raging fever sweeps through the creature's body. The creature has disadvantage on Strength checks, Strength saving throws, and attack rolls that use Strength.Flesh Rot. The creature's flesh decays. The creature has disadvantage on Charisma checks and vulnerability to all damage.Mindfire. The creature's mind becomes feverish. The creature has disadvantage on Intelligence checks and Intelligence saving throws, and the creature behaves as if under the effects of the confusion spell during combat.Seizure. The creature is overcome with shaking. The creature has disadvantage on Dexterity checks, Dexterity saving throws, and attack rolls that use Dexterity.Slimy Doom. The creature begins to bleed uncontrollably. The creature has disadvantage on Constitution checks and Constitution saving throws. In addition, whenever the creature takes damage, it is stunned until the end of its next turn.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"7","units":"day"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":5,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/unholy/strike-beam-blood-large-red-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234097,"modifiedTime":1671220968946,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"CylBa7jR8DSbo8Z3","name":"Zone of Truth","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a magical zone that guards against deception in a 15-foot-radius sphere centered on a point of your choice within range. Until the spell ends, a creature that enters the spell's area for the first time on a turn or starts its turn there must make a Charisma saving throw. On a failed save, a creature can't speak a deliberate lie while in the radius. You know whether each creature succeeds or fails on its saving throw.\n An affected creature is aware of the spell and can thus avoid answering questions to which it would normally respond with a lie. Such a creature can be evasive in its answers as long as it remains within the boundaries of the truth.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-magenta.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234097,"modifiedTime":1671220968950,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"DGONTFbk5eORs5qv","name":"Black Tentacles","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Squirming, ebony tentacles fill a 20-foot square on ground that you can see within range. For the Duration, these tentacles turn the ground in the area into difficult terrain.When a creature enters the affected area for the first time on a turn or starts its turn there, the creature must succeed on a Dexterity saving throw or take 3d6 bludgeoning damage and be @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.cSVcyZyNe2iG1fIc]{Restrained} by the tentacles until the spell ends. A creature that starts its turn in the area and is already @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.cSVcyZyNe2iG1fIc]{Restrained} by the tentacles takes 3d6 bludgeoning damage.A creature @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.cSVcyZyNe2iG1fIc]{Restrained} by the tentacles can use its action to make a Strength or Dexterity check (its choice) against your spell save DC. On a success, it frees itself.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":4,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A piece of tentacle from a giant octopus or a giant squid","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/vines-thorned-curled-glow-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234098,"modifiedTime":1671220968954,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"DQzlB5Y3k791W5bH","name":"See Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you see invisible creatures and objects as if they were visible, and you can see into the Ethereal Plane. Ethereal creatures and objects appear ghostly and translucent.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of talc and a small sprinkling of silver powder","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234098,"modifiedTime":1671220968959,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"DUBgwHPakcLDkB6W","name":"Tree Stride","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You gain the ability to enter a tree and move from inside it to inside another tree of the same kind within 500 feet. Both trees must be living and at least the same size as you. You must use 5 feet of Movement to enter a tree. You instantly know the location of all other trees of the same kind within 500 feet and, as part of the move used to enter the tree, can either pass into one of those trees or step out of the tree you're in. You appear in a spot of your choice within 5 feet of the destination tree, using another 5 feet of movement. If you have no movement left, you appear within 5 feet of the tree you entered.You can use this transportation ability once per round for the Duration. You must end each turn outside a tree.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-maple-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234099,"modifiedTime":1671220968964,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"E4NXux0RHvME1XgP","name":"Create Undead","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You can cast this spell only at night. Choose up to three corpses of Medium or Small humanoids within range. Each corpse becomes a ghoul under your control. (The DM has game statistics for these creatures.)As a bonus action on each of your turns, you can mentally command any creature you animated with this spell if the creature is within 120 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete.The creature is under your control for 24 hours, after which it stops obeying any command you have given it. To maintain control of the creature for another 24 hours, you must cast this spell on the creature before the current 24-hour period ends. This use of the spell reasserts your control over up to three creatures you have animated with this spell, rather than animating new ones.Higher Levels. When you cast this spell using a 7th-level spell slot, you can animate or reassert control over four ghouls. When you cast this spell using an 8th-level spell slot, you can animate or reassert control over five ghouls or two ghasts or wights. When you cast this spell using a 9th-level spell slot, you can animate or reassert control over six ghouls, three ghasts or wights, or two mummies.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":"You can cast this spell only at night."},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":3,"width":null,"units":"spec","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"One clay pot filled with grave dirt, one clay pot filled with brackish water, and one 150 gp black onyx stone for each corpse.","consumed":false,"cost":150,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/fear-fright-monster-grin-red-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234100,"modifiedTime":1671220968968,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"EOmsUcFQJTfG2oio","name":"Fire Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You hurl a mote of fire at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried.This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-fireball-smoke-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234100,"modifiedTime":1671220968971,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ERCv7yuRkQ0YjGx6","name":"Reverse Gravity","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell reverses gravity in a 50-foot-radius, 100-foot high Cylinder centered on a point within range. All creatures and Objects that aren't somehow anchored to the ground in the area fall upward and reach the top of the area when you cast this spell. A creature can make a Dexterity saving throw to grab onto a fixed object it can reach, thus avoiding the fall.If some solid object (such as a ceiling) is encountered in this fall, Falling Objects and creatures strike it just as they would during a normal downward fall. If an object or creature reaches the top of the area without striking anything, it remains there, oscillating slightly, for the Duration.At the end of the Duration, affected Objects and creatures fall back down.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":50,"width":null,"units":"ft","type":"cylinder"},"range":{"value":100,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":7,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A lodestone and iron fillings","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234101,"modifiedTime":1671220968975,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Ek45cBpVXvJdv1Qy","name":"Counterspell","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to interrupt a creature in the process of casting a spell. If the creature is casting a spell of 3rd level or lower, its spell fails and has no effect. If it is casting a spell of 4th level or higher, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a success, the creature's spell fails and has no effect.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the interrupted spell has no effect if its level is less than or equal to the level of the spell slot you used.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":"which you take when you see a creature within 60 feet of you casting a spell"},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d20 + @mod","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":false,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/skills/melee/strike-blade-hooked-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234102,"modifiedTime":1671220968994,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Eon0jzGzQRNluTPQ","name":"Antimagic Field","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A 10-foot-radius invisible sphere of antimagic surrounds you. This area is divorced from the magical energy that suffuses the multiverse. Within the sphere, spells can't be cast, summoned creatures disappear, and even magic items become mundane. Until the spell ends, the sphere moves with you, centered on you.Spells and other magical effects, except those created by an artifact or a deity, are suppressed in the sphere and can't protrude into it. A slot expended to cast a suppressed spell is consumed. While an effect is suppressed, it doesn't function, but the time it spends suppressed counts against its duration.Targeted Effects. Spells and other magical effects, such as magic missile and charm person, that target a creature or an object in the sphere have no effect on that target.Areas of Magic. The area of another spell or magical effect, such as fireball, can't extend into the sphere. If the sphere overlaps an area of magic, the part of the area that is covered by the sphere is suppressed. For example, the flames created by a wall of fire are suppressed within the sphere, creating a gap in the wall if the overlap is large enough.Spells. Any active spell or other magical effect on a creature or an object in the sphere is suppressed while the creature or object is in it.Magic Items. The properties and powers of magic items are suppressed in the sphere. For example, a +1 longsword in the sphere functions as a nonmagical longsword.A magic weapon's properties and powers are suppressed if it is used against a target in the sphere or wielded by an attacker in the sphere. If a magic weapon or a piece of magic ammunition fully leaves the sphere (for example, if you fire a magic arrow or throw a magic spear at a target outside the sphere), the magic of the item ceases to be suppressed as soon as it exits.Magical Travel. Teleportation and planar travel fail to work in the sphere, whether the sphere is the destination or the departure point for such magical travel. A portal to another location, world, or plane of existence, as well as an opening to an extradimensional space such as that created by the rope trick spell, temporarily closes while in the sphere.Creatures and Objects. A creature or object summoned or created by magic temporarily winks out of existence in the sphere. Such a creature instantly reappears once the space the creature occupied is no longer within the sphere.Dispel Magic. Spells and magical effects such as dispel magic have no effect on the sphere. Likewise, the spheres created by different antimagic field spells don't nullify each other.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"","type":"sphere"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A pinch of powdered iron or iron filings","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-chains-ropes-net-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234102,"modifiedTime":1671220969000,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"F0GsG0SJzsIOacwV","name":"Lesser Restoration","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature and can end either one disease or one condition afflicting it. The condition can be blinded, deafened, paralyzed, or poisoned.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234103,"modifiedTime":1671220969005,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FSMy6VAjDnXY9vWz","name":"Gust of Wind","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A line of strong wind 60 feet long and 10 feet wide blasts from you in a direction you choose for the spell's duration. Each creature that starts its turn in the line must succeed on a Strength saving throw or be pushed 15 feet away from you in a direction following the line.Any creature in the line must spend 2 feet of movement for every 1 foot it moves when moving closer to you.The gust disperses gas or vapor, and it extinguishes candles, torches, and similar unprotected flames in the area. It causes protected flames, such as those of lanterns, to dance wildly and has a 50 percent chance to extinguish them.As a bonus action on each of your turns before the spell ends, you can change the direction in which the line blasts from you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A legume seed.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/wind-swirl-gray-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234103,"modifiedTime":1671220969012,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"FjYE214HTERCRZNm","name":"Flaming Sphere","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A 5-foot-diameter Sphere of fire appears in an unoccupied space of your choice within range and lasts for the Duration. Any creature that ends its turn within 5 feet of the sphere must make a Dexterity saving throw. The creature takes 2d6 fire damage on a failed save, or half as much damage on a successful one.As a Bonus Action, you can move the Sphere up to 30 feet. If you ram the sphere into a creature, that creature must make the saving throw against the sphere's damage, and the sphere stops moving this turn.When you move the Sphere, you can direct it over barriers up to 5 feet tall and jump it across pits up to 10 feet wide. The sphere ignites flammable Objects not being worn or carried, and it sheds bright light in a 20-foot radius and dim light for an additional 20 feet.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":2,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of tallow, a pinch of brimstone, and a dusting of powdered iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-large-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234104,"modifiedTime":1671220969016,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"GJ2WYm3SQFR0winH","name":"Antipathy/Sympathy","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell attracts or repels creatures of your choice. You target something within range, either a Huge or smaller object or creature or an area that is no larger than a 200-foot cube. Then specify a kind of intelligent creature, such as red dragons, goblins, or vampires. You invest the target with an aura that either attracts or repels the specified creatures for the duration. Choose antipathy or sympathy as the aura's effect.Antipathy. The enchantment causes creatures of the kind you designated to feel an intense urge to leave the area and avoid the target. When such a creature can see the target or comes within 60 feet of it, the creature must succeed on a Wisdom saving throw or become frightened. The creature remains frightened while it can see the target or is within 60 feet of it. While frightened by the target, the creature must use its movement to move to the nearest safe spot from which it can't see the target. If the creature moves more than 60 feet from the target and can't see it, the creature is no longer frightened, but the creature becomes frightened again if it regains sight of the target or moves within 60 feet of it.Sympathy. The enchantment causes the specified creatures to feel an intense urge to approach the target while within 60 feet of it or able to see it. When such a creature can see the target or comes within 60 feet of it, the creature must succeed on a Wisdom saving throw or use its movement on each of its turns to enter the area or move within reach of the target. When the creature has done so, it can't willingly move away from the target.If the target damages or otherwise harms an affected creature, the affected creature can make a Wisdom saving throw to end the effect, as described below.Ending the Effect. If an affected creature ends its turn while not within 60 feet of the target or able to see it, the creature makes a Wisdom saving throw. On a successful save, the creature is no longer affected by the target and recognizes the feeling of repugnance or attraction as magical. In addition, a creature affected by the spell is allowed another Wisdom saving throw every 24 hours while the spell persists.A creature that successfully saves against this effect is immune to it for 1 minute, after which time it can be affected again.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"10","units":"day"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":8,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Either a lump of alum soaked in vinegar for the antipathy effect or a drop of honey for the sympathy effect.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/fear-fright-monster-grin-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234104,"modifiedTime":1671220969021,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"GSvLWcdCZLQkilXT","name":"Blink","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Roll a d20 at the end of each of your turns for the duration of the spell. On a roll of 11 or higher, you vanish from your current plane of existence and appear in the Ethereal Plane (the spell fails and the casting is wasted if you were already on that plane). At the start of your next turn, and when the spell ends if you are on the Ethereal Plane, you return to an unoccupied space of your choice that you can see within 10 feet of the space you vanished from. If no unoccupied space is available within that range, you appear in the nearest unoccupied space (chosen at random if more than one space is equally near). You can dismiss this spell as an action.While on the Ethereal Plane, you can see and hear the plane you originated from, which is cast in shades of gray, and you can't see anything there more than 60 feet away. You can only affect and be affected by other creatures on the Ethereal Plane. Creatures that aren't there can't perceive you or interact with you, unless they have the ability to do so.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d20","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234105,"modifiedTime":1671220969026,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"GtGjNjPBgUHxGYAD","name":"Sending","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You send a short message of twenty-five words or less to a creature with which you are familiar. The creature hears the message in its mind, recognizes you as the sender if it knows you, and can answer in a like manner immediately. The spell enables creatures with Intelligence scores of at least 1 to understand the meaning of your message.You can send the message across any distance and even to other planes of existence, but if the target is on a different plane than you, there is a 5 percent chance that the message doesn't arrive.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"any"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A short piece of fine copper wire","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/wind-vortex-swirl-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234106,"modifiedTime":1671220969030,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"HBHbOGKNVVprSlwn","name":"Disintegrate","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A thin green ray springs from your pointing finger to a target that you can see within range. The target can be a creature, an object, or a creation of magical force, such as the wall created by wall of force.A creature targeted by this spell must make a Dexterity saving throw. On a failed save, the target takes 10d6 + 40 force damage. The target is disintegrated if this damage leaves it with 0 hit points.A disintegrated creature and everything it is wearing and carrying, except magic items, are reduced to a pile of fine gray dust. The creature can be restored to life only by means of a true resurrection or a wish spell.This spell automatically disintegrates a Large or smaller nonmagical object or a creation of magical force. If the target is a Huge or larger object or creation of force, this spell disintegrates a 10-foot-cube portion of it. A magic item is unaffected by this spell.At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the damage increases by 3d6 for each slot level above 6th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d6 + 40","force"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":6,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A lodestone and a pinch of dust","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"3d6"}},"sort":0,"flags":{},"img":"icons/magic/unholy/strike-beam-blood-large-red-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234106,"modifiedTime":1671220969034,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"HPvZm8YJO91k6Qdg","name":"Finger of Death","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You send negative energy coursing through a creature that you can see within range, causing it searing pain. The target must make a Constitution saving throw. It takes 7d8 + 30 necrotic damage on a failed save, or half as much damage on a successful one.A humanoid killed by this spell rises at the start of your next turn as a Zombie that is permanently under your command, following your verbal orders to the best of its ability.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["7d8 + 30","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":7,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/unholy/strike-beam-blood-large-red-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234107,"modifiedTime":1671220969040,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"HQfd7jJyULIoGxrZ","name":"Telekinesis","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You gain the ability to move or manipulate creatures or objects by thought. When you cast the spell, and as your action each round for the Duration, you can exert your will on one creature or object that you can see within range, causing the appropriate effect below. You can affect the same target round after round, or choose a new one at any time. If you switch targets, the prior target is no longer affected by the spell.Creature. You can try to move a Huge or smaller creature. Make an ability check with your spellcasting ability contested by the creature's Strength check. If you win the contest, you move the creature up to 30 feet in any direction, including upward but not beyond the range of this spell. Until the end of your next turn, the creature is Restrained in your telekinetic grip. A creature lifted upward is suspended in mid-air.On subsequent rounds, you can use your action to attempt to maintain your telekinetic grip on the creature by repeating the contest.Object. You can try to move an object that weighs up to 1,000 pounds. If the object isn't being worn or carried, you automatically move it up to 30 feet in any direction, but not beyond the range of this spell.If the object is worn or carried by a creature, you must make an ability check with your Spellcasting ability contested by that creature's Strength check. If you succeed, you pull the object away from that creature and can move it up to 30 feet in any direction but not beyond the range of this spell.You can exert fine control on Objects with your telekinetic grip, such as manipulating a simple tool, opening a door or a container, stowing or retrieving an item from an open container, or pouring the contents from a vial.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-levitate-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234107,"modifiedTime":1671220969044,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"I2LUSF5ogc7Bj62e","name":"Speak with Dead","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You grant the semblance of life and intelligence to a corpse of your choice within range, allowing it to answer the questions you pose. The corpse must still have a mouth and can't be undead. The spell fails if the corpse was the target of this spell within the last 10 days.Until the spell ends, you can ask the corpse up to five questions. The corpse knows only what it knew in life, including the languages it knew. Answers are usually brief, cryptic, or repetitive, and the corpse is under no compulsion to offer a truthful answer if you are hostile to it or it recognizes you as an enemy. This spell doesn't return the creature's soul to its body, only its animating spirit. Thus, the corpse can't learn new information, doesn't comprehend anything that has happened since it died, and can't speculate about future events.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Burning incense","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/fear-fright-shadow-monster-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234108,"modifiedTime":1671220969048,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"IBJmWjzbQGu7M4UX","name":"Fog Cloud","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a 20-foot-radius Sphere of fog centered on a point within range. The sphere spreads around corners, and its area is heavily obscured. It lasts for the Duration or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the radius of the fog increases by 20 feet for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-dense-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234109,"modifiedTime":1671220969052,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ImlCJQwR1VL40Qem","name":"Arcane Eye","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create an invisible, magical eye within range that hovers in the air for the duration.You mentally receive visual information from the eye, which has normal vision and darkvision out to 30 feet. The eye can look in every direction.As an action, you can move the eye up to 30 feet in any direction. There is no limit to how far away from you the eye can move, but it can't enter another plane of existence. A solid barrier blocks the eye's movement, but the eye can pass through an opening as small as 1 inch in diameter.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of bat fur.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234109,"modifiedTime":1671220969058,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Iv2qqSAT7OkXKPFx","name":"Locate Animals or Plants","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Describe or name a specific kind of beast or plant. Concentrating on the voice of nature in your surroundings, you learn the direction and distance to the closest creature or plant of that kind within 5 miles, if any are present.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A bit of fur from a bloodhound","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-triple-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234110,"modifiedTime":1671220969062,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"IyikgTEOTv701jgQ","name":"Lightning Bolt","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A stroke of lightning forming a line 100 feet long and 5 feet wide blasts out from you in a direction you choose. Each creature in the line must make a Dexterity saving throw. A creature takes 8d6 lightning damage on a failed save, or half as much damage on a successful one.The lightning ignites flammable objects in the area that aren't being worn or carried.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d6","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of fur and a rod of amber, crystal, or glass","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{},"img":"icons/magic/lightning/bolt-forked-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234110,"modifiedTime":1671220969066,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"J3uILDYS7MiOfmTJ","name":"Fire Storm","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A storm made up of sheets of roaring flame appears in a location you choose within range. The area of the storm consists of up to ten 10-foot cubes, which you can arrange as you wish. Each cube must have at least one face adjacent to the face of another cube. Each creature in the area must make a Dexterity saving throw. It takes 7d10 fire damage on a failed save, or half as much damage on a successful one.The fire damages Objects in the area and ignites flammable Objects that aren't being worn or carried. If you choose, plant life in the area is unaffected by this spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"cube"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["7d10","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":7,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-meteor-salvo-heavy-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234111,"modifiedTime":1671220969069,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"J6Jpw5XzB5aTeqnz","name":"Plane Shift","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You and up to eight willing creatures who link hands in a circle are transported to a different plane of existence. You can specify a target destination in general terms, such as the City of Brass on the Elemental Plane of Fire or the palace of Dispater on the second level of the Nine Hells, and you appear in or near that destination. If you are trying to reach the City of Brass, for example, you might arrive in its Street of Steel, before its Gate of Ashes, or looking at the city from across the Sea of Fire, at the DM's discretion.Alternatively, if you know the sigil sequence of a teleportation circle on another plane of existence, this spell can take you to that circle. If the teleportation circle is too small to hold all the creatures you transported, they appear in the closest unoccupied spaces next to the circle.You can use this spell to banish an unwilling creature to another plane. Choose a creature within your reach and make a melee spell attack against it. On a hit, the creature must make a Charisma saving throw. If the creature fails this save, it is transported to a random location on the plane of existence you specify. A creature so transported must find its own way back to your current plane of existence.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":8,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":7,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A forked, metal rod worth at least 250 gp, attuned to a particular plane of existence","consumed":false,"cost":250,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234111,"modifiedTime":1671220969075,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"JGT5bNqu9REL7Fuz","name":"Find Familiar","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your familiar acts independently of you, but it always obeys your commands. In combat, it rolls its own initiative and acts on its own turn. A familiar can't attack, but it can take other actions as normal.When the familiar drops to 0 hit points, it disappears, leaving behind no physical form. It reappears after you cast this spell again.While your familiar is within 100 feet of you, you can communicate with it telepathically. Additionally, as an action, you can see through your familiar's eyes and hear what it hears until the start of your next turn, gaining the benefits of any special senses that the familiar has. During this time, you are deaf and blind with regard to your own senses.As an action, you can temporarily dismiss your familiar. It disappears into a pocket dimension where it awaits your summons. Alternatively, you can dismiss it forever. As an action while it is temporarily dismissed, you can cause it to reappear in any unoccupied space within 30 feet of you.You can't have more than one familiar at a time. If you cast this spell while you already have a familiar, you instead cause it to adopt a new form. Choose one of the forms from the above list. Your familiar transforms into the chosen creature.Finally, when you cast a spell with a range of touch, your familiar can deliver the spell as if it had cast the spell. Your familiar must be within 100 feet of you, and it must use its reaction to deliver the spell when you cast it. If the spell requires an attack roll, you use your action modifier for the roll.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"10 gp worth of charcoal, incense, and herbs that must be consumed by fire in a brass brazier","consumed":true,"cost":10,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/wolf-paw-glow-purple-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234112,"modifiedTime":1671220969093,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"JLTQyqXEaJDrTXyW","name":"Acid Splash","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You hurl a bubble of acid. Choose one creature you can see within range, or choose two creatures you can see within range that are within 5 feet of each other. A target must succeed on a Dexterity saving throw or take 1d6acid damage.This spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":2,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d6","acid"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-fireball-smoke-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234112,"modifiedTime":1671220969097,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"JPwIEfgUPVebr5AH","name":"Barkskin","type":"spell","img":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","system":{"description":{"value":"You touch a willing creature. Until the spell ends, the target's skin has a rough, bark-like appearance, and the target's AC can't be less than 16, regardless of what kind of armor it is wearing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A handful of oak bark","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"uM6rgctYpcbCVSkn","flags":{},"changes":[{"key":"system.attributes.ac.formula","value":"16","mode":5,"priority":null},{"key":"system.attributes.ac.calc","value":"custom","mode":5,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":3600,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","label":"Barkskin","origin":"Item.VQMKMnQDw5rzL0zp","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234113,"modifiedTime":1671220969102,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"JQyigMNPiDnGI18b","name":"Geas","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You place a magical command on a creature that you can see within range, forcing it to carry out some service or refrain from some action or course of activity as you decide. If the creature can understand you, it must succeed on a Wisdom saving throw or become Charmed by you for the Duration. While the creature is charmed by you, it takes 5d10 psychic damage each time it acts in a manner directly counter to your instructions, but no more than once each day. A creature that can't understand you is unaffected by the spell.You can issue any command you choose, short of an activity that would result in certain death. Should you issue a suicidal command, the spell ends.You can end the spell early by using an action to dismiss it. A Remove Curse, Greater Restoration, or wish spell also ends it.At Higher Levels. When you cast this spell using a spell slot of 7th or 8th level, the Duration is 1 year. When you cast this spell using a spell slot of 9th level, the spell lasts until it is ended by one of the Spells mentioned above.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"30","units":"day"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d10","psychic"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":5,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-large-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234114,"modifiedTime":1671220969109,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"JVhKeanAXZH62DrF","name":"Warding Bond","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell wards a willing creature you touch and creates a mystic connection between you and the target until the spell ends. While the target is within 60 feet of you, it gains a +1 bonus to AC and saving throws, and it has resistance to all damage. Also, each time it takes damage, you take the same amount of damage.The spell ends if you drop to 0 hit points or if you and the target become separated by more than 60 feet. It also ends if the spell is cast again on either of the connected creatures. You can also dismiss the spell as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pair of platinum rings worth at least 50 gp each, which you and the target must wear for the duration","consumed":false,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234114,"modifiedTime":1671220969113,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"JYuRBwxpoFhXduvD","name":"Time Stop","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You briefly stop the flow of time for everyone but yourself. No time passes for other creatures, while you take 1d4 + 1 turns in a row, during which you can use Actions and move as normal.This spell ends if one of the Actions you use during this period, or any Effects that you create during this period, affects a creature other than you or an object being worn or carried by someone other than you. In addition, the spell ends if you move to a place more than 1,000 feet from the location where you cast it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4+1","save":{"ability":"","dc":null,"scaling":"spell"},"level":9,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/time/clock-stopwatch-white-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234114,"modifiedTime":1671220969118,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"JbxsYXxSOTZbf9I0","name":"Spiritual Weapon","type":"spell","img":"icons/magic/fire/dagger-rune-enchant-flame-purple.webp","system":{"description":{"value":"You create a floating, spectral weapon within range that lasts for the duration or until you cast this spell again. When you cast the spell, you can make a melee spell attack against a creature within 5 feet of the weapon. On a hit, the target takes force damage equal to 1d8 + your spellcasting ability modifier.As a bonus action on your turn, you can move the weapon up to 20 feet and repeat the attack against a creature within 5 feet of it.The weapon can take whatever form you choose. Clerics of deities who are associated with a particular weapon (as St. Cuthbert is known for his mace and Thor for his hammer) make this spell's effect resemble that weapon.Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for every two slot levels above the 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"square"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["floor(@item.level / 2)d8 + @mod","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234115,"modifiedTime":1671220969123,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KJRVzeMQXPj8Gtyx","name":"Spider Climb","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Until the spell ends, one willing creature you touch gains the ability to move up, down, and across vertical surfaces and upside down along ceilings, while leaving its hands free. The target also gains a climbing speed equal to its walking speed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A drop of bitumen and a spider","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-chains-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234116,"modifiedTime":1671220969129,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KeunEkg1JYbOCOhV","name":"Circle of Death","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A sphere of negative energy ripples out in a 60-foot radius from a point within range. Each creature in that area must make a Constitution saving throw. A target takes 8d6 necrotic damage on a failed save, or half as much damage on a successful one.Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the damage increases by 2d6 for each slot level above 6th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"sphere"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d6","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":6,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"The powder of a crushed black pearl worth at least 500 gp.","consumed":false,"cost":500,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"2d6"}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-large-teal-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234116,"modifiedTime":1671220969133,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KgEw3sDr39C6g8nY","name":"Conjure Minor Elementals","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You summon elementals that appear in unoccupied spaces that you can see within range. You choose one the following options for what appears:\n\nOne elemental of challenge rating 2 or lower\nTwo elementals of challenge rating 1 or lower\nFour elementals of challenge rating 1/2 or lower\nEight elementals of challenge rating 1/4 or lower.\n\nAn elemental summoned by this spell disappears when it drops to 0 hit points or when the spell ends.The summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which has its own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions.Higher Levels. When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 6th-level slot and three times as many with an 8th-level slot.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234117,"modifiedTime":1671220969137,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KhwiSi9fwVfUPtku","name":"Sleep","type":"spell","img":"icons/magic/light/explosion-star-small-pink.webp","system":{"description":{"value":"This spell sends creatures into a magical slumber. Roll 5d8; the total is how many hit points of creatures this spell can affect. Creatures within 20 feet of a point you choose within range are affected in ascending order of their current hit points (ignoring unconscious creatures).Starting with the creature that has the lowest current hit points, each creature affected by this spell falls unconscious until the spell ends, the sleeper takes damage, or someone uses an action to shake or slap the sleeper awake. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.Undead and creatures immune to being charmed aren't affected by this spell.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d8 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of fine sand, rose petals, or a cricket.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"2d8"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234117,"modifiedTime":1671220969141,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Kn7K5PtYUJAKZTTp","name":"Purify Food and Drink","ownership":{"default":0},"type":"spell","system":{"description":{"value":"All nonmagical food and drink within a 5-foot-radius sphere centered on a point of your choice within range is purified and rendered free of poison and disease.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"sphere"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-small-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234118,"modifiedTime":1671220969145,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"KrM3oHVv13RAALrS","name":"Find Traps","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You sense the presence of any trap within range that is within line of sight. A trap, for the purpose of this spell, includes anything that would inflict a sudden or unexpected effect you consider harmful or undesirable, which was specifically intended as such by its creator. Thus, the spell would sense an area affected by the alarm spell, a glyph of warding, or a mechanical pit trap, but it would not reveal a natural weakness in the floor, an unstable ceiling, or a hidden sinkhole.This spell merely reveals that a trap is present. You don't learn the location of each trap, but you do learn the general nature of the danger posed by a trap you sense.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-blue-small.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234118,"modifiedTime":1671220969148,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"L4J89JXqbKs6puEV","name":"Teleport","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell instantly transports you and up to eight willing creatures of your choice that you can see within range, or a single object that you can see within range, to a destination you select. If you target an object, it must be able to fit entirely inside a 10-foot cube, and it can't be held or carried by an unwilling creature.The destination you choose must be known to you, and it must be on the same plane of existence as you. Your familiarity with the destination determines whether you arrive there successfully. The DM rolls d100 and consults the table.\n\n\n\nFamiliarity\nMishap\nSimilar Area\nOff Target\nOn Target\n\n\nPermanent circle\n-\n-\n-\n01-100\n\n\nAssociated object\n-\n-\n-\n01-100\n\n\nVery familiar\n01-05\n06-13\n14-24\n25-100\n\n\nSeen casually\n01-33\n34-43\n44-53\n54-100\n\n\nViewed once\n01-43\n44-53\n54-73\n74-100\n\n\nDescription\n01-43\n44-53\n54-73\n74-100\n\n\nFalse destination\n01-50\n51-100\n-\n-\n\n\n\nFamiliarity. \"Permanent circle\" means a permanent Teleportation Circle whose sigil sequence you know. \"Associated object\" means that you possess an object taken from the desired destination within the last six months, such as a book from a wizard's library, bed linen from a royal suite, or a chunk of marble from a lich's Secret tomb.\"Very familiar\" is a place you have been very often, a place you have carefully studied, or a place you can see when you cast the spell. \"Seen casually\" is someplace you have seen more than once but with which you aren't very familiar. \"Viewed once\" is a place you have seen once, possibly using magic. \"Description\" is a place whose location and appearance you know through someone else's description, perhaps from a map.\"False destination\" is a place that doesn't exist. Perhaps you tried to scry an enemy's sanctum but instead viewed an illusion, or you are attempting to teleport to a familiar location that no longer exists.On Target. You and your group (or the target object) appear where you want to.Off Target. You and your group (or the target object) appear a random distance away from the destination in a random direction. Distance off target is 1d10 × 1d10 percent of the distance that was to be traveled. For example, if you tried to travel 120 miles, landed off target, and rolled a 5 and 3 on the two d10s, then you would be off target by 15 percent, or 18 miles. The DM determines the direction off target randomly by rolling a d8 and designating 1 as north, 2 as northeast, 3 as east, and so on around the points of the compass. If you were teleporting to a coastal city and wound up 18 miles out at sea, you could be in trouble.Similar Area. You and your group (or the target object) wind up in a different area that's visually or thematically similar to the target area. If you are heading for your home laboratory, for example, you might wind up in another wizard's laboratory or in an alchemical supply shop that has many of the same tools and implements as your laboratory. Generally, you appear in the closest similar place, but since the spell has no range limit, you could conceivably wind up anywhere on the plane.Mishap. The spell's unpredictable magic results in a difficult journey. Each teleporting creature (or the target object) takes 3d10 force damage, and the DM rerolls on the table to see where you wind up (multiple mishaps can occur, dealing damage each time).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":9,"width":null,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d100","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234119,"modifiedTime":1671220969156,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LTDNWoFVJNLjiiNa","name":"Arcane Sword","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a sword-shaped plane of force that hovers within range. It lasts for the Duration.When the sword appears, you make a melee spell Attack against a target of your choice within 5 feet of the sword. On a hit, the target takes 3d10 force damage. Until the spell ends, you can use a Bonus Action on each of your turns to move the sword up to 20 feet to a spot you can see and repeat this Attack against the same target or a different one.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A miniature platinum sword with a grip and pommel of copper and zinc, worth 250gp","consumed":false,"cost":250,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/skills/melee/strike-blade-hooked-orange-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234120,"modifiedTime":1671220969161,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LWTUqKkUQdMAmOe0","name":"Color Spray","type":"spell","img":"icons/magic/air/fog-gas-smoke-dense-pink.webp","system":{"description":{"value":"A dazzling array of flashing, colored light springs from your hand. Roll 6d10; the total is how many hit points of creatures this spell can effect. Creatures in a 15-foot cone originating from you are affected in ascending order of their current hit points (ignoring unconscious creatures and creatures that can't see).Starting with the creature that has the lowest current hit points, each creature affected by this spell is blinded until the spell ends. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d10 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"other","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d10",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of powder or sand that is colored red, yellow, and blue.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"2d10"}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234121,"modifiedTime":1671220969165,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LkvI11Uue774QBKZ","name":"Cloudkill","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a 20-foot-radius sphere of poisonous, yellow-green fog centered on a point you choose within range. The fog spreads around corners. It lasts for the duration or until strong wind disperses the fog, ending the spell. Its area is heavily obscured.When a creature enters the spell's area for the first time on a turn or starts its turn there, that creature must make a Constitution saving throw. The creature takes 5d8 poison damage on a failed save, or half as much damage on a successful one. Creatures are affected even if they hold their breath or don't need to breathe.The fog moves 10 feet away from you at the start of each of your turns, rolling along the surface of the ground. The vapors, being heavier than air, sink to the lowest level of the land, even pouring down openings.Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":5,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234121,"modifiedTime":1671220969172,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LmRHHMtplpxr9fX6","name":"Revivify","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature that has died within the last minute. That creature returns to life with 1 hit point. This spell can't return to life a creature that has died of old age, nor can it restore any missing body parts.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Diamonds worth 300gp, which the spell consumes.","consumed":true,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234122,"modifiedTime":1671220969191,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"LrPvWHBPmiMQQsKB","name":"Dominate Beast","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to beguile a beast that you can see within range. It must succeed on a Wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw.While the beast is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability.You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time, you can also cause the creature to use a reaction, but this requires you to use your own reaction as well.Each time the target takes damage, it makes a new Wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.At Higher Levels. When you cast this spell with a 5th-level spell slot, the duration is concentration, up to 10 minutes. When you use a 6th-level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 7th level or higher, the duration is concentration, up to 8 hours.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":4,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-large-teal-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234122,"modifiedTime":1671220969198,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MAxM77CDUu8dgIRQ","name":"Protection from Poison","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature. If it is poisoned, you neutralize the poison. If more than one poison afflicts the target, you neutralize one poison that you know is present, or you neutralize one at random.For the duration, the target has advantage on saving throws against being poisoned, and it has resistance to poison damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-glowing-triangle-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234123,"modifiedTime":1671220969701,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MBMaQLwoy05qzMJ3","name":"Mislead","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You become Invisible at the same time that an illusory double of you appears where you are standing. The double lasts for the Duration, but the Invisibility ends if you Attack or Cast a Spell.You can use your action to move your illusory double up to twice your speed and make it gesture, speak, and behave in whatever way you choose.You can see through its eyes and hear through its ears as if you were located where it is. On each of your turns as a Bonus Action, you can switch from using its senses to using your own, or back again. While you are using its senses, you are Blinded and Deafened in regard to your own surroundings.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"ill","components":{"vocal":false,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-levitate-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234123,"modifiedTime":1671220969719,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MCEpGpvovcXagwQS","name":"Awaken","ownership":{"default":0},"type":"spell","system":{"description":{"value":"After spending the casting time tracing magical pathways within a precious gemstone, you touch a Huge or smaller beast or plant. The target must have either no Intelligence score or an Intelligence of 3 or less. The target gains an Intelligence of 10. The target also gains the ability to speak one language you know. If the target is a plant, it gains the ability to move its limbs, roots, vines, creepers, and so forth, and it gains senses similar to a human's. Your DM chooses statistics appropriate for the awakened plant, such as the statistics for the awakened shrub or the awakened tree.The awakened beast or plant is charmed by you for 30 days or until you or your companions do anything harmful to it. When the charmed condition ends, the awakened creature chooses whether to remain friendly to you, based on how you treated it while it was charmed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"hour","cost":8,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"An agate worth at least 1,000 gp, which the spell consumes","consumed":true,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-maple-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234124,"modifiedTime":1671220969745,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MImfWCzEPRMYD3Xp","name":"Freezing Sphere","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A frigid globe of cold energy streaks from your fingertips to a point of your choice within range, where it explodes in a 60-foot-radius sphere. Each creature within the area must make a Constitution saving throw. On a failed save, a creature takes 10d6 cold damage. On a successful save, it takes half as much damage.If the globe strikes a body of water or a liquid that is principally water (not including water-based creatures), it freezes the liquid to a depth of 6 inches over an area 30 feet square. This ice lasts for 1 minute. Creatures that were swimming on the surface of frozen water are trapped in the ice. A trapped creature can use an action to make a Strength check against your spell save DC to break free.You can refrain from firing the globe after completing the spell, if you wish. A small globe about the size of a sling stone, cool to the touch, appears in your hand. At any time, you or a creature you give the globe to can throw the globe (to a range of 40 feet) or hurl it with a sling (to the sling's normal range). It shatters on impact, with the same effect as the normal casting of the spell. You can also set the globe down without shattering it. After 1 minute, if the globe hasn't already shattered, it explodes.At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the damage increases by 1d6 for each slot level above 6th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"sphere"},"range":{"value":300,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d6","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":6,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small crystal sphere","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-blue-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234124,"modifiedTime":1671220969764,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MK6gpQMeDFo0cP9f","name":"Continual Flame","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A flame, equivalent in brightness to a torch, springs forth from an object that you touch. The effect looks like a regular flame, but it creates no heat and doesn't use oxygen. A continual flame can be covered or hidden but not smothered or quenched.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"disp"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Ruby dust worth 50 gp, which the spell consumes","consumed":true,"cost":50,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/explosion-fireball-medium-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234126,"modifiedTime":1674761578009,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MOEmz9N0j0QPkKEE","name":"Prayer of Healing","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Up to six creatures of your choice that you can see within range each regain Hit Points equal to 2d8 + your Spellcasting ability modifier. This spell has no effect on Undead or constructs.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the Healing increases by 1d8 for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":6,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234126,"modifiedTime":1671220969788,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MRxldJd6C4bsBo3O","name":"Levitate","ownership":{"default":0},"type":"spell","system":{"description":{"value":"One creature or object of your choice that you can see within range rises vertically, up to 20 feet, and remains suspended there for the duration. The spell can levitate a target that weighs up to 500 pounds. An unwilling creature that succeeds on a Constitution saving throw is unaffected.The target can move only by pushing or pulling against a fixed object or surface within reach (such as a wall or a ceiling), which allows it to move as if it were climbing. You can change the target's altitude by up to 20 feet in either direction on your turn. If you are the target, you can move up or down as part of your move. Otherwise, you can use your action to move the target, which must remain within the spell's range.When the spell ends, the target floats gently to the ground if it is still aloft.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Either a small leather loop or a piece of golden wire bent into a cup shape with a long shank on one end","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234127,"modifiedTime":1671220969799,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"MUO1uYN7JR1hm4dR","name":"Thaumaturgy","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create one of the following magical effects within range:\n\nYour voice booms up to three times as loud as normal for 1 minute.\nYou cause flames to flicker, brighten, dim, or change color for 1 minute.\nYou cause harmless tremors in the ground for 1 minute.\nYou create a sound that originates from a point of your choice within range.\nYou cause an unlocked door or window to fly open or slam shut.\nYou alter the appearance of your eyes for 1 minute.\n\nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234127,"modifiedTime":1671220969805,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Mzh95utKDPIrjiH8","name":"Detect Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234128,"modifiedTime":1671220969810,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"N2UEFq8X5LRsLcOZ","name":"Shapechange","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You assume the form of a different creature for the Duration. The new form can be of any creature with a Challenge rating equal to your level or lower. The creature can't be a construct or an Undead, and you must have seen the sort of creature at least once. You transform into an average example of that creature, one without any class levels or the Spellcasting trait.Your game statistics are replaced by the statistics of the chosen creature, though you retain your Alignment and Intelligence, Wisdom, and Charisma scores. You also retain all of your skill and saving throw proficiencies, in addition to gaining those of the creature. If the creature has the same proficiency as you and the bonus listed in its Statistics is higher than yours, use the creature's bonus in place of yours. You can't use any legendary Actions or Lair Actions of the new form.You assume the Hit Points and Hit Dice of the new form. When you revert to your normal form, you return to the number of Hit Points you had before you transformed. If you revert as a result of Dropping to 0 Hit Points, any excess damage carries over to your normal form. As long as the excess damage doesn't reduce your normal form to 0 Hit Points, you aren't knocked Unconscious.You retain the benefit of any features from your class, race, or other source and can use them, provided that your new form is physically capable of doing so. You can't use any Special Senses you have (for example, darkvision) unless your new form also has that sense. You can only speak if the creature can normally speak.When you transform, you choose whether your Equipment falls to the ground, merges into the new form, or is worn by it. Worn equipment functions as normal. The DM determines whether it is practical for the new form to wear a piece of equipment, based on the creature's shape and size. Your equipment doesn't change shape or size to match the new form, and any equipment that the new form can't wear must either fall to the ground or merge into your new form. Equipment that merges has no effect in that state.During this spell's Duration, you can use your action to assume a different form following the same restrictions and rules for the original form, with one exception: if your new form has more hit points than your current one, your hit points remain at their current value.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":9,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A jade circlet worth at least 1,500 gp, which you must place on your head before you cast the spell","consumed":false,"cost":1500,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/wolf-paw-glow-large-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234128,"modifiedTime":1671220969815,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NJgxf7pmSsBArIG7","name":"Private Sanctum","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You make an area within range magically secure. The area is a cube that can be as small as 5 feet to as large as 100 feet on each side. The spell lasts for the Duration or until you use an action to dismiss it.When you cast the spell, you decide what sort of security the spell provides, choosing any or all of the following properties:\n\nSound can't pass through the barrier at the edge of the warded area.\nThe barrier of the warded area appears dark and foggy, preventing vision (including darkvision) through it.\nSensors created by Divination spells can't appear inside the protected area or pass through the barrier at its perimeter.\nCreatures in the area can't be targeted by divination spells.\nNothing can Teleport into or out of the warded area.\nPlanar Travel is blocked within the warded area.\n\nCasting this spell on the same spot every day for a year makes this effect permanent.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, you can increase the size of the cube by 100 feet for each slot level beyond 4th. Thus you could protect a cube that can be up to 200 feet on one side by using a spell slot of 5th level.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A thin sheet of lead, a piece of opaque glass, a wad of cotton or cloth, and a powdered chrysolite","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234129,"modifiedTime":1671220969819,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NXWWWgHtWb7Nv21F","name":"Tiny Hut","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A 10-foot-radius immobile dome of force springs into existence around and above you and remains stationary for the duration. The spell ends if you leave its area.Nine creatures of Medium size or smaller can fit inside the dome with you. The spell fails if its area includes a larger creature or more than nine creatures. Creatures and objects within the dome when you cast this spell can move through it freely. All other creatures and objects are barred from passing through it. Spells and other magical effects can't extend through the dome or be cast through it. The atmosphere inside the space is comfortable and dry, regardless of the weather outside.Until the spell ends, you can command the interior to become dimly lit or dark. The dome is opaque from the outside, of any color you choose, but it is transparent from the inside.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"sphere"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A small crystal bead","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234129,"modifiedTime":1671220969825,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"NmoRmM1mhuM3pqnY","name":"Wall of Stone","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A nonmagical wall of solid stone springs into existence at a point you choose within range. The wall is 6 inches thick and is composed of ten 10-foot-by-10-foot panels. Each panel must be contiguous with at least one other panel. Alternatively, you can create 10-foot-by-20-foot panels that are only 3 inches thick.If the wall cuts through a creature's space when it appears, the creature is pushed to one side of the wall (your choice). If a creature would be surrounded on all sides by the wall (or the wall and another solid surface), that creature can make a Dexterity saving throw. On a success, it can use its Reaction to move up to its speed so that it is no longer enclosed by the wall.The wall can have any shape you desire, though it can't occupy the same space as a creature or object. The wall doesn't need to be vertical or rest on any firm foundation. It must, however, merge with and be solidly supported by existing stone. Thus, you can use this spell to bridge a chasm or create a ramp.If you create a span greater than 20 feet in length, you must halve the size of each panel to create supports. You can crudely shape the wall to create crenellations, battlements, and so on.The wall is an object made of stone that can be damaged and thus breached. Each panel has AC 15 and 30 Hit Points per inch of thickness. Reducing a panel to 0 Hit Points destroys it and might cause connected panels to collapse at the DM's discretion.If you maintain your Concentration on this spell for its whole Duration, the wall becomes permanent and can't be dispelled. Otherwise, the wall disappears when the spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"wall"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small block of granite","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-orange-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234130,"modifiedTime":1671220969833,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ODhLKBxLnvvLOnw1","name":"Ray of Enfeeblement","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A black beam of enervating energy springs from your finger toward a creature within range. Make a ranged spell attack against the target. On a hit, the target deals only half damage with weapon attacks that use Strength until the spell ends.At the end of each of the target's turns, it can make a Constitution saving throw against the spell. On a success, the spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":2,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234130,"modifiedTime":1671220969845,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"OVikYmSdHliAG2YD","name":"Insect Plague","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Swarming, biting locusts fill a 20-foot-radius Sphere centered on a point you choose within range. The sphere spreads around corners. The sphere remains for the Duration, and its area is lightly obscured. The sphere's area is difficult terrain.When the area appears, each creature in it must make a Constitution saving throw. A creature takes 4d10 piercing damage on a failed save, or half as much damage on a successful one. A creature must also make this saving throw when it enters the spell's area for the first time on a turn or ends its turn there.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d10 for each slot level above 5th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":300,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10","piercing"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":5,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A few grains of sugar, some kernels of grain, and a smear of fat","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d10"}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-maple-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234131,"modifiedTime":1671220969868,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Opwh2PdX4runSBlm","name":"Aid","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your spell bolsters your allies with toughness and resolve. Choose up to three creatures within range. Each target's hit point maximum and current hit points increase by 5 for the duration.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, a target's hit points increase by an additional 5 for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":3,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A tiny strip of white cloth.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"(@item.level - 2) * 5"}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234131,"modifiedTime":1671220969879,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"P6f1PPKPd9BCb742","name":"Compulsion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Creatures of your choice that you can see within range and that can hear you must make a Wisdom saving throw. A target automatically succeeds on this saving throw if it can't be charmed. On a failed save, a target is affected by this spell. Until the spell ends, you can use a bonus action on each of your turns to designate a direction that is horizontal to you. Each affected target must use as much of its movement as possible to move in that direction on its next turn. It can take any action before it moves. After moving in this way, it can make another Wisdom save to try to end the effect.A target isn't compelled to move into an obviously deadly hazard, such as a fire or a pit, but it will provoke opportunity attacks to move in the designated direction.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":4,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/explosion-fireball-large-purple-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234132,"modifiedTime":1671220969883,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"P7mF2MxSuVJwHRRY","name":"Guidance","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one willing creature. Once before the spell ends, the target can roll a d4 and add the number rolled to one ability check of its choice. It can roll the die before or after making the ability check. The spell then ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/buff-flight-wings-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234132,"modifiedTime":1671220969889,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"PQuEgKyCdovOvhqN","name":"Etherealness","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You step into the border regions of the Ethereal Plane, in the area where it overlaps with your current plane. You remain in the Border Ethereal for the Duration or until you use your action to dismiss the spell. During this time, you can move in any direction. If you move up or down, every foot of Movement costs an extra foot. You can see and hear the plane you originated from, but everything there looks gray, and you can't see anything more than 60 feet away.While on the Ethereal Plane, you can only affect and be affected by other creatures on that plane. Creatures that aren't on the Ethereal Plane can't perceive you and can't interact with you, unless a special ability or magic has given them the ability to do so.You ignore all Objects and Effects that aren't on the Ethereal Plane, allowing you to move through objects you perceive on the plane you originated from.When the spell ends, you immediately return to the plane you originated from in the spot you currently occupy. If you occupy the same spot as a solid object or creature when this happens, you are immediately shunted to the nearest unoccupied space that you can occupy and take force damage equal to twice the number of feet you are moved.This spell has no effect if you cast it while you are on the Ethereal Plane or a plane that doesn't border it, such as one of the Outer Planes.At Higher Levels. When you cast this spell using a spell slot of 8th level or higher, you can target up to three willing creatures (including you) for each slot level above 7th. The creatures must be within 10 feet of you when you cast the spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234133,"modifiedTime":1671220969894,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Pyzmm8R7rVsNAPsd","name":"Mass Cure Wounds","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A wave of Healing energy washes out from a point of your choice within range. Choose up to six creatures in a 30-foot-radius Sphere centered on that point. Each target regains Hit Points equal to 3d8 + your Spellcasting ability modifier. This spell has no effect on Undead or constructs.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the Healing increases by 1d8 for each slot level above 5th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234134,"modifiedTime":1671220969899,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"QbQZKoXOgHWN06aa","name":"True Polymorph","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose one creature or nonmagical object that you can see within range. You transform the creature into a different creature, the creature into a nonmagical object, or the object into a creature (the object must be neither worn nor carried by another creature). The transformation lasts for the duration, or until the target drops to 0 hit points or dies. If you concentrate on this spell for the full Duration, the transformation lasts until it is dispelled.This spell has no effect on a target with 0 Hit Points. An unwilling creature can make a Wisdom saving throw, and if it succeeds, it isn't affected by this spell.Creature into Creature. If you turn a creature into another kind of creature, the new form can be any kind you choose whose challenge rating is equal to or less than the target's (or its level, if the target doesn't have a Challenge rating). The target's game statistics, including mental Ability Scores, are replaced by the statistics of the new form. It retains its Alignment and personality.The target assumes the hit points of its new form, and when it reverts to its normal form, the creature returns to the number of Hit Points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked Unconscious.The creature is limited in the Actions it can perform by the nature of its new form, and it can't speak, cast Spells, or take any other action that requires hands or speech, unless its new form is capable of such Actions.The target's gear melds into the new form. The creature can't activate, use, wield, or otherwise benefit from any of its Equipment.Object into Creature. You can turn an object into any kind of creature, as long as the creature's size is no larger than the object's size and the creature's Challenge rating is 9 or lower. The creature is friendly to you and your companions. It acts on each of your turns. You decide what action it takes and how it moves. The DM has the creature's Statistics and resolves all of its Actions and Movement.If the spell becomes permanent, you no longer control the creature. It might remain friendly to you, depending on how you have treated it.Creature into Object. If you turn a creature into an object, it transforms along with whatever it is wearing and carrying into that form. The creature's statistics become those of the object, and the creature has no memory of time spent in this form, after the spell ends and it returns to its normal form.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":9,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A drop of mercury, a dollop of gum arabic, and a wisp of smoke","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-snare-purple-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234134,"modifiedTime":1671220969904,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"QbTxN5dWIbYZ4jLU","name":"Chain Lightning","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a bolt of lightning that arcs toward a target of your choice that you can see within range. Three bolts then leap from that target to as many as three other targets, each of which must be within 30 feet of the first target. A target can be a creature or an object and can be targeted by only one of the bolts.A target must make a Dexterity saving throw. The target takes 10d8 lightning damage on a failed save, or half as much damage on a successful one.Higher Levels. When you cast this spell using a spell slot of 7th level or higher, one additional bolt leaps from the first target to another target for each slot level above 6th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d8","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":6,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of fur; a piece of amber, glass, or a crystal rod; and three silver pins","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/lightning/bolt-forked-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234136,"modifiedTime":1671220969913,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Qf6CAZkc7ms4ZY3e","name":"Goodberry","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Up to ten berries appear in your hand and are infused with magic for the duration. A creature can use its action to eat one berry. Eating a berry restores 1 hit point, and the berry provides enough nourishment to sustain a creature for one day.The berries lose their potency if they have not been consumed within 24 hours of the casting of this spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A spring of mistletoe","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234136,"modifiedTime":1671220969923,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"QvGcdRUSNRKEQJlK","name":"Stone Shape","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a stone object of Medium size or smaller or a section of stone no more than 5 feet in any dimension and form it into any shape that suits your purpose. So, for example, you could shape a large rock into a weapon, idol, or coffer, or make a small passage through a wall, as long as the wall is less than 5 feet thick. You could also shape a stone door or its frame to seal the door shut. The object you create can have up to two hinges and a latch, but finer mechanical detail isn't possible.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Soft clay, which must be worked into roughly the desired shape of the stone object","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/earth/projectile-spiked-stone-boulder-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234137,"modifiedTime":1671220969928,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ReMbjfeOKoSj3O79","name":"Stoneskin","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell turns the flesh of a willing creature you touch as hard as stone. Until the spell ends, the target has resistance to nonmagical bludgeoning, piercing, and slashing damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Diamond dust worth 100 gp, which the spell consumes","consumed":true,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","effects":[{"label":"Stoneskin","icon":"icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp","origin":"Compendium.dnd5e.spells.ReMbjfeOKoSj3O79","duration":{"startTime":null,"seconds":3600,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"disabled":true,"_id":"cSVCA9h5OEo5lfBE","changes":[{"key":"system.traits.dr.value","mode":2,"value":"bludgeoning","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"piercing","priority":null},{"key":"system.traits.dr.value","mode":2,"value":"slashing","priority":null},{"key":"system.traits.dr.bypasses","mode":2,"value":"mgc","priority":null}],"tint":null,"transfer":true,"flags":{},"sort":0}],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234137,"modifiedTime":1671220969932,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"RpKjTlYASrfqUPVA","name":"Cone of Cold","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A blast of cold air erupts from your hands. Each creature in a 60-foot cone must make a Constitution saving throw. A creature takes 8d8 cold damage on a failed save, or half as much damage on a successful one.A creature killed by this spell becomes a frozen statue until it thaws.Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d8","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small crystal or glass cone","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/water/projectiles-ice-faceted-shard-salvo-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234138,"modifiedTime":1671220969937,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"RvEqsD89Zvd5yex4","name":"Arcanist's Magic Aura","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You place an Illusion on a creature or an object you touch so that Divination Spells reveal false information about it. The target can be a willing creature or an object that isn't being carried or worn by another creature.When you cast the spell, choose one or both of the following Effects. The effect lasts for the Duration. If you cast this spell on the same creature or object every day for 30 days, placing the same effect on it each time, the illusion lasts until it is dispelled.False Aura. You change the way the target appears to Spells and magical Effects, such as Detect Magic, that detect magical auras. You can make a nonmagical object appear magical, a magical object appear nonmagical, or change the object's magical aura so that it appears to belong to a specific school of magic that you choose. When you use this effect on an object, you can make the false magic apparent to any creature that handles the item.Mask. You change the way the target appears to Spells and magical Effects that detect creature types, such as a paladin's Divine Sense or the trigger of a symbol spell. You choose a creature type and other Spells and magical Effects treat the target as if it were a creature of that type or of that Alignment.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"a small square of silk","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-magenta.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234138,"modifiedTime":1671220969942,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"S7VbUetIfVT7B6Eq","name":"Darkness","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Magical darkness spreads from a point you choose within range to fill a 15-foot-radius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and nonmagical light can't illuminate it.If the point you choose is on an object you are holding or one that isn't being worn or carried, the darkness emanates from the object and moves with it. Completely covering the source of the darkness with an opaque object, such as a bowl or a helm, blocks the darkness.If any of this spell's area overlaps with an area of light created by a spell of 2nd level or lower, the spell that created the light is dispelled.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Bat fur and a drop of pitch or piece of coal","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234139,"modifiedTime":1671220969947,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SAj03P2WBDiWu7zu","name":"Faithful Hound","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You conjure a phantom watchdog in an unoccupied space that you can see within range, where it remains for the Duration, until you dismiss it as an action, or until you move more than 100 feet away from it.The hound is Invisible to all creatures except you and can't be harmed. When a Small or larger creature comes within 30 feet of it without first speaking the password that you specify when you cast this spell, the hound starts barking loudly. The hound sees invisible creatures and can see into the Ethereal Plane. It ignores illusions.At the start of each of your turns, the hound attempts to bite one creature within 5 feet of it that is hostile to you. The hound's Attack bonus is equal to your Spellcasting ability modifier + your Proficiency Bonus. On a hit, it deals 4d8 piercing damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8","piercing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A tiny silver whistle, a piece of bone, and a thread","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/wolf-paw-glow-large-purple-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234140,"modifiedTime":1671220969974,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SLxA9QhrggTz0taU","name":"Hallow","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a point and infuse an area around it with holy (or unholy) power. The area can have a radius up to 60 feet, and the spell fails if the radius includes an area already under the effect a hallow spell. The affected area is subject to the following Effects.First, Celestials, Elementals, fey, Fiends, and Undead can't enter the area, nor can such creatures charm, frighten, or possess creatures within it. Any creature Charmed, Frightened, or possessed by such a creature is no longer charmed, frightened, or possessed upon entering the area. You can exclude one or more of those types of creatures from this effect.Second, you can bind an extra effect to the area. Choose the effect from the following list, or choose an effect offered by the DM. Some of these Effects apply to creatures in the area; you can designate whether the effect applies to all creatures, creatures that follow a specific deity or leader, or creatures of a specific sort, such as orcs or Trolls. When a creature that would be affected enters the spell's area for the first time on a turn or starts its turn there, it can make a Charisma saving throw. On a success, the creature ignores the extra effect until it leaves the area.\n\nCourage. Affected creatures can't be Frightened while in the area.\nDarkness. Darkness fills the area. Normal light, as well as magical light created by Spells of a lower level than the slot you used to cast this spell, can't illuminate the area.\nDaylight. Bright light fills the area. Magical darkness created by Spells of a lower level than the slot you used to cast this spell can't extinguish the light.\nEnergy Protection. Affected creatures in the area have Resistance to one damage type of your choice, except for bludgeoning, piercing, or slashing.\nEnergy Vulnerability. Affected creatures in the area have vulnerability to one damage type of your choice, except for bludgeoning, piercing, or slashing.\nEverlasting Rest. Dead bodies interred in the area can't be turned into Undead.\nExtradimensional Interference. Affected creatures can't move or travel using teleportation or by extradimensional or interplanar means.\nFear. Affected creatures are Frightened while in the area.\nSilence. No sound can emanate from within the area, and no sound can reach into it.\nTongues. Affected creatures can communicate with any other creature in the area, even if they don't share a Common language.\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"hour","cost":24,"condition":""},"duration":{"value":"","units":"disp"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Herbs, oils, and incense worth at least 1000gp, which the spell consumes","consumed":true,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-large-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234140,"modifiedTime":1674761585826,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SbSvZKkJASyk8jKo","name":"Druidcraft","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Whispering to the spirits of Nature, you create one of the following Effects within range:\n\nYou create a tiny, harmless sensory effect that predicts what the weather will be at your location for the next 24 hours. The effect might manifest as a golden orb for clear skies, a cloud for rain, Falling snowflakes for snow, and so on. This effect persists for 1 round.\nYou instantly make a flower blossom, a seed pod open, or a leaf bud bloom.\nYou create an Instantaneous, harmless sensory effect, such as Falling leaves, a puff of wind, the sound of a small animal, or the faint odor of skunk. The effect must fit in a 5-foot cube.\nYou instantly light or snuff out a Candle, a torch, or a small campfire.\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/vines-thorned-glow-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234141,"modifiedTime":1671220969986,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Sgjrf8qqv97CCWM4","name":"Magic Weapon","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a nonmagical weapon. Until the spell ends, that weapon becomes a magic weapon with a +1 bonus to Attack rolls and Damage Rolls.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the bonus increases to +2. When you use a spell slot of 6th level or higher, the bonus increases to +3.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/dagger-rune-enchant-flame-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234141,"modifiedTime":1671220969994,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SgrEKiC6dAtvy6Pz","name":"Instant Summons","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch an object weighing 10 pounds or less whose longest dimension is 6 feet or less. The spell leaves an Invisible mark on its surface and invisibly inscribes the name of the item on the sapphire you use as the material component. Each time you cast this spell, you must use a different sapphire.At any time thereafter, you can use your action to speak the item's name and crush the sapphire. The item instantly appears in your hand regardless of physical or planar distances, and the spell ends.If another creature is holding or carrying the item, crushing the sapphire doesn't transport the item to you, but instead you learn who the creature possessing the object is and roughly where that creature is located at that moment.Dispel Magic or a similar effect successfully applied to the sapphire ends this spell's effect.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"disp"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A sapphire worth 1000gp","consumed":false,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234142,"modifiedTime":1674761603476,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"SleYkHovQ8NagmeV","name":"Locate Object","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Describe or name an object that is familiar to you. You sense the direction to the object's location, as long as that object is within 1,000 feet of you. If the object is in motion, you know the direction of its movement.The spell can locate a specific object known to you, as long as you have seen it up close—within 30 feet—at least once. Alternatively, the spell can locate the nearest object of a particular kind, such as a certain kind of apparel, jewelry, furniture, tool, or weapon.This spell can't locate an object if any thickness of lead, even a thin sheet, blocks a direct path between you and the object.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A forked twig","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/earth/projectile-stone-boulder-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234143,"modifiedTime":1671220970003,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Szvk5FEVQW3uhJi5","name":"Haste","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a willing creature that you can see within range. Until the spell ends, the target's speed is doubled, it gains a +2 bonus to AC, it has advantage on Dexterity Saving Throws, and it gains an additional action on each of its turns. That action can be used only to take the Attack (one weapon attack only), Dash, Disengage, Hide, or Use an Object action.When the spell ends, the target can't move or take Actions until after its next turn, as a wave of lethargy sweeps over it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A shaving of licorice root","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/buff-flight-wings-runes-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234143,"modifiedTime":1671220970012,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"T1vpZLam7LezjToj","name":"Divine Word","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You utter a divine word, imbued with the power that shaped the world at the dawn of Creation. Choose any number of creatures you can see within range. Each creature that can hear you must make a Charisma saving throw. On a failed save, a creature suffers an effect based on its current hit points:\n\n50 Hit Points or fewer: Deafened for 1 minute\n40 Hit Points or fewer: Deafened and Blinded for 10 minutes\n30 Hit Points or fewer: Blinded, Deafened, and Stunned for 1 Hour\n20 Hit Points or fewer: killed instantly\n\nRegardless of its current Hit Points, a Celestial, an elemental, a fey, or a fiend that fails its save is forced back to its plane of Origin (if it isn't there already) and can't return to your current plane for 24 hours by any means short of a wish spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":7,"school":"evo","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-large-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234144,"modifiedTime":1671220970020,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"TIoadMIsUKD4edXi","name":"Astral Projection","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You and up to eight willing creatures within range project your astral bodies into the Astral Plane (the spell fails and the casting is wasted if you are already on that plane). The material body you leave behind is unconscious and in a state of suspended animation, it doesn't need food or air and doesn't age.Your astral body resembles your mortal form in almost every way, replicating your game statistics and possessions. The principal difference is the addition of a silvery cord that extends from between your shoulder blades and trails behind you, fading to invisibility after 1 foot. This cord is your tether to your material body. As long as the tether remains intact, you can find your way home. If the cord is cut-something that can happen only when an effect specifically states that it does-your soul and body are separated, killing you instantly.Your astral form can freely travel through the Astral Plane and can pass through portals there leading to any other plane. If you enter a new plane or return to the plane you were on when casting this spell, your body and possessions are transported along the silver cord, allowing you to re-enter your body as you enter the new plane. Your astral form is a separate incarnation. Any damage or other effects that apply to it have no effect on your physical body, nor do they persist when you return to it.The spell ends for you and your companions when you use your action to dismiss it. When the spell ends, the affected creature returns to its physical body, and it awakens.The spell might also end early for you or one of your companions. A successful dispel magic spell used against an astral or physical body ends the spell for that creature. If a creature's original body or its astral form drops to 0 hit points, the spell ends for that creature. If the spell ends and the silver cord is intact, the cord pulls the creature's astral form back to its body, ending its state of suspended animation.If you are returned to your body prematurely, your companions remain in their astral forms and must find their own way back to their bodies, usually by dropping to 0 hit points.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"spec"},"cover":null,"target":{"value":9,"width":null,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":9,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"For each creature you affect with this spell, you must provide one jacinth worth at least 1,000 gp and one ornately carved bar of silver worth at least 100 gp, all of which the spell consumes","consumed":true,"cost":1100,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-levitate-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234144,"modifiedTime":1671220970025,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"TfRzwEgBHHkCc6Ql","name":"Irresistible Dance","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose one creature that you can see within range. The target begins a comic dance in place: shuffling, tapping its feet, and capering for the duration. Creatures taht can't be charmed are immune to this spell.A dancing creature must use all its movement to dance without leaving its space and has disadvantage on Dexterity saving throws and attack rolls. While the target is affected by this spell, other creatures have advantage on attack rolls against it. As an action, a dancing creature makes a Wisdom saving throw to regain control of itself. On a successful save, the spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":6,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/energy-stream-link-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234145,"modifiedTime":1671220970033,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"TgHsuhNasPbhu8MO","name":"Guardian of Faith","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A Large Spectral Guardian appears and hovers for the Duration in an unoccupied space of your choice that you can see within range. The guardian occupies that space and is indistinct except for a gleaming sword and shield emblazoned with the symbol of your deity.Any creature hostile to you that moves to a space within 10 feet of the guardian for the first time on a turn must succeed on a Dexterity saving throw. The creature takes 20 radiant damage on a failed save, or half as much damage on a successful one. The guardian vanishes when it has dealt a total of 60 damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["20","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":4,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/buff-flight-wings-runes-blue-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234145,"modifiedTime":1671220970041,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"TkJ8Wtg1L7TZtspm","name":"Dispel Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Shimmering energy surrounds and protects you from fey, Undead, and creatures originating from Beyond the Material Plane. For the Duration, Celestials, Elementals, fey, Fiends, and undead have disadvantage on Attack rolls against you.You can end the spell early by using either of the following special functions.Break Enchantment. As your action, you touch a creature you can reach that is Charmed, Frightened, or possessed by a Celestial, an elemental, a fey, a fiend, or an Undead. The creature you touch is no longer charmed, frightened, or possessed by such creatures.Dismissal. As your action, make a melee spell Attack against a Celestial, an elemental, a fey, a fiend, or an Undead you can reach. On a hit, you attempt to drive the creature back to its home plane. The creature must succeed on a Charisma saving throw or be sent back to its home plane (if it isn't there already). If they aren't on their home plane, undead are sent to the Shadowfell, and fey are sent to the Feywild.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":5,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Holy water or powdered silver and iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234146,"modifiedTime":1671220970046,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"TwlD4PLcltv7Xh7j","name":"Stinking Cloud","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a 20-foot-radius sphere of yellow, nauseating gas centered on a point within range. The cloud spreads around corners, and its area is heavily obscured. The cloud lingers in the air for the duration.Each creature that is completely within the cloud at the start of its turn must make a Constitution saving throw against poison. On a failed save, the creature spends its action that turn retching and reeling. Creatures that don't need to breathe or are immune to poison automatically succeed on this saving throw.A moderate wind (at least 10 miles per hour) disperses the cloud after 4 rounds. A strong wind (at least 20 miles per hour) disperses it after 1 round.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":3,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A rotten egg or several skunk cabbage leaves","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-dense-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234146,"modifiedTime":1671220970050,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"UDUnlfPsOAbq2RSE","name":"Blur","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your body becomes blurred, shifting and wavering to all who can see you. For the duration, any creature has disadvantage on attack rolls against you. An attacker is immune to this effect if it doesn't rely on sight, as with blindsight, or can see through illusions, as with truesight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234147,"modifiedTime":1671220970071,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"UJJu9c2UvCzVljiP","name":"Web","type":"spell","img":"icons/magic/control/debuff-chains-ropes-net-white.webp","system":{"description":{"value":"You conjure a mass of thick, sticky webbing at a point of your choice within range. The webs fill a 20-foot cube from that point for the Duration. The webs are difficult terrain and lightly obscure their area.\n If the webs aren't anchored between two solid masses (such as walls or trees) or layered across a floor, wall, or ceiling, the conjured web collapses on itself, and the spell ends at the start of your next turn. Webs layered over a flat surface have a depth of 5 feet.\n Each creature that starts its turn in the webs or that enters them during its turn must make a Dexterity saving throw. On a failed save, the creature is Restrained as long as it remains in the webs or until it breaks free.\n A creature Restrained by the webs can use its action to make a Strength check against your spell save DC. If it succeeds, it is no longer Restrained.\n The webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"2d4[fire]","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":2,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of spiderweb","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234147,"modifiedTime":1671220970079,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"UfHQhA54M4323gVO","name":"Vampiric Touch","ownership":{"default":0},"type":"spell","system":{"description":{"value":"The touch of your shadow-wreathed hand can siphon life force from others to heal your wounds. Make a melee spell attack against a creature within your reach. On a hit, the target takes 3d6 necrotic damage, and you regain hit points equal to half the amount of necrotic damage dealt. Until the spell ends, you can make the attack again on each of your turns as an action.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{},"img":"icons/magic/unholy/strike-beam-blood-red-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234148,"modifiedTime":1671220970083,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Utk1OQRwYkMkFRD3","name":"Mage Hand","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.The hand can't attack, activate magic items, or carry more than 10 pounds.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/water/water-hand.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234148,"modifiedTime":1671220970087,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VtCXMdyM6mAdIJZb","name":"Death Ward","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature and grant it a measure of protection from death.The first time the target would drop to 0 hit points as a result of taking damage, the target instead drops to 1 hit point, and the spell ends.If the spell is still in effect when the target is subjected to an effect that would kill it instantaneously without dealing damage, that effect is instead negated against the target, and the spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/fear-fright-monster-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234149,"modifiedTime":1671220970092,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VzgFzcmocr1X1cp4","name":"Shillelagh","ownership":{"default":0},"type":"spell","system":{"description":{"value":"The wood of a club or quarterstaff you are holding is imbued with nature's power. For the duration, you can use your spellcasting ability instead of Strength for the attack and damage rolls of melee attacks using that weapon, and the weapon's damage die becomes a d8. The weapon also becomes magical, if it isn't already. The spell ends if you cast it again or if you let go of the weapon.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A shamrock leaf, and a club or quarterstaff","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/dagger-rune-enchant-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234149,"modifiedTime":1671220970099,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"W4Qx5z0id6da0vqg","name":"Legend Lore","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Name or describe a person, place, or object. The spell brings to your mind a brief summary of the significant lore about the thing you named. The lore might consist of current tales, forgotten stories, or even secret lore that has never been widely known. If the thing you named isn't of legendary importance, you gain no information. The more information you already have about the thing, the more precise and detailed the information you receive is.The information you learn is accurate but might be couched in figurative language. For example, if you have a mysterious magic axe on hand, the spell might yield this information: \"Woe to the evildoer whose hand touches the axe, for even the haft slices the hand of the evil ones. Only a true Child of Stone, lover and beloved of Moradin, may awaken the true powers of the axe, and only with the sacred word Rudnogg on the lips.\"","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Incense worth at least 250gp, which the spell consumes, and four ivory strips worth at least 50gp each.","consumed":true,"cost":450,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234150,"modifiedTime":1671220970103,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WN2LWEljYU6QqnRH","name":"Ice Storm","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A hail of rock-hard ice pounds to the ground in a 20-foot-radius, 40-foot-high Cylinder centered on a point within range. Each creature in the cylinder must make a Dexterity saving throw. A creature takes 2d8 bludgeoning damage and 4d6 cold damage on a failed save, or half as much damage on a successful one.Hailstones turn the storm's area of effect into difficult terrain until the end of your next turn.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the bludgeoning damage increases by 1d8 for each slot level above 4th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cylinder"},"range":{"value":300,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","bludgeoning"],["4d6","cold"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":4,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of dust and a few drops of water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/water/projectiles-ice-faceted-shard-salvo-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234152,"modifiedTime":1671220970107,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WTbOQBsarsL1LuXJ","name":"Thunderwave","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A wave of thunderous force sweeps out from you. Each creature in a 15-foot cube originating from you must make a Constitution saving throw. On a failed save, a creature takes 2d8 thunder damage and is pushed 10 feet away from you. On a successful save, the creature takes half as much damage and isn't pushed.In addition, unsecured objects that are completely within the area of effect are automatically pushed 10 feet away from you by the spell's effect, and the spell emits a thunderous boom audible out to 300 feet.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"cube"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","thunder"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/lightning/bolt-forked-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234152,"modifiedTime":1671220970113,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WahI41a3goVUg0x1","name":"Enlarge/Reduce","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You cause a creature or an object you can see within range to grow larger or smaller for the Duration. Choose either a creature or an object that is neither worn nor carried. If the target is unwilling, it can make a Constitution saving throw. On a success, the spell has no effect.If the target is a creature, everything it is wearing and carrying changes size with it. Any item dropped by an affected creature returns to normal size at once.Enlarge. The target's size doubles in all dimensions, and its weight is multiplied by eight. This growth increases its size by one category—from Medium to Large, for example. If there isn't enough room for the target to double its size, the creature or object attains the maximum possible size in the space available. Until the spell ends, the target also has advantage on Strength Checks and Strength Saving Throws. The target's Weapons also grow to match its new size. While these Weapons are enlarged, the target's attacks with them deal 1d4 extra damage.Reduce. The target's size is halved in all dimensions, and its weight is reduced to one-eighth of normal. This reduction decreases its size by one category—from Medium to Small, for example. Until the spell ends, the target also has disadvantage on Strength Checks and Strength Saving Throws. The target's Weapons also shrink to match its new size. While these Weapons are reduced, the target's attacks with them deal 1d4 less damage (this can't reduce the damage below 1).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A pinch of powdered iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/energy-stream-link-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234153,"modifiedTime":1671220970118,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Wl2vtJ4hCt2tpWfR","name":"Weird","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Drawing on the deepest fears of a group of creatures, you create illusory creatures in their minds, visible only to them. Each creature in a 30-foot-radius sphere centered on a point of your choice within range must make a Wisdom saving throw. On a failed save, a creature becomes Frightened for the Duration. The illusion calls on the creature's deepest fears, manifesting its worst nightmares as an implacable threat. At the end of each of the Frightened creature's turns, it must succeed on a Wisdom saving throw or take 4d10 psychic damage. On a successful save, the spell ends for that creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"sphere"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d10","psychic"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":9,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/fear-fright-monster-grin-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234153,"modifiedTime":1671220970122,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WmQpxfjZwF3MGUby","name":"Globe of Invulnerability","ownership":{"default":0},"type":"spell","system":{"description":{"value":"An immobile, faintly shimmering barrier springs into existence in a 10-foot radius around you and remains for the Duration.Any spell of 5th level or lower cast from outside the barrier can't affect creatures or Objects within it, even if the spell is cast using a higher level spell slot. Such a spell can target creatures and Objects within the barrier, but the spell has no effect on them. Similarly, the area within the barrier is excluded from the areas affected by such Spells.At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the barrier blocks Spells of one level higher for each slot level above 6th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A glass or crystal bead that shatters when the spell ends","consumed":true,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-pentagon-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234154,"modifiedTime":1671220970128,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WzvJ7G3cqvIubsLk","name":"Greater Restoration","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You imbue a creature you touch with positive energy to undo a debilitating effect. You can reduce the target's Exhaustion level by one, or end one of the following Effects on the target:\n\nOne effect that Charmed or Petrified the target\nOne curse, including the target's Attunement to a cursed magic item\nAny reduction to one of the target's Ability Scores\nOne effect reducing the target's hit point maximum\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"diamond dust worth at least 100gp, which the spell consumes","consumed":true,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-flame-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234154,"modifiedTime":1671220970132,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"X3DrXgxjwI2dvkD6","name":"Wall of Fire","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a wall of fire on a solid surface within range. You can make the wall up to 60 feet long, 20 feet high, and 1 foot thick, or a ringed wall up to 20 feet in diameter, 20 feet high, and 1 foot thick. The wall is opaque and lasts for the duration.When the wall appears, each creature within its area must make a Dexterity saving throw. On a failed save, a creature takes 5d8 fire damage, or half as much damage on a successful save.One side of the wall, selected by you when you cast this spell, deals 5d8 fire damage to each creature that ends its turn within 10 feet of that side or inside the wall. A creature takes the same damage when it enters the wall for the first time on a turn or ends its turn there. The other side of the wall deals no damage.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"wall"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":4,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small piece of phosphorous","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234155,"modifiedTime":1671220970136,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"X4c8xCkmF8U9HUMz","name":"Mirror Image","type":"spell","img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","system":{"description":{"value":"Three illusory duplicates of yourself appear in your space. Until the spell ends, the duplicates move with you and mimic your actions, shifting position so it's impossible to track which image is real. You can use your action to dismiss the illusory duplicates.\nEach time a creature targets you with an attack during the spell's duration, roll a [[/r 1d20 # Mirror Image Check]] to determine whether the attack instead targets one of your duplicates.\nIf you have three duplicates, you must roll a 6 or higher to change the attack's target to a duplicate. With two duplicates, you must roll an 8 or higher. With one duplicate, you must roll an 11 or higher.\nA duplicate's AC equals 10 + your Dexterity modifier. If an attack hits a duplicate, the duplicate is destroyed. A duplicate can be destroyed only by an attack that hits it. It ignores all other damage and effects. The spell ends when all three duplicates are destroyed.\nA creature is unaffected by this spell if it can't see, if it relies on senses other than sight, such as blindsight, or if it can perceive illusions as false, as with truesight.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d20","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234155,"modifiedTime":1671220970140,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"X8w9EzYLGc4vQ1H2","name":"Animal Messenger","ownership":{"default":0},"type":"spell","system":{"description":{"value":"By means of this spell, you use an animal to deliver a message. Choose a Tiny beast you can see within range, such as a squirrel, a blue jay, or a bat. You specify a location, which you must have visited, and a recipient who matches a general description, such as \"a man or woman dressed in the uniform of the town guard\" or \"a red-haired dwarf wearing a pointed hat.\" You also speak a message of up to twenty-five words. The target beast travels for the duration of the spell toward the specified location, covering about 50 miles per 24 hours for a flying messenger, or 25 miles for other animals.When the messenger arrives, it delivers your message to the creature that you described, replicating the sound of your voice. The messenger speaks only to a creature matching the description you gave. If the messenger doesn't reach its destination before the spell ends, the message is lost, and the beast makes its way back to where you cast this spell.At Higher Levels. If you cast this spell using a spell slot of 3rd level or higher, the duration of the spell increases by 48 hours for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24 + (@item.level - 2) * 48","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A morsel of food.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/wolf-paw-glow-small-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234156,"modifiedTime":1671220970145,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XT7nzJmVGgv73uaf","name":"Conjure Celestial","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You summon a celestial of challenge rating 4 or lower, which appears in an unoccupied space that you can see within range. The celestial disappears when it drops to 0 hit points or when the spell ends.The celestial is friendly to you and your companions for the duration. Roll initiative for the celestial, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you), as long as they don't violate its alignment. If you don't issue any commands to the celestial, it defends itself from hostile creatures but otherwise takes no actions.Higher Levels. When you cast this spell using a 9th-level spell slot, you summon a celestial of challenge rating 5 or lower.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234156,"modifiedTime":1671220970149,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XXUDGFELgoskdOD0","name":"Fear","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You project a phantasmal image of a creature's worst fears. Each creature in a 30-foot cone must succeed on a Wisdom saving throw or drop whatever it is holding and become Frightened for the duration.While Frightened by this spell, a creature must take the Dash action and move away from you by the safest available route on each of its turns, unless there is nowhere to move. If the creature ends its turn in a location where it doesn't have line of sight to you, the creature can make a Wisdom saving throw. On a successful save, the spell ends for that creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":3,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A white feather or the heart of a hen.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/fear-fright-monster-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234157,"modifiedTime":1671220970168,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XZhdgVK3cLoxNCQl","name":"Remove Curse","ownership":{"default":0},"type":"spell","system":{"description":{"value":"At your touch, all curses affecting one creature or object end. If the object is a cursed magic item, its curse remains, but the spell breaks its owner's Attunement to the object so it can be removed or discarded.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234157,"modifiedTime":1671220970178,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XbwGq5kDJNvAxNXV","name":"Gate","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You conjure a portal linking an unoccupied space you can see within range to a precise location on a different plane of existence. The portal is a circular opening, which you can make 5 to 20 feet in diameter. You can orient the portal in any direction you choose. The portal lasts for the Duration.The portal has a front and a back on each plane where it appears. Travel through the portal is possible only by moving through its front. Anything that does so is instantly transported to the other plane, appearing in the unoccupied space nearest to the portal.Deities and other planar rulers can prevent portals created by this spell from opening in their presence or anywhere within their domains.When you cast this spell, you can speak the name of a specific creature (a pseudonym, title, or nickname doesn't work). If that creature is on a plane other than the one you are on, the portal opens in the named creature's immediate vicinity and draws the creature through it to the nearest unoccupied space on your side of the portal. You gain no special power over the creature, and it is free to act as the DM deems appropriate. It might leave, Attack you, or help you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":9,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A diamond at least worth 5000gp","consumed":false,"cost":5000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234158,"modifiedTime":1671220970189,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XqzXSKNR75ZdYTA9","name":"Divination","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your magic and an offering put you in contact with a god or a god's servants. You ask a single question concerning a specific goal, event, or activity to occur within 7 days. The DM offers a truthful reply. The reply might be a short phrase, a cryptic rhyme, or an omen.The spell doesn't take into account any possible circumstances that might change the outcome, such as the casting of additional spells or the loss or gain of a companion.If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get a random reading. The DM makes this roll in secret.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"Incense and a sacrificial offering appropiate to your religion, together worth at least 25gp, which the spell consumes","consumed":true,"cost":25,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234159,"modifiedTime":1671220970197,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XvbiNhNqXXIFisIy","name":"Shocking Grasp","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Lightning springs from your hand to deliver a shock to a creature you try to touch. Make a melee spell attack against the target. You have advantage on the attack roll if the target is wearing armor made of metal. On a hit, the target takes 1d8 lightning damage, and it can't take reactions until the start of its next turn.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","lightning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{},"img":"icons/magic/lightning/bolt-forked-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234159,"modifiedTime":1671220970201,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"XzkJpE6XpZfKjODD","name":"True Seeing","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell gives the willing creature you touch the ability to see things as they actually are. For the duration, the creature has truesight, notices secret doors hidden by magic, and can see into the Ethereal Plane, all out to a range of 120 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"An ointment for the eyes that costs 25gp; is made from mushroom powder, saffron, and fat; and is consumed by the spell","consumed":true,"cost":25,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-large-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234160,"modifiedTime":1671220970206,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Y6oItIuhOJZ0i0FC","name":"Mass Heal","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A flood of Healing energy flows from you into injured creatures around you. You restore up to 700 Hit Points, divided as you choose among any number of creatures that you can see within range. Creatures healed by this spell are also cured of all Diseases and any effect making them Blinded or Deafened. This spell has no effect on Undead or constructs.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["700","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":9,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-flame-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234160,"modifiedTime":1671220970213,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Y7uWUO4yqUN0JKl0","name":"Forcecage","ownership":{"default":0},"type":"spell","system":{"description":{"value":"An immobile, Invisible, cube-shaped prison composed of magical force springs into existence around an area you choose within range. The prison can be a cage or a solid box, as you choose.A prison in the shape of a cage can be up to 20 feet on a side and is made from 1/2-inch diameter bars spaced 1/2 inch apart.A prison in the shape of a box can be up to 10 feet on a side, creating a solid barrier that prevents any matter from passing through it and blocking any Spells cast into or out from the area.When you cast the spell, any creature that is completely inside the cage's area is trapped. Creatures only partially within the area, or those too large to fit inside the area, are pushed away from the center of the area until they are completely outside the area.A creature inside the cage can't leave it by nonmagical means. If the creature tries to use teleportation or interplanar travel to leave the cage, it must first make a Charisma saving throw. On a success, the creature can use that magic to exit the cage. On a failure, the creature can't exit the cage and wastes the use of the spell or effect. The cage also extends into the Ethereal Plane, blocking ethereal travel.This spell can't be dispelled by Dispel Magic.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":100,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":7,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Ruby dust worth 1500gp","consumed":false,"cost":1500,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-chains-ropes-net-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234161,"modifiedTime":1671220970220,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YBda6nLKjxdT1LbS","name":"Water Walk","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell grants the ability to move across any liquid surface—such as water, acid, mud, snow, quicksand, or lava—as if it were harmless solid ground (creatures crossing molten lava can still take damage from the heat). Up to ten willing creatures you can see within range gain this ability for the duration.If you target a creature submerged in a liquid, the spell carries the target to the surface of the liquid at a rate of 60 feet per round.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A piece of cork","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/creatures/slimes/slime-movement-swirling-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234161,"modifiedTime":1671220970225,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YWtwzp6ZnQJMEmVW","name":"Plant Growth","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell channels vitality into plants within a specific area. There are two possible uses for the spell, granting either immediate or long-term benefits.If you cast this spell using 1 action, choose a point within range. All normal plants in a 100-foot radius centered on that point become thick and overgrown. A creature moving through the area must spend 4 feet of movement for every 1 foot it moves.You can exclude one or more areas of any size within the spell's area from being affected.If you cast this spell over 8 hours, you enrich the land. All plants in a half-mile radius centered on a point within range become enriched for 1 year. The plants yield twice the normal amount of food when harvested.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"radius"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-triple-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234162,"modifiedTime":1671220970228,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Z9p1vezIn95jw1Yw","name":"Eldritch Blast","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A beam of crackling energy streaks toward a creature within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 force damage.The spell creates more than one beam when you reach higher levels: two beams at 5th level, three beams at 11th level, and four beams at 17th level. You can direct the beams at the same target or at different ones. Make a separate attack roll for each beam.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d10","force"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-fireball-smoke-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234162,"modifiedTime":1671220970233,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZPd73HtKF3At11jh","name":"Control Weather","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You take control of the weather within 5 miles of you for the duration. You must be outdoors to cast this spell. Moving to a place where you don't have a clear path to the sky ends the spell early.When you cast the spell, you change the current weather conditions, which are determined by the DM based on the climate and season. You can change precipitation, temperature, and wind. It takes 1d4 x 10 minutes for the new conditions to take effect. Once they do so, you can change the conditions again. When the spell ends, the weather gradually returns to normal.When you change the weather conditions, find a current condition on the following tables and change its stage by one, up or down. When changing the wind, you can change its direction.Conditions\n\nClear\nLight clouds\nOvercast or ground fog\nRain, hail, or snow\nTorrential rain, driving hail, or blizzard\n\nTemperature\n\nUnbearable heat\nHot\nWarm\nCool\nCold\nArctic cold\n\nWind\n\nCalm\nModerate wind\nStrong wind\nGale\nStorm\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":5,"width":null,"units":"mi","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Burning incense and bits of earth and wood mixed in water.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/wind-tornado-cyclone-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234163,"modifiedTime":1671220970238,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZRqu3Xh9FmlBCZGy","name":"Eyebite","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the spell's Duration, your eyes become an inky void imbued with dread power. One creature of your choice within 60 feet of you that you can see must succeed on a Wisdom saving throw or be affected by one of the following Effects of your choice for the Duration. On each of your turns until the spell ends, you can use your action to target another creature but can't target a creature again if it has succeeded on a saving throw against this casting of eyebite.\n\nAsleep. The target falls Unconscious. It wakes up if it takes any damage or if another creature uses its action to shake the sleeper awake.\nPanicked. The target is Frightened of you. On each of its turns, the frightened creature must take the Dash action and move away from you by the safest and shortest available route, unless there is nowhere to move. If the target moves to a place at least 60 feet away from you where it can no longer see you, this effect ends.\nSickened. The target has disadvantage on Attack rolls and Ability Checks. At the end of each of its turns, it can make another Wisdom saving throw. If it succeeds, the effect ends\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":6,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-large-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234163,"modifiedTime":1671220970250,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZU9d6woBdUP8pIPt","name":"Beacon of Hope","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell bestows hope and vitality. Choose any number of creatures within range. For the duration, each target has advantage on Wisdom saving throws and death saving throws, and regains the maximum number of hit points possible from any healing.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-large-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234164,"modifiedTime":1671220970270,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZVnL9L8v1KC9TBF4","name":"Imprisonment","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a magical restraint to hold a creature that you can see within range. The target must succeed on a Wisdom saving throw or be bound by the spell; if it succeeds, it is immune to this spell if you cast it again. While affected by this spell, the creature doesn't need to breathe, eat, or drink, and it doesn't age. Divination Spells can't locate or perceive the target.When you cast the spell, you choose one of the following forms of imprisonment.Burial. The target is entombed far beneath the earth in a Sphere of magical force that is just large enough to contain the target. Nothing can pass through the sphere, nor can any creature Teleport or use Planar Travel to get into or out of it. The special component for this version of the spell is a small mithral orb.Chaining. Heavy chains, firmly rooted in the ground, hold the target in place. The target is Restrained until the spell ends, and it can't move or be moved by any means until then. The special component for this version of the spell is a fine chain of precious metal.Hedged Prison. The spell transports the target into a tiny Demiplane that is warded against teleportation and Planar Travel. The Demiplane can be a labyrinth, a cage, a tower, or any similar confined structure or area of your choice. The special component for this version of the spell is a miniature representation of the prison made from jade.Minimus Containment. The target shrinks to a height of 1 inch and is imprisoned inside a gemstone or similar object. Light can pass through the gemstone normally (allowing the target to see out and other creatures to see in), but nothing else can pass through, even by means of teleportation or Planar Travel. The gemstone can't be cut or broken while the spell remains in effect. The special component for this version of the spell is a large, transparent gemstone, such as a corundum, diamond, or ruby.Slumber. The target falls asleep and can't be awoken. The special component for this version of the spell consists of rare soporific herbs.Ending the Spell. During the casting of the spell, in any of its versions, you can specify a condition that will cause the spell to end and release the target. The condition can be as specific or as elaborate as you choose, but the DM must agree that the condition is reasonable and has a likelihood of coming to pass. The Conditions can be based on a creature's name, identity, or deity but otherwise must be based on observable Actions or qualities and not based on intangibles such as level, class, or Hit Points.A Dispel Magic spell can end the spell only if it is cast as a 9th-level spell, targeting either the prison or the special component used to create it.You can use a particular special component to create only one prison at a time. If you cast the spell again using the same component, the target of the first casting is immediately freed from its binding.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"disp"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":9,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A vellum depiction or a carved statuette in the likeness of the target, and a special component that varies according to the version of the spell you choose, worth at least 500 gp per Hit Die of the target","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-chains-ropes-net-red-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234164,"modifiedTime":1674761596278,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZrTc23tToJ0JpH2h","name":"Jump","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature. The creature's jump distance is tripled until the spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A grasshopper's hind leg","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234165,"modifiedTime":1671220970288,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"a2KJHCIbY5Mi4Dmn","name":"Arcane Hand","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a Large hand of shimmering, translucent force in an unoccupied space that you can see within range. The hand lasts for the spell's Duration, and it moves at your command, mimicking the movements of your own hand.The hand is an object that has AC 20 and Hit Points equal to your hit point maximum. If it drops to 0 Hit Points, the spell ends. It has a Strength of 26 (+8) and a Dexterity of 10 (+0). The hand doesn't fill its space.When you cast the spell and as a Bonus Action on your subsequent turns, you can move the hand up to 60 feet and then cause one of the following Effects with it.Clenched Fist. The hand strikes one creature or object within 5 feet of it. Make a melee spell Attack for the hand using your game Statistics. On a hit, the target takes 4d8 force damage.Forceful Hand. The hand attempts to push a creature within 5 feet of it in a direction you choose. Make a check with the hand's Strength contested by the Strength (Athletics) check of the target. If the target is Medium or smaller, you have advantage on the check. If you succeed, the hand pushes the target up to 5 feet plus a number of feet equal to five times your Spellcasting ability modifier. The hand moves with the target to remain within 5 feet of it.Grasping Hand. The hand attempts to grapple a Huge or smaller creature within 5 feet of it. You use the hand's Strength score to resolve the grapple. If the target is Medium or smaller, you have advantage on the check. While the hand is Grappling the target, you can use a Bonus Action to have the hand crush it. When you do so, the target takes bludgeoning damage equal to 2d6 + your Spellcasting ability modifier.Interposing Hand. The hand interposes itself between you and a creature you choose until you give the hand a different command. The hand moves to stay between you and the target, providing you with half cover against the target. The target can't move through the hand's space if its Strength score is less than or equal to the hand's Strength score. If its Strength score is higher than the hand's Strength score, the target can move toward you through the hand's space, but that space is difficult terrain for the target.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage from the clenched fist option increases by 2d8 and the damage from the grasping hand increases by 2d6 for each slot level above 5th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d8","force"]],"versatile":"2d6"},"formula":"1d20+8","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An eggshell and a snakeskin glove","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"2d8"}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-fireball-smoke-strong-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234166,"modifiedTime":1671220970294,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"a3XtAO5n2GrqiAh5","name":"Create or Destroy Water","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You either create or destroy water.Create Water. You create up to 10 gallons of clean water within range in an open container. Alternatively, the water falls as rain in a 30-foot cube within range.Destroy Water. You destroy up to 10 gallons of water in an open container within range. Alternatively, you destroy fog in a 30-foot cube within range.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you create or destroy 10 additional gallons of water, or the size of the cube increases by 5 feet, for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cube"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A drop of water if creating water or a few grains of sand if destroying it.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/wind-swirl-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234167,"modifiedTime":1671220970298,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"aL1F8fvYLtNzUbKu","name":"Speak with Animals","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You gain the ability to comprehend and verbally communicate with beasts for the duration. The knowledge and awareness of many beasts is limited by their intelligence, but at minimum, beasts can give you information about nearby locations and monsters, including whatever they can perceive or have perceived within the past day. You might be able to persuade a beast to perform a small favor for you, at the DM's discretion.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/wolf-paw-glow-small-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234167,"modifiedTime":1671220970302,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"aU62xVUBYkAQWIHv","name":"Nondetection","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the Duration, you hide a target that you touch from Divination magic. The target can be a willing creature or a place or an object no larger than 10 feet in any dimension. The target can't be targeted by any divination magic or perceived through magical Scrying sensors.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of diamond dust worth 25 gp sprinkled over the target, which the spell consumes","consumed":true,"cost":25,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234168,"modifiedTime":1671220970308,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ap4dmtshjEbwU3Ts","name":"Rope Trick","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a length of rope that is up to 60 feet long. One end of the rope then rises into the air until the whole rope hangs perpendicular to the ground. At the upper end of the rope, an invisible entrance opens to an extradimensional space that lasts until the spell ends.The extradimensional space can be reached by climbing to the top of the rope. The space can hold as many as eight Medium or smaller creatures. The rope can be pulled into the space, making the rope disappear from view outside the space.Attacks and spells can't cross through the entrance into or out of the extradimensional space, but those inside can see out of it as if through a 3-foot-by-5-foot window centered on the rope.Anything inside the extradimensional space drops out when the spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Powdered corn extract and a twisted loop of parchment","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/skills/melee/strike-blade-scimitar-gray-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234169,"modifiedTime":1671220970312,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"arzCrMRgcNiQuh43","name":"Command","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You speak a one-word command to a creature you can see within range. The target must succeed on a Wisdom saving throw or follow the command on its next turn. The spell has no effect if the target is undead, if it doesn't understand your language, or if your command is directly harmful to it.Some typical commands and their effects follow. You might issue a command other than one described here. If you do so, the DM determines how the target behaves. If the target can't follow your command, the spell ends.Approach. The target moves toward you by the shortest and most direct route, ending its turn if it moves within 5 feet of you.Drop. The target drops whatever it is holding and then ends its turn.Flee. The target spends its turn moving away from you by the fastest available means.Grovel. The target falls prone and then ends its turn.Halt. The target doesn't move and takes no actions. A flying creature stays aloft, provided that it is able to do so. If it must move to stay aloft, it flies the minimum distance needed to remain in the air.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/explosion-fireball-small-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234169,"modifiedTime":1671220970317,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"avD5XUtkBPQQR97c","name":"Fire Shield","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Thin and wispy flames wreathe your body for the Duration, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. You can end the spell early by using an action to dismiss it.\nThe flames provide you with a warm shield or a chill shield, as you choose. The warm shield grants you Resistance to cold damage, and the chill shield grants you resistance to fire damage.\nIn addition, whenever a creature within 5 feet of you hits you with a melee Attack, the shield erupts with flame. The attacker takes 2d8 fire damage from a warm shield, or 2d8 cold damage from a cold shield.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d8","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of phosphorus or a firefly","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-pentagon-red.webp","effects":[{"_id":"lVKx8swB08jm6IFE","flags":{},"changes":[{"key":"system.traits.dr.value","value":"cold","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":600,"rounds":null,"turns":null,"startRound":null,"startTurn":null,"combat":null},"icon":"icons/magic/defensive/shield-barrier-flaming-pentagon-red.webp","label":"Warm Shield","origin":"Item.OtcTsffCQaOFkr9K","tint":null,"transfer":true,"sort":0},{"_id":"UUXwEKSPX4nYfDzo","flags":{},"changes":[{"key":"system.traits.dr.value","value":"fire","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"seconds":600,"rounds":null,"turns":null,"startRound":null,"startTurn":null,"combat":null},"icon":"icons/magic/defensive/shield-barrier-flaming-pentagon-blue.webp","label":"Chill Shield","origin":"Item.OtcTsffCQaOFkr9K","tint":null,"transfer":true,"sort":0}],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234170,"modifiedTime":1671220970322,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"bA2sk9eMKBeY7EPD","name":"Programmed Illusion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create an Illusion of an object, a creature, or some other visible phenomenon within range that activates when a specific condition occurs. The illusion is imperceptible until then. It must be no larger than a 30-foot cube, and you decide when you cast the spell how the illusion behaves and what sounds it makes. This scripted Performance can last up to 5 minutes.When the condition you specify occurs, the illusion springs into existence and performs in the manner you described. Once the illusion finishes performing, it disappears and remains dormant for 10 minutes. After this time, the illusion can be activated again.The triggering condition can be as general or as detailed as you like, though it must be based on visual or audible Conditions that occur within 30 feet of the area. For example, you could create an illusion of yourself to appear and warn off others who attempt to open a trapped door, or you could set the illusion to trigger only when a creature says the correct word or phrase.Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the Illusion for what it is, the creature can see through the image, and any noise it makes sounds hollow to the creature","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"disp"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of fleece and jade dust worth at least 25gp","consumed":false,"cost":25,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-chains-ropes-net-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234170,"modifiedTime":1674761623008,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"bV3yun6MIuFj71Er","name":"Moonbeam","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A silvery beam of pale light shines down in a 5-foot-radius, 40-foot-high Cylinder centered on a point within range. Until the spell ends, dim light fills the cylinder.When a creature enters the spell's area for the first time on a turn or starts its turn there, it is engulfed in ghostly flames that cause searing pain, and it must make a Constitution saving throw. It takes 2d10 radiant damage on a failed save, or half as much damage on a successful one.A Shapechanger makes its saving throw with disadvantage. If it fails, it also instantly reverts to its original form and can't assume a different form until it leaves the spell's light.On each of your turns after you cast this spell, you can use an action to move the beam up to 60 feet in any direction.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d10 for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"cylinder"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["2d10","radiant"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Several seeds of any moonseed plant and a piece of opalescent feldspar","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d10"}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-blue-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234171,"modifiedTime":1671220970330,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"bllEWfm9xfEKynhv","name":"Mind Blank","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Until the spell ends, one willing creature you touch is immune to psychic damage, any effect that would sense its emotions or read its thoughts, Divination Spells, and the Charmed condition. The spell even foils Wish spells and Spells or Effects of similar power used to affect the target's mind or to gain information about the target.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234171,"modifiedTime":1671220970334,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"bnjXlk13ZRJuf5d0","name":"Floating Disk","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell creates a circular, horizontal plane of force, 3 feet in diameter and 1 inch thick, that floats 3 feet above the ground in an unoccupied space of your choice that you can see within range. The disk remains for the Duration, and can hold up to 500 pounds. If more weight is placed on it, the spell ends, and everything on the disk falls to the ground.The disk is immobile while you are within 20 feet of it. If you move more than 20 feet away from it, the disk follows you so that it remains within 20 feet of you. It can move across uneven terrain, up or down stairs, slopes and the like, but it can't cross an elevation change of 10 feet or more. For example, the disk can't move across a 10-foot-deep pit, nor could it leave such a pit if it was created at the bottom.If you move more than 100 feet from the disk (typically because it can't move around an obstacle to follow you), the spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A drop of mercury","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-triangle-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234172,"modifiedTime":1671220970345,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"cYI4RNNjI5GAmLhy","name":"Find the Path","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell allows you to find the shortest, most direct physical route to a specific fixed location that you are familiar with on the same plane of existence. If you name a destination on another plane of existence, a destination that moves (such as a Mobile fortress), or a destination that isn't specific (such as \"a green dragon's lair\"), the spell fails.For the Duration, as long as you are on the same plane of existence as the destination, you know how far it is and in what direction it lies. While you are traveling there, whenever you are presented with a choice of paths along the way, you automatically determine which path is the shortest and most direct route (but not necessarily the safest route) to the destination.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"day"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A set of divinatory tools—such as bones, ivory sticks, cards, teeth, or carved runes—worth 100 gp and an object from the location you wish to find","consumed":false,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234172,"modifiedTime":1671220970351,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ccduLIvutyNqvkgv","name":"Unseen Servant","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell creates an Invisible, mindless, shapeless, Medium force that performs simple tasks at your command until the spell ends. The servant springs into existence in an unoccupied space on the ground within range. It has AC 10, 1 hit point, and a Strength of 2, and it can't attack. If it drops to 0 hit points, the spell ends.Once on each of your turns as a Bonus Action, you can mentally command the servant to move up to 15 feet and interact with an object. The servant can perform simple tasks that a human servant could do, such as fetching things, cleaning, mending, folding clothes, lighting fires, serving food, and pouring wine. Once you give the command, the servant performs the task to the best of its ability until it completes the task, then waits for your next command.If you command the servant to perform a task that would move it more than 60 feet away from you, the spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A bit of string and of wood","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234174,"modifiedTime":1671220970372,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"cdrYKaFi98YWaBMw","name":"Vicious Mockery","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You unleash a string of insults laced with subtle enchantments at a creature you can see within range. If the target can hear you (though it need not understand you), it must succeed on a Wisdom saving throw or take 1d4 psychic damage and have disadvantage on the next attack roll it makes before the end of its next turn.This spell's damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4","psychic"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":0,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{},"img":"icons/skills/toxins/cup-goblet-poisoned-spilled.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234175,"modifiedTime":1671220970380,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"cg50KpBkBdPK6vPL","name":"Clairvoyance","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create an invisible sensor within range in a location familiar to you (a place you have visited or seen before) or in an obvious location that is unfamiliar to you (such as behind a door, around a corner, or in a grove of trees). The sensor remains in place for the duration, and it can't be attacked or otherwise interacted with.When you cast the spell, you choose seeing or hearing. You can use the chosen sense through the sensor as if you were in its space. As your action, you can switch between seeing and hearing.A creature that can see the sensor (such as a creature benefiting from see invisibility or truesight) sees a luminous, intangible orb about the size of your fist.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":1,"long":null,"units":"mi"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A focus worth at least 100gp, either a jeweled horn for hearing or a glass eye for seeing.","consumed":false,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234175,"modifiedTime":1671220970384,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"clwv2PWOcT822hlr","name":"Maze","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You banish a creature that you can see within range into a labyrinthine Demiplane. The target remains there for the Duration or until it escapes the maze.The target can use its action to attempt to escape. When it does so, it makes a DC 20 Intelligence check. If it succeeds, it escapes, and the spell ends (a Minotaur or Goristro demon automatically succeeds).When the spell ends, the target reappears in the space it left or, if that space is occupied, in the nearest unoccupied space.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-chains-ropes-net-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234176,"modifiedTime":1671220970388,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ctW81uiX56xZR2c5","name":"Ray of Frost","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A frigid beam of blue-white light streaks toward a creature within range. Make a ranged spell attack against the target. On a hit, it takes 1d8 cold damage, and its speed is reduced by 10 feet until the start of your next turn.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","cold"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-blue-small.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234176,"modifiedTime":1671220970399,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"czXrVRx6XYRWsHAi","name":"Giant Insect","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You transform up to ten centipedes, three spiders, five wasps, or one Scorpion within range into giant versions of their natural forms for the Duration. A centipede becomes a Giant Centipede, a Spider becomes a Giant Spider, a wasp becomes a Giant Wasp, and a Scorpion becomes a Giant Scorpion.Each creature obeys your verbal commands, and in Combat, they act on Your Turn each round. The DM has the Statistics for these creatures and resolves their Actions and Movement.A creature remains in its giant size for the Duration, until it drops to 0 Hit Points, or until you use an action to dismiss the effect on it.The DM might allow you to choose different Targets. For example, if you transform a bee, its giant version might have the same Statistics as a Giant Wasp.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"spec","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-triple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234177,"modifiedTime":1671220970408,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"d54VDyFulD9xxY7J","name":"Commune","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You contact your deity or a divine proxy and ask up to three questions that can be answered with a yes or no. You must ask your questions before the spell ends. You receive a correct answer for each question.Divine beings aren't necessarily omniscient, so you might receive \"unclear\" as an answer if a question pertains to information that lies beyond the deity's knowledge. In a case where a one-word answer could be misleading or contrary to the deity's interests, the DM might offer a short phrase as an answer instead.If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get no answer. The DM makes this roll in secret.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"Incense and a vial of holy or unholy water","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-levitate-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234177,"modifiedTime":1671220970412,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"d9MwcXi7Il3HROXd","name":"Passwall","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A passage appears at a point of your choice that you can see on a wooden, plaster, or stone surface (such as a wall, a ceiling, or a floor) within range, and lasts for the duration. You choose the opening's dimensions: up to 5 feet wide, 8 feet tall, and 20 feet deep. The passage creates no instability in a structure surrounding it.When the opening disappears, any creatures or objects still in the passage created by the spell are safely ejected to an unoccupied space nearest to the surface on which you cast the spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A pinch of sesame seeds","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234178,"modifiedTime":1671220970422,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dEfSELiY1eO3cpX9","name":"Conjure Woodland Beings","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You summon fey creatures that appear in unoccupied spaces that you can see within range. Choose one of the following options for what appears:\n\nOne fey creature of challenge rating 2 or lower\nTwo fey creatures of challenge rating 1 or lower\nFour fey creatures of challenge rating 1/2 or lower\nEight fey creatures of challenge rating 1/4 or lower\n\nA summoned creature disappears when it drops to 0 hit points or when the spell ends.The summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which have their own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions.Higher Levels. When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 6th-level slot and three times as many with an 8th-level slot.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"One holly berry per creature summoned.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-maple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234178,"modifiedTime":1671220970427,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dLJhxDfeyOsc3zsY","name":"Blade Barrier","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a vertical wall of whirling, razor-sharp blades made of magical energy. The wall appears within range and lasts for the duration. You can make a straight wall up to 100 feet long, 20 feet high, and 5 feet thick, or a ringed wall up to 60 feet in diameter, 20 feet high, and 5 feet thick. The wall provides three-quarters cover to creatures behind it, and its space is difficult terrain.When a creature enters the wall's area for the first time on a turn or starts its turn there, the creature must make a Dexterity saving throw. On a failed save, the creature takes 6d10 slashing damage. On a successful save, the creature takes half as much damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"wall"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d10","slashing"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":6,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/projectile-beams-salvo-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234179,"modifiedTime":1671220970431,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dSTu1MaPhBqPITwM","name":"Contact Other Plane","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You mentally contact a demigod, the spirit of a long-dead sage, or some other mysterious entity from another plane. Contacting this extraplanar intelligence can strain or even break your mind. When you cast this spell, make a DC 15 Intelligence saving throw. On a failure, you take 6d6 psychic damage and are insane until you finish a long rest. While insane, you can't take actions, can't understand what other creatures say, can't read, and speak only in gibberish. A greater restoration spell cast on you ends this effect.On a successful save, you can ask the entity up to five questions. You must ask your questions before the spell ends. The DM answers each question with one word, such as \"yes,\" \"no,\" \"maybe,\" \"never,\" \"irrelevant,\" or \"unclear\" (if the entity doesn't know the answer to the question). If a one-word answer would be misleading, the DM might instead offer a short phrase as an answer.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["6d6","psychic"]],"versatile":""},"formula":"","save":{"ability":"int","dc":15,"scaling":"flat"},"level":5,"school":"div","components":{"vocal":true,"somatic":false,"material":false,"ritual":true,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-levitate-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234180,"modifiedTime":1671220970436,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"da0a1t2FqaTjRZGT","name":"Freedom of Movement","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a willing creature. For the Duration, the target's Movement is unaffected by difficult terrain, and Spells and other magical Effects can neither reduce the target's speed nor cause the target to be Paralyzed or Restrained.The target can also spend 5 feet of Movement to automatically escape from nonmagical restraints, such as Manacles or a creature that has it Grappled. Finally, being Underwater imposes no penalties on the target's movement or attacks.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A leather strap, bound around the arm or a similar appendage","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/skills/melee/strike-blade-knife-white-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234180,"modifiedTime":1671220970446,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dhqBY4TvVjxVmOZd","name":"Sleet Storm","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Until the spell ends, freezing rain and sleet fall in a 20-foot-tall cylinder with a 40-foot radius centered on a point you choose within range. The area is heavily obscured, and exposed flames in the area are doused.The ground in the area is covered with slick ice, making it difficult terrain. When a creature enters the spell's area for the first time on a turn or starts its turn there, it must make a Dexterity saving throw. On a failed save, it falls Prone.If a creature is concentrating in the spell's area, the creature must make a successful Constitution saving throw against your spell save DC or lose concentration.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":40,"width":null,"units":"ft","type":"cylinder"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":3,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A pinch of dust and a few drops of water.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/water/projectile-beams-salvo-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234181,"modifiedTime":1671220970452,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dl8YwvMboBqX2OC4","name":"Resistance","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch one willing creature. Once before the spell ends, the target can roll a d4 and add the number rolled to one saving throw of its choice. It can roll the die before or after making the saving throw. The spell then ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A miniature clock","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-glowing-triangle-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234181,"modifiedTime":1671220970474,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dmvaMLFWFtv0qx0S","name":"Power Word Kill","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You utter a word of power that can compel one creature you can see within range to die instantly. If the creature you choose has 100 hit points or fewer, it dies. Otherwise, the spell has no effect.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":9,"school":"enc","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/unholy/strike-beam-blood-large-red-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234182,"modifiedTime":1671220970480,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"dp6xny4v8PDoIGjh","name":"Commune with Nature","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You briefly become one with nature and gain knowledge of the surrounding territory. In the outdoors, the spell gives you knowledge of the land within 3 miles of you. In caves and other natural underground settings, the radius is limited to 300 feet. The spell doesn't function where nature has been replaced by construction, such as in dungeons and towns.You instantly gain knowledge of up to three facts of your choice about any of the following subjects as they relate to the area:\n\nterrain and bodies of water\nprevalent plants, minerals, animals, or peoples\npowerful celestials, fey, fiends, elementals, or undead\ninfluence from other planes of existence\nbuildings\n\nFor example, you could determine the location of powerful undead in the area, the location of major sources of safe drinking water, and the location of any nearby towns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-triple-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234183,"modifiedTime":1671220970485,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eCPQuQkIabFKTl9u","name":"Produce Flame","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A flickering flame appears in your hand. The flame remains there for the Duration and harms neither you nor your Equipment. The flame sheds bright light in a 10-foot radius and dim light for an additional 10 feet. The spell ends if you dismiss it as an action or if you cast it again.You can also Attack with the flame, although doing so ends the spell. When you cast this spell, or as an action on a later turn, you can hurl the flame at a creature within 30 feet of you. Make a ranged spell Attack. On a hit, the target takes 1d8 fire damage.This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","fire"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/explosion-fireball-medium-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234183,"modifiedTime":1671220970489,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eEpy1ONlXumKS1mp","name":"Dominate Monster","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to beguile a creature that you can see within range. It must succeed on a Wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw.While the creature is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability.You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time, you can also cause the creature to use a reaction, but this requires you to use your own reaction as well.Each time the target takes damage, it makes a new Wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.At Higher Levels. When you cast this spell with a 9th-level spell slot, the duration is concentration, up to 8 hours.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"@item.level < 9 ? 1 : 8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":8,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-large-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234184,"modifiedTime":1671220970494,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eGMhwmuleAM46C6L","name":"Prismatic Spray","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Eight multicolored rays of light flash from your hand. Each ray is a different color and has a different power and purpose. Each creature in a 60-foot cone must make a Dexterity saving throw. For each target, roll a d8 to determine which color ray affects it.\n\nRed. The target takes 10d6 fire damage on a failed save, or half as much damage on a successful one.\nOrange. The target takes 10d6 acid damage on a failed save, or half as much damage on a successful one.\nYellow. The target takes 10d6 lightning damage on a failed save, or half as much damage on a successful one.\nGreen. The target takes 10d6 poison damage on a failed save, or half as much damage on a successful one.\nBlue. The target takes 10d6 cold damage on a failed save, or half as much damage on a successful one.\nIndigo. On a failed save, the target is Restrained. It must then make a Constitution saving throw at the end of each of its turns. If it successfully saves three times, the spell ends. If it fails its save three times, it permanently turns to stone and is subjected to the Petrified condition. The successes and failures don't need to be consecutive; keep track of both until the target collects three of a kind.\nViolet. On a failed save, the target is Blinded. It must then make a Wisdom saving throw at the start of your next turn. A successful save ends the blindness. If it fails that save, the creature is transported to another plane of existence of the DM's choosing and is no longer Blinded. (Typically, a creature that is on a plane that isn't its home plane is banished home, while other creatures are usually cast into the Astral or Ethereal planes.)\nSpecial. The target is struck by two rays. Roll twice more, rerolling any 8.\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cone"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d6",""]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":7,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/projectile-beams-salvo-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234184,"modifiedTime":1671220970498,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ePhRKHXRE7l1sEoQ","name":"Project Image","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create an illusory copy of yourself that lasts for the Duration. The copy can appear at any location within range that you have seen before, regardless of intervening obstacles. The Illusion looks and sounds like you but is intangible. If the illusion takes any damage, it disappears, and the spell ends.You can use your action to move this illusion up to twice your speed, and make it gesture, speak, and behave in whatever way you choose. It mimics your mannerisms perfectly.You can see through its eyes and hear through its ears as if you were in its space. On Your Turn as a Bonus Action, you can switch from using its senses to using your own, or back again. While you are using its senses, you are Blinded and Deafened in regard to your own surroundings.Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an Illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and any noise it makes sounds hollow to the creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"day"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":500,"long":null,"units":"mi"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small replica of you made from material worth at least 5gp","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/energy-stream-link-spiral-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234185,"modifiedTime":1671220970502,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eS7XnnApoxRxYXPs","name":"Charm Person","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to charm a humanoid you can see within range. It must make a Wisdom saving throw, and does so with advantage if you or your companions are fighting it. If it fails the saving throw, it is charmed by you until the spell ends or until you or your companions do anything harmful to it. The charmed creature regards you as a friendly acquaintance. When the spell ends, the creature knows it was charmed by you.\n At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/explosion-fireball-medium-purple-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234185,"modifiedTime":1671220970507,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ehvmg9U9fcMEhE4z","name":"Call Lightning","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A storm cloud appears in the shape of a cylinder that is 10 feet tall with a 60-foot radius, centered on a point you can see 100 feet directly above you. The spell fails if you can't see a point in the air where the storm cloud could appear (for example, if you are in a room that can't accommodate the cloud).When you cast the spell, choose a point you can see within range. A bolt of lightning flashes down from the cloud to that point. Each creature within 5 feet of that point must make a Dexterity saving throw. A creature takes 3d10 lightning damage on a failed save, or half as much damage on a successful one. On each of your turns until the spell ends, you can use your action to call down lightning in this way again, targeting the same point or a different one.If you are outdoors in stormy conditions when you cast this spell, the spell gives you control over the existing storm instead of creating a new one. Under such conditions, the spell's damage increases by 1d10.Higher Levels. When you cast this spell using a spell slot of 4th or higher level, the damage increases by 1d10 for each slot level above 3rd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"cylinder"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10","lightning"]],"versatile":"4d10"},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":3,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d10"}},"sort":0,"flags":{},"img":"icons/magic/lightning/bolt-forked-large-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234186,"modifiedTime":1671220970511,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ej6wyY4G1gOcb1U6","name":"Magic Jar","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your body falls into a catatonic state as your soul leaves it and enters the container you used for the spell's material component. While your soul inhabits the container, you are aware of your surroundings as if you were in the container's space. You can't move or use reactions. The only action you can take is to project your soul up to 100 feet out of the container, either returning to your living body (and ending the spell) or attempting to possess a humanoids body.You can attempt to possess any humanoid within 100 feet of you that you can see (creatures warded by a protection from evil and good or magic circle spell can't be possessed). The target must make a Charisma saving throw. On a failure, your soul moves into the target's body, and the target's soul becomes trapped in the container. On a success, the target resists your efforts to possess it, and you can't attempt to possess it again for 24 hours.Once you possess a creature's body, you control it. Your game statistics are replaced by the statistics of the creature, though you retain your alignment and your Intelligence, Wisdom, and Charisma scores. You retain the benefit of your own class features. If the target has any class levels, you can't use any of its class features.Meanwhile, the possessed creature's soul can perceive from the container using its own senses, but it can't move or take actions at all.While possessing a body, you can use your action to return from the host body to the container if it is within 100 feet of you, returning the host creature's soul to its body. If the host body dies while you're in it, the creature dies, and you must make a Charisma saving throw against your own spellcasting DC. On a success, you return to the container if it is within 100 feet of you. Otherwise, you die.If the container is destroyed or the spell ends, your soul immediately returns to your body. If your body is more than 100 feet away from you or if your body is dead when you attempt to return to it, you die. If another creature's soul is in the container when it is destroyed, the creature's soul returns to its body if the body is alive and within 100 feet. Otherwise, that creature dies.When the spell ends, the container is destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"disp"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":6,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A gem, crystal, reliquary, or some other ornamental container worth at least 500gp","consumed":false,"cost":500,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-pentagon-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234186,"modifiedTime":1674761610507,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"etgcR9wqmrhyZ0tx","name":"Grease","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Slick grease covers the ground in a 10-foot square centered on a point within range and turns it into difficult terrain for the duration.When the grease appears, each creature standing in its area must succeed on a Dexterity saving throw or fall prone. A creature that enters the area or ends its turn there must also succeed on a Dexterity saving throw or fall prone.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"square"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of pork rind or butter","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234187,"modifiedTime":1671220970520,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ew6GA8dJy2spQmFW","name":"Wind Wall","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A wall of strong wind rises from the ground at a point you choose within range. You can make the wall up to 50 feet long, 15 feet high, and 1 foot thick. You can shape the wall in any way you choose so long as it makes one continuous path along the ground. The wall lasts for the Duration.\n When the wall appears, each creature within its area must make a Strength saving throw. A creature takes 3d8 bludgeoning damage on a failed save, or half as much damage on a successful one.\n The strong wind keeps fog, smoke, and other gases at bay. Small or smaller flying creatures or objects can't pass through the wall. Loose, lightweight materials brought into the wall fly upward. Arrows, bolts, and other ordinary projectiles launched at targets behind the wall are deflected upward and automatically miss. (Boulders hurled by Giants or siege engines, and similar projectiles, are unaffected.) Creatures in gaseous form can't pass through it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":50,"width":null,"units":"ft","type":"wall"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"str","dc":null,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A tiny fan and a feather of exotic origin","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234188,"modifiedTime":1671220970525,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"f38w5rd9SgdmWc6F","name":"Mirage Arcane","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You make terrain in an area up to 1 mile square look, sound, smell, and even feel like some other sort of terrain. The terrain's general shape remains the same, however. Open fields or a road could be made to resemble a swamp, hill, crevasse, or some other difficult or impassable terrain. A pond can be made to seem like a grassy meadow, a precipice like a gentle slope, or a rock-strewn gully like a wide and smooth road.Similarly, you can alter the appearance of structures, or add them where none are present. The spell doesn't disguise, conceal, or add creatures.The Illusion includes audible, visual, tactile, and olfactory elements, so it can turn clear ground into difficult terrain (or vice versa) or otherwise impede Movement through the area. Any piece of the illusory terrain (such as a rock or stick) that is removed from the spell's area disappears immediately.Creatures with Truesight can see through the Illusion to the terrain's true form; however, all other elements of the illusion remain, so while the creature is aware of the illusion's presence, the creature can still physically interact with the illusion.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"10","units":"day"},"cover":null,"target":{"value":1,"width":null,"units":"mi","type":"square"},"range":{"value":null,"long":null,"units":"spec"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234188,"modifiedTime":1671220970529,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fVbCxFRaORalHB20","name":"Scrying","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You can see and hear a particular creature you choose that is on the same plane of existence as you. The target must make a Wisdom saving throw, which is modified by how well you know the target and the sort of physical connection you have to it. If a target knows you're casting this spell, it can fail the saving throw voluntarily if it wants to be observed.\n\n\n\nKnowledge\nSave Modifier\n\n\nSecondhand (you have heard of the target)\n+5\n\n\nFirsthand (you have met the target)\n+0\n\n\nFamiliar (you know the target well)\n-5\n\n\n\n\n\n\n\nConnection\nSave Modifier\n\n\nLikeness or picture\n-2\n\n\nPossession or garment\n-4\n\n\nBody part, lock of hair, bit of nail, or the like\n-10\n\n\n\nOn a successful save, the target isn't affected, and you can't use this spell against it again for 24 hours.On a failed save, the spell creates an Invisible sensor within 10 feet of the target. You can see and hear through the sensor as if you were there. The sensor moves with the target, remaining within 10 feet of it for the Duration. A creature that can see Invisile Objects sees the sensor as a luminous orb about the size of your fist.Instead of targeting a creature, you can choose a location you have seen before as the target of this spell. When you do, the sensor appears at that location and doesn't move.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A focus worth at least 1,000 gp, such as a crystal ball, a silver mirror, or a font filled with holy water.","consumed":false,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-large-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234189,"modifiedTime":1671220970533,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fkREcytuZ8sngWtC","name":"Planar Ally","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You beseech an otherworldly entity for aid. The being must be known to you: a god, a Primordial, a demon prince, or some other being of cosmic power. That entity sends a Celestial, an elemental, or a fiend loyal to it to aid you, making the creature appear in an unoccupied space within range. If you know a specific creature's name, you can speak that name when you cast this spell to request that creature, though you might get a different creature anyway (DM's choice).When the creature appears, it is under no Compulsion to behave in any particular way. You can ask the creature to perform a service in exchange for payment, but it isn't obliged to do so. The requested task could range from simple (fly us across the chasm, or help us fight a battle) to complex (spy on our enemies, or protect us during our foray into the dungeon). You must be able to communicate with the creature to bargain for its Services.Payment can take a variety of forms. A Celestial might require a sizable donation of gold or Magic Items to an allied Temple, while a fiend might demand a living sacrifice or a gift of Treasure. Some creatures might exchange their service for a quest undertaken by you.As a rule of thumb, a task that can be measured in minutes requires a payment worth 100 gp per minute. A task measured in hours requires 1,000 gp per hour. And a task measured in days (up to 10 days) requires 10,000 gp per day. The DM can adjust these payments based on the circumstances under which you cast the spell. If the task is aligned with the creature's ethos, the payment might be halved or even waived. Nonhazardous tasks typically require only half the suggested payment, while especially dangerous tasks might require a greater gift. Creatures rarely accept tasks that seem suicidal.After the creature completes the task, or when the agreed-upon Duration of service expires, the creature returns to its home plane after reporting back to you, if appropriate to the task and if possible. If you are unable to agree on a price for the creature's service, the creature immediately returns to its home plane.A creature enlisted to join your group counts as a member of it, receiving a full share of Experience Points awarded.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234189,"modifiedTime":1671220970537,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"fzZnVKLmBMo2f5up","name":"Wall of Ice","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a wall of ice on a solid surface within range. You can form it into a hemispherical dome or a sphere with a radius of up to 10 feet, or you can shape a flat surface made up of ten 10-foot-square panels. Each panel must be contiguous with another panel. In any form, the wall is 1 foot thick and lasts for the Duration.If the wall cuts through a creature's space when it appears, the creature within its area is pushed to one side of the wall and must make a Dexterity saving throw. On a failed save, the creature takes 10d6 cold damage, or half as much damage on a successful save.The wall is an object that can be damaged and thus breached. It has AC 12 and 30 hit points per 10-foot section, and it is vulnerable to fire damage. Reducing a 10-foot section of wall to 0 hit points destroys it and leaves behind a sheet of frigid air in the space the wall occupied. A creature moving through the sheet of frigid air for the first time on a turn must make a Constitution saving throw. That creature takes 5d6 cold damage on a failed save, or half as much damage on a successful one.At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the damage the wall deals when it appears increases by 2d6, and the damage from passing through the sheet of frigid air increases by 1d6, for each slot level above 6th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"wall"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d6","cold"]],"versatile":"5d6"},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":6,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small piece of quartz","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"2d6"}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-blue-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234190,"modifiedTime":1671220970542,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"g2u9PYfqWQAyg9OI","name":"Poison Spray","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You extend your hand toward a creature you can see within range and project a puff of noxious gas from your palm. The creature must succeed on a Constitution saving throw or take 1d12 poison damage.This spell's damage increases by 1d12 when you reach 5th level (2d12), 11th level (3d12), and 17th level (4d12).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d12","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":0,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-fireball-smoke-large-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234190,"modifiedTime":1671220970553,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Entangle","type":"spell","img":"icons/magic/nature/vines-thorned-curled-glow-green.webp","system":{"description":{"value":"Grasping weeds and vines sprout from the ground in a 20-foot square starting from a point within range. For the Duration, these Plants turn the ground in the area into difficult terrain.A creature in the area when you cast the spell must succeed on a Strength saving throw or be Restrained by the entangling Plants until the spell ends. A creature restrained by the plants can use its action to make a Strength check against your spell save DC. On a success, it frees itself.When the spell ends, the conjured Plants wilt away.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"square"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"str","dc":null,"scaling":"spell"},"level":1,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"effects":[],"flags":{},"_id":"gMrWeG8fMDPRFiVe","folder":null,"sort":0,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234191,"modifiedTime":1671220970568,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gXtzz9t1DTzJeLr4","name":"Locate Creature","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Describe or name a creature that is familiar to you. You sense the direction to the creature's location, as long as that creature is within 1,000 feet of you. If the creature is moving, you know the direction of its movement.The spell can locate a specific creature known to you, or the nearest creature of a specific kind (such as a human or a unicorn), so long as you have seen such a creature up close—within 30 feet—at least once. If the creature you described or named is in a different form, such as being under the effects of a polymorph spell, this spell doesn't locate the creature.This spell can't locate a creature if running water at least 10 feet wide blocks a direct path between you and the creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of fur from a bloodhound","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-maple-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234191,"modifiedTime":1671220970576,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ge3Saet9zPTDyaoL","name":"Heroism","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A willing creature you touch is imbued with bravery. Until the spell ends, the creature is immune to being Frightened and gains Temporary Hit Points equal to your Spellcasting ability modifier at the start of each of its turns. When the spell ends, the target loses any remaining temporary hit points from this spell.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["@mod","temphp"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234192,"modifiedTime":1671220970580,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ghXTfe7sgCbgf1Q8","name":"Detect Magic","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"div","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234192,"modifiedTime":1671220970585,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gopnZvS0c2jD5FP8","name":"Tongues","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell grants the creature you touch the ability to understand any spoken language it hears. Moreover, when the target speaks, any creature that knows at least one language and can hear the target understands what it says.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"div","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small clay model of a ziggurat","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234193,"modifiedTime":1671220970589,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"gvdA9nPuWLck4tBl","name":"Sanctuary","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You ward a creature within range against attack. Until the spell ends, any creature who targets the warded creature with an attack or a harmful spell must first make a Wisdom saving throw. On a failed save, the creature must choose a new target or lose the attack or spell. This spell doesn't protect the warded creature from area effects, such as the explosion of a Fireball.If the warded creature makes an attack or casts a spell that affects an enemy creature, this spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small silver mirror","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234193,"modifiedTime":1671220970595,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"h830iyqParFleNqR","name":"Clone","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell grows an inert duplicate of a living creature as a safeguard against death. This clone forms inside a sealed vessel and grows to full size and maturity after 120 days; you can also choose to have the clone be a younger version of the same creature. It remains inert and endures indefinitely, as long as its vessel remains undisturbed.At any time after the clone matures, if the original creature dies, its soul transfers to the clone, provided that the soul is free and willing to return. The clone is physically identical to the original and has the same personality, memories, and abilities, but none of the original's equipment. The original creature's physical remains, if they still exist, become inert and can't thereafter be restored to life, since the creature's soul is elsewhere.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A diamond worth at least 1,000 gp and at least 1 cubic inch of flesh of the creature that is to be cloned, which the spell consumes, and a vessel worth at least 2,000 gp that has a sealable lid and is large enough to hold a Medium creature, such as a huge urn, coffin, mud-filled cyst in the ground, or crystal container filled with salt water.","consumed":true,"cost":null,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234194,"modifiedTime":1671220970599,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hDOENzjuj5WpLq7B","name":"Animal Friendship","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell lets you convince a beast that you mean it no harm. Choose a beast that you can see within range. It must see and hear you. If the beast's Intelligence is 4 or higher, the spell fails. Otherwise, the beast must succeed on a Wisdom saving throw or be charmed by you for the spell's duration. If you or one of your companions harms the target, the spell ends.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional beast for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":1,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A morsel of food.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/wolf-paw-glow-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234194,"modifiedTime":1671220970603,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hJ6ZiA3fpoY8v9cp","name":"Darkvision","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a willing creature to grant it the ability to see in the dark. For the duration, that creature has darkvision out to a range of 60 feet.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Either a pinch of dried carrot or an agate","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-small-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234195,"modifiedTime":1671220970608,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hYCrN82dMJFuJODB","name":"Feeblemind","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You blast the mind of a creature that you can see within range, attempting to shatter its intellect and personality. The target takes 4d6 psychic damage and must make an Intelligence saving throw.On a failed save, the creature's Intelligence and Charisma scores become 1. The creature can't cast Spells, activate Magic Items, understand language, or communicate in any intelligible way. The creature can, however, identify its friends, follow them, and even protect them.At the end of every 30 days, the creature can repeat its saving throw against this spell. If it succeeds on its saving throw, the spell ends.The spell can also be ended by Greater Restoration, heal, or wish.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["4d6","psychic"]],"versatile":""},"formula":"","save":{"ability":"int","dc":null,"scaling":"spell"},"level":8,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A handful of clay, crystal, glass, or mineral spheres","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-large-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234195,"modifiedTime":1671220971049,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"hzK7FQya0BDjSmLE","name":"Sunburst","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Brilliant sunlight flashes in a 60-foot radius centered on a point you choose within range. Each creature in that light must make a Constitution saving throw. On a failed save, a creature takes 12d6 radiant damage and is Blinded for 1 minute. On a successful save, it takes half as much damage and isn't blinded by this spell. Undead and oozes have disadvantage on this saving throw.A creature Blinded by this spell makes another Constitution saving throw at the end of each of its turns. On a successful save, it is no longer blinded.This spell dispels any Darkness in its area that was created by a spell.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":60,"width":null,"units":"ft","type":"radius"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["12d6","radiant"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":8,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Fire and a piece of sunstone","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/explosion-fireball-large-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234209,"modifiedTime":1671220971061,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"icZokbgV1jIMpNCv","name":"Message","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You point your finger toward a creature within range and whisper a message. The target (and only the target) hears the message and can reply in a whisper that only you can hear.You can cast this spell through solid Objects if you are familiar with the target and know it is beyond the barrier. Magical silence, 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood blocks the spell. The spell doesn't have to follow a straight line and can travel freely around corners or through openings.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A short piece of copper wire","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/commodities/currency/coin-engraved-sun-smile-copper.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234210,"modifiedTime":1671220971080,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"j8NtLXOOJ3GAKF8I","name":"Protection from Energy","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, the willing creature you touch has resistance to one damage type of your choice: acid, cold, fire, lightning, or thunder.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234210,"modifiedTime":1671220971085,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"j8S49Rea8b1640Zi","name":"Holy Aura","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Divine light washes out from you and coalesces in a soft radiance in a 30-foot radius around you. Creatures of your choice in that radius when you cast this spell shed dim light in a 5-foot radius and have advantage on all Saving Throws, and other creatures have disadvantage on Attack rolls against them until the spell ends. In addition, when a fiend or an Undead hits an affected creature with a melee attack, the aura flashes with brilliant light. The attacker must succeed on a Constitution saving throw or be Blinded until the spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":8,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A tiny reliquary worth at least 1,000 gp containing a sacred relic, such as a scrap of cloth from a saint's robe or a piece of parchment from a religious text","consumed":false,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/buff-flight-wings-runes-blue-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234212,"modifiedTime":1671220971091,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"jZ6JNykRtdQ90MOo","name":"Shield of Faith","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A shimmering field appears and surrounds a creature of your choice within range, granting it a +2 bonus to AC for the duration.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small parchment with a bit of holy text written on it.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234212,"modifiedTime":1671220971097,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"jccbeBIfLrqEZnDP","name":"Simulacrum","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You shape an illusory duplicate of one beast or humanoid that is within range for the entire casting time of the spell. The duplicate is a creature, partially real and formed from ice or snow, and it can take actions and otherwise be affected as a normal creature. It appears to be the same as the original, but it has half the creature's hit point maximum and is formed without any equipment. Otherwise, the illusion uses all the statistics of the creature it duplicates.The simulacrum is friendly to you and creatures you designate. It obeys your spoken commands, moving and acting in accordance with your wishes and acting on your turn in combat. The simulacrum lacks the ability to learn or become more powerful, so it never increases its level or other abilities, nor can it regain expended spell slots.If the simulacrum is damaged, you can repair it in an alchemical laboratory, using rare herbs and minerals worth 100 gp per hit point it regains. The simulacrum lasts until it drops to 0 hit points, at which point it reverts to snow and melts instantly.If you cast this spell again, any currently active duplicates you created with this spell are instantly destroyed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"hour","cost":12,"condition":""},"duration":{"value":"","units":"disp"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Snow or ice in quantities sufficient to made a life-size copy of the duplicated creature; some hair, fingernail clippings, or other piece of that creature's body placed inside the snow or ice; and powdered ruby worth 1,500 gp, sprinkled over the duplicate and consumed by the spell","consumed":true,"cost":1500,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/energy-stream-link-spiral-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234213,"modifiedTime":1674761636359,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"jhhT9PsHy5A7EojO","name":"Resurrection","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a dead creature that has been dead for no more than a century, that didn't die of old age, and that isn't undead. If its soul is free and willing, the target returns to life with all its hit points.This spell neutralizes any poisons and cures normal diseases afflicting the creature when it died. It doesn't, however, remove magical diseases, curses, and the like; if such effects aren't removed prior to casting the spell, they afflict the target on its return to life.This spell closes all mortal wounds and restores any missing body parts.Coming back from the dead is an ordeal. The target takes a −4 penalty to all attack rolls, saving throws, and ability checks. Every time the target finishes a long rest, the penalty is reduced by 1 until it disappears.Casting this spell to restore life to a creature that has been dead for one year or longer taxes you greatly. Until you finish a long rest, you can't cast spells again, and you have disadvantage on all attack rolls, ability checks, and saving throws.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A diamond worth at least 1,000 gp, which the spell consumes","consumed":true,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-flame-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234213,"modifiedTime":1671220971105,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"jmfu8zj4zjjzUbeh","name":"Prismatic Wall","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A shimmering, multicolored plane of light forms a vertical opaque wall—up to 90 feet long, 30 feet high, and 1 inch thick—centered on a point you can see within range. Alternatively, you can shape the wall into a Sphere up to 30 feet in diameter centered on a point you choose within range. The wall remains in place for the Duration. If you position the wall so that it passes through a space occupied by a creature, the spell fails, and your action and the spell slot are wasted.The wall sheds bright light out to a range of 100 feet and dim light for an additional 100 feet. You and creatures you designate at the time you cast the spell can pass through and remain near the wall without harm. If another creature that can see the wall moves to within 20 feet of it or starts its turn there, the creature must succeed on a Constitution saving throw or become Blinded for 1 minute.The wall consists of seven layers, each with a different color. When a creature attempts to reach into or pass through the wall, it does so one layer at a time through all the wall's layers. As it passes or reaches through each layer, the creature must make a Dexterity saving throw or be affected by that layer's properties as described below.The wall can be destroyed, also one layer at a time, in order from red to violet, by means specific to each layer. Once a layer is destroyed, it remains so for the Duration of the spell. An Antimagic Field has no effect on the wall, and Dispel Magic works only against the violet layer.\n\nRed. The creature takes 10d6 fire damage on a failed save, or half as much damage on a successful one. While this layer is in place, nonmagical Ranged Attacks can't pass through the wall. The layer can be destroyed by dealing at least 25 cold damage to it.\nOrange. The creature takes 10d6 acid damage on a failed save, or half as much damage on a successful one. While this layer is in place, magical Ranged Attacks can't pass through the wall. The layer is destroyed by a strong wind.\nYellow. The creature takes 10d6 lightning damage on a failed save, or half as much damage on a successful one. This layer can be destroyed by dealing at least 60 force damage to it.\nGreen. The creature takes 10d6 poison damage on a failed save, or half as much damage on a successful one. A Passwall spell, or another spell of equal or greater level that can open a portal on a solid surface, destroys this layer.\nBlue. The creature takes 10d6 cold damage on a failed save, or half as much damage on a successful one. This layer can be destroyed by dealing at least 25 fire damage to it.\nIndigo. On a failed save, the creature is Restrained. It must then make a Constitution saving throw at the end of each of its turns. If it successfully saves three times, the spell ends. If it fails its save three times, it permanently turns to stone and is subjected to the Petrified condition. The successes and failures don't need to be consecutive; keep track of both until the creature collects three of a kind.\n\nWhile this layer is in place, Spells can't be cast through the wall. The layer is destroyed by bright light shed by a Daylight spell or a similar spell of equal or higher level.\n\n\nViolet. On a failed save, the creature is Blinded. It must then make a Wisdom saving throw at the start of your next turn. A successful save ends the blindness. If it fails that save, the creature is transported to another plane of the DM's choosing and is no longer Blinded. (Typically, a creature that is on a plane that isn't its home plane is banished home, while other creatures are usually cast into the Astral or Ethereal planes.) This layer is destroyed by a Dispel Magic spell or a similar spell of equal or higher level that can end Spells and magical Effects.\n","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":90,"width":null,"units":"ft","type":"wall"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d6",""]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":9,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/beams-rays-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234214,"modifiedTime":1671220971112,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kSPRpeIx3w3nihrF","name":"Dream","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell shapes a creature's dreams. Choose a creature known to you as the target of this spell. The target must be on the same plane of existence as you. Creatures that don't sleep, such as elves, can't be contacted by this spell. You, or a willing creature you touch, enters a trance state, acting as a messenger. While in the trance, the messenger is aware of his or her surroundings, but can't take Actions or move.If the target is asleep, the messenger appears in the target's dreams and can converse with the target as long as it remains asleep, through the Duration of the spell. The messenger can also shape The Environment of the dream, creating landscapes, Objects, and other images. The messenger can emerge from the trance at any time, ending the effect of the spell early. The target recalls the dream perfectly upon waking. If the target is awake when you cast the spell, the messenger knows it, and can either end the trance (and the spell) or wait for the target to fall asleep, at which point the messenger appears in the target's dreams.You can make the messenger appear monstrous and terrifying to the target. If you do, the messenger can deliver a message of no more than ten words and then the target must make a Wisdom saving throw. On a failed save, echoes of the phantasmal monstrosity spawn a nightmare that lasts the Duration of the target's sleep and prevents the target from gaining any benefit from that rest. In addition, when the target wakes up, it takes 3d6 psychic damage.If you have a body part, lock of hair, clipping from a nail, or similar portion of the target's body, the target makes its saving throw with disadvantage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d6","psychic"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":5,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A handful of sand, a dab of ink, and a writing quill plucked from a sleeping bird","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234214,"modifiedTime":1671220971117,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kjmjY0zlE6IEiQVL","name":"Mending","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell repairs a single break or tear in an object you touch, such as a broken chain link, two halves of a broken key, a torn cloak, or a leaking wineskin. As long as the break or tear is no larger than 1 foot in any dimension, you mend it, leaving no trace of the former damage.This spell can physically repair a magic item or construct, but the spell can't restore magic to such an object.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Two lodestones","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/wind-stream-purple-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234215,"modifiedTime":1671220971126,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"kozNy29b0X6exFhY","name":"Flesh to Stone","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to turn one creature that you can see within range into stone. If the target's body is made of flesh, the creature must make a Constitution saving throw. On a failed save, it is Restrained as its flesh begins to harden. On a successful save, the creature isn't affected.A creature Restrained by this spell must make another Constitution saving throw at the end of each of its turns. If it successfully saves against this spell three times, the spell ends. If it fails its saves three times, it is turned to stone and subjected to the Petrified condition for the Duration. The successes and failures don't need to be consecutive; keep track of both until the target collects three of a kind.If the creature is physically broken while Petrified, it suffers from similar deformities if it reverts to its original state.If you maintain your Concentration on this spell for the entire possible Duration, the creature is turned to stone until the effect is removed.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":6,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A pinch of lime, water, and earth","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/energy-stream-link-large-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234215,"modifiedTime":1671220971138,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ksaaTxIbKx2sJfia","name":"Inflict Wounds","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Make a melee spell Attack against a creature you can reach. On a hit, the target takes 3d10 necrotic damage.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d10 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"msak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d10","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d10"}},"sort":0,"flags":{},"img":"icons/magic/unholy/strike-beam-blood-red-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234216,"modifiedTime":1671220971144,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"l9Ju5KE7bbn3WpTm","name":"Hold Monster","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a creature that you can see within range. The target must succeed on a Wisdom saving throw or be Paralyzed for the Duration. This spell has no effect on Undead. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, you can target one additional creature for each slot level above 5th. The creatures must be within 30 feet of each other when you target them.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":5,"school":"enc","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A small, straight piece of iron","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-chains-ropes-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234216,"modifiedTime":1671220971148,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"lnaGnxMzpYnbw1uU","name":"Creation","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You pull wisps of shadow material from the Shadowfell to create a nonliving object of vegetable matter within 'range': soft goods, rope, wood, or something similar. You can also use this spell to create mineral objects such as stone, crystal, or metal. The object created must be no larger than a 5-foot cube, and the object must be of a form and material that you have seen before.The duration depends on the object's material. If the object is composed of multiple materials, use the shortest duration.\n\nVegetable matter - 1 day\nStone or crystal - 12 hours\nPrecious metals - 1 hour\nGems - 10 minutes\nAdamantine or mithral - 1 minute\n\nUsing any material created by this spell as another spell's material component causes that spell to fail.Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the cube increases by 5 feet for each slot level above 5th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"spec"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"cube"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A tiny piece of matter of the same type of the item you plan to create.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/vines-thorned-entwined-glow-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234217,"modifiedTime":1671220971152,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"mF52ldF79Cr7wfQo","name":"Meteor Swarm","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Blazing orbs of fire plummet to the ground at four different points you can see within range. Each creature in a 40-foot-radius sphere centered on each point you choose must make a Dexterity saving throw. The sphere spreads around corners. A creature takes 20d6 fire damage and 20d6 bludgeoning damage on a failed save, or half as much damage on a successful one. A creature in the area of more than one fiery burst is affected only once.The spell damages objects in the area and ignites flammable objects that aren't being worn or carried.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":40,"width":null,"units":"ft","type":"sphere"},"range":{"value":1,"long":null,"units":"mi"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["20d6","bludgeoning"],["20d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":9,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-meteor-salvo-heavy-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234217,"modifiedTime":1671220971165,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"mGGlcLdggHwcL7MG","name":"True Strike","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You extend your hand and point a finger at a target in range. Your magic grants you a brief insight into the target's defenses. On your next turn, you gain advantage on your first attack roll against the target, provided that this spell hasn't ended.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"div","components":{"vocal":false,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/dagger-rune-enchant-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234219,"modifiedTime":1671220971177,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"mbFw57uyfLkyiw5k","name":"Seeming","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell allows you to change the appearance of any number of creatures that you can see within range. You give each target you choose a new, illusory appearance. An unwilling target can make a Charisma saving throw, and if it succeeds, it is unaffected by this spell.The spell disguises physical appearance as well as clothing, armor, Weapons, and Equipment. You can make each creature seem 1 foot shorter or taller and appear thin, fat, or in between. You can't change a target's body type, so you must choose a form that has the same basic arrangement of limbs. Otherwise, the extent of the Illusion is up to you. The spell lasts for the Duration, unless you use your action to dismiss it sooner.The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to a creature's outfit, Objects pass through the hat, and anyone who touches it would feel nothing or would feel the creature's head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair.A creature can use its action to inspect a target and make an Intelligence (Investigation) check against your spell save DC. If it succeeds, it becomes aware that the target is disguised.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":5,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234219,"modifiedTime":1671220971181,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"mgFqi0ev8f7Ut19y","name":"Heroes' Feast","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You bring forth a great feast, including magnificent food and drink. The feast takes 1 Hour to consume and disappears at the end of that time, and the beneficial Effects don't set in until this hour is over. Up to twelve creatures can partake of the feast.A creature that partakes of the feast gains several benefits. The creature is cured of all Diseases and poison, becomes immune to poison and being Frightened, and makes all Wisdom Saving Throws with advantage. Its hit point maximum also increases by 2d10, and it gains the same number of Hit Points. These benefits last for 24 hours.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A gem-encrusted bowl worth at least 1000gp, which the spell consumes","consumed":true,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-flame-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234220,"modifiedTime":1671220971185,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"n4JDcFKe5ikzYmAc","name":"Gentle Repose","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a corpse or other remains. For the duration, the target is protected from decay and can't become undead.The spell also effectively extends the time limit on raising the target from the dead, since days spent under the influence of this spell don't count against the time limit of spells such as raise dead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"day"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"A pinch of salt and one copper piece placed on each of the corpse's eyes, which must remain there for the duration","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234221,"modifiedTime":1671220971191,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"n9pJzTDsAwQxJVRl","name":"Sacred Flame","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Flame-like radiance descends on a creature that you can see within range. The target must succeed on a Dexterity saving throw or take 1d8 radiant damage. The target gains no benefit from cover for this saving throw.The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":0,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234221,"modifiedTime":1671220971196,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nqBDWkVOfcGZt4YU","name":"Faerie Fire","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Each object in a 20-foot cube within range is outlined in blue, green, or violet light (your choice). Any creature in the area when the spell is cast is also outlined in light if it fails a Dexterity saving throw. For the duration, objects and affected creatures shed dim light in a 10-foot radius.Any attack roll against an affected creature or object has advantage if the attacker can see it, and the affected creature or object can't benefit from being invisible.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-meteor-salvo-strong-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234222,"modifiedTime":1671220971200,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"nslx2nT3p4lNkmdp","name":"Major Image","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 20-foot cube. The image appears at a spot that you can see within range and lasts for the duration. It seems completely real, including sounds, smells, and temperature appropriate to the thing depicted. You can't create sufficient heat or cold to cause damage, a sound loud enough to deal thunder damage or deafen a creature, or a smell that might sicken a creature (like a troglodyte's stench).As long as you are within range of the illusion, you can use your action to cause the image to move to any other spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking. Similarly, you can cause the illusion to make different sounds at different times, even making it carry on a conversation, for example.Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and its other sensory qualities become faint to the creature.At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the spell lasts until dispelled, without requiring your concentration.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A bit of fleece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-hold-levitate-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234222,"modifiedTime":1671220971207,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"o8Dh7fblk1d16tnO","name":"Healing Word","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature of your choice that you can see within range regains hit points equal to 1d4 + your spellcasting ability modifier. This spell has no effect on undead or constructs.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d4 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d4 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d4"}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234223,"modifiedTime":1671220971212,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"o9ZCvuD2B1OTcubb","name":"Wall of Force","ownership":{"default":0},"type":"spell","system":{"description":{"value":"An invisible wall of force springs into existence at a point you choose within range. The wall appears in any orientation you choose, as a horizontal or vertical barrier or at an angle. It can be free floating or resting on a solid surface. You can form it into a hemispherical dome or a sphere with a radius of up to 10 feet, or you can shape a flat surface made up of ten 10-foot-by-10-foot panels. Each panel must be contiguous with another panel. In any form, the wall is 1/4 inch thick. It lasts for the Duration. If the wall cuts through a creature's space when it appears, the creature is pushed to one side of the wall (your choice which side).Nothing can physically pass through the wall. It is immune to all damage and can't be dispelled by Dispel Magic. A Disintegrate spell destroys the wall instantly, however. The wall also extends into the Ethereal Plane, blocking ethereal travel through the wall.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"wall"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A pinch of powder made by crushing clear gemstone","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/beam-rays-magenta-large.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234223,"modifiedTime":1671220971223,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"oIzA2MEHwxhtQneU","name":"Minor Illusion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a sound or an image of an object within range that lasts for the duration. The illusion also ends if you dismiss it as an action or cast this spell again.If you create a sound, its volume can range from a whisper to a scream. It can be your voice, someone else's voice, a lion's roar, a beating of drums, or any other sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends.If you create an image of an object—such as a chair, muddy footprints, or a small chest—it must be no larger than a 5-foot cube. The image can't create sound, light, smell, or any other sensory effect. Physical interaction with the image reveals it to be an illusion, because things can pass through it.If a creature uses its action to examine the sound or image, the creature can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the illusion becomes faint to the creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"ft","type":"cube"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"ill","components":{"vocal":false,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A bit of fleece.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/hypnosis-mesmerism-eye.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234224,"modifiedTime":1671220971236,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ohqAIBg6de989CIo","name":"Animal Shapes","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Your magic turns others into beasts. Choose any number of willing creatures that you can see within range. You transform each target into the form of a Large or smaller beast with a challenge rating of 4 or lower. On subsequent turns, you can use your action to transform affected creatures into new forms.The transformation lasts for the duration for each target, or until the target drops to 0 hit points or dies. You can choose a different form for each target. A target's game statistics are replaced by the statistics of the chosen beast, though the target retains its alignment and Intelligence, Wisdom, and Charisma scores. The target assumes the hit points of its new form, and when it reverts to its normal form, it returns to the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked unconscious. The creature is limited in the actions it can perform by the nature of its new form, and it can't speak or cast spells.The target's gear melds into the new form. The target can't activate, wield, or otherwise benefit from any of its equipment.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/wolf-paw-glow-large-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234225,"modifiedTime":1671220971243,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"oyE5nVppa5mde5gT","name":"Animate Dead","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell creates an undead servant. Choose a pile of bones or a corpse of a Medium or Small humanoid within range. Your spell imbues the target with a foul mimicry of life, raising it as an undead creature. The target becomes a skeleton if you chose bones or a zombie if you chose a corpse (the DM has the creature's game statistics).On each of your turns, you can use a bonus action to mentally command any creature you made with this spell if the creature is within 60 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete.The creature is under your control for 24 hours, after which it stops obeying any command you've given it. To maintain control of the creature for another 24 hours, you must cast this spell on the creature again before the current 24-hour period ends. This use of the spell reasserts your control over up to four creatures you have animated with this spell, rather than animating a new one.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you animate or reassert control over two additional undead creatures for each slot level above 3rd. Each of the creatures must come from a different corpse or pile of bones.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"object"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A drop of blood, a piece of flesh, and a pinch of bone dust","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/fear-fright-monster-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234225,"modifiedTime":1671220971248,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Glyph of Warding","type":"spell","img":"icons/magic/symbols/runes-star-orange-purple.webp","system":{"description":{"value":"When you cast this spell, you inscribe a glyph that later unleashes a magical effect. You inscribe it either on a surface (such as a table or a section of floor or wall) or within an object that can be closed (such as a book, a scroll, or a treasure chest) to conceal the glyph. The glyph can cover an area no larger than 10 feet in diameter. If the surface or object is moved more than 10 feet from where you cast this spell, the glyph is broken, and the spell ends without being triggered.The glyph is nearly invisible and requires a successful Intelligence (Investigation) check against your spell save DC to be found.You decide what triggers the glyph when you cast the spell. For glyphs inscribed on a surface, the most typical triggers include touching or standing on the glyph, removing another object covering the glyph, approaching within a certain distance of the glyph, or manipulating the object on which the glyph is inscribed. For glyphs inscribed within an object, the most common triggers include opening that object, approaching within a certain distance of the object, or seeing or reading the glyph. Once a glyph is triggered, this spell ends.You can further refine the trigger so the spell activates only under certain circumstances or according to physical characteristics (such as height or weight), creature kind (for example, the ward could be set to affect aberrations or drow), or alignment. You can also set conditions for creatures that don't trigger the glyph, such as those who say a certain password.When you inscribe the glyph, choose explosive runes or a spell glyph.Explosive Runes. When triggered, the glyph erupts with magical energy in a 20-foot-radius sphere centered on the glyph. The sphere spreads around corners. Each creature in the area must make a Dexterity saving throw. A creature takes [[/r 5d8]] acid, cold, fire, lightning, or thunder damage on a failed saving throw (your choice when you create the glyph), or half as much damage on a successful one.Spell Glyph. You can store a prepared spell of 3rd level or lower in the glyph by casting it as part of creating the glyph. The spell must target a single creature or an area. The spell being stored has no immediate effect when cast in this way. When the glyph is triggered, the stored spell is cast. If the spell has a target, it targets the creature that triggered the glyph. If the spell affects an area, the area is centered on that creature. If the spell summons hostile creatures or creates harmful objects or traps, they appear as close as possible to the intruder and attack it. If the spell requires concentration, it lasts until the end of its full duration.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage of an explosive runes glyph increases by 1d8 for each slot level above 3rd. If you create a spell glyph, you can store any spell of up to the same level as the slot you use for the glyph of warding.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"dstr"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["5d8",""]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Incense and powdered diamond worth at least 200gp, which the spell consumes","consumed":true,"cost":200,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"effects":[],"sort":0,"flags":{},"_id":"pB7XVYwdGNcUG935","folder":null,"ownership":{"default":0},"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234226,"modifiedTime":1674761642481,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"pO4zGe5LmFIYqJiL","name":"Bestow Curse","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature, and that creature must succeed on a Wisdom saving throw or become cursed for the duration of the spell. When you cast this spell, choose the nature of the curse from the following options:\n\nChoose one ability score. While cursed, the target has disadvantage on ability checks and saving throws made with that ability score.\nWhile cursed, the target has disadvantage on attack rolls against you.\nWhile cursed, the target must make a Wisdom saving throw at the start of each of its turns. If it fails, it wastes its action that turn doing nothing.\nWhile the target is cursed, your attacks and spells deal an extra 1d8 necrotic damage to the target.\n\nA remove curse spell ends this effect. At the DM's option, you may choose an alternative curse effect, but it should be no more powerful than those described above. The DM has final say on such a curse's effect.At Higher Levels. If you cast this spell using a spell slot of 4th level or higher, the duration is concentration, up to 10 minutes. If you use a spell slot of 5th level or higher, the duration is 8 hours. If you use a spell slot of 7th level or higher, the duration is 24 hours. If you use a 9th level spell slot, the spell lasts until it is dispelled. Using a spell slot of 5th level or higher grants a duration that doesn't require concentration.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":3,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/buff-flight-wings-runes-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234226,"modifiedTime":1671220971284,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"pRMvmknwLf2tdMTj","name":"Pass without Trace","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A veil of shadows and Silence radiates from you, masking you and your companions from detection. For the Duration, each creature you choose within 30 feet of you (including you) has a +10 bonus to Dexterity (Stealth) checks and can't be tracked except by magical means. A creature that receives this bonus leaves behind no tracks or other traces of its passage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Ashes from a burned leaf of mistletoe and a sprig of spruce","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234227,"modifiedTime":1671220971291,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"pV04y1iXoWiom6bp","name":"Incendiary Cloud","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A swirling cloud of smoke shot through with white-hot embers appears in a 20-foot-radius Sphere centered on a point within range. The cloud spreads around corners and is heavily obscured. It lasts for the Duration or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.When the cloud appears, each creature in it must make a Dexterity saving throw. A creature takes 10d8 fire damage on a failed save, or half as much damage on a successful one. A creature must also make this saving throw when it enters the spell's area for the first time on a turn or ends its turn there.The cloud moves 10 feet directly away from you in a direction that you choose at the start of each of your turns.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["10d8","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":8,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234228,"modifiedTime":1671220971296,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"pn4SnsFDvYDiE6rC","name":"Magnificent Mansion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You conjure an extradimensional dwelling in range that lasts for the Duration. You choose where its one entrance is located. The entrance shimmers faintly and is 5 feet wide and 10 feet tall. You and any creature you designate when you cast the spell can enter the extradimensional dwelling as long as the portal remains open. You can open or close the portal if you are within 30 feet of it. While closed, the portal is Invisible.Beyond the portal is a magnificent foyer with numerous chambers beyond. The atmosphere is clean, fresh, and warm.You can create any floor plan you like, but the space can't exceed 50 cubes, each cube being 10 feet on each side. The place is furnished and decorated as you choose. It contains sufficient food to serve a nine-course banquet for up to 100 people. A staff of 100 near-transparent Servants attends all who enter. You decide the visual appearance of these Servants and their attire. They are completely obedient to your orders. Each servant can perform any task a normal human servant could perform, but they can't Attack or take any action that would directly harm another creature. Thus the Servants can fetch things, clean, mend, fold clothes, light fires, serve food, pour wine, and so on. The Servants can go anywhere in the mansion but can't leave it. Furnishings and other Objects created by this spell dissipate into smoke if removed from the mansion. When the spell ends, any creatures inside the extradimensional space are expelled into the open spaces nearest to the entrance.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":300,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A miniature portal carved from ivory, a small piece of polished marble, and a tiny silver spoon, each item worth at least 5gp","consumed":false,"cost":15,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-orange-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234228,"modifiedTime":1671220971301,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ppWAAEul0QHtm4er","name":"Detect Thoughts","ownership":{"default":0},"type":"spell","system":{"description":{"value":"For the duration, you can read the thoughts of certain creatures. When you cast the spell and as your action on each turn until the spell ends, you can focus your mind on any one creature that you can see within 30 feet of you. If the creature you choose has an Intelligence of 3 or lower or doesn't speak any language, the creature is unaffected.You initially learn the surface thoughts of the creature—what is most on its mind in that moment. As an action, you can either shift your attention to another creature's thoughts or attempt to probe deeper into the same creature's mind. If you probe deeper, the target must make a Wisdom saving throw. If it fails, you gain insight into its reasoning (if any), its emotional state, and something that looms large in its mind (such as something it worries over, loves, or hates). If it succeeds, the spell ends. Either way, the target knows that you are probing into its mind, and unless you shift your attention to another creature's thoughts, the creature can use its action on its turn to make an Intelligence check contested by your Intelligence check; if it succeeds, the spell ends.Questions verbally directed at the target creature naturally shape the course of its thoughts, so this spell is particularly effective as part of an interrogation.You can also use this spell to detect the presence of thinking creatures you can't see. When you cast the spell or as your action during the duration, you can search for thoughts within 30 feet of you. The spell can penetrate barriers, but 2 feet of rock, 2 inches of any metal other than lead, or a thin sheet of lead blocks you. You can't detect a creature with an Intelligence of 3 or lower or one that doesn't speak any language.Once you detect the presence of a creature in this way, you can read its thoughts for the rest of the duration as described above, even if you can't see it, but it must still be within range.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":2,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A copper piece","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/light/explosion-star-teal-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234229,"modifiedTime":1671220971305,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"pub0OWVEB71XQx1n","name":"Feather Fall","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose up to five falling creatures within range. A falling creature's rate of descent slows to 60 feet per round until the spell ends. If the creature lands before the spell ends, it takes no falling damage and can land on its feet, and the spell ends for that creature.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":"which you take when you or a creature within 60 feet of you falls"},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":5,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A small feather or piece of down","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/wind-swirl-pink-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234229,"modifiedTime":1671220971309,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"pxpb2eOB6bv4phAf","name":"Banishment","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to send one creature that you can see within range to another plane of existence. The target must succeed on a Charisma saving throw or be banished.If the target is native to the plane of existence you're on, you banish the target to a harmless demiplane. While there, the target is incapacitated. The target remains there until the spell ends, at which point the target reappears in the space it left or in the nearest unoccupied space if that space is occupied.If the target is native to a different plane of existence than the one you're on, the target is banished with a faint popping noise, returning to its home plane. If the spell ends before 1 minute has passed, the target reappears in the space it left or in the nearest unoccupied space if that space is occupied. Otherwise, the target doesn't return.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":4,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An item distasteful to the target","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/energy-stream-link-spiral-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234230,"modifiedTime":1671220971314,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"pybg5MNc3lkerH4Y","name":"Blight","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Necromantic energy washes over a creature of your choice that you can see within range, draining moisture and vitality from it. The target must make a Constitution saving throw. The target takes 8d8 necrotic damage on a failed save, or half as much damage on a successful one. This spell has no effect on undead or constructs.If you target a plant creature or a magical plant, it makes the saving throw with disadvantage, and the spell deals maximum damage to it.If you target a nonmagical plant that isn't a creature, such as a tree or shrub, it doesn't make a saving throw, it simply withers and dies.At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d8","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":4,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/unholy/strike-beam-blood-large-red-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234230,"modifiedTime":1671220971318,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qLeEXZDbW5y4bmLY","name":"True Resurrection","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a creature that has been dead for no longer than 200 years and that died for any reason except old age. If the creature's soul is free and willing, the creature is restored to life with all its hit points.This spell closes all wounds, neutralizes any poison, cures all diseases, and lifts any curses affecting the creature when it died. The spell replaces damaged or missing organs and limbs. If the creature was undead, it is restored to its non-undead form.The spell can even provide a new body if the original no longer exists, in which case you must speak the creature's name. The creature then appears in an unoccupied space you choose within 10 feet of you.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":9,"school":"nec","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A sprinkle of holy water and diamonds worth at least 25,000 gp, which the spell consumes","consumed":true,"cost":25000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-flame-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234231,"modifiedTime":1671220971322,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"qcYitWoSMTnKkzM1","name":"Heal","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose a creature that you can see within range. A surge of positive energy washes through the creature, causing it to regain 70 Hit Points. This spell also ends blindness, deafness, and any Diseases affecting the target. This spell has no effect on constructs or Undead.At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the amount of Healing increases by 10 for each slot level above 6th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["70","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"10"}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-flame-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234231,"modifiedTime":1671220971327,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"r3243JU4AyQJyfX4","name":"Modify Memory","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You attempt to reshape another creature's memories. One creature that you can see must make a Wisdom saving throw. If you are fighting the creature, it has advantage on the saving throw. On a failed save, the target becomes Charmed by you for the Duration. The charmed target is Incapacitated and unaware of its surroundings, though it can still hear you. If it takes any damage or is targeted by another spell, this spell ends, and none of the target's memories are modified.While this charm lasts, you can affect the target's memory of an event that it experienced within the last 24 hours and that lasted no more than 10 minutes. You can permanently eliminate all memory of the event, allow the target to recall the event with perfect clarity and exacting detail, change its memory of the details of the event, or create a memory of some other event.You must speak to the target to describe how its memories are affected, and it must be able to understand your language for the modified memories to take root. Its mind fills in any gaps in the details of your description. If the spell ends before you have finished describing the modified memories, the creature's memory isn't altered. Otherwise, the modified memories take hold when the spell ends.A modified memory doesn't necessarily affect how a creature behaves, particularly if the memory contradicts the creature's natural inclinations, Alignment, or beliefs. An illogical modified memory, such as implanting a memory of how much the creature enjoyed dousing itself in acid, is dismissed, perhaps as a bad dream. The DM might deem a modified memory too nonsensical to affect a creature in a significant manner.A Remove Curse or Greater Restoration spell cast on the target restores the creature's true memory.At Higher Levels. If you cast this spell using a spell slot of 6th level or higher, you can alter the target's memories of an event that took place up to 7 days ago (6th level), 30 days ago (7th level), 1 year ago (8th level), or any time in the creature's past (9th level).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":5,"school":"enc","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-large-teal-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234232,"modifiedTime":1671220971331,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"s7nXgot5gGZVcMrv","name":"Transport via Plants","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell creates a magical link between a Large or larger inanimate plant within range and another plant, at any distance, on the same plane of existence. You must have seen or touched the destination plant at least once before. For the Duration, any creature can step into the target plant and exit from the destination plant by using 5 feet of Movement.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":2,"width":null,"units":"spec","type":"object"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/leaf-glow-maple-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234233,"modifiedTime":1671220971335,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"sTIkQK7KuQNOyY0C","name":"Hallucinatory Terrain","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You make natural terrain in a 150-foot cube in range look, sound, and smell like some other sort of natural terrain. Thus, open fields or a road can be made to resemble a swamp, hill, crevasse, or some other difficult or impassable terrain. A pond can be made to seem like a grassy meadow, a precipice like a gentle slope, or a rock-strewn gully like a wide and smooth road. Manufactured structures, Equipment, and creatures within the area aren't changed in appearance.The tactile characteristics of the terrain are unchanged, so creatures entering the area are likely to see through the Illusion. If the difference isn't obvious by touch, a creature carefully examining the Illusion can attempt an Intelligence (Investigation) check against your spell save DC to disbelieve it. A creature who discerns the Illusion for what it is, sees it as a vague image superimposed on the terrain.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":150,"width":null,"units":"ft","type":"cube"},"range":{"value":300,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"ill","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A stone, a twig, and a bit of green plant","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-teal-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234233,"modifiedTime":1671220971340,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"tEpDmYZNGc9f5OhJ","name":"Greater Invisibility","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You or a creature you touch becomes Invisible until the spell ends. Anything the target is wearing or carrying is Invisible as long as it is on the target's person.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":4,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-swirling-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234234,"modifiedTime":1671220971344,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"tMH6Ivn4GmE1naMj","name":"Harm","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You unleash a virulent disease on a creature that you can see within range. The target must make a Constitution saving throw. On a failed save, it takes 14d6 necrotic damage, or half as much damage on a successful save. The damage can't reduce the target's Hit Points below 1. If the target fails the saving throw, its hit point maximum is reduced for 1 Hour by an amount equal to the necrotic damage it took. Any effect that removes a disease allows a creature's hit point maximum to return to normal before that time passes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["14d6","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":6,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/unholy/strike-beam-blood-large-red-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234234,"modifiedTime":1671220971347,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"uAwtVZkiSTyP6ORB","name":"Telepathic Bond","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You forge a telepathic link among up to eight willing creatures of your choice within range, psychically linking each creature to all the others for the duration. Creatures with Intelligence scores of 2 or less aren't affected by this spell.Until the spell ends, the targets can communicate telepathically through the bond whether or not they have a common language. The communication is possible over any distance, though it can't extend to other planes of existence.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":8,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"div","components":{"vocal":true,"somatic":true,"material":true,"ritual":true,"concentration":false},"materials":{"value":"Pieces of eggshell from two different kinds of creatures","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/energy-stream-link-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234235,"modifiedTime":1671220971351,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"uCud2s4TjMfjiXUb","name":"Spirit Guardians","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You call forth spirits to protect you. They flit around you to a distance of 15 feet for the duration. If you are good or neutral, their spectral form appears angelic or fey (your choice). If you are evil, they appear fiendish.When you cast this spell, you can designate any number of creatures you can see to be unaffected by it. An affected creature's speed is halved in the area, and when the creature enters the area for the first time on a turn or starts its turn there, it must make a Wisdom saving throw. On a failed save, the creature takes 3d8 radiant damage (if you are good or neutral) or 3d8 necrotic damage (if you are evil). On a successful save, the creature takes half as much damage.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":15,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":3,"school":"con","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A holy symbol","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/light/projectile-bolts-salvo-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234235,"modifiedTime":1671220971355,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"uUWb1wZgtMou0TVP","name":"Cure Wounds","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A creature you touch regains a number of hit points equal to 1d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d8 for each slot level above 1st.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"heal","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"evo","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234236,"modifiedTime":1671220971372,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"udsLtG0BugXHR2JQ","name":"Prestidigitation","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell is a minor magical trick that novice spellcasters use for practice. You create one of the following magical effects within range:\n\nYou create an instantaneous, harmless sensory effect, such as a shower of sparks, a puff of wind, faint musical notes, or an odd odor.\nYou instantaneously light or snuff out a candle, a torch, or a small campfire.\nYou instantaneously clean or soil an object no larger than 1 cubic foot.\nYou chill, warm, or flavor up to 1 cubic foot of nonliving material for 1 hour.\nYou make a color, a small mark, or a symbol appear on an object or a surface for 1 hour.\nYou create a nonmagical trinket or an illusory image that can fit in your hand and that lasts until the end of your next turn.\n\nIf you cast this spell multiple times, you can have up to three of its non-instantaneous effects active at a time, and you can dismiss such an effect as an action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/fire/explosion-fireball-small-purple-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234236,"modifiedTime":1671220971378,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"vrN18tbTw7io5MWd","name":"Chill Touch","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a ghostly, skeletal hand in the space of a creature within range. Make a ranged spell attack against the creature to assail it with the chill of the grave. On a hit, the target takes 1d8 Necrotic damage, and it can't regain hit points until the start of your next turn. Until then, the hand clings to the target.If you hit an undead target, it also has disadvantage on attack rolls against you until the end of your next turn.This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"rsak","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["1d8","necrotic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":0,"school":"nec","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"cantrip","formula":""}},"sort":0,"flags":{},"img":"icons/magic/water/projectile-ice-faceted-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234237,"modifiedTime":1671220971381,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"wJKpSvSTbSkTjqyb","name":"Shatter","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A sudden loud ringing noise, painfully intense, erupts from a point of your choice within range. Each creature in a 10-foot-radius sphere centered on that point must make a Constitution saving throw. A creature takes 3d8 thunder damage on a failed save, or half as much damage on a successful one. A creature made of inorganic material such as stone, crystal, or metal has disadvantage on this saving throw.A nonmagical object that isn't being worn or carried also takes the damage if it's in the spell's area.Higher Levels. When you cast this spell using a 3 or higher level spell slot, the damage of the spell increases by 1d8 for each level of higher spell slot 2.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"sphere"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["3d8","thunder"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":2,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A chip of mica","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d8"}},"sort":0,"flags":{},"img":"icons/magic/fire/explosion-fireball-medium-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234237,"modifiedTime":1671220971385,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"wXzkqpeFP8eWgJzK","name":"Antilife Shell","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A shimmering barrier extends out from you in a 10-foot radius and moves with you, remaining centered on you and hedging out creatures other than undead and constructs. The barrier lasts for the duration.The barrier prevents an affected creature from passing or reaching through. An affected creature can cast spells or make attacks with ranged or reach weapons through the barrier.If you move so that an affected creature is forced to pass through the barrier, the spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-teal.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234237,"modifiedTime":1671220971397,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"wpx42mtoZ5BmXRs1","name":"Phantom Steed","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A Large quasi-real, horselike creature appears on the ground in an unoccupied space of your choice within range. You decide the creature's appearance, but it is equipped with a saddle, bit, and bridle. Any of the equipment created by the spell vanishes in a puff of smoke if it is carried more than 10 feet away from the steed.For the duration, you or a creature you choose can ride the steed. The creature uses the statistics for a riding horse, except it has a speed of 100 feet and can travel 10 miles in an hour, or 13 miles at a fast pace. When the spell ends, the steed gradually fades, giving the rider 1 minute to dismount. The spell ends if you use an action to dismiss it or if the steed takes any damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"ill","components":{"vocal":true,"somatic":true,"material":false,"ritual":true,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/nature/wolf-paw-glow-teal-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234238,"modifiedTime":1671220971403,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"wqfAVANuQonNBgnL","name":"Misty Step","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Briefly surrounded by silvery mist, you teleport up to 30 feet to an unoccupied space that you can see.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":30,"width":null,"units":"ft","type":"space"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":2,"school":"con","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-energy-snare-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234238,"modifiedTime":1671220971408,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"wvLbtemkH8gyBpdc","name":"Sequester","ownership":{"default":0},"type":"spell","system":{"description":{"value":"By means of this spell, a willing creature or an object can be hidden away, safe from detection for the Duration. When you cast the spell and touch the target, it becomes Invisible and can't be targeted by divination spells or perceived through Scrying sensors created by Divination Spells.If the target is a creature, it falls into a state of suspended animation. Time ceases to flow for it, and it doesn't grow older.You can set a condition for the spell to end early. The condition can be anything you choose, but it must occur or be visible within 1 mile of the target. Examples include \"after 1,000 years\" or \"when the Tarrasque awakens.\" This spell also ends if the target takes any damage.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"disp"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":7,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A powder composed of diamond, emerald, ruby, and sapphire dust worth at least 5,000 gp, which the spell consumes","consumed":true,"cost":5000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/debuff-chains-ropes-purple.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.2.0","coreVersion":"10.291","createdTime":1661787234239,"modifiedTime":1674761629775,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"x5JNBSyIBBZsjcGT","name":"Earthquake","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a seismic disturbance at a point on the ground that you can see within range. For the Duration, an intense tremor rips through the ground in a 100-foot-radius circle centered on that point and shakes creatures and structures in contact with the ground in that area.The ground in the area becomes difficult terrain. Each creature on the ground that is concentrating must make a Constitution saving throw. On a failed save, the creature's Concentration is broken.When you cast this spell and at the end of each turn you spend concentrating on it, each creature on the ground in the area must make a Dexterity saving throw. On a failed save, the creature is knocked prone.This spell can have additional Effects depending on the terrain in the area, as determined by the DM.Fissures. Fissures open throughout the spell's area at the start of your next turn after you cast the spell. A total of 1d6 such fissures open in locations chosen by the DM. Each is 1d10 × 10 feet deep, 10 feet wide, and extends from one edge of the spell's area to the opposite side. A creature standing on a spot where a fissure opens must succeed on a Dexterity saving throw or fall in. A creature that successfully saves moves with the fissure's edge as it opens.A fissure that opens beneath a structure causes it to automatically collapse (see below).Structures. The tremor deals 50 bludgeoning damage to any structure in contact with the ground in the area when you cast the spell and at the start of each of your turns until the spell ends. If a structure drops to 0 Hit Points, it collapses and potentially damages nearby creatures. A creature within half the distance of a structure's height must make a Dexterity saving throw. On a failed save, the creature takes 5d6 bludgeoning damage, is knocked prone, and is buried in the rubble, requiring a DC 20 Strength (Athletics) check as an action to escape. The DM can adjust the DC higher or lower, depending on the Nature of the rubble. On a successful save, the creature takes half as much damage and doesn't fall prone or become buried.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":100,"width":null,"units":"ft","type":"radius"},"range":{"value":500,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":8,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A pinch of dirt, a piece of rock, and a lump of clay","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/earth/projectile-spiked-stone-boulder-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234239,"modifiedTime":1671220971418,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xNM9CzQQr2CieM4B","name":"Demiplane","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a shadowy door on a flat solid surface that you can see within range. The door is large enough to allow Medium creatures to pass through unhindered. When opened, the door leads to a demiplane that appears to be an empty room 30 feet in each dimension, made of wood or stone. When the spell ends, the door disappears, and any creatures or objects inside the demiplane remain trapped there, as the door also disappears from the other side.Each time you cast this spell, you can create a new demiplane, or have the shadowy door connect to a demiplane you created with a previous casting of this spell. Additionally, if you know the nature and contents of a demiplane created by a casting of this spell by another creature, you can have the shadowy door connect to its demiplane instead.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":8,"school":"con","components":{"vocal":false,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234240,"modifiedTime":1671220971422,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"xmDBqZhRVrtLP8h2","name":"Protection from Evil and Good","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Until the spell ends, one willing creature you touch is protected against certain types of creatures: aberrations, celestials, elementals, fey, fiends, and undead.The protection grants several benefits. Creatures of those types have disadvantage on attack rolls against the target. The target also can't be charmed, frightened, or possessed by them. If the target is already charmed, frightened, or possessed by such a creature, the target has advantage on any new saving throw against the relevant effect.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"Holy water or powdered silver and iron, which the spell consumes","consumed":true,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/defensive/shield-barrier-flaming-diamond-blue-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234240,"modifiedTime":1671220971426,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"y8A4HfTwd93ypdEz","name":"Magic Circle","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a 10-foot-radius, 20-foot-tall Cylinder of magical energy centered on a point on the ground that you can see within range. Glowing runes appear wherever the cylinder intersects with the floor or other surface.Choose one or more of the following types of creatures: Celestials, Elementals, fey, Fiends, or Undead. The circle affects a creature of the chosen type in the following ways:\n\nThe creature can't willingly enter the cylinder by nonmagical means. If the creature tries to use teleportation or interplanar travel to do so, it must first succeed on a Charisma saving throw.\nThe creature has disadvantage on Attack rolls against Targets within the Cylinder.\nTargets within the cylinder can't be Charmed, Frightened, or possessed by the creature.\n\nWhen you cast this spell, you can elect to cause its magic to operate in the reverse direction, preventing a creature of the specified type from leaving the cylinder and protecting targets outside it.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the Duration increases by 1 Hour for each slot level above 3rd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"@item.level - 2","units":"hour"},"cover":null,"target":{"value":10,"width":null,"units":"ft","type":"cylinder"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"cha","dc":null,"scaling":"spell"},"level":3,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Holy water or powdered silver and iron worth at least 100gp, which the spell consumes","consumed":true,"cost":100,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234241,"modifiedTime":1671220971432,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"yI0XWIgI0IGGsR3R","name":"Move Earth","ownership":{"default":0},"type":"spell","system":{"description":{"value":"Choose an area of terrain no larger than 40 feet on a side within range. You can reshape dirt, sand, or clay in the area in any manner you choose for the Duration. You can raise or lower the area's elevation, create or fill in a trench, erect or flatten a wall, or form a pillar. The extent of any such changes can't exceed half the area's largest dimension. So, if you affect a 40-foot square, you can create a pillar up to 20 feet high, raise or lower the square's elevation by up to 20 feet, dig a trench up to 20 feet deep, and so on. It takes 10 minutes for these changes to complete.At the end of every 10 minutes you spend concentrating on the spell, you can choose a new area of terrain to affect.Because the terrain's transformation occurs slowly, creatures in the area can't usually be trapped or injured by the ground's Movement.This spell can't manipulate natural stone or stone construction. Rocks and structures shift to accommodate the new terrain. If the way you shape the terrain would make a structure unstable, it might collapse.Similarly, this spell doesn't directly affect Plant Growth. The moved earth carries any Plants along with it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"2","units":"hour"},"cover":null,"target":{"value":40,"width":null,"units":"ft","type":"square"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"An iron blade and a small bag containing a mixture of soils- clay, loam, and sand","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/earth/projectile-spiked-stone-boulder-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234241,"modifiedTime":1671220971444,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"yN3XZZujhR4aVvPa","name":"Conjure Fey","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You summon a fey creature of challenge rating 6 or lower, or a fey spirit that takes the form of a beast of challenge rating 6 or lower. It appears in an unoccupied space that you can see within range. The fey creature disappears when it drops to 0 hit points or when the spell ends.The fey creature is friendly to you and your companions for the duration. Roll initiative for the creature, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you), as long as they don't violate its alignment. If you don't issue any commands to the fey creature, it defends itself from hostile creatures but otherwise takes no actions.If your concentration is broken, the fey creature doesn't disappear. Instead, you lose control of the fey creature, it becomes hostile toward you and your companions, and it might attack. An uncontrolled fey creature can't be dismissed by you, and it disappears 1 hour after you summoned it.Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the challenge rating increases by 1 for each slot level above 6th.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":"1","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"any","type":"space"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"con","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234242,"modifiedTime":1671220971450,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"yfbK8gZqESlaoY5t","name":"Fly","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a willing creature. The target gains a flying speed of 60 feet for the Duration. When the spell ends, the target falls if it is still aloft, unless it can stop the fall.At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A wing feather from any bird","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/control/energy-stream-link-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234243,"modifiedTime":1671220971464,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"yqUDoxk4x0NWG5Bz","name":"Slow","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You alter time around up to six creatures of your choice in a 40-foot cube within range. Each target must succeed on a Wisdom saving throw or be affected by this spell for the duration.An affected target's speed is halved, it takes a -2 penalty to AC and Dexterity saving throws, and it can't use reactions. On its turn, it can use either an action or a bonus action, not both. Regardless of the creature's abilities or magic items, it can't make more than one melee or ranged attack during its turn.If the creature attempts to cast a spell with a casting time of 1 action, roll a d20. On an 11 or higher, the spell doesn't take effect until the creature's next turn, and the creature must use its action on that turn to complete the spell. If it can't, the spell is wasted.A creature affected by this spell makes another Wisdom saving throw at the end of its turn. On a successful save, the effect ends for it.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":40,"width":null,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d20","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":3,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A drop of molasses.","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/fog-gas-smoke-dense-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234243,"modifiedTime":1671220971484,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"yw0tYQkOMCgKZ8Ur","name":"Guards and Wards","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You create a ward that protects up to 2,500 square feet of floor space (an area 50 feet square, or one hundred 5-foot squares or twenty-five 10-foot squares). The warded area can be up to 20 feet tall, and shaped as you desire. You can ward several stories of a stronghold by dividing the area among them, as long as you can walk into each contiguous area while you are casting the spell.When you cast this spell, you can specify individuals that are unaffected by any or all of the Effects that you choose. You can also specify a password that, when spoken aloud, makes the speaker immune to these Effects.Guards and wards creates the following Effects within the warded area.Corridors. Fog fills all the warded corridors, making them heavily obscured. In addition, at each intersection or branching passage offering a choice of direction, there is a 50 percent chance that a creature other than you will believe it is going in the opposite direction from the one it chooses.Doors. All doors in the warded area are magically locked, as if sealed by an Arcane Lock spell. In addition, you can cover up to ten doors with an Illusion (equivalent to the illusory object function of the Minor Illusion spell) to make them appear as plain sections of wall.Stairs. Webs fill all stairs in the warded area from top to bottom, as the web spell. These strands regrow in 10 minutes if they are burned or torn away while guards and wards lasts.Other Spell Effect. You can place your choice of one of the following magical Effects within the warded area of the stronghold.\n\nPlace Dancing Lights in four corridors. You can designate a simple program that the lights repeat as long as guards and wards lasts.\nPlace Magic Mouth in two locations.\nPlace Stinking Cloud in two locations. The vapors appear in the places you designate; they return within 10 minutes if dispersed by wind while guards and wards lasts.\nPlace a constant Gust of Wind in one corridor or room.\nPlace a Suggestion in one location. You select an area of up to 5 feet square, and any creature that enters or passes through the area receives the Suggestion mentally.\n\nThe whole warded area radiates magic. A Dispel Magic cast on a specific effect, if successful, removes only that effect.You can create a permanently guarded and warded structure by casting this spell there every day for one year.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"minute","cost":10,"condition":""},"duration":{"value":"24","units":"hour"},"cover":null,"target":{"value":null,"width":null,"units":"","type":""},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":6,"school":"abj","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Burning incense, a small measure of brimstone and oil, a knotted string, a small amount of umber hulk blood, and a small silver rod worth at least 10gp","consumed":false,"cost":10,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/symbols/runes-star-pentagon-magenta.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234244,"modifiedTime":1671220971489,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"z1mx84ONwkXKUZd7","name":"Shield","type":"spell","img":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","system":{"description":{"value":"An invisible barrier of magical force appears and protects you. Until the start of your next turn, you have a +5 bonus to AC, including against the triggering attack, and you take no damage from magic missile.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"reaction","cost":1,"condition":"Which you take when you are hit by an attack or targeted by the magic missile spell"},"duration":{"value":"1","units":"round"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"abj","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"effects":[{"_id":"6pbotGIvqQkraPva","flags":{},"changes":[{"key":"system.attributes.ac.bonus","value":"5","mode":2,"priority":null}],"disabled":true,"duration":{"startTime":null,"rounds":1,"seconds":null,"combat":null,"turns":null,"startRound":null,"startTurn":null},"icon":"icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp","label":"Shield","origin":"Item.FlLKKv7bQBlIAs11","tint":null,"transfer":true,"sort":0}],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234244,"modifiedTime":1671220971502,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zMAWdyc8UVb37BK4","name":"Suggestion","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You suggest a course of activity (limited to a sentence or two) and magically influence a creature you can see within range that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act ends the spell.The target must make a Wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do.You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a knight give her warhorse to the first beggar she meets. If the condition isn't met before the spell expires, the activity isn't performed.If you or any of your companions damage the target, the spell ends.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"8","units":"hour"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"wis","dc":null,"scaling":"spell"},"level":2,"school":"enc","components":{"vocal":true,"somatic":false,"material":true,"ritual":false,"concentration":true},"materials":{"value":"A snake's tongue and either a bit of honeycomb or a drop of sweet oil","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/air-burst-spiral-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234245,"modifiedTime":1671220971507,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zMEo5DKK8uxsuWnq","name":"Reincarnate","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You touch a dead humanoid or a piece of a dead humanoid. Provided that the creature has been dead no longer than 10 days, the spell forms a new adult body for it and then calls the soul to enter that body. If the target's soul isn't free or willing to do so, the spell fails.The magic fashions a new body for the creature to inhabit, which likely causes the creature's race to change. The DM rolls on the @Compendium[dnd5e.tables.eXu1QFMsFtTtoJBZ]{Reincarnate} table to determine what form the creature takes when restored to life, or the DM chooses a form.\nThe reincarnated creature recalls its former life and experiences. It retains the capabilities it had in its original form, except it exchanges its original race for the new one and changes its Racial Traits accordingly.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"hour","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":1,"width":null,"units":"spec","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"1d100","save":{"ability":"","dc":null,"scaling":"spell"},"level":5,"school":"trs","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"Rare oils and unguents worth at least 1,000 gp, which the spell consumes","consumed":true,"cost":1000,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/life/heart-cross-strong-flame-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234245,"modifiedTime":1671220971512,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zPGohqJRir6MyQ3U","name":"Expeditious Retreat","ownership":{"default":0},"type":"spell","system":{"description":{"value":"This spell allows you to move at an incredible pace. When you cast this spell, and then as a bonus action on each of your turns until the spell ends, you can take the Dash action.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":"10","units":"minute"},"cover":null,"target":{"value":null,"width":null,"units":"","type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"util","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"level":1,"school":"trs","components":{"vocal":true,"somatic":true,"material":false,"ritual":false,"concentration":true},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"none","formula":""}},"sort":0,"flags":{},"img":"icons/magic/air/wind-stream-blue-gray.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234246,"modifiedTime":1671220971516,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ztgcdrWPshKRpFd0","name":"Fireball","ownership":{"default":0},"type":"spell","system":{"description":{"value":"A bright streak flashes from your pointing finger to a point you choose within range and then blossoms with a low roar into an explosion of flame. Each creature in a 20-foot-radius sphere centered on that point must make a Dexterity saving throw. A target takes 8d6 fire damage on a failed save, or half as much damage on a successful one.The fire spreads around corners. It ignites flammable objects in the area that aren't being worn or carried.Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"","units":"inst"},"cover":null,"target":{"value":20,"width":null,"units":"ft","type":"sphere"},"range":{"value":150,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[["8d6","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":null,"scaling":"spell"},"level":3,"school":"evo","components":{"vocal":true,"somatic":true,"material":true,"ritual":false,"concentration":false},"materials":{"value":"A tiny ball of bat guano and sulfur","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":"1d6"}},"sort":0,"flags":{},"img":"icons/magic/fire/projectile-fireball-smoke-large-orange.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234246,"modifiedTime":1671220971520,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"zwGsAv6kmwzYGhh3","name":"Blindness/Deafness","ownership":{"default":0},"type":"spell","system":{"description":{"value":"You can blind or deafen a foe. Choose one creature that you can see within range to make a Constitution saving throw. If it fails, the target is either blinded or deafened (your choice) for the duration. At the end of each of its turns, the target can make a Constitution saving throw. On a success, the spell ends.At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":"1","units":"minute"},"cover":null,"target":{"value":1,"width":null,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":null,"max":"","per":null,"recovery":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"save","attackBonus":"","chatFlavor":"","critical":{"threshold":null,"damage":""},"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"scaling":"spell"},"level":2,"school":"nec","components":{"vocal":true,"somatic":false,"material":false,"ritual":false,"concentration":false},"materials":{"value":"","consumed":false,"cost":0,"supply":0},"preparation":{"mode":"prepared","prepared":false},"scaling":{"mode":"level","formula":""}},"sort":0,"flags":{},"img":"icons/magic/perception/eye-ringed-glow-angry-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234247,"modifiedTime":1671220971532,"lastModifiedBy":"dnd5ebuilder0000"}} diff --git a/packs/src/backgrounds/acolyte.json b/packs/src/backgrounds/acolyte.json index 84b8d3fb9e..569535b310 100644 --- a/packs/src/backgrounds/acolyte.json +++ b/packs/src/backgrounds/acolyte.json @@ -8,8 +8,50 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "advancement": [ + { + "_id": "wIwtQfLdf9tJdZNi", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": true, + "grants": [ + "skills:ins", + "skills:rel" + ], + "choices": [] + }, + "level": 0, + "title": "", + "value": {} + }, + { + "_id": "9YuEhI3iqUxEfIOk", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "languages:*" + ] + } + ] + }, + "level": 0, + "title": "" + }, { "_id": "6grrnum72rnphzi5", "type": "ItemGrant", @@ -43,10 +85,11 @@ "_id": "IgJkSnLiLJOWH7eK", "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", + "systemVersion": "2.3.1", + "coreVersion": "10.303", "createdTime": 1661787234264, - "modifiedTime": 1671220972133, + "modifiedTime": 1698857222487, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!IgJkSnLiLJOWH7eK" } diff --git a/packs/src/backgrounds/shelter-of-the-faithful.json b/packs/src/backgrounds/shelter-of-the-faithful.json index b165782377..71d0a59a97 100644 --- a/packs/src/backgrounds/shelter-of-the-faithful.json +++ b/packs/src/backgrounds/shelter-of-the-faithful.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234264, "modifiedTime": 1672334243361, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!64N1NWh9kC1dI7zN" } diff --git a/packs/src/classes/barbarian.json b/packs/src/classes/barbarian.json index 951a7cd2d4..5d3108163f 100644 --- a/packs/src/classes/barbarian.json +++ b/packs/src/classes/barbarian.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "barbarian", "levels": 1, "hitDice": "d12", @@ -22,6 +27,103 @@ "value": {}, "title": "" }, + { + "_id": "fjwU0G5OtTZWOkib", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:lgt", + "armor:med", + "armor:shl" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "_id": "sFas4Tifj7zKgmkY", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim", + "weapon:mar" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": {} + }, + { + "_id": "CmX808i8HaWZ7VMx", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:str", + "saves:con" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "_id": "lD3JBViqmxFYu0kc", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:ani", + "skills:ath", + "skills:itm", + "skills:nat", + "skills:prc", + "skills:sur" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary" + }, + { + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:shl" + ], + "choices": [] + }, + "level": 1, + "title": "", + "_id": "3ETNrLc8RQlHwNXP", + "classRestriction": "secondary", + "value": {} + }, { "_id": "amez6rlose3eoigo", "type": "ItemGrant", @@ -447,10 +549,11 @@ "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.3.1", "coreVersion": "10.303", "createdTime": 1661787234281, - "modifiedTime": 1691518329159, + "modifiedTime": 1698851083985, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!pvEzGSv71zBhaolc" } diff --git a/packs/src/classes/bard.json b/packs/src/classes/bard.json index ace7fcd3e4..d56a907692 100644 --- a/packs/src/classes/bard.json +++ b/packs/src/classes/bard.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "bard", "levels": 1, "hitDice": "d8", @@ -20,7 +25,193 @@ "configuration": {}, "value": {}, "title": "Hit Points", - "icon": "systems/dnd5e/icons/svg/hit-points.svg" + "icon": "systems/dnd5e/icons/svg/hit-points.svg", + "_id": "pILgW7YYeRvTfJS6" + }, + { + "_id": "svCkv1ECxsmu2Q7U", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:lgt" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": {} + }, + { + "_id": "hZPJWA6MdmFIZuQD", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim", + "weapon:mar:handcrossbow", + "weapon:mar:longsword", + "weapon:mar:rapier", + "weapon:mar:shortsword" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "_id": "tRCVvsqiLStPNyFl", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 3, + "pool": [ + "tool:music:*" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "_id": "wVBCjoHg0ftdHj3m", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:dex", + "saves:cha" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "_id": "eNU6FoX5sNVbDx13", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 3, + "pool": [ + "skills:*" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 1, + "pool": [ + "tool:music:*" + ] + } + ] + }, + "level": 1, + "title": "", + "_id": "8oBIVC96av3lm5uk", + "classRestriction": "secondary", + "value": {} + }, + { + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 1, + "pool": [ + "skills:*" + ] + } + ] + }, + "level": 1, + "title": "", + "_id": "ELIXk3XCH4EmyiqN", + "classRestriction": "secondary", + "value": {} + }, + { + "_id": "cwu9uhmtcKhqli8W", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "expertise", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:*" + ] + } + ] + }, + "level": 3, + "title": "Expertise", + "value": {} + }, + { + "type": "Trait", + "configuration": { + "hint": "", + "mode": "expertise", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:*" + ] + } + ] + }, + "level": 10, + "title": "Expertise", + "_id": "O2cVH7Y5kNfoUyLg", + "value": {} }, { "type": "ItemGrant", @@ -42,7 +233,8 @@ "value": {}, "level": 1, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "oNNPhAIeXhAweeBN" }, { "type": "ItemGrant", @@ -64,7 +256,8 @@ "value": {}, "level": 2, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "V3KCwHELag3C3YVj" }, { "type": "ItemGrant", @@ -86,7 +279,8 @@ "value": {}, "level": 3, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "MSF1wogSoeJqfxAR" }, { "type": "ItemGrant", @@ -107,7 +301,8 @@ "value": {}, "level": 5, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "I7HqKmtMcat8Dm08" }, { "type": "ItemGrant", @@ -128,7 +323,8 @@ "value": {}, "level": 6, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "UThCJ6mGUL0XQUb8" }, { "type": "ItemGrant", @@ -149,7 +345,8 @@ "value": {}, "level": 10, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "2fX3mtdNC16A1z7S" }, { "type": "ItemGrant", @@ -170,7 +367,8 @@ "value": {}, "level": 20, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "ZwU2MLhnY219t78q" }, { "type": "ItemChoice", @@ -200,7 +398,8 @@ }, "value": {}, "title": "Magical Secrets", - "icon": "systems/dnd5e/icons/svg/item-choice.svg" + "icon": "systems/dnd5e/icons/svg/item-choice.svg", + "_id": "EC1yNAV6khHilOhz" }, { "type": "ScaleValue", @@ -231,7 +430,8 @@ }, "value": {}, "title": "Bardic Inspiration Die", - "icon": "systems/dnd5e/icons/svg/scale-value.svg" + "icon": "systems/dnd5e/icons/svg/scale-value.svg", + "_id": "0Ybu5yMjplpTAHiE" }, { "type": "ScaleValue", @@ -262,7 +462,8 @@ }, "value": {}, "title": "Song of Rest Die", - "icon": "systems/dnd5e/icons/svg/scale-value.svg" + "icon": "systems/dnd5e/icons/svg/scale-value.svg", + "_id": "TK2RAm9EFQtVjDrU" }, { "type": "ScaleValue", @@ -286,7 +487,8 @@ }, "value": {}, "title": "Cantrips Known", - "icon": "systems/dnd5e/icons/svg/scale-value.svg" + "icon": "systems/dnd5e/icons/svg/scale-value.svg", + "_id": "ovKbtrhfIkYTuThu" }, { "type": "ScaleValue", @@ -349,7 +551,8 @@ }, "value": {}, "title": "Spells Known", - "icon": "systems/dnd5e/icons/svg/scale-value.svg" + "icon": "systems/dnd5e/icons/svg/scale-value.svg", + "_id": "9FXWVh7OmbPr1iR9" }, { "type": "AbilityScoreImprovement", @@ -369,7 +572,8 @@ }, "level": 4, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "sbzvEEntzYcE5JfN" }, { "type": "AbilityScoreImprovement", @@ -389,7 +593,8 @@ }, "level": 8, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "adpq4VPJ5oVt8m06" }, { "type": "AbilityScoreImprovement", @@ -409,7 +614,8 @@ }, "level": 12, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "jl333Hy4RIPs6J9p" }, { "type": "AbilityScoreImprovement", @@ -429,7 +635,8 @@ }, "level": 16, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "Eweg6iXNJ6qIC6rY" }, { "_id": "puDaUsYrlks0z5gm", @@ -494,10 +701,11 @@ "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.3.1", "coreVersion": "10.303", "createdTime": 1661787234279, - "modifiedTime": 1691518407140, + "modifiedTime": 1699386023408, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ILvRZGEx3aXqSVUt" } diff --git a/packs/src/classes/cleric.json b/packs/src/classes/cleric.json index bc8e5a1df9..3b396a6c5c 100644 --- a/packs/src/classes/cleric.json +++ b/packs/src/classes/cleric.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "cleric", "levels": 1, "hitDice": "d8", @@ -20,7 +25,86 @@ "configuration": {}, "value": {}, "title": "Hit Points", - "icon": "systems/dnd5e/icons/svg/hit-points.svg" + "icon": "systems/dnd5e/icons/svg/hit-points.svg", + "_id": "XqASCKr26BUOObF5" + }, + { + "_id": "vLDkTMgod0IS4HJn", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:lgt", + "armor:med", + "armor:shl" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": {} + }, + { + "_id": "uyLXlhMnjMSHHdbs", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "_id": "bcFNu9fM4o5He4J7", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:wis", + "saves:cha" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary" + }, + { + "_id": "6YQrE9NkjbvhfN8F", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:his", + "skills:ins", + "skills:med", + "skills:per", + "skills:rel" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} }, { "type": "ItemGrant", @@ -42,7 +126,8 @@ "value": {}, "level": 1, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "axeH6FmdvAfb3TnK" }, { "type": "ItemGrant", @@ -64,7 +149,8 @@ "value": {}, "level": 2, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "PpE7QUl3ZRdIwbSW" }, { "type": "ItemGrant", @@ -85,7 +171,8 @@ "value": {}, "level": 5, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "PwcMUZPMhGxn6JnJ" }, { "type": "ItemGrant", @@ -106,7 +193,8 @@ "value": {}, "level": 10, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "RAGsl9ESVLpLfX5u" }, { "type": "ScaleValue", @@ -130,7 +218,8 @@ }, "value": {}, "title": "Channel Divinity Uses", - "icon": "systems/dnd5e/icons/svg/scale-value.svg" + "icon": "systems/dnd5e/icons/svg/scale-value.svg", + "_id": "oOvaOWkQdMJHHwzo" }, { "type": "ScaleValue", @@ -160,7 +249,8 @@ }, "value": {}, "title": "Destroy Undead CR", - "icon": "systems/dnd5e/icons/svg/scale-value.svg" + "icon": "systems/dnd5e/icons/svg/scale-value.svg", + "_id": "bRWP2zsP33jeZcUY" }, { "type": "ScaleValue", @@ -184,7 +274,8 @@ }, "value": {}, "title": "Cantrips Known", - "icon": "systems/dnd5e/icons/svg/scale-value.svg" + "icon": "systems/dnd5e/icons/svg/scale-value.svg", + "_id": "b6vbDSfWTwxqyTke" }, { "type": "AbilityScoreImprovement", @@ -204,7 +295,8 @@ }, "level": 4, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "PrfXQ3yQP9js943H" }, { "type": "AbilityScoreImprovement", @@ -224,7 +316,8 @@ }, "level": 8, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "FLozwaTlMVqZKbaN" }, { "type": "AbilityScoreImprovement", @@ -244,7 +337,8 @@ }, "level": 12, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "yplB3bqCjEXkNAAq" }, { "type": "AbilityScoreImprovement", @@ -264,7 +358,8 @@ }, "level": 16, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "LoImJ16J7Sn1HXi2" }, { "_id": "puDaUsYrlks0z5gm", @@ -316,10 +411,11 @@ "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.3.1", "coreVersion": "10.303", "createdTime": 1661787234282, - "modifiedTime": 1691518447226, + "modifiedTime": 1698851264871, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!tlwBnN8GmqJcTgub" } diff --git a/packs/src/classes/druid.json b/packs/src/classes/druid.json index 4ae515c5af..2ef81435cd 100644 --- a/packs/src/classes/druid.json +++ b/packs/src/classes/druid.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "druid", "levels": 1, "hitDice": "d8", @@ -20,7 +25,116 @@ "configuration": {}, "value": {}, "title": "Hit Points", - "icon": "systems/dnd5e/icons/svg/hit-points.svg" + "icon": "systems/dnd5e/icons/svg/hit-points.svg", + "_id": "UQN1QAt9gJWSbjhF" + }, + { + "_id": "GsMQJqy3R8DVF485", + "type": "Trait", + "configuration": { + "hint": "Light Armor, Medium Armor, & Shields (druids will not wear armor or use shields made of metal)", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:lgt", + "armor:med", + "armor:shl" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": {} + }, + { + "_id": "dK0oEtM8ovrLJxi3", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim:club", + "weapon:sim:dagger", + "weapon:sim:dart", + "weapon:sim:javelin", + "weapon:sim:mace", + "weapon:sim:quarterstaff", + "weapon:sim:sickle", + "weapon:sim:spear", + "weapon:sim:sling", + "weapon:mar:scimitar" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "_id": "tSywlKq0aE3GYMmi", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "tool:herb" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "_id": "xZ55SColbUbJOW2i", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:int", + "saves:wis" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "_id": "bN13f0XX9ZVaUiaC", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:ani", + "skills:arc", + "skills:ins", + "skills:med", + "skills:nat", + "skills:prc", + "skills:rel", + "skills:sur" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} }, { "type": "ItemGrant", @@ -42,7 +156,8 @@ "value": {}, "level": 1, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "pkkBT3JrxyLuTmwm" }, { "type": "ItemGrant", @@ -64,7 +179,8 @@ "value": {}, "level": 2, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "kDrm5stUR4Vp6oE3" }, { "type": "ItemGrant", @@ -86,7 +202,8 @@ "value": {}, "level": 18, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "IRKvBsuqs6C3ktQu" }, { "type": "ItemGrant", @@ -107,7 +224,8 @@ "value": {}, "level": 20, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "UpHHo8cfTCVk92Th" }, { "type": "ScaleValue", @@ -131,7 +249,8 @@ }, "value": {}, "title": "Wild Shape CR", - "icon": "systems/dnd5e/icons/svg/scale-value.svg" + "icon": "systems/dnd5e/icons/svg/scale-value.svg", + "_id": "eX43MTPVUV9VB0dK" }, { "type": "ScaleValue", @@ -155,7 +274,8 @@ }, "value": {}, "title": "Cantrips Known", - "icon": "systems/dnd5e/icons/svg/scale-value.svg" + "icon": "systems/dnd5e/icons/svg/scale-value.svg", + "_id": "Gfzu57bEFMsekg7v" }, { "type": "AbilityScoreImprovement", @@ -168,14 +288,16 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" }, "level": 4, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "2T62G1BtLjN7m0D9" }, { "type": "AbilityScoreImprovement", @@ -188,14 +310,16 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" }, "level": 8, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "uXaQWuJioxGLKVfy" }, { "type": "AbilityScoreImprovement", @@ -208,14 +332,16 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" }, "level": 12, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "GiktwdfAHfCAEXzm" }, { "type": "AbilityScoreImprovement", @@ -228,14 +354,16 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" }, "level": 16, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "9QF2H24Ez8ZdH42N" }, { "_id": "puDaUsYrlks0z5gm", @@ -249,15 +377,35 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" }, "level": 19, "title": "" + }, + { + "_id": "miieZ5i2DxMvyWKG", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:druidic" + ], + "choices": [] + }, + "level": 1, + "title": "" } ], + "spellcasting": { + "progression": "full", + "ability": "wis" + }, "saves": [ "int", "wis" @@ -275,10 +423,6 @@ "sur" ], "value": [] - }, - "spellcasting": { - "progression": "full", - "ability": "wis" } }, "effects": [], @@ -290,10 +434,11 @@ "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234284, - "modifiedTime": 1691518466937, + "modifiedTime": 1699988244829, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ygVYgPbJkaH0tH1N" } diff --git a/packs/src/classes/fighter.json b/packs/src/classes/fighter.json index f29dd79420..e4b7bb427f 100644 --- a/packs/src/classes/fighter.json +++ b/packs/src/classes/fighter.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "fighter", "levels": 1, "hitDice": "d10", @@ -23,6 +28,108 @@ "icon": "systems/dnd5e/icons/svg/hit-points.svg", "_id": "yhZd0KJPJERAWGgA" }, + { + "_id": "mA50Kay0ZDA2jX9p", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:lgt", + "armor:med", + "armor:hvy", + "armor:shl" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary" + }, + { + "_id": "nmUrDORkeK0uZm0p", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim", + "weapon:mar" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": {} + }, + { + "_id": "3o2s8ZVAyJd74CrP", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:str", + "saves:con" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "_id": "JEZnz3P7ydbNAdwN", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:acr", + "skills:ani", + "skills:ath", + "skills:his", + "skills:ins", + "skills:itm", + "skills:prc", + "skills:sur" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:lgt", + "armor:med", + "armor:shl" + ], + "choices": [] + }, + "level": 1, + "title": "", + "_id": "dB3KhImYQRemI4mr", + "classRestriction": "secondary", + "value": {} + }, { "type": "ItemGrant", "configuration": { @@ -394,10 +501,11 @@ "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.3.1", "coreVersion": "10.303", "createdTime": 1661787234279, - "modifiedTime": 1691518656322, + "modifiedTime": 1698851335324, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ABEBgWyRhVlDUIfq" } diff --git a/packs/src/classes/monk.json b/packs/src/classes/monk.json index 1ff8c69fd9..9cdf170d45 100644 --- a/packs/src/classes/monk.json +++ b/packs/src/classes/monk.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "monk", "levels": 1, "hitDice": "d8", @@ -20,7 +25,110 @@ "configuration": {}, "value": {}, "title": "Hit Points", - "icon": "systems/dnd5e/icons/svg/hit-points.svg" + "icon": "systems/dnd5e/icons/svg/hit-points.svg", + "_id": "ocxNtDFJ7YDaYaK7" + }, + { + "_id": "mmAxx3U7FvXNAcKc", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim", + "weapon:mar:shortsword" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": {} + }, + { + "_id": "QPXy59CQGY9HB0c3", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 1, + "pool": [ + "tool:art:*", + "tool:music:*" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "_id": "4M8MQ1E64zbcRg6B", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:str", + "saves:dex" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "_id": "7HRRCPk80Ng2Evdx", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:acr", + "skills:ath", + "skills:his", + "skills:ins", + "skills:rel", + "skills:ste" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "_id": "BQWHr3mt5flvkfIj", + "type": "Trait", + "configuration": { + "hint": "Your mastery of the ki flowing through you makes you immune to disease and poison.", + "mode": "default", + "allowReplacements": false, + "grants": [ + "di:poison", + "ci:diseased", + "ci:poisoned" + ], + "choices": [] + }, + "level": 10, + "title": "Purity of Body" }, { "type": "ItemGrant", @@ -43,7 +151,8 @@ "value": {}, "level": 1, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "n0q8XyiGA3vLPgpK" }, { "type": "ItemGrant", @@ -68,7 +177,8 @@ "value": {}, "level": 2, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "7TyDqpGGi3r3nsp0" }, { "type": "ItemGrant", @@ -90,7 +200,8 @@ "value": {}, "level": 3, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "2sLHTw6k15DSW8WB" }, { "type": "ItemGrant", @@ -111,7 +222,8 @@ "value": {}, "level": 4, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "Zc1jOZK1b9mIKekq" }, { "type": "ItemGrant", @@ -133,7 +245,8 @@ "value": {}, "level": 5, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "j9LeWmxlsENKaMLo" }, { "type": "ItemGrant", @@ -154,7 +267,8 @@ "value": {}, "level": 6, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "psobDjMqtA2216Db" }, { "type": "ItemGrant", @@ -176,7 +290,8 @@ "value": {}, "level": 7, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "K38aFaEMxMqRB0BC" }, { "type": "ItemGrant", @@ -197,7 +312,8 @@ "value": {}, "level": 10, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "eLqmJotmwzlGNrxG" }, { "type": "ItemGrant", @@ -218,7 +334,8 @@ "value": {}, "level": 13, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "N0geIQiuofqYgswj" }, { "type": "ItemGrant", @@ -239,7 +356,8 @@ "value": {}, "level": 14, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "N1hjizyI82UPp8UI" }, { "type": "ItemGrant", @@ -260,7 +378,8 @@ "value": {}, "level": 15, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "TcLZS9WzC7bPETSd" }, { "type": "ItemGrant", @@ -281,7 +400,8 @@ "value": {}, "level": 18, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "tRb3a0tA5IpehPs8" }, { "type": "ItemGrant", @@ -302,7 +422,8 @@ "value": {}, "level": 20, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "sEQz9c9XhWYjS9x5" }, { "type": "ScaleValue", @@ -333,7 +454,8 @@ }, "value": {}, "title": "Martial Arts Die", - "icon": "systems/dnd5e/icons/svg/scale-value.svg" + "icon": "systems/dnd5e/icons/svg/scale-value.svg", + "_id": "MXFbf0nxMiyLdPbX" }, { "type": "ScaleValue", @@ -363,7 +485,8 @@ }, "value": {}, "title": "Unarmored Movement", - "icon": "systems/dnd5e/icons/svg/scale-value.svg" + "icon": "systems/dnd5e/icons/svg/scale-value.svg", + "_id": "1OzfWDWCquoHMeX5" }, { "type": "AbilityScoreImprovement", @@ -383,7 +506,8 @@ }, "level": 4, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "ofNSUhSHKhhDuPSR" }, { "type": "AbilityScoreImprovement", @@ -403,7 +527,8 @@ }, "level": 8, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "s3t9o57hP6iUHirr" }, { "type": "AbilityScoreImprovement", @@ -423,7 +548,8 @@ }, "level": 12, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "O24MWOKc1ImsKaml" }, { "type": "AbilityScoreImprovement", @@ -443,7 +569,8 @@ }, "level": 16, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "xdqWoLtgO3uyl3nJ" }, { "_id": "puDaUsYrlks0z5gm", @@ -496,10 +623,11 @@ "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.3.1", "coreVersion": "10.303", "createdTime": 1661787234277, - "modifiedTime": 1691518503601, + "modifiedTime": 1698857146118, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!6VoZrWxhOEKGYhnq" } diff --git a/packs/src/classes/paladin.json b/packs/src/classes/paladin.json index c979ea6c57..4fedf543e1 100644 --- a/packs/src/classes/paladin.json +++ b/packs/src/classes/paladin.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "paladin", "levels": 1, "hitDice": "d10", @@ -20,7 +25,124 @@ "configuration": {}, "value": {}, "title": "Hit Points", - "icon": "systems/dnd5e/icons/svg/hit-points.svg" + "icon": "systems/dnd5e/icons/svg/hit-points.svg", + "_id": "N4T7S8KXXZKskROj" + }, + { + "_id": "qfbfR422hrwjwWyd", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:lgt", + "armor:med", + "armor:hvy", + "armor:shl" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "_id": "2pEp37GeIGCBdiqU", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim", + "weapon:mar" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": {} + }, + { + "_id": "aIeuTIJdiKMaChi8", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:wis", + "saves:cha" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "_id": "ZZIWxV7EaHl6GVcu", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:ath", + "skills:ins", + "skills:itm", + "skills:med", + "skills:per", + "skills:rel" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:lgt", + "armor:med", + "armor:shl" + ], + "choices": [] + }, + "level": 1, + "title": "", + "_id": "qd6RxOGs50LR5Lea", + "classRestriction": "secondary", + "value": {} + }, + { + "_id": "LYiiMtwvVVXZs8yE", + "type": "Trait", + "configuration": { + "hint": "The divine magic flowing through you makes you immune to disease.", + "mode": "default", + "allowReplacements": false, + "grants": [ + "ci:diseased" + ], + "choices": [] + }, + "level": 3, + "title": "Divine Health" }, { "type": "ItemGrant", @@ -42,7 +164,8 @@ "value": {}, "level": 1, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "HL6Kwpmrsz5yqmBK" }, { "type": "ItemGrant", @@ -65,7 +188,8 @@ "value": {}, "level": 2, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "RwqEtAP5aJqHIW5J" }, { "type": "ItemGrant", @@ -88,7 +212,8 @@ "value": {}, "level": 3, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "ki8eEksoSjfOHDcF" }, { "type": "ItemGrant", @@ -109,7 +234,8 @@ "value": {}, "level": 5, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "WaoJQunO9O2pdC1g" }, { "type": "ItemGrant", @@ -130,7 +256,8 @@ "value": {}, "level": 6, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "Gs5c5ciErsG3NDyW" }, { "type": "ItemGrant", @@ -151,7 +278,8 @@ "value": {}, "level": 10, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "teLWeatpgzXs5uCc" }, { "type": "ItemGrant", @@ -172,7 +300,8 @@ "value": {}, "level": 11, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "BWhYgjLNVypoHyqZ" }, { "type": "ItemGrant", @@ -193,7 +322,8 @@ "value": {}, "level": 14, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "63s9ja0RR4UkfHCN" }, { "type": "ItemChoice", @@ -226,7 +356,8 @@ }, "value": {}, "title": "Fighting Style", - "icon": "systems/dnd5e/icons/svg/item-choice.svg" + "icon": "systems/dnd5e/icons/svg/item-choice.svg", + "_id": "GPzUDRFo5bfrhU1K" }, { "type": "AbilityScoreImprovement", @@ -246,7 +377,8 @@ }, "level": 4, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "ASKyHbSBAKRIU6i3" }, { "type": "AbilityScoreImprovement", @@ -266,7 +398,8 @@ }, "level": 8, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "iBK2dJf2hwv9vOBI" }, { "type": "AbilityScoreImprovement", @@ -286,7 +419,8 @@ }, "level": 12, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "BI8DBqJZY8O9orOX" }, { "type": "AbilityScoreImprovement", @@ -306,7 +440,8 @@ }, "level": 16, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "hKEbRRkEEfvA3ydq" }, { "_id": "puDaUsYrlks0z5gm", @@ -359,10 +494,11 @@ "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.3.1", "coreVersion": "10.303", "createdTime": 1661787234280, - "modifiedTime": 1691518520671, + "modifiedTime": 1699386117323, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gZiUvbXWLs0pOp0c" } diff --git a/packs/src/classes/ranger.json b/packs/src/classes/ranger.json index 31f2f51aeb..7880f0e34c 100644 --- a/packs/src/classes/ranger.json +++ b/packs/src/classes/ranger.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "ranger", "levels": 1, "hitDice": "d10", @@ -20,7 +25,118 @@ "configuration": {}, "value": {}, "title": "Hit Points", - "icon": "systems/dnd5e/icons/svg/hit-points.svg" + "icon": "systems/dnd5e/icons/svg/hit-points.svg", + "_id": "xBohtOEv3ukqmso2" + }, + { + "_id": "TYXdkZvuFRIksnaN", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:lgt", + "armor:med", + "armor:shl" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": {} + }, + { + "_id": "MPQe2gl78EIkJp4B", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim", + "weapon:mar" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": {} + }, + { + "_id": "mfYrk9GETHcNXCqs", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:str", + "saves:dex" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "_id": "ICgRpBmX0g8Y0ZzD", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 3, + "pool": [ + "skills:ani", + "skills:ath", + "skills:ins", + "skills:inv", + "skills:nat", + "skills:prc", + "skills:ste", + "skills:sur" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary" + }, + { + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 1, + "pool": [ + "skills:ani", + "skills:ath", + "skills:ins", + "skills:inv", + "skills:nat", + "skills:prc", + "skills:ste", + "skills:sur" + ] + } + ] + }, + "level": 1, + "title": "", + "_id": "04X0Kohr5hwmeErb", + "classRestriction": "secondary", + "value": {} }, { "type": "ItemGrant", @@ -42,7 +158,8 @@ "value": {}, "level": 1, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "L0DHAlnRhNlttHtT" }, { "type": "ItemGrant", @@ -64,7 +181,8 @@ "value": {}, "level": 2, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "yCF7xTPbbbLvy1oi" }, { "type": "ItemGrant", @@ -86,7 +204,8 @@ "value": {}, "level": 3, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "uBfO0VT74Ubkb3Vq" }, { "type": "ItemGrant", @@ -107,7 +226,8 @@ "value": {}, "level": 5, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "tkm2YSp7v7CsyAv5" }, { "type": "ItemGrant", @@ -128,7 +248,8 @@ "value": {}, "level": 8, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "J2W7bBur77wnP4aC" }, { "type": "ItemGrant", @@ -149,7 +270,8 @@ "value": {}, "level": 10, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "DpZ2KsGzNrxyFJEQ" }, { "type": "ItemGrant", @@ -170,7 +292,8 @@ "value": {}, "level": 14, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "9bNIObxgYslup65I" }, { "type": "ItemGrant", @@ -191,7 +314,8 @@ "value": {}, "level": 18, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "GOpw3X1MmQnMB4Xb" }, { "type": "ItemGrant", @@ -212,7 +336,8 @@ "value": {}, "level": 20, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "CjPcaL8V6MErHufh" }, { "type": "ItemChoice", @@ -245,7 +370,8 @@ }, "value": {}, "title": "Fighting Style", - "icon": "systems/dnd5e/icons/svg/item-choice.svg" + "icon": "systems/dnd5e/icons/svg/item-choice.svg", + "_id": "ih8WlydEZdg3rCPh" }, { "type": "ScaleValue", @@ -290,7 +416,8 @@ }, "value": {}, "title": "Spells Known", - "icon": "systems/dnd5e/icons/svg/scale-value.svg" + "icon": "systems/dnd5e/icons/svg/scale-value.svg", + "_id": "FYvhuTSScSJTfYBM" }, { "type": "AbilityScoreImprovement", @@ -310,7 +437,8 @@ }, "level": 4, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "bWqpb3Malvjjk8a6" }, { "type": "AbilityScoreImprovement", @@ -330,7 +458,8 @@ }, "level": 8, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "Dr4RKCdMxlKWoHHV" }, { "type": "AbilityScoreImprovement", @@ -350,7 +479,8 @@ }, "level": 12, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "zDIECkwBeV96xABF" }, { "type": "AbilityScoreImprovement", @@ -370,7 +500,8 @@ }, "level": 16, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "5VCLK1OCRzEZxMy3" }, { "_id": "puDaUsYrlks0z5gm", @@ -425,10 +556,11 @@ "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.3.1", "coreVersion": "10.303", "createdTime": 1661787234280, - "modifiedTime": 1691518541515, + "modifiedTime": 1698851429400, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!VkRQ7glQvTWWiOCS" } diff --git a/packs/src/classes/rogue.json b/packs/src/classes/rogue.json index b5b576da33..347c351180 100644 --- a/packs/src/classes/rogue.json +++ b/packs/src/classes/rogue.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "rogue", "levels": 1, "hitDice": "d8", @@ -23,6 +28,185 @@ "icon": "systems/dnd5e/icons/svg/hit-points.svg", "_id": "WMbkpELkLBvDaEsL" }, + { + "_id": "OdvmWcuFdpmQa1R9", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:lgt" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": {} + }, + { + "_id": "IAuJ7LQGV2HvMXWB", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim", + "weapon:mar:handcrossbow", + "weapon:mar:longsword", + "weapon:mar:rapier", + "weapon:mar:shortsword" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "_id": "ZfLkT5c0hxOmdyti", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "tool:thief" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": {} + }, + { + "_id": "ejtwT3eAwBpgvtcw", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:dex", + "saves:int" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "_id": "rKux16jqNCPEtyDL", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 4, + "pool": [ + "skills:acr", + "skills:ath", + "skills:dec", + "skills:ins", + "skills:itm", + "skills:inv", + "skills:prc", + "skills:prf", + "skills:per", + "skills:slt", + "skills:ste" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "_id": "TDHYngxGqDHllgzw", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "expertise", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "tool:thief", + "skills:*" + ] + } + ] + }, + "level": 1, + "title": "Expertise", + "value": {} + }, + { + "type": "Trait", + "configuration": { + "hint": "", + "mode": "expertise", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:*", + "tool:thief" + ] + } + ] + }, + "level": 6, + "title": "Expertise", + "_id": "Iozyk39gsM4Kecex", + "value": {} + }, + { + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 1, + "pool": [ + "skills:acr", + "skills:ath", + "skills:dec", + "skills:ins", + "skills:itm", + "skills:inv", + "skills:prc", + "skills:prf", + "skills:per", + "skills:slt", + "skills:ste" + ] + } + ] + }, + "level": 1, + "title": "", + "_id": "CYYQSaGgmuHG7i6z", + "classRestriction": "secondary", + "value": {} + }, { "type": "ItemGrant", "configuration": { @@ -312,7 +496,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -333,7 +518,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -354,7 +540,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -375,7 +562,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -397,7 +585,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -417,15 +606,35 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" }, "level": 10, "title": "" + }, + { + "_id": "3GyyG2fRAwPbKK7n", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:cant" + ], + "choices": [] + }, + "level": 1, + "title": "" } ], + "spellcasting": { + "progression": "none", + "ability": "" + }, "saves": [ "dex", "int" @@ -446,10 +655,6 @@ "ste" ], "value": [] - }, - "spellcasting": { - "progression": "none", - "ability": "" } }, "effects": [], @@ -461,10 +666,11 @@ "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234284, - "modifiedTime": 1691518730064, + "modifiedTime": 1699988274467, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!xEb8jmA5HlNs7xTF" } diff --git a/packs/src/classes/sorcerer.json b/packs/src/classes/sorcerer.json index 4ac9031ccf..29e1f833c2 100644 --- a/packs/src/classes/sorcerer.json +++ b/packs/src/classes/sorcerer.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "sorcerer", "levels": 1, "hitDice": "d6", @@ -20,7 +25,73 @@ "configuration": {}, "value": {}, "title": "Hit Points", - "icon": "systems/dnd5e/icons/svg/hit-points.svg" + "icon": "systems/dnd5e/icons/svg/hit-points.svg", + "_id": "XFeJBDjRoDLHPuR5" + }, + { + "_id": "BfjnJtYtVOv4PVHu", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim:dagger", + "weapon:sim:dart", + "weapon:sim:lightcrossbow", + "weapon:sim:quarterstaff", + "weapon:sim:sling" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary" + }, + { + "_id": "KO7dxe4FlwlKXFIq", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:con", + "saves:cha" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "_id": "PAAGQYrkhVdGqg59", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:arc", + "skills:dec", + "skills:ins", + "skills:itm", + "skills:per", + "skills:rel" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} }, { "type": "ItemGrant", @@ -42,7 +113,8 @@ "value": {}, "level": 1, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "tHGuZb6Cezr0Yda6" }, { "type": "ItemGrant", @@ -63,7 +135,8 @@ "value": {}, "level": 2, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "vEbnPhd3OW2Z5RH8" }, { "type": "ItemGrant", @@ -84,7 +157,8 @@ "value": {}, "level": 3, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "7MYEF9Ci5OaEWaQ7" }, { "type": "ItemGrant", @@ -105,7 +179,8 @@ "value": {}, "level": 20, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "7FUhVIQtDqVQxUCJ" }, { "type": "ItemChoice", @@ -144,7 +219,8 @@ }, "value": {}, "title": "Metamagic", - "icon": "systems/dnd5e/icons/svg/item-choice.svg" + "icon": "systems/dnd5e/icons/svg/item-choice.svg", + "_id": "JvnMksZAolGhHMVS" }, { "type": "ScaleValue", @@ -168,7 +244,8 @@ }, "value": {}, "title": "Cantrips Known", - "icon": "systems/dnd5e/icons/svg/scale-value.svg" + "icon": "systems/dnd5e/icons/svg/scale-value.svg", + "_id": "rSUZv6eYOPRtikhv" }, { "type": "ScaleValue", @@ -225,7 +302,8 @@ }, "value": {}, "title": "Spells Known", - "icon": "systems/dnd5e/icons/svg/scale-value.svg" + "icon": "systems/dnd5e/icons/svg/scale-value.svg", + "_id": "Wr4j8nEA7gZxzW5Z" }, { "type": "AbilityScoreImprovement", @@ -245,7 +323,8 @@ }, "level": 4, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "zSlKyZ0rzKcd78Cq" }, { "type": "AbilityScoreImprovement", @@ -265,7 +344,8 @@ }, "level": 8, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "Psp6dqmMqww0D44O" }, { "type": "AbilityScoreImprovement", @@ -285,7 +365,8 @@ }, "level": 12, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "9qahHg5ZfS8bWkjD" }, { "type": "AbilityScoreImprovement", @@ -305,7 +386,8 @@ }, "level": 16, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "QYpSCG2AmMi8taC1" }, { "_id": "puDaUsYrlks0z5gm", @@ -358,10 +440,11 @@ "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.3.1", "coreVersion": "10.303", "createdTime": 1661787234275, - "modifiedTime": 1691518581039, + "modifiedTime": 1698851497625, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!6T08zzKtmmpVwlXU" } diff --git a/packs/src/classes/warlock.json b/packs/src/classes/warlock.json index 728d7a9829..d14a2acc3c 100644 --- a/packs/src/classes/warlock.json +++ b/packs/src/classes/warlock.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "warlock", "levels": 1, "hitDice": "d8", @@ -20,7 +25,85 @@ "configuration": {}, "value": {}, "title": "Hit Points", - "icon": "systems/dnd5e/icons/svg/hit-points.svg" + "icon": "systems/dnd5e/icons/svg/hit-points.svg", + "_id": "Xdh0dw6w16k5xFbX" + }, + { + "_id": "BTAE9XqCBbyv4O8P", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:lgt" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": {} + }, + { + "_id": "25XLH7yn1R41rKlk", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": {} + }, + { + "_id": "H0U9QH2KQj0lIrDK", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:wis", + "saves:cha" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "_id": "4DBaeL7SR77vUp6F", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:arc", + "skills:dec", + "skills:his", + "skills:itm", + "skills:inv", + "skills:nat", + "skills:rel" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary" }, { "type": "ItemGrant", @@ -42,7 +125,8 @@ "value": {}, "level": 1, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "SikU7aSV7VqT2FPB" }, { "type": "ItemGrant", @@ -63,7 +147,8 @@ "value": {}, "level": 2, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "11NYHMcme54WJHuU" }, { "type": "ItemGrant", @@ -84,7 +169,8 @@ "value": {}, "level": 3, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "buIwQBGbWz96fhau" }, { "type": "ItemGrant", @@ -105,7 +191,8 @@ "value": {}, "level": 11, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "eJpkbBgde3FQyJ7s" }, { "type": "ItemGrant", @@ -126,7 +213,8 @@ "value": {}, "level": 20, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "98N1iW9C8krNSPuJ" }, { "type": "ItemChoice", @@ -193,7 +281,8 @@ }, "value": {}, "title": "Eldritch Invocations", - "icon": "systems/dnd5e/icons/svg/item-choice.svg" + "icon": "systems/dnd5e/icons/svg/item-choice.svg", + "_id": "3iQ0rp3fm10XWLJ4" }, { "type": "ItemChoice", @@ -225,7 +314,8 @@ }, "value": {}, "title": "Pact Boon", - "icon": "systems/dnd5e/icons/svg/item-choice.svg" + "icon": "systems/dnd5e/icons/svg/item-choice.svg", + "_id": "mwFfObsz7bZQjFl1" }, { "type": "ItemChoice", @@ -253,7 +343,8 @@ }, "value": {}, "title": "Mystic Arcanum (6th level)", - "icon": "systems/dnd5e/icons/svg/item-choice.svg" + "icon": "systems/dnd5e/icons/svg/item-choice.svg", + "_id": "XtoK5DVOTjQ7PJ3H" }, { "type": "ItemChoice", @@ -281,7 +372,8 @@ }, "value": {}, "title": "Mystic Arcanum (7th level)", - "icon": "systems/dnd5e/icons/svg/item-choice.svg" + "icon": "systems/dnd5e/icons/svg/item-choice.svg", + "_id": "6TfqypKVuWsAprw7" }, { "type": "ItemChoice", @@ -309,7 +401,8 @@ }, "value": {}, "title": "Mystic Arcanum (8th level)", - "icon": "systems/dnd5e/icons/svg/item-choice.svg" + "icon": "systems/dnd5e/icons/svg/item-choice.svg", + "_id": "qFhNGSirvpbXMSwo" }, { "type": "ItemChoice", @@ -337,7 +430,8 @@ }, "value": {}, "title": "Mystic Arcanum (9th level)", - "icon": "systems/dnd5e/icons/svg/item-choice.svg" + "icon": "systems/dnd5e/icons/svg/item-choice.svg", + "_id": "zTE0N2sPRw039qCl" }, { "type": "ScaleValue", @@ -361,7 +455,8 @@ }, "value": {}, "title": "Cantrips Known", - "icon": "systems/dnd5e/icons/svg/scale-value.svg" + "icon": "systems/dnd5e/icons/svg/scale-value.svg", + "_id": "IXXGQe1feA5cBsOH" }, { "type": "ScaleValue", @@ -418,7 +513,8 @@ }, "value": {}, "title": "Spells Known", - "icon": "systems/dnd5e/icons/svg/scale-value.svg" + "icon": "systems/dnd5e/icons/svg/scale-value.svg", + "_id": "zfiyBsaOuE359vfA" }, { "type": "AbilityScoreImprovement", @@ -438,7 +534,8 @@ }, "level": 4, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "9tW2ZcVYgy8c3ucN" }, { "type": "AbilityScoreImprovement", @@ -458,7 +555,8 @@ }, "level": 8, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "QH0eaxybQeeDjRan" }, { "type": "AbilityScoreImprovement", @@ -478,7 +576,8 @@ }, "level": 12, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "Gz5OR2HizUVLjnrv" }, { "type": "AbilityScoreImprovement", @@ -498,7 +597,8 @@ }, "level": 16, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "lx0PINdjgWtIMbQU" }, { "_id": "puDaUsYrlks0z5gm", @@ -552,10 +652,11 @@ "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.3.1", "coreVersion": "10.303", "createdTime": 1661787234278, - "modifiedTime": 1691518598942, + "modifiedTime": 1698851505164, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7WJp9vhi6F6SlAFa" } diff --git a/packs/src/classes/wizard.json b/packs/src/classes/wizard.json index a11a0c2c99..01247e6fc6 100644 --- a/packs/src/classes/wizard.json +++ b/packs/src/classes/wizard.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "wizard", "levels": 1, "hitDice": "d6", @@ -20,7 +25,73 @@ "configuration": {}, "value": {}, "title": "Hit Points", - "icon": "systems/dnd5e/icons/svg/hit-points.svg" + "icon": "systems/dnd5e/icons/svg/hit-points.svg", + "_id": "J94h5oqcZsaxhaqz" + }, + { + "_id": "JXcSQmjdfaJeSjZ7", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim:dagger", + "weapon:sim:dart", + "weapon:sim:lightcrossbow", + "weapon:sim:quarterstaff", + "weapon:sim:sling" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary" + }, + { + "_id": "r1DG0GF8L6SkLNvq", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:int", + "saves:wis" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} + }, + { + "_id": "6blzmKC4EON0KM2e", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:arc", + "skills:his", + "skills:ins", + "skills:inv", + "skills:med", + "skills:rel" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": {} }, { "type": "ItemGrant", @@ -42,7 +113,8 @@ "value": {}, "level": 1, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "CTmwzlFgOyeE1L6K" }, { "type": "ItemGrant", @@ -63,7 +135,8 @@ "value": {}, "level": 2, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "AC4kN3RjttskWHUJ" }, { "type": "ItemGrant", @@ -84,7 +157,8 @@ "value": {}, "level": 18, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "0jnLhoNlk5qFB4QM" }, { "type": "ItemGrant", @@ -105,7 +179,8 @@ "value": {}, "level": 20, "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg" + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "ftN4NxMNvbBwYA0p" }, { "type": "ItemChoice", @@ -133,7 +208,8 @@ }, "value": {}, "title": "Signature Spells", - "icon": "systems/dnd5e/icons/svg/item-choice.svg" + "icon": "systems/dnd5e/icons/svg/item-choice.svg", + "_id": "jvTZfjedDhMCVGEn" }, { "type": "ScaleValue", @@ -157,7 +233,8 @@ }, "value": {}, "title": "Cantrips Known", - "icon": "systems/dnd5e/icons/svg/scale-value.svg" + "icon": "systems/dnd5e/icons/svg/scale-value.svg", + "_id": "r4NBaBhA20gUjJ56" }, { "type": "AbilityScoreImprovement", @@ -177,7 +254,8 @@ }, "level": 4, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "cqHTAJF9gyolaBBq" }, { "type": "AbilityScoreImprovement", @@ -197,7 +275,8 @@ }, "level": 8, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "lQO8njk1wKmUwP1N" }, { "type": "AbilityScoreImprovement", @@ -217,7 +296,8 @@ }, "level": 12, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "cyEtKa5tG1NFuknx" }, { "type": "AbilityScoreImprovement", @@ -237,7 +317,8 @@ }, "level": 16, "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg" + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "ZSeVTprbNjLOwWzX" }, { "_id": "puDaUsYrlks0z5gm", @@ -290,10 +371,11 @@ "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.3.1", "coreVersion": "10.303", "createdTime": 1661787234283, - "modifiedTime": 1691518616077, + "modifiedTime": 1698851514621, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!wZK2Q0rXB0AQo8h3" } diff --git a/packs/src/classfeatures/ability-score-improvement-fighter.json b/packs/src/classfeatures/ability-score-improvement-fighter.json index ee4681f00f..5a4e566cb6 100644 --- a/packs/src/classfeatures/ability-score-improvement-fighter.json +++ b/packs/src/classfeatures/ability-score-improvement-fighter.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234431, "modifiedTime": 1672334314469, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!sPy2OLoN7JaAcMl4" } diff --git a/packs/src/classfeatures/ability-score-improvement-rogue.json b/packs/src/classfeatures/ability-score-improvement-rogue.json index 298138e6b8..a94a98dd2b 100644 --- a/packs/src/classfeatures/ability-score-improvement-rogue.json +++ b/packs/src/classfeatures/ability-score-improvement-rogue.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234436, "modifiedTime": 1672334311777, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!v7MxFuTAgOsmxZCD" } diff --git a/packs/src/classfeatures/ability-score-improvement.json b/packs/src/classfeatures/ability-score-improvement.json index 8711235d92..419df1a574 100644 --- a/packs/src/classfeatures/ability-score-improvement.json +++ b/packs/src/classfeatures/ability-score-improvement.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234431, "modifiedTime": 1672334317018, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!s0Cc2zcX0JzIgam5" } diff --git a/packs/src/classfeatures/action-surge.json b/packs/src/classfeatures/action-surge.json index 0d42b0b093..9bfe361e4e 100644 --- a/packs/src/classfeatures/action-surge.json +++ b/packs/src/classfeatures/action-surge.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234440, "modifiedTime": 1674424657568, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!xF1VTcJ3AdkbTsdQ" } diff --git a/packs/src/classfeatures/additional-fighting-style.json b/packs/src/classfeatures/additional-fighting-style.json index 947d73ed32..8557c42db2 100644 --- a/packs/src/classfeatures/additional-fighting-style.json +++ b/packs/src/classfeatures/additional-fighting-style.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234414, "modifiedTime": 1672334305801, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!kYJsED0rqqqUcgKz" } diff --git a/packs/src/classfeatures/additional-magical-secrets.json b/packs/src/classfeatures/additional-magical-secrets.json index 7ef1551b8f..12ef74d8b7 100644 --- a/packs/src/classfeatures/additional-magical-secrets.json +++ b/packs/src/classfeatures/additional-magical-secrets.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234420, "modifiedTime": 1672334297286, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!myBu3zi5eYvQIcuy" } diff --git a/packs/src/classfeatures/arcane-recovery.json b/packs/src/classfeatures/arcane-recovery.json index 698f008eda..fe460749fd 100644 --- a/packs/src/classfeatures/arcane-recovery.json +++ b/packs/src/classfeatures/arcane-recovery.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234399, "modifiedTime": 1672334292429, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!e0uTcFPpgxjIyUW9" } diff --git a/packs/src/classfeatures/arcane-tradition.json b/packs/src/classfeatures/arcane-tradition.json index a3c6dbc8a1..335be294b8 100644 --- a/packs/src/classfeatures/arcane-tradition.json +++ b/packs/src/classfeatures/arcane-tradition.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234344, "modifiedTime": 1672334289832, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!AEWr9EMxy5gj4ZFT" } diff --git a/packs/src/classfeatures/archdruid.json b/packs/src/classfeatures/archdruid.json index 3445c167ac..940dbf9331 100644 --- a/packs/src/classfeatures/archdruid.json +++ b/packs/src/classfeatures/archdruid.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234411, "modifiedTime": 1672334287073, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ip4bvmGoz3qkoqes" } diff --git a/packs/src/classfeatures/aura-of-courage.json b/packs/src/classfeatures/aura-of-courage.json index 79e2ce82ee..28b495e4b7 100644 --- a/packs/src/classfeatures/aura-of-courage.json +++ b/packs/src/classfeatures/aura-of-courage.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234423, "modifiedTime": 1672334284774, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nahSkBO6LH4HkpaT" } diff --git a/packs/src/classfeatures/aura-of-devotion.json b/packs/src/classfeatures/aura-of-devotion.json index c2cb635590..354af9da3f 100644 --- a/packs/src/classfeatures/aura-of-devotion.json +++ b/packs/src/classfeatures/aura-of-devotion.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234365, "modifiedTime": 1672334280488, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!M2DxVsgLeZgXOznT" } diff --git a/packs/src/classfeatures/aura-of-protection.json b/packs/src/classfeatures/aura-of-protection.json index b125316f16..1db5654422 100644 --- a/packs/src/classfeatures/aura-of-protection.json +++ b/packs/src/classfeatures/aura-of-protection.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234397, "modifiedTime": 1672334278049, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!carGDhkIdoduTC0I" } diff --git a/packs/src/classfeatures/bard-college.json b/packs/src/classfeatures/bard-college.json index bcda3fc637..4519f704f2 100644 --- a/packs/src/classfeatures/bard-college.json +++ b/packs/src/classfeatures/bard-college.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234357, "modifiedTime": 1672334274947, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ILhzFHiRrqgQ9dFJ" } diff --git a/packs/src/classfeatures/bardic-inspiration.json b/packs/src/classfeatures/bardic-inspiration.json index 700015fa87..ea1af892eb 100644 --- a/packs/src/classfeatures/bardic-inspiration.json +++ b/packs/src/classfeatures/bardic-inspiration.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234409, "modifiedTime": 1672334270998, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hpLNiGq7y67d2EHA" } diff --git a/packs/src/classfeatures/beast-spells.json b/packs/src/classfeatures/beast-spells.json index 1cba703edf..49f0919443 100644 --- a/packs/src/classfeatures/beast-spells.json +++ b/packs/src/classfeatures/beast-spells.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234441, "modifiedTime": 1672334266521, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!xvgPu1O57DgXCM86" } diff --git a/packs/src/classfeatures/blessed-healer.json b/packs/src/classfeatures/blessed-healer.json index a42830498d..5e07a0ea99 100644 --- a/packs/src/classfeatures/blessed-healer.json +++ b/packs/src/classfeatures/blessed-healer.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -89,5 +94,6 @@ "createdTime": 1661787234443, "modifiedTime": 1672334380243, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!yv49QN6Bzqs0ecCs" } diff --git a/packs/src/classfeatures/blindsense.json b/packs/src/classfeatures/blindsense.json index bd7fb490fc..f2f66b9a1b 100644 --- a/packs/src/classfeatures/blindsense.json +++ b/packs/src/classfeatures/blindsense.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234404, "modifiedTime": 1672334376458, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!fjsBk7zxoAbLf8ZI" } diff --git a/packs/src/classfeatures/bonus-cantrip-druid.json b/packs/src/classfeatures/bonus-cantrip-druid.json index bd3e0b9610..995bccd9ac 100644 --- a/packs/src/classfeatures/bonus-cantrip-druid.json +++ b/packs/src/classfeatures/bonus-cantrip-druid.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234418, "modifiedTime": 1672334373750, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!lT8GsPOPgRzDC3QJ" } diff --git a/packs/src/classfeatures/bonus-proficiencies-college-of-lore.json b/packs/src/classfeatures/bonus-proficiencies-college-of-lore.json index 6a25915af2..48e1a62b6c 100644 --- a/packs/src/classfeatures/bonus-proficiencies-college-of-lore.json +++ b/packs/src/classfeatures/bonus-proficiencies-college-of-lore.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234399, "modifiedTime": 1672334370815, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!e9ytGikyLFgwZ5wi" } diff --git a/packs/src/classfeatures/bonus-proficiency-life-domain.json b/packs/src/classfeatures/bonus-proficiency-life-domain.json index 6f60464318..0166fc2586 100644 --- a/packs/src/classfeatures/bonus-proficiency-life-domain.json +++ b/packs/src/classfeatures/bonus-proficiency-life-domain.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -101,7 +106,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!68bYIOvx6rIqnlOW.Dk95lqbXXCUlefZW" } ], "folder": null, @@ -113,5 +119,6 @@ "createdTime": 1661787234335, "modifiedTime": 1672334368160, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!68bYIOvx6rIqnlOW" } diff --git a/packs/src/classfeatures/brutal-critical.json b/packs/src/classfeatures/brutal-critical.json index 6973da583b..d1e9b7c7f4 100644 --- a/packs/src/classfeatures/brutal-critical.json +++ b/packs/src/classfeatures/brutal-critical.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234363, "modifiedTime": 1672334366181, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!L94gyvNpUhUe0rwh" } diff --git a/packs/src/classfeatures/channel-divinity-cleric.json b/packs/src/classfeatures/channel-divinity-cleric.json index 6374f608c4..a5ed463d12 100644 --- a/packs/src/classfeatures/channel-divinity-cleric.json +++ b/packs/src/classfeatures/channel-divinity-cleric.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234388, "modifiedTime": 1672334363709, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!YpiLQEKGalROn7iJ" } diff --git a/packs/src/classfeatures/channel-divinity-paladin.json b/packs/src/classfeatures/channel-divinity-paladin.json index 6732eae46e..1837db2bc0 100644 --- a/packs/src/classfeatures/channel-divinity-paladin.json +++ b/packs/src/classfeatures/channel-divinity-paladin.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234340, "modifiedTime": 1672334361044, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8M7uOPhbTxoxxJSo" } diff --git a/packs/src/classfeatures/channel-divinity-preserve-life.json b/packs/src/classfeatures/channel-divinity-preserve-life.json index 71b76f9220..9bfc0e8bb8 100644 --- a/packs/src/classfeatures/channel-divinity-preserve-life.json +++ b/packs/src/classfeatures/channel-divinity-preserve-life.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -89,5 +94,6 @@ "createdTime": 1661787234408, "modifiedTime": 1672334357483, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hEymt45rICi4f9eL" } diff --git a/packs/src/classfeatures/channel-divinity-sacred-weapon.json b/packs/src/classfeatures/channel-divinity-sacred-weapon.json index 6df2245301..1128edc48a 100644 --- a/packs/src/classfeatures/channel-divinity-sacred-weapon.json +++ b/packs/src/classfeatures/channel-divinity-sacred-weapon.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234441, "modifiedTime": 1672334353069, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!xNN0JMKqlG4hKVYu" } diff --git a/packs/src/classfeatures/channel-divinity-turn-the-unholy.json b/packs/src/classfeatures/channel-divinity-turn-the-unholy.json index 35835a7c68..1c01a3bb10 100644 --- a/packs/src/classfeatures/channel-divinity-turn-the-unholy.json +++ b/packs/src/classfeatures/channel-divinity-turn-the-unholy.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234389, "modifiedTime": 1672334348742, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ZdwGlsJNtc7pGFCd" } diff --git a/packs/src/classfeatures/channel-divinity-turn-undead.json b/packs/src/classfeatures/channel-divinity-turn-undead.json index 91995c8f72..e1da199210 100644 --- a/packs/src/classfeatures/channel-divinity-turn-undead.json +++ b/packs/src/classfeatures/channel-divinity-turn-undead.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234428, "modifiedTime": 1672334343227, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!r91UIgwFdHwkXdia" } diff --git a/packs/src/classfeatures/circle-spells.json b/packs/src/classfeatures/circle-spells.json index 4a3fe0fc28..a4169f20cd 100644 --- a/packs/src/classfeatures/circle-spells.json +++ b/packs/src/classfeatures/circle-spells.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234388, "modifiedTime": 1672334339276, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!YiK59gWSlcQ6Mbdz" } diff --git a/packs/src/classfeatures/cleansing-touch.json b/packs/src/classfeatures/cleansing-touch.json index 6b27f5947b..e63d223311 100644 --- a/packs/src/classfeatures/cleansing-touch.json +++ b/packs/src/classfeatures/cleansing-touch.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234381, "modifiedTime": 1672334336758, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!U7BIPVPsptBmwsnV" } diff --git a/packs/src/classfeatures/countercharm.json b/packs/src/classfeatures/countercharm.json index 3e6504d6ce..939f0dad74 100644 --- a/packs/src/classfeatures/countercharm.json +++ b/packs/src/classfeatures/countercharm.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234378, "modifiedTime": 1672334334533, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!SEJmsjkEhdAZ90ki" } diff --git a/packs/src/classfeatures/cunning-action.json b/packs/src/classfeatures/cunning-action.json index a9def2eba8..e1ae6d77fe 100644 --- a/packs/src/classfeatures/cunning-action.json +++ b/packs/src/classfeatures/cunning-action.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234318, "modifiedTime": 1672334332370, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!01pcLg6PRu5zGrsb" } diff --git a/packs/src/classfeatures/cutting-words.json b/packs/src/classfeatures/cutting-words.json index dae1ca571c..9bf0e4286b 100644 --- a/packs/src/classfeatures/cutting-words.json +++ b/packs/src/classfeatures/cutting-words.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234332, "modifiedTime": 1672334438915, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!5zPmHPQUne7RDfaU" } diff --git a/packs/src/classfeatures/danger-sense.json b/packs/src/classfeatures/danger-sense.json index 37843a40f7..e14e5e9264 100644 --- a/packs/src/classfeatures/danger-sense.json +++ b/packs/src/classfeatures/danger-sense.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234437, "modifiedTime": 1672334435989, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!vt31lWAULygEl7yk" } diff --git a/packs/src/classfeatures/dark-ones-blessing.json b/packs/src/classfeatures/dark-ones-blessing.json index 3accf78625..b2322f6fdd 100644 --- a/packs/src/classfeatures/dark-ones-blessing.json +++ b/packs/src/classfeatures/dark-ones-blessing.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -89,5 +94,6 @@ "createdTime": 1661787234360, "modifiedTime": 1672334433343, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Jv0zu4BtUi8bFCqJ" } diff --git a/packs/src/classfeatures/dark-ones-own-luck.json b/packs/src/classfeatures/dark-ones-own-luck.json index 77c4cb68d9..b0ca93d35b 100644 --- a/packs/src/classfeatures/dark-ones-own-luck.json +++ b/packs/src/classfeatures/dark-ones-own-luck.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234370, "modifiedTime": 1672334430325, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!OQSb0bO1yDI4aiMx" } diff --git a/packs/src/classfeatures/defensive-tactics-escape-the-horde.json b/packs/src/classfeatures/defensive-tactics-escape-the-horde.json index 566ce98b30..58d4071ea2 100644 --- a/packs/src/classfeatures/defensive-tactics-escape-the-horde.json +++ b/packs/src/classfeatures/defensive-tactics-escape-the-horde.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234425, "modifiedTime": 1672334425615, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!pAQMJU5R9SGUmzHU" } diff --git a/packs/src/classfeatures/defensive-tactics-multiattack-defense.json b/packs/src/classfeatures/defensive-tactics-multiattack-defense.json index b0d1c2d0dd..c181d78527 100644 --- a/packs/src/classfeatures/defensive-tactics-multiattack-defense.json +++ b/packs/src/classfeatures/defensive-tactics-multiattack-defense.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234432, "modifiedTime": 1672334422021, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!slelvrm83v9UAKZU" } diff --git a/packs/src/classfeatures/defensive-tactics-steel-will.json b/packs/src/classfeatures/defensive-tactics-steel-will.json index 09169e4b36..09ac54a833 100644 --- a/packs/src/classfeatures/defensive-tactics-steel-will.json +++ b/packs/src/classfeatures/defensive-tactics-steel-will.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234447, "modifiedTime": 1672334416660, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zbHu0NvHuII8lR7W" } diff --git a/packs/src/classfeatures/defensive-tactics.json b/packs/src/classfeatures/defensive-tactics.json index ee8f5f2f13..28573a8414 100644 --- a/packs/src/classfeatures/defensive-tactics.json +++ b/packs/src/classfeatures/defensive-tactics.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234384, "modifiedTime": 1674435878567, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WgQrqjmeyMqDzVt3" } diff --git a/packs/src/classfeatures/deflect-missiles.json b/packs/src/classfeatures/deflect-missiles.json index 28d2983a96..0a1d0872fa 100644 --- a/packs/src/classfeatures/deflect-missiles.json +++ b/packs/src/classfeatures/deflect-missiles.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -89,5 +94,6 @@ "createdTime": 1661787234421, "modifiedTime": 1672334411490, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!mzweVbnsJPQiVkAe" } diff --git a/packs/src/classfeatures/destroy-undead.json b/packs/src/classfeatures/destroy-undead.json index dc6b3b140f..b1eda0e230 100644 --- a/packs/src/classfeatures/destroy-undead.json +++ b/packs/src/classfeatures/destroy-undead.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234368, "modifiedTime": 1672334409107, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!NMy4piwXIpLjYbRE" } diff --git a/packs/src/classfeatures/disciple-of-life.json b/packs/src/classfeatures/disciple-of-life.json index 06de9943a1..32da77cdd5 100644 --- a/packs/src/classfeatures/disciple-of-life.json +++ b/packs/src/classfeatures/disciple-of-life.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234412, "modifiedTime": 1672334406300, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!jF8AFfEMICIJnAkR" } diff --git a/packs/src/classfeatures/divine-domain.json b/packs/src/classfeatures/divine-domain.json index 1315c59b9d..18847d987b 100644 --- a/packs/src/classfeatures/divine-domain.json +++ b/packs/src/classfeatures/divine-domain.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234439, "modifiedTime": 1672334403896, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!x637K2Icp2ZFM1TB" } diff --git a/packs/src/classfeatures/divine-health.json b/packs/src/classfeatures/divine-health.json index e075d9e5c5..7c7be77987 100644 --- a/packs/src/classfeatures/divine-health.json +++ b/packs/src/classfeatures/divine-health.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -101,7 +106,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!dY9yrqkyEDuF0CG2.RjX1etQhr8M2TBgv" } ], "folder": null, @@ -113,5 +119,6 @@ "createdTime": 1661787234398, "modifiedTime": 1672334401345, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dY9yrqkyEDuF0CG2" } diff --git a/packs/src/classfeatures/divine-intervention.json b/packs/src/classfeatures/divine-intervention.json index 91b2be74fb..daaf1d4f5a 100644 --- a/packs/src/classfeatures/divine-intervention.json +++ b/packs/src/classfeatures/divine-intervention.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234401, "modifiedTime": 1672334398751, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eVXqHn0ojWrEuYGU" } diff --git a/packs/src/classfeatures/divine-sense.json b/packs/src/classfeatures/divine-sense.json index 6c04da311b..d5eb87c7d6 100644 --- a/packs/src/classfeatures/divine-sense.json +++ b/packs/src/classfeatures/divine-sense.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234352, "modifiedTime": 1672334396363, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!E8ozg8avUVOX9N7u" } diff --git a/packs/src/classfeatures/divine-smite.json b/packs/src/classfeatures/divine-smite.json index 3207c36693..4befad8efe 100644 --- a/packs/src/classfeatures/divine-smite.json +++ b/packs/src/classfeatures/divine-smite.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -89,5 +94,6 @@ "createdTime": 1661787234442, "modifiedTime": 1672334500311, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ySMPQ6zNSlvkrl2f" } diff --git a/packs/src/classfeatures/divine-strike.json b/packs/src/classfeatures/divine-strike.json index 7e6c0317c5..3c4406b30e 100644 --- a/packs/src/classfeatures/divine-strike.json +++ b/packs/src/classfeatures/divine-strike.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -89,5 +94,6 @@ "createdTime": 1661787234380, "modifiedTime": 1672334497269, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!T6u5z8ZTX6UftXqE" } diff --git a/packs/src/classfeatures/draconic-presence.json b/packs/src/classfeatures/draconic-presence.json index 9ad885cede..027d805572 100644 --- a/packs/src/classfeatures/draconic-presence.json +++ b/packs/src/classfeatures/draconic-presence.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234356, "modifiedTime": 1672334494844, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Gsha4bl0apxqspFy" } diff --git a/packs/src/classfeatures/draconic-resilience.json b/packs/src/classfeatures/draconic-resilience.json index 0c4342a167..d5ada1614c 100644 --- a/packs/src/classfeatures/draconic-resilience.json +++ b/packs/src/classfeatures/draconic-resilience.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -101,7 +106,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!MW1ExvBLm8Hg82aA.Pu89Tsgy2FJjYPQi" } ], "folder": null, @@ -113,5 +119,6 @@ "createdTime": 1661787234366, "modifiedTime": 1672334491854, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MW1ExvBLm8Hg82aA" } diff --git a/packs/src/classfeatures/dragon-ancestor.json b/packs/src/classfeatures/dragon-ancestor.json index 83941070e5..8be3e4f3b2 100644 --- a/packs/src/classfeatures/dragon-ancestor.json +++ b/packs/src/classfeatures/dragon-ancestor.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -101,7 +106,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!EZsonMThTNLZq35j.xI5jjbA2Dlj7L0cd" } ], "folder": null, @@ -113,5 +119,6 @@ "createdTime": 1661787234352, "modifiedTime": 1672334489889, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!EZsonMThTNLZq35j" } diff --git a/packs/src/classfeatures/dragon-wings.json b/packs/src/classfeatures/dragon-wings.json index 1ec6411b6b..d68c7dcebe 100644 --- a/packs/src/classfeatures/dragon-wings.json +++ b/packs/src/classfeatures/dragon-wings.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234324, "modifiedTime": 1672334487367, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3647zjKSE9zFwOXc" } diff --git a/packs/src/classfeatures/druid-circle.json b/packs/src/classfeatures/druid-circle.json index 1cfe6f7cea..2fd770bcbd 100644 --- a/packs/src/classfeatures/druid-circle.json +++ b/packs/src/classfeatures/druid-circle.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234435, "modifiedTime": 1672334485072, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!u6Du2P9s81SWuGbi" } diff --git a/packs/src/classfeatures/druidic.json b/packs/src/classfeatures/druidic.json index 2257b80640..97f67ed532 100644 --- a/packs/src/classfeatures/druidic.json +++ b/packs/src/classfeatures/druidic.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -22,6 +27,7 @@ "units": "" }, "cover": null, + "crewed": false, "target": { "value": null, "width": null, @@ -74,44 +80,16 @@ }, "flags": {}, "img": "icons/sundries/documents/document-torn-diagram-tan.webp", - "effects": [ - { - "_id": "iIQXR8VezkvbkFoS", - "changes": [ - { - "key": "system.traits.languages.value", - "mode": 2, - "value": "druidic", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "icon": "icons/sundries/documents/document-torn-diagram-tan.webp", - "label": "Druidic", - "origin": "Item.LzJ5ayHt0OlSVGxi", - "transfer": true, - "flags": {}, - "tint": null, - "sort": 0 - } - ], + "effects": [], "folder": null, "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", + "systemVersion": "2.4.0", + "coreVersion": "10.303", "createdTime": 1661787234364, - "modifiedTime": 1672334482154, + "modifiedTime": 1699988234529, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LzJ5ayHt0OlSVGxi" } diff --git a/packs/src/classfeatures/eldritch-invocations.json b/packs/src/classfeatures/eldritch-invocations.json index 4ccb1b8b25..c44f16f45f 100644 --- a/packs/src/classfeatures/eldritch-invocations.json +++ b/packs/src/classfeatures/eldritch-invocations.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234340, "modifiedTime": 1672334479180, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8MlxM2nEfE3Q0EVk" } diff --git a/packs/src/classfeatures/eldritch-master.json b/packs/src/classfeatures/eldritch-master.json index 12ab995a10..11178c1c60 100644 --- a/packs/src/classfeatures/eldritch-master.json +++ b/packs/src/classfeatures/eldritch-master.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234320, "modifiedTime": 1672334475616, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!0C04rwyvoknvFYiy" } diff --git a/packs/src/classfeatures/elemental-affinity.json b/packs/src/classfeatures/elemental-affinity.json index 52847c09ba..e45e0dc557 100644 --- a/packs/src/classfeatures/elemental-affinity.json +++ b/packs/src/classfeatures/elemental-affinity.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -89,5 +94,6 @@ "createdTime": 1661787234440, "modifiedTime": 1672334472794, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!x6eEZ9GUsuOcEa3G" } diff --git a/packs/src/classfeatures/elusive.json b/packs/src/classfeatures/elusive.json index b93b36ca61..e56e27785c 100644 --- a/packs/src/classfeatures/elusive.json +++ b/packs/src/classfeatures/elusive.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234362, "modifiedTime": 1672334469051, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!L7nJSRosos8sHJH9" } diff --git a/packs/src/classfeatures/empowered-evocation.json b/packs/src/classfeatures/empowered-evocation.json index 0ccafc891a..c4bccbdcac 100644 --- a/packs/src/classfeatures/empowered-evocation.json +++ b/packs/src/classfeatures/empowered-evocation.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -89,5 +94,6 @@ "createdTime": 1661787234336, "modifiedTime": 1672334465953, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7O85kj6uDEG5NzUE" } diff --git a/packs/src/classfeatures/evasion.json b/packs/src/classfeatures/evasion.json index 494d215bd2..5be4accd27 100644 --- a/packs/src/classfeatures/evasion.json +++ b/packs/src/classfeatures/evasion.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234392, "modifiedTime": 1672334462947, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!a4P4DNMmH8CqSNkC" } diff --git a/packs/src/classfeatures/evocation-savant.json b/packs/src/classfeatures/evocation-savant.json index 6409a648d6..c2671fe8fd 100644 --- a/packs/src/classfeatures/evocation-savant.json +++ b/packs/src/classfeatures/evocation-savant.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234338, "modifiedTime": 1672334460025, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7uzJ2JkmsdRGLra3" } diff --git a/packs/src/classfeatures/expanded-spell-list.json b/packs/src/classfeatures/expanded-spell-list.json index ec3f68d081..9788cc8423 100644 --- a/packs/src/classfeatures/expanded-spell-list.json +++ b/packs/src/classfeatures/expanded-spell-list.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234328, "modifiedTime": 1672334457290, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!4IHsIcBhAVDt8QjY" } diff --git a/packs/src/classfeatures/expertise-bard.json b/packs/src/classfeatures/expertise-bard.json index 012f3a9e3b..80fb88fb2d 100644 --- a/packs/src/classfeatures/expertise-bard.json +++ b/packs/src/classfeatures/expertise-bard.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234393, "modifiedTime": 1672334546632, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!aQLg7BWdRnm4Hr9S" } diff --git a/packs/src/classfeatures/expertise-rogue.json b/packs/src/classfeatures/expertise-rogue.json index 44442f8cb6..94daca0551 100644 --- a/packs/src/classfeatures/expertise-rogue.json +++ b/packs/src/classfeatures/expertise-rogue.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234328, "modifiedTime": 1672334544722, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3sYPftQKnbbVnHrh" } diff --git a/packs/src/classfeatures/extra-attack-fighter.json b/packs/src/classfeatures/extra-attack-fighter.json index 4944d1a874..e2505ddc0c 100644 --- a/packs/src/classfeatures/extra-attack-fighter.json +++ b/packs/src/classfeatures/extra-attack-fighter.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234427, "modifiedTime": 1672334539181, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!q9g1MLXuLZyxjQMg" } diff --git a/packs/src/classfeatures/extra-attack.json b/packs/src/classfeatures/extra-attack.json index adf50a64da..37f7697145 100644 --- a/packs/src/classfeatures/extra-attack.json +++ b/packs/src/classfeatures/extra-attack.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234386, "modifiedTime": 1672334542377, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XogoBnFWmCAHXppo" } diff --git a/packs/src/classfeatures/fast-hands.json b/packs/src/classfeatures/fast-hands.json index 014b5449b6..3711c602b3 100644 --- a/packs/src/classfeatures/fast-hands.json +++ b/packs/src/classfeatures/fast-hands.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234406, "modifiedTime": 1672334536534, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ga3dt2zrCn2MHK8R" } diff --git a/packs/src/classfeatures/fast-movement.json b/packs/src/classfeatures/fast-movement.json index 6aef20a039..b05056f223 100644 --- a/packs/src/classfeatures/fast-movement.json +++ b/packs/src/classfeatures/fast-movement.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -101,7 +106,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!Kl6zifJ5OmdHlOi2.TIBmPKKnAAiWYuN4" } ], "folder": null, @@ -113,5 +119,6 @@ "createdTime": 1661787234361, "modifiedTime": 1672334533843, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Kl6zifJ5OmdHlOi2" } diff --git a/packs/src/classfeatures/favored-enemy.json b/packs/src/classfeatures/favored-enemy.json index d0d2b09b70..ec58b7d1fe 100644 --- a/packs/src/classfeatures/favored-enemy.json +++ b/packs/src/classfeatures/favored-enemy.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234330, "modifiedTime": 1672334531486, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!4Vpj9vCOB37GtXk6" } diff --git a/packs/src/classfeatures/feral-instinct.json b/packs/src/classfeatures/feral-instinct.json index 75fa0ad94a..b70abc2ba4 100644 --- a/packs/src/classfeatures/feral-instinct.json +++ b/packs/src/classfeatures/feral-instinct.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -101,7 +106,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!NlXslw4yAqmKZWtN.q7TkJQX7PeVOzTQH" } ], "folder": null, @@ -113,5 +119,6 @@ "createdTime": 1661787234369, "modifiedTime": 1672334529716, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!NlXslw4yAqmKZWtN" } diff --git a/packs/src/classfeatures/feral-senses.json b/packs/src/classfeatures/feral-senses.json index ce2ba1dd2c..ec769a351b 100644 --- a/packs/src/classfeatures/feral-senses.json +++ b/packs/src/classfeatures/feral-senses.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234373, "modifiedTime": 1672334526998, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!QBVmY56RMQuh6C8h" } diff --git a/packs/src/classfeatures/fiendish-resilience.json b/packs/src/classfeatures/fiendish-resilience.json index f02287d520..7bdeaf666b 100644 --- a/packs/src/classfeatures/fiendish-resilience.json +++ b/packs/src/classfeatures/fiendish-resilience.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -101,7 +106,8 @@ "origin": "Item.C2lYHOGH2UpEifk7", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!items.effects!9UZ2WjUF2k58CQug.reg3sjReHspgkd0I" } ], "folder": null, @@ -113,5 +119,6 @@ "createdTime": 1661787234343, "modifiedTime": 1672334524883, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9UZ2WjUF2k58CQug" } diff --git a/packs/src/classfeatures/fighting-style-archery.json b/packs/src/classfeatures/fighting-style-archery.json index 5a98003ea4..d2494be778 100644 --- a/packs/src/classfeatures/fighting-style-archery.json +++ b/packs/src/classfeatures/fighting-style-archery.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -97,7 +102,8 @@ "origin": "Item.SDsWYh0xtS6nWuH8", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!items.effects!8YwPFv3UAPjWVDNf.F0Bh4n8Tu1ZZnwSr" } ], "folder": null, @@ -113,5 +119,6 @@ "createdTime": 1661787234341, "modifiedTime": 1672334637061, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8YwPFv3UAPjWVDNf" } diff --git a/packs/src/classfeatures/fighting-style-defense.json b/packs/src/classfeatures/fighting-style-defense.json index a8404de0ef..e702a06b4d 100644 --- a/packs/src/classfeatures/fighting-style-defense.json +++ b/packs/src/classfeatures/fighting-style-defense.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -101,7 +106,8 @@ "origin": "Item.4mQUDmiDBePkQD6Y", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!items.effects!zSlV0O2rQMdoq6pB.U3so0zDcVt4sIBRz" } ], "folder": null, @@ -113,5 +119,6 @@ "createdTime": 1661787234445, "modifiedTime": 1672334633452, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zSlV0O2rQMdoq6pB" } diff --git a/packs/src/classfeatures/fighting-style-dueling.json b/packs/src/classfeatures/fighting-style-dueling.json index 32c0b58c2e..bda0c7a1d5 100644 --- a/packs/src/classfeatures/fighting-style-dueling.json +++ b/packs/src/classfeatures/fighting-style-dueling.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -97,7 +102,8 @@ "origin": "Item.UOgk9fNed1qugAqH", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!items.effects!hCop9uJrWhF1QPb4.B5KM6oYsKC7vRMgG" } ], "folder": null, @@ -113,5 +119,6 @@ "createdTime": 1661787234407, "modifiedTime": 1672334629389, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hCop9uJrWhF1QPb4" } diff --git a/packs/src/classfeatures/fighting-style-fighter.json b/packs/src/classfeatures/fighting-style-fighter.json index ded02d299e..6600185bc1 100644 --- a/packs/src/classfeatures/fighting-style-fighter.json +++ b/packs/src/classfeatures/fighting-style-fighter.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234404, "modifiedTime": 1672334522548, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!fbExzwNwEAl2kW9c" } diff --git a/packs/src/classfeatures/fighting-style-great-weapon-fighting.json b/packs/src/classfeatures/fighting-style-great-weapon-fighting.json index aa8fea75fa..fce4e73819 100644 --- a/packs/src/classfeatures/fighting-style-great-weapon-fighting.json +++ b/packs/src/classfeatures/fighting-style-great-weapon-fighting.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234325, "modifiedTime": 1672334623705, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3Nc6u9pyStByuJsm" } diff --git a/packs/src/classfeatures/fighting-style-paladin.json b/packs/src/classfeatures/fighting-style-paladin.json index 2fa748a9ea..3cbe398531 100644 --- a/packs/src/classfeatures/fighting-style-paladin.json +++ b/packs/src/classfeatures/fighting-style-paladin.json @@ -10,7 +10,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ }, "folder": null, "sort": 0, - "_id": "Ho7dVxBlOYFlfBHk" + "_id": "Ho7dVxBlOYFlfBHk", + "_key": "!items!Ho7dVxBlOYFlfBHk" } diff --git a/packs/src/classfeatures/fighting-style-protection.json b/packs/src/classfeatures/fighting-style-protection.json index c5fd4a375d..104fda554b 100644 --- a/packs/src/classfeatures/fighting-style-protection.json +++ b/packs/src/classfeatures/fighting-style-protection.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234319, "modifiedTime": 1672334618877, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!06NVMYf58Z76O85O" } diff --git a/packs/src/classfeatures/fighting-style-ranger.json b/packs/src/classfeatures/fighting-style-ranger.json index 134c92ba2c..d89850a934 100644 --- a/packs/src/classfeatures/fighting-style-ranger.json +++ b/packs/src/classfeatures/fighting-style-ranger.json @@ -10,7 +10,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ }, "folder": null, "sort": 0, - "_id": "nJA3ISVmyj3uPRVM" + "_id": "nJA3ISVmyj3uPRVM", + "_key": "!items!nJA3ISVmyj3uPRVM" } diff --git a/packs/src/classfeatures/fighting-style-two-weapon-fighting.json b/packs/src/classfeatures/fighting-style-two-weapon-fighting.json index b08fca8ab6..8f41158d21 100644 --- a/packs/src/classfeatures/fighting-style-two-weapon-fighting.json +++ b/packs/src/classfeatures/fighting-style-two-weapon-fighting.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234419, "modifiedTime": 1672334614676, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!mHcSjcHJ8oZu3hkb" } diff --git a/packs/src/classfeatures/foe-slayer.json b/packs/src/classfeatures/foe-slayer.json index 367fd38a87..75f7064f4c 100644 --- a/packs/src/classfeatures/foe-slayer.json +++ b/packs/src/classfeatures/foe-slayer.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -89,5 +94,6 @@ "createdTime": 1661787234324, "modifiedTime": 1672334609382, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3CaP1vFHVR8LgHjx" } diff --git a/packs/src/classfeatures/font-of-inspiration.json b/packs/src/classfeatures/font-of-inspiration.json index a74d296620..06f55ff6ac 100644 --- a/packs/src/classfeatures/font-of-inspiration.json +++ b/packs/src/classfeatures/font-of-inspiration.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234326, "modifiedTime": 1672334606443, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3VDZGs5Ug3hIE322" } diff --git a/packs/src/classfeatures/font-of-magic.json b/packs/src/classfeatures/font-of-magic.json index 4162ba7612..a127ea4a14 100644 --- a/packs/src/classfeatures/font-of-magic.json +++ b/packs/src/classfeatures/font-of-magic.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234363, "modifiedTime": 1672334604066, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LBKChJY5n02Afhnq" } diff --git a/packs/src/classfeatures/frenzy.json b/packs/src/classfeatures/frenzy.json index b3af0fc0ad..6395725d79 100644 --- a/packs/src/classfeatures/frenzy.json +++ b/packs/src/classfeatures/frenzy.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234348, "modifiedTime": 1672334589172, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!CkbbAckeCtyHXEnL" } diff --git a/packs/src/classfeatures/grappler.json b/packs/src/classfeatures/grappler.json index e3a66d026f..3b6f67c6bc 100644 --- a/packs/src/classfeatures/grappler.json +++ b/packs/src/classfeatures/grappler.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234351, "modifiedTime": 1672334596059, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Dop1RcU5UdhSVLYS" } diff --git a/packs/src/classfeatures/hide-in-plain-sight.json b/packs/src/classfeatures/hide-in-plain-sight.json index 226cd57d33..3501f395cd 100644 --- a/packs/src/classfeatures/hide-in-plain-sight.json +++ b/packs/src/classfeatures/hide-in-plain-sight.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -101,7 +106,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!r0unvWK0lPsDthDx.7if4vIkT84Sw2zFm" } ], "folder": null, @@ -113,5 +119,6 @@ "createdTime": 1661787234428, "modifiedTime": 1672334583742, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!r0unvWK0lPsDthDx" } diff --git a/packs/src/classfeatures/holy-nimbus.json b/packs/src/classfeatures/holy-nimbus.json index 3e185fdd13..52e2ea13df 100644 --- a/packs/src/classfeatures/holy-nimbus.json +++ b/packs/src/classfeatures/holy-nimbus.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -89,5 +94,6 @@ "createdTime": 1661787234345, "modifiedTime": 1672334581365, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ANE5gjojvhNEagzz" } diff --git a/packs/src/classfeatures/hunters-prey-colossus-slayer.json b/packs/src/classfeatures/hunters-prey-colossus-slayer.json index 3fbcba4a64..c23f549519 100644 --- a/packs/src/classfeatures/hunters-prey-colossus-slayer.json +++ b/packs/src/classfeatures/hunters-prey-colossus-slayer.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -89,5 +94,6 @@ "createdTime": 1661787234332, "modifiedTime": 1672334575837, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!5gx1O0sxK08awEO9" } diff --git a/packs/src/classfeatures/hunters-prey-giant-killer.json b/packs/src/classfeatures/hunters-prey-giant-killer.json index f8743393e2..85c4ca0219 100644 --- a/packs/src/classfeatures/hunters-prey-giant-killer.json +++ b/packs/src/classfeatures/hunters-prey-giant-killer.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234379, "modifiedTime": 1672334570644, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!StfmqK1twVfukpa0" } diff --git a/packs/src/classfeatures/hunters-prey-horde-breaker.json b/packs/src/classfeatures/hunters-prey-horde-breaker.json index 59192c480a..61f3c8f99a 100644 --- a/packs/src/classfeatures/hunters-prey-horde-breaker.json +++ b/packs/src/classfeatures/hunters-prey-horde-breaker.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234347, "modifiedTime": 1672334566530, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!C6sHdDGmCMo0cYHd" } diff --git a/packs/src/classfeatures/hunters-prey.json b/packs/src/classfeatures/hunters-prey.json index 9a3f7d091a..948f2c3af3 100644 --- a/packs/src/classfeatures/hunters-prey.json +++ b/packs/src/classfeatures/hunters-prey.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234439, "modifiedTime": 1674435889165, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!wrxIW5sDfmGr3u5s" } diff --git a/packs/src/classfeatures/hurl-through-hell.json b/packs/src/classfeatures/hurl-through-hell.json index 675825b923..53fa1461be 100644 --- a/packs/src/classfeatures/hurl-through-hell.json +++ b/packs/src/classfeatures/hurl-through-hell.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -89,5 +94,6 @@ "createdTime": 1661787234392, "modifiedTime": 1672334835479, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!aCUmlnHlUPHS0rdu" } diff --git a/packs/src/classfeatures/improved-critical.json b/packs/src/classfeatures/improved-critical.json index 3401d81ee4..d895bd027d 100644 --- a/packs/src/classfeatures/improved-critical.json +++ b/packs/src/classfeatures/improved-critical.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234387, "modifiedTime": 1672334832856, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!YgLQV1O849wE5TgM" } diff --git a/packs/src/classfeatures/improved-divine-smite.json b/packs/src/classfeatures/improved-divine-smite.json index 36c1d512a5..88538d0d65 100644 --- a/packs/src/classfeatures/improved-divine-smite.json +++ b/packs/src/classfeatures/improved-divine-smite.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -106,7 +111,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!FAk41RPCTcvCk6KI.yvLL91omI6kHMHau" } ], "folder": null, @@ -118,5 +124,6 @@ "createdTime": 1661787234354, "modifiedTime": 1672334830939, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!FAk41RPCTcvCk6KI" } diff --git a/packs/src/classfeatures/indomitable-might.json b/packs/src/classfeatures/indomitable-might.json index 1982229f35..eaca9c3b7d 100644 --- a/packs/src/classfeatures/indomitable-might.json +++ b/packs/src/classfeatures/indomitable-might.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234372, "modifiedTime": 1672334825900, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Q1exex5ALteprrPo" } diff --git a/packs/src/classfeatures/indomitable.json b/packs/src/classfeatures/indomitable.json index 4621ee0946..01d29b78a4 100644 --- a/packs/src/classfeatures/indomitable.json +++ b/packs/src/classfeatures/indomitable.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234333, "modifiedTime": 1672334829021, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!653ZHbNcmm7ZGXbw" } diff --git a/packs/src/classfeatures/intimidating-presence.json b/packs/src/classfeatures/intimidating-presence.json index bd583624af..1f0bb44c99 100644 --- a/packs/src/classfeatures/intimidating-presence.json +++ b/packs/src/classfeatures/intimidating-presence.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234365, "modifiedTime": 1672334822316, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!M6VSMzVtKPhh8B0i" } diff --git a/packs/src/classfeatures/invocation-agonizing-blast.json b/packs/src/classfeatures/invocation-agonizing-blast.json index 0eb227d5df..8ef93c6a88 100644 --- a/packs/src/classfeatures/invocation-agonizing-blast.json +++ b/packs/src/classfeatures/invocation-agonizing-blast.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234323, "modifiedTime": 1672334819802, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!2fyuw7MiCnocDeAU" } diff --git a/packs/src/classfeatures/invocation-armor-of-shadows.json b/packs/src/classfeatures/invocation-armor-of-shadows.json index 33d26675d4..22830c2ef1 100644 --- a/packs/src/classfeatures/invocation-armor-of-shadows.json +++ b/packs/src/classfeatures/invocation-armor-of-shadows.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234394, "modifiedTime": 1672334815380, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!alUqO6c6OEKFQJdb" } diff --git a/packs/src/classfeatures/invocation-ascendant-step.json b/packs/src/classfeatures/invocation-ascendant-step.json index fb60469a21..4132d5a7d9 100644 --- a/packs/src/classfeatures/invocation-ascendant-step.json +++ b/packs/src/classfeatures/invocation-ascendant-step.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234375, "modifiedTime": 1672334811257, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!QEuH5TeBN4PPYT2g" } diff --git a/packs/src/classfeatures/invocation-beast-speech.json b/packs/src/classfeatures/invocation-beast-speech.json index 34d1bc60fa..4f57ebea26 100644 --- a/packs/src/classfeatures/invocation-beast-speech.json +++ b/packs/src/classfeatures/invocation-beast-speech.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234333, "modifiedTime": 1672334807910, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!61kXR1sniXHjvN17" } diff --git a/packs/src/classfeatures/invocation-beguiling-influence.json b/packs/src/classfeatures/invocation-beguiling-influence.json index f52f071454..764bd8911f 100644 --- a/packs/src/classfeatures/invocation-beguiling-influence.json +++ b/packs/src/classfeatures/invocation-beguiling-influence.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234401, "modifiedTime": 1672334803925, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eNvpIaSnJUdF8fHl" } diff --git a/packs/src/classfeatures/invocation-bewitching-whispers.json b/packs/src/classfeatures/invocation-bewitching-whispers.json index 1051237934..f5602268fd 100644 --- a/packs/src/classfeatures/invocation-bewitching-whispers.json +++ b/packs/src/classfeatures/invocation-bewitching-whispers.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234362, "modifiedTime": 1672334800107, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!KygHql3cTj4IRrvZ" } diff --git a/packs/src/classfeatures/invocation-book-of-ancient-secrets.json b/packs/src/classfeatures/invocation-book-of-ancient-secrets.json index f98dde933b..d8a075eb39 100644 --- a/packs/src/classfeatures/invocation-book-of-ancient-secrets.json +++ b/packs/src/classfeatures/invocation-book-of-ancient-secrets.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234347, "modifiedTime": 1672334793588, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!CFIYXDmbmSP8BXjN" } diff --git a/packs/src/classfeatures/invocation-chains-of-carceri.json b/packs/src/classfeatures/invocation-chains-of-carceri.json index 26678c76e4..2f8ce03175 100644 --- a/packs/src/classfeatures/invocation-chains-of-carceri.json +++ b/packs/src/classfeatures/invocation-chains-of-carceri.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234371, "modifiedTime": 1672334786402, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Phy02H5x0TKHd7T3" } diff --git a/packs/src/classfeatures/invocation-devils-sight.json b/packs/src/classfeatures/invocation-devils-sight.json index 0d0e6eaf67..465ab9c27b 100644 --- a/packs/src/classfeatures/invocation-devils-sight.json +++ b/packs/src/classfeatures/invocation-devils-sight.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -101,7 +106,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!3sN91lT1R3oxcDKd.3JYlSTG0olbm1FQC" } ], "folder": null, @@ -113,5 +119,6 @@ "createdTime": 1661787234327, "modifiedTime": 1672334781645, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3sN91lT1R3oxcDKd" } diff --git a/packs/src/classfeatures/invocation-dreadful-word.json b/packs/src/classfeatures/invocation-dreadful-word.json index ee0beaf091..54b3839b99 100644 --- a/packs/src/classfeatures/invocation-dreadful-word.json +++ b/packs/src/classfeatures/invocation-dreadful-word.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234374, "modifiedTime": 1672334777594, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!QBk1RsuTIEF4GEBC" } diff --git a/packs/src/classfeatures/invocation-eldritch-sight.json b/packs/src/classfeatures/invocation-eldritch-sight.json index e2de9d10ff..bcc1f73abb 100644 --- a/packs/src/classfeatures/invocation-eldritch-sight.json +++ b/packs/src/classfeatures/invocation-eldritch-sight.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234395, "modifiedTime": 1672334772895, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!bbUEsCPTLzbbwK6o" } diff --git a/packs/src/classfeatures/invocation-eldritch-spear.json b/packs/src/classfeatures/invocation-eldritch-spear.json index a5efe456b7..000127203f 100644 --- a/packs/src/classfeatures/invocation-eldritch-spear.json +++ b/packs/src/classfeatures/invocation-eldritch-spear.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234427, "modifiedTime": 1672334768328, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!r01WtcxTg4yTHm9m" } diff --git a/packs/src/classfeatures/invocation-eyes-of-the-rune-keeper.json b/packs/src/classfeatures/invocation-eyes-of-the-rune-keeper.json index 3598d3994f..cb02bf082f 100644 --- a/packs/src/classfeatures/invocation-eyes-of-the-rune-keeper.json +++ b/packs/src/classfeatures/invocation-eyes-of-the-rune-keeper.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234417, "modifiedTime": 1672334764690, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!lEZKbWaVrSljRa9n" } diff --git a/packs/src/classfeatures/invocation-fiendish-vigor.json b/packs/src/classfeatures/invocation-fiendish-vigor.json index cc5d2fb605..68586bc90f 100644 --- a/packs/src/classfeatures/invocation-fiendish-vigor.json +++ b/packs/src/classfeatures/invocation-fiendish-vigor.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -89,5 +94,6 @@ "createdTime": 1661787234410, "modifiedTime": 1672334758806, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!id0gmGvzNZBEdzbx" } diff --git a/packs/src/classfeatures/invocation-gaze-of-two-minds.json b/packs/src/classfeatures/invocation-gaze-of-two-minds.json index 912d067f78..82c174cec9 100644 --- a/packs/src/classfeatures/invocation-gaze-of-two-minds.json +++ b/packs/src/classfeatures/invocation-gaze-of-two-minds.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234334, "modifiedTime": 1672334753800, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!65ReXU4ZWqcSs3Cm" } diff --git a/packs/src/classfeatures/invocation-lifedrinker.json b/packs/src/classfeatures/invocation-lifedrinker.json index 49b96ec414..f3b9d31ad9 100644 --- a/packs/src/classfeatures/invocation-lifedrinker.json +++ b/packs/src/classfeatures/invocation-lifedrinker.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234446, "modifiedTime": 1672334750254, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zUIAzBnyt0NDvVXb" } diff --git a/packs/src/classfeatures/invocation-mask-of-many-faces.json b/packs/src/classfeatures/invocation-mask-of-many-faces.json index c41bb6af8a..49fbe9a473 100644 --- a/packs/src/classfeatures/invocation-mask-of-many-faces.json +++ b/packs/src/classfeatures/invocation-mask-of-many-faces.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234367, "modifiedTime": 1672334746734, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MhJfdBl1B7PdU4oZ" } diff --git a/packs/src/classfeatures/invocation-master-of-myriad-forms.json b/packs/src/classfeatures/invocation-master-of-myriad-forms.json index 5e50d8e44e..2bc859618e 100644 --- a/packs/src/classfeatures/invocation-master-of-myriad-forms.json +++ b/packs/src/classfeatures/invocation-master-of-myriad-forms.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234419, "modifiedTime": 1672334743046, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!lxfdjLer3uKjyZqU" } diff --git a/packs/src/classfeatures/invocation-minions-of-chaos.json b/packs/src/classfeatures/invocation-minions-of-chaos.json index 0fc9c4d188..151b9c8b04 100644 --- a/packs/src/classfeatures/invocation-minions-of-chaos.json +++ b/packs/src/classfeatures/invocation-minions-of-chaos.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234376, "modifiedTime": 1672334738227, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!QnRKYXb2bXpnNd2k" } diff --git a/packs/src/classfeatures/invocation-mire-the-mind.json b/packs/src/classfeatures/invocation-mire-the-mind.json index 8ce6d7c6e5..1dd6d547e7 100644 --- a/packs/src/classfeatures/invocation-mire-the-mind.json +++ b/packs/src/classfeatures/invocation-mire-the-mind.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234350, "modifiedTime": 1672334733729, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!DjXi0IkCTbJx1gsp" } diff --git a/packs/src/classfeatures/invocation-misty-visions.json b/packs/src/classfeatures/invocation-misty-visions.json index fd4da2497f..bd4dccd547 100644 --- a/packs/src/classfeatures/invocation-misty-visions.json +++ b/packs/src/classfeatures/invocation-misty-visions.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234414, "modifiedTime": 1672334728348, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!k5DU0mMuYVHejiqz" } diff --git a/packs/src/classfeatures/invocation-one-with-shadows.json b/packs/src/classfeatures/invocation-one-with-shadows.json index 002f87c021..f735f92786 100644 --- a/packs/src/classfeatures/invocation-one-with-shadows.json +++ b/packs/src/classfeatures/invocation-one-with-shadows.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234361, "modifiedTime": 1672334722931, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!KfnUyjUWAk0bAAus" } diff --git a/packs/src/classfeatures/invocation-otherworldly-leap.json b/packs/src/classfeatures/invocation-otherworldly-leap.json index bbfea34711..a9ac308a5d 100644 --- a/packs/src/classfeatures/invocation-otherworldly-leap.json +++ b/packs/src/classfeatures/invocation-otherworldly-leap.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234342, "modifiedTime": 1672334718289, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8zciiglzEOZo7DDN" } diff --git a/packs/src/classfeatures/invocation-repelling-blast.json b/packs/src/classfeatures/invocation-repelling-blast.json index 17c7cd36cc..860bf143c7 100644 --- a/packs/src/classfeatures/invocation-repelling-blast.json +++ b/packs/src/classfeatures/invocation-repelling-blast.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234430, "modifiedTime": 1672334714365, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!rdBPd6CwqXT64iJM" } diff --git a/packs/src/classfeatures/invocation-sculptor-of-flesh.json b/packs/src/classfeatures/invocation-sculptor-of-flesh.json index 639cc57d36..fb0e8c624e 100644 --- a/packs/src/classfeatures/invocation-sculptor-of-flesh.json +++ b/packs/src/classfeatures/invocation-sculptor-of-flesh.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234385, "modifiedTime": 1672334708523, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Xa2MLUJGCReJ28B7" } diff --git a/packs/src/classfeatures/invocation-sign-of-ill-omen.json b/packs/src/classfeatures/invocation-sign-of-ill-omen.json index 78df8fbdc8..54240ee54a 100644 --- a/packs/src/classfeatures/invocation-sign-of-ill-omen.json +++ b/packs/src/classfeatures/invocation-sign-of-ill-omen.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234398, "modifiedTime": 1672334704449, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dTSV0xZMpY5CxkRk" } diff --git a/packs/src/classfeatures/invocation-thief-of-five-fates.json b/packs/src/classfeatures/invocation-thief-of-five-fates.json index 6db1191524..39eade0c3a 100644 --- a/packs/src/classfeatures/invocation-thief-of-five-fates.json +++ b/packs/src/classfeatures/invocation-thief-of-five-fates.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234430, "modifiedTime": 1672334699386, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!rhbwDZ9XNTmdkX2u" } diff --git a/packs/src/classfeatures/invocation-thirsting-blade.json b/packs/src/classfeatures/invocation-thirsting-blade.json index 2f4c645318..2e3fa904ee 100644 --- a/packs/src/classfeatures/invocation-thirsting-blade.json +++ b/packs/src/classfeatures/invocation-thirsting-blade.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234426, "modifiedTime": 1672334695379, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!pJADgAxxefgcATWr" } diff --git a/packs/src/classfeatures/invocation-visions-of-distant-realms.json b/packs/src/classfeatures/invocation-visions-of-distant-realms.json index 0bd670b0e8..2a1c94cd68 100644 --- a/packs/src/classfeatures/invocation-visions-of-distant-realms.json +++ b/packs/src/classfeatures/invocation-visions-of-distant-realms.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234446, "modifiedTime": 1672334691507, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zYIdNAjqRyhS6qWs" } diff --git a/packs/src/classfeatures/invocation-voice-of-the-chain-master.json b/packs/src/classfeatures/invocation-voice-of-the-chain-master.json index f7ec96af91..59bb25e18b 100644 --- a/packs/src/classfeatures/invocation-voice-of-the-chain-master.json +++ b/packs/src/classfeatures/invocation-voice-of-the-chain-master.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234414, "modifiedTime": 1672334686373, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!k5M8gsl7MMcdjOjs" } diff --git a/packs/src/classfeatures/invocation-whispers-of-the-grave.json b/packs/src/classfeatures/invocation-whispers-of-the-grave.json index aa75515cf3..10452ea9f7 100644 --- a/packs/src/classfeatures/invocation-whispers-of-the-grave.json +++ b/packs/src/classfeatures/invocation-whispers-of-the-grave.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234405, "modifiedTime": 1672334681694, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gFjxo01hAN4c9hDG" } diff --git a/packs/src/classfeatures/invocation-witch-sight.json b/packs/src/classfeatures/invocation-witch-sight.json index 6d32244dc6..a7af8bf7d6 100644 --- a/packs/src/classfeatures/invocation-witch-sight.json +++ b/packs/src/classfeatures/invocation-witch-sight.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234432, "modifiedTime": 1672334675903, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!snsjxGfmzWfZR5Nh" } diff --git a/packs/src/classfeatures/jack-of-all-trades.json b/packs/src/classfeatures/jack-of-all-trades.json index 9bfb79c931..dc7e7c8ed8 100644 --- a/packs/src/classfeatures/jack-of-all-trades.json +++ b/packs/src/classfeatures/jack-of-all-trades.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -101,7 +106,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!ezWijmCnlnQ9ZRX2.K4xQzXl1Z4zMnyOa" } ], "folder": null, @@ -113,5 +119,6 @@ "createdTime": 1661787234402, "modifiedTime": 1672334906819, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ezWijmCnlnQ9ZRX2" } diff --git a/packs/src/classfeatures/ki-diamond-soul.json b/packs/src/classfeatures/ki-diamond-soul.json index 1dbd3a7f97..cf7c24c3c6 100644 --- a/packs/src/classfeatures/ki-diamond-soul.json +++ b/packs/src/classfeatures/ki-diamond-soul.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -101,7 +106,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!7D2EkLdISwShEDlN.v6jhyPoAYRIIXBG1" } ], "folder": null, @@ -113,5 +119,6 @@ "createdTime": 1661787234336, "modifiedTime": 1672334898763, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7D2EkLdISwShEDlN" } diff --git a/packs/src/classfeatures/ki-empowered-strikes.json b/packs/src/classfeatures/ki-empowered-strikes.json index a29b85a810..40a4f59895 100644 --- a/packs/src/classfeatures/ki-empowered-strikes.json +++ b/packs/src/classfeatures/ki-empowered-strikes.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234337, "modifiedTime": 1672334901681, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7flZKruSSu6dHg6D" } diff --git a/packs/src/classfeatures/ki-empty-body.json b/packs/src/classfeatures/ki-empty-body.json index 7fef9e4b9c..01989be588 100644 --- a/packs/src/classfeatures/ki-empty-body.json +++ b/packs/src/classfeatures/ki-empty-body.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -167,7 +172,8 @@ "origin": "Item.xqRleciuHDZlYCl6", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!items.effects!3jwFt3hSqDswBlOH.4dvYtqvbQGDsVi51" } ], "folder": null, @@ -179,5 +185,6 @@ "createdTime": 1661787234326, "modifiedTime": 1672334894583, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3jwFt3hSqDswBlOH" } diff --git a/packs/src/classfeatures/ki-flurry-of-blows.json b/packs/src/classfeatures/ki-flurry-of-blows.json index c1e5c35407..97b3063775 100644 --- a/packs/src/classfeatures/ki-flurry-of-blows.json +++ b/packs/src/classfeatures/ki-flurry-of-blows.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234331, "modifiedTime": 1672334890974, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!5MwNlVZK7m6VolOH" } diff --git a/packs/src/classfeatures/ki-patient-defense.json b/packs/src/classfeatures/ki-patient-defense.json index c1e2eee119..5594583e43 100644 --- a/packs/src/classfeatures/ki-patient-defense.json +++ b/packs/src/classfeatures/ki-patient-defense.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234380, "modifiedTime": 1672334887274, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!TDglPcxIVEzvVSgK" } diff --git a/packs/src/classfeatures/ki-quivering-palm.json b/packs/src/classfeatures/ki-quivering-palm.json index cf83274127..68900c7a2c 100644 --- a/packs/src/classfeatures/ki-quivering-palm.json +++ b/packs/src/classfeatures/ki-quivering-palm.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -89,5 +94,6 @@ "createdTime": 1661787234407, "modifiedTime": 1672334882527, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!h1gM8SH3BNRtFevE" } diff --git a/packs/src/classfeatures/ki-step-of-the-wind.json b/packs/src/classfeatures/ki-step-of-the-wind.json index 81fcc539af..1718c3799e 100644 --- a/packs/src/classfeatures/ki-step-of-the-wind.json +++ b/packs/src/classfeatures/ki-step-of-the-wind.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234443, "modifiedTime": 1672334877769, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!yrSFIGTaQOH2PFRI" } diff --git a/packs/src/classfeatures/ki-stunning-strike.json b/packs/src/classfeatures/ki-stunning-strike.json index 937555ec2e..555ea483c5 100644 --- a/packs/src/classfeatures/ki-stunning-strike.json +++ b/packs/src/classfeatures/ki-stunning-strike.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234427, "modifiedTime": 1672334873112, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!pvRc6GAu1ok6zihC" } diff --git a/packs/src/classfeatures/ki.json b/packs/src/classfeatures/ki.json index 3fe5d63fc5..302af12679 100644 --- a/packs/src/classfeatures/ki.json +++ b/packs/src/classfeatures/ki.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234321, "modifiedTime": 1672334904331, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!10b6z2W1txNkrGP7" } diff --git a/packs/src/classfeatures/lands-stride-circle-of-the-land.json b/packs/src/classfeatures/lands-stride-circle-of-the-land.json index 607f1e579d..bd482e85f6 100644 --- a/packs/src/classfeatures/lands-stride-circle-of-the-land.json +++ b/packs/src/classfeatures/lands-stride-circle-of-the-land.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234325, "modifiedTime": 1672334865588, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3FB25qKxmkmxcxuC" } diff --git a/packs/src/classfeatures/lands-stride-ranger.json b/packs/src/classfeatures/lands-stride-ranger.json index 3aefe8f687..1700b6b983 100644 --- a/packs/src/classfeatures/lands-stride-ranger.json +++ b/packs/src/classfeatures/lands-stride-ranger.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234345, "modifiedTime": 1672334858318, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!C5fzaOBc6HxyOWRn" } diff --git a/packs/src/classfeatures/lay-on-hands.json b/packs/src/classfeatures/lay-on-hands.json index 0d583eaf98..84ac8e9bef 100644 --- a/packs/src/classfeatures/lay-on-hands.json +++ b/packs/src/classfeatures/lay-on-hands.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234371, "modifiedTime": 1672334855885, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!OdrvL3afwLOPeuYZ" } diff --git a/packs/src/classfeatures/magical-secrets.json b/packs/src/classfeatures/magical-secrets.json index 700fb63f5c..d9b201f48f 100644 --- a/packs/src/classfeatures/magical-secrets.json +++ b/packs/src/classfeatures/magical-secrets.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234394, "modifiedTime": 1672334853577, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!aonJ2YjkqkYB9WYB" } diff --git a/packs/src/classfeatures/martial-archetype.json b/packs/src/classfeatures/martial-archetype.json index 5b8d845419..7d5f93220f 100644 --- a/packs/src/classfeatures/martial-archetype.json +++ b/packs/src/classfeatures/martial-archetype.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234395, "modifiedTime": 1672334851229, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ax8M0X0q1GGWM26j" } diff --git a/packs/src/classfeatures/martial-arts.json b/packs/src/classfeatures/martial-arts.json index 454f6f8b4d..0ed9dd27bc 100644 --- a/packs/src/classfeatures/martial-arts.json +++ b/packs/src/classfeatures/martial-arts.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234416, "modifiedTime": 1672334978195, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!l50hjTxO2r0iecKw" } diff --git a/packs/src/classfeatures/metamagic-careful-spell.json b/packs/src/classfeatures/metamagic-careful-spell.json index 258d6b4759..3d12364a47 100644 --- a/packs/src/classfeatures/metamagic-careful-spell.json +++ b/packs/src/classfeatures/metamagic-careful-spell.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234445, "modifiedTime": 1672334973777, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zElYrOcCFFMhB6Xl" } diff --git a/packs/src/classfeatures/metamagic-distant-spell.json b/packs/src/classfeatures/metamagic-distant-spell.json index 38ff75d95e..5326abf7a7 100644 --- a/packs/src/classfeatures/metamagic-distant-spell.json +++ b/packs/src/classfeatures/metamagic-distant-spell.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234349, "modifiedTime": 1672334970101, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!DZpAa3LzMNBexbmX" } diff --git a/packs/src/classfeatures/metamagic-empowered-spell.json b/packs/src/classfeatures/metamagic-empowered-spell.json index c7d7792bb3..6f66f48961 100644 --- a/packs/src/classfeatures/metamagic-empowered-spell.json +++ b/packs/src/classfeatures/metamagic-empowered-spell.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234358, "modifiedTime": 1672334966310, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!IWpe0Y9uAStHGiH1" } diff --git a/packs/src/classfeatures/metamagic-extended-spell.json b/packs/src/classfeatures/metamagic-extended-spell.json index 1e5d245c2e..95d1937def 100644 --- a/packs/src/classfeatures/metamagic-extended-spell.json +++ b/packs/src/classfeatures/metamagic-extended-spell.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234434, "modifiedTime": 1672334962661, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!tQxlKyAx9sgPrbgj" } diff --git a/packs/src/classfeatures/metamagic-heightened-spell.json b/packs/src/classfeatures/metamagic-heightened-spell.json index 3972805ae8..c82319046d 100644 --- a/packs/src/classfeatures/metamagic-heightened-spell.json +++ b/packs/src/classfeatures/metamagic-heightened-spell.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234433, "modifiedTime": 1672334958321, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!tNG2qi9zhmXEkecA" } diff --git a/packs/src/classfeatures/metamagic-quickened-spell.json b/packs/src/classfeatures/metamagic-quickened-spell.json index 79f0bf3374..724f28a49b 100644 --- a/packs/src/classfeatures/metamagic-quickened-spell.json +++ b/packs/src/classfeatures/metamagic-quickened-spell.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234422, "modifiedTime": 1672334953649, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nViGf6bZ6DQAJhkw" } diff --git a/packs/src/classfeatures/metamagic-subtle-spell.json b/packs/src/classfeatures/metamagic-subtle-spell.json index ce0e34f4d5..3acf975fc4 100644 --- a/packs/src/classfeatures/metamagic-subtle-spell.json +++ b/packs/src/classfeatures/metamagic-subtle-spell.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234403, "modifiedTime": 1672334948232, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!fXa0DMhoVLtbBu9l" } diff --git a/packs/src/classfeatures/metamagic-twinned-spell.json b/packs/src/classfeatures/metamagic-twinned-spell.json index e59b3d35d0..5592e213bd 100644 --- a/packs/src/classfeatures/metamagic-twinned-spell.json +++ b/packs/src/classfeatures/metamagic-twinned-spell.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234375, "modifiedTime": 1672334943805, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Qb391hakCfmH4w8p" } diff --git a/packs/src/classfeatures/metamagic.json b/packs/src/classfeatures/metamagic.json index cb0f660733..8cb535b290 100644 --- a/packs/src/classfeatures/metamagic.json +++ b/packs/src/classfeatures/metamagic.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234343, "modifiedTime": 1672334976301, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9Uh7uTDNZ04oTJsL" } diff --git a/packs/src/classfeatures/mindless-rage.json b/packs/src/classfeatures/mindless-rage.json index 66f4020539..aa7c532857 100644 --- a/packs/src/classfeatures/mindless-rage.json +++ b/packs/src/classfeatures/mindless-rage.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234321, "modifiedTime": 1672334939494, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!0Jgf8fYY2ExwgQpN" } diff --git a/packs/src/classfeatures/monastic-tradition.json b/packs/src/classfeatures/monastic-tradition.json index 4123fc53c9..6758da593d 100644 --- a/packs/src/classfeatures/monastic-tradition.json +++ b/packs/src/classfeatures/monastic-tradition.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234430, "modifiedTime": 1672334937534, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!rtpQdX77dYWbDIOH" } diff --git a/packs/src/classfeatures/multiattack-volley.json b/packs/src/classfeatures/multiattack-volley.json index fd517b3ffb..f52d04241a 100644 --- a/packs/src/classfeatures/multiattack-volley.json +++ b/packs/src/classfeatures/multiattack-volley.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234416, "modifiedTime": 1672334932638, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!l7W6JB9yWLLLtQKP" } diff --git a/packs/src/classfeatures/multiattack-whirlwind-attack.json b/packs/src/classfeatures/multiattack-whirlwind-attack.json index d43dd49c0a..74e31b25f4 100644 --- a/packs/src/classfeatures/multiattack-whirlwind-attack.json +++ b/packs/src/classfeatures/multiattack-whirlwind-attack.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234322, "modifiedTime": 1672334926871, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!1DY8w3CXeD7PHDXF" } diff --git a/packs/src/classfeatures/multiattack.json b/packs/src/classfeatures/multiattack.json index 7aeedf9afc..d8d9436a10 100644 --- a/packs/src/classfeatures/multiattack.json +++ b/packs/src/classfeatures/multiattack.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234339, "modifiedTime": 1674435899644, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7zlTRRXT1vWSBGjX" } diff --git a/packs/src/classfeatures/mystic-arcanum.json b/packs/src/classfeatures/mystic-arcanum.json index 43e33c5dbf..ed4e338620 100644 --- a/packs/src/classfeatures/mystic-arcanum.json +++ b/packs/src/classfeatures/mystic-arcanum.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234444, "modifiedTime": 1674435967316, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zB77V8BcCJvWVxck" } diff --git a/packs/src/classfeatures/natural-explorer.json b/packs/src/classfeatures/natural-explorer.json index 5c36808466..362263366c 100644 --- a/packs/src/classfeatures/natural-explorer.json +++ b/packs/src/classfeatures/natural-explorer.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234342, "modifiedTime": 1672335023411, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8fbZt2Qh7ZttwIan" } diff --git a/packs/src/classfeatures/natural-recovery.json b/packs/src/classfeatures/natural-recovery.json index 408f71871d..47ae68cde1 100644 --- a/packs/src/classfeatures/natural-recovery.json +++ b/packs/src/classfeatures/natural-recovery.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234438, "modifiedTime": 1672335020386, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!wKdRtFsvGfMKQHLY" } diff --git a/packs/src/classfeatures/natures-sanctuary.json b/packs/src/classfeatures/natures-sanctuary.json index 9d52945324..83733833ff 100644 --- a/packs/src/classfeatures/natures-sanctuary.json +++ b/packs/src/classfeatures/natures-sanctuary.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234353, "modifiedTime": 1672335017811, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!EuX1kJNIw1F68yus" } diff --git a/packs/src/classfeatures/natures-ward.json b/packs/src/classfeatures/natures-ward.json index 3848537ff4..088734028e 100644 --- a/packs/src/classfeatures/natures-ward.json +++ b/packs/src/classfeatures/natures-ward.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -107,7 +112,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!OTvrJSJSUgAwXrWX.Jxpz4MZmgTy7z7cm" } ], "folder": null, @@ -119,5 +125,6 @@ "createdTime": 1661787234370, "modifiedTime": 1672335015060, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!OTvrJSJSUgAwXrWX" } diff --git a/packs/src/classfeatures/open-hand-technique.json b/packs/src/classfeatures/open-hand-technique.json index ed07e448ea..bd975ff747 100644 --- a/packs/src/classfeatures/open-hand-technique.json +++ b/packs/src/classfeatures/open-hand-technique.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234410, "modifiedTime": 1672335012724, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!iQxLNydNLlCHNKbp" } diff --git a/packs/src/classfeatures/otherworldly-patron.json b/packs/src/classfeatures/otherworldly-patron.json index 0130fcc60f..5a27b59874 100644 --- a/packs/src/classfeatures/otherworldly-patron.json +++ b/packs/src/classfeatures/otherworldly-patron.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234413, "modifiedTime": 1672335010110, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!jTXHaK0vvT5DV3uO" } diff --git a/packs/src/classfeatures/overchannel.json b/packs/src/classfeatures/overchannel.json index 547e7b619b..3cc37e96cb 100644 --- a/packs/src/classfeatures/overchannel.json +++ b/packs/src/classfeatures/overchannel.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -89,5 +94,6 @@ "createdTime": 1661787234383, "modifiedTime": 1672335007320, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!VUtSLeCzFubGXmGx" } diff --git a/packs/src/classfeatures/pact-boon.json b/packs/src/classfeatures/pact-boon.json index bd9c480ae1..f922829799 100644 --- a/packs/src/classfeatures/pact-boon.json +++ b/packs/src/classfeatures/pact-boon.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234376, "modifiedTime": 1674435984779, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!QwgfIpCN8VWfoUtX" } diff --git a/packs/src/classfeatures/pact-magic.json b/packs/src/classfeatures/pact-magic.json index db90fad2a7..9225c07d05 100644 --- a/packs/src/classfeatures/pact-magic.json +++ b/packs/src/classfeatures/pact-magic.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234440, "modifiedTime": 1672335002163, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!x6IJZwr6f0SGral7" } diff --git a/packs/src/classfeatures/pact-of-the-blade.json b/packs/src/classfeatures/pact-of-the-blade.json index 69541584bc..6c284dfe3a 100644 --- a/packs/src/classfeatures/pact-of-the-blade.json +++ b/packs/src/classfeatures/pact-of-the-blade.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234344, "modifiedTime": 1672335380640, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9dSSa68mIPoX2ezA" } diff --git a/packs/src/classfeatures/pact-of-the-chain.json b/packs/src/classfeatures/pact-of-the-chain.json index 1b4591c736..c86b81239c 100644 --- a/packs/src/classfeatures/pact-of-the-chain.json +++ b/packs/src/classfeatures/pact-of-the-chain.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234359, "modifiedTime": 1672335384062, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Ic1CSjvbWKudVUv9" } diff --git a/packs/src/classfeatures/pact-of-the-tome.json b/packs/src/classfeatures/pact-of-the-tome.json index 28e0a6ae7e..f544d42346 100644 --- a/packs/src/classfeatures/pact-of-the-tome.json +++ b/packs/src/classfeatures/pact-of-the-tome.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234366, "modifiedTime": 1672335387316, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MYM908WLZ1lVvA1u" } diff --git a/packs/src/classfeatures/peerless-skill.json b/packs/src/classfeatures/peerless-skill.json index b1f40b5d6f..4ac850e418 100644 --- a/packs/src/classfeatures/peerless-skill.json +++ b/packs/src/classfeatures/peerless-skill.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234426, "modifiedTime": 1672335087679, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!pquwueEMweRhiWaq" } diff --git a/packs/src/classfeatures/perfect-self.json b/packs/src/classfeatures/perfect-self.json index f2e6e8e472..e1e320ebe2 100644 --- a/packs/src/classfeatures/perfect-self.json +++ b/packs/src/classfeatures/perfect-self.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234420, "modifiedTime": 1672335085553, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!mQNPg89YIs7g5tG4" } diff --git a/packs/src/classfeatures/persistent-rage.json b/packs/src/classfeatures/persistent-rage.json index 059485455f..8508009470 100644 --- a/packs/src/classfeatures/persistent-rage.json +++ b/packs/src/classfeatures/persistent-rage.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234417, "modifiedTime": 1672335083236, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!l8tUhZ5Pecm9wz7I" } diff --git a/packs/src/classfeatures/potent-cantrip.json b/packs/src/classfeatures/potent-cantrip.json index 950c7951fe..8010d843d1 100644 --- a/packs/src/classfeatures/potent-cantrip.json +++ b/packs/src/classfeatures/potent-cantrip.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234402, "modifiedTime": 1672335081053, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!evEWCpE5MYgr5RRW" } diff --git a/packs/src/classfeatures/primal-champion.json b/packs/src/classfeatures/primal-champion.json index 58cc6fdce1..3af93ce9b7 100644 --- a/packs/src/classfeatures/primal-champion.json +++ b/packs/src/classfeatures/primal-champion.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234413, "modifiedTime": 1672335078815, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!jVU4AgqfrFaqgXns" } diff --git a/packs/src/classfeatures/primal-path.json b/packs/src/classfeatures/primal-path.json index 5d1f378808..97c4ef3da2 100644 --- a/packs/src/classfeatures/primal-path.json +++ b/packs/src/classfeatures/primal-path.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234381, "modifiedTime": 1672335076711, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!TH1QAf6YNGSeBVjT" } diff --git a/packs/src/classfeatures/primeval-awareness.json b/packs/src/classfeatures/primeval-awareness.json index e16fd337fb..02cebcc7e1 100644 --- a/packs/src/classfeatures/primeval-awareness.json +++ b/packs/src/classfeatures/primeval-awareness.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234415, "modifiedTime": 1672335074128, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!kaHcUGiwi8AtfZIm" } diff --git a/packs/src/classfeatures/purity-of-body.json b/packs/src/classfeatures/purity-of-body.json index e0794a45df..7d53b26ebd 100644 --- a/packs/src/classfeatures/purity-of-body.json +++ b/packs/src/classfeatures/purity-of-body.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -107,7 +112,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!bqWA7t9pDELbNRkp.JjH64T4YkNP1VTt4" } ], "folder": null, @@ -119,5 +125,6 @@ "createdTime": 1661787234396, "modifiedTime": 1672335071933, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!bqWA7t9pDELbNRkp" } diff --git a/packs/src/classfeatures/purity-of-spirit.json b/packs/src/classfeatures/purity-of-spirit.json index 01d9ff8271..08dbdca6fd 100644 --- a/packs/src/classfeatures/purity-of-spirit.json +++ b/packs/src/classfeatures/purity-of-spirit.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234389, "modifiedTime": 1672335069710, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ZHJyYrqMYSLub4RY" } diff --git a/packs/src/classfeatures/rage.json b/packs/src/classfeatures/rage.json index 71e7ad03a3..d4aa612f6e 100644 --- a/packs/src/classfeatures/rage.json +++ b/packs/src/classfeatures/rage.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -115,7 +120,8 @@ "origin": "Item.bdfYHJstcltQC7SZ", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!items.effects!VoR0SUrNX5EJVPIO.eWhL8hUr0c2ujDUm" } ], "folder": null, @@ -131,5 +137,6 @@ "createdTime": 1661787234384, "modifiedTime": 1672335067284, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!VoR0SUrNX5EJVPIO" } diff --git a/packs/src/classfeatures/ranger-archetype.json b/packs/src/classfeatures/ranger-archetype.json index 97845989ac..dcbcd02e1b 100644 --- a/packs/src/classfeatures/ranger-archetype.json +++ b/packs/src/classfeatures/ranger-archetype.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234322, "modifiedTime": 1672335063369, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!1dJHU48yNqn3lcfx" } diff --git a/packs/src/classfeatures/reckless-attack.json b/packs/src/classfeatures/reckless-attack.json index 303f25ae32..009caaf9a8 100644 --- a/packs/src/classfeatures/reckless-attack.json +++ b/packs/src/classfeatures/reckless-attack.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234377, "modifiedTime": 1672335061227, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!SCVjqRdlZ9cvHVSR" } diff --git a/packs/src/classfeatures/relentless-rage.json b/packs/src/classfeatures/relentless-rage.json index 8262df3316..98715de776 100644 --- a/packs/src/classfeatures/relentless-rage.json +++ b/packs/src/classfeatures/relentless-rage.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234355, "modifiedTime": 1672335059193, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!FqfmbPgxiyrWzhYk" } diff --git a/packs/src/classfeatures/reliable-talent.json b/packs/src/classfeatures/reliable-talent.json index bc54f318f5..02b5a99c93 100644 --- a/packs/src/classfeatures/reliable-talent.json +++ b/packs/src/classfeatures/reliable-talent.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -101,7 +106,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!YN9xm6MCvse4Y60u.vMMZHZQ0qT7MT4I4" } ], "folder": null, @@ -113,5 +119,6 @@ "createdTime": 1661787234387, "modifiedTime": 1672335056263, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!YN9xm6MCvse4Y60u" } diff --git a/packs/src/classfeatures/remarkable-athlete.json b/packs/src/classfeatures/remarkable-athlete.json index 01ad2900fb..601c74aaa4 100644 --- a/packs/src/classfeatures/remarkable-athlete.json +++ b/packs/src/classfeatures/remarkable-athlete.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234397, "modifiedTime": 1672335184269, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dHu1yzIjD38BvGGd" } diff --git a/packs/src/classfeatures/retaliation.json b/packs/src/classfeatures/retaliation.json index 315aa4211d..df9f569b89 100644 --- a/packs/src/classfeatures/retaliation.json +++ b/packs/src/classfeatures/retaliation.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234442, "modifiedTime": 1672335239999, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!xzD9zlRP6dUxCtCl" } diff --git a/packs/src/classfeatures/roguish-archetype.json b/packs/src/classfeatures/roguish-archetype.json index c323feb8d1..ba12abcdd7 100644 --- a/packs/src/classfeatures/roguish-archetype.json +++ b/packs/src/classfeatures/roguish-archetype.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234339, "modifiedTime": 1672335237536, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!80USV8ZFPIahpLd0" } diff --git a/packs/src/classfeatures/sacred-oath.json b/packs/src/classfeatures/sacred-oath.json index 749cfc057f..9e51d6ec17 100644 --- a/packs/src/classfeatures/sacred-oath.json +++ b/packs/src/classfeatures/sacred-oath.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234424, "modifiedTime": 1672335234911, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!olAqNsUTIef9x8xC" } diff --git a/packs/src/classfeatures/sculpt-spells.json b/packs/src/classfeatures/sculpt-spells.json index 70e7b9e18a..a113c62f2e 100644 --- a/packs/src/classfeatures/sculpt-spells.json +++ b/packs/src/classfeatures/sculpt-spells.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234335, "modifiedTime": 1672335231938, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!6VBXkjjBgjSpNElh" } diff --git a/packs/src/classfeatures/second-story-work.json b/packs/src/classfeatures/second-story-work.json index c9881ec48d..c1662457bf 100644 --- a/packs/src/classfeatures/second-story-work.json +++ b/packs/src/classfeatures/second-story-work.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234355, "modifiedTime": 1672335225716, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!FGrbXs6Ku5qxFK5G" } diff --git a/packs/src/classfeatures/second-wind.json b/packs/src/classfeatures/second-wind.json index 0722c0760f..85eaa6ec02 100644 --- a/packs/src/classfeatures/second-wind.json +++ b/packs/src/classfeatures/second-wind.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -89,5 +94,6 @@ "createdTime": 1661787234421, "modifiedTime": 1674424670055, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nTjmWbyHweXuIqwc" } diff --git a/packs/src/classfeatures/signature-spells.json b/packs/src/classfeatures/signature-spells.json index 5530ad68f9..6f678cf1ae 100644 --- a/packs/src/classfeatures/signature-spells.json +++ b/packs/src/classfeatures/signature-spells.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234422, "modifiedTime": 1674436105597, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nUrZDi6QN1YjwAr6" } diff --git a/packs/src/classfeatures/slippery-mind.json b/packs/src/classfeatures/slippery-mind.json index 57efd16372..e111c268d8 100644 --- a/packs/src/classfeatures/slippery-mind.json +++ b/packs/src/classfeatures/slippery-mind.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -101,7 +106,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!V4pwFxlwHtNeB4w9.hNWumbfvMxXQI21x" } ], "folder": null, @@ -113,5 +119,6 @@ "createdTime": 1661787234382, "modifiedTime": 1672335217923, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!V4pwFxlwHtNeB4w9" } diff --git a/packs/src/classfeatures/slow-fall.json b/packs/src/classfeatures/slow-fall.json index fd69163a1b..b99334502c 100644 --- a/packs/src/classfeatures/slow-fall.json +++ b/packs/src/classfeatures/slow-fall.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234360, "modifiedTime": 1672335215581, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!KQz9bqxVkXjDl8gK" } diff --git a/packs/src/classfeatures/sneak-attack.json b/packs/src/classfeatures/sneak-attack.json index a23832bc6a..289342a74d 100644 --- a/packs/src/classfeatures/sneak-attack.json +++ b/packs/src/classfeatures/sneak-attack.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -89,5 +94,6 @@ "createdTime": 1661787234348, "modifiedTime": 1672335213304, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!DPN2Gfk8yi1Z5wp7" } diff --git a/packs/src/classfeatures/song-of-rest.json b/packs/src/classfeatures/song-of-rest.json index 45fde242eb..ca2de5c9b1 100644 --- a/packs/src/classfeatures/song-of-rest.json +++ b/packs/src/classfeatures/song-of-rest.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -89,5 +94,6 @@ "createdTime": 1661787234408, "modifiedTime": 1672335210523, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!he8RpPXwSl2lVSIk" } diff --git a/packs/src/classfeatures/sorcerous-origins.json b/packs/src/classfeatures/sorcerous-origins.json index 733089ab81..31dcbf90ad 100644 --- a/packs/src/classfeatures/sorcerous-origins.json +++ b/packs/src/classfeatures/sorcerous-origins.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234397, "modifiedTime": 1672335208050, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!cmRCL9T9UgRYOj1c" } diff --git a/packs/src/classfeatures/sorcerous-restoration.json b/packs/src/classfeatures/sorcerous-restoration.json index 9abcad10de..0e5f892599 100644 --- a/packs/src/classfeatures/sorcerous-restoration.json +++ b/packs/src/classfeatures/sorcerous-restoration.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234354, "modifiedTime": 1672335205435, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!F2lEKSmOY0NUruzY" } diff --git a/packs/src/classfeatures/spell-mastery.json b/packs/src/classfeatures/spell-mastery.json index 716968d8f7..c72d4f2b1f 100644 --- a/packs/src/classfeatures/spell-mastery.json +++ b/packs/src/classfeatures/spell-mastery.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234359, "modifiedTime": 1672335202641, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!JfFfHTeIszx1hNRx" } diff --git a/packs/src/classfeatures/spellcasting-bard.json b/packs/src/classfeatures/spellcasting-bard.json index fd00fdbc48..fa3fef5647 100644 --- a/packs/src/classfeatures/spellcasting-bard.json +++ b/packs/src/classfeatures/spellcasting-bard.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234434, "modifiedTime": 1672335296102, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!u4NLajXETJhJU31v" } diff --git a/packs/src/classfeatures/spellcasting-cleric.json b/packs/src/classfeatures/spellcasting-cleric.json index fbe39a56d4..818d7ee1d4 100644 --- a/packs/src/classfeatures/spellcasting-cleric.json +++ b/packs/src/classfeatures/spellcasting-cleric.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234436, "modifiedTime": 1672335293963, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!v4gKwLhAq9vuqza7" } diff --git a/packs/src/classfeatures/spellcasting-druid.json b/packs/src/classfeatures/spellcasting-druid.json index 8a9123ff87..cadbeafc1f 100644 --- a/packs/src/classfeatures/spellcasting-druid.json +++ b/packs/src/classfeatures/spellcasting-druid.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234409, "modifiedTime": 1672335292173, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!i6tPm3FNK13Ftc9v" } diff --git a/packs/src/classfeatures/spellcasting-paladin.json b/packs/src/classfeatures/spellcasting-paladin.json index 27ad4893f8..06eae7a9f0 100644 --- a/packs/src/classfeatures/spellcasting-paladin.json +++ b/packs/src/classfeatures/spellcasting-paladin.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234411, "modifiedTime": 1672335288887, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ihoQHsmVZlyDbPhX" } diff --git a/packs/src/classfeatures/spellcasting-ranger.json b/packs/src/classfeatures/spellcasting-ranger.json index cf441837c7..2a9d42bbfe 100644 --- a/packs/src/classfeatures/spellcasting-ranger.json +++ b/packs/src/classfeatures/spellcasting-ranger.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234435, "modifiedTime": 1672335286932, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!u6xV3Ki3TXRrD7zg" } diff --git a/packs/src/classfeatures/spellcasting-sorcerer.json b/packs/src/classfeatures/spellcasting-sorcerer.json index b958398c96..61273bb413 100644 --- a/packs/src/classfeatures/spellcasting-sorcerer.json +++ b/packs/src/classfeatures/spellcasting-sorcerer.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234424, "modifiedTime": 1672335283911, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!oygRF3ZjTv2T7z0Y" } diff --git a/packs/src/classfeatures/spellcasting-wizard.json b/packs/src/classfeatures/spellcasting-wizard.json index 8b62806216..ad781ded2d 100644 --- a/packs/src/classfeatures/spellcasting-wizard.json +++ b/packs/src/classfeatures/spellcasting-wizard.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234406, "modifiedTime": 1672335281839, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gbNo5eVPaqr8IVKL" } diff --git a/packs/src/classfeatures/stillness-of-mind.json b/packs/src/classfeatures/stillness-of-mind.json index 177f8f1bb1..2bfb1b5336 100644 --- a/packs/src/classfeatures/stillness-of-mind.json +++ b/packs/src/classfeatures/stillness-of-mind.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234391, "modifiedTime": 1672335279984, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ZmC31XKS4YNENnoc" } diff --git a/packs/src/classfeatures/stroke-of-luck.json b/packs/src/classfeatures/stroke-of-luck.json index 890b9ad426..7a7561b276 100644 --- a/packs/src/classfeatures/stroke-of-luck.json +++ b/packs/src/classfeatures/stroke-of-luck.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234429, "modifiedTime": 1672335277704, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!rQhWDaMHMn7iU4f2" } diff --git a/packs/src/classfeatures/superior-critical.json b/packs/src/classfeatures/superior-critical.json index 423c478b18..8514ee08bc 100644 --- a/packs/src/classfeatures/superior-critical.json +++ b/packs/src/classfeatures/superior-critical.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234393, "modifiedTime": 1672335275284, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!aVKH6TLn1AG9hPSA" } diff --git a/packs/src/classfeatures/superior-hunters-defense-evasion.json b/packs/src/classfeatures/superior-hunters-defense-evasion.json index 872c5e82ba..a77bf43415 100644 --- a/packs/src/classfeatures/superior-hunters-defense-evasion.json +++ b/packs/src/classfeatures/superior-hunters-defense-evasion.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234418, "modifiedTime": 1672335270358, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!laVHAIOKIsUeezWd" } diff --git a/packs/src/classfeatures/superior-hunters-defense-stand-against-the-tide.json b/packs/src/classfeatures/superior-hunters-defense-stand-against-the-tide.json index 491e3d9cd2..f2f0a9c6cf 100644 --- a/packs/src/classfeatures/superior-hunters-defense-stand-against-the-tide.json +++ b/packs/src/classfeatures/superior-hunters-defense-stand-against-the-tide.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234385, "modifiedTime": 1672335266344, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Xf763cJoDHPPWSGG" } diff --git a/packs/src/classfeatures/superior-hunters-defense-uncanny-dodge.json b/packs/src/classfeatures/superior-hunters-defense-uncanny-dodge.json index 55e470a296..286b3992fd 100644 --- a/packs/src/classfeatures/superior-hunters-defense-uncanny-dodge.json +++ b/packs/src/classfeatures/superior-hunters-defense-uncanny-dodge.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234337, "modifiedTime": 1672335261810, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7pyZjz5vlUWV01qQ" } diff --git a/packs/src/classfeatures/superior-hunters-defense.json b/packs/src/classfeatures/superior-hunters-defense.json index 8edfb9e47f..f5dd24f7dc 100644 --- a/packs/src/classfeatures/superior-hunters-defense.json +++ b/packs/src/classfeatures/superior-hunters-defense.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234391, "modifiedTime": 1674435873389, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!a0Sq88dgnREcIMfl" } diff --git a/packs/src/classfeatures/superior-inspiration.json b/packs/src/classfeatures/superior-inspiration.json index d5c711ff50..82ca8929fd 100644 --- a/packs/src/classfeatures/superior-inspiration.json +++ b/packs/src/classfeatures/superior-inspiration.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234356, "modifiedTime": 1672335255120, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!GBYN5rH4nh1ocRlY" } diff --git a/packs/src/classfeatures/supreme-healing.json b/packs/src/classfeatures/supreme-healing.json index 1cbda50420..ff13eb7176 100644 --- a/packs/src/classfeatures/supreme-healing.json +++ b/packs/src/classfeatures/supreme-healing.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234330, "modifiedTime": 1672335344375, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!4UOgxzr83vFuUash" } diff --git a/packs/src/classfeatures/supreme-sneak.json b/packs/src/classfeatures/supreme-sneak.json index 6dfb2c8110..cc2ffae361 100644 --- a/packs/src/classfeatures/supreme-sneak.json +++ b/packs/src/classfeatures/supreme-sneak.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234353, "modifiedTime": 1672335342178, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Ei1Oh4UAA2E30jcD" } diff --git a/packs/src/classfeatures/survivor.json b/packs/src/classfeatures/survivor.json index 2d498b7d92..7ec7208d19 100644 --- a/packs/src/classfeatures/survivor.json +++ b/packs/src/classfeatures/survivor.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -89,5 +94,6 @@ "createdTime": 1661787234412, "modifiedTime": 1672335339891, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ipG5yx1tRNmeJfSH" } diff --git a/packs/src/classfeatures/thiefs-reflexes.json b/packs/src/classfeatures/thiefs-reflexes.json index 82bc446ab4..a5d6afbdcc 100644 --- a/packs/src/classfeatures/thiefs-reflexes.json +++ b/packs/src/classfeatures/thiefs-reflexes.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234364, "modifiedTime": 1672335337792, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LhRm1EeUMvp2EWhV" } diff --git a/packs/src/classfeatures/thieves-cant.json b/packs/src/classfeatures/thieves-cant.json index 5ac92ab825..2f2d186604 100644 --- a/packs/src/classfeatures/thieves-cant.json +++ b/packs/src/classfeatures/thieves-cant.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -22,6 +27,7 @@ "units": "" }, "cover": null, + "crewed": false, "target": { "value": null, "width": null, @@ -74,44 +80,16 @@ }, "flags": {}, "img": "icons/sundries/documents/document-torn-diagram-tan.webp", - "effects": [ - { - "_id": "VN7GnGzVwmBM7YCU", - "changes": [ - { - "key": "system.traits.languages.value", - "mode": 2, - "value": "cant", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "icon": "icons/sundries/documents/document-torn-diagram-tan.webp", - "label": "Thieves' Cant", - "origin": "Item.ohwfuwnvuoBWlSQr", - "transfer": true, - "flags": {}, - "tint": null, - "sort": 0 - } - ], + "effects": [], "folder": null, "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", + "systemVersion": "2.4.0", + "coreVersion": "10.303", "createdTime": 1661787234423, - "modifiedTime": 1672335335751, + "modifiedTime": 1699988266779, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ohwfuwnvuoBWlSQr" } diff --git a/packs/src/classfeatures/timeless-body-druid.json b/packs/src/classfeatures/timeless-body-druid.json index ec4b6605cb..678610e6fb 100644 --- a/packs/src/classfeatures/timeless-body-druid.json +++ b/packs/src/classfeatures/timeless-body-druid.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234396, "modifiedTime": 1672335333141, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!cVDEQo0ow1WJT7Wl" } diff --git a/packs/src/classfeatures/timeless-body-monk.json b/packs/src/classfeatures/timeless-body-monk.json index fcccb1db0f..d61bda4e49 100644 --- a/packs/src/classfeatures/timeless-body-monk.json +++ b/packs/src/classfeatures/timeless-body-monk.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234405, "modifiedTime": 1672335330808, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gDH8PMrKvLHaNmEI" } diff --git a/packs/src/classfeatures/tongue-of-the-sun-and-moon.json b/packs/src/classfeatures/tongue-of-the-sun-and-moon.json index 8343be858f..a908ec04a2 100644 --- a/packs/src/classfeatures/tongue-of-the-sun-and-moon.json +++ b/packs/src/classfeatures/tongue-of-the-sun-and-moon.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234386, "modifiedTime": 1672335328721, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XjuGBeB8Y0C3A5D4" } diff --git a/packs/src/classfeatures/tranquility.json b/packs/src/classfeatures/tranquility.json index f5e2eb3673..b86ac8375b 100644 --- a/packs/src/classfeatures/tranquility.json +++ b/packs/src/classfeatures/tranquility.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234429, "modifiedTime": 1672335326164, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!rBDZLatuoolT2FUW" } diff --git a/packs/src/classfeatures/unarmed-strike-monk.json b/packs/src/classfeatures/unarmed-strike-monk.json index ecd24b4f9f..3a89f4d974 100644 --- a/packs/src/classfeatures/unarmed-strike-monk.json +++ b/packs/src/classfeatures/unarmed-strike-monk.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -121,5 +126,6 @@ "createdTime": 1661787234400, "modifiedTime": 1671220976154, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eGxoNmSMWKNzChCO" } diff --git a/packs/src/classfeatures/unarmored-defense-barbarian.json b/packs/src/classfeatures/unarmored-defense-barbarian.json index a8a29cd151..fe3daf10c7 100644 --- a/packs/src/classfeatures/unarmored-defense-barbarian.json +++ b/packs/src/classfeatures/unarmored-defense-barbarian.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -101,7 +106,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!SZbsNbaxFFGwBpNK.hEgUnQNVxtBo2zkK" } ], "folder": null, @@ -113,5 +119,6 @@ "createdTime": 1661787234378, "modifiedTime": 1672335319673, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!SZbsNbaxFFGwBpNK" } diff --git a/packs/src/classfeatures/unarmored-defense-monk.json b/packs/src/classfeatures/unarmored-defense-monk.json index 0b5f7a0546..7f4081423c 100644 --- a/packs/src/classfeatures/unarmored-defense-monk.json +++ b/packs/src/classfeatures/unarmored-defense-monk.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -101,7 +106,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!UAvV7N7T4zJhxdfI.R5ro4AuNjcdWD56O" } ], "folder": null, @@ -113,5 +119,6 @@ "createdTime": 1661787234382, "modifiedTime": 1672335317672, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!UAvV7N7T4zJhxdfI" } diff --git a/packs/src/classfeatures/unarmored-movement.json b/packs/src/classfeatures/unarmored-movement.json index 3ef8e6c454..ea66981cc6 100644 --- a/packs/src/classfeatures/unarmored-movement.json +++ b/packs/src/classfeatures/unarmored-movement.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -101,7 +106,8 @@ "origin": "Item.zCeqyQ8uIPNdYJSW", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!items.effects!zCeqyQ8uIPNdYJSW.Veg0vXI93A0qlxZn" } ], "folder": null, @@ -113,5 +119,6 @@ "createdTime": 1661787234338, "modifiedTime": 1672335315431, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zCeqyQ8uIPNdYJSW" } diff --git a/packs/src/classfeatures/uncanny-dodge.json b/packs/src/classfeatures/uncanny-dodge.json index 3e9594013a..582699bdf3 100644 --- a/packs/src/classfeatures/uncanny-dodge.json +++ b/packs/src/classfeatures/uncanny-dodge.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234368, "modifiedTime": 1672335313472, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Mm64SKAHJWYecgXS" } diff --git a/packs/src/classfeatures/use-magic-device.json b/packs/src/classfeatures/use-magic-device.json index febe1bc25d..853d1d51a7 100644 --- a/packs/src/classfeatures/use-magic-device.json +++ b/packs/src/classfeatures/use-magic-device.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234369, "modifiedTime": 1672335311225, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!NqWyHE7Rpw9lyKWu" } diff --git a/packs/src/classfeatures/vanish.json b/packs/src/classfeatures/vanish.json index 4e4f65c024..a0fa507165 100644 --- a/packs/src/classfeatures/vanish.json +++ b/packs/src/classfeatures/vanish.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234349, "modifiedTime": 1672335361732, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!DhU2dWCNnX78TstR" } diff --git a/packs/src/classfeatures/wholeness-of-body.json b/packs/src/classfeatures/wholeness-of-body.json index faa14efdc6..5d9d292b09 100644 --- a/packs/src/classfeatures/wholeness-of-body.json +++ b/packs/src/classfeatures/wholeness-of-body.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -89,5 +94,6 @@ "createdTime": 1661787234372, "modifiedTime": 1674436155963, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Q7mOdk4b1lgjcptF" } diff --git a/packs/src/classfeatures/wild-shape.json b/packs/src/classfeatures/wild-shape.json index dbf60c9bbf..bc153666c5 100644 --- a/packs/src/classfeatures/wild-shape.json +++ b/packs/src/classfeatures/wild-shape.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234433, "modifiedTime": 1672335351472, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!swK0r5TOIxredxWS" } diff --git a/packs/src/heroes/akra-dragonborn-cleric.json b/packs/src/heroes/akra-dragonborn-cleric.json index b4788a2eee..00519ab3e1 100644 --- a/packs/src/heroes/akra-dragonborn-cleric.json +++ b/packs/src/heroes/akra-dragonborn-cleric.json @@ -74,31 +74,30 @@ "bonuses": { "level": "", "overall": "" - }, - "min": 0 + } }, "init": { "ability": "", "bonus": "0" }, "movement": { - "burrow": 0, - "climb": 0, - "fly": 0, - "swim": 0, - "walk": 30, - "units": "ft", + "burrow": null, + "climb": null, + "fly": null, + "swim": null, + "walk": null, + "units": null, "hover": false }, "attunement": { "max": 3 }, "senses": { - "darkvision": 0, - "blindsight": 0, - "tremorsense": 0, - "truesight": 0, - "units": "ft", + "darkvision": null, + "blindsight": null, + "tremorsense": null, + "truesight": null, + "units": null, "special": "" }, "spellcasting": "wis", @@ -111,12 +110,12 @@ }, "details": { "biography": { - "value": "A devout follower of her deity and of her society's customs, Akra feels somewhat out of place adventuring in foreign lands. But she feels bound to do everything in her power to bring peace to the region.\n", + "value": "A devout follower of her deity and of her society's customs, Akra feels somewhat out of place adventuring in foreign lands. But she feels bound to do everything in her power to bring peace to the region.", "public": "" }, "alignment": "Lawful Good", - "race": "Dragonborn", - "background": "", + "race": "syaK4jD01I8U6EAL", + "background": null, "originalClass": "Zo7sWdchHDF6d0nn", "xp": { "value": 0 @@ -152,10 +151,10 @@ }, "languages": { "value": [ - "common", - "draconic", "giant", - "halfling" + "halfling", + "common", + "draconic" ], "custom": "" }, @@ -167,9 +166,9 @@ }, "armorProf": { "value": [ + "hvy", "lgt", "med", - "hvy", "shl" ], "custom": "" @@ -504,7 +503,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -514,7 +518,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": {}, @@ -531,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.Ra2Z1ujre76weR0i" }, { "_id": "74K6TAuSg2xzd209", @@ -543,7 +552,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 5, "weight": 0, "price": { @@ -553,7 +567,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -574,7 +592,8 @@ "createdTime": null, "modifiedTime": 1670011640945, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.74K6TAuSg2xzd209" }, { "_id": "mRxDz7yEtvJgpJsO", @@ -586,7 +605,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -596,7 +620,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -623,7 +651,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.mRxDz7yEtvJgpJsO" }, { "_id": "4FozMXUzyFXaB3Ps", @@ -635,7 +664,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -661,7 +695,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -673,12 +708,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "abil", @@ -698,7 +735,8 @@ "dc": 17, "scaling": "flat" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -725,7 +763,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.4FozMXUzyFXaB3Ps" }, { "_id": "QBmv3SSCaae2xxzT", @@ -737,7 +776,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -747,7 +791,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -768,7 +816,8 @@ "createdTime": null, "modifiedTime": 1670011640955, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.QBmv3SSCaae2xxzT" }, { "_id": "ehYoem9Oas5sgRUK", @@ -780,7 +829,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -790,7 +844,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -817,7 +875,8 @@ "createdTime": null, "modifiedTime": 1670011640965, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.ehYoem9Oas5sgRUK" }, { "_id": "p9MqgEEsODUHJebP", @@ -829,7 +888,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -855,7 +919,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -867,12 +932,14 @@ "max": "4", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -892,7 +959,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -913,7 +981,8 @@ "createdTime": null, "modifiedTime": 1670011640975, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.p9MqgEEsODUHJebP" }, { "_id": "3pLaAsrIUSbFeFDh", @@ -925,7 +994,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -968,7 +1042,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.3pLaAsrIUSbFeFDh" }, { "_id": "PzCcpWNIKilXJXMG", @@ -980,7 +1055,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1023,7 +1103,8 @@ "createdTime": null, "modifiedTime": 1670011640984, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.PzCcpWNIKilXJXMG" }, { "_id": "njMyrs5IpKrRqvI9", @@ -1035,7 +1116,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1078,7 +1164,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.njMyrs5IpKrRqvI9" }, { "_id": "l46uaz805Fr9lZvU", @@ -1090,7 +1177,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 45, "price": { @@ -1116,7 +1208,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1127,12 +1220,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -1170,7 +1265,7 @@ }, "strength": null, "stealth": true, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -1191,7 +1286,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.l46uaz805Fr9lZvU" }, { "_id": "k2WyjZI9mN5jclTd", @@ -1203,7 +1299,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -1229,7 +1330,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1240,12 +1342,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -1283,7 +1387,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "sort": 0, "flags": { @@ -1304,7 +1408,8 @@ "createdTime": null, "modifiedTime": 1670011640996, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.k2WyjZI9mN5jclTd" }, { "_id": "DNmD3z2JYmCQ203g", @@ -1316,7 +1421,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -1342,7 +1452,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1353,12 +1464,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -1396,7 +1509,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "sort": 0, "flags": { @@ -1417,7 +1530,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.DNmD3z2JYmCQ203g" }, { "_id": "uuucgo72s3ZdzGqs", @@ -1429,7 +1543,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -1455,7 +1574,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1466,12 +1586,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": null, @@ -1509,7 +1631,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "sort": 0, "flags": { @@ -1530,7 +1652,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.uuucgo72s3ZdzGqs" }, { "_id": "eT4j7mNbZGHIUOtT", @@ -1542,7 +1665,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -1568,7 +1696,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 5, @@ -1579,12 +1708,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -1636,7 +1767,7 @@ "ver": false, "lod": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -1657,7 +1788,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.eT4j7mNbZGHIUOtT" }, { "_id": "Yb4Gsfcswu3pZnoR", @@ -1669,7 +1801,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 19, "weight": 0.075, "price": { @@ -1695,7 +1832,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 5, @@ -1707,12 +1845,14 @@ "max": "", "per": null, "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "rwak", @@ -1737,7 +1877,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "ammo" + "consumableType": "ammo", + "properties": {} }, "sort": 0, "flags": { @@ -1758,7 +1899,8 @@ "createdTime": null, "modifiedTime": 1670011647610, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.Yb4Gsfcswu3pZnoR" }, { "_id": "dRVZvSq4EXz8u5sk", @@ -1770,7 +1912,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1796,7 +1943,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 80, @@ -1807,12 +1955,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "ammo", "target": "Yb4Gsfcswu3pZnoR", - "amount": 1 + "amount": 1, + "scale": false }, "ability": "", "actionType": "rwak", @@ -1864,7 +2014,7 @@ "ver": false, "lod": true }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -1885,7 +2035,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.dRVZvSq4EXz8u5sk" }, { "_id": "ngTZ5FkHGxsYo2Ie", @@ -1897,7 +2048,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 2, "price": { @@ -1923,7 +2079,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": null, @@ -1935,12 +2092,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1960,7 +2119,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -1981,7 +2141,8 @@ "createdTime": null, "modifiedTime": 1670011641017, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.ngTZ5FkHGxsYo2Ie" }, { "_id": "sa2Az2SjUNScdr5T", @@ -1993,7 +2154,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 1, "price": { @@ -2019,7 +2185,8 @@ "value": 40, "width": null, "units": "ft", - "type": "radius" + "type": "radius", + "prompt": true }, "range": { "value": null, @@ -2031,12 +2198,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "str", "actionType": "mwak", @@ -2061,7 +2230,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -2088,7 +2258,8 @@ "createdTime": null, "modifiedTime": 1670011647619, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.sa2Az2SjUNScdr5T" }, { "_id": "1qgVPt1uOptTVby1", @@ -2100,7 +2271,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -2110,113 +2286,19 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.items.odV5cq2HSLSCH69k" - } - }, - "img": "icons/sundries/books/book-backed-silver-red.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } - }, - { - "_id": "0geQXeMWTg6cbDvQ", - "name": "Breath Weapon", - "type": "feat", - "system": { - "description": { - "value": "\nYou can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.\n\n\n\nAfter you use your breath weapon, you can't use it again until you complete a short or long rest.Foundry Note: Edit the Details for this feat, so that the damage type, saving throw, and area of effect match those of your Draconic Ancestry.\n\n\n\n", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "action", - "cost": 1, - "condition": "" - }, - "duration": { - "value": "", - "units": "inst" - }, - "cover": null, - "crewed": false, - "target": { - "value": 15, - "width": null, - "units": "ft", - "type": "cone" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": 1, - "max": "1", - "per": "sr", - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": "con", - "actionType": "save", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [ - [ - "(ceil((@details.level/5) + 1))d6", - "cold" - ] - ], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "con", - "dc": 11, - "scaling": "con" - }, + "identified": true, "type": { "value": "", "subtype": "" - }, - "requirements": "Dragonborn", - "recharge": { - "value": null, - "charged": false } }, "sort": 0, "flags": { "core": { - "sourceId": "Compendium.dnd5e.races.KL7wx9Q8XNJQir0k" + "sourceId": "Compendium.dnd5e.items.odV5cq2HSLSCH69k" } }, - "img": "icons/magic/acid/projectile-smoke-glowing.webp", + "img": "icons/sundries/books/book-backed-silver-red.webp", "effects": [], "folder": null, "ownership": { @@ -2229,206 +2311,26 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.1qgVPt1uOptTVby1" }, { - "_id": "DPYl8D5QtcRVH5XX", - "name": "Damage Resistance", - "type": "feat", + "_id": "6srkb2hvbgbrjzi3", + "name": "Life Domain", + "type": "subclass", + "img": "icons/magic/holy/barrier-shield-winged-cross.webp", "system": { "description": { - "value": "\n\n\nYou have resistance to the damage type associated with your draconic ancestry.\n\n\n", + "value": "The Life domain focuses on the vibrant positive energy—one of the fundamental forces of the universe—that sustains all life. The gods of life promote vitality and health through healing the sick and wounded, caring for those in need, and driving away the forces of death and undeath. Almost any non-evil deity can claim influence over this domain, particularly agricultural deities (such as Chauntea, Arawai, and Demeter), sun gods (such as Lathander, Pelor, and Re-Horakhty), gods of healing or endurance (such as Ilmater, Mishakal, Apollo, and Diancecht), and gods of home and community (such as Hestia, Hathor, and Boldrei).\nLife Domain Spells\n\n\n\nCleric Level\nSpells\n\n\n\n\n1st\n@Compendium[dnd5e.spells.8dzaICjGy6mTUaUr]{Bless}, @Compendium[dnd5e.spells.uUWb1wZgtMou0TVP]{Cure Wounds}\n\n\n3rd\n@Compendium[dnd5e.spells.F0GsG0SJzsIOacwV]{Lesser Restoration}, @Compendium[dnd5e.spells.JbxsYXxSOTZbf9I0]{Spiritual Weapon}\n\n\n5th\n@Compendium[dnd5e.spells.ZU9d6woBdUP8pIPt]{Beacon of Hope}, @Compendium[dnd5e.spells.LmRHHMtplpxr9fX6]{Revivify}\n\n\n7th\n@Compendium[dnd5e.spells.VtCXMdyM6mAdIJZb]{Death Ward}, @Compendium[dnd5e.spells.TgHsuhNasPbhu8MO]{Guardian of Faith}\n\n\n9th\n@Compendium[dnd5e.spells.Pyzmm8R7rVsNAPsd]{Mass Cure Wounds}, @Compendium[dnd5e.spells.AGFMPAmuzwWO6Dfz]{Raise Dead}\n\n\n", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" }, - "requirements": "Dragonborn", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.races.XxCuhIk6hAu6rNB0" - } - }, - "img": "icons/magic/defensive/shield-barrier-glowing-blue.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } - }, - { - "_id": "kJbsSe2Dht2Tc7ux", - "name": "Dragonborn", - "type": "feat", - "system": { - "description": { - "value": "\n\n\nYour draconic heritage manifests in a variety of traits you share with other dragonborn. Ability Score Increase. Your Strength score increases by 2, and your Charisma score increases by 1.Age. Young dragonborn grow quickly. They walk hours after hatching, attain the size and development of a 10-year-old human child by the age of 3, and reach adulthood by 15. They live to be around 80.Alignment. Dragonborn tend to extremes, making a conscious choice for one side or the other in the cosmic war between good and evil. Most dragonborn are good, but those who side with evil can be terrible villains.Size. Dragonborn are taller and heavier than humans, standing well over 6 feet tall and averaging almost 250 pounds. Your size is Medium.Speed. Your base walking speed is 30 feet.Draconic Ancestry. You have draconic ancestry. Choose one type of dragon from the Draconic Ancestry table. Your breath weapon and damage resistance are determined by the dragon type, as shown in the table.\n\n\n\n\n\n\nDragon\nDamage Type\nBreath Weapon\n\n\n\n\nBlack\nAcid\n5 by 30 ft. line (Dex. save)\n\n\nBlue\nLightning\n5 by 30 ft. line (Dex. save)\n\n\nBrass\nFire\n5 by 30 ft. line (Dex. save)\n\n\nBronze\nLightning\n5 by 30 ft. line (Dex. save)\n\n\nCopper\nAcid\n5 by 30 ft. line (Dex. save)\n\n\nGold\nFire\n15 ft. cone (Dex. save)\n\n\nGreen\nPoison\n15 ft. cone (Con. save)\n\n\nRed\nFire\n15 ft. cone (Dex. save)\n\n\nSilver\nCold\n15 ft. cone (Con. save)\n\n\nWhite\nCold\n15 ft. cone (Con. save)\n\n\n\n\n\n\n\nBreath Weapon. @Compendium[dnd5e.races.KL7wx9Q8XNJQir0k]{Breath Weapon} You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.\n\n\n\nAfter you use your breath weapon, you can't use it again until you complete a short or long rest.Damage Resistance. @Compendium[dnd5e.races.XxCuhIk6hAu6rNB0]{Damage Resistance} You have resistance to the damage type associated with your draconic ancestry.Languages. You can speak, read, and write Common and Draconic. Draconic is thought to be one of the oldest languages and is often used in the study of magic. The language sounds harsh to most other creatures and includes numerous hard consonants and sibilants. \n\n\n\n\n\n\n\n\n \n\n", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" - }, - "requirements": "", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.races.K4DNDcR6vngbp0pf" - } - }, - "img": "icons/magic/perception/eye-ringed-glow-angry-small-red.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } - }, - { - "_id": "6srkb2hvbgbrjzi3", - "name": "Life Domain", - "type": "subclass", - "img": "icons/magic/holy/barrier-shield-winged-cross.webp", - "system": { - "description": { - "value": "The Life domain focuses on the vibrant positive energy—one of the fundamental forces of the universe—that sustains all life. The gods of life promote vitality and health through healing the sick and wounded, caring for those in need, and driving away the forces of death and undeath. Almost any non-evil deity can claim influence over this domain, particularly agricultural deities (such as Chauntea, Arawai, and Demeter), sun gods (such as Lathander, Pelor, and Re-Horakhty), gods of healing or endurance (such as Ilmater, Mishakal, Apollo, and Diancecht), and gods of home and community (such as Hestia, Hathor, and Boldrei).\nLife Domain Spells\n\n\n\nCleric Level\nSpells\n\n\n\n\n1st\n@Compendium[dnd5e.spells.8dzaICjGy6mTUaUr]{Bless}, @Compendium[dnd5e.spells.uUWb1wZgtMou0TVP]{Cure Wounds}\n\n\n3rd\n@Compendium[dnd5e.spells.F0GsG0SJzsIOacwV]{Lesser Restoration}, @Compendium[dnd5e.spells.JbxsYXxSOTZbf9I0]{Spiritual Weapon}\n\n\n5th\n@Compendium[dnd5e.spells.ZU9d6woBdUP8pIPt]{Beacon of Hope}, @Compendium[dnd5e.spells.LmRHHMtplpxr9fX6]{Revivify}\n\n\n7th\n@Compendium[dnd5e.spells.VtCXMdyM6mAdIJZb]{Death Ward}, @Compendium[dnd5e.spells.TgHsuhNasPbhu8MO]{Guardian of Faith}\n\n\n9th\n@Compendium[dnd5e.spells.Pyzmm8R7rVsNAPsd]{Mass Cure Wounds}, @Compendium[dnd5e.spells.AGFMPAmuzwWO6Dfz]{Raise Dead}\n\n\n", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", "identifier": "life-domain", "classIdentifier": "cleric", "advancement": [ @@ -2542,6 +2444,26 @@ "value": {}, "level": 17, "title": "Features" + }, + { + "_id": "bW7chouU8WIVH0Le", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:hvy" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": { + "chosen": [ + "armor:hvy" + ] + } } ], "spellcasting": { @@ -2562,12 +2484,13 @@ }, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": null, - "modifiedTime": 1691519023020, + "modifiedTime": 1699989874871, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.6srkb2hvbgbrjzi3" }, { "_id": "P7mF2MxSuVJwHRRY", @@ -2582,7 +2505,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2598,7 +2526,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": null, @@ -2609,12 +2538,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -2674,7 +2605,8 @@ "createdTime": 1661603486203, "modifiedTime": 1661603486203, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.P7mF2MxSuVJwHRRY" }, { "_id": "n9pJzTDsAwQxJVRl", @@ -2689,7 +2621,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2705,7 +2642,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": 60, @@ -2716,12 +2654,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "save", @@ -2786,7 +2726,8 @@ "createdTime": 1661603486203, "modifiedTime": 1661603486203, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.n9pJzTDsAwQxJVRl" }, { "_id": "MUO1uYN7JR1hm4dR", @@ -2801,7 +2742,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2817,7 +2763,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 30, @@ -2828,12 +2775,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -2893,7 +2842,8 @@ "createdTime": 1661603486205, "modifiedTime": 1661603486205, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.MUO1uYN7JR1hm4dR" }, { "_id": "8dzaICjGy6mTUaUr", @@ -2906,7 +2856,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2922,7 +2877,8 @@ "value": 3, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": 30, @@ -2933,12 +2889,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -3033,7 +2991,8 @@ "origin": "Item.kZZAZ6kp9YzgPQEe", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!actors.items.effects!kfzBL0q1Y7LgGs2x.8dzaICjGy6mTUaUr.8rP3gwmXVTgZqYZE" } ], "folder": null, @@ -3053,7 +3012,8 @@ "createdTime": 1661603486205, "modifiedTime": 1661603486205, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.8dzaICjGy6mTUaUr" }, { "_id": "uUWb1wZgtMou0TVP", @@ -3068,7 +3028,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3084,7 +3049,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": null, @@ -3095,12 +3061,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "heal", @@ -3165,7 +3133,8 @@ "createdTime": 1661603486206, "modifiedTime": 1661603486206, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.uUWb1wZgtMou0TVP" }, { "_id": "gvdA9nPuWLck4tBl", @@ -3180,7 +3149,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -3196,7 +3170,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": 30, @@ -3207,12 +3182,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "save", @@ -3272,7 +3249,8 @@ "createdTime": 1661603486206, "modifiedTime": 1661603486206, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.gvdA9nPuWLck4tBl" }, { "_id": "arzCrMRgcNiQuh43", @@ -3287,7 +3265,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3303,7 +3286,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": 60, @@ -3314,12 +3298,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "save", @@ -3379,7 +3365,8 @@ "createdTime": 1661603486207, "modifiedTime": 1661603486207, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.arzCrMRgcNiQuh43" }, { "_id": "a3XtAO5n2GrqiAh5", @@ -3394,7 +3381,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3410,7 +3402,8 @@ "value": 30, "width": null, "units": "ft", - "type": "cube" + "type": "cube", + "prompt": true }, "range": { "value": 30, @@ -3421,12 +3414,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -3486,7 +3481,8 @@ "createdTime": 1661603486207, "modifiedTime": 1661603486207, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.a3XtAO5n2GrqiAh5" }, { "_id": "95K2aUhAGV9qXjnf", @@ -3501,7 +3497,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3517,7 +3518,8 @@ "value": 3, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": 30, @@ -3528,12 +3530,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "save", @@ -3635,7 +3639,8 @@ "origin": "Item.KkaQm4OQJxc6z3to", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!actors.items.effects!kfzBL0q1Y7LgGs2x.95K2aUhAGV9qXjnf.potjmpJPeUA1U4oe" } ], "folder": null, @@ -3646,7 +3651,8 @@ "createdTime": 1661603486208, "modifiedTime": 1661603486208, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.95K2aUhAGV9qXjnf" }, { "_id": "Mzh95utKDPIrjiH8", @@ -3661,7 +3667,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3677,7 +3688,8 @@ "value": 30, "width": null, "units": "ft", - "type": "radius" + "type": "radius", + "prompt": true }, "range": { "value": null, @@ -3688,12 +3700,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -3753,7 +3767,8 @@ "createdTime": 1661603486209, "modifiedTime": 1661603486209, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.Mzh95utKDPIrjiH8" }, { "_id": "ghXTfe7sgCbgf1Q8", @@ -3768,7 +3783,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3784,7 +3804,8 @@ "value": 30, "width": null, "units": "ft", - "type": "radius" + "type": "radius", + "prompt": true }, "range": { "value": null, @@ -3795,12 +3816,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -3860,7 +3883,8 @@ "createdTime": 1661603486210, "modifiedTime": 1661603486210, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.ghXTfe7sgCbgf1Q8" }, { "_id": "2skfDtglk1mGrb3l", @@ -3875,7 +3899,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3891,7 +3920,8 @@ "value": 30, "width": null, "units": "ft", - "type": "radius" + "type": "radius", + "prompt": true }, "range": { "value": null, @@ -3902,12 +3932,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -3967,7 +3999,8 @@ "createdTime": 1661603486210, "modifiedTime": 1661603486210, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.2skfDtglk1mGrb3l" }, { "_id": "7buEm5KhI5lP8m1z", @@ -3982,7 +4015,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3998,7 +4036,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": 120, @@ -4009,12 +4048,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "rsak", @@ -4079,7 +4120,8 @@ "createdTime": 1661603486210, "modifiedTime": 1661603486210, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.7buEm5KhI5lP8m1z" }, { "_id": "o8Dh7fblk1d16tnO", @@ -4094,7 +4136,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -4110,7 +4157,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": 60, @@ -4121,12 +4169,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "heal", @@ -4191,7 +4241,8 @@ "createdTime": 1661603486211, "modifiedTime": 1661603486211, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.o8Dh7fblk1d16tnO" }, { "_id": "ksaaTxIbKx2sJfia", @@ -4206,7 +4257,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -4222,7 +4278,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": null, @@ -4233,12 +4290,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "msak", @@ -4303,7 +4362,8 @@ "createdTime": 1661603486211, "modifiedTime": 1661603486211, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.ksaaTxIbKx2sJfia" }, { "_id": "xmDBqZhRVrtLP8h2", @@ -4318,7 +4378,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -4334,7 +4399,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": null, @@ -4345,12 +4411,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -4410,7 +4478,8 @@ "createdTime": 1661603486212, "modifiedTime": 1661603486212, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.xmDBqZhRVrtLP8h2" }, { "_id": "Kn7K5PtYUJAKZTTp", @@ -4425,7 +4494,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -4441,7 +4515,8 @@ "value": 5, "width": null, "units": "ft", - "type": "sphere" + "type": "sphere", + "prompt": true }, "range": { "value": 10, @@ -4452,12 +4527,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -4517,7 +4594,8 @@ "createdTime": 1661603486212, "modifiedTime": 1661603486212, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.Kn7K5PtYUJAKZTTp" }, { "_id": "jZ6JNykRtdQ90MOo", @@ -4532,7 +4610,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -4548,7 +4631,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": 60, @@ -4559,12 +4643,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -4624,7 +4710,8 @@ "createdTime": 1661603486213, "modifiedTime": 1661603486213, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.jZ6JNykRtdQ90MOo" }, { "name": "Priest", @@ -4635,7 +4722,12 @@ "chat": "", "unidentified": "" }, - "source": "", + "source": { + "custom": "", + "book": "", + "page": "", + "license": "CC-BY-4.0" + }, "advancement": [] }, "img": "icons/sundries/documents/document-torn-diagram-tan.webp", @@ -4654,7 +4746,8 @@ "modifiedTime": 1673040357495, "lastModifiedBy": "dnd5ebuilder0000" }, - "_id": "UXJw0wVE7GCx6yzv" + "_id": "UXJw0wVE7GCx6yzv", + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.UXJw0wVE7GCx6yzv" }, { "_id": "Zo7sWdchHDF6d0nn", @@ -4667,7 +4760,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "cleric", "levels": 1, "hitDice": "d8", @@ -4870,7 +4968,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -4891,7 +4990,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -4912,7 +5012,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -4933,7 +5034,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -4955,30 +5057,115 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" }, "level": 19, "title": "" + }, + { + "_id": "bcFNu9fM4o5He4J7", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:wis", + "saves:cha" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "saves:wis", + "saves:cha" + ] + } + }, + { + "_id": "6YQrE9NkjbvhfN8F", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:his", + "skills:ins", + "skills:med", + "skills:per", + "skills:rel" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "skills:his", + "skills:med" + ] + } + }, + { + "_id": "vLDkTMgod0IS4HJn", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:lgt", + "armor:med", + "armor:shl" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": { + "chosen": [ + "armor:lgt", + "armor:med", + "armor:shl" + ] + } + }, + { + "_id": "uyLXlhMnjMSHHdbs", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "weapon:sim" + ] + } } ], - "saves": [ - "wis", - "cha" - ], - "skills": { - "number": 2, - "choices": [ - "his", - "ins", - "med", - "per", - "rel" - ], - "value": [] - }, "spellcasting": { "progression": "full", "ability": "wis" @@ -4997,12 +5184,13 @@ }, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234282, - "modifiedTime": 1691519023054, + "modifiedTime": 1699989874871, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.Zo7sWdchHDF6d0nn" }, { "_id": "QC8NPpGVE4sAQA4Y", @@ -5017,7 +5205,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -5033,7 +5226,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -5044,12 +5238,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -5096,7 +5292,8 @@ "createdTime": 1661787234436, "modifiedTime": 1691519023057, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.QC8NPpGVE4sAQA4Y" }, { "_id": "GQ656cfZYrH361kV", @@ -5111,7 +5308,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -5127,7 +5329,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -5138,12 +5341,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "", @@ -5190,7 +5395,8 @@ "createdTime": 1661787234439, "modifiedTime": 1691519023058, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.GQ656cfZYrH361kV" }, { "_id": "nc5IaPb64YH0AT8L", @@ -5205,7 +5411,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -5221,7 +5432,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -5232,12 +5444,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -5301,7 +5515,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!actors.items.effects!kfzBL0q1Y7LgGs2x.nc5IaPb64YH0AT8L.Dk95lqbXXCUlefZW" } ], "folder": null, @@ -5313,7 +5528,8 @@ "createdTime": 1661787234335, "modifiedTime": 1691519023059, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.nc5IaPb64YH0AT8L" }, { "_id": "A7qWZHa1wRp3NRgK", @@ -5328,7 +5544,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -5344,7 +5565,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -5355,12 +5577,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "", @@ -5407,7 +5631,347 @@ "createdTime": 1661787234412, "modifiedTime": 1691519023060, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.A7qWZHa1wRp3NRgK" + }, + { + "_id": "syaK4jD01I8U6EAL", + "name": "Dragonborn", + "type": "race", + "img": "icons/creatures/eyes/lizard-single-slit-green.webp", + "system": { + "description": { + "value": "Your draconic heritage manifests in a variety of traits you share with other dragonborn.Ability Score Increase. Your Strength score increases by 2, and your Charisma score increases by 1.Age. Young dragonborn grow quickly. They walk hours after hatching, attain the size and development of a 10-year-old human child by the age of 3, and reach adulthood by 15. They live to be around 80.Alignment. Dragonborn tend to extremes, making a conscious choice for one side or the other in the cosmic war between good and evil. Most dragonborn are good, but those who side with evil can be terrible villains.Size. Dragonborn are taller and heavier than humans, standing well over 6 feet tall and averaging almost 250 pounds. Your size is Medium.Speed. Your base walking speed is 30 feet.Draconic AncestryDragonDamage TypeBreath WeaponBlackAcid5 by 30 ft. line (Dex. save)BlueLightning5 by 30 ft. line (Dex. save)BrassFire5 by 30 ft. line (Dex. save)BronzeLightning5 by 30 ft. line (Dex. save)CopperAcid5 by 30 ft. line (Dex. save)GoldFire15 ft. cone (Dex. save)GreenPoison15 ft. cone (Con. save)RedFire15 ft. cone (Dex. save)SilverCold15 ft. cone (Con. save)WhiteCold15 ft. cone (Con. save)Draconic Ancestry. You have draconic ancestry. Choose one type of dragon from the Draconic Ancestry table. Your breath weapon and damage resistance are determined by the dragon type, as shown in the table.Breath Weapon. You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.Damage Resistance. You have resistance to the damage type associated with your draconic ancestry.Languages. You can speak, read, and write Common and Draconic. Draconic is thought to be one of the oldest languages and is often used in the study of magic. The language sounds harsh to most other creatures and includes numerous hard consonants and sibilants.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "identifier": "dragonborn", + "advancement": [ + { + "_id": "QIrBmvSmNOTEJLWn", + "type": "ItemChoice", + "configuration": { + "hint": "You have draconic ancestry. Choose one type of dragon from the list. Your breath weapon and damage resistance are determined by the dragon type.", + "choices": { + "0": 1 + }, + "allowDrops": false, + "type": "feat", + "pool": [ + "Compendium.dnd5e.races.NnSZlrsHCFeH3cCq", + "Compendium.dnd5e.races.KVgvW5yhKcmQUanz", + "Compendium.dnd5e.races.JrUcwLR2aQC09iUM", + "Compendium.dnd5e.races.pJzMSk9qYywYy65w", + "Compendium.dnd5e.races.bFpLM0N3uTeHLdzu", + "Compendium.dnd5e.races.YPQQBZAuRiSwuBfh", + "Compendium.dnd5e.races.lXIxndsBaQglHBtO", + "Compendium.dnd5e.races.kB61JPKQrDBbSNU7", + "Compendium.dnd5e.races.pAYTdRGftNr8AitK", + "Compendium.dnd5e.races.KL7wx9Q8XNJQir0k" + ], + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + }, + "restriction": { + "type": "race", + "subtype": "", + "level": "" + } + }, + "value": { + "added": { + "0": { + "Ww5s1slhUia11ZqH": "Compendium.dnd5e.races.KL7wx9Q8XNJQir0k" + } + } + }, + "title": "Draconic Ancestry" + }, + { + "_id": "Z9hvZFkWUNvowbQX", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 0, + "fixed": { + "str": 2, + "dex": 0, + "con": 0, + "int": 0, + "wis": 0, + "cha": 1 + }, + "cap": 2 + }, + "value": { + "type": "asi", + "assignments": { + "str": 2, + "cha": 1 + } + }, + "level": 0, + "title": "" + }, + { + "_id": "rXLC7smebN2zPOBT", + "type": "ScaleValue", + "configuration": { + "identifier": "breath-weapon", + "type": "dice", + "distance": { + "units": "" + }, + "scale": { + "0": { + "number": 2, + "faces": 6 + }, + "6": { + "number": 3, + "faces": 6 + }, + "11": { + "number": 4, + "faces": 6 + }, + "16": { + "number": 5, + "faces": 6 + } + } + }, + "value": {}, + "title": "Breath Weapon" + }, + { + "_id": "9D8XNnmTLWfzN32K", + "type": "Size", + "configuration": { + "hint": "Dragonborn are taller and heavier than humans, standing well over 6 feet tall and averaging almost 250 pounds. Your size is Medium.", + "sizes": [ + "med" + ] + }, + "value": { + "size": "med" + }, + "level": 1, + "title": "" + }, + { + "_id": "6WUcKNSLh5WJ3Q24", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:standard:common", + "languages:exotic:draconic" + ], + "choices": [] + }, + "level": 0, + "title": "", + "value": { + "chosen": [ + "languages:standard:common", + "languages:exotic:draconic" + ] + } + }, + { + "_id": "2f4dkpTYlhOgRgxu", + "type": "Trait", + "configuration": { + "hint": "You have resistance to the damage type associated with your draconic ancestry.", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 1, + "pool": [ + "dr:acid", + "dr:cold", + "dr:fire", + "dr:lightning", + "dr:poison" + ] + } + ] + }, + "level": 0, + "title": "", + "value": { + "chosen": [ + "dr:cold" + ] + } + } + ], + "movement": { + "burrow": 0, + "climb": 0, + "fly": 0, + "swim": 0, + "walk": 30, + "units": "ft", + "hover": false + }, + "senses": { + "darkvision": 0, + "blindsight": 0, + "tremorsense": 0, + "truesight": 0, + "units": "ft", + "special": "" + }, + "type": { + "value": "humanoid", + "subtype": "", + "custom": "" + } + }, + "effects": [], + "ownership": { + "default": 0 + }, + "flags": { + "core": { + "sourceId": "Compendium.dnd5e.races.K4DNDcR6vngbp0pf" + } + }, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1677180157568, + "modifiedTime": 1699989874871, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "sort": 0, + "folder": null, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.syaK4jD01I8U6EAL" + }, + { + "_id": "Ww5s1slhUia11ZqH", + "name": "Breath Weapon - White", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a Constitution saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 cold damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "action", + "cost": 1, + "condition": "" + }, + "duration": { + "value": "", + "units": "inst" + }, + "cover": null, + "crewed": false, + "target": { + "value": 15, + "width": null, + "units": "ft", + "type": "cone", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": 1, + "max": "1", + "per": "sr", + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null, + "scale": false + }, + "ability": "con", + "actionType": "save", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [ + [ + "@scale.dragonborn.breath-weapon", + "cold" + ] + ], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "con", + "dc": null, + "scaling": "con" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "White Dragonborn", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": { + "dnd5e": { + "sourceId": "Compendium.dnd5e.races.KL7wx9Q8XNJQir0k", + "advancementOrigin": "syaK4jD01I8U6EAL.QIrBmvSmNOTEJLWn" + } + }, + "img": "icons/magic/water/projectile-icecicle.webp", + "effects": [], + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234466, + "modifiedTime": 1699985823369, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "sort": 0, + "folder": null, + "_key": "!actors.items!kfzBL0q1Y7LgGs2x.Ww5s1slhUia11ZqH" } ], "effects": [ @@ -5461,7 +6025,8 @@ "origin": "Compendium.dnd5e.heroes.kfzBL0q1Y7LgGs2x.Item.8dzaICjGy6mTUaUr", "tint": null, "transfer": false, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!kfzBL0q1Y7LgGs2x.8rP3gwmXVTgZqYZE" }, { "_id": "potjmpJPeUA1U4oe", @@ -5513,7 +6078,8 @@ "origin": "Compendium.dnd5e.heroes.kfzBL0q1Y7LgGs2x.Item.95K2aUhAGV9qXjnf", "tint": null, "transfer": false, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!kfzBL0q1Y7LgGs2x.potjmpJPeUA1U4oe" }, { "_id": "Dk95lqbXXCUlefZW", @@ -5541,7 +6107,8 @@ "transfer": false, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!kfzBL0q1Y7LgGs2x.Dk95lqbXXCUlefZW" } ], "folder": null, @@ -5552,10 +6119,11 @@ "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787232189, - "modifiedTime": 1691519023120, + "modifiedTime": 1699989874871, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!kfzBL0q1Y7LgGs2x" } diff --git a/packs/src/heroes/aoth-human-druid.json b/packs/src/heroes/aoth-human-druid.json index 575908cd5a..965ccaed93 100644 --- a/packs/src/heroes/aoth-human-druid.json +++ b/packs/src/heroes/aoth-human-druid.json @@ -73,31 +73,30 @@ "bonuses": { "level": "", "overall": "" - }, - "min": 0 + } }, "init": { "ability": "", "bonus": "0" }, "movement": { - "burrow": 0, - "climb": 0, - "fly": 0, - "swim": 0, - "walk": 30, - "units": "ft", + "burrow": null, + "climb": null, + "fly": null, + "swim": null, + "walk": null, + "units": null, "hover": false }, "attunement": { "max": 3 }, "senses": { - "darkvision": 0, - "blindsight": 0, - "tremorsense": 0, - "truesight": 0, - "units": "ft", + "darkvision": null, + "blindsight": null, + "tremorsense": null, + "truesight": null, + "units": null, "special": "" }, "spellcasting": "wis", @@ -110,12 +109,12 @@ }, "details": { "biography": { - "value": "Aoth lived among animals for so long that he now has difficulty speaking Common. His natural habitat in danger, he decided to join an adventuring group to return balance to his land.\n", + "value": "Aoth lived among animals for so long that he now has difficulty speaking Common. His natural habitat in danger, he decided to join an adventuring group to return balance to his land.", "public": "" }, "alignment": "True Neutral", - "race": "HUMAN", - "background": "", + "race": "FZiSrcZmUUelVbNW", + "background": null, "originalClass": "mwtiHpkH8Gglxr3u", "xp": { "value": 0 @@ -150,8 +149,8 @@ "languages": { "value": [ "common", - "druidic", - "gnomish" + "gnomish", + "druidic" ], "custom": "" }, @@ -163,10 +162,10 @@ "javelin", "mace", "quarterstaff", - "scimitar", "sickle", + "spear", "sling", - "spear" + "scimitar" ], "custom": "" }, @@ -179,9 +178,7 @@ "custom": "(No metal)" }, "toolProf": { - "value": [ - "herb" - ], + "value": [], "custom": "" } }, @@ -338,7 +335,15 @@ } } }, - "tools": {}, + "tools": { + "herb": { + "value": 1, + "ability": "int", + "bonuses": { + "check": "" + } + } + }, "spells": { "spell1": { "value": 2, @@ -510,7 +515,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -520,7 +530,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": {}, @@ -537,7 +551,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.yZ0HzuMNz4aMWPYH" }, { "_id": "DPlMjhbZkmNVJrdZ", @@ -549,7 +564,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -559,7 +579,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -580,7 +604,8 @@ "createdTime": null, "modifiedTime": 1670011640659, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.DPlMjhbZkmNVJrdZ" }, { "_id": "VaSicu4OB2Rb5IiV", @@ -592,7 +617,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -631,7 +661,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.VaSicu4OB2Rb5IiV" }, { "_id": "J0Xm66dc67W3H40l", @@ -643,7 +674,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -669,7 +705,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -680,12 +717,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -723,7 +762,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "sort": 0, "flags": { @@ -744,7 +783,8 @@ "createdTime": null, "modifiedTime": 1670011640674, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.J0Xm66dc67W3H40l" }, { "_id": "FX6PgZoih5lbqGur", @@ -756,7 +796,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -771,7 +816,7 @@ "baseItem": "", "ability": "wis", "chatFlavor": "", - "proficient": 1, + "proficient": null, "bonus": "" }, "sort": 0, @@ -793,7 +838,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.FX6PgZoih5lbqGur" }, { "_id": "EkVpvgSVXUJJd8sz", @@ -805,7 +851,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -831,7 +882,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -842,12 +894,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -885,7 +939,7 @@ }, "strength": null, "stealth": false, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -906,7 +960,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.EkVpvgSVXUJJd8sz" }, { "_id": "wQlDyAuPxNVwsaeL", @@ -918,7 +973,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -944,7 +1004,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 5, @@ -955,12 +1016,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -1012,7 +1075,7 @@ "thr": false, "two": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -1033,7 +1096,8 @@ "createdTime": null, "modifiedTime": 1670011640689, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.wQlDyAuPxNVwsaeL" }, { "_id": "efIjMSXJeGHp7JJ2", @@ -1045,7 +1109,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -1071,7 +1140,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 5, @@ -1082,12 +1152,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -1139,7 +1211,7 @@ "two": false, "ver": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -1160,7 +1232,8 @@ "createdTime": null, "modifiedTime": 1670011640698, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.efIjMSXJeGHp7JJ2" }, { "_id": "xJflRtfyMlGqXJ46", @@ -1172,7 +1245,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1215,7 +1293,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.xJflRtfyMlGqXJ46" }, { "_id": "Hp6fcWigyhEDAvdY", @@ -1227,7 +1306,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -1237,7 +1321,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1258,7 +1346,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.Hp6fcWigyhEDAvdY" }, { "_id": "aS5auFMrz8JmQHHd", @@ -1270,7 +1359,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1280,7 +1374,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1301,7 +1399,8 @@ "createdTime": null, "modifiedTime": 1670011640705, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.aS5auFMrz8JmQHHd" }, { "_id": "zCMTkV6VLX6SvAKM", @@ -1313,7 +1412,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1323,7 +1427,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1344,7 +1452,8 @@ "createdTime": null, "modifiedTime": 1670011640713, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.zCMTkV6VLX6SvAKM" }, { "_id": "HIHSYXIcwD6EC0un", @@ -1356,7 +1465,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -1382,7 +1496,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1394,12 +1509,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "abil", @@ -1419,7 +1536,8 @@ "dc": 17, "scaling": "flat" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -1440,7 +1558,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.HIHSYXIcwD6EC0un" }, { "_id": "XY4wR1kxV1nFNLE4", @@ -1452,7 +1571,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1478,7 +1602,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1490,12 +1615,14 @@ "max": "4", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1515,7 +1642,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -1536,7 +1664,8 @@ "createdTime": null, "modifiedTime": 1670011640727, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.XY4wR1kxV1nFNLE4" }, { "_id": "p3oldMqy5WWQCmuB", @@ -1548,7 +1677,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 1, "price": { @@ -1574,7 +1708,8 @@ "value": 40, "width": null, "units": "ft", - "type": "radius" + "type": "radius", + "prompt": true }, "range": { "value": null, @@ -1586,12 +1721,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "str", "actionType": "mwak", @@ -1616,7 +1753,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -1637,7 +1775,8 @@ "createdTime": null, "modifiedTime": 1670011647558, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.p3oldMqy5WWQCmuB" }, { "_id": "u900dGnBWSbjqrjP", @@ -1649,7 +1788,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 2, "price": { @@ -1675,7 +1819,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": null, @@ -1687,12 +1832,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1712,7 +1859,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -1733,100 +1881,8 @@ "createdTime": null, "modifiedTime": 1670011640749, "lastModifiedBy": "dnd5ebuilder0000" - } - }, - { - "_id": "s9TjQ4VjDzht25O3", - "name": "Human", - "type": "feat", - "system": { - "description": { - "value": "\n\n\nIt’s hard to make generalizations about humans, but your human character has these traits. Ability Score Increase. Your ability scores each increase by 1.Age. Humans reach adulthood in their late teens and live less than a century.Alignment. Humans tend toward no particular alignment. The best and the worst are found among them.Size. Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.Speed. Your base walking speed is 30 feet.Languages. You can speak, read, and write Common and one extra language of your choice. Humans typically learn the languages of other peoples they deal with, including obscure dialects. They are fond of sprinkling their speech with words borrowed from other tongues: Orc curses, Elvish musical expressions, Dwarvish military phrases, and so on.\n\n\n", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" - }, - "requirements": "", - "recharge": { - "value": null, - "charged": false - } }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.races.ydP3QzCmur55mtY2" - } - }, - "img": "icons/magic/light/explosion-star-large-orange.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } + "_key": "!actors.items!ZGDys30OS76uYaIO.u900dGnBWSbjqrjP" }, { "_id": "SbSvZKkJASyk8jKo", @@ -1841,7 +1897,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1857,7 +1918,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 30, @@ -1868,12 +1930,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1933,7 +1997,8 @@ "createdTime": 1661603486122, "modifiedTime": 1661603486122, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.SbSvZKkJASyk8jKo" }, { "_id": "VzgFzcmocr1X1cp4", @@ -1948,7 +2013,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -1964,7 +2034,8 @@ "value": 1, "width": null, "units": "spec", - "type": "object" + "type": "object", + "prompt": true }, "range": { "value": null, @@ -1975,12 +2046,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -2045,7 +2118,8 @@ "createdTime": 1661603486123, "modifiedTime": 1661603486123, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.VzgFzcmocr1X1cp4" }, { "_id": "hDOENzjuj5WpLq7B", @@ -2060,7 +2134,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2076,7 +2155,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": 30, @@ -2087,12 +2167,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "save", @@ -2152,7 +2234,8 @@ "createdTime": 1661603486123, "modifiedTime": 1661603486123, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.hDOENzjuj5WpLq7B" }, { "_id": "eS7XnnApoxRxYXPs", @@ -2167,7 +2250,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2183,7 +2271,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": 30, @@ -2194,12 +2283,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "save", @@ -2259,7 +2350,8 @@ "createdTime": 1661603486124, "modifiedTime": 1661603486124, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.eS7XnnApoxRxYXPs" }, { "_id": "a3XtAO5n2GrqiAh5", @@ -2274,7 +2366,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2290,7 +2387,8 @@ "value": 30, "width": null, "units": "ft", - "type": "cube" + "type": "cube", + "prompt": true }, "range": { "value": 30, @@ -2301,12 +2399,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -2366,7 +2466,8 @@ "createdTime": 1661603486124, "modifiedTime": 1661603486124, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.a3XtAO5n2GrqiAh5" }, { "_id": "uUWb1wZgtMou0TVP", @@ -2381,7 +2482,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2397,7 +2503,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": null, @@ -2408,12 +2515,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "heal", @@ -2478,7 +2587,8 @@ "createdTime": 1661603486124, "modifiedTime": 1661603486124, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.uUWb1wZgtMou0TVP" }, { "_id": "ghXTfe7sgCbgf1Q8", @@ -2493,7 +2603,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2509,7 +2624,8 @@ "value": 30, "width": null, "units": "ft", - "type": "radius" + "type": "radius", + "prompt": true }, "range": { "value": null, @@ -2520,12 +2636,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -2585,7 +2703,8 @@ "createdTime": 1661603486125, "modifiedTime": 1661603486125, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.ghXTfe7sgCbgf1Q8" }, { "_id": "2skfDtglk1mGrb3l", @@ -2600,7 +2719,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2616,7 +2740,8 @@ "value": 30, "width": null, "units": "ft", - "type": "radius" + "type": "radius", + "prompt": true }, "range": { "value": null, @@ -2627,12 +2752,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -2692,7 +2819,8 @@ "createdTime": 1661603486125, "modifiedTime": 1661603486125, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.2skfDtglk1mGrb3l" }, { "name": "Entangle", @@ -2704,7 +2832,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2720,7 +2853,8 @@ "value": 20, "width": null, "units": "ft", - "type": "square" + "type": "square", + "prompt": true }, "range": { "value": 90, @@ -2731,12 +2865,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "save", @@ -2799,7 +2935,8 @@ "createdTime": 1661603486126, "modifiedTime": 1661603486126, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.gMrWeG8fMDPRFiVe" }, { "_id": "nqBDWkVOfcGZt4YU", @@ -2814,7 +2951,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2830,7 +2972,8 @@ "value": 20, "width": null, "units": "ft", - "type": "cube" + "type": "cube", + "prompt": true }, "range": { "value": 60, @@ -2841,12 +2984,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "save", @@ -2906,7 +3051,8 @@ "createdTime": 1661603486127, "modifiedTime": 1661603486127, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.nqBDWkVOfcGZt4YU" }, { "_id": "IBJmWjzbQGu7M4UX", @@ -2921,7 +3067,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2937,7 +3088,8 @@ "value": 20, "width": null, "units": "ft", - "type": "sphere" + "type": "sphere", + "prompt": true }, "range": { "value": 120, @@ -2948,12 +3100,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -3013,7 +3167,8 @@ "createdTime": 1661603486128, "modifiedTime": 1661603486128, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.IBJmWjzbQGu7M4UX" }, { "_id": "Qf6CAZkc7ms4ZY3e", @@ -3028,7 +3183,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3044,7 +3204,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -3055,12 +3216,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "heal", @@ -3125,7 +3288,8 @@ "createdTime": 1661603486128, "modifiedTime": 1661603486128, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.Qf6CAZkc7ms4ZY3e" }, { "_id": "o8Dh7fblk1d16tnO", @@ -3140,7 +3304,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -3156,7 +3325,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": 60, @@ -3167,12 +3337,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "heal", @@ -3237,7 +3409,8 @@ "createdTime": 1661603486129, "modifiedTime": 1661603486129, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.o8Dh7fblk1d16tnO" }, { "_id": "ZrTc23tToJ0JpH2h", @@ -3252,7 +3425,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3268,7 +3446,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": null, @@ -3279,12 +3458,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -3344,7 +3525,8 @@ "createdTime": 1661603486129, "modifiedTime": 1661603486129, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.ZrTc23tToJ0JpH2h" }, { "_id": "B0pnIcc52O6G8hi8", @@ -3359,7 +3541,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3375,7 +3562,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": null, @@ -3386,12 +3574,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -3451,7 +3641,8 @@ "createdTime": 1661603486130, "modifiedTime": 1661603486130, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.B0pnIcc52O6G8hi8" }, { "_id": "Kn7K5PtYUJAKZTTp", @@ -3466,7 +3657,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3482,7 +3678,8 @@ "value": 5, "width": null, "units": "ft", - "type": "sphere" + "type": "sphere", + "prompt": true }, "range": { "value": 10, @@ -3493,12 +3690,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -3558,7 +3757,8 @@ "createdTime": 1661603486130, "modifiedTime": 1661603486130, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.Kn7K5PtYUJAKZTTp" }, { "_id": "aL1F8fvYLtNzUbKu", @@ -3573,7 +3773,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3589,7 +3794,8 @@ "value": null, "width": null, "units": "", - "type": "self" + "type": "self", + "prompt": true }, "range": { "value": null, @@ -3600,12 +3806,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -3665,7 +3873,8 @@ "createdTime": 1661603486131, "modifiedTime": 1661603486131, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.aL1F8fvYLtNzUbKu" }, { "_id": "WTbOQBsarsL1LuXJ", @@ -3680,7 +3889,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3696,7 +3910,8 @@ "value": 15, "width": null, "units": "ft", - "type": "cube" + "type": "cube", + "prompt": true }, "range": { "value": null, @@ -3707,12 +3922,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "save", @@ -3777,7 +3994,8 @@ "createdTime": 1661603486131, "modifiedTime": 1661603486131, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.WTbOQBsarsL1LuXJ" }, { "name": "Recluse", @@ -3788,7 +4006,12 @@ "chat": "", "unidentified": "" }, - "source": "", + "source": { + "custom": "", + "book": "", + "page": "", + "license": "CC-BY-4.0" + }, "advancement": [] }, "img": "icons/magic/light/explosion-beam-impact-silhouette.webp", @@ -3807,7 +4030,8 @@ "modifiedTime": 1673040344468, "lastModifiedBy": "dnd5ebuilder0000" }, - "_id": "lMobFB5hSFEGtkrq" + "_id": "lMobFB5hSFEGtkrq", + "_key": "!actors.items!ZGDys30OS76uYaIO.lMobFB5hSFEGtkrq" }, { "_id": "mwtiHpkH8Gglxr3u", @@ -3820,7 +4044,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "druid", "levels": 1, "hitDice": "d8", @@ -3993,7 +4222,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -4014,7 +4244,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -4035,7 +4266,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -4056,7 +4288,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -4078,33 +4311,175 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" }, "level": 19, "title": "" + }, + { + "_id": "GsMQJqy3R8DVF485", + "type": "Trait", + "configuration": { + "hint": "Light Armor, Medium Armor, & Shields (druids will not wear armor or use shields made of metal)", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:lgt", + "armor:med", + "armor:shl" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": { + "chosen": [ + "armor:lgt", + "armor:med", + "armor:shl" + ] + } + }, + { + "_id": "dK0oEtM8ovrLJxi3", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim:club", + "weapon:sim:dagger", + "weapon:sim:dart", + "weapon:sim:javelin", + "weapon:sim:mace", + "weapon:sim:quarterstaff", + "weapon:sim:sickle", + "weapon:sim:spear", + "weapon:sim:sling", + "weapon:mar:scimitar" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "weapon:sim:club", + "weapon:sim:dagger", + "weapon:sim:dart", + "weapon:sim:javelin", + "weapon:sim:mace", + "weapon:sim:quarterstaff", + "weapon:sim:sickle", + "weapon:sim:spear", + "weapon:sim:sling", + "weapon:mar:scimitar" + ] + } + }, + { + "_id": "tSywlKq0aE3GYMmi", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "tool:herb" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [] + } + }, + { + "_id": "xZ55SColbUbJOW2i", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:int", + "saves:wis" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "saves:int", + "saves:wis" + ] + } + }, + { + "_id": "bN13f0XX9ZVaUiaC", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:ani", + "skills:arc", + "skills:ins", + "skills:med", + "skills:nat", + "skills:prc", + "skills:rel", + "skills:sur" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "skills:nat", + "skills:prc" + ] + } + }, + { + "_id": "miieZ5i2DxMvyWKG", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:druidic" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": { + "chosen": [ + "languages:druidic" + ] + } } ], - "saves": [ - "int", - "wis" - ], - "skills": { - "number": 2, - "choices": [ - "arc", - "ani", - "ins", - "med", - "nat", - "prc", - "rel", - "sur" - ], - "value": [] - }, "spellcasting": { "progression": "full", "ability": "wis" @@ -4123,12 +4498,13 @@ }, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234284, - "modifiedTime": 1691519042381, + "modifiedTime": 1699992715557, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.mwtiHpkH8Gglxr3u" }, { "_id": "njUMNaCbBHpZswoL", @@ -4143,7 +4519,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -4159,7 +4540,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -4170,12 +4552,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -4239,7 +4623,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!actors.items.effects!ZGDys30OS76uYaIO.njUMNaCbBHpZswoL.iIQXR8VezkvbkFoS" } ], "folder": null, @@ -4251,7 +4636,8 @@ "createdTime": 1661787234364, "modifiedTime": 1691519042382, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.njUMNaCbBHpZswoL" }, { "_id": "HK6uFl7S3Mahvw9o", @@ -4266,7 +4652,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -4282,7 +4673,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -4293,12 +4685,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -4345,39 +4739,147 @@ "createdTime": 1661787234409, "modifiedTime": 1691519042388, "lastModifiedBy": "dnd5ebuilder0000" - } - } - ], - "effects": [ + }, + "_key": "!actors.items!ZGDys30OS76uYaIO.HK6uFl7S3Mahvw9o" + }, { - "_id": "iIQXR8VezkvbkFoS", - "changes": [ - { - "key": "system.traits.languages.value", - "mode": 2, - "value": "druidic", - "priority": null + "_id": "FZiSrcZmUUelVbNW", + "name": "Human", + "type": "race", + "img": "icons/environment/people/commoner.webp", + "system": { + "description": { + "value": "It's hard to make generalizations about humans, but your human character has these traits.Ability Score Increase. Your ability scores each increase by 1.Age. Humans reach adulthood in their late teens and live less than a century.Alignment. Humans tend toward no particular alignment. The best and the worst are found among them.Size. Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.Speed. Your base walking speed is 30 feet.Languages. You can speak, read, and write Common and one extra language of your choice. Humans typically learn the languages of other peoples they deal with, including obscure dialects. They are fond of sprinkling their speech with words borrowed from other tongues: Orc curses, Elvish musical expressions, Dwarvish military phrases, and so on.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "identifier": "human", + "advancement": [ + { + "_id": "Z9hvZFkWUNvowbQX", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 0, + "fixed": { + "str": 1, + "dex": 1, + "con": 1, + "int": 1, + "wis": 1, + "cha": 1 + }, + "cap": 2 + }, + "value": { + "type": "asi", + "assignments": { + "str": 1, + "dex": 1, + "con": 1, + "int": 1, + "wis": 1, + "cha": 1 + } + }, + "level": 0, + "title": "" + }, + { + "_id": "dNSrZePZHz2qwVpi", + "type": "Size", + "configuration": { + "hint": "Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.", + "sizes": [ + "med" + ] + }, + "value": { + "size": "med" + }, + "level": 1, + "title": "" + }, + { + "_id": "HI6r4Y6KjHND0i53", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:standard:common" + ], + "choices": [ + { + "count": 1, + "pool": [ + "languages:*" + ] + } + ] + }, + "level": 0, + "title": "", + "value": { + "chosen": [ + "languages:standard:common", + "languages:standard:gnomish" + ] + } + } + ], + "movement": { + "burrow": 0, + "climb": 0, + "fly": 0, + "swim": 0, + "walk": 30, + "units": "ft", + "hover": false + }, + "senses": { + "darkvision": 0, + "blindsight": 0, + "tremorsense": 0, + "truesight": 0, + "units": "ft", + "special": "" + }, + "type": { + "value": "humanoid", + "subtype": "", + "custom": "" } - ], - "disabled": false, - "duration": { - "startTime": 0, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "icon": "icons/sundries/documents/document-torn-diagram-tan.webp", - "label": "Druidic", - "origin": "Compendium.dnd5e.heroes.ZGDys30OS76uYaIO.Item.njUMNaCbBHpZswoL", - "transfer": false, - "flags": {}, - "tint": null, - "sort": 0 + }, + "effects": [], + "ownership": { + "default": 0 + }, + "flags": { + "core": { + "sourceId": "Compendium.dnd5e.races.ydP3QzCmur55mtY2" + } + }, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1677180079259, + "modifiedTime": 1699992715557, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "sort": 0, + "folder": null, + "_key": "!actors.items!ZGDys30OS76uYaIO.FZiSrcZmUUelVbNW" } ], + "effects": [], "folder": null, "sort": 0, "ownership": { @@ -4387,10 +4889,11 @@ "_id": "ZGDys30OS76uYaIO", "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787232171, - "modifiedTime": 1691519042425, + "modifiedTime": 1699992715575, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!ZGDys30OS76uYaIO" } diff --git a/packs/src/heroes/beiro-half-elf-bard.json b/packs/src/heroes/beiro-half-elf-bard.json index 6cc3454b51..8a740777ba 100644 --- a/packs/src/heroes/beiro-half-elf-bard.json +++ b/packs/src/heroes/beiro-half-elf-bard.json @@ -50,7 +50,7 @@ } }, "cha": { - "value": 16, + "value": 18, "proficient": 1, "max": null, "bonuses": { @@ -73,31 +73,30 @@ "bonuses": { "level": "", "overall": "" - }, - "min": 0 + } }, "init": { "ability": "", "bonus": "0" }, "movement": { - "burrow": 0, - "climb": 0, - "fly": 0, - "swim": 0, - "walk": 30, - "units": "ft", + "burrow": null, + "climb": null, + "fly": null, + "swim": null, + "walk": null, + "units": null, "hover": false }, "attunement": { "max": 3 }, "senses": { - "darkvision": 60, - "blindsight": 0, - "tremorsense": 0, - "truesight": 0, - "units": "ft", + "darkvision": null, + "blindsight": null, + "tremorsense": null, + "truesight": null, + "units": null, "special": "" }, "spellcasting": "cha", @@ -110,12 +109,12 @@ }, "details": { "biography": { - "value": "Beiro was a famed entertainer at his local tavern, when he one day ran out of stories to tell. To solve this, he set out to make his own stories, so as to one day tell them again at his tavern.\n", + "value": "Beiro was a famed entertainer at his local tavern, when he one day ran out of stories to tell. To solve this, he set out to make his own stories, so as to one day tell them again at his tavern.", "public": "" }, "alignment": "Chaotic Neutral", - "race": "Half Elf", - "background": "", + "race": "Mmfz1ndrE8zwXsWT", + "background": null, "originalClass": "jRCTm0gBRZHs1hc7", "xp": { "value": 0 @@ -173,7 +172,7 @@ }, "toolProf": { "value": [], - "custom": "Flute; Lyre; Drums; Lute" + "custom": "" } }, "currency": { @@ -329,7 +328,29 @@ } } }, - "tools": {}, + "tools": { + "bagpipes": { + "value": 1, + "ability": "int", + "bonuses": { + "check": "" + } + }, + "flute": { + "value": 1, + "ability": "int", + "bonuses": { + "check": "" + } + }, + "lute": { + "value": 1, + "ability": "int", + "bonuses": { + "check": "" + } + } + }, "spells": { "spell1": { "value": 2, @@ -501,7 +522,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -516,7 +542,7 @@ "baseItem": "", "ability": "cha", "chatFlavor": "", - "proficient": 1, + "proficient": null, "bonus": "" }, "sort": 0, @@ -534,7 +560,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.iWdMYgNBkGiajzc4" }, { "_id": "2Ejl2ovEUJg7swzL", @@ -546,7 +573,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -561,7 +593,7 @@ "baseItem": "", "ability": "cha", "chatFlavor": "", - "proficient": 1, + "proficient": null, "bonus": "" }, "sort": 0, @@ -579,7 +611,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.2Ejl2ovEUJg7swzL" }, { "_id": "TM6CyNpWtV8f0KAw", @@ -591,7 +624,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 25, "price": { @@ -634,7 +672,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.TM6CyNpWtV8f0KAw" }, { "_id": "Cj6MP46nIu5amhsZ", @@ -646,7 +685,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 2, "weight": 1, "price": { @@ -689,7 +733,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.Cj6MP46nIu5amhsZ" }, { "_id": "jNOSoW0La7Bk4vXk", @@ -701,7 +746,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -744,7 +794,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.jNOSoW0La7Bk4vXk" }, { "_id": "NjSGXfLGqF3ZRlGk", @@ -756,7 +807,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -799,7 +855,8 @@ "createdTime": null, "modifiedTime": 1670011641146, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.NjSGXfLGqF3ZRlGk" }, { "_id": "mTNjAEl1w1zwR5BT", @@ -811,7 +868,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -826,7 +888,7 @@ "baseItem": "", "ability": "int", "chatFlavor": "", - "proficient": 1, + "proficient": null, "bonus": "" }, "sort": 0, @@ -848,7 +910,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.mTNjAEl1w1zwR5BT" }, { "_id": "DPTz84c6sWcBSuQg", @@ -860,7 +923,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -886,7 +954,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 20, @@ -897,12 +966,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -954,7 +1025,7 @@ "two": false, "ver": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -975,7 +1046,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.DPTz84c6sWcBSuQg" }, { "_id": "vRbfWjO0wkfi2EUS", @@ -987,7 +1059,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -1013,7 +1090,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 5, @@ -1024,12 +1102,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -1081,7 +1161,7 @@ "two": false, "ver": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -1102,7 +1182,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.vRbfWjO0wkfi2EUS" }, { "_id": "QeJyd2v24zGDwXbq", @@ -1114,7 +1195,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -1140,7 +1226,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1151,12 +1238,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -1194,7 +1283,7 @@ }, "strength": null, "stealth": false, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -1215,7 +1304,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.QeJyd2v24zGDwXbq" }, { "_id": "N3Ya1Qmpj8fmK8eU", @@ -1227,7 +1317,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -1253,7 +1348,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1264,12 +1360,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -1307,7 +1405,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "sort": 0, "flags": { @@ -1328,7 +1426,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.N3Ya1Qmpj8fmK8eU" }, { "_id": "OoQ9lTEooaOlQQaV", @@ -1340,7 +1439,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -1366,7 +1470,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1377,12 +1482,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -1420,7 +1527,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "sort": 0, "flags": { @@ -1441,7 +1548,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.OoQ9lTEooaOlQQaV" }, { "_id": "wvxh8eOWg3RAJFoH", @@ -1453,7 +1561,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 2, "weight": 1, "price": { @@ -1479,7 +1592,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": 5, @@ -1491,12 +1605,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "dex", "actionType": "rwak", @@ -1521,7 +1637,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -1542,7 +1659,8 @@ "createdTime": null, "modifiedTime": 1670011641154, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.wvxh8eOWg3RAJFoH" }, { "_id": "RXlNK5wqC22ZojbN", @@ -1554,7 +1672,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1580,7 +1703,8 @@ "value": 45, "width": null, "units": "ft", - "type": "radius" + "type": "radius", + "prompt": true }, "range": { "value": null, @@ -1592,12 +1716,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1617,7 +1743,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -1638,7 +1765,8 @@ "createdTime": null, "modifiedTime": 1670011641163, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.RXlNK5wqC22ZojbN" }, { "_id": "6JFzrzKtJyhU12xi", @@ -1650,7 +1778,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -1665,7 +1798,7 @@ "baseItem": "", "ability": "cha", "chatFlavor": "", - "proficient": 1, + "proficient": null, "bonus": "" }, "sort": 0, @@ -1683,7 +1816,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.6JFzrzKtJyhU12xi" }, { "_id": "8pii9UucawKvfDsM", @@ -1695,7 +1829,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1705,7 +1844,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1726,7 +1869,8 @@ "createdTime": null, "modifiedTime": 1670011647682, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.8pii9UucawKvfDsM" }, { "_id": "9vSJX7VXZLXkXLVs", @@ -1738,7 +1882,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.06, "price": { @@ -1748,7 +1897,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1769,7 +1922,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.9vSJX7VXZLXkXLVs" }, { "_id": "VWdmspSsWBrQ85hx", @@ -1781,7 +1935,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 5, "weight": 0, "price": { @@ -1791,7 +1950,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1812,7 +1975,8 @@ "createdTime": null, "modifiedTime": 1670011641180, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.VWdmspSsWBrQ85hx" }, { "_id": "MgZvqEEt5jUtHG5d", @@ -1824,7 +1988,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1834,7 +2003,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1855,7 +2028,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.MgZvqEEt5jUtHG5d" }, { "_id": "833SKFj28K9Jzhzf", @@ -1867,7 +2041,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1877,7 +2056,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1898,7 +2081,8 @@ "createdTime": null, "modifiedTime": 1670011647692, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.833SKFj28K9Jzhzf" }, { "_id": "80Gaz3MRLsMImA2r", @@ -1910,7 +2094,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1920,7 +2109,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1941,7 +2134,8 @@ "createdTime": null, "modifiedTime": 1670011641233, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.80Gaz3MRLsMImA2r" }, { "_id": "pEDdh0i2HBhReeuU", @@ -1953,7 +2147,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1963,7 +2162,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": {}, @@ -1980,7 +2183,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.pEDdh0i2HBhReeuU" }, { "_id": "IUsB73tFTMjgMbFv", @@ -1992,7 +2196,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 2, "price": { @@ -2018,7 +2227,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": null, @@ -2030,12 +2240,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -2055,7 +2267,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -2076,54 +2289,66 @@ "createdTime": null, "modifiedTime": 1670011641244, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.IUsB73tFTMjgMbFv" }, { - "_id": "AtTEyddbePRRDUtT", - "name": "Fey Ancestry", - "type": "feat", + "_id": "Bnn9Nzajixvow9xi", + "name": "Light", + "ownership": { + "default": 0 + }, + "type": "spell", "system": { "description": { - "value": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", + "value": "You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { - "type": "", - "cost": null, + "type": "action", + "cost": 1, "condition": "" }, "duration": { - "value": "", - "units": "" + "value": "1", + "units": "hour" }, "cover": null, "crewed": false, "target": { - "value": null, + "value": 1, "width": null, "units": "", - "type": "" + "type": "object", + "prompt": true }, "range": { "value": null, "long": null, - "units": "" + "units": "touch" }, "uses": { "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "", "chatFlavor": "", "critical": { @@ -2136,87 +2361,110 @@ }, "formula": "", "save": { - "ability": "", - "dc": null, + "ability": "dex", + "dc": 13, "scaling": "spell" }, - "type": { - "value": "", - "subtype": "" + "level": 0, + "school": "evo", + "components": { + "vocal": true, + "somatic": false, + "material": true, + "ritual": false, + "concentration": false }, - "requirements": "Elf, Half-Elf", - "recharge": { - "value": null, - "charged": false + "materials": { + "value": "A firefly or phosphorescent moss.", + "consumed": false, + "cost": 0, + "supply": 0 + }, + "preparation": { + "mode": "prepared", + "prepared": false + }, + "scaling": { + "mode": "none", + "formula": "" } }, "sort": 0, "flags": { "core": { - "sourceId": "Compendium.dnd5e.monsterfeatures.LvSBjRKoCAKaAnQy" + "sourceId": "Compendium.dnd5e.spells.Bnn9Nzajixvow9xi" } }, - "img": "icons/creatures/mammals/elk-moose-marked-green.webp", + "img": "icons/magic/light/explosion-star-small-blue-yellow.webp", "effects": [], "folder": null, - "ownership": { - "default": 0 - }, "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } + "systemId": "dnd5e", + "systemVersion": "2.0.0", + "coreVersion": "10.279", + "createdTime": 1661603486304, + "modifiedTime": 1661603486304, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.Bnn9Nzajixvow9xi" }, { - "_id": "qK44BbnaFcoZMhDn", - "name": "Half-Elf", - "type": "feat", + "_id": "Utk1OQRwYkMkFRD3", + "name": "Mage Hand", + "ownership": { + "default": 0 + }, + "type": "spell", "system": { "description": { - "value": "\n\n\nYour half-elf character has some qualities in common with elves and some that are unique to half-elves. Ability Score Increase. Your Charisma score increases by 2, and two other ability scores of your choice increase by 1.Age. Half-elves mature at the same rate humans do and reach adulthood around the age of 20. They live much longer than humans, however, often exceeding 180 years.Alignment. Half-elves share the chaotic bent of their elven heritage. They value both personal freedom and creative expression, demonstrating neither love of leaders nor desire for followers. They chafe at rules, resent others' demands, and sometimes prove unreliable, or at least unpredictable.\n\n\n\nSize. Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Thanks to your elf blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Fey Ancestry. @Compendium[dnd5e.races.cnTbpPPeGW7vGjOV]{Fey Ancestry} You have advantage on saving throws against being charmed, and magic can't put you to sleep.Skill Versatility. You gain proficiency in two skills of your choice.Languages. You can speak, read, and write Common, Elvish, and one extra language of your choice.\n\n\n\n\n\n", + "value": "A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.The hand can't attack, activate magic items, or carry more than 10 pounds.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { - "type": "", - "cost": null, + "type": "action", + "cost": 1, "condition": "" }, "duration": { - "value": "", - "units": "" + "value": "1", + "units": "minute" }, "cover": null, "crewed": false, "target": { - "value": null, + "value": 1, "width": null, "units": "", - "type": "" + "type": "space", + "prompt": true }, "range": { - "value": null, + "value": 30, "long": null, - "units": "" + "units": "ft" }, "uses": { "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, - "ability": null, - "actionType": "", + "ability": "", + "actionType": "util", "attackBonus": "", "chatFlavor": "", "critical": { @@ -2233,217 +2481,14 @@ "dc": null, "scaling": "spell" }, - "type": { - "value": "", - "subtype": "" - }, - "requirements": "", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.races.Hye5IZwPOSwV0qRR" - } - }, - "img": "icons/magic/nature/leaf-glow-triple-teal.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } - }, - { - "_id": "Bnn9Nzajixvow9xi", - "name": "Light", - "ownership": { - "default": 0 - }, - "type": "spell", - "system": { - "description": { - "value": "You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "action", - "cost": 1, - "condition": "" - }, - "duration": { - "value": "1", - "units": "hour" - }, - "cover": null, - "crewed": false, - "target": { - "value": 1, - "width": null, - "units": "", - "type": "object" - }, - "range": { - "value": null, - "long": null, - "units": "touch" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": "", - "actionType": "save", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "dex", - "dc": 13, - "scaling": "spell" - }, - "level": 0, - "school": "evo", - "components": { - "vocal": true, - "somatic": false, - "material": true, - "ritual": false, - "concentration": false - }, - "materials": { - "value": "A firefly or phosphorescent moss.", - "consumed": false, - "cost": 0, - "supply": 0 - }, - "preparation": { - "mode": "prepared", - "prepared": false - }, - "scaling": { - "mode": "none", - "formula": "" - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.spells.Bnn9Nzajixvow9xi" - } - }, - "img": "icons/magic/light/explosion-star-small-blue-yellow.webp", - "effects": [], - "folder": null, - "_stats": { - "systemId": "dnd5e", - "systemVersion": "2.0.0", - "coreVersion": "10.279", - "createdTime": 1661603486304, - "modifiedTime": 1661603486304, - "lastModifiedBy": "dnd5ebuilder0000" - } - }, - { - "_id": "Utk1OQRwYkMkFRD3", - "name": "Mage Hand", - "ownership": { - "default": 0 - }, - "type": "spell", - "system": { - "description": { - "value": "A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.The hand can't attack, activate magic items, or carry more than 10 pounds.", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "action", - "cost": 1, - "condition": "" - }, - "duration": { - "value": "1", - "units": "minute" - }, - "cover": null, - "crewed": false, - "target": { - "value": 1, - "width": null, - "units": "", - "type": "space" - }, - "range": { - "value": 30, - "long": null, - "units": "ft" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": "", - "actionType": "util", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "level": 0, - "school": "con", - "components": { - "vocal": true, - "somatic": true, - "material": false, - "ritual": false, - "concentration": false + "level": 0, + "school": "con", + "components": { + "vocal": true, + "somatic": true, + "material": false, + "ritual": false, + "concentration": false }, "materials": { "value": "", @@ -2476,7 +2521,8 @@ "createdTime": 1661603486305, "modifiedTime": 1661603486305, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.Utk1OQRwYkMkFRD3" }, { "_id": "eS7XnnApoxRxYXPs", @@ -2491,7 +2537,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2507,7 +2558,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": 30, @@ -2518,12 +2570,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "save", @@ -2583,7 +2637,8 @@ "createdTime": 1661603486305, "modifiedTime": 1661603486305, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.eS7XnnApoxRxYXPs" }, { "_id": "A3q2gTNqG6fvNGrv", @@ -2598,7 +2653,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2614,7 +2674,8 @@ "value": null, "width": null, "units": "", - "type": "self" + "type": "self", + "prompt": true }, "range": { "value": null, @@ -2625,12 +2686,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -2690,7 +2753,8 @@ "createdTime": 1661603486305, "modifiedTime": 1661603486305, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.A3q2gTNqG6fvNGrv" }, { "_id": "ge3Saet9zPTDyaoL", @@ -2705,7 +2769,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2721,7 +2790,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": null, @@ -2732,12 +2802,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "heal", @@ -2802,7 +2874,8 @@ "createdTime": 1661603486306, "modifiedTime": 1661603486306, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.ge3Saet9zPTDyaoL" }, { "_id": "BQk5Row4NymMnUQl", @@ -2817,7 +2890,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2833,7 +2911,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": 30, @@ -2844,12 +2923,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "save", @@ -2909,7 +2990,8 @@ "createdTime": 1661603486306, "modifiedTime": 1661603486306, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.BQk5Row4NymMnUQl" }, { "name": "Musician", @@ -2920,7 +3002,12 @@ "chat": "", "unidentified": "" }, - "source": "", + "source": { + "custom": "", + "book": "", + "page": "", + "license": "CC-BY-4.0" + }, "advancement": [] }, "img": "icons/tools/instruments/harp-gold-glowing.webp", @@ -2939,7 +3026,8 @@ "modifiedTime": 1673040818193, "lastModifiedBy": "dnd5ebuilder0000" }, - "_id": "VgrH5nkz2SER0YhR" + "_id": "VgrH5nkz2SER0YhR", + "_key": "!actors.items!xVmbM44RXyI2Eqq3.VgrH5nkz2SER0YhR" }, { "_id": "jRCTm0gBRZHs1hc7", @@ -2952,7 +3040,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "bard", "levels": 1, "hitDice": "d8", @@ -3325,7 +3418,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -3346,7 +3440,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -3367,7 +3462,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -3388,7 +3484,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -3410,43 +3507,230 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" }, "level": 19, "title": "" + }, + { + "_id": "svCkv1ECxsmu2Q7U", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:lgt" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": { + "chosen": [ + "armor:lgt" + ] + } + }, + { + "_id": "hZPJWA6MdmFIZuQD", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim", + "weapon:mar:handcrossbow", + "weapon:mar:longsword", + "weapon:mar:rapier", + "weapon:mar:shortsword" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "weapon:sim", + "weapon:mar:handcrossbow", + "weapon:mar:longsword", + "weapon:mar:rapier", + "weapon:mar:shortsword" + ] + } + }, + { + "_id": "tRCVvsqiLStPNyFl", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 3, + "pool": [ + "tool:music:*" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "tool:music:bagpipes", + "tool:music:flute", + "tool:music:lute" + ] + } + }, + { + "_id": "wVBCjoHg0ftdHj3m", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:dex", + "saves:cha" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "saves:dex", + "saves:cha" + ] + } + }, + { + "_id": "eNU6FoX5sNVbDx13", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 3, + "pool": [ + "skills:*" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "skills:acr", + "skills:his", + "skills:slt" + ] + } + }, + { + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 1, + "pool": [ + "tool:music:*" + ] + } + ] + }, + "level": 1, + "title": "", + "_id": "8oBIVC96av3lm5uk", + "classRestriction": "secondary", + "value": {} + }, + { + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 1, + "pool": [ + "skills:*" + ] + } + ] + }, + "level": 1, + "title": "", + "_id": "ELIXk3XCH4EmyiqN", + "classRestriction": "secondary", + "value": {} + }, + { + "_id": "cwu9uhmtcKhqli8W", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "expertise", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:*" + ] + } + ] + }, + "level": 3, + "title": "Expertise", + "value": {} + }, + { + "type": "Trait", + "configuration": { + "hint": "", + "mode": "expertise", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:*" + ] + } + ] + }, + "level": 10, + "title": "Expertise", + "_id": "O2cVH7Y5kNfoUyLg", + "value": {} } ], - "saves": [ - "dex", - "cha" - ], - "skills": { - "number": 3, - "choices": [ - "acr", - "ani", - "arc", - "ath", - "dec", - "his", - "ins", - "itm", - "inv", - "med", - "nat", - "prc", - "per", - "prf", - "rel", - "slt", - "ste", - "sur" - ], - "value": [] - }, "spellcasting": { "progression": "full", "ability": "cha" @@ -3465,12 +3749,13 @@ }, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234279, - "modifiedTime": 1691519060054, + "modifiedTime": 1699992833464, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.jRCTm0gBRZHs1hc7" }, { "_id": "68Ddyvt01lMQMzxs", @@ -3485,7 +3770,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -3501,7 +3791,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -3512,12 +3803,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -3559,12 +3852,13 @@ "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234434, - "modifiedTime": 1691519060056, + "modifiedTime": 1699987344215, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.68Ddyvt01lMQMzxs" }, { "_id": "YbNSECwaQYGzHnfL", @@ -3579,7 +3873,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -3595,7 +3894,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": 60, @@ -3606,12 +3906,14 @@ "value": 1, "max": "max(1, @abilities.cha.mod)", "per": "lr", - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -3658,7 +3960,295 @@ "createdTime": 1661787234409, "modifiedTime": 1691519060057, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.YbNSECwaQYGzHnfL" + }, + { + "_id": "Mmfz1ndrE8zwXsWT", + "name": "Half-Elf", + "type": "race", + "img": "icons/magic/nature/leaf-glow-triple-green.webp", + "system": { + "description": { + "value": "Your half‑elf character has some qualities in common with elves and some that are unique to half-elves.Ability Score Increase. Your Charisma score increases by 2, and two other ability scores of your choice increase by 1.Age. Half-elves mature at the same rate humans do and reach adulthood around the age of 20. They live much longer than humans, however, often exceeding 180 years.Alignment. Half-elves share the chaotic bent of their elven heritage. They value both personal freedom and creative expression, demonstrating neither love of leaders nor desire for followers. They chafe at rules, resent others' demands, and sometimes prove unreliable, or at least unpredictable.Size. Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Thanks to your elf blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Fey Ancestry. You have advantage on saving throws against being charmed, and magic can't put you to sleep.Skill Versatility. You gain proficiency in two skills of your choice.Languages. You can speak, read, and write Common, Elvish, and one extra language of your choice.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "identifier": "half-elf", + "advancement": [ + { + "_id": "rXyxzoqxdxlspMi5", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.races.cnTbpPPeGW7vGjOV" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": { + "added": { + "9t0oaZailMjUceoS": "Compendium.dnd5e.races.cnTbpPPeGW7vGjOV" + } + }, + "level": 0, + "title": "" + }, + { + "_id": "Z9hvZFkWUNvowbQX", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 2, + "fixed": { + "str": 0, + "dex": 0, + "con": 0, + "int": 0, + "wis": 0, + "cha": 2 + }, + "cap": 1 + }, + "value": { + "type": "asi", + "assignments": { + "cha": 2 + } + }, + "level": 0, + "title": "" + }, + { + "_id": "r3PSgtQO6Eim49LU", + "type": "Size", + "configuration": { + "hint": "Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.", + "sizes": [ + "med" + ] + }, + "value": { + "size": "med" + }, + "level": 1, + "title": "" + }, + { + "_id": "CormRQZ5momyvS2I", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:*" + ] + } + ] + }, + "level": 0, + "title": "Skill Versatility", + "value": { + "chosen": [ + "skills:prc", + "skills:rel" + ] + } + }, + { + "_id": "U3OO7jLU0nm0Z7zw", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:standard:common", + "languages:standard:elvish" + ], + "choices": [ + { + "count": 1, + "pool": [ + "languages:*" + ] + } + ] + }, + "level": 0, + "title": "", + "value": { + "chosen": [ + "languages:standard:common", + "languages:standard:elvish", + "languages:standard:gnomish" + ] + } + } + ], + "senses": { + "darkvision": 60, + "blindsight": 0, + "tremorsense": 0, + "truesight": 0, + "units": "ft", + "special": "" + }, + "type": { + "subtype": "elf", + "value": "humanoid", + "custom": "" + }, + "movement": { + "burrow": 0, + "climb": 0, + "fly": 0, + "swim": 0, + "walk": 30, + "units": "ft", + "hover": false + } + }, + "effects": [], + "ownership": { + "default": 0 + }, + "flags": { + "core": { + "sourceId": "Compendium.dnd5e.races.Hye5IZwPOSwV0qRR" + } + }, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1677181061205, + "modifiedTime": 1699992833465, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "sort": 0, + "folder": null, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.Mmfz1ndrE8zwXsWT" + }, + { + "_id": "9t0oaZailMjUceoS", + "name": "Fey Ancestry", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "crewed": false, + "target": { + "value": null, + "width": null, + "units": "", + "type": "", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null, + "scale": false + }, + "ability": "", + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "Elf, Half-Elf", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": { + "dnd5e": { + "sourceId": "Compendium.dnd5e.races.cnTbpPPeGW7vGjOV", + "advancementOrigin": "Mmfz1ndrE8zwXsWT.rXyxzoqxdxlspMi5" + } + }, + "img": "icons/creatures/mammals/elk-moose-marked-green.webp", + "effects": [], + "folder": null, + "sort": 0, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234471, + "modifiedTime": 1699987342522, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!xVmbM44RXyI2Eqq3.9t0oaZailMjUceoS" } ], "effects": [], @@ -3671,10 +4261,11 @@ "_id": "xVmbM44RXyI2Eqq3", "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787232198, - "modifiedTime": 1691519060073, + "modifiedTime": 1699992833480, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!xVmbM44RXyI2Eqq3" } diff --git a/packs/src/heroes/krusk-half-orc-paladin.json b/packs/src/heroes/krusk-half-orc-paladin.json index a03f113e58..3d54fafc10 100644 --- a/packs/src/heroes/krusk-half-orc-paladin.json +++ b/packs/src/heroes/krusk-half-orc-paladin.json @@ -73,31 +73,30 @@ "bonuses": { "level": "", "overall": "" - }, - "min": 0 + } }, "init": { "ability": "", "bonus": "0" }, "movement": { - "burrow": 0, - "climb": 0, - "fly": 0, - "swim": 0, - "walk": 30, - "units": "ft", + "burrow": null, + "climb": null, + "fly": null, + "swim": null, + "walk": null, + "units": null, "hover": false }, "attunement": { "max": 3 }, "senses": { - "darkvision": 60, - "blindsight": 0, - "tremorsense": 0, - "truesight": 0, - "units": "ft", + "darkvision": null, + "blindsight": null, + "tremorsense": null, + "truesight": null, + "units": null, "special": "" }, "spellcasting": "cha", @@ -110,12 +109,12 @@ }, "details": { "biography": { - "value": "Roaming the land brigning justice to all, Krusk has just one goal: the destruction of evil wherever it lies.\n", + "value": "Roaming the land brigning justice to all, Krusk has just one goal: the destruction of evil wherever it lies.", "public": "" }, "alignment": "Lawful Good", - "race": "Half Orc", - "background": "", + "race": "PIvfnfQVQ98MdCmQ", + "background": null, "originalClass": "xogb503g0jZcBEyb", "xp": { "value": 0 @@ -171,10 +170,8 @@ "custom": "" }, "toolProf": { - "value": [ - "vehicle" - ], - "custom": "Smith's Tools" + "value": [], + "custom": "" } }, "currency": { @@ -234,7 +231,7 @@ } }, "ins": { - "value": 0, + "value": 1, "ability": "wis", "bonuses": { "check": "", @@ -330,7 +327,15 @@ } } }, - "tools": {}, + "tools": { + "vehicle": { + "value": 1, + "ability": "int", + "bonuses": { + "check": "" + } + } + }, "spells": { "spell1": { "value": 0, @@ -502,7 +507,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -528,7 +538,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -539,12 +550,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -582,7 +595,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "sort": 0, "flags": {}, @@ -599,7 +612,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Dh1AA6w104V17V6w.mmNOUJeTSbhakKbO" }, { "_id": "wKzMNfJSgCUaqpHG", @@ -611,7 +625,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -637,7 +656,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 30, @@ -648,12 +668,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -705,7 +727,7 @@ "ver": false, "lod": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": {}, @@ -722,7 +744,8 @@ "createdTime": null, "modifiedTime": 1670011640500, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Dh1AA6w104V17V6w.wKzMNfJSgCUaqpHG" }, { "_id": "PzYFkgoa8KpZwUWe", @@ -734,7 +757,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -760,7 +788,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 30, @@ -771,12 +800,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "ammo", "target": "REOAERyAiCBpCA7V", - "amount": 1 + "amount": 1, + "scale": false }, "ability": "", "actionType": "rwak", @@ -828,7 +859,7 @@ "ver": false, "lod": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": {}, @@ -845,7 +876,8 @@ "createdTime": null, "modifiedTime": 1670011640507, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Dh1AA6w104V17V6w.PzYFkgoa8KpZwUWe" }, { "_id": "REOAERyAiCBpCA7V", @@ -857,7 +889,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 5, "weight": 2, "price": { @@ -883,7 +920,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -895,12 +933,14 @@ "max": "", "per": null, "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -920,7 +960,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "ammo" + "consumableType": "ammo", + "properties": {} }, "sort": 0, "flags": { @@ -941,7 +982,8 @@ "createdTime": null, "modifiedTime": 1670011640514, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Dh1AA6w104V17V6w.REOAERyAiCBpCA7V" }, { "_id": "h9ta6MMHygQtSvhd", @@ -953,7 +995,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -963,7 +1010,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": {}, @@ -980,7 +1031,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Dh1AA6w104V17V6w.h9ta6MMHygQtSvhd" }, { "_id": "7GbdWRRe8GyKGVYk", @@ -992,7 +1044,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 55, "price": { @@ -1018,7 +1075,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1029,12 +1087,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -1072,7 +1132,7 @@ }, "strength": 13, "stealth": true, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -1093,7 +1153,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Dh1AA6w104V17V6w.7GbdWRRe8GyKGVYk" }, { "_id": "jAp8oEZymuFqMEME", @@ -1105,7 +1166,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -1131,7 +1197,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1142,12 +1209,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -1185,7 +1254,7 @@ }, "strength": null, "stealth": false, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -1206,7 +1275,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Dh1AA6w104V17V6w.jAp8oEZymuFqMEME" }, { "_id": "JVygpNYgNviQlQDL", @@ -1218,7 +1288,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -1244,7 +1319,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 5, @@ -1255,12 +1331,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -1312,7 +1390,7 @@ "thr": false, "two": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -1333,7 +1411,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Dh1AA6w104V17V6w.JVygpNYgNviQlQDL" }, { "_id": "QDJj8gNDG3fapNIZ", @@ -1345,7 +1424,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -1371,7 +1455,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1383,12 +1468,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "abil", @@ -1408,7 +1495,8 @@ "dc": 17, "scaling": "flat" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -1435,7 +1523,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Dh1AA6w104V17V6w.QDJj8gNDG3fapNIZ" }, { "_id": "E0S0CJRUih4rZUTx", @@ -1447,7 +1536,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1457,7 +1551,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1484,7 +1582,8 @@ "createdTime": null, "modifiedTime": 1670011640519, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Dh1AA6w104V17V6w.E0S0CJRUih4rZUTx" }, { "_id": "XDOhevGrWTwftiiM", @@ -1496,7 +1595,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -1506,7 +1610,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1533,7 +1641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Dh1AA6w104V17V6w.XDOhevGrWTwftiiM" }, { "_id": "eIMlGbeDuYjjEGRH", @@ -1545,7 +1654,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1571,7 +1685,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1583,12 +1698,14 @@ "max": "4", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1608,7 +1725,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -1629,7 +1747,8 @@ "createdTime": null, "modifiedTime": 1670011640526, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Dh1AA6w104V17V6w.eIMlGbeDuYjjEGRH" }, { "_id": "XeDU0JtxGcNBjXer", @@ -1641,7 +1760,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1684,7 +1808,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Dh1AA6w104V17V6w.XeDU0JtxGcNBjXer" }, { "_id": "IPeL1J71CbP6s5y5", @@ -1696,7 +1821,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 8, "price": { @@ -1711,7 +1841,7 @@ "baseItem": "", "ability": "str", "chatFlavor": "", - "proficient": 1, + "proficient": null, "bonus": "" }, "sort": 0, @@ -1733,7 +1863,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Dh1AA6w104V17V6w.IPeL1J71CbP6s5y5" }, { "_id": "zk8hxPzKFTDZWVED", @@ -1745,7 +1876,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1755,7 +1891,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1776,7 +1916,8 @@ "createdTime": null, "modifiedTime": 1670011640532, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Dh1AA6w104V17V6w.zk8hxPzKFTDZWVED" }, { "_id": "grGg87yIxTTxoPTA", @@ -1788,7 +1929,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 1, "price": { @@ -1814,7 +1960,8 @@ "value": 40, "width": null, "units": "ft", - "type": "radius" + "type": "radius", + "prompt": true }, "range": { "value": null, @@ -1826,12 +1973,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "str", "actionType": "mwak", @@ -1856,7 +2005,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -1883,7 +2033,8 @@ "createdTime": null, "modifiedTime": 1670011647529, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Dh1AA6w104V17V6w.grGg87yIxTTxoPTA" }, { "_id": "WuNY7UdTCjUEpGlU", @@ -1895,7 +2046,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 2, "price": { @@ -1921,7 +2077,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": null, @@ -1933,12 +2090,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1958,7 +2117,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -1979,334 +2139,62 @@ "createdTime": null, "modifiedTime": 1670011640583, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Dh1AA6w104V17V6w.WuNY7UdTCjUEpGlU" }, { - "_id": "JdhpBDti3h3tNZai", - "name": "Relentless Endurance", - "type": "feat", + "name": "Local Champion", + "type": "background", "system": { "description": { - "value": "When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.", + "value": "Skill Proficiencies: Animal Handling, SurvivalTool Proficiencies: Artisan's tools, vehicles (land)Equipment: A set of artisan's tools, common clothes, and a pouch containing 10 gp", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "special", - "cost": null, - "condition": "When you are reduced to 0 hit points" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "self" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": 1, - "max": "1", - "per": "lr", - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": "", - "actionType": "heal", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [ - [ - "1", - "healing" - ] - ], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" + "source": { + "custom": "", + "book": "", + "page": "", + "license": "CC-BY-4.0" }, - "requirements": "Half-Orc", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.races.97c8i9Z28thvZuA8" - } + "advancement": [] }, - "img": "icons/magic/control/control-influence-rally-purple.webp", + "img": "icons/environment/people/infantry-armored.webp", "effects": [], "folder": null, + "sort": 0, "ownership": { "default": 0 }, + "flags": {}, "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } + "systemId": "dnd5e", + "systemVersion": "2.1.0", + "coreVersion": "10.291", + "createdTime": 1673040183979, + "modifiedTime": 1673040912446, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_id": "gfQ9BWSZtm6WJyZr", + "_key": "!actors.items!Dh1AA6w104V17V6w.gfQ9BWSZtm6WJyZr" }, { - "_id": "Md0yW4QscE770F7W", - "name": "Savage Attacks", - "type": "feat", + "_id": "xogb503g0jZcBEyb", + "name": "Paladin", + "type": "class", + "img": "icons/skills/melee/weapons-crossed-swords-yellow-teal.webp", "system": { "description": { - "value": "When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.Foundry Note: Enable this feature in the Special Traits section of the character sheet.", + "value": "As a paladin, you gain the following class features.\nHit Points\nHit Dice: 1d10 per paladin levelHit Points at 1st Level: 10 + your Constitution modifierHit Points at Higher Levels: 1d10 (or 6) + your Constitution modifier per paladin level after 1st\nProficiencies\nArmor: All armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two from Athletics, Insight, Intimidation, Medicine, Persuasion, and Religion\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a martial weapon and a shield or (b) two martial weapons\n(a) five javelins or (b) any simple melee weapon\n(a) a priest's pack or (b) an explorer's pack\nChain mail and a holy symbol\n\nPaladin Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.E8ozg8avUVOX9N7u]{Divine Sense}, @Compendium[dnd5e.classfeatures.OdrvL3afwLOPeuYZ]{Lay on Hands}\n\n\n2nd\n+2\n@UUID[Compendium.dnd5e.classfeatures.Ho7dVxBlOYFlfBHk]{Fighting Style}, @Compendium[dnd5e.classfeatures.ihoQHsmVZlyDbPhX]{Spellcasting}, @Compendium[dnd5e.classfeatures.ySMPQ6zNSlvkrl2f]{Divine Smite}\n\n\n3rd\n+2\n@Compendium[dnd5e.classfeatures.dY9yrqkyEDuF0CG2]{Divine Health}, @Compendium[dnd5e.classfeatures.olAqNsUTIef9x8xC]{Sacred Oath}, @UUID[Compendium.dnd5e.classfeatures.8M7uOPhbTxoxxJSo]{Channel Divinity}\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n5th\n+3\n2nd Level Spell Slot, @Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}\n\n\n6th\n+3\n@Compendium[dnd5e.classfeatures.carGDhkIdoduTC0I]{Aura of Protection}\n\n\n7th\n+3\nSacred Oath feature\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n9th\n+4\n3rd Level Spell Slot\n\n\n10th\n+4\n@Compendium[dnd5e.classfeatures.nahSkBO6LH4HkpaT]{Aura of Courage}\n\n\n11th\n+4\n@Compendium[dnd5e.classfeatures.FAk41RPCTcvCk6KI]{Improved Divine Smite}\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n4th Level Spell Slot\n\n\n14th\n+5\n@Compendium[dnd5e.classfeatures.U7BIPVPsptBmwsnV]{Cleansing Touch}\n\n\n15th\n+5\nSacred Oath feature\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n5th Level Spell Slot\n\n\n18th\n+6\nAura improvements\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\nSacred Oath feature\n\n\n\nSacred Oaths\nBecoming a paladin involves taking vows that commit the paladin to the cause of righteousness, an active path of fighting wickedness. The final oath, taken when he or she reaches 3rd level, is the culmination of all the paladin's training. Some characters with this class don't consider themselves true paladins until they have reached 3rd level and made this oath. For others, the actual swearing of the oath is a formality, an official stamp on what has always been true in the paladin's heart.\n@Compendium[dnd5e.subclasses.sZ86mbX8D5PfYuhl]{Oath of Devotion}\nBreaking Your Oath\nA paladin tries to hold to the highest standards of conduct, but even the most virtuous paladin is fallible. Sometimes the right path proves too demanding, sometimes a situation calls for the lesser of two evils, and sometimes the heat of emotion causes a paladin to transgress his or her oath.\nA paladin who has broken a vow typically seeks absolution from a cleric who shares his or her faith or from another paladin of the same order. The paladin might spend an allnight vigil in prayer as a sign of penitence, or undertake a fast or similar act of self-denial. After a rite of confession and forgiveness, the paladin starts fresh.\nIf a paladin willfully violates his or her oath and shows no sign of repentance, the consequences can be more serious. At the GM's discretion, an impenitent paladin might be forced to abandon this class and adopt another.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": "", - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" }, - "requirements": "Half-Orc", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.races.0kUsT4sMUOr5FcoX" - } - }, - "img": "icons/skills/melee/weapons-crossed-swords-purple.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } - }, - { - "_id": "QX131bK0iuunr5uE", - "name": "Half-Orc", - "type": "feat", - "system": { - "description": { - "value": "\n\n\nYour half-orc character has certain traits deriving from your orc ancestry. Ability Score Increase. Your Strength score increases by 2, and your Constitution score increases by 1.Age. Half-orcs mature a little faster than humans, reaching adulthood around age 14. They age noticeably faster and rarely live longer than 75 years.Alignment. Half-orcs inherit a tendency toward chaos from their orc parents and are not strongly inclined toward good. Half-orcs raised among orcs and willing to live out their lives among them are usually evil.Size. Half-orcs are somewhat larger and bulkier than humans, and they range from 5 to well over 6 feet tall. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Thanks to your orc blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Menacing. You gain proficiency in the Intimidation skill.Relentless Endurance. @Compendium[dnd5e.races.97c8i9Z28thvZuA8]{Relentless Endurance} When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.\n\n\n\nSavage Attacks. @Compendium[dnd5e.races.0kUsT4sMUOr5FcoX]{Savage Attacks} When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.Languages. You can speak, read, and write Common and Orc. Orc is a harsh, grating language with hard consonants. It has no script of its own but is written in the Dwarvish script.\n\n\n\n\n\n", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" - }, - "requirements": "", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.races.n5L000DkNBU6h2oJ" - } - }, - "img": "icons/magic/unholy/orb-smoking-green.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } - }, - { - "name": "Local Champion", - "type": "background", - "system": { - "description": { - "value": "Skill Proficiencies: Animal Handling, SurvivalTool Proficiencies: Artisan's tools, vehicles (land)Equipment: A set of artisan's tools, common clothes, and a pouch containing 10 gp", - "chat": "", - "unidentified": "" - }, - "source": "", - "advancement": [] - }, - "img": "icons/environment/people/infantry-armored.webp", - "effects": [], - "folder": null, - "sort": 0, - "ownership": { - "default": 0 - }, - "flags": {}, - "_stats": { - "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", - "createdTime": 1673040183979, - "modifiedTime": 1673040912446, - "lastModifiedBy": "dnd5ebuilder0000" - }, - "_id": "gfQ9BWSZtm6WJyZr" - }, - { - "_id": "xogb503g0jZcBEyb", - "name": "Paladin", - "type": "class", - "img": "icons/skills/melee/weapons-crossed-swords-yellow-teal.webp", - "system": { - "description": { - "value": "As a paladin, you gain the following class features.\nHit Points\nHit Dice: 1d10 per paladin levelHit Points at 1st Level: 10 + your Constitution modifierHit Points at Higher Levels: 1d10 (or 6) + your Constitution modifier per paladin level after 1st\nProficiencies\nArmor: All armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two from Athletics, Insight, Intimidation, Medicine, Persuasion, and Religion\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a martial weapon and a shield or (b) two martial weapons\n(a) five javelins or (b) any simple melee weapon\n(a) a priest's pack or (b) an explorer's pack\nChain mail and a holy symbol\n\nPaladin Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.E8ozg8avUVOX9N7u]{Divine Sense}, @Compendium[dnd5e.classfeatures.OdrvL3afwLOPeuYZ]{Lay on Hands}\n\n\n2nd\n+2\n@UUID[Compendium.dnd5e.classfeatures.Ho7dVxBlOYFlfBHk]{Fighting Style}, @Compendium[dnd5e.classfeatures.ihoQHsmVZlyDbPhX]{Spellcasting}, @Compendium[dnd5e.classfeatures.ySMPQ6zNSlvkrl2f]{Divine Smite}\n\n\n3rd\n+2\n@Compendium[dnd5e.classfeatures.dY9yrqkyEDuF0CG2]{Divine Health}, @Compendium[dnd5e.classfeatures.olAqNsUTIef9x8xC]{Sacred Oath}, @UUID[Compendium.dnd5e.classfeatures.8M7uOPhbTxoxxJSo]{Channel Divinity}\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n5th\n+3\n2nd Level Spell Slot, @Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}\n\n\n6th\n+3\n@Compendium[dnd5e.classfeatures.carGDhkIdoduTC0I]{Aura of Protection}\n\n\n7th\n+3\nSacred Oath feature\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n9th\n+4\n3rd Level Spell Slot\n\n\n10th\n+4\n@Compendium[dnd5e.classfeatures.nahSkBO6LH4HkpaT]{Aura of Courage}\n\n\n11th\n+4\n@Compendium[dnd5e.classfeatures.FAk41RPCTcvCk6KI]{Improved Divine Smite}\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n4th Level Spell Slot\n\n\n14th\n+5\n@Compendium[dnd5e.classfeatures.U7BIPVPsptBmwsnV]{Cleansing Touch}\n\n\n15th\n+5\nSacred Oath feature\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n5th Level Spell Slot\n\n\n18th\n+6\nAura improvements\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\nSacred Oath feature\n\n\n\nSacred Oaths\nBecoming a paladin involves taking vows that commit the paladin to the cause of righteousness, an active path of fighting wickedness. The final oath, taken when he or she reaches 3rd level, is the culmination of all the paladin's training. Some characters with this class don't consider themselves true paladins until they have reached 3rd level and made this oath. For others, the actual swearing of the oath is a formality, an official stamp on what has always been true in the paladin's heart.\n@Compendium[dnd5e.subclasses.sZ86mbX8D5PfYuhl]{Oath of Devotion}\nBreaking Your Oath\nA paladin tries to hold to the highest standards of conduct, but even the most virtuous paladin is fallible. Sometimes the right path proves too demanding, sometimes a situation calls for the lesser of two evils, and sometimes the heat of emotion causes a paladin to transgress his or her oath.\nA paladin who has broken a vow typically seeks absolution from a cleric who shares his or her faith or from another paladin of the same order. The paladin might spend an allnight vigil in prayer as a sign of penitence, or undertake a fast or similar act of self-denial. After a rite of confession and forgiveness, the paladin starts fresh.\nIf a paladin willfully violates his or her oath and shows no sign of repentance, the consequences can be more serious. At the GM's discretion, an impenitent paladin might be forced to abandon this class and adopt another.", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", "identifier": "paladin", "levels": 1, "hitDice": "d10", @@ -2553,7 +2441,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -2574,7 +2463,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -2595,7 +2485,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -2616,7 +2507,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -2638,31 +2530,155 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" }, "level": 19, "title": "" + }, + { + "_id": "qfbfR422hrwjwWyd", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:lgt", + "armor:med", + "armor:hvy", + "armor:shl" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "armor:lgt", + "armor:med", + "armor:hvy", + "armor:shl" + ] + } + }, + { + "_id": "2pEp37GeIGCBdiqU", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim", + "weapon:mar" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": { + "chosen": [ + "weapon:sim", + "weapon:mar" + ] + } + }, + { + "_id": "aIeuTIJdiKMaChi8", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:wis", + "saves:cha" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "saves:wis", + "saves:cha" + ] + } + }, + { + "_id": "ZZIWxV7EaHl6GVcu", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:ath", + "skills:ins", + "skills:itm", + "skills:med", + "skills:per", + "skills:rel" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "skills:ins", + "skills:rel" + ] + } + }, + { + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:lgt", + "armor:med", + "armor:shl" + ], + "choices": [] + }, + "level": 1, + "title": "", + "_id": "qd6RxOGs50LR5Lea", + "classRestriction": "secondary", + "value": {} + }, + { + "_id": "LYiiMtwvVVXZs8yE", + "type": "Trait", + "configuration": { + "hint": "The divine magic flowing through you makes you immune to disease.", + "mode": "default", + "allowReplacements": false, + "grants": [ + "ci:diseased" + ], + "choices": [] + }, + "level": 3, + "title": "Divine Health", + "value": {} } ], - "saves": [ - "wis", - "cha" - ], - "skills": { - "number": 2, - "choices": [ - "ath", - "ins", - "itm", - "med", - "per", - "rel" - ], - "value": [] - }, "spellcasting": { "progression": "half", "ability": "cha" @@ -2681,12 +2697,13 @@ }, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234280, - "modifiedTime": 1691519075009, + "modifiedTime": 1699992948012, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Dh1AA6w104V17V6w.xogb503g0jZcBEyb" }, { "_id": "BudM4uxDSnRehek7", @@ -2701,7 +2718,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2717,7 +2739,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 60, @@ -2728,12 +2751,14 @@ "value": 1, "max": "1 + @abilities.cha.mod", "per": "lr", - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "", @@ -2775,12 +2800,13 @@ "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234352, - "modifiedTime": 1691519075010, + "modifiedTime": 1699987355946, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Dh1AA6w104V17V6w.BudM4uxDSnRehek7" }, { "_id": "2zb2FwOFtktH9JHF", @@ -2795,7 +2821,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2811,7 +2842,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": null, @@ -2822,12 +2854,14 @@ "value": 5, "max": "5 * @classes.paladin.levels", "per": "lr", - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "heal", @@ -2869,12 +2903,397 @@ "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234371, - "modifiedTime": 1691519075010, + "modifiedTime": 1699987355947, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Dh1AA6w104V17V6w.2zb2FwOFtktH9JHF" + }, + { + "_id": "PIvfnfQVQ98MdCmQ", + "name": "Half-Orc", + "type": "race", + "img": "icons/commodities/bones/skull-tusked-grey.webp", + "system": { + "description": { + "value": "Your half-orc character has certain traits deriving from your orc ancestry.Ability Score Increase. Your Strength score increases by 2, and your Constitution score increases by 1.Age. Half-orcs mature a little faster than humans, reaching adulthood around age 14. They age noticeably faster and rarely live longer than 75 years.Alignment. Half-orcs inherit a tendency toward chaos from their orc parents and are not strongly inclined toward good. Half-orcs raised among orcs and willing to live out their lives among them are usually evil.Size. Half‑orcs are somewhat larger and bulkier than humans, and they range from 5 to well over 6 feet tall. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Thanks to your orc blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Menacing. You gain proficiency in the Intimidation skill.Relentless Endurance. When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.Savage Attacks. When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.Languages. You can speak, read, and write Common and Orc. Orc is a harsh, grating language with hard consonants. It has no script of its own but is written in the Dwarvish script.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "identifier": "half-orc", + "advancement": [ + { + "_id": "Nj1VOKOTjxKU15J8", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.races.97c8i9Z28thvZuA8", + "Compendium.dnd5e.races.0kUsT4sMUOr5FcoX" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": { + "added": { + "qLsxqVkevc8LivRC": "Compendium.dnd5e.races.97c8i9Z28thvZuA8", + "3EbsalzpbmnJxgU2": "Compendium.dnd5e.races.0kUsT4sMUOr5FcoX" + } + }, + "level": 0, + "title": "" + }, + { + "_id": "Z9hvZFkWUNvowbQX", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 0, + "fixed": { + "str": 2, + "dex": 0, + "con": 1, + "int": 0, + "wis": 0, + "cha": 0 + }, + "cap": 2 + }, + "value": { + "type": "asi", + "assignments": { + "str": 2, + "con": 1 + } + }, + "level": 0, + "title": "" + }, + { + "_id": "jdak6D1rjScJSK8i", + "type": "Size", + "configuration": { + "hint": "Half-‐‑orcs are somewhat larger and bulkier than humans, and they range from 5 to well over 6 feet tall. Your size is Medium.", + "sizes": [ + "med" + ] + }, + "value": { + "size": "med" + }, + "level": 1, + "title": "" + }, + { + "_id": "aRv9Ec4xJCyrFMpY", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "skills:itm" + ], + "choices": [] + }, + "level": 0, + "title": "Menacing", + "value": { + "chosen": [ + "skills:itm" + ] + } + }, + { + "_id": "4cI2nhWNr0D1hOnx", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:standard:common", + "languages:standard:orc" + ], + "choices": [] + }, + "level": 0, + "title": "", + "value": { + "chosen": [ + "languages:standard:common", + "languages:standard:orc" + ] + } + } + ], + "type": { + "subtype": "orc", + "value": "humanoid", + "custom": "" + }, + "senses": { + "darkvision": 60, + "blindsight": 0, + "tremorsense": 0, + "truesight": 0, + "units": "ft", + "special": "" + }, + "movement": { + "burrow": 0, + "climb": 0, + "fly": 0, + "swim": 0, + "walk": 30, + "units": "ft", + "hover": false + } + }, + "effects": [], + "ownership": { + "default": 0 + }, + "flags": { + "core": { + "sourceId": "Compendium.dnd5e.races.n5L000DkNBU6h2oJ" + } + }, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1677181067463, + "modifiedTime": 1699992948013, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "sort": 0, + "folder": null, + "_key": "!actors.items!Dh1AA6w104V17V6w.PIvfnfQVQ98MdCmQ" + }, + { + "_id": "qLsxqVkevc8LivRC", + "name": "Relentless Endurance", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "special", + "cost": null, + "condition": "When you are reduced to 0 hit points" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "crewed": false, + "target": { + "value": null, + "width": null, + "units": "", + "type": "self", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": 1, + "max": "1", + "per": "lr", + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null, + "scale": false + }, + "ability": "", + "actionType": "heal", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [ + [ + "1", + "healing" + ] + ], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "Half-Orc", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": { + "dnd5e": { + "sourceId": "Compendium.dnd5e.races.97c8i9Z28thvZuA8", + "advancementOrigin": "PIvfnfQVQ98MdCmQ.Nj1VOKOTjxKU15J8" + } + }, + "img": "icons/magic/control/control-influence-rally-purple.webp", + "effects": [], + "folder": null, + "sort": 0, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234463, + "modifiedTime": 1699987355942, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!Dh1AA6w104V17V6w.qLsxqVkevc8LivRC" + }, + { + "_id": "3EbsalzpbmnJxgU2", + "name": "Savage Attacks", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.Foundry NoteEnable this feature in the Special Traits section of the character sheet.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "crewed": false, + "target": { + "value": null, + "width": null, + "units": "", + "type": "", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null, + "scale": false + }, + "ability": "", + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "Half-Orc", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": { + "dnd5e": { + "sourceId": "Compendium.dnd5e.races.0kUsT4sMUOr5FcoX", + "advancementOrigin": "PIvfnfQVQ98MdCmQ.Nj1VOKOTjxKU15J8" + } + }, + "img": "icons/skills/melee/weapons-crossed-swords-purple.webp", + "effects": [], + "folder": null, + "sort": 0, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234460, + "modifiedTime": 1699987177874, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!Dh1AA6w104V17V6w.3EbsalzpbmnJxgU2" } ], "effects": [], @@ -2891,10 +3310,11 @@ "_id": "Dh1AA6w104V17V6w", "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787232161, - "modifiedTime": 1691519075025, + "modifiedTime": 1699992954619, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!Dh1AA6w104V17V6w" } diff --git a/packs/src/heroes/merric-halfling-barbarian.json b/packs/src/heroes/merric-halfling-barbarian.json index 36e34a56e4..60f02d5a30 100644 --- a/packs/src/heroes/merric-halfling-barbarian.json +++ b/packs/src/heroes/merric-halfling-barbarian.json @@ -73,31 +73,30 @@ "bonuses": { "level": "", "overall": "" - }, - "min": 0 + } }, "init": { "ability": "", "bonus": "0" }, "movement": { - "burrow": 0, - "climb": 0, - "fly": 0, - "swim": 0, - "walk": 25, - "units": "ft", + "burrow": null, + "climb": null, + "fly": null, + "swim": null, + "walk": null, + "units": null, "hover": false }, "attunement": { "max": 3 }, "senses": { - "darkvision": 0, - "blindsight": 0, - "tremorsense": 0, - "truesight": 0, - "units": "ft", + "darkvision": null, + "blindsight": null, + "tremorsense": null, + "truesight": null, + "units": null, "special": "" }, "spellcasting": "int", @@ -110,12 +109,12 @@ }, "details": { "biography": { - "value": "Merric was once a vigilante, due to her innate sense of street justice. Though her small size may not seem like much in combat, she more than makes up for it with her violent outbursts of anger.\n", + "value": "Merric was once a vigilante, due to her innate sense of street justice. Though her small size may not seem like much in combat, she more than makes up for it with her violent outbursts of anger.", "public": "" }, "alignment": "Chaotic Good", - "race": "Lightfoot Halfling", - "background": "", + "race": "DAbggfkfZ8yIEDyK", + "background": null, "originalClass": "LX25nsSy2bvul2dp", "xp": { "value": 0 @@ -499,7 +498,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -525,7 +529,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 30, @@ -536,12 +541,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -593,7 +600,7 @@ "ver": false, "lod": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": {}, @@ -610,7 +617,8 @@ "createdTime": null, "modifiedTime": 1670011640852, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!irWonyO6ZLh47sN7.l87HKTUcZRp0PohR" }, { "_id": "bvHyCpcudXZ2bN7i", @@ -622,7 +630,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -648,7 +661,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 30, @@ -659,12 +673,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "ammo", "target": "acFqo6BnGivxj5lE", - "amount": 1 + "amount": 1, + "scale": false }, "ability": "", "actionType": "rwak", @@ -716,7 +732,7 @@ "ver": false, "lod": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": {}, @@ -733,7 +749,8 @@ "createdTime": null, "modifiedTime": 1670011640858, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!irWonyO6ZLh47sN7.bvHyCpcudXZ2bN7i" }, { "_id": "acFqo6BnGivxj5lE", @@ -745,7 +762,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 5, "weight": 2, "price": { @@ -771,7 +793,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -783,12 +806,14 @@ "max": "", "per": null, "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -808,7 +833,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "ammo" + "consumableType": "ammo", + "properties": {} }, "sort": 0, "flags": { @@ -829,7 +855,8 @@ "createdTime": null, "modifiedTime": 1670011640874, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!irWonyO6ZLh47sN7.acFqo6BnGivxj5lE" }, { "_id": "kccU0cngRTiFlfLu", @@ -841,7 +868,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -867,7 +899,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 5, @@ -878,12 +911,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -935,7 +970,7 @@ "thr": false, "ver": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -956,7 +991,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!irWonyO6ZLh47sN7.kccU0cngRTiFlfLu" }, { "_id": "9hY5bOuPFqGubCEw", @@ -968,7 +1004,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1011,7 +1052,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!irWonyO6ZLh47sN7.9hY5bOuPFqGubCEw" }, { "_id": "86aiVMgc7XPJ1z8C", @@ -1023,7 +1065,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -1033,7 +1080,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1054,7 +1105,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!irWonyO6ZLh47sN7.86aiVMgc7XPJ1z8C" }, { "_id": "SHXoXJMWZywkU7aV", @@ -1066,7 +1118,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -1092,7 +1149,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1104,12 +1162,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "abil", @@ -1129,7 +1189,8 @@ "dc": 17, "scaling": "flat" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -1150,7 +1211,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!irWonyO6ZLh47sN7.SHXoXJMWZywkU7aV" }, { "_id": "pIYHCVrKJLq0D2Jc", @@ -1162,7 +1224,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 2, "price": { @@ -1188,7 +1255,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": null, @@ -1200,12 +1268,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1225,7 +1295,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -1246,7 +1317,8 @@ "createdTime": null, "modifiedTime": 1670011640909, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!irWonyO6ZLh47sN7.pIYHCVrKJLq0D2Jc" }, { "_id": "j8eiLPd8bbBYNyC1", @@ -1258,7 +1330,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1268,7 +1345,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1289,7 +1370,8 @@ "createdTime": null, "modifiedTime": 1670011640919, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!irWonyO6ZLh47sN7.j8eiLPd8bbBYNyC1" }, { "_id": "bHPIk24Cq3Z5FO86", @@ -1301,7 +1383,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1311,7 +1398,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1332,7 +1423,8 @@ "createdTime": null, "modifiedTime": 1670011640925, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!irWonyO6ZLh47sN7.bHPIk24Cq3Z5FO86" }, { "_id": "YyXrE0aRDWy4AtwB", @@ -1344,7 +1436,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 1, "price": { @@ -1370,7 +1467,8 @@ "value": 40, "width": null, "units": "ft", - "type": "radius" + "type": "radius", + "prompt": true }, "range": { "value": null, @@ -1382,12 +1480,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "str", "actionType": "mwak", @@ -1412,7 +1512,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -1433,7 +1534,8 @@ "createdTime": null, "modifiedTime": 1670011647601, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!irWonyO6ZLh47sN7.YyXrE0aRDWy4AtwB" }, { "_id": "YvaZVAmilJd26Bfq", @@ -1445,7 +1547,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1471,7 +1578,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1483,12 +1591,14 @@ "max": "4", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1508,7 +1618,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -1529,7 +1640,8 @@ "createdTime": null, "modifiedTime": 1670011640938, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!irWonyO6ZLh47sN7.YvaZVAmilJd26Bfq" }, { "_id": "3hJ5vLP7E424pEo4", @@ -1541,7 +1653,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -1567,7 +1684,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 20, @@ -1578,12 +1696,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -1635,7 +1755,7 @@ "two": false, "ver": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -1656,7 +1776,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!irWonyO6ZLh47sN7.3hJ5vLP7E424pEo4" }, { "_id": "uWLF3Gr976X8vd7n", @@ -1668,7 +1789,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -1694,7 +1820,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 20, @@ -1705,12 +1832,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -1762,7 +1891,7 @@ "two": false, "ver": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": {}, @@ -1779,625 +1908,174 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } - }, - { - "_id": "vb4ylO4gijpYubVK", - "name": "Brave", - "type": "feat", - "system": { - "description": { - "value": "You have advantage on saving throws against being frightened.", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": "", - "actionType": "", - "attackBonus": "", - "chatFlavor": "You have advantage on saving throws against being frightened.", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" - }, - "requirements": "Halfling", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.monsterfeatures.108q5fJnnBRoLKfe" - } - }, - "img": "icons/skills/melee/unarmed-punch-fist.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } + "_key": "!actors.items!irWonyO6ZLh47sN7.uWLF3Gr976X8vd7n" }, { - "_id": "EEbqVNmOskEeXbAn", - "name": "Lucky", - "type": "feat", + "name": "Vigilante", + "type": "background", "system": { "description": { - "value": "When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.Foundry Note: Enable this feature in the Special Traits section of the character sheet.", + "value": "Skill Proficiencies: Insight, Investigation, PerceptionEquipment: Explorer's Pack, 2 gp", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" + "source": { + "custom": "", + "book": "", + "page": "", + "license": "CC-BY-4.0" }, - "requirements": "Halfling", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.races.LOMdcNAGWh5xpfm4" - } + "advancement": [] }, - "img": "icons/sundries/gaming/dice-runed-brown.webp", + "img": "icons/magic/fire/flame-burning-fist-strike.webp", "effects": [], "folder": null, + "sort": 0, "ownership": { "default": 0 }, + "flags": {}, "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } + "systemId": "dnd5e", + "systemVersion": "2.1.0", + "coreVersion": "10.291", + "createdTime": 1673040183979, + "modifiedTime": 1673040848723, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_id": "XIVdS0HZI5lOG5bx", + "_key": "!actors.items!irWonyO6ZLh47sN7.XIVdS0HZI5lOG5bx" }, { - "_id": "mdahmK0Ttr26qhV7", - "name": "Naturally Stealthy", - "type": "feat", + "_id": "LX25nsSy2bvul2dp", + "name": "Barbarian", + "type": "class", + "img": "icons/skills/melee/hand-grip-sword-orange.webp", "system": { "description": { - "value": "You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.", + "value": "As a barbarian, you gain the following class features.\nHit Points\nHit Dice: 1d12 per barbarian levelHit Points at 1st Level: 12 + your Constitution modifierHit Points at Higher Levels: 1d12 (or 7) + your Constitution modifier per barbarian level after 1st\nProficiencies\nArmor: Light armor, medium armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, ConstitutionSkills: Choose two from Animal Handling, Athletics, Intimidation, Nature, Perception, and Survival\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a greataxe or (b) any martial melee weapon\n(a) two handaxes or (b) any simple weapon\nAn explorer's pack and four javelins\n\nBarbarian Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\nRages\nRage Damage\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.VoR0SUrNX5EJVPIO]{Rage}, @Compendium[dnd5e.classfeatures.SZbsNbaxFFGwBpNK]{Unarmored Defense}\n2\n+2\n\n\n2nd\n+2\n@Compendium[dnd5e.classfeatures.SCVjqRdlZ9cvHVSR]{Reckless Attack}, @Compendium[dnd5e.classfeatures.vt31lWAULygEl7yk]{Danger Sense}\n2\n+2\n\n\n3rd\n+2\n@Compendium[dnd5e.classfeatures.TH1QAf6YNGSeBVjT]{Primal Path}\n3\n+2\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n3\n+2\n\n\n5th\n+3\n@Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}, @Compendium[dnd5e.classfeatures.Kl6zifJ5OmdHlOi2]{Fast Movement}\n3\n+2\n\n\n6th\n+3\nPath feature\n4\n+2\n\n\n7th\n+3\n@Compendium[dnd5e.classfeatures.NlXslw4yAqmKZWtN]{Feral Instinct}\n4\n+2\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n4\n+2\n\n\n9th\n+4\n@Compendium[dnd5e.classfeatures.L94gyvNpUhUe0rwh]{Brutal Critical (1 die)}\n4\n+3\n\n\n10th\n+4\nPath feature\n4\n+3\n\n\n11th\n+4\n@Compendium[dnd5e.classfeatures.FqfmbPgxiyrWzhYk]{Relentless Rage}\n4\n+3\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n5\n+3\n\n\n13th\n+5\n@Compendium[dnd5e.classfeatures.L94gyvNpUhUe0rwh]{Brutal Critical (2 dice)}\n5\n+3\n\n\n14th\n+5\nPath feature\n5\n+3\n\n\n15th\n+5\n@Compendium[dnd5e.classfeatures.l8tUhZ5Pecm9wz7I]{Persistent Rage}\n5\n+3\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n5\n+4\n\n\n17th\n+6\n@Compendium[dnd5e.classfeatures.L94gyvNpUhUe0rwh]{Brutal Critical (3 dice)}\n6\n+4\n\n\n18th\n+6\n@Compendium[dnd5e.classfeatures.Q1exex5ALteprrPo]{Indomitable Might}\n6\n+4\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n6\n+4\n\n\n20th\n+6\n@Compendium[dnd5e.classfeatures.jVU4AgqfrFaqgXns]{Primal Champion}\nUnlimited\n+4\n\n\n\nPrimal Paths\n@Compendium[dnd5e.subclasses.uGuDQX9Mz3oHNHkU]{Path of the Berserker}", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": "", - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" - }, - "requirements": "Lightfoot", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.races.GWPjKFeIthBBeCFJ" - } - }, - "img": "icons/magic/perception/silhouette-stealth-shadow.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } - }, - { - "_id": "XUuKHz75EISEhNjB", - "name": "Halfling Nimbleness", - "type": "feat", - "system": { - "description": { - "value": "You can move through the space of any creature that is of a size larger than yours.", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": "", - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" - }, - "requirements": "Halfling", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.races.PqxZgcJzp1VVgP8t" - } - }, - "img": "icons/skills/movement/feet-winged-boots-brown.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } - }, - { - "_id": "DPsowmMZwV6S2dpt", - "name": "Halfling", - "type": "feat", - "system": { - "description": { - "value": "\n\n\nYour halfling character has a number of traits in common with all other halflings. Ability Score Increase. Your Dexterity score increases by 2.Age. A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.Alignment. Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.Size. Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.Speed. Your base walking speed is 25 feet.Lucky. @Compendium[dnd5e.races.LOMdcNAGWh5xpfm4]{Lucky} When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.Brave. @Compendium[dnd5e.races.7Yoo9hG0hfPSmBoC]{Brave} You have advantage on saving throws against being frightened.\n\n\n\n\n\n\nHalfling Nimbleness. @Compendium[dnd5e.races.PqxZgcJzp1VVgP8t]{Halfling Nimbleness} You can move through the space of any creature that is of a size larger than yours.Languages. You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.\n\n\n", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" - }, - "requirements": "", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.races.GH2dNne2bt1NjcJk" - } - }, - "img": "icons/magic/lightning/bolt-forked-large-teal.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } - }, - { - "_id": "1Vk6iVodEGrj12vH", - "name": "Lightfoot", - "type": "feat", - "system": { - "description": { - "value": "\n\n\nAs a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others. \n \nLightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life. Ability Score Increase. Your Charisma score increases by 1.Naturally Stealthy. @Compendium[dnd5e.races.GWPjKFeIthBBeCFJ]{Naturally Stealthy} You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.\n\n\n", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" - }, - "requirements": "Halfling", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": {}, - "img": "icons/magic/lightning/bolt-forked-teal.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } - }, - { - "name": "Vigilante", - "type": "background", - "system": { - "description": { - "value": "Skill Proficiencies: Insight, Investigation, PerceptionEquipment: Explorer's Pack, 2 gp", - "chat": "", - "unidentified": "" - }, - "source": "", - "advancement": [] - }, - "img": "icons/magic/fire/flame-burning-fist-strike.webp", - "effects": [], - "folder": null, - "sort": 0, - "ownership": { - "default": 0 - }, - "flags": {}, - "_stats": { - "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", - "createdTime": 1673040183979, - "modifiedTime": 1673040848723, - "lastModifiedBy": "dnd5ebuilder0000" - }, - "_id": "XIVdS0HZI5lOG5bx" - }, - { - "_id": "LX25nsSy2bvul2dp", - "name": "Barbarian", - "type": "class", - "img": "icons/skills/melee/hand-grip-sword-orange.webp", - "system": { - "description": { - "value": "As a barbarian, you gain the following class features.\nHit Points\nHit Dice: 1d12 per barbarian levelHit Points at 1st Level: 12 + your Constitution modifierHit Points at Higher Levels: 1d12 (or 7) + your Constitution modifier per barbarian level after 1st\nProficiencies\nArmor: Light armor, medium armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, ConstitutionSkills: Choose two from Animal Handling, Athletics, Intimidation, Nature, Perception, and Survival\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a greataxe or (b) any martial melee weapon\n(a) two handaxes or (b) any simple weapon\nAn explorer's pack and four javelins\n\nBarbarian Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\nRages\nRage Damage\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.VoR0SUrNX5EJVPIO]{Rage}, @Compendium[dnd5e.classfeatures.SZbsNbaxFFGwBpNK]{Unarmored Defense}\n2\n+2\n\n\n2nd\n+2\n@Compendium[dnd5e.classfeatures.SCVjqRdlZ9cvHVSR]{Reckless Attack}, @Compendium[dnd5e.classfeatures.vt31lWAULygEl7yk]{Danger Sense}\n2\n+2\n\n\n3rd\n+2\n@Compendium[dnd5e.classfeatures.TH1QAf6YNGSeBVjT]{Primal Path}\n3\n+2\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n3\n+2\n\n\n5th\n+3\n@Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}, @Compendium[dnd5e.classfeatures.Kl6zifJ5OmdHlOi2]{Fast Movement}\n3\n+2\n\n\n6th\n+3\nPath feature\n4\n+2\n\n\n7th\n+3\n@Compendium[dnd5e.classfeatures.NlXslw4yAqmKZWtN]{Feral Instinct}\n4\n+2\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n4\n+2\n\n\n9th\n+4\n@Compendium[dnd5e.classfeatures.L94gyvNpUhUe0rwh]{Brutal Critical (1 die)}\n4\n+3\n\n\n10th\n+4\nPath feature\n4\n+3\n\n\n11th\n+4\n@Compendium[dnd5e.classfeatures.FqfmbPgxiyrWzhYk]{Relentless Rage}\n4\n+3\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n5\n+3\n\n\n13th\n+5\n@Compendium[dnd5e.classfeatures.L94gyvNpUhUe0rwh]{Brutal Critical (2 dice)}\n5\n+3\n\n\n14th\n+5\nPath feature\n5\n+3\n\n\n15th\n+5\n@Compendium[dnd5e.classfeatures.l8tUhZ5Pecm9wz7I]{Persistent Rage}\n5\n+3\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n5\n+4\n\n\n17th\n+6\n@Compendium[dnd5e.classfeatures.L94gyvNpUhUe0rwh]{Brutal Critical (3 dice)}\n6\n+4\n\n\n18th\n+6\n@Compendium[dnd5e.classfeatures.Q1exex5ALteprrPo]{Indomitable Might}\n6\n+4\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n6\n+4\n\n\n20th\n+6\n@Compendium[dnd5e.classfeatures.jVU4AgqfrFaqgXns]{Primal Champion}\nUnlimited\n+4\n\n\n\nPrimal Paths\n@Compendium[dnd5e.subclasses.uGuDQX9Mz3oHNHkU]{Path of the Berserker}", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", "identifier": "barbarian", "levels": 1, "hitDice": "d12", "hitDiceUsed": 0, "advancement": [ { - "_id": "5jn0ekktgccyvvpw", - "type": "HitPoints", - "configuration": {}, - "value": { - "1": "max" + "_id": "5jn0ekktgccyvvpw", + "type": "HitPoints", + "configuration": {}, + "value": { + "1": "max" + }, + "title": "" + }, + { + "_id": "amez6rlose3eoigo", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.classfeatures.VoR0SUrNX5EJVPIO", + "Compendium.dnd5e.classfeatures.SZbsNbaxFFGwBpNK" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": { + "added": { + "t9n1JlIt64USZcYm": "Compendium.dnd5e.classfeatures.VoR0SUrNX5EJVPIO", + "jq7HHcrrGB4hc9dp": "Compendium.dnd5e.classfeatures.SZbsNbaxFFGwBpNK" + } + }, + "level": 1, + "title": "Features" + }, + { + "_id": "udl318k61boq0rnn", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.classfeatures.SCVjqRdlZ9cvHVSR", + "Compendium.dnd5e.classfeatures.vt31lWAULygEl7yk" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": {}, + "level": 2, + "title": "Features" + }, + { + "_id": "8y2ey740kizr4jb6", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.classfeatures.TH1QAf6YNGSeBVjT" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": {}, + "level": 3, + "title": "Features" + }, + { + "_id": "uoexdq8totskritb", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo", + "Compendium.dnd5e.classfeatures.Kl6zifJ5OmdHlOi2" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } }, - "title": "" + "value": {}, + "level": 5, + "title": "Features" }, { - "_id": "amez6rlose3eoigo", + "_id": "w6ceiqibcmzpcuy8", "type": "ItemGrant", "configuration": { "items": [ - "Compendium.dnd5e.classfeatures.VoR0SUrNX5EJVPIO", - "Compendium.dnd5e.classfeatures.SZbsNbaxFFGwBpNK" + "Compendium.dnd5e.classfeatures.NlXslw4yAqmKZWtN" ], "optional": false, "spell": { @@ -2409,22 +2087,100 @@ } } }, - "value": { - "added": { - "t9n1JlIt64USZcYm": "Compendium.dnd5e.classfeatures.VoR0SUrNX5EJVPIO", - "jq7HHcrrGB4hc9dp": "Compendium.dnd5e.classfeatures.SZbsNbaxFFGwBpNK" + "value": {}, + "level": 7, + "title": "Features" + }, + { + "_id": "ty9si22p6pfwb3ow", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.classfeatures.L94gyvNpUhUe0rwh" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } } }, - "level": 1, + "value": {}, + "level": 9, "title": "Features" }, { - "_id": "udl318k61boq0rnn", + "_id": "802xi5l50le3ntk8", "type": "ItemGrant", "configuration": { "items": [ - "Compendium.dnd5e.classfeatures.SCVjqRdlZ9cvHVSR", - "Compendium.dnd5e.classfeatures.vt31lWAULygEl7yk" + "Compendium.dnd5e.classfeatures.FqfmbPgxiyrWzhYk" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": {}, + "level": 11, + "title": "Features" + }, + { + "_id": "g9ut0x1ugm31gbhk", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.classfeatures.l8tUhZ5Pecm9wz7I" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": {}, + "level": 15, + "title": "Features" + }, + { + "_id": "so18afasiyobkpxy", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.classfeatures.Q1exex5ALteprrPo" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": {}, + "level": 18, + "title": "Features" + }, + { + "_id": "9hvtrqbg7d7zwg07", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.classfeatures.jVU4AgqfrFaqgXns" ], "optional": false, "spell": { @@ -2436,422 +2192,1046 @@ } } }, - "value": {}, - "level": 2, - "title": "Features" + "value": {}, + "level": 20, + "title": "Features" + }, + { + "_id": "62svnflxsuad7oar", + "type": "ScaleValue", + "configuration": { + "identifier": "rages", + "type": "number", + "scale": { + "1": { + "value": 2 + }, + "3": { + "value": 3 + }, + "6": { + "value": 4 + }, + "12": { + "value": 5 + }, + "17": { + "value": 6 + }, + "20": { + "value": 999 + } + }, + "distance": { + "units": "" + } + }, + "value": {}, + "title": "Rages" + }, + { + "_id": "t42incolsbuqn2ec", + "type": "ScaleValue", + "configuration": { + "identifier": "rage-damage", + "type": "number", + "scale": { + "1": { + "value": 2 + }, + "9": { + "value": 3 + }, + "16": { + "value": 4 + } + }, + "distance": { + "units": "" + } + }, + "value": {}, + "title": "Rage Damage" + }, + { + "_id": "y0kr48pnq5doebeb", + "type": "ScaleValue", + "configuration": { + "identifier": "brutal-critical", + "type": "number", + "scale": { + "9": { + "value": 1 + }, + "13": { + "value": 2 + }, + "17": { + "value": 3 + } + }, + "distance": { + "units": "" + } + }, + "value": {}, + "title": "Brutal Critical Dice" + }, + { + "_id": "dZHMy3530RPCjzvD", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 2, + "fixed": { + "str": 0, + "dex": 0, + "con": 0, + "int": 0, + "wis": 0, + "cha": 0 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 4, + "title": "" + }, + { + "_id": "dBMWU3h8MBO4PcEm", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 2, + "fixed": { + "str": 0, + "dex": 0, + "con": 0, + "int": 0, + "wis": 0, + "cha": 0 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 8, + "title": "" + }, + { + "_id": "nROeTbeO8vrGjqAp", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 2, + "fixed": { + "str": 0, + "dex": 0, + "con": 0, + "int": 0, + "wis": 0, + "cha": 0 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 12, + "title": "" }, { - "_id": "8y2ey740kizr4jb6", - "type": "ItemGrant", + "_id": "prZMkvcCNoLvF4yB", + "type": "AbilityScoreImprovement", "configuration": { - "items": [ - "Compendium.dnd5e.classfeatures.TH1QAf6YNGSeBVjT" - ], - "optional": false, - "spell": { - "ability": "", - "preparation": "", - "uses": { - "max": "", - "per": "" - } - } + "points": 2, + "fixed": { + "str": 0, + "dex": 0, + "con": 0, + "int": 0, + "wis": 0, + "cha": 0 + }, + "cap": 2 }, - "value": {}, - "level": 3, - "title": "Features" + "value": { + "type": "asi" + }, + "level": 16, + "title": "" }, { - "_id": "uoexdq8totskritb", - "type": "ItemGrant", + "_id": "puDaUsYrlks0z5gm", + "type": "AbilityScoreImprovement", "configuration": { - "items": [ - "Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo", - "Compendium.dnd5e.classfeatures.Kl6zifJ5OmdHlOi2" - ], - "optional": false, - "spell": { - "ability": "", - "preparation": "", - "uses": { - "max": "", - "per": "" - } - } + "points": 2, + "fixed": { + "str": 0, + "dex": 0, + "con": 0, + "int": 0, + "wis": 0, + "cha": 0 + }, + "cap": 2 }, - "value": {}, - "level": 5, - "title": "Features" + "value": { + "type": "asi" + }, + "level": 19, + "title": "" }, { - "_id": "w6ceiqibcmzpcuy8", - "type": "ItemGrant", + "_id": "fjwU0G5OtTZWOkib", + "type": "Trait", "configuration": { - "items": [ - "Compendium.dnd5e.classfeatures.NlXslw4yAqmKZWtN" + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:lgt", + "armor:med", + "armor:shl" ], - "optional": false, - "spell": { - "ability": "", - "preparation": "", - "uses": { - "max": "", - "per": "" - } - } + "choices": [] }, - "value": {}, - "level": 7, - "title": "Features" + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "armor:lgt", + "armor:med", + "armor:shl" + ] + } }, { - "_id": "ty9si22p6pfwb3ow", - "type": "ItemGrant", + "_id": "sFas4Tifj7zKgmkY", + "type": "Trait", "configuration": { - "items": [ - "Compendium.dnd5e.classfeatures.L94gyvNpUhUe0rwh" + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim", + "weapon:mar" ], - "optional": false, - "spell": { - "ability": "", - "preparation": "", - "uses": { - "max": "", - "per": "" - } - } + "choices": [] }, - "value": {}, - "level": 9, - "title": "Features" + "level": 1, + "title": "", + "value": { + "chosen": [ + "weapon:sim", + "weapon:mar" + ] + } }, { - "_id": "802xi5l50le3ntk8", - "type": "ItemGrant", + "_id": "CmX808i8HaWZ7VMx", + "type": "Trait", "configuration": { - "items": [ - "Compendium.dnd5e.classfeatures.FqfmbPgxiyrWzhYk" + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:str", + "saves:con" ], - "optional": false, - "spell": { - "ability": "", - "preparation": "", - "uses": { - "max": "", - "per": "" - } - } + "choices": [] }, - "value": {}, - "level": 11, - "title": "Features" + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "saves:str", + "saves:con" + ] + } }, { - "_id": "g9ut0x1ugm31gbhk", - "type": "ItemGrant", + "_id": "lD3JBViqmxFYu0kc", + "type": "Trait", "configuration": { - "items": [ - "Compendium.dnd5e.classfeatures.l8tUhZ5Pecm9wz7I" - ], - "optional": false, - "spell": { - "ability": "", - "preparation": "", - "uses": { - "max": "", - "per": "" + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:ani", + "skills:ath", + "skills:itm", + "skills:nat", + "skills:prc", + "skills:sur" + ] } - } + ] }, - "value": {}, - "level": 15, - "title": "Features" + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "skills:ani", + "skills:ath" + ] + } }, { - "_id": "so18afasiyobkpxy", - "type": "ItemGrant", + "type": "Trait", "configuration": { - "items": [ - "Compendium.dnd5e.classfeatures.Q1exex5ALteprrPo" + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:shl" ], - "optional": false, - "spell": { - "ability": "", - "preparation": "", - "uses": { - "max": "", - "per": "" - } - } + "choices": [] + }, + "level": 1, + "title": "", + "_id": "3ETNrLc8RQlHwNXP", + "classRestriction": "secondary", + "value": {} + } + ], + "spellcasting": { + "progression": "none", + "ability": "" + } + }, + "effects": [], + "folder": null, + "sort": 0, + "ownership": { + "default": 0 + }, + "flags": { + "core": { + "sourceId": "Compendium.dnd5e.classes.pvEzGSv71zBhaolc" + } + }, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234281, + "modifiedTime": 1699993047511, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!irWonyO6ZLh47sN7.LX25nsSy2bvul2dp" + }, + { + "_id": "t9n1JlIt64USZcYm", + "name": "Rage", + "type": "feat", + "img": "icons/creatures/abilities/mouth-teeth-human.webp", + "system": { + "description": { + "value": "In battle, you fight with primal ferocity. On your turn, you can enter a rage as a bonus action. While raging, you gain the following benefits if you aren't wearing heavy armor:\n\n\nYou have advantage on Strength checks and Strength saving throws.\n\n\nWhen you make a melee weapon attack using Strength, you gain a bonus to the damage roll that increases as you gain levels as a barbarian, as shown in the Rage Damage column of the Barbarian table.\n\n\nYou have resistance to bludgeoning, piercing, and slashing damage.\n\n\nIf you are able to cast spells, you can't cast them or concentrate on them while raging. \nYour rage lasts for 1 minute. It ends early if you are knocked unconscious or if your turn ends and you haven't attacked a hostile creature since your last turn or taken damage since then. You can also end your rage on your turn as a bonus action. \nOnce you have raged the number of times shown for your barbarian level in the Rages column of the Barbarian table, you must finish a long rest before you can rage again.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "bonus", + "cost": 1, + "condition": "" + }, + "duration": { + "value": "1", + "units": "minute" + }, + "cover": null, + "crewed": false, + "target": { + "value": null, + "width": null, + "units": "", + "type": "self", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "self" + }, + "uses": { + "value": 2, + "max": "@scale.barbarian.rages", + "per": "lr", + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null, + "scale": false + }, + "ability": "", + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" + }, + "type": { + "value": "class", + "subtype": "" + }, + "requirements": "Barbarian 1", + "recharge": { + "value": null, + "charged": false + } + }, + "effects": [ + { + "_id": "eWhL8hUr0c2ujDUm", + "flags": {}, + "changes": [ + { + "key": "system.bonuses.mwak.damage", + "mode": 2, + "value": "+@scale.barbarian.rage-damage", + "priority": null }, - "value": {}, - "level": 18, - "title": "Features" - }, - { - "_id": "9hvtrqbg7d7zwg07", - "type": "ItemGrant", - "configuration": { - "items": [ - "Compendium.dnd5e.classfeatures.jVU4AgqfrFaqgXns" - ], - "optional": false, - "spell": { - "ability": "", - "preparation": "", - "uses": { - "max": "", - "per": "" - } - } + { + "key": "system.traits.dr.value", + "mode": 2, + "value": "slashing", + "priority": null }, - "value": {}, - "level": 20, - "title": "Features" - }, - { - "_id": "62svnflxsuad7oar", - "type": "ScaleValue", - "configuration": { - "identifier": "rages", - "type": "number", - "scale": { - "1": { - "value": 2 - }, - "3": { - "value": 3 - }, - "6": { - "value": 4 - }, - "12": { - "value": 5 - }, - "17": { - "value": 6 - }, - "20": { - "value": 999 - } - }, - "distance": { - "units": "" - } + { + "key": "system.traits.dr.value", + "mode": 2, + "value": "piercing", + "priority": null }, - "value": {}, - "title": "Rages" + { + "key": "system.traits.dr.value", + "mode": 2, + "value": "bludgeoning", + "priority": null + } + ], + "disabled": true, + "duration": { + "startTime": null, + "rounds": 10, + "seconds": null, + "combat": null, + "turns": null, + "startRound": null, + "startTurn": null }, - { - "_id": "t42incolsbuqn2ec", - "type": "ScaleValue", - "configuration": { - "identifier": "rage-damage", - "type": "number", - "scale": { - "1": { - "value": 2 - }, - "9": { - "value": 3 - }, - "16": { - "value": 4 - } - }, - "distance": { - "units": "" - } - }, - "value": {}, - "title": "Rage Damage" + "icon": "icons/creatures/abilities/mouth-teeth-human.webp", + "label": "Rage", + "origin": "Item.bdfYHJstcltQC7SZ", + "tint": null, + "transfer": true, + "sort": 0, + "_key": "!actors.items.effects!irWonyO6ZLh47sN7.t9n1JlIt64USZcYm.eWhL8hUr0c2ujDUm" + } + ], + "folder": null, + "sort": 0, + "ownership": { + "default": 0 + }, + "flags": { + "dnd5e": { + "sourceId": "Compendium.dnd5e.classfeatures.VoR0SUrNX5EJVPIO", + "advancementOrigin": "LX25nsSy2bvul2dp.amez6rlose3eoigo" + } + }, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.2.2", + "coreVersion": "10.303", + "createdTime": 1661787234384, + "modifiedTime": 1691519103297, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!irWonyO6ZLh47sN7.t9n1JlIt64USZcYm" + }, + { + "_id": "jq7HHcrrGB4hc9dp", + "name": "Unarmored Defense (Barbarian)", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "While you are not wearing any armor, your Armor Class equals 10 + your Dexterity modifier + your Constitution modifier. You can use a shield and still gain this benefit.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "crewed": false, + "target": { + "value": null, + "width": null, + "units": "", + "type": "", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null, + "scale": false + }, + "ability": "", + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" + }, + "type": { + "value": "class", + "subtype": "" + }, + "requirements": "Barbarian 1", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": { + "dnd5e": { + "sourceId": "Compendium.dnd5e.classfeatures.SZbsNbaxFFGwBpNK", + "advancementOrigin": "LX25nsSy2bvul2dp.amez6rlose3eoigo" + } + }, + "img": "icons/magic/control/silhouette-hold-change-blue.webp", + "effects": [ + { + "_id": "hEgUnQNVxtBo2zkK", + "changes": [ + { + "key": "system.attributes.ac.calc", + "mode": 5, + "value": "unarmoredBarb", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "seconds": null, + "combat": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null }, + "icon": "icons/magic/control/silhouette-hold-change-blue.webp", + "label": "Unarmored Defense", + "origin": "Item.aIMXb43ACIxMItbh", + "transfer": true, + "flags": {}, + "tint": null, + "sort": 0, + "_key": "!actors.items.effects!irWonyO6ZLh47sN7.jq7HHcrrGB4hc9dp.hEgUnQNVxtBo2zkK" + } + ], + "folder": null, + "sort": 0, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234378, + "modifiedTime": 1699987364863, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!irWonyO6ZLh47sN7.jq7HHcrrGB4hc9dp" + }, + { + "_id": "DAbggfkfZ8yIEDyK", + "name": "Lightfoot Halfling", + "type": "race", + "img": "icons/equipment/feet/shoes-leather-simple-brown.webp", + "system": { + "description": { + "value": "Your halfling character has a number of traits in common with all other halflings.Ability Score Increase. Your Dexterity score increases by 2.Age. A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.Alignment. Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.Size. Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.Speed. Your base walking speed is 25 feet.Lucky. When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.Brave. You have advantage on saving throws against being frightened.Halfling Nimbleness. You can move through the space of any creature that is of a size larger than yours.Languages. You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.LightfootAs a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others.Lightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life.Ability Score Increase. Your Charisma score increases by 1.Naturally Stealthy. You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "identifier": "lightfoot-halfling", + "advancement": [ { - "_id": "y0kr48pnq5doebeb", - "type": "ScaleValue", + "_id": "nInhIgkbzzJTdm8F", + "type": "ItemGrant", "configuration": { - "identifier": "brutal-critical", - "type": "number", - "scale": { - "9": { - "value": 1 - }, - "13": { - "value": 2 - }, - "17": { - "value": 3 + "items": [ + "Compendium.dnd5e.races.LOMdcNAGWh5xpfm4", + "Compendium.dnd5e.races.7Yoo9hG0hfPSmBoC", + "Compendium.dnd5e.races.PqxZgcJzp1VVgP8t", + "Compendium.dnd5e.races.GWPjKFeIthBBeCFJ" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" } - }, - "distance": { - "units": "" - } - }, - "value": {}, - "title": "Brutal Critical Dice" - }, - { - "_id": "dZHMy3530RPCjzvD", - "type": "AbilityScoreImprovement", - "configuration": { - "points": 2, - "fixed": { - "str": 0, - "dex": 0, - "con": 0, - "int": 0, - "wis": 0, - "cha": 0 } }, "value": { - "type": "asi" - }, - "level": 4, - "title": "" - }, - { - "_id": "dBMWU3h8MBO4PcEm", - "type": "AbilityScoreImprovement", - "configuration": { - "points": 2, - "fixed": { - "str": 0, - "dex": 0, - "con": 0, - "int": 0, - "wis": 0, - "cha": 0 + "added": { + "JQl3VzzqbaXKQUy4": "Compendium.dnd5e.races.LOMdcNAGWh5xpfm4", + "PzGCDcNJshheVVAl": "Compendium.dnd5e.races.7Yoo9hG0hfPSmBoC", + "5AZTgt4DbYOMJtBh": "Compendium.dnd5e.races.PqxZgcJzp1VVgP8t", + "WPhg1wZUed3W0ili": "Compendium.dnd5e.races.GWPjKFeIthBBeCFJ" } }, - "value": { - "type": "asi" - }, - "level": 8, + "level": 0, "title": "" }, { - "_id": "nROeTbeO8vrGjqAp", + "_id": "Z9hvZFkWUNvowbQX", "type": "AbilityScoreImprovement", "configuration": { - "points": 2, + "points": 0, "fixed": { "str": 0, - "dex": 0, + "dex": 2, "con": 0, "int": 0, "wis": 0, - "cha": 0 - } + "cha": 1 + }, + "cap": 2 }, "value": { - "type": "asi" + "type": "asi", + "assignments": { + "dex": 2, + "cha": 1 + } }, - "level": 12, + "level": 0, "title": "" }, { - "_id": "prZMkvcCNoLvF4yB", - "type": "AbilityScoreImprovement", + "_id": "hv2bcANK5jEJZaAb", + "type": "Size", "configuration": { - "points": 2, - "fixed": { - "str": 0, - "dex": 0, - "con": 0, - "int": 0, - "wis": 0, - "cha": 0 - } + "hint": "Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.", + "sizes": [ + "sm" + ] }, "value": { - "type": "asi" + "size": "sm" }, - "level": 16, + "level": 1, "title": "" }, { - "_id": "puDaUsYrlks0z5gm", - "type": "AbilityScoreImprovement", + "_id": "nGwMjsfNU6CXHk3A", + "type": "Trait", "configuration": { - "points": 2, - "fixed": { - "str": 0, - "dex": 0, - "con": 0, - "int": 0, - "wis": 0, - "cha": 0 - } + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:standard:common", + "languages:standard:halfling" + ], + "choices": [] }, + "level": 0, + "title": "", "value": { - "type": "asi" - }, - "level": 19, - "title": "" + "chosen": [ + "languages:standard:common", + "languages:standard:halfling" + ] + } } ], - "saves": [ - "str", - "con" - ], - "skills": { - "number": 2, - "choices": [ - "ani", - "ath", - "itm", - "nat", - "prc", - "sur" - ], - "value": [] + "movement": { + "walk": 25, + "burrow": 0, + "climb": 0, + "fly": 0, + "swim": 0, + "units": "ft", + "hover": false }, - "spellcasting": { - "progression": "none", - "ability": "" + "type": { + "subtype": "halfling", + "value": "humanoid", + "custom": "" + }, + "senses": { + "darkvision": 0, + "blindsight": 0, + "tremorsense": 0, + "truesight": 0, + "units": "ft", + "special": "" + } + }, + "effects": [], + "ownership": { + "default": 0 + }, + "flags": { + "core": { + "sourceId": "Compendium.dnd5e.races.ZgYBjYYfiUstQD6f" + } + }, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1677178323356, + "modifiedTime": 1699993047511, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "sort": 0, + "folder": null, + "_key": "!actors.items!irWonyO6ZLh47sN7.DAbggfkfZ8yIEDyK" + }, + { + "_id": "JQl3VzzqbaXKQUy4", + "name": "Lucky", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.Foundry NoteThis property can be enabled on your character sheet in the Special Traits configuration on the Attributes tab.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "crewed": false, + "target": { + "value": null, + "width": null, + "units": "", + "type": "", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null, + "scale": false + }, + "ability": null, + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "Halfling", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": { + "dnd5e": { + "sourceId": "Compendium.dnd5e.races.LOMdcNAGWh5xpfm4", + "advancementOrigin": "DAbggfkfZ8yIEDyK.nInhIgkbzzJTdm8F" + } + }, + "img": "icons/sundries/gaming/dice-runed-brown.webp", + "effects": [ + { + "_id": "3ZXTUDl62zDpvpai", + "changes": [ + { + "key": "flags.dnd5e.halflingLucky", + "mode": 5, + "value": "true", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "seconds": null, + "combat": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "icon": "icons/sundries/gaming/dice-runed-brown.webp", + "label": "Lucky", + "origin": "Item.LOMdcNAGWh5xpfm4", + "transfer": true, + "flags": {}, + "tint": null, + "sort": 0, + "_key": "!actors.items.effects!irWonyO6ZLh47sN7.JQl3VzzqbaXKQUy4.3ZXTUDl62zDpvpai" } - }, - "effects": [], + ], "folder": null, "sort": 0, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234467, + "modifiedTime": 1699986724866, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!irWonyO6ZLh47sN7.JQl3VzzqbaXKQUy4" + }, + { + "_id": "PzGCDcNJshheVVAl", + "name": "Brave", "ownership": { "default": 0 }, + "type": "feat", + "system": { + "description": { + "value": "You have advantage on saving throws against being frightened.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "crewed": false, + "target": { + "value": null, + "width": null, + "units": "", + "type": "", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null, + "scale": false + }, + "ability": "", + "actionType": "", + "attackBonus": "", + "chatFlavor": "You have advantage on saving throws against being frightened.", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "Halfling", + "recharge": { + "value": null, + "charged": false + } + }, "flags": { - "core": { - "sourceId": "Compendium.dnd5e.classes.pvEzGSv71zBhaolc" + "dnd5e": { + "sourceId": "Compendium.dnd5e.races.7Yoo9hG0hfPSmBoC", + "advancementOrigin": "DAbggfkfZ8yIEDyK.nInhIgkbzzJTdm8F" } }, + "img": "icons/skills/melee/unarmed-punch-fist.webp", + "effects": [], + "folder": null, + "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", - "createdTime": 1661787234281, - "modifiedTime": 1691519103295, + "createdTime": 1661787234462, + "modifiedTime": 1699986724866, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!irWonyO6ZLh47sN7.PzGCDcNJshheVVAl" }, { - "_id": "t9n1JlIt64USZcYm", - "name": "Rage", + "_id": "5AZTgt4DbYOMJtBh", + "name": "Halfling Nimbleness", + "ownership": { + "default": 0 + }, "type": "feat", - "img": "icons/creatures/abilities/mouth-teeth-human.webp", "system": { "description": { - "value": "In battle, you fight with primal ferocity. On your turn, you can enter a rage as a bonus action. While raging, you gain the following benefits if you aren't wearing heavy armor:\n\n\nYou have advantage on Strength checks and Strength saving throws.\n\n\nWhen you make a melee weapon attack using Strength, you gain a bonus to the damage roll that increases as you gain levels as a barbarian, as shown in the Rage Damage column of the Barbarian table.\n\n\nYou have resistance to bludgeoning, piercing, and slashing damage.\n\n\nIf you are able to cast spells, you can't cast them or concentrate on them while raging. \nYour rage lasts for 1 minute. It ends early if you are knocked unconscious or if your turn ends and you haven't attacked a hostile creature since your last turn or taken damage since then. You can also end your rage on your turn as a bonus action. \nOnce you have raged the number of times shown for your barbarian level in the Rages column of the Barbarian table, you must finish a long rest before you can rage again.", + "value": "You can move through the space of any creature that is of a size larger than yours.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { - "type": "bonus", - "cost": 1, + "type": "", + "cost": null, "condition": "" }, "duration": { - "value": "1", - "units": "minute" + "value": "", + "units": "" }, "cover": null, "crewed": false, @@ -2859,23 +3239,26 @@ "value": null, "width": null, "units": "", - "type": "self" + "type": "", + "prompt": true }, "range": { "value": null, "long": null, - "units": "self" + "units": "" }, "uses": { - "value": 2, - "max": "@scale.barbarian.rages", - "per": "lr", - "recovery": "" + "value": null, + "max": "", + "per": null, + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "", @@ -2896,97 +3279,54 @@ "scaling": "spell" }, "type": { - "value": "class", + "value": "race", "subtype": "" }, - "requirements": "Barbarian 1", + "requirements": "Halfling", "recharge": { "value": null, "charged": false } }, - "effects": [ - { - "_id": "eWhL8hUr0c2ujDUm", - "flags": {}, - "changes": [ - { - "key": "system.bonuses.mwak.damage", - "mode": 2, - "value": "+@scale.barbarian.rage-damage", - "priority": null - }, - { - "key": "system.traits.dr.value", - "mode": 2, - "value": "slashing", - "priority": null - }, - { - "key": "system.traits.dr.value", - "mode": 2, - "value": "piercing", - "priority": null - }, - { - "key": "system.traits.dr.value", - "mode": 2, - "value": "bludgeoning", - "priority": null - } - ], - "disabled": true, - "duration": { - "startTime": null, - "rounds": 10, - "seconds": null, - "combat": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "icon": "icons/creatures/abilities/mouth-teeth-human.webp", - "label": "Rage", - "origin": "Item.bdfYHJstcltQC7SZ", - "tint": null, - "transfer": true, - "sort": 0 - } - ], - "folder": null, - "sort": 0, - "ownership": { - "default": 0 - }, "flags": { "dnd5e": { - "sourceId": "Compendium.dnd5e.classfeatures.VoR0SUrNX5EJVPIO", - "advancementOrigin": "LX25nsSy2bvul2dp.amez6rlose3eoigo" + "sourceId": "Compendium.dnd5e.races.PqxZgcJzp1VVgP8t", + "advancementOrigin": "DAbggfkfZ8yIEDyK.nInhIgkbzzJTdm8F" } }, + "img": "icons/skills/movement/feet-winged-boots-brown.webp", + "effects": [], + "folder": null, + "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", - "createdTime": 1661787234384, - "modifiedTime": 1691519103297, + "createdTime": 1661787234468, + "modifiedTime": 1699986724867, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!irWonyO6ZLh47sN7.5AZTgt4DbYOMJtBh" }, { - "_id": "jq7HHcrrGB4hc9dp", - "name": "Unarmored Defense (Barbarian)", + "_id": "WPhg1wZUed3W0ili", + "name": "Naturally Stealthy", "ownership": { "default": 0 }, "type": "feat", "system": { "description": { - "value": "While you are not wearing any armor, your Armor Class equals 10 + your Dexterity modifier + your Constitution modifier. You can use a shield and still gain this benefit.", + "value": "You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -3002,7 +3342,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -3013,12 +3354,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "", @@ -3039,10 +3382,10 @@ "scaling": "spell" }, "type": { - "value": "class", + "value": "race", "subtype": "" }, - "requirements": "Barbarian 1", + "requirements": "Lightfoot Halfling", "recharge": { "value": null, "charged": false @@ -3050,51 +3393,23 @@ }, "flags": { "dnd5e": { - "sourceId": "Compendium.dnd5e.classfeatures.SZbsNbaxFFGwBpNK", - "advancementOrigin": "LX25nsSy2bvul2dp.amez6rlose3eoigo" + "sourceId": "Compendium.dnd5e.races.GWPjKFeIthBBeCFJ", + "advancementOrigin": "DAbggfkfZ8yIEDyK.nInhIgkbzzJTdm8F" } }, - "img": "icons/magic/control/silhouette-hold-change-blue.webp", - "effects": [ - { - "_id": "hEgUnQNVxtBo2zkK", - "changes": [ - { - "key": "system.attributes.ac.calc", - "mode": 5, - "value": "unarmoredBarb", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "icon": "icons/magic/control/silhouette-hold-change-blue.webp", - "label": "Unarmored Defense", - "origin": "Item.aIMXb43ACIxMItbh", - "transfer": true, - "flags": {}, - "tint": null, - "sort": 0 - } - ], + "img": "icons/magic/perception/silhouette-stealth-shadow.webp", + "effects": [], "folder": null, "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", - "createdTime": 1661787234378, - "modifiedTime": 1691519103298, + "createdTime": 1661787234465, + "modifiedTime": 1699986724867, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!irWonyO6ZLh47sN7.WPhg1wZUed3W0ili" } ], "effects": [ @@ -3142,7 +3457,8 @@ "origin": "Compendium.dnd5e.heroes.irWonyO6ZLh47sN7.Item.t9n1JlIt64USZcYm", "tint": null, "transfer": false, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!irWonyO6ZLh47sN7.eWhL8hUr0c2ujDUm" }, { "_id": "hEgUnQNVxtBo2zkK", @@ -3170,7 +3486,37 @@ "transfer": false, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!irWonyO6ZLh47sN7.hEgUnQNVxtBo2zkK" + }, + { + "_id": "3ZXTUDl62zDpvpai", + "changes": [ + { + "key": "flags.dnd5e.halflingLucky", + "mode": 5, + "value": "true", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": 0, + "seconds": null, + "combat": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "icon": "icons/sundries/gaming/dice-runed-brown.webp", + "label": "Lucky", + "origin": "Compendium.dnd5e.heroes.irWonyO6ZLh47sN7.Item.JQl3VzzqbaXKQUy4", + "transfer": false, + "flags": {}, + "tint": null, + "sort": 0, + "_key": "!actors.effects!irWonyO6ZLh47sN7.3ZXTUDl62zDpvpai" } ], "folder": null, @@ -3186,10 +3532,11 @@ "_id": "irWonyO6ZLh47sN7", "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787232184, - "modifiedTime": 1691519103346, + "modifiedTime": 1699993047522, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!irWonyO6ZLh47sN7" } diff --git a/packs/src/heroes/morthos-tiefling-sorcerer.json b/packs/src/heroes/morthos-tiefling-sorcerer.json index 0e5f47df18..42617eaddf 100644 --- a/packs/src/heroes/morthos-tiefling-sorcerer.json +++ b/packs/src/heroes/morthos-tiefling-sorcerer.json @@ -74,31 +74,30 @@ "bonuses": { "level": "", "overall": "" - }, - "min": 0 + } }, "init": { "ability": "", "bonus": "0" }, "movement": { - "burrow": 0, - "climb": 0, - "fly": 0, - "swim": 0, - "walk": 30, - "units": "ft", + "burrow": null, + "climb": null, + "fly": null, + "swim": null, + "walk": null, + "units": null, "hover": false }, "attunement": { "max": 3 }, "senses": { - "darkvision": 60, - "blindsight": 0, - "tremorsense": 0, - "truesight": 0, - "units": "ft", + "darkvision": null, + "blindsight": null, + "tremorsense": null, + "truesight": null, + "units": null, "special": "" }, "spellcasting": "cha", @@ -111,12 +110,12 @@ }, "details": { "biography": { - "value": "Morthos's investigation into her complex draconic-infernal ancestry led her to an academic life, but it soon became apparent that the fools in charge were keeping many secrets from her.\n", + "value": "Morthos's investigation into her complex draconic-infernal ancestry led her to an academic life, but it soon became apparent that the fools in charge were keeping many secrets from her.", "public": "" }, "alignment": "Neutral Evil", - "race": "Tiefling", - "background": "", + "race": "Y7BsvdA2in8INCB5", + "background": null, "originalClass": "Ig5YOxEOabGaTjG5", "xp": { "value": 0 @@ -152,8 +151,8 @@ }, "languages": { "value": [ - "common", "draconic", + "common", "infernal" ], "custom": "" @@ -502,7 +501,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -528,7 +532,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -539,12 +544,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -591,7 +598,7 @@ "two": false, "ver": false }, - "proficient": false + "proficient": null }, "sort": 0, "flags": { @@ -612,7 +619,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.4oZOGoQdZ0qipEn9" }, { "_id": "tQKD6fqsb4Aiyy5j", @@ -624,7 +632,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 2, "weight": 1, "price": { @@ -650,7 +663,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 20, @@ -661,12 +675,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -718,7 +734,7 @@ "two": false, "ver": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -739,7 +755,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.tQKD6fqsb4Aiyy5j" }, { "_id": "GDbpIHMQgxUgPLdu", @@ -751,7 +768,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -777,7 +799,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 5, @@ -788,12 +811,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -845,7 +870,7 @@ "thr": false, "two": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -866,7 +891,8 @@ "createdTime": null, "modifiedTime": 1670011641046, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.GDbpIHMQgxUgPLdu" }, { "_id": "xX4gm1T19sVEeJv0", @@ -878,7 +904,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -904,7 +935,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -915,12 +947,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -958,7 +992,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "sort": 0, "flags": { @@ -979,7 +1013,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.xX4gm1T19sVEeJv0" }, { "_id": "LivxabPcA6A9nstM", @@ -991,7 +1026,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1034,7 +1074,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.LivxabPcA6A9nstM" }, { "_id": "SeeeXZHOsXqMfaF4", @@ -1046,7 +1087,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1089,7 +1135,8 @@ "createdTime": null, "modifiedTime": 1670011641060, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.SeeeXZHOsXqMfaF4" }, { "_id": "ZchHJk0yJtegcnoD", @@ -1101,7 +1148,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -1127,7 +1179,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1139,12 +1192,14 @@ "max": "", "per": null, "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "util", @@ -1164,7 +1219,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "ammo" + "consumableType": "ammo", + "properties": {} }, "sort": 0, "flags": { @@ -1185,7 +1241,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.ZchHJk0yJtegcnoD" }, { "_id": "tprVjkdD07yET7Dn", @@ -1197,7 +1254,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -1223,7 +1285,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1235,12 +1298,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "abil", @@ -1260,7 +1325,8 @@ "dc": 17, "scaling": "flat" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -1281,7 +1347,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.tprVjkdD07yET7Dn" }, { "_id": "hSWX55GkqzCy2q83", @@ -1293,7 +1360,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -1303,7 +1375,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1324,7 +1400,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.hSWX55GkqzCy2q83" }, { "_id": "WHdV6NGJLWgf9SXW", @@ -1336,7 +1413,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1346,7 +1428,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1367,7 +1453,8 @@ "createdTime": null, "modifiedTime": 1670011641068, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.WHdV6NGJLWgf9SXW" }, { "_id": "ayGuhKBGDrEn7R3b", @@ -1379,7 +1466,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1389,7 +1481,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1410,7 +1506,8 @@ "createdTime": null, "modifiedTime": 1670011641079, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.ayGuhKBGDrEn7R3b" }, { "_id": "js5p955d3giWX0oH", @@ -1422,7 +1519,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 2, "price": { @@ -1448,7 +1550,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": null, @@ -1460,12 +1563,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1485,7 +1590,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -1506,7 +1612,8 @@ "createdTime": null, "modifiedTime": 1670011641089, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.js5p955d3giWX0oH" }, { "_id": "aPzu0l5X4uxqLor9", @@ -1518,7 +1625,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 1, "price": { @@ -1544,7 +1656,8 @@ "value": 40, "width": null, "units": "ft", - "type": "radius" + "type": "radius", + "prompt": true }, "range": { "value": null, @@ -1556,12 +1669,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "str", "actionType": "mwak", @@ -1586,7 +1701,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -1607,7 +1723,8 @@ "createdTime": null, "modifiedTime": 1670011647627, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.aPzu0l5X4uxqLor9" }, { "_id": "stBwmLr8AL6ZTUYM", @@ -1619,7 +1736,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1645,7 +1767,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1657,12 +1780,14 @@ "max": "4", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1682,7 +1807,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -1703,7 +1829,8 @@ "createdTime": null, "modifiedTime": 1670011641109, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.stBwmLr8AL6ZTUYM" }, { "_id": "6xhnm29N1HYahYOO", @@ -1715,7 +1842,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.06, "price": { @@ -1725,7 +1857,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1746,7 +1882,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.6xhnm29N1HYahYOO" }, { "_id": "NF7GrOufGmSBsfGU", @@ -1758,7 +1895,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1768,7 +1910,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1789,7 +1935,8 @@ "createdTime": null, "modifiedTime": 1670011647646, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.NF7GrOufGmSBsfGU" }, { "_id": "mh4WBhTpy8fBSjg0", @@ -1801,7 +1948,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1811,7 +1963,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1832,7 +1988,8 @@ "createdTime": null, "modifiedTime": 1670011641126, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.mh4WBhTpy8fBSjg0" }, { "_id": "TkeAIaa70wEfYooB", @@ -1844,7 +2001,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1854,7 +2016,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1875,7 +2041,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.TkeAIaa70wEfYooB" }, { "_id": "VXfJOqA5hOKDCVf1", @@ -1887,7 +2054,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.5, "price": { @@ -1897,7 +2069,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1918,54 +2094,203 @@ "createdTime": null, "modifiedTime": 1670011641137, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.VXfJOqA5hOKDCVf1" }, { - "_id": "Xfag5A38nhLBUfkr", - "name": "Hellish Resistance", - "type": "feat", + "_id": "f3p50jjvtk2ao61n", + "name": "Draconic Bloodline", + "type": "subclass", + "img": "icons/creatures/reptiles/dragon-horned-blue.webp", "system": { "description": { - "value": "You have resistance to fire damage.", + "value": "Your innate magic comes from draconic magic that was mingled with your blood or that of your ancestors. Most often, sorcerers with this origin trace their descent back to a mighty sorcerer of ancient times who made a bargain with a dragon or who might even have claimed a dragon parent. Some of these bloodlines are well established in the world, but most are obscure. Any given sorcerer could be the first of a new bloodline, as a result of a pact or some other exceptional circumstance.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "identifier": "draconic-bloodline", + "classIdentifier": "sorcerer", + "advancement": [ + { + "_id": "bjbipb2oydq3zsuy", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.classfeatures.EZsonMThTNLZq35j", + "Compendium.dnd5e.classfeatures.MW1ExvBLm8Hg82aA" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": { + "added": { + "oO4FCdIDwsr4VTb3": "Compendium.dnd5e.classfeatures.EZsonMThTNLZq35j", + "o0wsV8JAuT6FUDAt": "Compendium.dnd5e.classfeatures.MW1ExvBLm8Hg82aA" + } + }, + "level": 1, + "title": "Features" + }, + { + "_id": "cq0cwgss39pkvjox", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.classfeatures.x6eEZ9GUsuOcEa3G" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": {}, + "level": 6, + "title": "Features" + }, + { + "_id": "rfd6o6858pl8k7fl", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.classfeatures.3647zjKSE9zFwOXc" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": {}, + "level": 14, + "title": "Features" + }, + { + "_id": "4xrl7vjblpn8zl5t", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.classfeatures.Gsha4bl0apxqspFy" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": {}, + "level": 18, + "title": "Features" + } + ], + "spellcasting": { + "progression": "none", + "ability": "" + } + }, + "effects": [], + "folder": null, + "sort": 0, + "ownership": { + "default": 0 + }, + "flags": { + "core": { + "sourceId": "Compendium.dnd5e.subclasses.2nadB2MBSHTQ0kcl" + } + }, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": null, + "modifiedTime": 1699993127229, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.f3p50jjvtk2ao61n" + }, + { + "_id": "kjmjY0zlE6IEiQVL", + "name": "Mending", + "ownership": { + "default": 0 + }, + "type": "spell", + "system": { + "description": { + "value": "This spell repairs a single break or tear in an object you touch, such as a broken chain link, two halves of a broken key, a torn cloak, or a leaking wineskin. As long as the break or tear is no larger than 1 foot in any dimension, you mend it, leaving no trace of the former damage.This spell can physically repair a magic item or construct, but the spell can't restore magic to such an object.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { - "type": "", - "cost": null, + "type": "minute", + "cost": 1, "condition": "" }, "duration": { "value": "", - "units": "" + "units": "inst" }, "cover": null, "crewed": false, "target": { - "value": null, + "value": 1, "width": null, "units": "", - "type": "" + "type": "object", + "prompt": true }, "range": { "value": null, "long": null, - "units": "" + "units": "touch" }, "uses": { "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, - "ability": null, - "actionType": "", + "ability": "", + "actionType": "util", "attackBonus": "", "chatFlavor": "", "critical": { @@ -1982,83 +2307,106 @@ "dc": null, "scaling": "spell" }, - "type": { - "value": "", - "subtype": "" + "level": 0, + "school": "trs", + "components": { + "vocal": true, + "somatic": true, + "material": true, + "ritual": false, + "concentration": false }, - "requirements": "Tiefling", - "recharge": { - "value": null, - "charged": false + "materials": { + "value": "Two lodestones", + "consumed": false, + "cost": 0, + "supply": 0 + }, + "preparation": { + "mode": "prepared", + "prepared": false + }, + "scaling": { + "mode": "none", + "formula": "" } }, "sort": 0, "flags": { "core": { - "sourceId": "Compendium.dnd5e.races.q71Pe1F8RRtEJt8Q" + "sourceId": "Compendium.dnd5e.spells.kjmjY0zlE6IEiQVL" } }, - "img": "icons/magic/air/fog-gas-smoke-swirling-orange.webp", + "img": "icons/magic/air/wind-stream-purple-blue.webp", "effects": [], "folder": null, - "ownership": { - "default": 0 - }, "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } + "systemId": "dnd5e", + "systemVersion": "2.0.0", + "coreVersion": "10.279", + "createdTime": 1661603486272, + "modifiedTime": 1661603486272, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.kjmjY0zlE6IEiQVL" }, { - "_id": "xQyybuzUPke5Owuf", - "name": "Infernal Legacy", - "type": "feat", + "_id": "EOmsUcFQJTfG2oio", + "name": "Fire Bolt", + "ownership": { + "default": 0 + }, + "type": "spell", "system": { "description": { - "value": "You know the @Compendium[dnd5e.spells.MUO1uYN7JR1hm4dR]{Thaumaturgy} cantrip.When you reach 3rd level, you can cast the @Compendium[dnd5e.spells.22dPoeXfaaAv4K3h]{Hellish Rebuke} spell as a 2nd-level spell once with this trait and regain the ability to do so when you finish a long rest.When you reach 5th level, you can cast the @Compendium[dnd5e.spells.S7VbUetIfVT7B6Eq]{Darkness} spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.", + "value": "You hurl a mote of fire at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried.This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { - "type": "", - "cost": null, + "type": "action", + "cost": 1, "condition": "" }, "duration": { "value": "", - "units": "" + "units": "inst" }, "cover": null, "crewed": false, "target": { - "value": null, + "value": 1, "width": null, "units": "", - "type": "" + "type": "creature", + "prompt": true }, "range": { - "value": null, + "value": 120, "long": null, - "units": "" + "units": "ft" }, "uses": { - "value": 1, - "max": "1", + "value": null, + "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", - "actionType": "", + "actionType": "rsak", "attackBonus": "", "chatFlavor": "", "critical": { @@ -2066,7 +2414,12 @@ "damage": "" }, "damage": { - "parts": [], + "parts": [ + [ + "1d10", + "fire" + ] + ], "versatile": "" }, "formula": "", @@ -2075,83 +2428,106 @@ "dc": null, "scaling": "spell" }, - "type": { + "level": 0, + "school": "evo", + "components": { + "vocal": true, + "somatic": true, + "material": false, + "ritual": false, + "concentration": false + }, + "materials": { "value": "", - "subtype": "" + "consumed": false, + "cost": 0, + "supply": 0 }, - "requirements": "Tiefling", - "recharge": { - "value": null, - "charged": false + "preparation": { + "mode": "prepared", + "prepared": false + }, + "scaling": { + "mode": "cantrip", + "formula": "" } }, "sort": 0, "flags": { "core": { - "sourceId": "Compendium.dnd5e.races.wJc88B8OP1y1xzMw" + "sourceId": "Compendium.dnd5e.spells.EOmsUcFQJTfG2oio" } }, - "img": "icons/creatures/unholy/demon-fanged-horned-yellow.webp", + "img": "icons/magic/fire/projectile-fireball-smoke-orange.webp", "effects": [], "folder": null, - "ownership": { - "default": 0 - }, "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } + "systemId": "dnd5e", + "systemVersion": "2.0.0", + "coreVersion": "10.279", + "createdTime": 1661603486272, + "modifiedTime": 1661603486272, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.EOmsUcFQJTfG2oio" }, { - "_id": "pTwtACItEzLveouu", - "name": "Tiefling", - "type": "feat", + "_id": "oIzA2MEHwxhtQneU", + "name": "Minor Illusion", + "ownership": { + "default": 0 + }, + "type": "spell", "system": { "description": { - "value": "\n\n\nTieflings share certain racial traits as a result of their infernal descent. Ability Score Increase. Your Intelligence score increases by 1, and your Charisma score increases by 2.Age. Tieflings mature at the same rate as humans but live a few years longer.Alignment. Tieflings might not have an innate tendency toward evil, but many of them end up there. Evil or not, an independent nature inclines many tieflings toward a chaotic alignment.Size. Tieflings are about the same size and build as humans. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Thanks to your infernal heritage, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Hellish Resistance. @Compendium[dnd5e.races.q71Pe1F8RRtEJt8Q]{Hellish Resistance} You have resistance to fire damage.Infernal Legacy. @Compendium[dnd5e.races.wJc88B8OP1y1xzMw]{Infernal Legacy} You know the @Compendium[dnd5e.spells.MUO1uYN7JR1hm4dR]{Thaumaturgy} cantrip. When you reach 3rd level, you can cast the @Compendium[dnd5e.spells.22dPoeXfaaAv4K3h]{Hellish Rebuke} spell as a 2nd‑level spell once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the @Compendium[dnd5e.spells.S7VbUetIfVT7B6Eq]{Darkness} spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.Languages. You can speak, read, and write Common and Infernal.\n\n\n", + "value": "You create a sound or an image of an object within range that lasts for the duration. The illusion also ends if you dismiss it as an action or cast this spell again.If you create a sound, its volume can range from a whisper to a scream. It can be your voice, someone else's voice, a lion's roar, a beating of drums, or any other sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends.If you create an image of an object—such as a chair, muddy footprints, or a small chest—it must be no larger than a 5-foot cube. The image can't create sound, light, smell, or any other sensory effect. Physical interaction with the image reveals it to be an illusion, because things can pass through it.If a creature uses its action to examine the sound or image, the creature can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the illusion becomes faint to the creature.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { - "type": "", - "cost": null, + "type": "action", + "cost": 1, "condition": "" }, "duration": { - "value": "", - "units": "" + "value": "1", + "units": "minute" }, "cover": null, "crewed": false, "target": { - "value": null, + "value": 5, "width": null, - "units": "", - "type": "" + "units": "ft", + "type": "cube", + "prompt": true }, "range": { - "value": null, + "value": 30, "long": null, - "units": "" + "units": "ft" }, "uses": { "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, - "ability": null, - "actionType": "", + "ability": "", + "actionType": "util", "attackBonus": "", "chatFlavor": "", "critical": { @@ -2168,182 +2544,68 @@ "dc": null, "scaling": "spell" }, - "type": { - "value": "", - "subtype": "" + "level": 0, + "school": "ill", + "components": { + "vocal": false, + "somatic": true, + "material": true, + "ritual": false, + "concentration": false }, - "requirements": "", - "recharge": { - "value": null, - "charged": false + "materials": { + "value": "A bit of fleece.", + "consumed": false, + "cost": 0, + "supply": 0 + }, + "preparation": { + "mode": "prepared", + "prepared": false + }, + "scaling": { + "mode": "none", + "formula": "" } }, "sort": 0, "flags": { "core": { - "sourceId": "Compendium.dnd5e.races.aHTokZ151W0ASSmo" + "sourceId": "Compendium.dnd5e.spells.oIzA2MEHwxhtQneU" } }, - "img": "icons/magic/air/wind-tornado-cyclone-red-orange.webp", + "img": "icons/magic/control/hypnosis-mesmerism-eye.webp", "effects": [], "folder": null, - "ownership": { - "default": 0 - }, "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } + "systemId": "dnd5e", + "systemVersion": "2.0.0", + "coreVersion": "10.279", + "createdTime": 1661603486273, + "modifiedTime": 1661603486273, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.oIzA2MEHwxhtQneU" }, { - "_id": "f3p50jjvtk2ao61n", - "name": "Draconic Bloodline", - "type": "subclass", - "img": "icons/creatures/reptiles/dragon-horned-blue.webp", + "_id": "icZokbgV1jIMpNCv", + "name": "Message", + "ownership": { + "default": 0 + }, + "type": "spell", "system": { "description": { - "value": "Your innate magic comes from draconic magic that was mingled with your blood or that of your ancestors. Most often, sorcerers with this origin trace their descent back to a mighty sorcerer of ancient times who made a bargain with a dragon or who might even have claimed a dragon parent. Some of these bloodlines are well established in the world, but most are obscure. Any given sorcerer could be the first of a new bloodline, as a result of a pact or some other exceptional circumstance.", + "value": "You point your finger toward a creature within range and whisper a message. The target (and only the target) hears the message and can reply in a whisper that only you can hear.You can cast this spell through solid Objects if you are familiar with the target and know it is beyond the barrier. Magical silence, 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood blocks the spell. The spell doesn't have to follow a straight line and can travel freely around corners or through openings.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "identifier": "draconic-bloodline", - "classIdentifier": "sorcerer", - "advancement": [ - { - "_id": "bjbipb2oydq3zsuy", - "type": "ItemGrant", - "configuration": { - "items": [ - "Compendium.dnd5e.classfeatures.EZsonMThTNLZq35j", - "Compendium.dnd5e.classfeatures.MW1ExvBLm8Hg82aA" - ], - "optional": false, - "spell": { - "ability": "", - "preparation": "", - "uses": { - "max": "", - "per": "" - } - } - }, - "value": { - "added": { - "oO4FCdIDwsr4VTb3": "Compendium.dnd5e.classfeatures.EZsonMThTNLZq35j", - "o0wsV8JAuT6FUDAt": "Compendium.dnd5e.classfeatures.MW1ExvBLm8Hg82aA" - } - }, - "level": 1, - "title": "Features" - }, - { - "_id": "cq0cwgss39pkvjox", - "type": "ItemGrant", - "configuration": { - "items": [ - "Compendium.dnd5e.classfeatures.x6eEZ9GUsuOcEa3G" - ], - "optional": false, - "spell": { - "ability": "", - "preparation": "", - "uses": { - "max": "", - "per": "" - } - } - }, - "value": {}, - "level": 6, - "title": "Features" - }, - { - "_id": "rfd6o6858pl8k7fl", - "type": "ItemGrant", - "configuration": { - "items": [ - "Compendium.dnd5e.classfeatures.3647zjKSE9zFwOXc" - ], - "optional": false, - "spell": { - "ability": "", - "preparation": "", - "uses": { - "max": "", - "per": "" - } - } - }, - "value": {}, - "level": 14, - "title": "Features" - }, - { - "_id": "4xrl7vjblpn8zl5t", - "type": "ItemGrant", - "configuration": { - "items": [ - "Compendium.dnd5e.classfeatures.Gsha4bl0apxqspFy" - ], - "optional": false, - "spell": { - "ability": "", - "preparation": "", - "uses": { - "max": "", - "per": "" - } - } - }, - "value": {}, - "level": 18, - "title": "Features" - } - ], - "spellcasting": { - "progression": "none", - "ability": "" - } - }, - "effects": [], - "folder": null, - "sort": 0, - "ownership": { - "default": 0 - }, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.subclasses.2nadB2MBSHTQ0kcl" - } - }, - "_stats": { - "systemId": "dnd5e", - "systemVersion": "2.2.2", - "coreVersion": "10.303", - "createdTime": null, - "modifiedTime": 1691519120854, - "lastModifiedBy": "dnd5ebuilder0000" - } - }, - { - "_id": "MUO1uYN7JR1hm4dR", - "name": "Thaumaturgy", - "ownership": { - "default": 0 - }, - "type": "spell", - "system": { - "description": { - "value": "You create one of the following magical effects within range:\n\nYour voice booms up to three times as loud as normal for 1 minute.\nYou cause flames to flicker, brighten, dim, or change color for 1 minute.\nYou cause harmless tremors in the ground for 1 minute.\nYou create a sound that originates from a point of your choice within range.\nYou cause an unlocked door or window to fly open or slam shut.\nYou alter the appearance of your eyes for 1 minute.\n\nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.", - "chat": "", - "unidentified": "" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" }, - "source": "SRD 5.1", "activation": { "type": "action", "cost": 1, @@ -2351,18 +2613,19 @@ }, "duration": { "value": "1", - "units": "minute" + "units": "round" }, "cover": null, "crewed": false, "target": { - "value": null, + "value": 1, "width": null, "units": "", - "type": "" + "type": "creature", + "prompt": true }, "range": { - "value": 30, + "value": 120, "long": null, "units": "ft" }, @@ -2370,12 +2633,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -2399,13 +2664,13 @@ "school": "trs", "components": { "vocal": true, - "somatic": false, - "material": false, + "somatic": true, + "material": true, "ritual": false, "concentration": false }, "materials": { - "value": "", + "value": "A short piece of copper wire", "consumed": false, "cost": 0, "supply": 0 @@ -2422,37 +2687,43 @@ "sort": 0, "flags": { "core": { - "sourceId": "Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR" + "sourceId": "Compendium.dnd5e.spells.icZokbgV1jIMpNCv" } }, - "img": "icons/magic/fire/explosion-fireball-small-purple-orange.webp", + "img": "icons/commodities/currency/coin-engraved-sun-smile-copper.webp", "effects": [], "folder": null, "_stats": { "systemId": "dnd5e", "systemVersion": "2.0.0", "coreVersion": "10.279", - "createdTime": 1661603486272, - "modifiedTime": 1661603486272, + "createdTime": 1661603486273, + "modifiedTime": 1661603486273, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.icZokbgV1jIMpNCv" }, { - "_id": "kjmjY0zlE6IEiQVL", - "name": "Mending", + "_id": "5SuJewoa1CRWaj1F", + "name": "Burning Hands", "ownership": { "default": 0 }, "type": "spell", "system": { "description": { - "value": "This spell repairs a single break or tear in an object you touch, such as a broken chain link, two halves of a broken key, a torn cloak, or a leaking wineskin. As long as the break or tear is no larger than 1 foot in any dimension, you mend it, leaving no trace of the former damage.This spell can physically repair a magic item or construct, but the spell can't restore magic to such an object.", + "value": "As you hold your hands with thumbs touching and fingers spread, a thin sheet of flames shoots forth from your outstretched fingertips. Each creature in a 15-foot cone must make a Dexterity saving throw. A creature takes 3d6 fire damage on a failed save, or half as much damage on a successful one.The fire ignites any flammable objects in the area that aren't being worn or carried.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { - "type": "minute", + "type": "action", "cost": 1, "condition": "" }, @@ -2463,29 +2734,32 @@ "cover": null, "crewed": false, "target": { - "value": 1, + "value": 15, "width": null, - "units": "", - "type": "object" + "units": "ft", + "type": "cone", + "prompt": true }, "range": { "value": null, "long": null, - "units": "touch" + "units": "self" }, "uses": { "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", - "actionType": "util", + "actionType": "save", "attackBonus": "", "chatFlavor": "", "critical": { @@ -2493,26 +2767,31 @@ "damage": "" }, "damage": { - "parts": [], + "parts": [ + [ + "3d6", + "fire" + ] + ], "versatile": "" }, "formula": "", "save": { - "ability": "", - "dc": null, + "ability": "dex", + "dc": 13, "scaling": "spell" }, - "level": 0, - "school": "trs", + "level": 1, + "school": "evo", "components": { "vocal": true, "somatic": true, - "material": true, + "material": false, "ritual": false, "concentration": false }, "materials": { - "value": "Two lodestones", + "value": "", "consumed": false, "cost": 0, "supply": 0 @@ -2522,77 +2801,86 @@ "prepared": false }, "scaling": { - "mode": "none", - "formula": "" + "mode": "level", + "formula": "1d6" } }, "sort": 0, "flags": { "core": { - "sourceId": "Compendium.dnd5e.spells.kjmjY0zlE6IEiQVL" + "sourceId": "Compendium.dnd5e.spells.5SuJewoa1CRWaj1F" } }, - "img": "icons/magic/air/wind-stream-purple-blue.webp", + "img": "icons/magic/air/fog-gas-smoke-dense-orange.webp", "effects": [], "folder": null, "_stats": { "systemId": "dnd5e", "systemVersion": "2.0.0", "coreVersion": "10.279", - "createdTime": 1661603486272, - "modifiedTime": 1661603486272, + "createdTime": 1661603486273, + "modifiedTime": 1661603486273, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.5SuJewoa1CRWaj1F" }, { - "_id": "EOmsUcFQJTfG2oio", - "name": "Fire Bolt", + "_id": "A3q2gTNqG6fvNGrv", + "name": "Disguise Self", "ownership": { "default": 0 }, "type": "spell", "system": { "description": { - "value": "You hurl a mote of fire at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried.This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).", + "value": "You make yourself—including your clothing, armor, weapons, and other belongings on your person—look different until the spell ends or until you use your action to dismiss it. You can seem 1 foot shorter or taller and can appear thin, fat, or in between. You can't change your body type, so you must adopt a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you.The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to your outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel your head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair.To discern that you are disguised, a creature can use its action to inspect your appearance and must succeed on an Intelligence (Investigation) check against your spell save DC.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, "condition": "" }, "duration": { - "value": "", - "units": "inst" + "value": "1", + "units": "hour" }, "cover": null, "crewed": false, "target": { - "value": 1, + "value": null, "width": null, "units": "", - "type": "creature" + "type": "self", + "prompt": true }, "range": { - "value": 120, + "value": null, "long": null, - "units": "ft" + "units": "self" }, "uses": { "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", - "actionType": "rsak", + "actionType": "util", "attackBonus": "", "chatFlavor": "", "critical": { @@ -2600,12 +2888,7 @@ "damage": "" }, "damage": { - "parts": [ - [ - "1d10", - "fire" - ] - ], + "parts": [], "versatile": "" }, "formula": "", @@ -2614,8 +2897,8 @@ "dc": null, "scaling": "spell" }, - "level": 0, - "school": "evo", + "level": 1, + "school": "ill", "components": { "vocal": true, "somatic": true, @@ -2634,503 +2917,82 @@ "prepared": false }, "scaling": { - "mode": "cantrip", + "mode": "none", "formula": "" } }, "sort": 0, "flags": { "core": { - "sourceId": "Compendium.dnd5e.spells.EOmsUcFQJTfG2oio" + "sourceId": "Compendium.dnd5e.spells.A3q2gTNqG6fvNGrv" } }, - "img": "icons/magic/fire/projectile-fireball-smoke-orange.webp", + "img": "icons/magic/control/debuff-energy-hold-teal-blue.webp", "effects": [], "folder": null, "_stats": { "systemId": "dnd5e", "systemVersion": "2.0.0", "coreVersion": "10.279", - "createdTime": 1661603486272, - "modifiedTime": 1661603486272, + "createdTime": 1661603486274, + "modifiedTime": 1661603486274, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.A3q2gTNqG6fvNGrv" }, { - "_id": "oIzA2MEHwxhtQneU", - "name": "Minor Illusion", + "name": "Scholar", + "type": "background", + "system": { + "description": { + "value": "Skill Proficiencies: History, plus your choice of one from among Arcana, Nature, and ReligionLanguages: Two of your choiceEquipment: Scholar's robes, a writing kit, a book of lore, and a pouch containing 10 gp", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "", + "page": "", + "license": "CC-BY-4.0" + }, + "advancement": [] + }, + "img": "icons/sundries/documents/blueprint-recipe-alchemical.webp", + "effects": [], + "folder": null, + "sort": 0, "ownership": { "default": 0 }, - "type": "spell", + "flags": {}, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.1.0", + "coreVersion": "10.291", + "createdTime": 1673040183979, + "modifiedTime": 1673040768566, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_id": "38phJIpUGf6pPv1e", + "_key": "!actors.items!xT2C2Itv2XambDYp.38phJIpUGf6pPv1e" + }, + { + "_id": "Ig5YOxEOabGaTjG5", + "name": "Sorcerer", + "type": "class", + "img": "icons/magic/earth/projectiles-magma-stone-orange.webp", "system": { "description": { - "value": "You create a sound or an image of an object within range that lasts for the duration. The illusion also ends if you dismiss it as an action or cast this spell again.If you create a sound, its volume can range from a whisper to a scream. It can be your voice, someone else's voice, a lion's roar, a beating of drums, or any other sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends.If you create an image of an object—such as a chair, muddy footprints, or a small chest—it must be no larger than a 5-foot cube. The image can't create sound, light, smell, or any other sensory effect. Physical interaction with the image reveals it to be an illusion, because things can pass through it.If a creature uses its action to examine the sound or image, the creature can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the illusion becomes faint to the creature.", + "value": "As a sorcerer, you gain the following class features.\nHit Points\nHit Dice: 1d6 per sorcerer levelHit Points at 1st Level: 6 + your Constitution modifierHit Points at Higher Levels: 1d6 (or 4) + your Constitution modifier per sorcerer level after 1st\nProficiencies\nArmor: NoneWeapons: Daggers, darts, slings, quarterstaffs, light crossbowsTools: NoneSaving Throws: Constitution, CharismaSkills: Choose two from Arcana, Deception, Insight, Intimidation, Persuasion, and Religion\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a light crossbow and 20 bolts or (b) any simple weapon\n(a) a component pouch or (b) an arcane focus\n(a) a dungeoneer's pack or (b) an explorer's pack\nTwo daggers\n\nSorcerer Advancement\n\n\n\nLevel\nProficiency Bonus\nSorcery Points\nFeatures\n\n\n\n\n1st\n+2\n̶\n@Compendium[dnd5e.classfeatures.oygRF3ZjTv2T7z0Y]{Spellcasting}, @Compendium[dnd5e.classfeatures.cmRCL9T9UgRYOj1c]{Sorcerous Origins}\n\n\n2nd\n+2\n2\n@Compendium[dnd5e.classfeatures.LBKChJY5n02Afhnq]{Font of Magic}\n\n\n3rd\n+2\n3\n2nd Level Spell Slot, @Compendium[dnd5e.classfeatures.9Uh7uTDNZ04oTJsL]{Metamagic}\n\n\n4th\n+2\n4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n5th\n+3\n5\n3rd Level Spell Slot\n\n\n6th\n+3\n6\nSorcerous Origin feature\n\n\n7th\n+3\n7\n4th Level Spell Slot\n\n\n8th\n+3\n8\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n9th\n+4\n9\n5th Level Spell Slot\n\n\n10th\n+4\n10\n@Compendium[dnd5e.classfeatures.9Uh7uTDNZ04oTJsL]{Metamagic improvement}\n\n\n11th\n+4\n11\n6th Level Spell Slot\n\n\n12th\n+4\n12\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n13\n7th Level Spell Slot\n\n\n14th\n+5\n14\nSorcerous Origin feature\n\n\n15th\n+5\n15\n8th Level Spell Slot\n\n\n16th\n+5\n16\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n17\n9th Level Spell Slot, @Compendium[dnd5e.classfeatures.9Uh7uTDNZ04oTJsL]{Metamagic improvement}\n\n\n18th\n+6\n18\nSorcerous Origin feature\n\n\n19th\n+6\n19\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\n20\n@Compendium[dnd5e.classfeatures.F2lEKSmOY0NUruzY]{Sorcerous Restoration}\n\n\n\nSorcerous Origins\nDifferent sorcerers claim different origins for their innate magic, such as a draconic bloodline.\n@Compendium[dnd5e.subclasses.2nadB2MBSHTQ0kcl]{Draconic Bloodline}", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "action", - "cost": 1, - "condition": "" - }, - "duration": { - "value": "1", - "units": "minute" - }, - "cover": null, - "crewed": false, - "target": { - "value": 5, - "width": null, - "units": "ft", - "type": "cube" - }, - "range": { - "value": 30, - "long": null, - "units": "ft" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": "", - "actionType": "util", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "level": 0, - "school": "ill", - "components": { - "vocal": false, - "somatic": true, - "material": true, - "ritual": false, - "concentration": false - }, - "materials": { - "value": "A bit of fleece.", - "consumed": false, - "cost": 0, - "supply": 0 - }, - "preparation": { - "mode": "prepared", - "prepared": false - }, - "scaling": { - "mode": "none", - "formula": "" - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.spells.oIzA2MEHwxhtQneU" - } - }, - "img": "icons/magic/control/hypnosis-mesmerism-eye.webp", - "effects": [], - "folder": null, - "_stats": { - "systemId": "dnd5e", - "systemVersion": "2.0.0", - "coreVersion": "10.279", - "createdTime": 1661603486273, - "modifiedTime": 1661603486273, - "lastModifiedBy": "dnd5ebuilder0000" - } - }, - { - "_id": "icZokbgV1jIMpNCv", - "name": "Message", - "ownership": { - "default": 0 - }, - "type": "spell", - "system": { - "description": { - "value": "You point your finger toward a creature within range and whisper a message. The target (and only the target) hears the message and can reply in a whisper that only you can hear.You can cast this spell through solid Objects if you are familiar with the target and know it is beyond the barrier. Magical silence, 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood blocks the spell. The spell doesn't have to follow a straight line and can travel freely around corners or through openings.", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "action", - "cost": 1, - "condition": "" - }, - "duration": { - "value": "1", - "units": "round" - }, - "cover": null, - "crewed": false, - "target": { - "value": 1, - "width": null, - "units": "", - "type": "creature" - }, - "range": { - "value": 120, - "long": null, - "units": "ft" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": "", - "actionType": "util", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "level": 0, - "school": "trs", - "components": { - "vocal": true, - "somatic": true, - "material": true, - "ritual": false, - "concentration": false - }, - "materials": { - "value": "A short piece of copper wire", - "consumed": false, - "cost": 0, - "supply": 0 - }, - "preparation": { - "mode": "prepared", - "prepared": false - }, - "scaling": { - "mode": "none", - "formula": "" - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.spells.icZokbgV1jIMpNCv" - } - }, - "img": "icons/commodities/currency/coin-engraved-sun-smile-copper.webp", - "effects": [], - "folder": null, - "_stats": { - "systemId": "dnd5e", - "systemVersion": "2.0.0", - "coreVersion": "10.279", - "createdTime": 1661603486273, - "modifiedTime": 1661603486273, - "lastModifiedBy": "dnd5ebuilder0000" - } - }, - { - "_id": "5SuJewoa1CRWaj1F", - "name": "Burning Hands", - "ownership": { - "default": 0 - }, - "type": "spell", - "system": { - "description": { - "value": "As you hold your hands with thumbs touching and fingers spread, a thin sheet of flames shoots forth from your outstretched fingertips. Each creature in a 15-foot cone must make a Dexterity saving throw. A creature takes 3d6 fire damage on a failed save, or half as much damage on a successful one.The fire ignites any flammable objects in the area that aren't being worn or carried.At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "action", - "cost": 1, - "condition": "" - }, - "duration": { - "value": "", - "units": "inst" - }, - "cover": null, - "crewed": false, - "target": { - "value": 15, - "width": null, - "units": "ft", - "type": "cone" - }, - "range": { - "value": null, - "long": null, - "units": "self" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": "", - "actionType": "save", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [ - [ - "3d6", - "fire" - ] - ], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "dex", - "dc": 13, - "scaling": "spell" - }, - "level": 1, - "school": "evo", - "components": { - "vocal": true, - "somatic": true, - "material": false, - "ritual": false, - "concentration": false - }, - "materials": { - "value": "", - "consumed": false, - "cost": 0, - "supply": 0 - }, - "preparation": { - "mode": "prepared", - "prepared": false - }, - "scaling": { - "mode": "level", - "formula": "1d6" - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.spells.5SuJewoa1CRWaj1F" - } - }, - "img": "icons/magic/air/fog-gas-smoke-dense-orange.webp", - "effects": [], - "folder": null, - "_stats": { - "systemId": "dnd5e", - "systemVersion": "2.0.0", - "coreVersion": "10.279", - "createdTime": 1661603486273, - "modifiedTime": 1661603486273, - "lastModifiedBy": "dnd5ebuilder0000" - } - }, - { - "_id": "A3q2gTNqG6fvNGrv", - "name": "Disguise Self", - "ownership": { - "default": 0 - }, - "type": "spell", - "system": { - "description": { - "value": "You make yourself—including your clothing, armor, weapons, and other belongings on your person—look different until the spell ends or until you use your action to dismiss it. You can seem 1 foot shorter or taller and can appear thin, fat, or in between. You can't change your body type, so you must adopt a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you.The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to your outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel your head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair.To discern that you are disguised, a creature can use its action to inspect your appearance and must succeed on an Intelligence (Investigation) check against your spell save DC.", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "action", - "cost": 1, - "condition": "" - }, - "duration": { - "value": "1", - "units": "hour" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "self" - }, - "range": { - "value": null, - "long": null, - "units": "self" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": "", - "actionType": "util", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "level": 1, - "school": "ill", - "components": { - "vocal": true, - "somatic": true, - "material": false, - "ritual": false, - "concentration": false - }, - "materials": { - "value": "", - "consumed": false, - "cost": 0, - "supply": 0 - }, - "preparation": { - "mode": "prepared", - "prepared": false - }, - "scaling": { - "mode": "none", - "formula": "" - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.spells.A3q2gTNqG6fvNGrv" - } - }, - "img": "icons/magic/control/debuff-energy-hold-teal-blue.webp", - "effects": [], - "folder": null, - "_stats": { - "systemId": "dnd5e", - "systemVersion": "2.0.0", - "coreVersion": "10.279", - "createdTime": 1661603486274, - "modifiedTime": 1661603486274, - "lastModifiedBy": "dnd5ebuilder0000" - } - }, - { - "name": "Scholar", - "type": "background", - "system": { - "description": { - "value": "Skill Proficiencies: History, plus your choice of one from among Arcana, Nature, and ReligionLanguages: Two of your choiceEquipment: Scholar's robes, a writing kit, a book of lore, and a pouch containing 10 gp", - "chat": "", - "unidentified": "" - }, - "source": "", - "advancement": [] - }, - "img": "icons/sundries/documents/blueprint-recipe-alchemical.webp", - "effects": [], - "folder": null, - "sort": 0, - "ownership": { - "default": 0 - }, - "flags": {}, - "_stats": { - "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", - "createdTime": 1673040183979, - "modifiedTime": 1673040768566, - "lastModifiedBy": "dnd5ebuilder0000" - }, - "_id": "38phJIpUGf6pPv1e" - }, - { - "_id": "Ig5YOxEOabGaTjG5", - "name": "Sorcerer", - "type": "class", - "img": "icons/magic/earth/projectiles-magma-stone-orange.webp", - "system": { - "description": { - "value": "As a sorcerer, you gain the following class features.\nHit Points\nHit Dice: 1d6 per sorcerer levelHit Points at 1st Level: 6 + your Constitution modifierHit Points at Higher Levels: 1d6 (or 4) + your Constitution modifier per sorcerer level after 1st\nProficiencies\nArmor: NoneWeapons: Daggers, darts, slings, quarterstaffs, light crossbowsTools: NoneSaving Throws: Constitution, CharismaSkills: Choose two from Arcana, Deception, Insight, Intimidation, Persuasion, and Religion\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a light crossbow and 20 bolts or (b) any simple weapon\n(a) a component pouch or (b) an arcane focus\n(a) a dungeoneer's pack or (b) an explorer's pack\nTwo daggers\n\nSorcerer Advancement\n\n\n\nLevel\nProficiency Bonus\nSorcery Points\nFeatures\n\n\n\n\n1st\n+2\n̶\n@Compendium[dnd5e.classfeatures.oygRF3ZjTv2T7z0Y]{Spellcasting}, @Compendium[dnd5e.classfeatures.cmRCL9T9UgRYOj1c]{Sorcerous Origins}\n\n\n2nd\n+2\n2\n@Compendium[dnd5e.classfeatures.LBKChJY5n02Afhnq]{Font of Magic}\n\n\n3rd\n+2\n3\n2nd Level Spell Slot, @Compendium[dnd5e.classfeatures.9Uh7uTDNZ04oTJsL]{Metamagic}\n\n\n4th\n+2\n4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n5th\n+3\n5\n3rd Level Spell Slot\n\n\n6th\n+3\n6\nSorcerous Origin feature\n\n\n7th\n+3\n7\n4th Level Spell Slot\n\n\n8th\n+3\n8\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n9th\n+4\n9\n5th Level Spell Slot\n\n\n10th\n+4\n10\n@Compendium[dnd5e.classfeatures.9Uh7uTDNZ04oTJsL]{Metamagic improvement}\n\n\n11th\n+4\n11\n6th Level Spell Slot\n\n\n12th\n+4\n12\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n13\n7th Level Spell Slot\n\n\n14th\n+5\n14\nSorcerous Origin feature\n\n\n15th\n+5\n15\n8th Level Spell Slot\n\n\n16th\n+5\n16\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n17\n9th Level Spell Slot, @Compendium[dnd5e.classfeatures.9Uh7uTDNZ04oTJsL]{Metamagic improvement}\n\n\n18th\n+6\n18\nSorcerous Origin feature\n\n\n19th\n+6\n19\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\n20\n@Compendium[dnd5e.classfeatures.F2lEKSmOY0NUruzY]{Sorcerous Restoration}\n\n\n\nSorcerous Origins\nDifferent sorcerers claim different origins for their innate magic, such as a draconic bloodline.\n@Compendium[dnd5e.subclasses.2nadB2MBSHTQ0kcl]{Draconic Bloodline}", - "chat": "", - "unidentified": "" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" }, - "source": "SRD 5.1", "identifier": "sorcerer", "levels": 1, "hitDice": "d6", @@ -3374,7 +3236,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -3395,7 +3258,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -3416,7 +3280,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -3437,7 +3302,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -3448,81 +3314,495 @@ "_id": "idqBSjclkmTGLcoH" }, { - "_id": "puDaUsYrlks0z5gm", - "type": "AbilityScoreImprovement", + "_id": "puDaUsYrlks0z5gm", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 2, + "fixed": { + "str": 0, + "dex": 0, + "con": 0, + "int": 0, + "wis": 0, + "cha": 0 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 19, + "title": "" + }, + { + "_id": "BfjnJtYtVOv4PVHu", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim:dagger", + "weapon:sim:dart", + "weapon:sim:lightcrossbow", + "weapon:sim:quarterstaff", + "weapon:sim:sling" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "weapon:sim:dagger", + "weapon:sim:dart", + "weapon:sim:lightcrossbow", + "weapon:sim:quarterstaff", + "weapon:sim:sling" + ] + } + }, + { + "_id": "KO7dxe4FlwlKXFIq", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:con", + "saves:cha" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "saves:con", + "saves:cha" + ] + } + }, + { + "_id": "PAAGQYrkhVdGqg59", + "type": "Trait", "configuration": { - "points": 2, - "fixed": { - "str": 0, - "dex": 0, - "con": 0, - "int": 0, - "wis": 0, - "cha": 0 - } + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:arc", + "skills:dec", + "skills:ins", + "skills:itm", + "skills:per", + "skills:rel" + ] + } + ] }, + "level": 1, + "title": "", + "classRestriction": "primary", "value": { - "type": "asi" - }, - "level": 19, - "title": "" + "chosen": [ + "skills:arc", + "skills:rel" + ] + } } ], - "saves": [ - "con", - "cha" - ], - "skills": { - "number": 2, - "choices": [ - "arc", - "dec", - "ins", - "itm", - "per", - "rel" - ], - "value": [] + "spellcasting": { + "progression": "full", + "ability": "cha" + } + }, + "effects": [], + "folder": null, + "sort": 0, + "ownership": { + "default": 0 + }, + "flags": { + "core": { + "sourceId": "Compendium.dnd5e.classes.6T08zzKtmmpVwlXU" + } + }, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234275, + "modifiedTime": 1699993127229, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.Ig5YOxEOabGaTjG5" + }, + { + "_id": "I6RIW8FArEkBLA3G", + "name": "Spellcasting (Sorcerer)", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "An event in your past, or in the life of a parent or ancestor, left an indelible mark on you, infusing you with arcane magic. This font of magic, whatever its origin, fuels your spells.\nCantrips\nAt 1st level, you know four cantrips of your choice from the sorcerer spell list. You learn additional sorcerer cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Sorcerer table.\nSpell Slots\nThe Sorcerer table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these sorcerer spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nFor example, if you know the 1st-level spell burning hands and have a 1st-level and a 2nd-level spell slot available, you can cast burning hands using either slot.\nSpells Known of 1st Level and Higher\nYou know two 1st-level spells of your choice from the sorcerer spell list.\nThe Spells Known column of the Sorcerer table shows when you learn more sorcerer spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.\nAdditionally, when you gain a level in this class, you can choose one of the sorcerer spells you know and replace it with another spell from the sorcerer spell list, which also must be of a level for which you have spell slots.\nSpellcasting Ability\nCharisma is your spellcasting ability for your sorcerer spells, since the power of your magic relies on your ability to project your will into the world. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a sorcerer spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Charisma modifier\nSpell attack modifier = your proficiency bonus + your Charisma modifier\nSpellcasting Focus\nYou can use an arcane focus as a spellcasting focus for your sorcerer spells.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "crewed": false, + "target": { + "value": null, + "width": null, + "units": "", + "type": "", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null, + "scale": false + }, + "ability": null, + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" + }, + "type": { + "value": "class", + "subtype": "" + }, + "requirements": "Sorcerer 1", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": { + "dnd5e": { + "sourceId": "Compendium.dnd5e.classfeatures.oygRF3ZjTv2T7z0Y", + "advancementOrigin": "Ig5YOxEOabGaTjG5.OBdl50eixXnMFiLx" + } + }, + "img": "icons/magic/unholy/strike-hand-glow-pink.webp", + "effects": [], + "folder": null, + "sort": 0, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234424, + "modifiedTime": 1699987317098, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.I6RIW8FArEkBLA3G" + }, + { + "_id": "PnwXvKH6tQ3n7iIo", + "name": "Sorcerous Origins", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "Choose a sorcerous origin, which describes the source of your innate magical power, such as Draconic Bloodline.Your choice grants you features when you choose it at 1st level and again at 6th, 14th, and 18th level.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "crewed": false, + "target": { + "value": null, + "width": null, + "units": "", + "type": "", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null, + "scale": false + }, + "ability": "", + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" + }, + "type": { + "value": "class", + "subtype": "" + }, + "requirements": "Sorcerer 1", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": { + "dnd5e": { + "sourceId": "Compendium.dnd5e.classfeatures.cmRCL9T9UgRYOj1c", + "advancementOrigin": "Ig5YOxEOabGaTjG5.OBdl50eixXnMFiLx" + } + }, + "img": "icons/magic/air/wind-vortex-swirl-purple.webp", + "effects": [], + "folder": null, + "sort": 0, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234397, + "modifiedTime": 1699987317098, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.PnwXvKH6tQ3n7iIo" + }, + { + "_id": "oO4FCdIDwsr4VTb3", + "name": "Dragon Ancestor", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "At 1st level, you choose one type of dragon as your ancestor. The damage type associated with each dragon is used by features you gain later.DragonDamage TypeBlackAcidBlueLightningBrassFireBronzeLightningCopperAcidGoldFireGreenPoisonRedFireSilverColdWhiteColdYou can speak, read, and write Draconic. Additionally, whenever you make a Charisma check when interacting with dragons, your proficiency bonus is doubled if it applies to the check.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "crewed": false, + "target": { + "value": null, + "width": null, + "units": "", + "type": "", + "prompt": true }, - "spellcasting": { - "progression": "full", - "ability": "cha" + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null, + "scale": false + }, + "ability": "", + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" + }, + "type": { + "value": "class", + "subtype": "" + }, + "requirements": "Draconic Bloodline 1", + "recharge": { + "value": null, + "charged": false } }, - "effects": [], - "folder": null, - "sort": 0, - "ownership": { - "default": 0 - }, "flags": { - "core": { - "sourceId": "Compendium.dnd5e.classes.6T08zzKtmmpVwlXU" + "dnd5e": { + "sourceId": "Compendium.dnd5e.classfeatures.EZsonMThTNLZq35j", + "advancementOrigin": "f3p50jjvtk2ao61n.bjbipb2oydq3zsuy" } }, + "img": "icons/creatures/abilities/dragon-fire-breath-orange.webp", + "effects": [ + { + "_id": "xI5jjbA2Dlj7L0cd", + "changes": [ + { + "key": "system.traits.languages.value", + "mode": 2, + "value": "draconic", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "seconds": null, + "combat": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "icon": "icons/creatures/abilities/dragon-fire-breath-orange.webp", + "label": "Dragon Ancestor", + "origin": "Item.EZsonMThTNLZq35j", + "transfer": true, + "flags": {}, + "tint": null, + "sort": 0, + "_key": "!actors.items.effects!xT2C2Itv2XambDYp.oO4FCdIDwsr4VTb3.xI5jjbA2Dlj7L0cd" + } + ], + "folder": null, + "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", - "createdTime": 1661787234275, - "modifiedTime": 1691519120869, + "createdTime": 1661787234352, + "modifiedTime": 1699987392343, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.oO4FCdIDwsr4VTb3" }, { - "_id": "I6RIW8FArEkBLA3G", - "name": "Spellcasting (Sorcerer)", + "_id": "o0wsV8JAuT6FUDAt", + "name": "Draconic Resilience", "ownership": { "default": 0 }, "type": "feat", "system": { "description": { - "value": "An event in your past, or in the life of a parent or ancestor, left an indelible mark on you, infusing you with arcane magic. This font of magic, whatever its origin, fuels your spells.\nCantrips\nAt 1st level, you know four cantrips of your choice from the sorcerer spell list. You learn additional sorcerer cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Sorcerer table.\nSpell Slots\nThe Sorcerer table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these sorcerer spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nFor example, if you know the 1st-level spell burning hands and have a 1st-level and a 2nd-level spell slot available, you can cast burning hands using either slot.\nSpells Known of 1st Level and Higher\nYou know two 1st-level spells of your choice from the sorcerer spell list.\nThe Spells Known column of the Sorcerer table shows when you learn more sorcerer spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.\nAdditionally, when you gain a level in this class, you can choose one of the sorcerer spells you know and replace it with another spell from the sorcerer spell list, which also must be of a level for which you have spell slots.\nSpellcasting Ability\nCharisma is your spellcasting ability for your sorcerer spells, since the power of your magic relies on your ability to project your will into the world. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a sorcerer spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Charisma modifier\nSpell attack modifier = your proficiency bonus + your Charisma modifier\nSpellcasting Focus\nYou can use an arcane focus as a spellcasting focus for your sorcerer spells.", + "value": "As magic flows through your body, it causes physical traits of your dragon ancestors to emerge. At 1st level, your hit point maximum increases by 1 and increases by 1 again whenever you gain a level in this class.Additionally, parts of your skin are covered by a thin sheen of dragon-like scales. When you aren't wearing armor, your AC equals 13 + your Dexterity modifier.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -3538,7 +3818,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -3549,14 +3830,16 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, - "ability": null, + "ability": "", "actionType": "", "attackBonus": "", "chatFlavor": "", @@ -3575,48 +3858,324 @@ "scaling": "spell" }, "type": { - "value": "class", - "subtype": "" - }, - "requirements": "Sorcerer 1", - "recharge": { - "value": null, - "charged": false + "value": "class", + "subtype": "" + }, + "requirements": "Draconic Bloodline 1", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": { + "dnd5e": { + "sourceId": "Compendium.dnd5e.classfeatures.MW1ExvBLm8Hg82aA", + "advancementOrigin": "f3p50jjvtk2ao61n.bjbipb2oydq3zsuy" + } + }, + "img": "icons/creatures/claws/claw-scaled-red.webp", + "effects": [ + { + "_id": "Pu89Tsgy2FJjYPQi", + "changes": [ + { + "key": "system.attributes.ac.calc", + "mode": 5, + "value": "draconic", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "seconds": null, + "combat": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "icon": "icons/creatures/claws/claw-scaled-red.webp", + "label": "Draconic Resilience", + "origin": "Item.MW1ExvBLm8Hg82aA", + "transfer": true, + "flags": {}, + "tint": null, + "sort": 0, + "_key": "!actors.items.effects!xT2C2Itv2XambDYp.o0wsV8JAuT6FUDAt.Pu89Tsgy2FJjYPQi" + } + ], + "folder": null, + "sort": 0, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234366, + "modifiedTime": 1699987391372, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.o0wsV8JAuT6FUDAt" + }, + { + "_id": "Y7BsvdA2in8INCB5", + "name": "Tiefling", + "type": "race", + "img": "icons/creatures/unholy/demon-female-succubus-orange.webp", + "system": { + "description": { + "value": "Tieflings share certain racial traits as a result of their infernal descent.Ability Score Increase. Your Intelligence score increases by 1, and your Charisma score increases by 2.Age. Tieflings mature at the same rate as humans but live a few years longer.Alignment. Tieflings might not have an innate tendency toward evil, but many of them end up there. Evil or not, an independent nature inclines many tieflings toward a chaotic alignment.Size. Tieflings are about the same size and build as humans. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Thanks to your infernal heritage, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Hellish Resistance. You have resistance to fire damage.Infernal Legacy. You know the thaumaturgy cantrip. When you reach 3rd level, you can cast the hellish rebuke spell as a 2nd-level spell once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the darkness spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.Languages. You can speak, read, and write Common and Infernal.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "identifier": "tiefling", + "advancement": [ + { + "_id": "1TyE6rcEq01VWRZc", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.races.q71Pe1F8RRtEJt8Q", + "Compendium.dnd5e.races.wJc88B8OP1y1xzMw" + ], + "optional": false, + "spell": { + "ability": "cha", + "preparation": "innate", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": { + "added": { + "AqOtnW8y12LokI6Z": "Compendium.dnd5e.races.q71Pe1F8RRtEJt8Q", + "dbhkmMp9qAZQNQ7s": "Compendium.dnd5e.races.wJc88B8OP1y1xzMw" + } + }, + "level": 0, + "title": "" + }, + { + "_id": "d8rqpB59h8lfbnva", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.spells.22dPoeXfaaAv4K3h" + ], + "optional": false, + "spell": { + "ability": "cha", + "preparation": "innate", + "uses": { + "max": "1", + "per": "lr" + } + } + }, + "value": {}, + "level": 3, + "title": "Infernal Legacy" + }, + { + "_id": "p2AP4Rn6S8A8Xu5L", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.spells.S7VbUetIfVT7B6Eq" + ], + "optional": false, + "spell": { + "ability": "cha", + "preparation": "innate", + "uses": { + "max": "1", + "per": "lr" + } + } + }, + "value": {}, + "level": 5, + "title": "Infernal Legacy" + }, + { + "_id": "Z9hvZFkWUNvowbQX", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 0, + "fixed": { + "str": 0, + "dex": 0, + "con": 0, + "int": 1, + "wis": 0, + "cha": 2 + }, + "cap": 2 + }, + "value": { + "type": "asi", + "assignments": { + "int": 1, + "cha": 2 + } + }, + "level": 0, + "title": "" + }, + { + "_id": "RdFKqK8MykC5CYIB", + "type": "Size", + "configuration": { + "hint": "Tieflings are about the same size and build as humans. Your size is Medium.", + "sizes": [ + "med" + ] + }, + "value": { + "size": "med" + }, + "level": 1, + "title": "" + }, + { + "_id": "rE6m74Xp32VuJC5y", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "dr:fire" + ], + "choices": [] + }, + "level": 0, + "title": "Hellish Resistance", + "value": { + "chosen": [ + "dr:fire" + ] + } + }, + { + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR" + ], + "optional": false, + "spell": { + "ability": "cha", + "preparation": "innate", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": { + "added": { + "FlFGTgeJM6U0I1iP": "Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR" + } + }, + "level": 0, + "title": "Infernal Legacy", + "_id": "VUUQMvAtL25wj3vD" + }, + { + "_id": "jGeaKhTjGApgqmWw", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:standard:common", + "languages:exotic:infernal" + ], + "choices": [] + }, + "level": 0, + "title": "", + "value": { + "chosen": [ + "languages:standard:common", + "languages:exotic:infernal" + ] + } + } + ], + "senses": { + "darkvision": 60, + "blindsight": 0, + "tremorsense": 0, + "truesight": 0, + "units": "ft", + "special": "" + }, + "movement": { + "burrow": 0, + "climb": 0, + "fly": 0, + "swim": 0, + "walk": 30, + "units": "ft", + "hover": false + }, + "type": { + "value": "humanoid", + "subtype": "", + "custom": "" } }, + "effects": [], + "ownership": { + "default": 0 + }, "flags": { - "dnd5e": { - "sourceId": "Compendium.dnd5e.classfeatures.oygRF3ZjTv2T7z0Y", - "advancementOrigin": "Ig5YOxEOabGaTjG5.OBdl50eixXnMFiLx" + "core": { + "sourceId": "Compendium.dnd5e.races.aHTokZ151W0ASSmo" } }, - "img": "icons/magic/unholy/strike-hand-glow-pink.webp", - "effects": [], - "folder": null, - "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", - "createdTime": 1661787234424, - "modifiedTime": 1691519120870, + "createdTime": 1677181073037, + "modifiedTime": 1699993127229, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "sort": 0, + "folder": null, + "_key": "!actors.items!xT2C2Itv2XambDYp.Y7BsvdA2in8INCB5" }, { - "_id": "PnwXvKH6tQ3n7iIo", - "name": "Sorcerous Origins", + "_id": "AqOtnW8y12LokI6Z", + "name": "Hellish Resistance", "ownership": { "default": 0 }, "type": "feat", "system": { "description": { - "value": "Choose a sorcerous origin, which describes the source of your innate magical power, such as Draconic Bloodline.Your choice grants you features when you choose it at 1st level and again at 6th, 14th, and 18th level.", + "value": "You have resistance to fire damage.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -3632,7 +4191,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -3643,14 +4203,16 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, - "ability": "", + "ability": null, "actionType": "", "attackBonus": "", "chatFlavor": "", @@ -3669,10 +4231,10 @@ "scaling": "spell" }, "type": { - "value": "class", + "value": "race", "subtype": "" }, - "requirements": "Sorcerer 1", + "requirements": "Tiefling", "recharge": { "value": null, "charged": false @@ -3680,37 +4242,73 @@ }, "flags": { "dnd5e": { - "sourceId": "Compendium.dnd5e.classfeatures.cmRCL9T9UgRYOj1c", - "advancementOrigin": "Ig5YOxEOabGaTjG5.OBdl50eixXnMFiLx" + "sourceId": "Compendium.dnd5e.races.q71Pe1F8RRtEJt8Q", + "advancementOrigin": "Y7BsvdA2in8INCB5.1TyE6rcEq01VWRZc" } }, - "img": "icons/magic/air/wind-vortex-swirl-purple.webp", - "effects": [], + "img": "icons/magic/air/fog-gas-smoke-swirling-orange.webp", + "effects": [ + { + "_id": "0rAhv7npcNmDcQ3B", + "changes": [ + { + "key": "system.traits.dr.value", + "mode": 2, + "value": "fire", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "seconds": null, + "combat": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "icon": "icons/magic/air/fog-gas-smoke-swirling-orange.webp", + "label": "Hellish Resistance", + "origin": "Item.q71Pe1F8RRtEJt8Q", + "transfer": true, + "flags": {}, + "tint": null, + "sort": 0, + "_key": "!actors.items.effects!xT2C2Itv2XambDYp.AqOtnW8y12LokI6Z.0rAhv7npcNmDcQ3B" + } + ], "folder": null, "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", - "createdTime": 1661787234397, - "modifiedTime": 1691519120870, + "createdTime": 1661787234473, + "modifiedTime": 1699987317098, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.AqOtnW8y12LokI6Z" }, { - "_id": "oO4FCdIDwsr4VTb3", - "name": "Dragon Ancestor", + "_id": "dbhkmMp9qAZQNQ7s", + "name": "Infernal Legacy", "ownership": { "default": 0 }, "type": "feat", "system": { "description": { - "value": "At 1st level, you choose one type of dragon as your ancestor. The damage type associated with each dragon is used by features you gain later.DragonDamage TypeBlackAcidBlueLightningBrassFireBronzeLightningCopperAcidGoldFireGreenPoisonRedFireSilverColdWhiteColdYou can speak, read, and write Draconic. Additionally, whenever you make a Charisma check when interacting with dragons, your proficiency bonus is doubled if it applies to the check.", + "value": "You know the @Compendium[dnd5e.spells.MUO1uYN7JR1hm4dR]{Thaumaturgy} cantrip.\nWhen you reach 3rd level, you can cast the @Compendium[dnd5e.spells.22dPoeXfaaAv4K3h]{Hellish Rebuke} spell as a 2nd-level spell once with this trait and regain the ability to do so when you finish a long rest.\nWhen you reach 5th level, you can cast the @Compendium[dnd5e.spells.S7VbUetIfVT7B6Eq]{Darkness} spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -3726,7 +4324,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -3737,12 +4336,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "", @@ -3763,10 +4364,10 @@ "scaling": "spell" }, "type": { - "value": "class", + "value": "race", "subtype": "" }, - "requirements": "Draconic Bloodline 1", + "requirements": "Tiefling", "recharge": { "value": null, "charged": false @@ -3774,74 +4375,51 @@ }, "flags": { "dnd5e": { - "sourceId": "Compendium.dnd5e.classfeatures.EZsonMThTNLZq35j", - "advancementOrigin": "f3p50jjvtk2ao61n.bjbipb2oydq3zsuy" + "sourceId": "Compendium.dnd5e.races.wJc88B8OP1y1xzMw", + "advancementOrigin": "Y7BsvdA2in8INCB5.1TyE6rcEq01VWRZc" } }, - "img": "icons/creatures/abilities/dragon-fire-breath-orange.webp", - "effects": [ - { - "_id": "xI5jjbA2Dlj7L0cd", - "changes": [ - { - "key": "system.traits.languages.value", - "mode": 2, - "value": "draconic", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "icon": "icons/creatures/abilities/dragon-fire-breath-orange.webp", - "label": "Dragon Ancestor", - "origin": "Item.EZsonMThTNLZq35j", - "transfer": true, - "flags": {}, - "tint": null, - "sort": 0 - } - ], + "img": "icons/creatures/unholy/demon-fanged-horned-yellow.webp", + "effects": [], "folder": null, "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", - "createdTime": 1661787234352, - "modifiedTime": 1691519120871, + "createdTime": 1661787234475, + "modifiedTime": 1699987318799, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.dbhkmMp9qAZQNQ7s" }, { - "_id": "o0wsV8JAuT6FUDAt", - "name": "Draconic Resilience", + "_id": "FlFGTgeJM6U0I1iP", + "name": "Thaumaturgy", "ownership": { "default": 0 }, - "type": "feat", + "type": "spell", "system": { "description": { - "value": "As magic flows through your body, it causes physical traits of your dragon ancestors to emerge. At 1st level, your hit point maximum increases by 1 and increases by 1 again whenever you gain a level in this class.Additionally, parts of your skin are covered by a thin sheen of dragon-like scales. When you aren't wearing armor, your AC equals 13 + your Dexterity modifier.", + "value": "You create one of the following magical effects within range:\n\nYour voice booms up to three times as loud as normal for 1 minute.\nYou cause flames to flicker, brighten, dim, or change color for 1 minute.\nYou cause harmless tremors in the ground for 1 minute.\nYou create a sound that originates from a point of your choice within range.\nYou cause an unlocked door or window to fly open or slam shut.\nYou alter the appearance of your eyes for 1 minute.\n\nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { - "type": "", - "cost": null, + "type": "action", + "cost": 1, "condition": "" }, "duration": { - "value": "", - "units": "" + "value": "1", + "units": "minute" }, "cover": null, "crewed": false, @@ -3849,26 +4427,29 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { - "value": null, + "value": 30, "long": null, - "units": "" + "units": "ft" }, "uses": { "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, - "ability": "", - "actionType": "", + "ability": "cha", + "actionType": "util", "attackBonus": "", "chatFlavor": "", "critical": { @@ -3885,63 +4466,49 @@ "dc": null, "scaling": "spell" }, - "type": { - "value": "class", - "subtype": "" + "level": 0, + "school": "trs", + "components": { + "vocal": true, + "somatic": false, + "material": false, + "ritual": false, + "concentration": false }, - "requirements": "Draconic Bloodline 1", - "recharge": { - "value": null, - "charged": false + "materials": { + "value": "", + "consumed": false, + "cost": 0, + "supply": 0 + }, + "preparation": { + "mode": "innate", + "prepared": false + }, + "scaling": { + "mode": "none", + "formula": "" } }, + "sort": 0, "flags": { "dnd5e": { - "sourceId": "Compendium.dnd5e.classfeatures.MW1ExvBLm8Hg82aA", - "advancementOrigin": "f3p50jjvtk2ao61n.bjbipb2oydq3zsuy" + "sourceId": "Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR", + "advancementOrigin": "Y7BsvdA2in8INCB5.VUUQMvAtL25wj3vD" } }, - "img": "icons/creatures/claws/claw-scaled-red.webp", - "effects": [ - { - "_id": "Pu89Tsgy2FJjYPQi", - "changes": [ - { - "key": "system.attributes.ac.calc", - "mode": 5, - "value": "draconic", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "icon": "icons/creatures/claws/claw-scaled-red.webp", - "label": "Draconic Resilience", - "origin": "Item.MW1ExvBLm8Hg82aA", - "transfer": true, - "flags": {}, - "tint": null, - "sort": 0 - } - ], + "img": "icons/magic/fire/explosion-fireball-small-purple-orange.webp", + "effects": [], "folder": null, - "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", - "createdTime": 1661787234366, - "modifiedTime": 1691519120872, + "createdTime": 1661787234127, + "modifiedTime": 1699987303236, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xT2C2Itv2XambDYp.FlFGTgeJM6U0I1iP" } ], "effects": [ @@ -3971,7 +4538,8 @@ "transfer": false, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!xT2C2Itv2XambDYp.xI5jjbA2Dlj7L0cd" }, { "_id": "Pu89Tsgy2FJjYPQi", @@ -3999,7 +4567,37 @@ "transfer": false, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!xT2C2Itv2XambDYp.Pu89Tsgy2FJjYPQi" + }, + { + "_id": "0rAhv7npcNmDcQ3B", + "changes": [ + { + "key": "system.traits.dr.value", + "mode": 2, + "value": "fire", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": 0, + "seconds": null, + "combat": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "icon": "icons/magic/air/fog-gas-smoke-swirling-orange.webp", + "label": "Hellish Resistance", + "origin": "Compendium.dnd5e.heroes.xT2C2Itv2XambDYp.Item.AqOtnW8y12LokI6Z", + "transfer": false, + "flags": {}, + "tint": null, + "sort": 0, + "_key": "!actors.effects!xT2C2Itv2XambDYp.0rAhv7npcNmDcQ3B" } ], "folder": null, @@ -4010,10 +4608,11 @@ "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787232194, - "modifiedTime": 1691519120928, + "modifiedTime": 1699993127240, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!xT2C2Itv2XambDYp" } diff --git a/packs/src/heroes/perrin-halfling-monk.json b/packs/src/heroes/perrin-halfling-monk.json index 267b1f2166..45e81410bc 100644 --- a/packs/src/heroes/perrin-halfling-monk.json +++ b/packs/src/heroes/perrin-halfling-monk.json @@ -73,31 +73,30 @@ "bonuses": { "level": "", "overall": "" - }, - "min": 0 + } }, "init": { "ability": "", "bonus": "0" }, "movement": { - "burrow": 0, - "climb": 0, - "fly": 0, - "swim": 0, - "walk": 25, - "units": "ft", + "burrow": null, + "climb": null, + "fly": null, + "swim": null, + "walk": null, + "units": null, "hover": false }, "attunement": { "max": 3 }, "senses": { - "darkvision": 0, - "blindsight": 0, - "tremorsense": 0, - "truesight": 0, - "units": "ft", + "darkvision": null, + "blindsight": null, + "tremorsense": null, + "truesight": null, + "units": null, "special": "" }, "spellcasting": "int", @@ -114,8 +113,8 @@ "public": "" }, "alignment": "True Neutral", - "race": "Lightfoot Halfling", - "background": "", + "race": "6JOg9xYjafGcdHnY", + "background": null, "originalClass": "ckabMZ0IHcAMt16f", "xp": { "value": 0 @@ -149,9 +148,9 @@ }, "languages": { "value": [ - "common", "celestial", "draconic", + "common", "halfling" ], "custom": "" @@ -168,9 +167,7 @@ "custom": "" }, "toolProf": { - "value": [ - "art" - ], + "value": [], "custom": "" } }, @@ -327,7 +324,22 @@ } } }, - "tools": {}, + "tools": { + "art": { + "value": 1, + "ability": "int", + "bonuses": { + "check": "" + } + }, + "brewer": { + "value": 1, + "ability": "int", + "bonuses": { + "check": "" + } + } + }, "spells": { "spell1": { "value": 0, @@ -499,7 +511,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -525,7 +542,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 5, @@ -536,12 +554,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "dex", "actionType": "mwak", @@ -593,7 +613,7 @@ "two": false, "ver": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -614,7 +634,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!125qFnXvT9z0iOic.T46tnnPLPLqZD4y6" }, { "_id": "CGrcakEeW3p91uA3", @@ -626,7 +647,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -652,7 +678,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 20, @@ -663,12 +690,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "rwak", @@ -720,7 +749,7 @@ "ver": false, "lod": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -741,7 +770,8 @@ "createdTime": null, "modifiedTime": 1670011647459, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!125qFnXvT9z0iOic.CGrcakEeW3p91uA3" }, { "_id": "tk47HuZ9KhhG6oyE", @@ -753,7 +783,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 0.25, "price": { @@ -779,7 +814,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -791,12 +827,14 @@ "max": "", "per": null, "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -816,7 +854,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "ammo" + "consumableType": "ammo", + "properties": {} }, "sort": 0, "flags": {}, @@ -833,7 +872,8 @@ "createdTime": null, "modifiedTime": 1670011647467, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!125qFnXvT9z0iOic.tk47HuZ9KhhG6oyE" }, { "_id": "yGOuEfl6dj9SEEnz", @@ -845,7 +885,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -871,7 +916,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -882,12 +928,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -925,7 +973,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "sort": 0, "flags": { @@ -946,7 +994,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!125qFnXvT9z0iOic.yGOuEfl6dj9SEEnz" }, { "_id": "kv2sjsn0DjC73m10", @@ -958,7 +1007,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -984,7 +1038,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -995,12 +1050,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -1038,7 +1095,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "sort": 0, "flags": { @@ -1059,7 +1116,8 @@ "createdTime": null, "modifiedTime": 1670011640220, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!125qFnXvT9z0iOic.kv2sjsn0DjC73m10" }, { "_id": "l0vkpRTijWpKpchS", @@ -1071,7 +1129,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -1097,7 +1160,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1108,12 +1172,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -1151,7 +1217,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "sort": 0, "flags": { @@ -1172,7 +1238,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!125qFnXvT9z0iOic.l0vkpRTijWpKpchS" }, { "_id": "BZHvYtMOT8o79DUP", @@ -1184,7 +1251,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1227,7 +1299,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!125qFnXvT9z0iOic.BZHvYtMOT8o79DUP" }, { "_id": "xF9FAqgCFIgs9uYh", @@ -1239,7 +1312,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1282,7 +1360,8 @@ "createdTime": null, "modifiedTime": 1670011640234, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!125qFnXvT9z0iOic.xF9FAqgCFIgs9uYh" }, { "_id": "meouv7TcVXCuHTzN", @@ -1294,7 +1373,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 2, "price": { @@ -1320,7 +1404,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": null, @@ -1332,12 +1417,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1357,7 +1444,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -1378,7 +1466,8 @@ "createdTime": null, "modifiedTime": 1670011640246, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!125qFnXvT9z0iOic.meouv7TcVXCuHTzN" }, { "_id": "QMrV3LGEMAq9rbrk", @@ -1390,7 +1479,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1416,7 +1510,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1428,12 +1523,14 @@ "max": "4", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1453,7 +1550,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -1474,7 +1572,8 @@ "createdTime": null, "modifiedTime": 1670011640253, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!125qFnXvT9z0iOic.QMrV3LGEMAq9rbrk" }, { "_id": "83igOLLYFTQt2l2h", @@ -1486,7 +1585,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1496,7 +1600,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1517,7 +1625,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!125qFnXvT9z0iOic.83igOLLYFTQt2l2h" }, { "_id": "cOYjvBsIwGnv4yTR", @@ -1529,7 +1638,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 5, "weight": 0, "price": { @@ -1539,7 +1653,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1560,7 +1678,8 @@ "createdTime": null, "modifiedTime": 1670011640262, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!125qFnXvT9z0iOic.cOYjvBsIwGnv4yTR" }, { "_id": "tphiFNpeptbQBjm5", @@ -1572,7 +1691,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1582,7 +1706,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1603,7 +1731,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!125qFnXvT9z0iOic.tphiFNpeptbQBjm5" }, { "_id": "w6feWChZCGt6ZolS", @@ -1615,7 +1744,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -1625,7 +1759,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1646,7 +1784,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!125qFnXvT9z0iOic.w6feWChZCGt6ZolS" }, { "_id": "Tk7cT2wr9WlVBPLT", @@ -1658,7 +1797,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 0.25, "price": { @@ -1684,7 +1828,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 5, @@ -1696,12 +1841,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1721,7 +1868,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -1742,7 +1890,8 @@ "createdTime": null, "modifiedTime": 1670011647473, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!125qFnXvT9z0iOic.Tk7cT2wr9WlVBPLT" }, { "_id": "Xa8diQyGckThAtTL", @@ -1754,7 +1903,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 1, "price": { @@ -1780,7 +1934,8 @@ "value": 40, "width": null, "units": "ft", - "type": "radius" + "type": "radius", + "prompt": true }, "range": { "value": null, @@ -1792,12 +1947,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "str", "actionType": "mwak", @@ -1822,7 +1979,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -1843,7 +2001,8 @@ "createdTime": null, "modifiedTime": 1670011647480, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!125qFnXvT9z0iOic.Xa8diQyGckThAtTL" }, { "_id": "v8UvDhKdwqShRnX7", @@ -1855,7 +2014,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1865,7 +2029,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1886,7 +2054,8 @@ "createdTime": null, "modifiedTime": 1670011640283, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!125qFnXvT9z0iOic.v8UvDhKdwqShRnX7" }, { "_id": "D7cvC9lq7qUdvoUr", @@ -1898,7 +2067,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -1924,7 +2098,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1936,12 +2111,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "abil", @@ -1961,7 +2138,8 @@ "dc": 17, "scaling": "flat" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -1982,604 +2160,62 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!125qFnXvT9z0iOic.D7cvC9lq7qUdvoUr" }, { - "_id": "YdZrV1HM7x0q7t99", - "name": "Brave", - "type": "feat", + "name": "Priest", + "type": "background", "system": { "description": { - "value": "You have advantage on saving throws against being frightened.", + "value": "Skill Proficiencies: Insight, ReligionLanguages: Two of your choiceEquipment: A holy symbol, 5 sticks of incense, prayer book, vestments, a set of common clothes, and a pouch containing 15 gp.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": "", - "actionType": "", - "attackBonus": "", - "chatFlavor": "You have advantage on saving throws against being frightened.", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" + "source": { + "custom": "", + "book": "", + "page": "", + "license": "CC-BY-4.0" }, - "requirements": "Halfling", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.monsterfeatures.108q5fJnnBRoLKfe" - } + "advancement": [] }, - "img": "icons/skills/melee/unarmed-punch-fist.webp", + "img": "icons/sundries/documents/document-torn-diagram-tan.webp", "effects": [], "folder": null, + "sort": 0, "ownership": { "default": 0 }, + "flags": {}, "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } + "systemId": "dnd5e", + "systemVersion": "2.1.0", + "coreVersion": "10.291", + "createdTime": 1673040183979, + "modifiedTime": 1673040726622, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_id": "q4tr1vTU8RxtU1UZ", + "_key": "!actors.items!125qFnXvT9z0iOic.q4tr1vTU8RxtU1UZ" }, { - "_id": "LIB9TNHLEmuohMLn", - "name": "Lucky", - "type": "feat", + "_id": "ckabMZ0IHcAMt16f", + "name": "Monk", + "type": "class", + "img": "icons/magic/control/silhouette-hold-change-blue.webp", "system": { "description": { - "value": "When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.Foundry Note: Enable this feature in the Special Traits section of the character sheet.", + "value": "As a monk, you gain the following class features.\nHit Points\nHit Dice: 1d8 per monk levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per monk level after 1st\nProficiencies\nArmor: NoneWeapons: Simple weapons, shortswordsTools: Choose one type of artisan's tools or one musical instrumentSaving Throws: Strength, DexteritySkills: Choose two from Acrobatics, Athletics, History, Insight, Religion, and Stealth\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a shortsword or (b) any simple weapon\n(a) a dungeoneer's pack or (b) an explorer's pack\n10 darts\n\nMonk Advancement\n\n\n\nLevel\nProficiency Bonus\nMartial Arts\nKi Points\nUnarmored Movement\nFeatures\n\n\n\n\n1st\n+2\n1d4\n—\n—\n@Compendium[dnd5e.classfeatures.UAvV7N7T4zJhxdfI]{Unarmored Defense}, @Compendium[dnd5e.classfeatures.l50hjTxO2r0iecKw]{Martial Arts}\n\n\n2nd\n+2\n1d4\n2\n+10 ft.\n@Compendium[dnd5e.classfeatures.10b6z2W1txNkrGP7]{Ki}, @Compendium[dnd5e.classfeatures.zCeqyQ8uIPNdYJSW]{Unarmored Movement}\n\n\n3rd\n+2\n1d4\n3\n+10 ft.\n@Compendium[dnd5e.classfeatures.rtpQdX77dYWbDIOH]{Monastic Tradition}, @Compendium[dnd5e.classfeatures.mzweVbnsJPQiVkAe]{Deflect Missiles}\n\n\n4th\n+2\n1d4\n4\n+10 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}, @Compendium[dnd5e.classfeatures.KQz9bqxVkXjDl8gK]{Slow Fall}\n\n\n5th\n+3\n1d6\n5\n+10 ft.\n@Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}, @Compendium[dnd5e.classfeatures.pvRc6GAu1ok6zihC]{Stunning Strike}\n\n\n6th\n+3\n1d6\n6\n+15 ft.\n\n@Compendium[dnd5e.classfeatures.7flZKruSSu6dHg6D]{Ki-Empowered Strikes},\nMonastic Tradition feature\n\n\n\n7th\n+3\n1d6\n7\n+15 ft.\n@Compendium[dnd5e.classfeatures.a4P4DNMmH8CqSNkC]{Evasion}, @Compendium[dnd5e.classfeatures.ZmC31XKS4YNENnoc]{Stillness of Mind}\n\n\n8th\n+3\n1d6\n8\n+15 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n9th\n+4\n1d6\n9\n+15 ft.\nUnarmored Movement improvement\n\n\n10th\n+4\n1d6\n10\n+20 ft.\n@Compendium[dnd5e.classfeatures.bqWA7t9pDELbNRkp]{Purity of Body}\n\n\n11th\n+4\n1d8\n11\n+20 ft.\nMonastic Tradition feature\n\n\n12th\n+4\n1d8\n12\n+20 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n1d8\n13\n+20 ft.\n@Compendium[dnd5e.classfeatures.XjuGBeB8Y0C3A5D4]{Tongue of the Sun and Moon}\n\n\n14th\n+5\n1d8\n14\n+25 ft.\n@Compendium[dnd5e.classfeatures.7D2EkLdISwShEDlN]{Diamond Soul}\n\n\n15th\n+5\n1d8\n15\n+25 ft.\n@Compendium[dnd5e.classfeatures.gDH8PMrKvLHaNmEI]{Timeless Body}\n\n\n16th\n+5\n1d8\n16\n+25 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n1d10\n17\n+25 ft.\nMonastic Tradition feature\n\n\n18th\n+6\n1d10\n18\n+30 ft.\n@Compendium[dnd5e.classfeatures.3jwFt3hSqDswBlOH]{Empty Body}\n\n\n19th\n+6\n1d10\n19\n+30 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\n1d10\n20\n+30 ft.\n@Compendium[dnd5e.classfeatures.mQNPg89YIs7g5tG4]{Perfect Self}\n\n\n\nMonastic Traditions\nThree traditions of monastic pursuit are common in the monasteries scattered across the multiverse. Most monasteries practice one tradition exclusively, but a few honor the three traditions and instruct each monk according to his or her aptitude and interest. All three traditions rely on the same basic techniques, diverging as the student grows more adept. Thus, a monk need choose a tradition only upon reaching 3rd level.\n@Compendium[dnd5e.subclasses.IvlpKMXX3PmW1NY2]{Way of the Open Hand}", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" }, - "requirements": "Halfling", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.races.LOMdcNAGWh5xpfm4" - } - }, - "img": "icons/sundries/gaming/dice-runed-brown.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } - }, - { - "_id": "MEbwGBWDnCYWAcKu", - "name": "Naturally Stealthy", - "type": "feat", - "system": { - "description": { - "value": "You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": "", - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" - }, - "requirements": "Lightfoot", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.races.GWPjKFeIthBBeCFJ" - } - }, - "img": "icons/magic/perception/silhouette-stealth-shadow.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } - }, - { - "_id": "1wrJ898tmYcUUj5C", - "name": "Halfling Nimbleness", - "type": "feat", - "system": { - "description": { - "value": "You can move through the space of any creature that is of a size larger than yours.", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": "", - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" - }, - "requirements": "Halfling", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.races.PqxZgcJzp1VVgP8t" - } - }, - "img": "icons/skills/movement/feet-winged-boots-brown.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } - }, - { - "_id": "f2nWYA1kRgCTcTtR", - "name": "Lightfoot", - "type": "feat", - "system": { - "description": { - "value": "\n\n\nAs a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others. \n \nLightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life. Ability Score Increase. Your Charisma score increases by 1.Naturally Stealthy. @Compendium[dnd5e.races.GWPjKFeIthBBeCFJ]{Naturally Stealthy} You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.\n\n\n", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" - }, - "requirements": "Halfling", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": {}, - "img": "icons/magic/lightning/bolt-forked-teal.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } - }, - { - "_id": "KROifaAhldMdTVyB", - "name": "Halfling", - "type": "feat", - "system": { - "description": { - "value": "\n\n\nYour halfling character has a number of traits in common with all other halflings. Ability Score Increase. Your Dexterity score increases by 2.Age. A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.Alignment. Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.Size. Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.Speed. Your base walking speed is 25 feet.Lucky. @Compendium[dnd5e.races.LOMdcNAGWh5xpfm4]{Lucky} When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.Brave. @Compendium[dnd5e.races.7Yoo9hG0hfPSmBoC]{Brave} You have advantage on saving throws against being frightened.\n\n\n\n\n\n\nHalfling Nimbleness. @Compendium[dnd5e.races.PqxZgcJzp1VVgP8t]{Halfling Nimbleness} You can move through the space of any creature that is of a size larger than yours.Languages. You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.\n\n\n", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" - }, - "requirements": "", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.races.GH2dNne2bt1NjcJk" - } - }, - "img": "icons/magic/lightning/bolt-forked-large-teal.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } - }, - { - "name": "Priest", - "type": "background", - "system": { - "description": { - "value": "Skill Proficiencies: Insight, ReligionLanguages: Two of your choiceEquipment: A holy symbol, 5 sticks of incense, prayer book, vestments, a set of common clothes, and a pouch containing 15 gp.", - "chat": "", - "unidentified": "" - }, - "source": "", - "advancement": [] - }, - "img": "icons/sundries/documents/document-torn-diagram-tan.webp", - "effects": [], - "folder": null, - "sort": 0, - "ownership": { - "default": 0 - }, - "flags": {}, - "_stats": { - "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", - "createdTime": 1673040183979, - "modifiedTime": 1673040726622, - "lastModifiedBy": "dnd5ebuilder0000" - }, - "_id": "q4tr1vTU8RxtU1UZ" - }, - { - "_id": "ckabMZ0IHcAMt16f", - "name": "Monk", - "type": "class", - "img": "icons/magic/control/silhouette-hold-change-blue.webp", - "system": { - "description": { - "value": "As a monk, you gain the following class features.\nHit Points\nHit Dice: 1d8 per monk levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per monk level after 1st\nProficiencies\nArmor: NoneWeapons: Simple weapons, shortswordsTools: Choose one type of artisan's tools or one musical instrumentSaving Throws: Strength, DexteritySkills: Choose two from Acrobatics, Athletics, History, Insight, Religion, and Stealth\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a shortsword or (b) any simple weapon\n(a) a dungeoneer's pack or (b) an explorer's pack\n10 darts\n\nMonk Advancement\n\n\n\nLevel\nProficiency Bonus\nMartial Arts\nKi Points\nUnarmored Movement\nFeatures\n\n\n\n\n1st\n+2\n1d4\n—\n—\n@Compendium[dnd5e.classfeatures.UAvV7N7T4zJhxdfI]{Unarmored Defense}, @Compendium[dnd5e.classfeatures.l50hjTxO2r0iecKw]{Martial Arts}\n\n\n2nd\n+2\n1d4\n2\n+10 ft.\n@Compendium[dnd5e.classfeatures.10b6z2W1txNkrGP7]{Ki}, @Compendium[dnd5e.classfeatures.zCeqyQ8uIPNdYJSW]{Unarmored Movement}\n\n\n3rd\n+2\n1d4\n3\n+10 ft.\n@Compendium[dnd5e.classfeatures.rtpQdX77dYWbDIOH]{Monastic Tradition}, @Compendium[dnd5e.classfeatures.mzweVbnsJPQiVkAe]{Deflect Missiles}\n\n\n4th\n+2\n1d4\n4\n+10 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}, @Compendium[dnd5e.classfeatures.KQz9bqxVkXjDl8gK]{Slow Fall}\n\n\n5th\n+3\n1d6\n5\n+10 ft.\n@Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}, @Compendium[dnd5e.classfeatures.pvRc6GAu1ok6zihC]{Stunning Strike}\n\n\n6th\n+3\n1d6\n6\n+15 ft.\n\n@Compendium[dnd5e.classfeatures.7flZKruSSu6dHg6D]{Ki-Empowered Strikes},\nMonastic Tradition feature\n\n\n\n7th\n+3\n1d6\n7\n+15 ft.\n@Compendium[dnd5e.classfeatures.a4P4DNMmH8CqSNkC]{Evasion}, @Compendium[dnd5e.classfeatures.ZmC31XKS4YNENnoc]{Stillness of Mind}\n\n\n8th\n+3\n1d6\n8\n+15 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n9th\n+4\n1d6\n9\n+15 ft.\nUnarmored Movement improvement\n\n\n10th\n+4\n1d6\n10\n+20 ft.\n@Compendium[dnd5e.classfeatures.bqWA7t9pDELbNRkp]{Purity of Body}\n\n\n11th\n+4\n1d8\n11\n+20 ft.\nMonastic Tradition feature\n\n\n12th\n+4\n1d8\n12\n+20 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n1d8\n13\n+20 ft.\n@Compendium[dnd5e.classfeatures.XjuGBeB8Y0C3A5D4]{Tongue of the Sun and Moon}\n\n\n14th\n+5\n1d8\n14\n+25 ft.\n@Compendium[dnd5e.classfeatures.7D2EkLdISwShEDlN]{Diamond Soul}\n\n\n15th\n+5\n1d8\n15\n+25 ft.\n@Compendium[dnd5e.classfeatures.gDH8PMrKvLHaNmEI]{Timeless Body}\n\n\n16th\n+5\n1d8\n16\n+25 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n1d10\n17\n+25 ft.\nMonastic Tradition feature\n\n\n18th\n+6\n1d10\n18\n+30 ft.\n@Compendium[dnd5e.classfeatures.3jwFt3hSqDswBlOH]{Empty Body}\n\n\n19th\n+6\n1d10\n19\n+30 ft.\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\n1d10\n20\n+30 ft.\n@Compendium[dnd5e.classfeatures.mQNPg89YIs7g5tG4]{Perfect Self}\n\n\n\nMonastic Traditions\nThree traditions of monastic pursuit are common in the monasteries scattered across the multiverse. Most monasteries practice one tradition exclusively, but a few honor the three traditions and instruct each monk according to his or her aptitude and interest. All three traditions rely on the same basic techniques, diverging as the student grows more adept. Thus, a monk need choose a tradition only upon reaching 3rd level.\n@Compendium[dnd5e.subclasses.IvlpKMXX3PmW1NY2]{Way of the Open Hand}", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", "identifier": "monk", "levels": 1, "hitDice": "d8", @@ -2878,7 +2514,749 @@ "type": "ItemGrant", "configuration": { "items": [ - "Compendium.dnd5e.classfeatures.mQNPg89YIs7g5tG4" + "Compendium.dnd5e.classfeatures.mQNPg89YIs7g5tG4" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": {}, + "level": 20, + "title": "Features", + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "7eLazNU7i2X6HmnN" + }, + { + "type": "ScaleValue", + "configuration": { + "identifier": "die", + "type": "dice", + "distance": { + "units": "" + }, + "scale": { + "1": { + "number": null, + "faces": 4 + }, + "5": { + "number": null, + "faces": 6 + }, + "11": { + "number": null, + "faces": 8 + }, + "17": { + "number": null, + "faces": 10 + } + } + }, + "value": {}, + "title": "Martial Arts Die", + "icon": "systems/dnd5e/icons/svg/scale-value.svg", + "_id": "HC3Vfbq48VlD7axp" + }, + { + "type": "ScaleValue", + "configuration": { + "identifier": "unarmored-movement", + "type": "distance", + "distance": { + "units": "ft" + }, + "scale": { + "2": { + "value": 10 + }, + "6": { + "value": 15 + }, + "10": { + "value": 20 + }, + "14": { + "value": 25 + }, + "18": { + "value": 30 + } + } + }, + "value": {}, + "title": "Unarmored Movement", + "icon": "systems/dnd5e/icons/svg/scale-value.svg", + "_id": "t6SOqiBtpw0OG5z2" + }, + { + "type": "AbilityScoreImprovement", + "configuration": { + "points": 2, + "fixed": { + "str": 0, + "dex": 0, + "con": 0, + "int": 0, + "wis": 0, + "cha": 0 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 4, + "title": "Ability Score Improvement", + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "9Xe0WAjYctJkKvPJ" + }, + { + "type": "AbilityScoreImprovement", + "configuration": { + "points": 2, + "fixed": { + "str": 0, + "dex": 0, + "con": 0, + "int": 0, + "wis": 0, + "cha": 0 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 8, + "title": "Ability Score Improvement", + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "HQCl6JtoovumbpGT" + }, + { + "type": "AbilityScoreImprovement", + "configuration": { + "points": 2, + "fixed": { + "str": 0, + "dex": 0, + "con": 0, + "int": 0, + "wis": 0, + "cha": 0 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 12, + "title": "Ability Score Improvement", + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "EujtBfzqpRexJo2t" + }, + { + "type": "AbilityScoreImprovement", + "configuration": { + "points": 2, + "fixed": { + "str": 0, + "dex": 0, + "con": 0, + "int": 0, + "wis": 0, + "cha": 0 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 16, + "title": "Ability Score Improvement", + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "4xT99qK8dYQG95qn" + }, + { + "_id": "puDaUsYrlks0z5gm", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 2, + "fixed": { + "str": 0, + "dex": 0, + "con": 0, + "int": 0, + "wis": 0, + "cha": 0 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 19, + "title": "" + }, + { + "_id": "mmAxx3U7FvXNAcKc", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim", + "weapon:mar:shortsword" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": { + "chosen": [ + "weapon:sim", + "weapon:mar:shortsword" + ] + } + }, + { + "_id": "QPXy59CQGY9HB0c3", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 1, + "pool": [ + "tool:art:*", + "tool:music:*" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "tool:art:brewer" + ] + } + }, + { + "_id": "4M8MQ1E64zbcRg6B", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:str", + "saves:dex" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "saves:str", + "saves:dex" + ] + } + }, + { + "_id": "7HRRCPk80Ng2Evdx", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:acr", + "skills:ath", + "skills:his", + "skills:ins", + "skills:rel", + "skills:ste" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "skills:acr", + "skills:ath" + ] + } + }, + { + "_id": "BQWHr3mt5flvkfIj", + "type": "Trait", + "configuration": { + "hint": "Your mastery of the ki flowing through you makes you immune to disease and poison.", + "mode": "default", + "allowReplacements": false, + "grants": [ + "di:poison", + "ci:diseased", + "ci:poisoned" + ], + "choices": [] + }, + "level": 10, + "title": "Purity of Body", + "value": {} + } + ], + "spellcasting": { + "progression": "none", + "ability": "" + } + }, + "effects": [], + "folder": null, + "sort": 0, + "ownership": { + "default": 0 + }, + "flags": { + "core": { + "sourceId": "Compendium.dnd5e.classes.6VoZrWxhOEKGYhnq" + } + }, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234277, + "modifiedTime": 1699993223540, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!125qFnXvT9z0iOic.ckabMZ0IHcAMt16f" + }, + { + "_id": "lVsKpEajeU5R83a5", + "name": "Unarmored Defense (Monk)", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "Beginning at 1st Level, while you are wearing no armor and not wielding a Shield, your AC equals 10 + your Dexterity modifier + your Wisdom modifier.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "crewed": false, + "target": { + "value": null, + "width": null, + "units": "", + "type": "", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null, + "scale": false + }, + "ability": "", + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" + }, + "type": { + "value": "class", + "subtype": "" + }, + "requirements": "Monk 1", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": { + "dnd5e": { + "sourceId": "Compendium.dnd5e.classfeatures.UAvV7N7T4zJhxdfI", + "advancementOrigin": "ckabMZ0IHcAMt16f.x8WwDkBverY8pdNE" + } + }, + "img": "icons/magic/control/silhouette-hold-change-blue.webp", + "effects": [ + { + "_id": "R5ro4AuNjcdWD56O", + "changes": [ + { + "key": "system.attributes.ac.calc", + "mode": 5, + "value": "unarmoredMonk", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "seconds": null, + "combat": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "icon": "icons/magic/control/silhouette-hold-change-blue.webp", + "label": "Unarmored Defense", + "origin": "Item.cOdcNWy4hII029DT", + "transfer": true, + "flags": {}, + "tint": null, + "sort": 0, + "_key": "!actors.items.effects!125qFnXvT9z0iOic.lVsKpEajeU5R83a5.R5ro4AuNjcdWD56O" + } + ], + "folder": null, + "sort": 0, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234382, + "modifiedTime": 1699987416952, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!125qFnXvT9z0iOic.lVsKpEajeU5R83a5" + }, + { + "_id": "rppGdpjLLaRF9F2G", + "name": "Martial Arts", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "At 1st level, your practice of martial arts gives you mastery of combat styles that use and monk weapons, which are shortswords and any simple melee weapons that don't have the two-handed or heavy property. You gain the following benefits while you are unarmed or wielding only monk weapons and you aren't wearing armor or wielding a shield:\n\n\nYou can use Dexterity instead of Strength for the attack and damage rolls of your unarmed strikes and monk weapons.\n\n\nYou can roll a d4 in place of the normal damage of your unarmed strike or monk weapon. This die changes as you gain monk levels, as shown in the Martial Arts column of the Monk table.\n\n\nWhen you use the Attack action with an unarmed strike or a monk weapon on your turn, you can make one unarmed strike as a bonus action. For example, if you take the Attack action and attack with a quarterstaff, you can also make an unarmed strike as a bonus action, assuming you haven't already taken a bonus action this turn.\n\n\nCertain monasteries use specialized forms of the monk weapons. For example, you might use a club that is two lengths of wood connected by a short chain (called a nunchaku) or a sickle with a shorter, straighter blade (called a kama). Whatever name you use for a monk weapon, you can use the game statistics provided for the weapon.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "crewed": false, + "target": { + "value": 5, + "width": null, + "units": "ft", + "type": "", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null, + "scale": false + }, + "ability": "dex", + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" + }, + "type": { + "value": "class", + "subtype": "" + }, + "requirements": "Monk 1", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": { + "dnd5e": { + "sourceId": "Compendium.dnd5e.classfeatures.l50hjTxO2r0iecKw", + "advancementOrigin": "ckabMZ0IHcAMt16f.x8WwDkBverY8pdNE" + } + }, + "img": "icons/skills/melee/unarmed-punch-fist.webp", + "effects": [], + "folder": null, + "sort": 0, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234416, + "modifiedTime": 1699987416952, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!125qFnXvT9z0iOic.rppGdpjLLaRF9F2G" + }, + { + "_id": "jVIh24qThOvMskfW", + "name": "Unarmed Strike (Monk)", + "type": "weapon", + "img": "icons/skills/melee/unarmed-punch-fist-yellow-red.webp", + "system": { + "description": { + "value": "", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "quantity": 1, + "weight": 0, + "price": { + "value": 0, + "denomination": "gp" + }, + "attunement": 0, + "equipped": false, + "rarity": "", + "identified": true, + "activation": { + "type": "action", + "cost": 1, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "crewed": false, + "target": { + "value": null, + "width": null, + "units": "", + "type": "", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null, + "scale": false + }, + "ability": "", + "actionType": "mwak", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [ + [ + "1@scale.monk.die + @mod", + "bludgeoning" + ] + ], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" + }, + "armor": { + "value": 10 + }, + "hp": { + "value": 0, + "max": 0, + "dt": null, + "conditions": "" + }, + "weaponType": "natural", + "baseItem": "", + "properties": { + "ada": false, + "amm": false, + "fin": true, + "fir": false, + "foc": false, + "hvy": false, + "lgt": false, + "lod": false, + "mgc": false, + "rch": false, + "rel": false, + "ret": false, + "sil": false, + "spc": false, + "thr": false, + "two": false, + "ver": false + }, + "proficient": null + }, + "effects": [], + "folder": null, + "sort": 0, + "ownership": { + "default": 0 + }, + "flags": { + "dnd5e": { + "sourceId": "Compendium.dnd5e.classfeatures.eGxoNmSMWKNzChCO", + "advancementOrigin": "ckabMZ0IHcAMt16f.x8WwDkBverY8pdNE" + } + }, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.2.2", + "coreVersion": "10.303", + "createdTime": 1661787234400, + "modifiedTime": 1691519134478, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!125qFnXvT9z0iOic.jVIh24qThOvMskfW" + }, + { + "_id": "6JOg9xYjafGcdHnY", + "name": "Lightfoot Halfling", + "type": "race", + "img": "icons/equipment/feet/shoes-leather-simple-brown.webp", + "system": { + "description": { + "value": "Your halfling character has a number of traits in common with all other halflings.Ability Score Increase. Your Dexterity score increases by 2.Age. A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.Alignment. Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.Size. Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.Speed. Your base walking speed is 25 feet.Lucky. When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.Brave. You have advantage on saving throws against being frightened.Halfling Nimbleness. You can move through the space of any creature that is of a size larger than yours.Languages. You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.LightfootAs a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others.Lightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life.Ability Score Increase. Your Charisma score increases by 1.Naturally Stealthy. You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "identifier": "lightfoot-halfling", + "advancement": [ + { + "_id": "nInhIgkbzzJTdm8F", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.races.LOMdcNAGWh5xpfm4", + "Compendium.dnd5e.races.7Yoo9hG0hfPSmBoC", + "Compendium.dnd5e.races.PqxZgcJzp1VVgP8t", + "Compendium.dnd5e.races.GWPjKFeIthBBeCFJ" ], "optional": false, "spell": { @@ -2890,235 +3268,143 @@ } } }, - "value": {}, - "level": 20, - "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg", - "_id": "7eLazNU7i2X6HmnN" - }, - { - "type": "ScaleValue", - "configuration": { - "identifier": "die", - "type": "dice", - "distance": { - "units": "" - }, - "scale": { - "1": { - "number": null, - "faces": 4 - }, - "5": { - "number": null, - "faces": 6 - }, - "11": { - "number": null, - "faces": 8 - }, - "17": { - "number": null, - "faces": 10 - } - } - }, - "value": {}, - "title": "Martial Arts Die", - "icon": "systems/dnd5e/icons/svg/scale-value.svg", - "_id": "HC3Vfbq48VlD7axp" - }, - { - "type": "ScaleValue", - "configuration": { - "identifier": "unarmored-movement", - "type": "distance", - "distance": { - "units": "ft" - }, - "scale": { - "2": { - "value": 10 - }, - "6": { - "value": 15 - }, - "10": { - "value": 20 - }, - "14": { - "value": 25 - }, - "18": { - "value": 30 - } - } - }, - "value": {}, - "title": "Unarmored Movement", - "icon": "systems/dnd5e/icons/svg/scale-value.svg", - "_id": "t6SOqiBtpw0OG5z2" - }, - { - "type": "AbilityScoreImprovement", - "configuration": { - "points": 2, - "fixed": { - "str": 0, - "dex": 0, - "con": 0, - "int": 0, - "wis": 0, - "cha": 0 - } - }, "value": { - "type": "asi" - }, - "level": 4, - "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", - "_id": "9Xe0WAjYctJkKvPJ" - }, - { - "type": "AbilityScoreImprovement", - "configuration": { - "points": 2, - "fixed": { - "str": 0, - "dex": 0, - "con": 0, - "int": 0, - "wis": 0, - "cha": 0 + "added": { + "tUz8GlMnsZW70sFM": "Compendium.dnd5e.races.LOMdcNAGWh5xpfm4", + "CAVO88Jxjnm928MR": "Compendium.dnd5e.races.7Yoo9hG0hfPSmBoC", + "4Q1Mlm3NtMlhLMF9": "Compendium.dnd5e.races.PqxZgcJzp1VVgP8t", + "ddEW1gRmYuvAkrU2": "Compendium.dnd5e.races.GWPjKFeIthBBeCFJ" } }, - "value": { - "type": "asi" - }, - "level": 8, - "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", - "_id": "HQCl6JtoovumbpGT" + "level": 0, + "title": "" }, { + "_id": "Z9hvZFkWUNvowbQX", "type": "AbilityScoreImprovement", "configuration": { - "points": 2, + "points": 0, "fixed": { "str": 0, - "dex": 0, + "dex": 2, "con": 0, "int": 0, "wis": 0, - "cha": 0 - } + "cha": 1 + }, + "cap": 2 }, "value": { - "type": "asi" + "type": "asi", + "assignments": { + "dex": 2, + "cha": 1 + } }, - "level": 12, - "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", - "_id": "EujtBfzqpRexJo2t" + "level": 0, + "title": "" }, { - "type": "AbilityScoreImprovement", + "_id": "hv2bcANK5jEJZaAb", + "type": "Size", "configuration": { - "points": 2, - "fixed": { - "str": 0, - "dex": 0, - "con": 0, - "int": 0, - "wis": 0, - "cha": 0 - } + "hint": "Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.", + "sizes": [ + "sm" + ] }, "value": { - "type": "asi" + "size": "sm" }, - "level": 16, - "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", - "_id": "4xT99qK8dYQG95qn" + "level": 1, + "title": "" }, { - "_id": "puDaUsYrlks0z5gm", - "type": "AbilityScoreImprovement", + "_id": "nGwMjsfNU6CXHk3A", + "type": "Trait", "configuration": { - "points": 2, - "fixed": { - "str": 0, - "dex": 0, - "con": 0, - "int": 0, - "wis": 0, - "cha": 0 - } - }, - "value": { - "type": "asi" - }, - "level": 19, - "title": "" + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:standard:common", + "languages:standard:halfling" + ], + "choices": [] + }, + "level": 0, + "title": "", + "value": { + "chosen": [ + "languages:standard:common", + "languages:standard:halfling" + ] + } } ], - "saves": [ - "str", - "dex" - ], - "skills": { - "number": 2, - "choices": [ - "acr", - "ath", - "his", - "ins", - "rel", - "ste" - ], - "value": [] + "movement": { + "walk": 25, + "burrow": 0, + "climb": 0, + "fly": 0, + "swim": 0, + "units": "ft", + "hover": false }, - "spellcasting": { - "progression": "none", - "ability": "" + "type": { + "subtype": "halfling", + "value": "humanoid", + "custom": "" + }, + "senses": { + "darkvision": 0, + "blindsight": 0, + "tremorsense": 0, + "truesight": 0, + "units": "ft", + "special": "" } }, "effects": [], - "folder": null, - "sort": 0, "ownership": { "default": 0 }, "flags": { "core": { - "sourceId": "Compendium.dnd5e.classes.6VoZrWxhOEKGYhnq" + "sourceId": "Compendium.dnd5e.races.ZgYBjYYfiUstQD6f" } }, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", - "createdTime": 1661787234277, - "modifiedTime": 1691519134474, + "createdTime": 1677178323356, + "modifiedTime": 1699993223540, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "sort": 0, + "folder": null, + "_key": "!actors.items!125qFnXvT9z0iOic.6JOg9xYjafGcdHnY" }, { - "_id": "lVsKpEajeU5R83a5", - "name": "Unarmored Defense (Monk)", + "_id": "tUz8GlMnsZW70sFM", + "name": "Lucky", "ownership": { "default": 0 }, "type": "feat", "system": { "description": { - "value": "Beginning at 1st Level, while you are wearing no armor and not wielding a Shield, your AC equals 10 + your Dexterity modifier + your Wisdom modifier.", + "value": "When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.Foundry NoteThis property can be enabled on your character sheet in the Special Traits configuration on the Attributes tab.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -3134,7 +3420,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -3145,14 +3432,16 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, - "ability": "", + "ability": null, "actionType": "", "attackBonus": "", "chatFlavor": "", @@ -3171,10 +3460,10 @@ "scaling": "spell" }, "type": { - "value": "class", + "value": "race", "subtype": "" }, - "requirements": "Monk 1", + "requirements": "Halfling", "recharge": { "value": null, "charged": false @@ -3182,19 +3471,19 @@ }, "flags": { "dnd5e": { - "sourceId": "Compendium.dnd5e.classfeatures.UAvV7N7T4zJhxdfI", - "advancementOrigin": "ckabMZ0IHcAMt16f.x8WwDkBverY8pdNE" + "sourceId": "Compendium.dnd5e.races.LOMdcNAGWh5xpfm4", + "advancementOrigin": "6JOg9xYjafGcdHnY.nInhIgkbzzJTdm8F" } }, - "img": "icons/magic/control/silhouette-hold-change-blue.webp", + "img": "icons/sundries/gaming/dice-runed-brown.webp", "effects": [ { - "_id": "R5ro4AuNjcdWD56O", + "_id": "3ZXTUDl62zDpvpai", "changes": [ { - "key": "system.attributes.ac.calc", + "key": "flags.dnd5e.halflingLucky", "mode": 5, - "value": "unarmoredMonk", + "value": "true", "priority": null } ], @@ -3208,40 +3497,47 @@ "startRound": null, "startTurn": null }, - "icon": "icons/magic/control/silhouette-hold-change-blue.webp", - "label": "Unarmored Defense", - "origin": "Item.cOdcNWy4hII029DT", + "icon": "icons/sundries/gaming/dice-runed-brown.webp", + "label": "Lucky", + "origin": "Item.LOMdcNAGWh5xpfm4", "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!actors.items.effects!125qFnXvT9z0iOic.tUz8GlMnsZW70sFM.3ZXTUDl62zDpvpai" } ], "folder": null, "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", - "createdTime": 1661787234382, - "modifiedTime": 1691519134476, + "createdTime": 1661787234467, + "modifiedTime": 1699987416952, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!125qFnXvT9z0iOic.tUz8GlMnsZW70sFM" }, { - "_id": "rppGdpjLLaRF9F2G", - "name": "Martial Arts", + "_id": "CAVO88Jxjnm928MR", + "name": "Brave", "ownership": { "default": 0 }, "type": "feat", "system": { "description": { - "value": "At 1st level, your practice of martial arts gives you mastery of combat styles that use and monk weapons, which are shortswords and any simple melee weapons that don't have the two-handed or heavy property. You gain the following benefits while you are unarmed or wielding only monk weapons and you aren't wearing armor or wielding a shield:\n\n\nYou can use Dexterity instead of Strength for the attack and damage rolls of your unarmed strikes and monk weapons.\n\n\nYou can roll a d4 in place of the normal damage of your unarmed strike or monk weapon. This die changes as you gain monk levels, as shown in the Martial Arts column of the Monk table.\n\n\nWhen you use the Attack action with an unarmed strike or a monk weapon on your turn, you can make one unarmed strike as a bonus action. For example, if you take the Attack action and attack with a quarterstaff, you can also make an unarmed strike as a bonus action, assuming you haven't already taken a bonus action this turn.\n\n\nCertain monasteries use specialized forms of the monk weapons. For example, you might use a club that is two lengths of wood connected by a short chain (called a nunchaku) or a sickle with a shorter, straighter blade (called a kama). Whatever name you use for a monk weapon, you can use the game statistics provided for the weapon.", + "value": "You have advantage on saving throws against being frightened.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -3254,10 +3550,11 @@ "cover": null, "crewed": false, "target": { - "value": 5, + "value": null, "width": null, - "units": "ft", - "type": "" + "units": "", + "type": "", + "prompt": true }, "range": { "value": null, @@ -3268,17 +3565,19 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, - "ability": "dex", + "ability": "", "actionType": "", "attackBonus": "", - "chatFlavor": "", + "chatFlavor": "You have advantage on saving throws against being frightened.", "critical": { "threshold": null, "damage": "" @@ -3294,10 +3593,10 @@ "scaling": "spell" }, "type": { - "value": "class", + "value": "race", "subtype": "" }, - "requirements": "Monk 1", + "requirements": "Halfling", "recharge": { "value": null, "charged": false @@ -3305,8 +3604,8 @@ }, "flags": { "dnd5e": { - "sourceId": "Compendium.dnd5e.classfeatures.l50hjTxO2r0iecKw", - "advancementOrigin": "ckabMZ0IHcAMt16f.x8WwDkBverY8pdNE" + "sourceId": "Compendium.dnd5e.races.7Yoo9hG0hfPSmBoC", + "advancementOrigin": "6JOg9xYjafGcdHnY.nInhIgkbzzJTdm8F" } }, "img": "icons/skills/melee/unarmed-punch-fist.webp", @@ -3315,38 +3614,36 @@ "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", - "createdTime": 1661787234416, - "modifiedTime": 1691519134477, + "createdTime": 1661787234462, + "modifiedTime": 1699987417890, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!125qFnXvT9z0iOic.CAVO88Jxjnm928MR" }, { - "_id": "jVIh24qThOvMskfW", - "name": "Unarmed Strike (Monk)", - "type": "weapon", - "img": "icons/skills/melee/unarmed-punch-fist-yellow-red.webp", + "_id": "4Q1Mlm3NtMlhLMF9", + "name": "Halfling Nimbleness", + "ownership": { + "default": 0 + }, + "type": "feat", "system": { "description": { - "value": "", + "value": "You can move through the space of any creature that is of a size larger than yours.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "quantity": 1, - "weight": 0, - "price": { - "value": 0, - "denomination": "gp" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" }, - "attunement": 0, - "equipped": false, - "rarity": "", - "identified": true, "activation": { - "type": "action", - "cost": 1, + "type": "", + "cost": null, "condition": "" }, "duration": { @@ -3359,7 +3656,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -3370,15 +3668,17 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", - "actionType": "mwak", + "actionType": "", "attackBonus": "", "chatFlavor": "", "critical": { @@ -3386,12 +3686,7 @@ "damage": "" }, "damage": { - "parts": [ - [ - "1@scale.monk.die + @mod", - "bludgeoning" - ] - ], + "parts": [], "versatile": "" }, "formula": "", @@ -3400,58 +3695,138 @@ "dc": null, "scaling": "spell" }, - "armor": { - "value": 10 - }, - "hp": { - "value": 0, - "max": 0, - "dt": null, - "conditions": "" - }, - "weaponType": "natural", - "baseItem": "", - "properties": { - "ada": false, - "amm": false, - "fin": true, - "fir": false, - "foc": false, - "hvy": false, - "lgt": false, - "lod": false, - "mgc": false, - "rch": false, - "rel": false, - "ret": false, - "sil": false, - "spc": false, - "thr": false, - "two": false, - "ver": false + "type": { + "value": "race", + "subtype": "" }, - "proficient": 1 + "requirements": "Halfling", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": { + "dnd5e": { + "sourceId": "Compendium.dnd5e.races.PqxZgcJzp1VVgP8t", + "advancementOrigin": "6JOg9xYjafGcdHnY.nInhIgkbzzJTdm8F" + } }, + "img": "icons/skills/movement/feet-winged-boots-brown.webp", "effects": [], "folder": null, "sort": 0, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234468, + "modifiedTime": 1699987418714, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!125qFnXvT9z0iOic.4Q1Mlm3NtMlhLMF9" + }, + { + "_id": "ddEW1gRmYuvAkrU2", + "name": "Naturally Stealthy", "ownership": { "default": 0 }, + "type": "feat", + "system": { + "description": { + "value": "You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "crewed": false, + "target": { + "value": null, + "width": null, + "units": "", + "type": "", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null, + "scale": false + }, + "ability": "", + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "Lightfoot Halfling", + "recharge": { + "value": null, + "charged": false + } + }, "flags": { "dnd5e": { - "sourceId": "Compendium.dnd5e.classfeatures.eGxoNmSMWKNzChCO", - "advancementOrigin": "ckabMZ0IHcAMt16f.x8WwDkBverY8pdNE" + "sourceId": "Compendium.dnd5e.races.GWPjKFeIthBBeCFJ", + "advancementOrigin": "6JOg9xYjafGcdHnY.nInhIgkbzzJTdm8F" } }, + "img": "icons/magic/perception/silhouette-stealth-shadow.webp", + "effects": [], + "folder": null, + "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", - "createdTime": 1661787234400, - "modifiedTime": 1691519134478, + "createdTime": 1661787234465, + "modifiedTime": 1699987419669, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!125qFnXvT9z0iOic.ddEW1gRmYuvAkrU2" } ], "effects": [ @@ -3481,7 +3856,37 @@ "transfer": false, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!125qFnXvT9z0iOic.R5ro4AuNjcdWD56O" + }, + { + "_id": "3ZXTUDl62zDpvpai", + "changes": [ + { + "key": "flags.dnd5e.halflingLucky", + "mode": 5, + "value": "true", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": 0, + "seconds": null, + "combat": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "icon": "icons/sundries/gaming/dice-runed-brown.webp", + "label": "Lucky", + "origin": "Compendium.dnd5e.heroes.125qFnXvT9z0iOic.Item.tUz8GlMnsZW70sFM", + "transfer": false, + "flags": {}, + "tint": null, + "sort": 0, + "_key": "!actors.effects!125qFnXvT9z0iOic.3ZXTUDl62zDpvpai" } ], "folder": null, @@ -3497,10 +3902,11 @@ "_id": "125qFnXvT9z0iOic", "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787232144, - "modifiedTime": 1691519134517, + "modifiedTime": 1699993223554, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!125qFnXvT9z0iOic" } diff --git a/packs/src/heroes/quillathe-elf-ranger.json b/packs/src/heroes/quillathe-elf-ranger.json index cc05790674..d9ee7c2dca 100644 --- a/packs/src/heroes/quillathe-elf-ranger.json +++ b/packs/src/heroes/quillathe-elf-ranger.json @@ -73,31 +73,30 @@ "bonuses": { "level": "", "overall": "" - }, - "min": 0 + } }, "init": { "ability": "", "bonus": "0" }, "movement": { - "burrow": 0, - "climb": 0, - "fly": 0, - "swim": 0, - "walk": 30, - "units": "ft", + "burrow": null, + "climb": null, + "fly": null, + "swim": null, + "walk": null, + "units": null, "hover": false }, "attunement": { "max": 3 }, "senses": { - "darkvision": 60, - "blindsight": 0, - "tremorsense": 0, - "truesight": 0, - "units": "ft", + "darkvision": null, + "blindsight": null, + "tremorsense": null, + "truesight": null, + "units": null, "special": "" }, "spellcasting": "wis", @@ -110,12 +109,12 @@ }, "details": { "biography": { - "value": "Quillathe cleanses monsters from her woods as a hobby, but now a new force menaces her land and she must band with adventurers to defeat it.\n", + "value": "Quillathe cleanses monsters from her woods as a hobby, but now a new force menaces her land and she must band with adventurers to defeat it.", "public": "" }, "alignment": "Chaotic Neutral", - "race": "High Elf", - "background": "", + "race": "jp4BUcAipDi7GIQQ", + "background": null, "originalClass": "Apx6i4A5a7JKqaGi", "xp": { "value": 0 @@ -158,7 +157,11 @@ "weaponProf": { "value": [ "sim", - "mar" + "mar", + "shortbow", + "longbow", + "longsword", + "shortsword" ], "custom": "" }, @@ -171,9 +174,7 @@ "custom": "" }, "toolProf": { - "value": [ - "navg" - ], + "value": [], "custom": "" } }, @@ -330,7 +331,15 @@ } } }, - "tools": {}, + "tools": { + "navg": { + "value": 1, + "ability": "int", + "bonuses": { + "check": "" + } + } + }, "spells": { "spell1": { "value": 0, @@ -502,7 +511,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -512,7 +526,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -533,7 +551,8 @@ "createdTime": null, "modifiedTime": 1670011640816, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!cYD0wRXLW4B17aoY.8bLvluzgMJZEeJHi" }, { "_id": "gO2Dz4cALMnDMHQi", @@ -545,7 +564,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -571,7 +595,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -583,12 +608,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "abil", @@ -608,7 +635,8 @@ "dc": 17, "scaling": "flat" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -629,7 +657,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cYD0wRXLW4B17aoY.gO2Dz4cALMnDMHQi" }, { "_id": "gewb6wFlCK7GB6bB", @@ -641,7 +670,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -651,7 +685,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -672,7 +710,8 @@ "createdTime": null, "modifiedTime": 1670011640821, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!cYD0wRXLW4B17aoY.gewb6wFlCK7GB6bB" }, { "_id": "Cp2SKVYUXCVD1oHX", @@ -684,7 +723,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -694,7 +738,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -715,7 +763,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cYD0wRXLW4B17aoY.Cp2SKVYUXCVD1oHX" }, { "_id": "FWLXlxd0ukipZhm9", @@ -727,7 +776,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -753,7 +807,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -765,12 +820,14 @@ "max": "4", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -790,7 +847,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -811,7 +869,8 @@ "createdTime": null, "modifiedTime": 1670011640826, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!cYD0wRXLW4B17aoY.FWLXlxd0ukipZhm9" }, { "_id": "GqfDVqVqyUh1Gquv", @@ -823,7 +882,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 20, "weight": 0.05, "price": { @@ -849,7 +913,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 5, @@ -861,12 +926,14 @@ "max": "", "per": null, "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "rwak", @@ -891,7 +958,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "ammo" + "consumableType": "ammo", + "properties": {} }, "sort": 0, "flags": {}, @@ -908,7 +976,8 @@ "createdTime": null, "modifiedTime": 1670011647589, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!cYD0wRXLW4B17aoY.GqfDVqVqyUh1Gquv" }, { "_id": "2SADpLv8xKIB670L", @@ -920,7 +989,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -963,7 +1037,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cYD0wRXLW4B17aoY.2SADpLv8xKIB670L" }, { "_id": "jcUcMlzyQ2U071dZ", @@ -975,7 +1050,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1018,7 +1098,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cYD0wRXLW4B17aoY.jcUcMlzyQ2U071dZ" }, { "_id": "qKjB82iZnzgQTRHr", @@ -1030,7 +1111,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -1056,7 +1142,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1067,12 +1154,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -1110,7 +1199,7 @@ }, "strength": null, "stealth": false, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -1131,7 +1220,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cYD0wRXLW4B17aoY.qKjB82iZnzgQTRHr" }, { "_id": "lbeVmFOH3ZzSRn7V", @@ -1143,7 +1233,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -1169,7 +1264,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 150, @@ -1180,12 +1276,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "ammo", "target": "GqfDVqVqyUh1Gquv", - "amount": 1 + "amount": 1, + "scale": false }, "ability": "", "actionType": "rwak", @@ -1237,7 +1335,7 @@ "ver": false, "lod": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -1258,7 +1356,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cYD0wRXLW4B17aoY.lbeVmFOH3ZzSRn7V" }, { "_id": "I8rPY9dlB3bLYldj", @@ -1270,7 +1369,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -1296,7 +1400,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 5, @@ -1307,12 +1412,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -1364,7 +1471,7 @@ "two": false, "ver": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -1385,7 +1492,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cYD0wRXLW4B17aoY.I8rPY9dlB3bLYldj" }, { "_id": "b3UyJrq6b1ZBfEoC", @@ -1397,7 +1505,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -1423,7 +1536,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 5, @@ -1434,12 +1548,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -1491,7 +1607,7 @@ "two": false, "ver": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": {}, @@ -1508,7 +1624,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cYD0wRXLW4B17aoY.b3UyJrq6b1ZBfEoC" }, { "_id": "BsxUzxVoE4A4Yajo", @@ -1520,7 +1637,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 2, "price": { @@ -1546,7 +1668,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": null, @@ -1558,12 +1681,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1583,7 +1708,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -1604,7 +1730,8 @@ "createdTime": null, "modifiedTime": 1670011640842, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!cYD0wRXLW4B17aoY.BsxUzxVoE4A4Yajo" }, { "_id": "WhXl1O0JMkPKi6hz", @@ -1616,7 +1743,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 1, "price": { @@ -1642,7 +1774,8 @@ "value": 40, "width": null, "units": "ft", - "type": "radius" + "type": "radius", + "prompt": true }, "range": { "value": null, @@ -1654,12 +1787,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "str", "actionType": "mwak", @@ -1684,7 +1819,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -1705,436 +1841,62 @@ "createdTime": null, "modifiedTime": 1670011647596, "lastModifiedBy": "dnd5ebuilder0000" - } - }, - { - "_id": "9RMRzjKqbGDsSXtO", - "name": "Fey Ancestry", - "type": "feat", - "system": { - "description": { - "value": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": "", - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" - }, - "requirements": "Elf, Half-Elf", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.monsterfeatures.LvSBjRKoCAKaAnQy" - } - }, - "img": "icons/creatures/mammals/elk-moose-marked-green.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } + "_key": "!actors.items!cYD0wRXLW4B17aoY.WhXl1O0JMkPKi6hz" }, { - "_id": "ZrMuDdfHM9ZkKc24", - "name": "Elf", - "type": "feat", + "name": "Monster Hunter", + "type": "background", "system": { "description": { - "value": "\n\n\nYour elf character has a variety of natural abilities, the result of thousands of years of elven refinement. Ability Score Increase. Your Dexterity score increases by 2.Age. Although elves reach physical maturity at about the same age as humans, the elven understanding of adulthood goes beyond physical growth to encompass worldly experience. An elf typically claims adulthood and an adult name around the age of 100 and can live to be 750 years old.Alignment. Elves love freedom, variety, and self-expression, so they lean strongly toward the gentler aspects of chaos. They value and protect others' freedom as well as their own, and they are more often good than not.Size. Elves range from under 5 to over 6 feet tall and have slender builds. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Accustomed to twilit forests and the night sky, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Keen Senses. You have proficiency in the Perception skill.Fey Ancestry. @Compendium[dnd5e.races.cnTbpPPeGW7vGjOV]{Fey Ancestry} You have advantage on saving throws against being charmed, and magic can't put you to sleep.Trance. Elves don't need to sleep. Instead, they meditate deeply, remaining semiconscious, for 4 hours a day. (The Common word for such meditation is \"trance.\") While meditating, you can dream after a fashion; such dreams are actually mental exercises that have become reflexive through years of practice. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.\n\n\n\nLanguages. You can speak, read, and write Common and Elvish. Elvish is fluid, with subtle intonations and intricate grammar. Elven literature is rich and varied, and their songs and poems are famous among other races. Many bards learn their language so they can add Elvish ballads to their repertoires.\n\n\n\n\n\n", + "value": "Skill Proficiencies: Acrobatics, Nature, InvestigationTool Proficiencies: Navigator's ToolsEquipment: An Explorer's Pack, and 5gp", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" + "source": { + "custom": "", + "book": "", + "page": "", + "license": "CC-BY-4.0" }, - "requirements": "", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.races.rAGnsfgw3ZqAme1v" - } + "advancement": [] }, - "img": "icons/magic/nature/leaf-glow-maple-teal.webp", + "img": "icons/magic/light/explosion-beam-impact-silhouette.webp", "effects": [], "folder": null, + "sort": 0, "ownership": { "default": 0 }, + "flags": {}, "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } + "systemId": "dnd5e", + "systemVersion": "2.1.0", + "coreVersion": "10.291", + "createdTime": 1673040183979, + "modifiedTime": 1673040678183, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_id": "I5EK9j7jV6mrXt7K", + "_key": "!actors.items!cYD0wRXLW4B17aoY.I5EK9j7jV6mrXt7K" }, { - "_id": "BswrpoIHKoj3T2o7", - "name": "High Elf", - "type": "feat", + "_id": "Apx6i4A5a7JKqaGi", + "name": "Ranger", + "type": "class", + "img": "icons/weapons/bows/shortbow-recurve-yellow.webp", "system": { "description": { - "value": "\n\n\nAs a high elf, you have a keen mind and a mastery of at least the basics of magic. In many fantasy gaming worlds, there are two kinds of high elves. One type is haughty and reclusive, believing themselves to be superior to non-elves and even other elves. The other type is more common and more friendly, and often encountered among humans and other races. Ability Score Increase. Your Intelligence score increases by 1.Elf Weapon Training. You have proficiency with the longsword, shortsword, shortbow, and longbow.Cantrip. You know one cantrip of your choice from the wizard spell list. Intelligence is your spellcasting ability for it.Extra Language. You can speak, read, and write one extra language of your choice.\n\n\n", + "value": "As a ranger, you gain the following class features.\nHit Points\nHit Dice: 1d10 per ranger levelHit Points at 1st Level: 10 + your Constitution modifierHit Points at Higher Levels: 1d10 (or 6) + your Constitution modifier per ranger level after 1st\nProficiencies\nArmor: Light armor, medium armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, DexteritySkills: Choose three from Animal Handling, Athletics, Insight, Investigation, Nature, Perception, Stealth, and Survival\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) scale mail or (b) leather armor\n(a) two shortswords or (b) two simple melee weapons\n(a) a dungeoneer's pack or (b) an explorer's pack\nA longbow and a quiver of 20 arrows\n\nRanger Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.4Vpj9vCOB37GtXk6]{Favored Enemy}, @Compendium[dnd5e.classfeatures.8fbZt2Qh7ZttwIan]{Natural Explorer}\n\n\n2nd\n+2\n@Compendium[dnd5e.classfeatures.nJA3ISVmyj3uPRVM]{Fighting Style}, @Compendium[dnd5e.classfeatures.u6xV3Ki3TXRrD7zg]{Spellcasting}\n\n\n3rd\n+2\n@Compendium[dnd5e.classfeatures.1dJHU48yNqn3lcfx]{Ranger Archetype}, @Compendium[dnd5e.classfeatures.kaHcUGiwi8AtfZIm]{Primeval Awareness}\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n5th\n+3\n2nd Level Spell Slot, @Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}\n\n\n6th\n+3\n@Compendium[dnd5e.classfeatures.4Vpj9vCOB37GtXk6]{Favored Enemy +1}, @Compendium[dnd5e.classfeatures.8fbZt2Qh7ZttwIan]{Natural Explorer improvements}\n\n\n7th\n+3\nRanger Archetype feature\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}, @Compendium[dnd5e.classfeatures.C5fzaOBc6HxyOWRn]{Land's Stride}\n\n\n9th\n+4\n3rd Level Spell Slot\n\n\n10th\n+4\n@Compendium[dnd5e.classfeatures.8fbZt2Qh7ZttwIan]{Natural Explorer improvement}, @Compendium[dnd5e.classfeatures.r0unvWK0lPsDthDx]{Hide in Plain Sight}\n\n\n11th\n+4\nRanger Archetype feature\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n4th Level Spell Slot\n\n\n14th\n+5\n@Compendium[dnd5e.classfeatures.4Vpj9vCOB37GtXk6]{Favored Enemy +1}, @Compendium[dnd5e.classfeatures.DhU2dWCNnX78TstR]{Vanish}\n\n\n15th\n+5\nRanger Archetype feature\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n5th Level Spell Slot\n\n\n18th\n+6\n@Compendium[dnd5e.classfeatures.QBVmY56RMQuh6C8h]{Feral Senses}\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\n@Compendium[dnd5e.classfeatures.3CaP1vFHVR8LgHjx]{Foe Slayer}\n\n\n\nRanger Archetypes\nA classic expression of the ranger ideal is the Hunter.\n@Compendium[dnd5e.subclasses.uqd2q6WjVfcsaaGb]{Hunter}", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" - }, - "requirements": "Elf", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.races.A69KxdH1renVPrQV" - } - }, - "img": "icons/magic/nature/leaf-glow-maple-green.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } - }, - { - "_id": "udsLtG0BugXHR2JQ", - "name": "Prestidigitation", - "ownership": { - "default": 0 - }, - "type": "spell", - "system": { - "description": { - "value": "This spell is a minor magical trick that novice spellcasters use for practice. You create one of the following magical effects within range:\n\nYou create an instantaneous, harmless sensory effect, such as a shower of sparks, a puff of wind, faint musical notes, or an odd odor.\nYou instantaneously light or snuff out a candle, a torch, or a small campfire.\nYou instantaneously clean or soil an object no larger than 1 cubic foot.\nYou chill, warm, or flavor up to 1 cubic foot of nonliving material for 1 hour.\nYou make a color, a small mark, or a symbol appear on an object or a surface for 1 hour.\nYou create a nonmagical trinket or an illusory image that can fit in your hand and that lasts until the end of your next turn.\n\nIf you cast this spell multiple times, you can have up to three of its non-instantaneous effects active at a time, and you can dismiss such an effect as an action.", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "action", - "cost": 1, - "condition": "" - }, - "duration": { - "value": "1", - "units": "hour" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": 10, - "long": null, - "units": "ft" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": "", - "actionType": "util", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "level": 0, - "school": "trs", - "components": { - "vocal": true, - "somatic": true, - "material": false, - "ritual": false, - "concentration": false - }, - "materials": { - "value": "", - "consumed": false, - "cost": 0, - "supply": 0 - }, - "preparation": { - "mode": "prepared", - "prepared": false - }, - "scaling": { - "mode": "none", - "formula": "" - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.spells.udsLtG0BugXHR2JQ" - } - }, - "img": "icons/magic/fire/explosion-fireball-small-purple-orange.webp", - "effects": [], - "folder": null, - "_stats": { - "systemId": "dnd5e", - "systemVersion": "2.0.0", - "coreVersion": "10.279", - "createdTime": 1661603486171, - "modifiedTime": 1661603486171, - "lastModifiedBy": "dnd5ebuilder0000" - } - }, - { - "name": "Monster Hunter", - "type": "background", - "system": { - "description": { - "value": "Skill Proficiencies: Acrobatics, Nature, InvestigationTool Proficiencies: Navigator's ToolsEquipment: An Explorer's Pack, and 5gp", - "chat": "", - "unidentified": "" - }, - "source": "", - "advancement": [] - }, - "img": "icons/magic/light/explosion-beam-impact-silhouette.webp", - "effects": [], - "folder": null, - "sort": 0, - "ownership": { - "default": 0 - }, - "flags": {}, - "_stats": { - "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", - "createdTime": 1673040183979, - "modifiedTime": 1673040678183, - "lastModifiedBy": "dnd5ebuilder0000" - }, - "_id": "I5EK9j7jV6mrXt7K" - }, - { - "_id": "Apx6i4A5a7JKqaGi", - "name": "Ranger", - "type": "class", - "img": "icons/weapons/bows/shortbow-recurve-yellow.webp", - "system": { - "description": { - "value": "As a ranger, you gain the following class features.\nHit Points\nHit Dice: 1d10 per ranger levelHit Points at 1st Level: 10 + your Constitution modifierHit Points at Higher Levels: 1d10 (or 6) + your Constitution modifier per ranger level after 1st\nProficiencies\nArmor: Light armor, medium armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, DexteritySkills: Choose three from Animal Handling, Athletics, Insight, Investigation, Nature, Perception, Stealth, and Survival\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) scale mail or (b) leather armor\n(a) two shortswords or (b) two simple melee weapons\n(a) a dungeoneer's pack or (b) an explorer's pack\nA longbow and a quiver of 20 arrows\n\nRanger Advancement\n\n\n\nLevel\nProficiency Bonus\nFeatures\n\n\n\n\n1st\n+2\n@Compendium[dnd5e.classfeatures.4Vpj9vCOB37GtXk6]{Favored Enemy}, @Compendium[dnd5e.classfeatures.8fbZt2Qh7ZttwIan]{Natural Explorer}\n\n\n2nd\n+2\n@Compendium[dnd5e.classfeatures.nJA3ISVmyj3uPRVM]{Fighting Style}, @Compendium[dnd5e.classfeatures.u6xV3Ki3TXRrD7zg]{Spellcasting}\n\n\n3rd\n+2\n@Compendium[dnd5e.classfeatures.1dJHU48yNqn3lcfx]{Ranger Archetype}, @Compendium[dnd5e.classfeatures.kaHcUGiwi8AtfZIm]{Primeval Awareness}\n\n\n4th\n+2\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n5th\n+3\n2nd Level Spell Slot, @Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack}\n\n\n6th\n+3\n@Compendium[dnd5e.classfeatures.4Vpj9vCOB37GtXk6]{Favored Enemy +1}, @Compendium[dnd5e.classfeatures.8fbZt2Qh7ZttwIan]{Natural Explorer improvements}\n\n\n7th\n+3\nRanger Archetype feature\n\n\n8th\n+3\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}, @Compendium[dnd5e.classfeatures.C5fzaOBc6HxyOWRn]{Land's Stride}\n\n\n9th\n+4\n3rd Level Spell Slot\n\n\n10th\n+4\n@Compendium[dnd5e.classfeatures.8fbZt2Qh7ZttwIan]{Natural Explorer improvement}, @Compendium[dnd5e.classfeatures.r0unvWK0lPsDthDx]{Hide in Plain Sight}\n\n\n11th\n+4\nRanger Archetype feature\n\n\n12th\n+4\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n13th\n+5\n4th Level Spell Slot\n\n\n14th\n+5\n@Compendium[dnd5e.classfeatures.4Vpj9vCOB37GtXk6]{Favored Enemy +1}, @Compendium[dnd5e.classfeatures.DhU2dWCNnX78TstR]{Vanish}\n\n\n15th\n+5\nRanger Archetype feature\n\n\n16th\n+5\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n17th\n+6\n5th Level Spell Slot\n\n\n18th\n+6\n@Compendium[dnd5e.classfeatures.QBVmY56RMQuh6C8h]{Feral Senses}\n\n\n19th\n+6\n@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}\n\n\n20th\n+6\n@Compendium[dnd5e.classfeatures.3CaP1vFHVR8LgHjx]{Foe Slayer}\n\n\n\nRanger Archetypes\nA classic expression of the ranger ideal is the Hunter.\n@Compendium[dnd5e.subclasses.uqd2q6WjVfcsaaGb]{Hunter}", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", "identifier": "ranger", "levels": 1, "hitDice": "d10", @@ -2447,7 +2209,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -2468,7 +2231,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -2489,7 +2253,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -2510,7 +2275,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -2532,33 +2298,149 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" }, "level": 19, "title": "" + }, + { + "_id": "TYXdkZvuFRIksnaN", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:lgt", + "armor:med", + "armor:shl" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": { + "chosen": [ + "armor:lgt", + "armor:med", + "armor:shl" + ] + } + }, + { + "_id": "MPQe2gl78EIkJp4B", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim", + "weapon:mar" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": { + "chosen": [ + "weapon:sim", + "weapon:mar" + ] + } + }, + { + "_id": "mfYrk9GETHcNXCqs", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:str", + "saves:dex" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "saves:str", + "saves:dex" + ] + } + }, + { + "_id": "ICgRpBmX0g8Y0ZzD", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 3, + "pool": [ + "skills:ani", + "skills:ath", + "skills:ins", + "skills:inv", + "skills:nat", + "skills:prc", + "skills:ste", + "skills:sur" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "skills:ani", + "skills:ste", + "skills:sur" + ] + } + }, + { + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 1, + "pool": [ + "skills:ani", + "skills:ath", + "skills:ins", + "skills:inv", + "skills:nat", + "skills:prc", + "skills:ste", + "skills:sur" + ] + } + ] + }, + "level": 1, + "title": "", + "_id": "04X0Kohr5hwmeErb", + "classRestriction": "secondary", + "value": {} } ], - "saves": [ - "str", - "dex" - ], - "skills": { - "number": 3, - "choices": [ - "ani", - "ath", - "ins", - "inv", - "nat", - "prc", - "ste", - "sur" - ], - "value": [] - }, "spellcasting": { "progression": "half", "ability": "wis" @@ -2577,12 +2459,13 @@ }, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234280, - "modifiedTime": 1691519160853, + "modifiedTime": 1699993332326, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!cYD0wRXLW4B17aoY.Apx6i4A5a7JKqaGi" }, { "_id": "btJCgsHp9d6BKOdE", @@ -2597,7 +2480,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -2613,7 +2501,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -2624,12 +2513,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "", @@ -2671,12 +2562,13 @@ "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234330, - "modifiedTime": 1691519160854, + "modifiedTime": 1699987424767, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!cYD0wRXLW4B17aoY.btJCgsHp9d6BKOdE" }, { "_id": "UAmLNoN2LQpPR7ok", @@ -2691,7 +2583,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -2707,7 +2604,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -2718,12 +2616,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "", @@ -2765,12 +2665,581 @@ "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234342, - "modifiedTime": 1691519160855, + "modifiedTime": 1699987424767, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!cYD0wRXLW4B17aoY.UAmLNoN2LQpPR7ok" + }, + { + "_id": "jp4BUcAipDi7GIQQ", + "name": "High Elf", + "type": "race", + "img": "icons/commodities/treasure/statue-gold-laurel-wreath.webp", + "system": { + "description": { + "value": "Your elf character has a variety of natural abilities, the result of thousands of years of elven refinement.Ability Score Increase. Your Dexterity score increases by 2.Age. Although elves reach physical maturity at about the same age as humans, the elven understanding of adulthood goes beyond physical growth to encompass worldly experience. An elf typically claims adulthood and an adult name around the age of 100 and can live to be 750 years old.Alignment. Elves love freedom, variety, and self-expression, so they lean strongly toward the gentler aspects of chaos. They value and protect others' freedom as well as their own, and they are more often good than not.Size. Elves range from under 5 to over 6 feet tall and have slender builds. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Accustomed to twilit forests and the night sky, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Keen Senses. You have proficiency in the Perception skill.Fey Ancestry. You have advantage on saving throws against being charmed, and magic can't put you to sleep.Trance. Elves don't need to sleep. Instead, they meditate deeply, remaining semiconscious, for 4 hours a day. (The Common word for such meditation is \"trance.\") While meditating, you can dream after a fashion; such dreams are actually mental exercises that have become reflexive through years of practice. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.Languages. You can speak, read, and write Common and Elvish. Elvish is fluid, with subtle intonations and intricate grammar. Elven literature is rich and varied, and their songs and poems are famous among other races. Many bards learn their language so they can add Elvish ballads to their repertoires.High ElfAs a high elf, you have a keen mind and a mastery of at least the basics of magic. In many fantasy gaming worlds, there are two kinds of high elves. One type is haughty and reclusive, believing themselves to be superior to non-elves and even other elves. The other type is more common and more friendly, and often encountered among humans and other races.Ability Score Increase. Your Intelligence score increases by 1.Elf Weapon Training. You have proficiency with the longsword, shortsword, shortbow, and longbow.Cantrip. You know one cantrip of your choice from the wizard spell list. Intelligence is your spellcasting ability for it.Extra Language. You can speak, read, and write one extra language of your choice.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "identifier": "high-elf", + "advancement": [ + { + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.races.cnTbpPPeGW7vGjOV", + "Compendium.dnd5e.races.4v2PiBrAbqDizdSJ" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": { + "added": { + "C688oL0TBRFLNedh": "Compendium.dnd5e.races.cnTbpPPeGW7vGjOV", + "xOnk30vJeG4EMX2W": "Compendium.dnd5e.races.4v2PiBrAbqDizdSJ" + } + }, + "level": 0, + "title": "Grant Items", + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "9SgUOZ9mjqyA8Q2d" + }, + { + "_id": "l1Pw82BvhrSkYiyF", + "type": "ItemChoice", + "configuration": { + "hint": "You know one cantrip of your choice from the wizard spell list. Intelligence is your spellcasting ability for it.", + "choices": { + "0": 1 + }, + "allowDrops": true, + "type": "spell", + "pool": [], + "spell": { + "ability": "int", + "preparation": "innate", + "uses": { + "max": "", + "per": "" + } + }, + "restriction": { + "type": "", + "subtype": "", + "level": "0" + } + }, + "value": { + "added": { + "0": { + "U0X7MGDlr5QH3x5R": "Compendium.dnd5e.spells.udsLtG0BugXHR2JQ" + } + } + }, + "title": "Cantrip" + }, + { + "_id": "Z9hvZFkWUNvowbQX", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 0, + "fixed": { + "str": 0, + "dex": 2, + "con": 0, + "int": 1, + "wis": 0, + "cha": 0 + }, + "cap": 2 + }, + "value": { + "type": "asi", + "assignments": { + "dex": 2, + "int": 1 + } + }, + "level": 0, + "title": "" + }, + { + "_id": "eqSwyWvm0gYgBzJJ", + "type": "Size", + "configuration": { + "hint": "Elves range from under 5 to over 6 feet tall and have slender builds. Your size is Medium.", + "sizes": [ + "med" + ] + }, + "value": { + "size": "med" + }, + "level": 1, + "title": "" + }, + { + "_id": "eAv9eLr0ackU7WO2", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "skills:prc" + ], + "choices": [] + }, + "level": 0, + "title": "Keen Senses", + "value": { + "chosen": [ + "skills:prc" + ] + } + }, + { + "_id": "vNyszlmxQeXRjYIH", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:standard:common", + "languages:standard:elvish" + ], + "choices": [ + { + "count": 1, + "pool": [ + "languages:*" + ] + } + ] + }, + "level": 0, + "title": "", + "value": { + "chosen": [ + "languages:standard:common", + "languages:standard:elvish", + "languages:standard:gnomish" + ] + } + }, + { + "_id": "ZwJOJ5Ywagq7rWNI", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim:shortbow", + "weapon:mar:longbow", + "weapon:mar:longsword", + "weapon:mar:shortsword" + ], + "choices": [] + }, + "level": 0, + "title": "Elf Weapon Training", + "value": { + "chosen": [ + "weapon:sim:shortbow", + "weapon:mar:longbow", + "weapon:mar:longsword", + "weapon:mar:shortsword" + ] + } + } + ], + "senses": { + "darkvision": 60, + "blindsight": 0, + "tremorsense": 0, + "truesight": 0, + "units": "ft", + "special": "" + }, + "movement": { + "burrow": 0, + "climb": 0, + "fly": 0, + "swim": 0, + "walk": 30, + "units": "ft", + "hover": false + }, + "type": { + "value": "humanoid", + "subtype": "", + "custom": "" + } + }, + "effects": [], + "ownership": { + "default": 0 + }, + "flags": { + "core": { + "sourceId": "Compendium.dnd5e.races.A69KxdH1renVPrQV" + } + }, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1677179211328, + "modifiedTime": 1699993332326, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "sort": 0, + "folder": null, + "_key": "!actors.items!cYD0wRXLW4B17aoY.jp4BUcAipDi7GIQQ" + }, + { + "_id": "C688oL0TBRFLNedh", + "name": "Fey Ancestry", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "crewed": false, + "target": { + "value": null, + "width": null, + "units": "", + "type": "", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null, + "scale": false + }, + "ability": "", + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "Elf, Half-Elf", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": { + "dnd5e": { + "sourceId": "Compendium.dnd5e.races.cnTbpPPeGW7vGjOV", + "advancementOrigin": "jp4BUcAipDi7GIQQ.9SgUOZ9mjqyA8Q2d" + } + }, + "img": "icons/creatures/mammals/elk-moose-marked-green.webp", + "effects": [], + "folder": null, + "sort": 0, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234471, + "modifiedTime": 1699987424767, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!cYD0wRXLW4B17aoY.C688oL0TBRFLNedh" + }, + { + "_id": "xOnk30vJeG4EMX2W", + "name": "Trance", + "type": "feat", + "img": "icons/magic/perception/third-eye-blue-red.webp", + "system": { + "description": { + "value": "Elves don't need to sleep. Instead, they meditate deeply, remaining semiconscious, for 4 hours a day. (The Common word for such meditation is \"trance.\") While meditating, you can dream after a fashion; such dreams are actually mental exercises that have become reflexive through years of practice. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "crewed": false, + "target": { + "value": null, + "width": null, + "units": "", + "type": "", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null, + "scale": false + }, + "ability": null, + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "Elf", + "recharge": { + "value": null, + "charged": false + } + }, + "effects": [], + "ownership": { + "default": 0 + }, + "flags": { + "dnd5e": { + "sourceId": "Compendium.dnd5e.races.4v2PiBrAbqDizdSJ", + "advancementOrigin": "jp4BUcAipDi7GIQQ.9SgUOZ9mjqyA8Q2d" + } + }, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1677179906781, + "modifiedTime": 1699987425727, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "sort": 0, + "folder": null, + "_key": "!actors.items!cYD0wRXLW4B17aoY.xOnk30vJeG4EMX2W" + }, + { + "_id": "U0X7MGDlr5QH3x5R", + "name": "Prestidigitation", + "ownership": { + "default": 0 + }, + "type": "spell", + "system": { + "description": { + "value": "This spell is a minor magical trick that novice spellcasters use for practice. You create one of the following magical effects within range:\n\nYou create an instantaneous, harmless sensory effect, such as a shower of sparks, a puff of wind, faint musical notes, or an odd odor.\nYou instantaneously light or snuff out a candle, a torch, or a small campfire.\nYou instantaneously clean or soil an object no larger than 1 cubic foot.\nYou chill, warm, or flavor up to 1 cubic foot of nonliving material for 1 hour.\nYou make a color, a small mark, or a symbol appear on an object or a surface for 1 hour.\nYou create a nonmagical trinket or an illusory image that can fit in your hand and that lasts until the end of your next turn.\n\nIf you cast this spell multiple times, you can have up to three of its non-instantaneous effects active at a time, and you can dismiss such an effect as an action.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "action", + "cost": 1, + "condition": "" + }, + "duration": { + "value": "1", + "units": "hour" + }, + "cover": null, + "crewed": false, + "target": { + "value": null, + "width": null, + "units": "", + "type": "", + "prompt": true + }, + "range": { + "value": 10, + "long": null, + "units": "ft" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null, + "scale": false + }, + "ability": "int", + "actionType": "util", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" + }, + "level": 0, + "school": "trs", + "components": { + "vocal": true, + "somatic": true, + "material": false, + "ritual": false, + "concentration": false + }, + "materials": { + "value": "", + "consumed": false, + "cost": 0, + "supply": 0 + }, + "preparation": { + "mode": "innate", + "prepared": false + }, + "scaling": { + "mode": "none", + "formula": "" + } + }, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.dnd5e.spells.udsLtG0BugXHR2JQ" + }, + "dnd5e": { + "sourceId": "Compendium.dnd5e.spells.udsLtG0BugXHR2JQ", + "advancementOrigin": "jp4BUcAipDi7GIQQ.l1Pw82BvhrSkYiyF" + } + }, + "img": "icons/magic/fire/explosion-fireball-small-purple-orange.webp", + "effects": [], + "folder": null, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234236, + "modifiedTime": 1699986132474, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!cYD0wRXLW4B17aoY.U0X7MGDlr5QH3x5R" } ], "effects": [], @@ -2783,10 +3252,11 @@ "_id": "cYD0wRXLW4B17aoY", "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787232181, - "modifiedTime": 1691519160867, + "modifiedTime": 1699993332339, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!cYD0wRXLW4B17aoY" } diff --git a/packs/src/heroes/randal-human-fighter.json b/packs/src/heroes/randal-human-fighter.json index 2a0e30d615..bcd95eb22d 100644 --- a/packs/src/heroes/randal-human-fighter.json +++ b/packs/src/heroes/randal-human-fighter.json @@ -73,31 +73,30 @@ "bonuses": { "level": "", "overall": "" - }, - "min": 0 + } }, "init": { "ability": "", "bonus": "0" }, "movement": { - "burrow": 0, - "climb": 0, - "fly": 0, - "swim": 0, - "walk": 30, - "units": "ft", + "burrow": null, + "climb": null, + "fly": null, + "swim": null, + "walk": null, + "units": null, "hover": false }, "attunement": { "max": 3 }, "senses": { - "darkvision": 0, - "blindsight": 0, - "tremorsense": 0, - "truesight": 0, - "units": "ft", + "darkvision": null, + "blindsight": null, + "tremorsense": null, + "truesight": null, + "units": null, "special": "" }, "spellcasting": "int", @@ -110,12 +109,12 @@ }, "details": { "biography": { - "value": "Randal worked his way through the ranks of his hometown's guard, ultimately growing restless with city life and wandering off in search of adventure.\n", + "value": "Randal worked his way through the ranks of his hometown's guard, ultimately growing restless with city life and wandering off in search of adventure.", "public": "" }, "alignment": "Neutral Good", - "race": "Variant Human", - "background": "", + "race": "VFOCTtbEvjeUHo6B", + "background": null, "originalClass": "TixRV4Wr5ruxXRpf", "xp": { "value": 0 @@ -502,7 +501,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -517,7 +521,7 @@ "baseItem": "", "ability": "cha", "chatFlavor": "", - "proficient": 1, + "proficient": null, "bonus": "" }, "sort": 0, @@ -539,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.qy0pVLQWv8tjWJPR" }, { "_id": "xhSq81g4w9vTE0nK", @@ -551,7 +556,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -567,7 +577,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -578,12 +589,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "", @@ -626,13 +639,14 @@ "default": 0 }, "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } + "modifiedTime": 1699987492174, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.xhSq81g4w9vTE0nK" }, { "_id": "r7UallZJjcIFsz8i", @@ -644,7 +658,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -660,7 +679,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -671,12 +691,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -719,13 +741,14 @@ "default": 0 }, "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } + "modifiedTime": 1699987492173, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.r7UallZJjcIFsz8i" }, { "_id": "6kg0dYblyeGcoclF", @@ -737,7 +760,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 20, "weight": 0.05, "price": { @@ -763,7 +791,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 5, @@ -775,12 +804,14 @@ "max": "", "per": null, "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "rwak", @@ -805,7 +836,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "ammo" + "consumableType": "ammo", + "properties": {} }, "sort": 0, "flags": {}, @@ -822,7 +854,8 @@ "createdTime": null, "modifiedTime": 1670011647487, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.6kg0dYblyeGcoclF" }, { "_id": "HW10iFMNN5JaJBFf", @@ -834,7 +867,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -860,7 +898,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 150, @@ -871,12 +910,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "ammo", "target": "6kg0dYblyeGcoclF", - "amount": 1 + "amount": 1, + "scale": false }, "ability": "", "actionType": "rwak", @@ -928,7 +969,7 @@ "ver": false, "lod": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -949,7 +990,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.HW10iFMNN5JaJBFf" }, { "_id": "3d2b3iqnC0t116JB", @@ -961,7 +1003,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -987,7 +1034,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 5, @@ -998,12 +1046,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -1055,7 +1105,7 @@ "thr": false, "two": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -1076,7 +1126,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.3d2b3iqnC0t116JB" }, { "_id": "9vMrpjx6tZQVKCrF", @@ -1088,7 +1139,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -1114,7 +1170,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 20, @@ -1125,12 +1182,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -1182,7 +1241,7 @@ "two": false, "ver": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": {}, @@ -1199,7 +1258,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.9vMrpjx6tZQVKCrF" }, { "_id": "ZC11cflszLu1zXBL", @@ -1211,7 +1271,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 55, "price": { @@ -1237,7 +1302,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1248,12 +1314,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -1291,7 +1359,7 @@ }, "strength": 13, "stealth": true, - "proficient": true + "proficient": null }, "sort": 0, "flags": {}, @@ -1308,7 +1376,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.ZC11cflszLu1zXBL" }, { "_id": "UwH6scwUXajH9jCh", @@ -1320,7 +1389,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -1346,7 +1420,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1357,12 +1432,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -1400,7 +1477,7 @@ }, "strength": null, "stealth": false, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -1421,7 +1498,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.UwH6scwUXajH9jCh" }, { "_id": "bq6RL40FQY52C7YE", @@ -1433,7 +1511,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1476,7 +1559,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.bq6RL40FQY52C7YE" }, { "_id": "Z4bdbM4ROqwPcSli", @@ -1488,7 +1572,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1531,7 +1620,8 @@ "createdTime": null, "modifiedTime": 1670011640341, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.Z4bdbM4ROqwPcSli" }, { "_id": "RtMzLZEMAVyFwhLo", @@ -1543,7 +1633,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -1553,7 +1648,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1574,7 +1673,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.RtMzLZEMAVyFwhLo" }, { "_id": "BQIFmKZfFgM3XQPq", @@ -1586,7 +1686,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1596,7 +1701,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1617,7 +1726,8 @@ "createdTime": null, "modifiedTime": 1670011640351, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.BQIFmKZfFgM3XQPq" }, { "_id": "ASK21hDnn53hojQo", @@ -1629,7 +1739,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1655,7 +1770,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1667,12 +1783,14 @@ "max": "4", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1692,7 +1810,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -1713,7 +1832,8 @@ "createdTime": null, "modifiedTime": 1670011640358, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.ASK21hDnn53hojQo" }, { "_id": "pueZRmygDueiEPES", @@ -1725,7 +1845,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -1751,7 +1876,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1763,12 +1889,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "abil", @@ -1788,7 +1916,8 @@ "dc": 17, "scaling": "flat" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -1809,7 +1938,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.pueZRmygDueiEPES" }, { "_id": "ph8RkMxLvWBSgIt3", @@ -1821,7 +1951,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1864,7 +1999,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.ph8RkMxLvWBSgIt3" }, { "_id": "GUsTVResLLnqzu20", @@ -1876,7 +2012,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -1886,7 +2027,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1907,7 +2052,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.GUsTVResLLnqzu20" }, { "_id": "C47RdG1DyqBhG1aB", @@ -1919,7 +2065,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1929,7 +2080,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1950,7 +2105,8 @@ "createdTime": null, "modifiedTime": 1670011640365, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.C47RdG1DyqBhG1aB" }, { "_id": "NcqTt0GXqkHxybfP", @@ -1962,7 +2118,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -1988,7 +2149,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 20, @@ -1999,12 +2161,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -2056,7 +2220,7 @@ "two": false, "ver": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -2077,7 +2241,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.NcqTt0GXqkHxybfP" }, { "_id": "XlBuqgctFFNNx8Xn", @@ -2089,7 +2254,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 2, "price": { @@ -2115,7 +2285,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": null, @@ -2127,12 +2298,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -2152,7 +2325,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -2173,7 +2347,8 @@ "createdTime": null, "modifiedTime": 1670011640371, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.XlBuqgctFFNNx8Xn" }, { "_id": "rRBxjDaj0KZoEySZ", @@ -2185,7 +2360,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 0.25, "price": { @@ -2211,7 +2391,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 5, @@ -2223,12 +2404,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -2248,7 +2431,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -2269,7 +2453,8 @@ "createdTime": null, "modifiedTime": 1670011647493, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.rRBxjDaj0KZoEySZ" }, { "_id": "puS6D5ZXmiKePl1F", @@ -2281,7 +2466,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 1, "price": { @@ -2307,7 +2497,8 @@ "value": 40, "width": null, "units": "ft", - "type": "radius" + "type": "radius", + "prompt": true }, "range": { "value": null, @@ -2319,12 +2510,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "str", "actionType": "mwak", @@ -2349,7 +2542,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -2370,7 +2564,8 @@ "createdTime": null, "modifiedTime": 1670011647502, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.puS6D5ZXmiKePl1F" }, { "_id": "gxGtzolLrAw1A3or", @@ -2382,7 +2577,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -2392,108 +2592,19 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.items.V5UAjT3ed6sDNtgm" - } - }, - "img": "icons/tools/hand/pickaxe-steel-white.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } - }, - { - "_id": "FZMxHGzQLRylEPyZ", - "name": "Human", - "type": "feat", - "system": { - "description": { - "value": "\n\n\nIt’s hard to make generalizations about humans, but your human character has these traits. Ability Score Increase. Your ability scores each increase by 1.Age. Humans reach adulthood in their late teens and live less than a century.Alignment. Humans tend toward no particular alignment. The best and the worst are found among them.Size. Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.Speed. Your base walking speed is 30 feet.Languages. You can speak, read, and write Common and one extra language of your choice. Humans typically learn the languages of other peoples they deal with, including obscure dialects. They are fond of sprinkling their speech with words borrowed from other tongues: Orc curses, Elvish musical expressions, Dwarvish military phrases, and so on.\n\n\n", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, + "identified": true, "type": { "value": "", "subtype": "" - }, - "requirements": "", - "recharge": { - "value": null, - "charged": false } }, "sort": 0, "flags": { "core": { - "sourceId": "Compendium.dnd5e.races.ydP3QzCmur55mtY2" + "sourceId": "Compendium.dnd5e.items.V5UAjT3ed6sDNtgm" } }, - "img": "icons/magic/light/explosion-star-large-orange.webp", + "img": "icons/tools/hand/pickaxe-steel-white.webp", "effects": [], "folder": null, "ownership": { @@ -2506,7 +2617,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.gxGtzolLrAw1A3or" }, { "name": "Watchman", @@ -2517,7 +2629,12 @@ "chat": "", "unidentified": "" }, - "source": "", + "source": { + "custom": "", + "book": "", + "page": "", + "license": "CC-BY-4.0" + }, "advancement": [] }, "img": "icons/environment/settlement/watchtower-stone.webp", @@ -2536,7 +2653,8 @@ "modifiedTime": 1673040617213, "lastModifiedBy": "dnd5ebuilder0000" }, - "_id": "iODPoFlvprdu59Ga" + "_id": "iODPoFlvprdu59Ga", + "_key": "!actors.items!2Pdtnswo8Nj2nafY.iODPoFlvprdu59Ga" }, { "_id": "TixRV4Wr5ruxXRpf", @@ -2549,7 +2667,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "fighter", "levels": 1, "hitDice": "d10", @@ -2781,7 +2904,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -2802,7 +2926,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -2823,7 +2948,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -2844,7 +2970,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -2866,7 +2993,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -2886,7 +3014,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -2906,33 +3035,141 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" }, "level": 14, "title": "" + }, + { + "_id": "mA50Kay0ZDA2jX9p", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:lgt", + "armor:med", + "armor:hvy", + "armor:shl" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "armor:lgt", + "armor:med", + "armor:hvy", + "armor:shl" + ] + } + }, + { + "_id": "nmUrDORkeK0uZm0p", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim", + "weapon:mar" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": { + "chosen": [ + "weapon:sim", + "weapon:mar" + ] + } + }, + { + "_id": "3o2s8ZVAyJd74CrP", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:str", + "saves:con" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "saves:str", + "saves:con" + ] + } + }, + { + "_id": "JEZnz3P7ydbNAdwN", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:acr", + "skills:ani", + "skills:ath", + "skills:his", + "skills:ins", + "skills:itm", + "skills:prc", + "skills:sur" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "skills:acr", + "skills:itm" + ] + } + }, + { + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:lgt", + "armor:med", + "armor:shl" + ], + "choices": [] + }, + "level": 1, + "title": "", + "_id": "dB3KhImYQRemI4mr", + "classRestriction": "secondary", + "value": {} } ], - "saves": [ - "str", - "con" - ], - "skills": { - "number": 2, - "choices": [ - "acr", - "ani", - "ath", - "his", - "ins", - "itm", - "prc", - "sur" - ], - "value": [] - }, "spellcasting": { "progression": "none", "ability": "" @@ -2951,12 +3188,13 @@ }, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234279, - "modifiedTime": 1691519178768, + "modifiedTime": 1699993381263, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.TixRV4Wr5ruxXRpf" }, { "_id": "xBoN1auJaGal3hva", @@ -2971,7 +3209,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -2987,7 +3230,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -2998,12 +3242,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -3045,12 +3291,13 @@ "folder": null, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234404, - "modifiedTime": 1691519178770, + "modifiedTime": 1699987492174, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.xBoN1auJaGal3hva" }, { "_id": "QYbinNgLV2ZYxX2c", @@ -3065,7 +3312,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -3081,7 +3333,8 @@ "value": null, "width": null, "units": "", - "type": "self" + "type": "self", + "prompt": true }, "range": { "value": null, @@ -3092,12 +3345,14 @@ "value": 1, "max": "1", "per": "sr", - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "heal", @@ -3149,7 +3404,8 @@ "createdTime": 1661787234421, "modifiedTime": 1691519178770, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.QYbinNgLV2ZYxX2c" }, { "_id": "dpXCnkmf6mF4qivf", @@ -3164,7 +3420,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -3180,7 +3441,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -3191,12 +3453,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "", @@ -3260,19 +3524,144 @@ "origin": "Item.4mQUDmiDBePkQD6Y", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!actors.items.effects!2Pdtnswo8Nj2nafY.dpXCnkmf6mF4qivf.U3so0zDcVt4sIBRz" } ], "folder": null, "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234445, - "modifiedTime": 1691519178770, + "modifiedTime": 1699987492174, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.dpXCnkmf6mF4qivf" + }, + { + "_id": "VFOCTtbEvjeUHo6B", + "name": "Variant Human", + "type": "race", + "img": "icons/environment/people/commoner.webp", + "system": { + "description": { + "value": "It's hard to make generalizations about humans, but your human character has these traits.Ability Score Increase. Your ability scores each increase by 1.Age. Humans reach adulthood in their late teens and live less than a century.Alignment. Humans tend toward no particular alignment. The best and the worst are found among them.Size. Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.Speed. Your base walking speed is 30 feet.Languages. You can speak, read, and write Common and one extra language of your choice. Humans typically learn the languages of other peoples they deal with, including obscure dialects. They are fond of sprinkling their speech with words borrowed from other tongues: Orc curses, Elvish musical expressions, Dwarvish military phrases, and so on.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "identifier": "human", + "advancement": [ + { + "_id": "Z9hvZFkWUNvowbQX", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 0, + "fixed": { + "str": 1, + "dex": 1, + "con": 1, + "int": 1, + "wis": 1, + "cha": 1 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 0, + "title": "" + }, + { + "_id": "dNSrZePZHz2qwVpi", + "type": "Size", + "configuration": { + "hint": "Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.", + "sizes": [ + "med" + ] + }, + "value": { + "size": "" + }, + "level": 1, + "title": "" + }, + { + "_id": "HI6r4Y6KjHND0i53", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:standard:common" + ], + "choices": [ + { + "count": 1, + "pool": [ + "languages:*" + ] + } + ] + }, + "level": 0, + "title": "", + "value": {} + } + ], + "movement": { + "burrow": 0, + "climb": 0, + "fly": 0, + "swim": 0, + "walk": 30, + "units": "ft", + "hover": false + }, + "senses": { + "darkvision": 0, + "blindsight": 0, + "tremorsense": 0, + "truesight": 0, + "units": "ft", + "special": "" + }, + "type": { + "value": "humanoid", + "subtype": "", + "custom": "" + } + }, + "effects": [], + "ownership": { + "default": 0 + }, + "flags": { + "core": { + "sourceId": "Compendium.dnd5e.races.ydP3QzCmur55mtY2" + } + }, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1677180079259, + "modifiedTime": 1699993381263, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "sort": 0, + "folder": null, + "_key": "!actors.items!2Pdtnswo8Nj2nafY.VFOCTtbEvjeUHo6B" } ], "effects": [ @@ -3302,7 +3691,8 @@ "origin": "Compendium.dnd5e.heroes.2Pdtnswo8Nj2nafY.Item.dpXCnkmf6mF4qivf", "tint": null, "transfer": false, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!2Pdtnswo8Nj2nafY.U3so0zDcVt4sIBRz" } ], "folder": null, @@ -3314,10 +3704,11 @@ "_id": "2Pdtnswo8Nj2nafY", "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787232150, - "modifiedTime": 1691519178818, + "modifiedTime": 1699993381280, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!2Pdtnswo8Nj2nafY" } diff --git a/packs/src/heroes/riswynn-dwarf-rogue.json b/packs/src/heroes/riswynn-dwarf-rogue.json index c7aed8eb5d..3e60ff8783 100644 --- a/packs/src/heroes/riswynn-dwarf-rogue.json +++ b/packs/src/heroes/riswynn-dwarf-rogue.json @@ -73,31 +73,30 @@ "bonuses": { "level": "", "overall": "" - }, - "min": 0 + } }, "init": { "ability": "", "bonus": "0" }, "movement": { - "burrow": 0, - "climb": 0, - "fly": 0, - "swim": 0, - "walk": 25, - "units": "ft", + "burrow": null, + "climb": null, + "fly": null, + "swim": null, + "walk": null, + "units": null, "hover": false }, "attunement": { "max": 3 }, "senses": { - "darkvision": 60, - "blindsight": 0, - "tremorsense": 0, - "truesight": 0, - "units": "ft", + "darkvision": null, + "blindsight": null, + "tremorsense": null, + "truesight": null, + "units": null, "special": "" }, "spellcasting": "int", @@ -110,12 +109,12 @@ }, "details": { "biography": { - "value": "Once a well-respected bureaucrat at the dwarven halls, Riswynn dabbled in intruigue, picked up a few tricks, and ran intro trouble with some nobles. She looks to make a name for herself and regain her social status.\n", + "value": "Once a well-respected bureaucrat at the dwarven halls, Riswynn dabbled in intruigue, picked up a few tricks, and ran intro trouble with some nobles. She looks to make a name for herself and regain her social status.", "public": "" }, "alignment": "True neutral", - "race": "Hill Dwarf", - "background": "", + "race": "JtKfV5srBn6zBNVt", + "background": null, "originalClass": "POlGoMp1xwT02K3S", "xp": { "value": 0 @@ -161,9 +160,11 @@ }, "weaponProf": { "value": [ - "sim", "battleaxe", "warhammer", + "handaxe", + "lighthammer", + "sim", "handcrossbow", "longsword", "rapier", @@ -178,10 +179,8 @@ "custom": "" }, "toolProf": { - "value": [ - "thief" - ], - "custom": "Smith Tools" + "value": [], + "custom": "" } }, "currency": { @@ -337,7 +336,22 @@ } } }, - "tools": {}, + "tools": { + "mason": { + "value": 1, + "ability": "int", + "bonuses": { + "check": "" + } + }, + "thief": { + "value": 1, + "ability": "int", + "bonuses": { + "check": "" + } + } + }, "spells": { "spell1": { "value": 0, @@ -509,7 +523,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -535,7 +554,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -546,12 +566,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -589,7 +611,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "sort": 0, "flags": { @@ -610,7 +632,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.zyNiKfTqZLSjX1Kc" }, { "_id": "6xgRF9EHlkdx74gp", @@ -622,7 +645,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -648,7 +676,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 5, @@ -659,12 +688,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -719,7 +750,7 @@ "mgc": false, "sil": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -740,7 +771,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.6xgRF9EHlkdx74gp" }, { "_id": "13NzavzIfxLtAbjF", @@ -752,7 +784,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 20, "weight": 0.05, "price": { @@ -778,7 +815,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 5, @@ -790,12 +828,14 @@ "max": "", "per": null, "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "rwak", @@ -820,7 +860,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "ammo" + "consumableType": "ammo", + "properties": {} }, "sort": 0, "flags": {}, @@ -837,7 +878,8 @@ "createdTime": null, "modifiedTime": 1670011647567, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.13NzavzIfxLtAbjF" }, { "_id": "tJDTxUqcvlxbZCdo", @@ -849,7 +891,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -875,7 +922,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 80, @@ -886,12 +934,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "ammo", "target": "13NzavzIfxLtAbjF", - "amount": 1 + "amount": 1, + "scale": false }, "ability": "", "actionType": "rwak", @@ -943,7 +993,7 @@ "ver": false, "lod": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -964,7 +1014,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.tJDTxUqcvlxbZCdo" }, { "_id": "NkdFTTiYWTcQykxt", @@ -976,7 +1027,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1002,7 +1058,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 20, @@ -1013,12 +1070,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -1070,7 +1129,7 @@ "two": false, "ver": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -1091,7 +1150,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.NkdFTTiYWTcQykxt" }, { "_id": "0K1HkL7YtDkM04gh", @@ -1103,7 +1163,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -1129,7 +1194,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1140,12 +1206,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -1183,7 +1251,7 @@ }, "strength": null, "stealth": false, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -1204,7 +1272,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.0K1HkL7YtDkM04gh" }, { "_id": "qg7r4WqCCRRBoI7k", @@ -1216,7 +1285,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1231,7 +1305,7 @@ "baseItem": "", "ability": "dex", "chatFlavor": "", - "proficient": 1, + "proficient": null, "bonus": "" }, "sort": 0, @@ -1253,7 +1327,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.qg7r4WqCCRRBoI7k" }, { "_id": "EKdk3lhxqgPtqHwu", @@ -1265,7 +1340,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1308,7 +1388,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.EKdk3lhxqgPtqHwu" }, { "_id": "Mf7KLdBXylgqsICW", @@ -1320,7 +1401,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1363,7 +1449,8 @@ "createdTime": null, "modifiedTime": 1670011640763, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.Mf7KLdBXylgqsICW" }, { "_id": "PHLBlkV7IoS51P5v", @@ -1375,7 +1462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1418,7 +1510,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.PHLBlkV7IoS51P5v" }, { "_id": "CHrFwjEiZTbIgkvr", @@ -1430,7 +1523,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -1440,7 +1538,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1461,7 +1563,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.CHrFwjEiZTbIgkvr" }, { "_id": "h4ihDUI7MQVznkxm", @@ -1473,7 +1576,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -1499,7 +1607,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1511,12 +1620,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "abil", @@ -1536,7 +1647,8 @@ "dc": 17, "scaling": "flat" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -1557,7 +1669,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.h4ihDUI7MQVznkxm" }, { "_id": "rpmyWiGevjk354b5", @@ -1569,7 +1682,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 0.25, "price": { @@ -1595,7 +1713,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 5, @@ -1607,12 +1726,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1632,7 +1753,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -1653,7 +1775,8 @@ "createdTime": null, "modifiedTime": 1670011647573, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.rpmyWiGevjk354b5" }, { "_id": "kHtYigIcUQ4IL9PR", @@ -1665,7 +1788,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 2, "price": { @@ -1691,7 +1819,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": null, @@ -1703,12 +1832,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1728,7 +1859,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -1749,7 +1881,8 @@ "createdTime": null, "modifiedTime": 1670011640777, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.kHtYigIcUQ4IL9PR" }, { "_id": "SbWMxygkEp4AlSMl", @@ -1761,7 +1894,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1771,7 +1909,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1792,7 +1934,8 @@ "createdTime": null, "modifiedTime": 1670011640783, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.SbWMxygkEp4AlSMl" }, { "_id": "8XJJXl8CvQDsNqQo", @@ -1804,7 +1947,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 1, "price": { @@ -1830,7 +1978,8 @@ "value": 40, "width": null, "units": "ft", - "type": "radius" + "type": "radius", + "prompt": true }, "range": { "value": null, @@ -1842,12 +1991,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "str", "actionType": "mwak", @@ -1872,7 +2023,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -1893,7 +2045,8 @@ "createdTime": null, "modifiedTime": 1670011647579, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.8XJJXl8CvQDsNqQo" }, { "_id": "sKonGCDJxc4cwpuS", @@ -1905,7 +2058,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1931,7 +2089,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1943,12 +2102,14 @@ "max": "4", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1968,7 +2129,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -1989,7 +2151,8 @@ "createdTime": null, "modifiedTime": 1670011640803, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.sKonGCDJxc4cwpuS" }, { "_id": "w1ICCmvrQzvkNA5T", @@ -2001,7 +2164,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -2011,7 +2179,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -2032,7 +2204,8 @@ "createdTime": null, "modifiedTime": 1670011640809, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.w1ICCmvrQzvkNA5T" }, { "_id": "OPIqh46EdTrNRiZp", @@ -2044,7 +2217,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -2054,7 +2232,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -2075,7 +2257,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.OPIqh46EdTrNRiZp" }, { "_id": "kRWtiPib9MRx9JmN", @@ -2087,7 +2270,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -2113,7 +2301,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 20, @@ -2124,12 +2313,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -2181,7 +2372,7 @@ "two": false, "ver": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": {}, @@ -2198,7 +2389,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.kRWtiPib9MRx9JmN" }, { "_id": "OpfHMuWyqcO7LmSt", @@ -2210,7 +2402,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -2220,7 +2417,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -2241,422 +2442,62 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.OpfHMuWyqcO7LmSt" }, { - "_id": "VlHHit2a50YCKKTm", - "name": "Dwarven Resilience", - "type": "feat", + "name": "Bureaucrat", + "type": "background", "system": { "description": { - "value": "You have advantage on saving throws against poison, and you have resistance against poison damage.", + "value": "Skill Proficiencies: Insight, PersuasionLanguages: Two of your choiceEquipment: A set of fine clothes and a pouch containing 5 gp", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": "", - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" + "source": { + "custom": "", + "book": "", + "page": "", + "license": "CC-BY-4.0" }, - "requirements": "Dwarf", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.races.ufysTkqet2Ctmtyi" - } + "advancement": [] }, - "img": "icons/creatures/abilities/stinger-poison-green.webp", + "img": "icons/skills/social/theft-pickpocket-bribery-brown.webp", "effects": [], "folder": null, + "sort": 0, "ownership": { "default": 0 }, + "flags": {}, "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } + "systemId": "dnd5e", + "systemVersion": "2.1.0", + "coreVersion": "10.291", + "createdTime": 1673040183979, + "modifiedTime": 1673040521187, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_id": "kLWeji1tfubIJvfT", + "_key": "!actors.items!bzlxBO5km3zCQA8G.kLWeji1tfubIJvfT" }, { - "_id": "0Db7KX5wxDYwiem3", - "name": "Stonecunning", - "type": "feat", + "_id": "POlGoMp1xwT02K3S", + "name": "Rogue", + "type": "class", + "img": "icons/skills/melee/strike-sword-stabbed-brown.webp", "system": { "description": { - "value": "Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.", + "value": "As a rogue, you have the following class features.\nHit Points\nHit Dice: 1d8 per rogue levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per rogue level after 1st\nProficiencies\nArmor: Light armorWeapons: Simple weapons, hand crossbows, longswords, rapiers, shortswordsTools: Thieves' toolsSaving Throws: Dexterity, IntelligenceSkills: Choose four from Acrobatics, Athletics, Deception, Insight, Intimidation, Investigation, Perception, Performance, Persuasion, Sleight of Hand, and Stealth\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a rapier or (b) a shortsword\n(a) a shortbow and quiver of 20 arrows or (b) a shortsword\n(a) a burglar's pack, (b) a dungeoneer's pack, or (c) an explorer's pack\n(a) Leather armor, two daggers, and thieves' tools\n\nRogue Advancement\n\n\n\nLevel\nProficiency Bonus\nSneak Attack\nFeatures\n\n\n\n\n1st\n+2\n1d6\n@Compendium[dnd5e.classfeatures.3sYPftQKnbbVnHrh]{Expertise}, @Compendium[dnd5e.classfeatures.DPN2Gfk8yi1Z5wp7]{Sneak Attack}, @Compendium[dnd5e.classfeatures.ohwfuwnvuoBWlSQr]{Thieves' Cant}\n\n\n2nd\n+2\n1d6\n@Compendium[dnd5e.classfeatures.01pcLg6PRu5zGrsb]{Cunning Action}\n\n\n3rd\n+2\n2d6\n@Compendium[dnd5e.classfeatures.80USV8ZFPIahpLd0]{Roguish Archetype}\n\n\n4th\n+2\n2d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n5th\n+3\n3d6\n@Compendium[dnd5e.classfeatures.Mm64SKAHJWYecgXS]{Uncanny Dodge}\n\n\n6th\n+3\n3d6\n@Compendium[dnd5e.classfeatures.3sYPftQKnbbVnHrh]{Expertise improvement}\n\n\n7th\n+3\n4d6\n@Compendium[dnd5e.classfeatures.a4P4DNMmH8CqSNkC]{Evasion}\n\n\n8th\n+3\n4d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n9th\n+4\n5d6\nRoguish Archetype feature\n\n\n10th\n+4\n5d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n11th\n+4\n6d6\n@Compendium[dnd5e.classfeatures.YN9xm6MCvse4Y60u]{Reliable Talent}\n\n\n12th\n+4\n6d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n13th\n+5\n7d6\nRoguish Archetype feature\n\n\n14th\n+5\n7d6\n@Compendium[dnd5e.classfeatures.fjsBk7zxoAbLf8ZI]{Blindsense}\n\n\n15th\n+5\n8d6\n@Compendium[dnd5e.classfeatures.V4pwFxlwHtNeB4w9]{Slippery Mind}\n\n\n16th\n+5\n8d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n17th\n+6\n9d6\nRoguish Archetype feature\n\n\n18th\n+6\n9d6\n@Compendium[dnd5e.classfeatures.L7nJSRosos8sHJH9]{Elusive}\n\n\n19th\n+6\n10d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n20th\n+6\n10d6\n@Compendium[dnd5e.classfeatures.rQhWDaMHMn7iU4f2]{Stroke of Luck}\n\n\n\nRoguish Archetypes\nRogues have many features in common, including their emphasis on perfecting their skills, their precise and deadly approach to combat, and their increasingly quick reflexes. But different rogues steer those talents in varying directions, embodied by the rogue archetypes. Your choice of archetype is a reflection of your focus—not necessarily an indication of your chosen profession, but a description of your preferred techniques.\n@Compendium[dnd5e.subclasses.k8iuefRorWOjb9gR]{Thief}", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": "", - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" - }, - "requirements": "Dwarf", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.races.mQPZDRbUhgYTbXKa" - } - }, - "img": "icons/commodities/tech/cog-bronze.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } - }, - { - "_id": "loauVqu6iAKv70b7", - "name": "Hill Dwarf", - "type": "feat", - "system": { - "description": { - "value": "\n\n\nAs a hill dwarf, you have keen senses, deep intuition, and remarkable resilience. Ability Score Increase. Your Wisdom score increases by 1.Dwarven Toughness. Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.\n\n\n", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" - }, - "requirements": "Dwarf", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.races.UQiRQUTBcsz8gZU1" - } - }, - "img": "icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } - }, - { - "_id": "HXOtd9EqzXbB3e2c", - "name": "Dwarf", - "type": "feat", - "system": { - "description": { - "value": "\nYour dwarf character has an assortment of inborn abilities, part and parcel of dwarven nature.Ability Score Increase. Your Constitution score increases by 2.Age. Dwarves mature at the same rate as humans, but they're considered young until they reach the age of 50. On average, they live about 350 years.Alignment. Most dwarves are lawful, believing firmly in the benefits of a well-ordered society. They tend toward good as well, with a strong sense of fair play and a belief that everyone deserves to share in the benefits of a just order.Size. Dwarves stand between 4 and 5 feet tall and average about 150 pounds. Your size is Medium.Speed. Your base walking speed is 25 feet. Your speed is not reduced by wearing heavy armor.Darkvision. Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Dwarven Resilience. @Compendium[dnd5e.races.ufysTkqet2Ctmtyi]{Dwarven Resilience} You have advantage on saving throws against poison, and you have resistance against poison damage.Dwarven Combat Training. You have proficiency with the battleaxe, handaxe, light hammer, and warhammer.Tool Proficiency. You gain proficiency with the artisan's tools of your choice: smith's tools, brewer's supplies, or mason's tools.\n\n\n\nStonecunning. @Compendium[dnd5e.races.mQPZDRbUhgYTbXKa]{Stonecunning} Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.\n\n\n\n\nLanguages. You can speak, read, and write Common and Dwarvish. Dwarvish is full of hard consonants and guttural sounds, and those characteristics spill over into whatever other language a dwarf might speak.\n\n\n\n\n\n \n\n\n", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" - }, - "requirements": "", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.races.6N31WSez2szqQcIQ" - } - }, - "img": "icons/magic/defensive/shield-barrier-glowing-triangle-teal-purple.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } - }, - { - "name": "Bureaucrat", - "type": "background", - "system": { - "description": { - "value": "Skill Proficiencies: Insight, PersuasionLanguages: Two of your choiceEquipment: A set of fine clothes and a pouch containing 5 gp", - "chat": "", - "unidentified": "" - }, - "source": "", - "advancement": [] - }, - "img": "icons/skills/social/theft-pickpocket-bribery-brown.webp", - "effects": [], - "folder": null, - "sort": 0, - "ownership": { - "default": 0 - }, - "flags": {}, - "_stats": { - "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", - "createdTime": 1673040183979, - "modifiedTime": 1673040521187, - "lastModifiedBy": "dnd5ebuilder0000" - }, - "_id": "kLWeji1tfubIJvfT" - }, - { - "_id": "POlGoMp1xwT02K3S", - "name": "Rogue", - "type": "class", - "img": "icons/skills/melee/strike-sword-stabbed-brown.webp", - "system": { - "description": { - "value": "As a rogue, you have the following class features.\nHit Points\nHit Dice: 1d8 per rogue levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per rogue level after 1st\nProficiencies\nArmor: Light armorWeapons: Simple weapons, hand crossbows, longswords, rapiers, shortswordsTools: Thieves' toolsSaving Throws: Dexterity, IntelligenceSkills: Choose four from Acrobatics, Athletics, Deception, Insight, Intimidation, Investigation, Perception, Performance, Persuasion, Sleight of Hand, and Stealth\nEquipment\nYou start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a rapier or (b) a shortsword\n(a) a shortbow and quiver of 20 arrows or (b) a shortsword\n(a) a burglar's pack, (b) a dungeoneer's pack, or (c) an explorer's pack\n(a) Leather armor, two daggers, and thieves' tools\n\nRogue Advancement\n\n\n\nLevel\nProficiency Bonus\nSneak Attack\nFeatures\n\n\n\n\n1st\n+2\n1d6\n@Compendium[dnd5e.classfeatures.3sYPftQKnbbVnHrh]{Expertise}, @Compendium[dnd5e.classfeatures.DPN2Gfk8yi1Z5wp7]{Sneak Attack}, @Compendium[dnd5e.classfeatures.ohwfuwnvuoBWlSQr]{Thieves' Cant}\n\n\n2nd\n+2\n1d6\n@Compendium[dnd5e.classfeatures.01pcLg6PRu5zGrsb]{Cunning Action}\n\n\n3rd\n+2\n2d6\n@Compendium[dnd5e.classfeatures.80USV8ZFPIahpLd0]{Roguish Archetype}\n\n\n4th\n+2\n2d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n5th\n+3\n3d6\n@Compendium[dnd5e.classfeatures.Mm64SKAHJWYecgXS]{Uncanny Dodge}\n\n\n6th\n+3\n3d6\n@Compendium[dnd5e.classfeatures.3sYPftQKnbbVnHrh]{Expertise improvement}\n\n\n7th\n+3\n4d6\n@Compendium[dnd5e.classfeatures.a4P4DNMmH8CqSNkC]{Evasion}\n\n\n8th\n+3\n4d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n9th\n+4\n5d6\nRoguish Archetype feature\n\n\n10th\n+4\n5d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n11th\n+4\n6d6\n@Compendium[dnd5e.classfeatures.YN9xm6MCvse4Y60u]{Reliable Talent}\n\n\n12th\n+4\n6d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n13th\n+5\n7d6\nRoguish Archetype feature\n\n\n14th\n+5\n7d6\n@Compendium[dnd5e.classfeatures.fjsBk7zxoAbLf8ZI]{Blindsense}\n\n\n15th\n+5\n8d6\n@Compendium[dnd5e.classfeatures.V4pwFxlwHtNeB4w9]{Slippery Mind}\n\n\n16th\n+5\n8d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n17th\n+6\n9d6\nRoguish Archetype feature\n\n\n18th\n+6\n9d6\n@Compendium[dnd5e.classfeatures.L7nJSRosos8sHJH9]{Elusive}\n\n\n19th\n+6\n10d6\n@Compendium[dnd5e.classfeatures.v7MxFuTAgOsmxZCD]{Ability Score Improvement}\n\n\n20th\n+6\n10d6\n@Compendium[dnd5e.classfeatures.rQhWDaMHMn7iU4f2]{Stroke of Luck}\n\n\n\nRoguish Archetypes\nRogues have many features in common, including their emphasis on perfecting their skills, their precise and deadly approach to combat, and their increasingly quick reflexes. But different rogues steer those talents in varying directions, embodied by the rogue archetypes. Your choice of archetype is a reflection of your focus—not necessarily an indication of your chosen profession, but a description of your preferred techniques.\n@Compendium[dnd5e.subclasses.k8iuefRorWOjb9gR]{Thief}", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", "identifier": "rogue", "levels": 1, "hitDice": "d8", @@ -2967,7 +2808,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -2988,7 +2830,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -3009,7 +2852,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -3030,7 +2874,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -3052,7 +2897,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -3072,36 +2918,248 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" }, "level": 10, "title": "" + }, + { + "_id": "OdvmWcuFdpmQa1R9", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:lgt" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": { + "chosen": [ + "armor:lgt" + ] + } + }, + { + "_id": "IAuJ7LQGV2HvMXWB", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim", + "weapon:mar:handcrossbow", + "weapon:mar:longsword", + "weapon:mar:rapier", + "weapon:mar:shortsword" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "weapon:sim", + "weapon:mar:handcrossbow", + "weapon:mar:longsword", + "weapon:mar:rapier", + "weapon:mar:shortsword" + ] + } + }, + { + "_id": "ZfLkT5c0hxOmdyti", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "tool:thief" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": { + "chosen": [ + "tool:thief" + ] + } + }, + { + "_id": "ejtwT3eAwBpgvtcw", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:dex", + "saves:int" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "saves:dex", + "saves:int" + ] + } + }, + { + "_id": "rKux16jqNCPEtyDL", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 4, + "pool": [ + "skills:acr", + "skills:ath", + "skills:dec", + "skills:ins", + "skills:itm", + "skills:inv", + "skills:prc", + "skills:prf", + "skills:per", + "skills:slt", + "skills:ste" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "skills:acr", + "skills:dec", + "skills:ins", + "skills:ste" + ] + } + }, + { + "_id": "TDHYngxGqDHllgzw", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "expertise", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "tool:thief", + "skills:*" + ] + } + ] + }, + "level": 1, + "title": "Expertise", + "value": { + "chosen": [ + "skills:slt", + "skills:ste" + ] + } + }, + { + "type": "Trait", + "configuration": { + "hint": "", + "mode": "expertise", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:*", + "tool:thief" + ] + } + ] + }, + "level": 6, + "title": "Expertise", + "_id": "Iozyk39gsM4Kecex", + "value": {} + }, + { + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 1, + "pool": [ + "skills:acr", + "skills:ath", + "skills:dec", + "skills:ins", + "skills:itm", + "skills:inv", + "skills:prc", + "skills:prf", + "skills:per", + "skills:slt", + "skills:ste" + ] + } + ] + }, + "level": 1, + "title": "", + "_id": "CYYQSaGgmuHG7i6z", + "classRestriction": "secondary", + "value": {} + }, + { + "_id": "3GyyG2fRAwPbKK7n", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:cant" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": { + "chosen": [ + "languages:cant" + ] + } } ], - "saves": [ - "dex", - "int" - ], - "skills": { - "number": 4, - "choices": [ - "acr", - "ath", - "dec", - "ins", - "itm", - "inv", - "per", - "prf", - "prc", - "slt", - "ste" - ], - "value": [] - }, "spellcasting": { "progression": "none", "ability": "" @@ -3120,12 +3178,13 @@ }, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234284, - "modifiedTime": 1691519191232, + "modifiedTime": 1699993522289, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.POlGoMp1xwT02K3S" }, { "_id": "GcRC4ZItJPqsIrsm", @@ -3140,7 +3199,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -3156,7 +3220,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -3167,12 +3232,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "", @@ -3214,12 +3281,13 @@ "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234328, - "modifiedTime": 1691519191233, + "modifiedTime": 1699987533792, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.GcRC4ZItJPqsIrsm" }, { "_id": "vRhjcnnlifZYB4dy", @@ -3234,7 +3302,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -3250,7 +3323,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -3261,12 +3335,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "other", @@ -3313,12 +3389,13 @@ "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234348, - "modifiedTime": 1691519191234, + "modifiedTime": 1699987533792, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.vRhjcnnlifZYB4dy" }, { "_id": "eHh5dHiq9wss2Vq0", @@ -3333,7 +3410,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -3349,7 +3431,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -3360,12 +3443,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "", @@ -3429,29 +3514,493 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!actors.items.effects!bzlxBO5km3zCQA8G.eHh5dHiq9wss2Vq0.VN7GnGzVwmBM7YCU" } ], "folder": null, "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234423, - "modifiedTime": 1691519191235, + "modifiedTime": 1699987533792, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.eHh5dHiq9wss2Vq0" + }, + { + "_id": "JtKfV5srBn6zBNVt", + "name": "Hill Dwarf", + "type": "race", + "img": "icons/environment/wilderness/cave-entrance-rocky.webp", + "system": { + "description": { + "value": "Your dwarf character has an assortment of inborn abilities, part and parcel of dwarven nature.Ability Score Increase. Your Constitution score increases by 2.Age. Dwarves mature at the same rate as humans, but they're considered young until they reach the age of 50. On average, they live about 350 years.Alignment. Most dwarves are lawful, believing firmly in the benefits of a well-ordered society. They tend toward good as well, with a strong sense of fair play and a belief that everyone deserves to share in the benefits of a just order.Size. Dwarves stand between 4 and 5 feet tall and average about 150 pounds. Your size is Medium.Speed. Your base walking speed is 25 feet. Your speed is not reduced by wearing heavy armor.Darkvision. Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Dwarven Resilience. You have advantage on saving throws against poison, and you have resistance against poison damage.Dwarven Combat Training. You have proficiency with the battleaxe, handaxe, light hammer, and warhammer.Tool Proficiency. You gain proficiency with the artisan's tools of your choice: smith's tools, brewer's supplies, or mason's tools.Stonecunning. Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.Languages. You can speak, read, and write Common and Dwarvish. Dwarvish is full of hard consonants and guttural sounds, and those characteristics spill over into whatever other language a dwarf might speak.Hill DwarfAs a hill dwarf, you have keen senses, deep intuition, and remarkable resilience.Ability Score Increase. Your Wisdom score increases by 1.Dwarven Toughness. Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.Foundry NoteDwarven Toughness should be configured by adding 1 to the \"Per Level\" bonus in HP configuration on your character sheet (accessible using the cog next to your character's hit points).", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "identifier": "hill-dwarf", + "advancement": [ + { + "_id": "tNfLTuoHfvAxg2FC", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.races.ufysTkqet2Ctmtyi", + "Compendium.dnd5e.races.mQPZDRbUhgYTbXKa" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": { + "added": { + "yeAdyhHhZGgcb7if": "Compendium.dnd5e.races.ufysTkqet2Ctmtyi", + "VtJK5sQ1pHMMWGQ4": "Compendium.dnd5e.races.mQPZDRbUhgYTbXKa" + } + }, + "level": 0, + "title": "" + }, + { + "_id": "Z9hvZFkWUNvowbQX", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 0, + "fixed": { + "str": 0, + "dex": 0, + "con": 2, + "int": 0, + "wis": 1, + "cha": 0 + }, + "cap": 2 + }, + "value": { + "type": "asi", + "assignments": { + "con": 2, + "wis": 1 + } + }, + "level": 0, + "title": "" + }, + { + "_id": "kdMPoRp3j1uOHQom", + "type": "Size", + "configuration": { + "hint": "Dwarves stand between 4 and 5 feet tall and average about 150 pounds. Your size is Medium.", + "sizes": [ + "med" + ] + }, + "value": { + "size": "med" + }, + "level": 1, + "title": "" + }, + { + "_id": "rmcKuRQ2Laloq1xp", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:standard:common", + "languages:standard:dwarvish" + ], + "choices": [] + }, + "level": 0, + "title": "", + "value": { + "chosen": [ + "languages:standard:common", + "languages:standard:dwarvish" + ] + } + }, + { + "_id": "5zWGcz9uAerx3Dh5", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "dr:poison" + ], + "choices": [] + }, + "level": 0, + "title": "Dwarven Resilience", + "value": { + "chosen": [ + "dr:poison" + ] + } + }, + { + "_id": "J0UGmCyMy6thWDeU", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim:handaxe", + "weapon:sim:lighthammer", + "weapon:mar:battleaxe", + "weapon:mar:warhammer" + ], + "choices": [] + }, + "level": 0, + "title": "Dwarven Combat Training", + "value": { + "chosen": [ + "weapon:sim:handaxe", + "weapon:sim:lighthammer", + "weapon:mar:battleaxe", + "weapon:mar:warhammer" + ] + } + }, + { + "_id": "9CYW7Bj53L9G8Zsw", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 1, + "pool": [ + "tool:art:brewer", + "tool:art:mason", + "tool:art:smith" + ] + } + ] + }, + "level": 0, + "title": "", + "value": { + "chosen": [ + "tool:art:mason" + ] + } + } + ], + "senses": { + "darkvision": 60, + "blindsight": 0, + "tremorsense": 0, + "truesight": 0, + "units": "ft", + "special": "" + }, + "movement": { + "walk": 25, + "burrow": 0, + "climb": 0, + "fly": 0, + "swim": 0, + "units": "ft", + "hover": false + }, + "type": { + "subtype": "dwarf", + "value": "", + "custom": "" + } + }, + "effects": [], + "ownership": { + "default": 0 + }, + "flags": { + "core": { + "sourceId": "Compendium.dnd5e.races.UQiRQUTBcsz8gZU1" + } + }, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1677179053861, + "modifiedTime": 1699993522290, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "sort": 0, + "folder": null, + "_key": "!actors.items!bzlxBO5km3zCQA8G.JtKfV5srBn6zBNVt" + }, + { + "_id": "yeAdyhHhZGgcb7if", + "name": "Dwarven Resilience", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "You have advantage on saving throws against poison, and you have resistance against poison damage.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "crewed": false, + "target": { + "value": null, + "width": null, + "units": "", + "type": "", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null, + "scale": false + }, + "ability": "", + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "Dwarf", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": { + "dnd5e": { + "sourceId": "Compendium.dnd5e.races.ufysTkqet2Ctmtyi", + "advancementOrigin": "JtKfV5srBn6zBNVt.tNfLTuoHfvAxg2FC" + } + }, + "img": "icons/creatures/abilities/stinger-poison-green.webp", + "effects": [ + { + "_id": "hIaIpLxcMZSY3qXi", + "changes": [ + { + "key": "system.traits.dr.value", + "mode": 2, + "value": "poison", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "seconds": null, + "combat": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "icon": "icons/creatures/abilities/stinger-poison-green.webp", + "label": "Dwarven Resilience", + "origin": "Item.ufysTkqet2Ctmtyi", + "transfer": true, + "flags": {}, + "tint": null, + "sort": 0, + "_key": "!actors.items.effects!bzlxBO5km3zCQA8G.yeAdyhHhZGgcb7if.hIaIpLxcMZSY3qXi" + } + ], + "folder": null, + "sort": 0, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234474, + "modifiedTime": 1699987533792, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.yeAdyhHhZGgcb7if" + }, + { + "_id": "VtJK5sQ1pHMMWGQ4", + "name": "Stonecunning", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "crewed": false, + "target": { + "value": null, + "width": null, + "units": "", + "type": "", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null, + "scale": false + }, + "ability": "", + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "Dwarf", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": { + "dnd5e": { + "sourceId": "Compendium.dnd5e.races.mQPZDRbUhgYTbXKa", + "advancementOrigin": "JtKfV5srBn6zBNVt.tNfLTuoHfvAxg2FC" + } + }, + "img": "icons/commodities/tech/cog-bronze.webp", + "effects": [], + "folder": null, + "sort": 0, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234472, + "modifiedTime": 1699987535049, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!bzlxBO5km3zCQA8G.VtJK5sQ1pHMMWGQ4" } ], "effects": [ { - "_id": "VN7GnGzVwmBM7YCU", + "_id": "hIaIpLxcMZSY3qXi", "changes": [ { - "key": "system.traits.languages.value", + "key": "system.traits.dr.value", "mode": 2, - "value": "cant", + "value": "poison", "priority": null } ], @@ -3465,13 +4014,14 @@ "startRound": null, "startTurn": null }, - "icon": "icons/sundries/documents/document-torn-diagram-tan.webp", - "label": "Thieves' Cant", - "origin": "Compendium.dnd5e.heroes.bzlxBO5km3zCQA8G.Item.eHh5dHiq9wss2Vq0", + "icon": "icons/creatures/abilities/stinger-poison-green.webp", + "label": "Dwarven Resilience", + "origin": "Compendium.dnd5e.heroes.bzlxBO5km3zCQA8G.Item.yeAdyhHhZGgcb7if", "transfer": false, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!bzlxBO5km3zCQA8G.hIaIpLxcMZSY3qXi" } ], "folder": null, @@ -3483,10 +4033,11 @@ "_id": "bzlxBO5km3zCQA8G", "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787232177, - "modifiedTime": 1691519191272, + "modifiedTime": 1699993522307, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!bzlxBO5km3zCQA8G" } diff --git a/packs/src/heroes/sefris-half-elf-warlock.json b/packs/src/heroes/sefris-half-elf-warlock.json index 5d098808e2..8014a781c4 100644 --- a/packs/src/heroes/sefris-half-elf-warlock.json +++ b/packs/src/heroes/sefris-half-elf-warlock.json @@ -51,7 +51,7 @@ } }, "cha": { - "value": 17, + "value": 19, "proficient": 1, "max": null, "bonuses": { @@ -74,31 +74,30 @@ "bonuses": { "level": "", "overall": "" - }, - "min": 0 + } }, "init": { "ability": "", "bonus": "0" }, "movement": { - "burrow": 0, - "climb": 0, - "fly": 0, - "swim": 0, - "walk": 30, - "units": "ft", + "burrow": null, + "climb": null, + "fly": null, + "swim": null, + "walk": null, + "units": null, "hover": false }, "attunement": { "max": 3 }, "senses": { - "darkvision": 60, - "blindsight": 0, - "tremorsense": 0, - "truesight": 0, - "units": "ft", + "darkvision": null, + "blindsight": null, + "tremorsense": null, + "truesight": null, + "units": null, "special": "" }, "spellcasting": "cha", @@ -111,12 +110,12 @@ }, "details": { "biography": { - "value": "Sefris's pickpocketing as a child grew into small burglaries and eventually complex heists, using the dark bond with his fiend to aid his exploits. He'll work for anyone who can throw some coin his way.\n", + "value": "Sefris's pickpocketing as a child grew into small burglaries and eventually complex heists, using the dark bond with his fiend to aid his exploits. He'll work for anyone who can throw some coin his way.", "public": "" }, "alignment": "Chaotic Neutral", - "race": "Half-elf", - "background": "", + "race": "wLvV5awPEy6FHkvg", + "background": null, "originalClass": "MuaNnEZkswuhixJP", "xp": { "value": 0 @@ -151,8 +150,8 @@ "languages": { "value": [ "common", - "deep", - "elvish" + "elvish", + "deep" ], "custom": "" }, @@ -169,10 +168,7 @@ "custom": "" }, "toolProf": { - "value": [ - "game", - "thief" - ], + "value": [], "custom": "" } }, @@ -265,7 +261,7 @@ } }, "nat": { - "value": 1, + "value": 0, "ability": "int", "bonuses": { "check": "", @@ -297,7 +293,7 @@ } }, "rel": { - "value": 0, + "value": 1, "ability": "int", "bonuses": { "check": "", @@ -329,7 +325,22 @@ } } }, - "tools": {}, + "tools": { + "game": { + "value": 1, + "ability": "int", + "bonuses": { + "check": "" + } + }, + "thief": { + "value": 1, + "ability": "int", + "bonuses": { + "check": "" + } + } + }, "spells": { "spell1": { "value": 0, @@ -501,7 +512,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -517,7 +533,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -528,12 +545,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "", @@ -576,13 +595,14 @@ "default": 0 }, "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } + "modifiedTime": 1699987213588, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.s6ksFNAiSR2Wy20f" }, { "_id": "tFWyqoQOTGy2tjVQ", @@ -594,7 +614,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -620,7 +645,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 20, @@ -631,12 +657,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -688,7 +716,7 @@ "two": false, "ver": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -709,7 +737,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.tFWyqoQOTGy2tjVQ" }, { "_id": "gWG0z1fZ1Wh5v4ox", @@ -721,7 +750,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -747,7 +781,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -759,12 +794,14 @@ "max": "", "per": null, "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "util", @@ -784,7 +821,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "ammo" + "consumableType": "ammo", + "properties": {} }, "sort": 0, "flags": { @@ -805,7 +843,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.gWG0z1fZ1Wh5v4ox" }, { "_id": "PWzpA5cBPJN2ObHr", @@ -817,7 +856,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -843,7 +887,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 80, @@ -854,12 +899,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "ammo", "target": "YhC9uJKyuxTPMNGB", - "amount": 1 + "amount": 1, + "scale": false }, "ability": "", "actionType": "rwak", @@ -911,7 +958,7 @@ "ver": false, "lod": true }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -932,7 +979,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.PWzpA5cBPJN2ObHr" }, { "_id": "EJBzJl2NdChAdgPp", @@ -944,7 +992,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -970,7 +1023,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -981,12 +1035,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -1024,7 +1080,7 @@ }, "strength": null, "stealth": false, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -1045,7 +1101,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.EJBzJl2NdChAdgPp" }, { "_id": "CFNsSpQESXydoWIT", @@ -1057,7 +1114,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -1083,7 +1145,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1094,12 +1157,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -1137,7 +1202,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "sort": 0, "flags": { @@ -1158,7 +1223,8 @@ "createdTime": null, "modifiedTime": 1670011640605, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.CFNsSpQESXydoWIT" }, { "_id": "YhC9uJKyuxTPMNGB", @@ -1170,7 +1236,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 20, "weight": 0.075, "price": { @@ -1196,7 +1267,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 5, @@ -1208,12 +1280,14 @@ "max": "", "per": null, "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "rwak", @@ -1238,7 +1312,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "ammo" + "consumableType": "ammo", + "properties": {} }, "sort": 0, "flags": { @@ -1259,7 +1334,8 @@ "createdTime": null, "modifiedTime": 1670011647536, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.YhC9uJKyuxTPMNGB" }, { "_id": "cGloc8QtriPCqkot", @@ -1271,7 +1347,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1314,7 +1395,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.cGloc8QtriPCqkot" }, { "_id": "AunuAQWZl4OW6XhY", @@ -1326,7 +1408,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1369,7 +1456,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.AunuAQWZl4OW6XhY" }, { "_id": "RbVPCEnvRQRNgalQ", @@ -1381,7 +1469,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1424,7 +1517,8 @@ "createdTime": null, "modifiedTime": 1670011640620, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.RbVPCEnvRQRNgalQ" }, { "_id": "Jh3ztSfsO2aMdRCh", @@ -1436,7 +1530,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1446,7 +1545,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1467,7 +1570,8 @@ "createdTime": null, "modifiedTime": 1670011640627, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.Jh3ztSfsO2aMdRCh" }, { "_id": "khqYCCRBDGI6hyPp", @@ -1479,7 +1583,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -1505,7 +1614,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1517,12 +1627,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "abil", @@ -1542,7 +1654,8 @@ "dc": 17, "scaling": "flat" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -1563,7 +1676,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.khqYCCRBDGI6hyPp" }, { "_id": "VPbIxZbUa0Yu83OH", @@ -1575,7 +1689,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -1585,7 +1704,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1606,7 +1729,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.VPbIxZbUa0Yu83OH" }, { "_id": "jWmSizyaQYCgP2q6", @@ -1618,7 +1742,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 2, "price": { @@ -1644,7 +1773,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": null, @@ -1656,12 +1786,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1681,7 +1813,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -1702,7 +1835,8 @@ "createdTime": null, "modifiedTime": 1670011640633, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.jWmSizyaQYCgP2q6" }, { "_id": "QMOVCtfUZ45nbquO", @@ -1714,7 +1848,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1724,7 +1863,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1745,7 +1888,8 @@ "createdTime": null, "modifiedTime": 1670011640639, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.QMOVCtfUZ45nbquO" }, { "_id": "Kcl8IOHaqoKSvw5O", @@ -1757,7 +1901,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 1, "price": { @@ -1783,7 +1932,8 @@ "value": 40, "width": null, "units": "ft", - "type": "radius" + "type": "radius", + "prompt": true }, "range": { "value": null, @@ -1795,12 +1945,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "str", "actionType": "mwak", @@ -1825,7 +1977,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -1846,7 +1999,8 @@ "createdTime": null, "modifiedTime": 1670011647547, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.Kcl8IOHaqoKSvw5O" }, { "_id": "MtiO1knQLL5GNGlA", @@ -1858,7 +2012,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1884,7 +2043,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1896,12 +2056,14 @@ "max": "4", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1921,7 +2083,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -1942,7 +2105,8 @@ "createdTime": null, "modifiedTime": 1670011640652, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.MtiO1knQLL5GNGlA" }, { "_id": "jCesM4Kt02PWF6W5", @@ -1954,7 +2118,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1969,7 +2138,7 @@ "baseItem": "", "ability": "dex", "chatFlavor": "", - "proficient": 1, + "proficient": null, "bonus": "" }, "sort": 0, @@ -1991,7 +2160,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.jCesM4Kt02PWF6W5" }, { "_id": "n4y54n9b3KkJdhLL", @@ -2003,7 +2173,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -2013,108 +2188,19 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.items.V5UAjT3ed6sDNtgm" - } - }, - "img": "icons/tools/hand/pickaxe-steel-white.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } - }, - { - "_id": "IBBEAAhVb5tWL0sz", - "name": "Fey Ancestry", - "type": "feat", - "system": { - "description": { - "value": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": "", - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, + "identified": true, "type": { "value": "", "subtype": "" - }, - "requirements": "Elf, Half-Elf", - "recharge": { - "value": null, - "charged": false } }, "sort": 0, "flags": { "core": { - "sourceId": "Compendium.dnd5e.monsterfeatures.LvSBjRKoCAKaAnQy" + "sourceId": "Compendium.dnd5e.items.V5UAjT3ed6sDNtgm" } }, - "img": "icons/creatures/mammals/elk-moose-marked-green.webp", + "img": "icons/tools/hand/pickaxe-steel-white.webp", "effects": [], "folder": null, "ownership": { @@ -2127,113 +2213,26 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.n4y54n9b3KkJdhLL" }, { - "_id": "N86N6wcMkknG99ZF", - "name": "Half-Elf", - "type": "feat", + "_id": "r4vy8utsxo9my9r0", + "name": "The Fiend", + "type": "subclass", + "img": "icons/creatures/unholy/demon-fire-horned-winged-roar.webp", "system": { "description": { - "value": "\n\n\nYour half-elf character has some qualities in common with elves and some that are unique to half-elves. Ability Score Increase. Your Charisma score increases by 2, and two other ability scores of your choice increase by 1.Age. Half-elves mature at the same rate humans do and reach adulthood around the age of 20. They live much longer than humans, however, often exceeding 180 years.Alignment. Half-elves share the chaotic bent of their elven heritage. They value both personal freedom and creative expression, demonstrating neither love of leaders nor desire for followers. They chafe at rules, resent others' demands, and sometimes prove unreliable, or at least unpredictable.\n\n\n\nSize. Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Thanks to your elf blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Fey Ancestry. @Compendium[dnd5e.races.cnTbpPPeGW7vGjOV]{Fey Ancestry} You have advantage on saving throws against being charmed, and magic can't put you to sleep.Skill Versatility. You gain proficiency in two skills of your choice.Languages. You can speak, read, and write Common, Elvish, and one extra language of your choice.\n\n\n\n\n\n", + "value": "You have made a pact with a fiend from the lower planes of existence, a being whose aims are evil, even if you strive against those aims. Such beings desire the corruption or destruction of all things, ultimately including you. Fiends powerful enough to forge a pact include demon lords such as Demogorgon, Orcus, Fraz'Urb-luu, and Baphomet; archdevils such as Asmodeus, Dispater, Mephistopheles, and Belial; pit fiends and balors that are especially mighty; and ultroloths and other lords of the yugoloths.\nExpanded Spell List\nThe Fiend lets you choose from an expanded list of spells when you learn a warlock spell. The following spells are added to the warlock spell list for you.\n\n\n\nSpell Level\nSpells\n\n\n\n\n1st\n@Compendium[dnd5e.spells.5SuJewoa1CRWaj1F]{Burning Hands}, @Compendium[dnd5e.spells.arzCrMRgcNiQuh43]{Command}\n\n\n2nd\n@Compendium[dnd5e.spells.zwGsAv6kmwzYGhh3]{Blindness/Deafness}, @Compendium[dnd5e.spells.7u2obDvuvtZBkTfq]{Scorching Ray}\n\n\n3rd\n@Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball}, @Compendium[dnd5e.spells.TwlD4PLcltv7Xh7j]{Stinking Cloud}\n\n\n4th\n@Compendium[dnd5e.spells.avD5XUtkBPQQR97c]{Fire Shield}, @Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire}\n\n\n5th\n@Compendium[dnd5e.spells.5e1xTohkzqFqbYH4]{Flame Strike}, @Compendium[dnd5e.spells.SLxA9QhrggTz0taU]{Hallow}\n\n\n", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "type": { - "value": "", - "subtype": "" - }, - "requirements": "", - "recharge": { - "value": null, - "charged": false - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.races.Hye5IZwPOSwV0qRR" - } - }, - "img": "icons/magic/nature/leaf-glow-triple-teal.webp", - "effects": [], - "folder": null, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } - }, - { - "_id": "r4vy8utsxo9my9r0", - "name": "The Fiend", - "type": "subclass", - "img": "icons/creatures/unholy/demon-fire-horned-winged-roar.webp", - "system": { - "description": { - "value": "You have made a pact with a fiend from the lower planes of existence, a being whose aims are evil, even if you strive against those aims. Such beings desire the corruption or destruction of all things, ultimately including you. Fiends powerful enough to forge a pact include demon lords such as Demogorgon, Orcus, Fraz'Urb-luu, and Baphomet; archdevils such as Asmodeus, Dispater, Mephistopheles, and Belial; pit fiends and balors that are especially mighty; and ultroloths and other lords of the yugoloths.\nExpanded Spell List\nThe Fiend lets you choose from an expanded list of spells when you learn a warlock spell. The following spells are added to the warlock spell list for you.\n\n\n\nSpell Level\nSpells\n\n\n\n\n1st\n@Compendium[dnd5e.spells.5SuJewoa1CRWaj1F]{Burning Hands}, @Compendium[dnd5e.spells.arzCrMRgcNiQuh43]{Command}\n\n\n2nd\n@Compendium[dnd5e.spells.zwGsAv6kmwzYGhh3]{Blindness/Deafness}, @Compendium[dnd5e.spells.7u2obDvuvtZBkTfq]{Scorching Ray}\n\n\n3rd\n@Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball}, @Compendium[dnd5e.spells.TwlD4PLcltv7Xh7j]{Stinking Cloud}\n\n\n4th\n@Compendium[dnd5e.spells.avD5XUtkBPQQR97c]{Fire Shield}, @Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire}\n\n\n5th\n@Compendium[dnd5e.spells.5e1xTohkzqFqbYH4]{Flame Strike}, @Compendium[dnd5e.spells.SLxA9QhrggTz0taU]{Hallow}\n\n\n", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", "identifier": "the-fiend", "classIdentifier": "warlock", "advancement": [ @@ -2344,12 +2343,13 @@ }, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": null, - "modifiedTime": 1691519206746, + "modifiedTime": 1699993640223, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.r4vy8utsxo9my9r0" }, { "_id": "Z9p1vezIn95jw1Yw", @@ -2364,7 +2364,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2380,7 +2385,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": 120, @@ -2391,12 +2397,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "rsak", @@ -2461,7 +2469,8 @@ "createdTime": 1661603486083, "modifiedTime": 1661603486083, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.Z9p1vezIn95jw1Yw" }, { "_id": "vrN18tbTw7io5MWd", @@ -2476,7 +2485,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2492,7 +2506,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": 120, @@ -2503,12 +2518,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "rsak", @@ -2573,7 +2590,8 @@ "createdTime": 1661603486083, "modifiedTime": 1661603486083, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.vrN18tbTw7io5MWd" }, { "_id": "5SuJewoa1CRWaj1F", @@ -2588,7 +2606,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2604,7 +2627,8 @@ "value": 15, "width": null, "units": "ft", - "type": "cone" + "type": "cone", + "prompt": true }, "range": { "value": null, @@ -2615,12 +2639,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "save", @@ -2685,7 +2711,8 @@ "createdTime": 1661603486085, "modifiedTime": 1661603486085, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.5SuJewoa1CRWaj1F" }, { "_id": "arzCrMRgcNiQuh43", @@ -2700,7 +2727,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2716,7 +2748,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": 60, @@ -2727,12 +2760,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "save", @@ -2792,7 +2827,8 @@ "createdTime": 1661603486086, "modifiedTime": 1661603486086, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.arzCrMRgcNiQuh43" }, { "name": "Burglar", @@ -2803,7 +2839,12 @@ "chat": "", "unidentified": "" }, - "source": "", + "source": { + "custom": "", + "book": "", + "page": "", + "license": "CC-BY-4.0" + }, "advancement": [] }, "img": "icons/magic/perception/silhouette-stealth-shadow.webp", @@ -2822,7 +2863,8 @@ "modifiedTime": 1673040964521, "lastModifiedBy": "dnd5ebuilder0000" }, - "_id": "8uFLMKLwRO7Y5Xl2" + "_id": "8uFLMKLwRO7Y5Xl2", + "_key": "!actors.items!Jw8DeuPjt1qpusdB.8uFLMKLwRO7Y5Xl2" }, { "_id": "MuaNnEZkswuhixJP", @@ -2835,7 +2877,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "warlock", "levels": 1, "hitDice": "d8", @@ -3278,7 +3325,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -3299,7 +3347,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -3320,7 +3369,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -3341,7 +3391,8 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" @@ -3363,32 +3414,112 @@ "int": 0, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { "type": "asi" }, "level": 19, "title": "" + }, + { + "_id": "BTAE9XqCBbyv4O8P", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:lgt" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": { + "chosen": [ + "armor:lgt" + ] + } + }, + { + "_id": "25XLH7yn1R41rKlk", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": { + "chosen": [ + "weapon:sim" + ] + } + }, + { + "_id": "H0U9QH2KQj0lIrDK", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:wis", + "saves:cha" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "saves:wis", + "saves:cha" + ] + } + }, + { + "_id": "4DBaeL7SR77vUp6F", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:arc", + "skills:dec", + "skills:his", + "skills:itm", + "skills:inv", + "skills:nat", + "skills:rel" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "skills:arc", + "skills:inv" + ] + } } ], - "saves": [ - "wis", - "cha" - ], - "skills": { - "number": 2, - "choices": [ - "arc", - "dec", - "his", - "itm", - "inv", - "nat", - "rel" - ], - "value": [] - }, "spellcasting": { "progression": "pact", "ability": "cha" @@ -3407,12 +3538,13 @@ }, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234278, - "modifiedTime": 1691519206763, + "modifiedTime": 1699993640223, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.MuaNnEZkswuhixJP" }, { "_id": "O5nhueIb5HIil0eh", @@ -3427,7 +3559,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -3443,7 +3580,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -3454,12 +3592,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "", @@ -3501,12 +3641,13 @@ "folder": null, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234413, - "modifiedTime": 1691519206764, + "modifiedTime": 1699987213588, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.O5nhueIb5HIil0eh" }, { "_id": "uf6mKJJICzDHiWly", @@ -3521,7 +3662,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -3537,7 +3683,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -3548,12 +3695,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -3595,12 +3744,13 @@ "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234440, - "modifiedTime": 1691519206766, + "modifiedTime": 1699987213588, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.uf6mKJJICzDHiWly" }, { "_id": "mbXQrn8QAMAtSSUc", @@ -3615,7 +3765,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -3631,7 +3786,8 @@ "value": null, "width": null, "units": "", - "type": "self" + "type": "self", + "prompt": true }, "range": { "value": null, @@ -3642,12 +3798,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "cha", "actionType": "heal", @@ -3694,12 +3852,300 @@ "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787234360, - "modifiedTime": 1691519206767, + "modifiedTime": 1699987213589, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.mbXQrn8QAMAtSSUc" + }, + { + "_id": "wLvV5awPEy6FHkvg", + "name": "Half-Elf", + "type": "race", + "img": "icons/magic/nature/leaf-glow-triple-green.webp", + "system": { + "description": { + "value": "Your half‑elf character has some qualities in common with elves and some that are unique to half-elves.Ability Score Increase. Your Charisma score increases by 2, and two other ability scores of your choice increase by 1.Age. Half-elves mature at the same rate humans do and reach adulthood around the age of 20. They live much longer than humans, however, often exceeding 180 years.Alignment. Half-elves share the chaotic bent of their elven heritage. They value both personal freedom and creative expression, demonstrating neither love of leaders nor desire for followers. They chafe at rules, resent others' demands, and sometimes prove unreliable, or at least unpredictable.Size. Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Thanks to your elf blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Fey Ancestry. You have advantage on saving throws against being charmed, and magic can't put you to sleep.Skill Versatility. You gain proficiency in two skills of your choice.Languages. You can speak, read, and write Common, Elvish, and one extra language of your choice.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "identifier": "half-elf", + "advancement": [ + { + "_id": "rXyxzoqxdxlspMi5", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.races.cnTbpPPeGW7vGjOV" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": { + "added": { + "pZ76fyelg2iQaqUA": "Compendium.dnd5e.races.cnTbpPPeGW7vGjOV" + } + }, + "level": 0, + "title": "" + }, + { + "_id": "Z9hvZFkWUNvowbQX", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 2, + "fixed": { + "str": 0, + "dex": 0, + "con": 0, + "int": 0, + "wis": 0, + "cha": 2 + }, + "cap": 1 + }, + "value": { + "type": "asi", + "assignments": { + "cha": 2 + } + }, + "level": 0, + "title": "" + }, + { + "_id": "r3PSgtQO6Eim49LU", + "type": "Size", + "configuration": { + "hint": "Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.", + "sizes": [ + "med" + ] + }, + "value": { + "size": "med" + }, + "level": 1, + "title": "" + }, + { + "_id": "CormRQZ5momyvS2I", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:*" + ] + } + ] + }, + "level": 0, + "title": "Skill Versatility", + "value": { + "chosen": [ + "skills:rel", + "skills:per" + ] + } + }, + { + "_id": "U3OO7jLU0nm0Z7zw", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:standard:common", + "languages:standard:elvish" + ], + "choices": [ + { + "count": 1, + "pool": [ + "languages:*" + ] + } + ] + }, + "level": 0, + "title": "", + "value": { + "chosen": [ + "languages:standard:common", + "languages:standard:elvish", + "languages:exotic:deep" + ] + } + } + ], + "senses": { + "darkvision": 60, + "blindsight": 0, + "tremorsense": 0, + "truesight": 0, + "units": "ft", + "special": "" + }, + "type": { + "subtype": "elf", + "value": "humanoid", + "custom": "" + }, + "movement": { + "burrow": 0, + "climb": 0, + "fly": 0, + "swim": 0, + "walk": 30, + "units": "ft", + "hover": false + } + }, + "effects": [], + "ownership": { + "default": 0 + }, + "flags": { + "core": { + "sourceId": "Compendium.dnd5e.races.Hye5IZwPOSwV0qRR" + } + }, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1677181061205, + "modifiedTime": 1699993640223, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "sort": 0, + "folder": null, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.wLvV5awPEy6FHkvg" + }, + { + "_id": "pZ76fyelg2iQaqUA", + "name": "Fey Ancestry", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "crewed": false, + "target": { + "value": null, + "width": null, + "units": "", + "type": "", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null, + "scale": false + }, + "ability": "", + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "Elf, Half-Elf", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": { + "dnd5e": { + "sourceId": "Compendium.dnd5e.races.cnTbpPPeGW7vGjOV", + "advancementOrigin": "wLvV5awPEy6FHkvg.rXyxzoqxdxlspMi5" + } + }, + "img": "icons/creatures/mammals/elk-moose-marked-green.webp", + "effects": [], + "folder": null, + "sort": 0, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234471, + "modifiedTime": 1699987213587, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!Jw8DeuPjt1qpusdB.pZ76fyelg2iQaqUA" } ], "effects": [], @@ -3711,10 +4157,11 @@ "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787232167, - "modifiedTime": 1691519206781, + "modifiedTime": 1699993640237, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!Jw8DeuPjt1qpusdB" } diff --git a/packs/src/heroes/zanna-gnome-wizard.json b/packs/src/heroes/zanna-gnome-wizard.json index 514b7bcaa0..ebf410921b 100644 --- a/packs/src/heroes/zanna-gnome-wizard.json +++ b/packs/src/heroes/zanna-gnome-wizard.json @@ -73,31 +73,30 @@ "bonuses": { "level": "", "overall": "" - }, - "min": 0 + } }, "init": { "ability": "", "bonus": "0" }, "movement": { - "burrow": 0, - "climb": 0, - "fly": 0, - "swim": 0, - "walk": 25, - "units": "ft", + "burrow": null, + "climb": null, + "fly": null, + "swim": null, + "walk": null, + "units": null, "hover": false }, "attunement": { "max": 3 }, "senses": { - "darkvision": 60, - "blindsight": 0, - "tremorsense": 0, - "truesight": 0, - "units": "ft", + "darkvision": null, + "blindsight": null, + "tremorsense": null, + "truesight": null, + "units": null, "special": "" }, "spellcasting": "int", @@ -110,12 +109,12 @@ }, "details": { "biography": { - "value": "Always interested in tinkering, Zanna set out for adventure in order to find more spells for her spellbook, and perhaps one day create some of her own.\n", + "value": "Always interested in tinkering, Zanna set out for adventure in order to find more spells for her spellbook, and perhaps one day create some of her own.", "public": "" }, "alignment": "Chaotic Good", - "race": "Rock Gnome", - "background": "", + "race": "ur4Pjajcd3IlxKlZ", + "background": null, "originalClass": "N4bhi6usK8wuNEnh", "xp": { "value": 0 @@ -149,9 +148,9 @@ }, "languages": { "value": [ - "common", "dwarvish", "giant", + "common", "gnomish" ], "custom": "" @@ -172,7 +171,7 @@ }, "toolProf": { "value": [], - "custom": "Tinkerer's Tools" + "custom": "" } }, "currency": { @@ -248,7 +247,7 @@ } }, "inv": { - "value": 0, + "value": 1, "ability": "int", "bonuses": { "check": "", @@ -288,7 +287,7 @@ } }, "per": { - "value": 1, + "value": 0, "ability": "cha", "bonuses": { "check": "", @@ -500,7 +499,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -526,7 +530,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -538,12 +543,14 @@ "max": "", "per": null, "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "util", @@ -563,7 +570,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "ammo" + "consumableType": "ammo", + "properties": {} }, "sort": 0, "flags": { @@ -584,7 +592,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.ZTaGDK3lSy8a5T1l" }, { "_id": "EPiw1vnn3pDOdO1m", @@ -596,7 +605,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -622,7 +636,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": 5, @@ -633,12 +648,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "mwak", @@ -690,7 +707,7 @@ "thr": false, "two": false }, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -711,7 +728,8 @@ "createdTime": null, "modifiedTime": 1670011640403, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.EPiw1vnn3pDOdO1m" }, { "_id": "aJZGeP8AiFrEwgWX", @@ -723,7 +741,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -749,7 +772,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -760,12 +784,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": null, "actionType": "", @@ -803,7 +829,7 @@ }, "strength": null, "stealth": false, - "proficient": true + "proficient": null }, "sort": 0, "flags": { @@ -824,7 +850,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.aJZGeP8AiFrEwgWX" }, { "_id": "wIPWkO6CHUrTw13Y", @@ -836,7 +863,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -879,7 +911,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.wIPWkO6CHUrTw13Y" }, { "_id": "4rrQYmSFohtbkBwH", @@ -891,7 +924,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -934,7 +972,8 @@ "createdTime": null, "modifiedTime": 1670011640411, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.4rrQYmSFohtbkBwH" }, { "_id": "eYEelIdlbOvIRDkK", @@ -946,7 +985,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -956,7 +1000,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -983,7 +1031,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.eYEelIdlbOvIRDkK" }, { "_id": "Ps3a8zDFtNoUfJDZ", @@ -995,7 +1044,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -1021,7 +1075,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1033,12 +1088,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "abil", @@ -1058,7 +1115,8 @@ "dc": 17, "scaling": "flat" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -1085,7 +1143,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.Ps3a8zDFtNoUfJDZ" }, { "_id": "rsSr1FRdaAKl6fpc", @@ -1097,7 +1156,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1107,7 +1171,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1134,7 +1202,8 @@ "createdTime": null, "modifiedTime": 1670011640426, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.rsSr1FRdaAKl6fpc" }, { "_id": "FQpJpWjX9bsPZvDo", @@ -1146,7 +1215,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 2, "price": { @@ -1172,7 +1246,8 @@ "value": 1, "width": null, "units": "", - "type": "creature" + "type": "creature", + "prompt": true }, "range": { "value": null, @@ -1184,12 +1259,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1209,7 +1286,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -1230,7 +1308,8 @@ "createdTime": null, "modifiedTime": 1670011640437, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.FQpJpWjX9bsPZvDo" }, { "_id": "zthIyDRa8OLDoBId", @@ -1242,7 +1321,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -1252,7 +1336,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1273,7 +1361,8 @@ "createdTime": null, "modifiedTime": 1670011640445, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.zthIyDRa8OLDoBId" }, { "_id": "rTQEtliS3CqxnBPg", @@ -1285,7 +1374,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 10, "weight": 1, "price": { @@ -1311,7 +1405,8 @@ "value": 40, "width": null, "units": "ft", - "type": "radius" + "type": "radius", + "prompt": true }, "range": { "value": null, @@ -1323,12 +1418,14 @@ "max": "1", "per": "charges", "recovery": "", - "autoDestroy": true + "autoDestroy": true, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "str", "actionType": "mwak", @@ -1353,7 +1450,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "trinket" + "consumableType": "trinket", + "properties": {} }, "sort": 0, "flags": { @@ -1380,7 +1478,8 @@ "createdTime": null, "modifiedTime": 1670011647511, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.rTQEtliS3CqxnBPg" }, { "_id": "xxVyo2I5EYUi3cla", @@ -1392,7 +1491,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1418,7 +1522,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1430,12 +1535,14 @@ "max": "4", "per": "charges", "recovery": "", - "autoDestroy": false + "autoDestroy": false, + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -1455,7 +1562,8 @@ "dc": null, "scaling": "spell" }, - "consumableType": "food" + "consumableType": "food", + "properties": {} }, "sort": 0, "flags": { @@ -1476,7 +1584,8 @@ "createdTime": null, "modifiedTime": 1670011640466, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.xxVyo2I5EYUi3cla" }, { "_id": "gIJ6Vm16khwtSS0q", @@ -1488,7 +1597,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.06, "price": { @@ -1498,7 +1612,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1519,7 +1637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.gIJ6Vm16khwtSS0q" }, { "_id": "EuWal2U6WQwbDmAL", @@ -1531,7 +1650,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1541,7 +1665,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1562,7 +1690,8 @@ "createdTime": null, "modifiedTime": 1670011647522, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.EuWal2U6WQwbDmAL" }, { "_id": "MNtWDpVTu3jHk8be", @@ -1574,7 +1703,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1584,7 +1718,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1605,7 +1743,8 @@ "createdTime": null, "modifiedTime": 1670011640482, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.MNtWDpVTu3jHk8be" }, { "_id": "i3YAIUu7sNkJUPTU", @@ -1617,7 +1756,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1627,7 +1771,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1648,7 +1796,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.i3YAIUu7sNkJUPTU" }, { "_id": "23NorZLPXATDYptB", @@ -1660,7 +1809,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -1670,7 +1824,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1691,7 +1849,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.23NorZLPXATDYptB" }, { "_id": "rjlTBnXJGxoodrM3", @@ -1703,7 +1862,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.5, "price": { @@ -1713,7 +1877,11 @@ "attunement": 0, "equipped": false, "rarity": "", - "identified": true + "identified": true, + "type": { + "value": "", + "subtype": "" + } }, "sort": 0, "flags": { @@ -1734,23 +1902,29 @@ "createdTime": null, "modifiedTime": 1670011640492, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.rjlTBnXJGxoodrM3" }, { - "_id": "hAOdlcKJP3W7zD0p", - "name": "Artificer's Lore", + "_id": "5hEbhdZm1ozQ3B2g", + "name": "Tinker", "type": "feat", "system": { "description": { - "value": "Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.", + "value": "You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time. When you create a device, choose one of the following options:Clockwork Toy: This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.Fire Starter: The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.Music Box: When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { - "type": "", - "cost": null, - "condition": "" + "type": "hour", + "cost": 1, + "condition": "Expend 10 gp worth of materials" }, "duration": { "value": "", @@ -1762,7 +1936,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -1773,12 +1948,14 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "", @@ -1811,10 +1988,10 @@ "sort": 0, "flags": { "core": { - "sourceId": "Compendium.dnd5e.races.OQA1sHxKnSJq01dL" + "sourceId": "Compendium.dnd5e.races.koRPOLtj8XAFMwnW" } }, - "img": "icons/magic/fire/flame-burning-chain.webp", + "img": "icons/commodities/tech/cog-steel.webp", "effects": [], "folder": null, "ownership": { @@ -1827,54 +2004,66 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.5hEbhdZm1ozQ3B2g" }, { - "_id": "z0AzZRlDE0RiB0Vp", - "name": "Gnome Cunning", - "type": "feat", + "_id": "EOmsUcFQJTfG2oio", + "name": "Fire Bolt", + "ownership": { + "default": 0 + }, + "type": "spell", "system": { "description": { - "value": "You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.", + "value": "You hurl a mote of fire at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried.This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { - "type": "", - "cost": null, + "type": "action", + "cost": 1, "condition": "" }, "duration": { "value": "", - "units": "" + "units": "inst" }, "cover": null, "crewed": false, "target": { - "value": null, + "value": 1, "width": null, "units": "", - "type": "" + "type": "creature", + "prompt": true }, "range": { - "value": null, + "value": 120, "long": null, - "units": "" + "units": "ft" }, "uses": { "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", - "actionType": "", + "actionType": "rsak", "attackBonus": "", "chatFlavor": "", "critical": { @@ -1882,7 +2071,12 @@ "damage": "" }, "damage": { - "parts": [], + "parts": [ + [ + "1d10", + "fire" + ] + ], "versatile": "" }, "formula": "", @@ -1891,83 +2085,106 @@ "dc": null, "scaling": "spell" }, - "type": { + "level": 0, + "school": "evo", + "components": { + "vocal": true, + "somatic": true, + "material": false, + "ritual": false, + "concentration": false + }, + "materials": { "value": "", - "subtype": "" + "consumed": false, + "cost": 0, + "supply": 0 }, - "requirements": "Gnome", - "recharge": { - "value": null, - "charged": false + "preparation": { + "mode": "prepared", + "prepared": false + }, + "scaling": { + "mode": "cantrip", + "formula": "" } }, "sort": 0, "flags": { "core": { - "sourceId": "Compendium.dnd5e.monsterfeatures.0gl43AC57cvJaW7D" + "sourceId": "Compendium.dnd5e.spells.EOmsUcFQJTfG2oio" } }, - "img": "icons/magic/light/hand-sparks-glow-yellow.webp", + "img": "icons/magic/fire/projectile-fireball-smoke-orange.webp", "effects": [], "folder": null, - "ownership": { - "default": 0 - }, "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } + "systemId": "dnd5e", + "systemVersion": "2.0.0", + "coreVersion": "10.279", + "createdTime": 1661603486020, + "modifiedTime": 1661603486020, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.EOmsUcFQJTfG2oio" }, { - "_id": "5hEbhdZm1ozQ3B2g", - "name": "Tinker", - "type": "feat", + "_id": "Bnn9Nzajixvow9xi", + "name": "Light", + "ownership": { + "default": 0 + }, + "type": "spell", "system": { "description": { - "value": "You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time. When you create a device, choose one of the following options:Clockwork Toy: This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.Fire Starter: The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.Music Box: When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.", + "value": "You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { - "type": "hour", + "type": "action", "cost": 1, - "condition": "Expend 10 gp worth of materials" + "condition": "" }, "duration": { - "value": "", - "units": "" + "value": "1", + "units": "hour" }, "cover": null, "crewed": false, "target": { - "value": null, + "value": 1, "width": null, "units": "", - "type": "" + "type": "object", + "prompt": true }, "range": { "value": null, "long": null, - "units": "" + "units": "touch" }, "uses": { "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "", "chatFlavor": "", "critical": { @@ -1980,87 +2197,110 @@ }, "formula": "", "save": { - "ability": "", - "dc": null, + "ability": "dex", + "dc": 13, "scaling": "spell" }, - "type": { - "value": "", - "subtype": "" + "level": 0, + "school": "evo", + "components": { + "vocal": true, + "somatic": false, + "material": true, + "ritual": false, + "concentration": false }, - "requirements": "Rock Gnome", - "recharge": { - "value": null, - "charged": false + "materials": { + "value": "A firefly or phosphorescent moss.", + "consumed": false, + "cost": 0, + "supply": 0 + }, + "preparation": { + "mode": "prepared", + "prepared": false + }, + "scaling": { + "mode": "none", + "formula": "" } }, "sort": 0, "flags": { "core": { - "sourceId": "Compendium.dnd5e.races.koRPOLtj8XAFMwnW" + "sourceId": "Compendium.dnd5e.spells.Bnn9Nzajixvow9xi" } }, - "img": "icons/commodities/tech/cog-steel.webp", + "img": "icons/magic/light/explosion-star-small-blue-yellow.webp", "effects": [], "folder": null, - "ownership": { - "default": 0 - }, "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } + "systemId": "dnd5e", + "systemVersion": "2.0.0", + "coreVersion": "10.279", + "createdTime": 1661603486021, + "modifiedTime": 1661603486021, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.Bnn9Nzajixvow9xi" }, { - "_id": "zb2ggSgTNtBj8HWl", - "name": "Gnome", - "type": "feat", + "_id": "Utk1OQRwYkMkFRD3", + "name": "Mage Hand", + "ownership": { + "default": 0 + }, + "type": "spell", "system": { "description": { - "value": "\n\n\nYour gnome character has certain characteristics in common with all other gnomes. Ability Score Increase. Your Intelligence score increases by 2.Age. Gnomes mature at the same rate humans do, and most are expected to settle down into an adult life by around age 40. They can live 350 to almost 500 years.Alignment. Gnomes are most often good. Those who tend toward law are sages, engineers, researchers, scholars, investigators, or inventors. Those who tend toward chaos are minstrels, tricksters, wanderers, or fanciful jewelers. Gnomes are good-‐‑hearted, and even the tricksters among them are more playful than vicious.Size. Gnomes are between 3 and 4 feet tall and average about 40 pounds. Your size is Small. Speed. Your base walking speed is 25 feet.Darkvision. Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Gnome Cunning. @Compendium[dnd5e.races.EHhr9umJ5kxJFCQH]{Gnome Cunning} You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.Languages. You can speak, read, and write Common and Gnomish. The Gnomish language, which uses the Dwarvish script, is renowned for its technical treatises and its catalogs of knowledge about the natural world.\n\n\n", + "value": "A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.The hand can't attack, activate magic items, or carry more than 10 pounds.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { - "type": "", - "cost": null, + "type": "action", + "cost": 1, "condition": "" }, "duration": { - "value": "", - "units": "" + "value": "1", + "units": "minute" }, "cover": null, "crewed": false, "target": { - "value": null, + "value": 1, "width": null, "units": "", - "type": "" + "type": "space", + "prompt": true }, "range": { - "value": null, + "value": 30, "long": null, - "units": "" + "units": "ft" }, "uses": { "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, - "ability": null, - "actionType": "", + "ability": "", + "actionType": "util", "attackBonus": "", "chatFlavor": "", "critical": { @@ -2077,83 +2317,106 @@ "dc": null, "scaling": "spell" }, - "type": { + "level": 0, + "school": "con", + "components": { + "vocal": true, + "somatic": true, + "material": false, + "ritual": false, + "concentration": false + }, + "materials": { "value": "", - "subtype": "" + "consumed": false, + "cost": 0, + "supply": 0 }, - "requirements": "", - "recharge": { - "value": null, - "charged": false + "preparation": { + "mode": "prepared", + "prepared": false + }, + "scaling": { + "mode": "none", + "formula": "" } }, "sort": 0, "flags": { "core": { - "sourceId": "Compendium.dnd5e.races.kmRnMETG5hB9Bmwu" + "sourceId": "Compendium.dnd5e.spells.Utk1OQRwYkMkFRD3" } }, - "img": "icons/magic/fire/projectile-meteor-salvo-strong-purple-yellow.webp", + "img": "icons/magic/water/water-hand.webp", "effects": [], "folder": null, - "ownership": { - "default": 0 - }, "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } + "systemId": "dnd5e", + "systemVersion": "2.0.0", + "coreVersion": "10.279", + "createdTime": 1661603486021, + "modifiedTime": 1661603486021, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.Utk1OQRwYkMkFRD3" }, { - "_id": "PaLpYN8wbP0MyP2w", - "name": "Rock Gnome", - "type": "feat", + "_id": "7p9IuWrSWFgfyQo2", + "name": "Alarm", + "ownership": { + "default": 0 + }, + "type": "spell", "system": { "description": { - "value": "\n\nAs a rock gnome, you have a natural inventiveness and hardiness beyond that of other gnomes.\n\n\n\n\n\nAbility Score Increase. Your Constitution score increases by 1.Artificer's Lore. @Compendium[dnd5e.races.OQA1sHxKnSJq01dL]{Artificer's Lore} Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.Tinker. @Compendium[dnd5e.races.koRPOLtj8XAFMwnW]{Tinker} You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time.When you create a device, choose one of the following options:Clockwork Toy. This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.Fire Starter. The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.Music Box. When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.\n\n\n", + "value": "You set an alarm against unwanted intrusion. Choose a door, a window, or an area within range that is no larger than a 20-foot cube. Until the spell ends, an alarm alerts you whenever a Tiny or larger creature touches or enters the warded area. When you cast the spell, you can designate creatures that won't set off the alarm. You also choose whether the alarm is mental or audible.A mental alarm alerts you with a ping in your mind if you are within 1 mile of the warded area. This ping awakens you if you are sleeping.An audible alarm produces the sound of a hand bell for 10 seconds within 60 feet.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { - "type": "", - "cost": null, + "type": "minute", + "cost": 1, "condition": "" }, "duration": { - "value": "", - "units": "" + "value": "8", + "units": "hour" }, "cover": null, "crewed": false, "target": { - "value": null, + "value": 20, "width": null, - "units": "", - "type": "" + "units": "ft", + "type": "cube", + "prompt": true }, "range": { - "value": null, + "value": 30, "long": null, - "units": "" + "units": "ft" }, "uses": { "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, - "ability": null, - "actionType": "", + "ability": "", + "actionType": "util", "attackBonus": "", "chatFlavor": "", "critical": { @@ -2170,86 +2433,104 @@ "dc": null, "scaling": "spell" }, - "type": { - "value": "", - "subtype": "" + "level": 1, + "school": "abj", + "components": { + "vocal": true, + "somatic": true, + "material": true, + "ritual": true, + "concentration": false }, - "requirements": "Gnome", - "recharge": { - "value": null, - "charged": false + "materials": { + "value": "A tiny bell and a piece of fine silver wire.", + "consumed": false, + "cost": 0, + "supply": 0 + }, + "preparation": { + "mode": "prepared", + "prepared": false + }, + "scaling": { + "mode": "none", + "formula": "" } }, "sort": 0, "flags": { "core": { - "sourceId": "Compendium.dnd5e.races.TZtarkKs6cgGD7z2" + "sourceId": "Compendium.dnd5e.spells.7p9IuWrSWFgfyQo2" } }, - "img": "icons/magic/fire/projectile-meteor-salvo-light-purple.webp", + "img": "icons/magic/symbols/runes-triangle-orange-purple.webp", "effects": [], "folder": null, - "ownership": { - "default": 0 - }, "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null - } + "systemId": "dnd5e", + "systemVersion": "2.0.0", + "coreVersion": "10.279", + "createdTime": 1661603486022, + "modifiedTime": 1661603486022, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.7p9IuWrSWFgfyQo2" }, { - "_id": "EOmsUcFQJTfG2oio", - "name": "Fire Bolt", - "ownership": { - "default": 0 - }, + "_id": "z1mx84ONwkXKUZd7", + "name": "Shield", "type": "spell", + "img": "icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp", "system": { "description": { - "value": "You hurl a mote of fire at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried.This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).", + "value": "An invisible barrier of magical force appears and protects you. Until the start of your next turn, you have a +5 bonus to AC, including against the triggering attack, and you take no damage from magic missile.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { - "type": "action", + "type": "reaction", "cost": 1, - "condition": "" + "condition": "Which you take when you are hit by an attack or targeted by the magic missile spell" }, "duration": { - "value": "", - "units": "inst" + "value": "1", + "units": "round" }, "cover": null, "crewed": false, "target": { - "value": 1, + "value": null, "width": null, "units": "", - "type": "creature" + "type": "self", + "prompt": true }, "range": { - "value": 120, + "value": null, "long": null, - "units": "ft" + "units": "self" }, "uses": { "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", - "actionType": "rsak", + "actionType": "util", "attackBonus": "", "chatFlavor": "", "critical": { @@ -2257,12 +2538,7 @@ "damage": "" }, "damage": { - "parts": [ - [ - "1d10", - "fire" - ] - ], + "parts": [], "versatile": "" }, "formula": "", @@ -2271,8 +2547,8 @@ "dc": null, "scaling": "spell" }, - "level": 0, - "school": "evo", + "level": 1, + "school": "abj", "components": { "vocal": true, "somatic": true, @@ -2291,77 +2567,118 @@ "prepared": false }, "scaling": { - "mode": "cantrip", + "mode": "none", "formula": "" } }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.spells.EOmsUcFQJTfG2oio" - } - }, - "img": "icons/magic/fire/projectile-fireball-smoke-orange.webp", - "effects": [], - "folder": null, - "_stats": { - "systemId": "dnd5e", - "systemVersion": "2.0.0", - "coreVersion": "10.279", - "createdTime": 1661603486020, - "modifiedTime": 1661603486020, - "lastModifiedBy": "dnd5ebuilder0000" - } - }, - { - "_id": "Bnn9Nzajixvow9xi", - "name": "Light", - "ownership": { - "default": 0 - }, - "type": "spell", - "system": { - "description": { - "value": "You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.", + "effects": [ + { + "_id": "6pbotGIvqQkraPva", + "flags": {}, + "changes": [ + { + "key": "system.attributes.ac.bonus", + "value": "5", + "mode": 2, + "priority": null + } + ], + "disabled": true, + "duration": { + "startTime": null, + "rounds": 1, + "seconds": null, + "combat": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "icon": "icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp", + "label": "Shield", + "origin": "Item.FlLKKv7bQBlIAs11", + "tint": null, + "transfer": true, + "sort": 0, + "_key": "!actors.items.effects!4Jsv5vYaJ1atUEDV.z1mx84ONwkXKUZd7.6pbotGIvqQkraPva" + } + ], + "folder": null, + "sort": 0, + "ownership": { + "default": 0 + }, + "flags": { + "core": { + "sourceId": "Compendium.dnd5e.spells.z1mx84ONwkXKUZd7" + } + }, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.0.0", + "coreVersion": "10.279", + "createdTime": 1661603486022, + "modifiedTime": 1661603486022, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.z1mx84ONwkXKUZd7" + }, + { + "_id": "JGT5bNqu9REL7Fuz", + "name": "Find Familiar", + "ownership": { + "default": 0 + }, + "type": "spell", + "system": { + "description": { + "value": "Your familiar acts independently of you, but it always obeys your commands. In combat, it rolls its own initiative and acts on its own turn. A familiar can't attack, but it can take other actions as normal.When the familiar drops to 0 hit points, it disappears, leaving behind no physical form. It reappears after you cast this spell again.While your familiar is within 100 feet of you, you can communicate with it telepathically. Additionally, as an action, you can see through your familiar's eyes and hear what it hears until the start of your next turn, gaining the benefits of any special senses that the familiar has. During this time, you are deaf and blind with regard to your own senses.As an action, you can temporarily dismiss your familiar. It disappears into a pocket dimension where it awaits your summons. Alternatively, you can dismiss it forever. As an action while it is temporarily dismissed, you can cause it to reappear in any unoccupied space within 30 feet of you.You can't have more than one familiar at a time. If you cast this spell while you already have a familiar, you instead cause it to adopt a new form. Choose one of the forms from the above list. Your familiar transforms into the chosen creature.Finally, when you cast a spell with a range of touch, your familiar can deliver the spell as if it had cast the spell. Your familiar must be within 100 feet of you, and it must use its reaction to deliver the spell when you cast it. If the spell requires an attack roll, you use your action modifier for the roll.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { - "type": "action", + "type": "hour", "cost": 1, "condition": "" }, "duration": { - "value": "1", - "units": "hour" + "value": "", + "units": "inst" }, "cover": null, "crewed": false, "target": { - "value": 1, + "value": null, "width": null, - "units": "", - "type": "object" + "units": "any", + "type": "space", + "prompt": true }, "range": { - "value": null, + "value": 10, "long": null, - "units": "touch" + "units": "ft" }, "uses": { "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", - "actionType": "save", + "actionType": "util", "attackBonus": "", "chatFlavor": "", "critical": { @@ -2374,23 +2691,23 @@ }, "formula": "", "save": { - "ability": "dex", - "dc": 13, + "ability": "", + "dc": null, "scaling": "spell" }, - "level": 0, - "school": "evo", + "level": 1, + "school": "con", "components": { "vocal": true, - "somatic": false, + "somatic": true, "material": true, - "ritual": false, + "ritual": true, "concentration": false }, "materials": { - "value": "A firefly or phosphorescent moss.", - "consumed": false, - "cost": 0, + "value": "10 gp worth of charcoal, incense, and herbs that must be consumed by fire in a brass brazier", + "consumed": true, + "cost": 10, "supply": 0 }, "preparation": { @@ -2405,43 +2722,47 @@ "sort": 0, "flags": { "core": { - "sourceId": "Compendium.dnd5e.spells.Bnn9Nzajixvow9xi" + "sourceId": "Compendium.dnd5e.spells.JGT5bNqu9REL7Fuz" } }, - "img": "icons/magic/light/explosion-star-small-blue-yellow.webp", + "img": "icons/magic/nature/wolf-paw-glow-purple-teal.webp", "effects": [], "folder": null, "_stats": { "systemId": "dnd5e", "systemVersion": "2.0.0", "coreVersion": "10.279", - "createdTime": 1661603486021, - "modifiedTime": 1661603486021, + "createdTime": 1661603486025, + "modifiedTime": 1661603486025, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.JGT5bNqu9REL7Fuz" }, { - "_id": "Utk1OQRwYkMkFRD3", - "name": "Mage Hand", - "ownership": { - "default": 0 - }, + "_id": "CKZTpZlxj7hjjo2H", + "name": "Mage Armor", "type": "spell", + "img": "icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp", "system": { "description": { - "value": "A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.The hand can't attack, activate magic items, or carry more than 10 pounds.", + "value": "You touch a willing creature who isn't wearing armor, and a protective magical force surrounds it until the spell ends. The target's base AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor or if you dismiss the spell as an action.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, "condition": "" }, "duration": { - "value": "1", - "units": "minute" + "value": "8", + "units": "hour" }, "cover": null, "crewed": false, @@ -2449,23 +2770,26 @@ "value": 1, "width": null, "units": "", - "type": "space" + "type": "creature", + "prompt": true }, "range": { - "value": 30, + "value": null, "long": null, - "units": "ft" + "units": "touch" }, "uses": { "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", "actionType": "util", @@ -2485,17 +2809,17 @@ "dc": null, "scaling": "spell" }, - "level": 0, - "school": "con", + "level": 1, + "school": "abj", "components": { "vocal": true, "somatic": true, - "material": false, + "material": true, "ritual": false, "concentration": false }, "materials": { - "value": "", + "value": "A piece of cured leather", "consumed": false, "cost": 0, "supply": 0 @@ -2509,46 +2833,82 @@ "formula": "" } }, + "effects": [ + { + "_id": "cfwMU7LuOJ619Lny", + "changes": [ + { + "key": "system.attributes.ac.calc", + "value": "mage", + "mode": 5, + "priority": null + } + ], + "disabled": true, + "duration": { + "startTime": null, + "seconds": null, + "combat": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "icon": "icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp", + "label": "Mage Armor", + "origin": "Compendium.dnd5e.spells.CKZTpZlxj7hjjo2H", + "transfer": true, + "flags": {}, + "tint": null, + "sort": 0, + "_key": "!actors.items.effects!4Jsv5vYaJ1atUEDV.CKZTpZlxj7hjjo2H.cfwMU7LuOJ619Lny" + } + ], + "folder": null, "sort": 0, + "ownership": { + "default": 0 + }, "flags": { "core": { - "sourceId": "Compendium.dnd5e.spells.Utk1OQRwYkMkFRD3" + "sourceId": "Compendium.dnd5e.spells.CKZTpZlxj7hjjo2H" } }, - "img": "icons/magic/water/water-hand.webp", - "effects": [], - "folder": null, "_stats": { "systemId": "dnd5e", "systemVersion": "2.0.0", "coreVersion": "10.279", - "createdTime": 1661603486021, - "modifiedTime": 1661603486021, + "createdTime": 1661603486026, + "modifiedTime": 1661603486026, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.CKZTpZlxj7hjjo2H" }, { - "_id": "7p9IuWrSWFgfyQo2", - "name": "Alarm", - "ownership": { - "default": 0 - }, + "_id": "KhwiSi9fwVfUPtku", + "name": "Sleep", "type": "spell", + "img": "icons/magic/light/explosion-star-small-pink.webp", "system": { "description": { - "value": "You set an alarm against unwanted intrusion. Choose a door, a window, or an area within range that is no larger than a 20-foot cube. Until the spell ends, an alarm alerts you whenever a Tiny or larger creature touches or enters the warded area. When you cast the spell, you can designate creatures that won't set off the alarm. You also choose whether the alarm is mental or audible.A mental alarm alerts you with a ping in your mind if you are within 1 mile of the warded area. This ping awakens you if you are sleeping.An audible alarm produces the sound of a hand bell for 10 seconds within 60 feet.", + "value": "This spell sends creatures into a magical slumber. Roll 5d8; the total is how many hit points of creatures this spell can affect. Creatures within 20 feet of a point you choose within range are affected in ascending order of their current hit points (ignoring unconscious creatures).Starting with the creature that has the lowest current hit points, each creature affected by this spell falls unconscious until the spell ends, the sleeper takes damage, or someone uses an action to shake or slap the sleeper awake. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.Undead and creatures immune to being charmed aren't affected by this spell.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d8 for each slot level above 1st.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { - "type": "minute", + "type": "action", "cost": 1, "condition": "" }, "duration": { - "value": "8", - "units": "hour" + "value": "1", + "units": "minute" }, "cover": null, "crewed": false, @@ -2556,10 +2916,11 @@ "value": 20, "width": null, "units": "ft", - "type": "cube" + "type": "sphere", + "prompt": true }, "range": { - "value": 30, + "value": 90, "long": null, "units": "ft" }, @@ -2567,15 +2928,17 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", - "actionType": "util", + "actionType": "other", "attackBonus": "", "chatFlavor": "", "critical": { @@ -2583,7 +2946,12 @@ "damage": "" }, "damage": { - "parts": [], + "parts": [ + [ + "5d8", + "" + ] + ], "versatile": "" }, "formula": "", @@ -2593,16 +2961,16 @@ "scaling": "spell" }, "level": 1, - "school": "abj", + "school": "enc", "components": { "vocal": true, "somatic": true, "material": true, - "ritual": true, + "ritual": false, "concentration": false }, "materials": { - "value": "A tiny bell and a piece of fine silver wire.", + "value": "A pinch of fine sand, rose petals, or a cricket.", "consumed": false, "cost": 0, "supply": 0 @@ -2612,75 +2980,88 @@ "prepared": false }, "scaling": { - "mode": "none", - "formula": "" + "mode": "level", + "formula": "2d8" } }, + "effects": [], + "folder": null, "sort": 0, + "ownership": { + "default": 0 + }, "flags": { "core": { - "sourceId": "Compendium.dnd5e.spells.7p9IuWrSWFgfyQo2" + "sourceId": "Compendium.dnd5e.spells.KhwiSi9fwVfUPtku" } }, - "img": "icons/magic/symbols/runes-triangle-orange-purple.webp", - "effects": [], - "folder": null, "_stats": { "systemId": "dnd5e", "systemVersion": "2.0.0", "coreVersion": "10.279", - "createdTime": 1661603486022, - "modifiedTime": 1661603486022, + "createdTime": 1661603486027, + "modifiedTime": 1661603486027, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.KhwiSi9fwVfUPtku" }, { - "_id": "z1mx84ONwkXKUZd7", - "name": "Shield", + "_id": "41JIhpDyM9Anm7cs", + "name": "Magic Missile", + "ownership": { + "default": 0 + }, "type": "spell", - "img": "icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp", "system": { "description": { - "value": "An invisible barrier of magical force appears and protects you. Until the start of your next turn, you have a +5 bonus to AC, including against the triggering attack, and you take no damage from magic missile.", + "value": "You create three glowing darts of magical force. Each dart hits a creature of your choice that you can see within range. A dart deals 1d4 + 1 force damage to its target. The darts all strike simultaneously, and you can direct them to hit one creature or several.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the spell creates one more dart for each slot level above 1st.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { - "type": "reaction", + "type": "action", "cost": 1, - "condition": "Which you take when you are hit by an attack or targeted by the magic missile spell" + "condition": "" }, "duration": { - "value": "1", - "units": "round" + "value": "", + "units": "inst" }, "cover": null, "crewed": false, "target": { - "value": null, + "value": 1, "width": null, "units": "", - "type": "self" + "type": "creature", + "prompt": true }, "range": { - "value": null, + "value": 120, "long": null, - "units": "self" + "units": "ft" }, "uses": { "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", - "actionType": "util", + "actionType": "other", "attackBonus": "", "chatFlavor": "", "critical": { @@ -2688,7 +3069,12 @@ "damage": "" }, "damage": { - "parts": [], + "parts": [ + [ + "1d4 + 1", + "force" + ] + ], "versatile": "" }, "formula": "", @@ -2698,7 +3084,7 @@ "scaling": "spell" }, "level": 1, - "school": "abj", + "school": "evo", "components": { "vocal": true, "somatic": true, @@ -2717,283 +3103,445 @@ "prepared": false }, "scaling": { - "mode": "none", + "mode": "level", "formula": "" } }, - "effects": [ - { - "_id": "6pbotGIvqQkraPva", - "flags": {}, - "changes": [ - { - "key": "system.attributes.ac.bonus", - "value": "5", - "mode": 2, - "priority": null - } - ], - "disabled": true, - "duration": { - "startTime": null, - "rounds": 1, - "seconds": null, - "combat": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "icon": "icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp", - "label": "Shield", - "origin": "Item.FlLKKv7bQBlIAs11", - "tint": null, - "transfer": true, - "sort": 0 - } - ], - "folder": null, "sort": 0, - "ownership": { - "default": 0 - }, "flags": { "core": { - "sourceId": "Compendium.dnd5e.spells.z1mx84ONwkXKUZd7" + "sourceId": "Compendium.dnd5e.spells.41JIhpDyM9Anm7cs" } }, + "img": "icons/magic/fire/projectile-meteor-salvo-light-pink.webp", + "effects": [], + "folder": null, "_stats": { "systemId": "dnd5e", "systemVersion": "2.0.0", "coreVersion": "10.279", - "createdTime": 1661603486022, - "modifiedTime": 1661603486022, + "createdTime": 1661603486027, + "modifiedTime": 1661603486027, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.41JIhpDyM9Anm7cs" }, { - "_id": "JGT5bNqu9REL7Fuz", - "name": "Find Familiar", - "ownership": { - "default": 0 - }, - "type": "spell", + "name": "Scholar", + "type": "background", "system": { "description": { - "value": "Your familiar acts independently of you, but it always obeys your commands. In combat, it rolls its own initiative and acts on its own turn. A familiar can't attack, but it can take other actions as normal.When the familiar drops to 0 hit points, it disappears, leaving behind no physical form. It reappears after you cast this spell again.While your familiar is within 100 feet of you, you can communicate with it telepathically. Additionally, as an action, you can see through your familiar's eyes and hear what it hears until the start of your next turn, gaining the benefits of any special senses that the familiar has. During this time, you are deaf and blind with regard to your own senses.As an action, you can temporarily dismiss your familiar. It disappears into a pocket dimension where it awaits your summons. Alternatively, you can dismiss it forever. As an action while it is temporarily dismissed, you can cause it to reappear in any unoccupied space within 30 feet of you.You can't have more than one familiar at a time. If you cast this spell while you already have a familiar, you instead cause it to adopt a new form. Choose one of the forms from the above list. Your familiar transforms into the chosen creature.Finally, when you cast a spell with a range of touch, your familiar can deliver the spell as if it had cast the spell. Your familiar must be within 100 feet of you, and it must use its reaction to deliver the spell when you cast it. If the spell requires an attack roll, you use your action modifier for the roll.", + "value": "Skill Proficiencies: History, plus your choice of one from among Arcana, Nature, and ReligionLanguages: Two of your choiceEquipment: Scholar's robes, a writing kit, a book of lore, and a pouch containing 10 gp", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "hour", - "cost": 1, - "condition": "" - }, - "duration": { - "value": "", - "units": "inst" - }, - "cover": null, - "crewed": false, - "target": { - "value": null, - "width": null, - "units": "any", - "type": "space" - }, - "range": { - "value": 10, - "long": null, - "units": "ft" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": "", - "actionType": "util", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "level": 1, - "school": "con", - "components": { - "vocal": true, - "somatic": true, - "material": true, - "ritual": true, - "concentration": false - }, - "materials": { - "value": "10 gp worth of charcoal, incense, and herbs that must be consumed by fire in a brass brazier", - "consumed": true, - "cost": 10, - "supply": 0 - }, - "preparation": { - "mode": "prepared", - "prepared": false + "source": { + "custom": "", + "book": "", + "page": "", + "license": "CC-BY-4.0" }, - "scaling": { - "mode": "none", - "formula": "" - } - }, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.dnd5e.spells.JGT5bNqu9REL7Fuz" - } + "advancement": [] }, - "img": "icons/magic/nature/wolf-paw-glow-purple-teal.webp", + "img": "icons/magic/light/hand-sparks-smoke-teal.webp", "effects": [], "folder": null, + "sort": 0, + "ownership": { + "default": 0 + }, + "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.0.0", - "coreVersion": "10.279", - "createdTime": 1661603486025, - "modifiedTime": 1661603486025, + "systemVersion": "2.1.0", + "coreVersion": "10.291", + "createdTime": 1673040183979, + "modifiedTime": 1673040326437, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_id": "Nt4QsuSYvhIwSoO5", + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.Nt4QsuSYvhIwSoO5" }, { - "_id": "CKZTpZlxj7hjjo2H", - "name": "Mage Armor", - "type": "spell", - "img": "icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp", + "_id": "N4bhi6usK8wuNEnh", + "name": "Wizard", + "type": "class", + "img": "icons/magic/air/wind-tornado-wall-blue.webp", "system": { "description": { - "value": "You touch a willing creature who isn't wearing armor, and a protective magical force surrounds it until the spell ends. The target's base AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor or if you dismiss the spell as an action.", + "value": "As a wizard, you gain the following class features.Hit PointsHit Dice: 1d6 per wizard levelHit Points at 1st Level: 6 + your Constitution modifierHit Points at Higher Levels: 1d6 (or 4) + your Constitution modifier per wizard level after 1stProficienciesArmor: NoneWeapons: Daggers, darts, slings, quarterstaffs, light crossbowsTools: NoneSaving Throws: Intelligence, WisdomSkills: Choose two from Arcana, History, Insight, Investigation, Medicine, and ReligionEquipmentYou start with the following equipment, in addition to the equipment granted by your background:(a) a quarterstaff or (b) a dagger(a) a component pouch or (b) an arcane focus(a) a scholar's pack or (b) an explorer's packA spellbookWizard AdvancementLevelProficiency BonusFeatures1st+2@Compendium[dnd5e.classfeatures.gbNo5eVPaqr8IVKL]{Spellcasting}, @Compendium[dnd5e.classfeatures.e0uTcFPpgxjIyUW9]{Arcane Recovery}2nd+2@Compendium[dnd5e.classfeatures.AEWr9EMxy5gj4ZFT]{Arcane Tradition}3rd+22nd Level Spell Slot4th+2@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}5th+33rd Level Spell Slot6th+3Arcane Tradition feature7th+34th Level Spell Slot8th+3@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}9th+45th Level Spell Slot10th+4Arcane Tradition feature11th+46 Level Spell Slot12th+4@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}13th+57th Level Spell Slot14th+5Arcane Tradition feature15th+58th Level Spell Slot16th+5@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}17th+69 Level Spell Slot18th+6@Compendium[dnd5e.classfeatures.JfFfHTeIszx1hNRx]{Spell Mastery}19th+6@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}20th+6@Compendium[dnd5e.classfeatures.nUrZDi6QN1YjwAr6]{Signature Spells}Your SpellbookThe spells that you add to your spellbook as you gain levels reflect the arcane research you conduct on your own, as well as intellectual breakthroughs you have had about the nature of the multiverse. You might find other spells during your adventures. You could discover a spell recorded on a scroll in an evil wizard's chest, for example, or in a dusty tome in an ancient library.Copying a Spell into the Book. When you find a wizard spell of 1st level or higher, you can add it to your spellbook if it is of a spell level you can prepare and if you can spare the time to decipher and copy it.Copying that spell into your spellbook involves reproducing the basic form of the spell, then deciphering the unique system of notation used by the wizard who wrote it. You must practice the spell until you understand the sounds or gestures required, then transcribe it into your spellbook using your own notation.For each level of the spell, the process takes 2 hours and costs 50 gp. The cost represents material components you expend as you experiment with the spell to master it, as well as the fine inks you need to record it. Once you have spent this time and money, you can prepare the spell just like your other spells.Replacing the Book. You can copy a spell from your own spellbook into another book—for example, if you want to make a backup copy of your spellbook. This is just like copying a new spell into your spellbook, but faster and easier, since you understand your own notation and already know how to cast the spell. You need spend only 1 hour and 10 gp for each level of the copied spell.If you lose your spellbook, you can use the same procedure to transcribe the spells that you have prepared into a new spellbook. Filling out the remainder of your spellbook requires you to find new spells to do so, as normal. For this reason, many wizards keep backup spellbooks in a safe place.The Book's Appearance. Your spellbook is a unique compilation of spells, with its own decorative flourishes and margin notes. It might be a plain, functional leather volume that you received as a gift from your master, a finely bound gilt-edged tome you found in an ancient library, or even a loose collection of notes scrounged together after you lost your previous spellbook in a mishap.Arcane TraditionsThe study of wizardry is ancient, stretching back to the earliest mortal discoveries of magic. It is firmly established in fantasy gaming worlds, with various traditions dedicated to its complex study.The most common arcane traditions in the multiverse revolve around the schools of magic. Wizards through the ages have cataloged thousands of spells, grouping them into eight categories called schools. In some places, these traditions are literally schools. In other institutions, the schools are more like academic departments, with rival faculties competing for students and funding. Even wizards who train apprentices in the solitude of their own towers use the division of magic into schools as a learning device, since the spells of each school require mastery of different techniques.@Compendium[dnd5e.subclasses.Ye5f3FReEnuXfi0y]{School of Evocation}", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "action", - "cost": 1, - "condition": "" - }, - "duration": { - "value": "8", - "units": "hour" - }, - "cover": null, - "crewed": false, - "target": { - "value": 1, - "width": null, - "units": "", - "type": "creature" - }, - "range": { - "value": null, - "long": null, - "units": "touch" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": "", - "actionType": "util", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "level": 1, - "school": "abj", - "components": { - "vocal": true, - "somatic": true, - "material": true, - "ritual": false, - "concentration": false - }, - "materials": { - "value": "A piece of cured leather", - "consumed": false, - "cost": 0, - "supply": 0 - }, - "preparation": { - "mode": "prepared", - "prepared": false + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" }, - "scaling": { - "mode": "none", - "formula": "" - } - }, - "effects": [ - { - "_id": "cfwMU7LuOJ619Lny", - "changes": [ - { - "key": "system.attributes.ac.calc", - "value": "mage", - "mode": 5, - "priority": null - } - ], - "disabled": true, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null + "identifier": "wizard", + "levels": 1, + "hitDice": "d6", + "hitDiceUsed": 0, + "advancement": [ + { + "type": "HitPoints", + "configuration": {}, + "value": { + "1": "max" + }, + "title": "Hit Points", + "icon": "systems/dnd5e/icons/svg/hit-points.svg", + "_id": "o1lOLgOTi4SFT675" }, - "icon": "icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp", - "label": "Mage Armor", - "origin": "Compendium.dnd5e.spells.CKZTpZlxj7hjjo2H", - "transfer": true, - "flags": {}, - "tint": null, - "sort": 0 + { + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.classfeatures.gbNo5eVPaqr8IVKL", + "Compendium.dnd5e.classfeatures.e0uTcFPpgxjIyUW9" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": { + "added": { + "ZCH7glEObWbjFGHB": "Compendium.dnd5e.classfeatures.gbNo5eVPaqr8IVKL", + "fnxa7jBxIHkDyZuU": "Compendium.dnd5e.classfeatures.e0uTcFPpgxjIyUW9" + } + }, + "level": 1, + "title": "Features", + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "NhwTsEnDKEFARuzC" + }, + { + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.classfeatures.AEWr9EMxy5gj4ZFT" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": {}, + "level": 2, + "title": "Features", + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "0uOmTQCuBt5Uamzq" + }, + { + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.classfeatures.JfFfHTeIszx1hNRx" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": {}, + "level": 18, + "title": "Features", + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "3mW9054CUxI1C7aO" + }, + { + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.classfeatures.nUrZDi6QN1YjwAr6" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": {}, + "level": 20, + "title": "Features", + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "Eb7ydpaIxiGHB08g" + }, + { + "type": "ItemChoice", + "configuration": { + "hint": "Choose two 3rd-level wizard spells in your spellbook as your signature spells.", + "choices": { + "20": 2 + }, + "allowDrops": true, + "type": "spell", + "pool": [], + "spell": { + "ability": "", + "preparation": "atwill", + "uses": { + "max": "1", + "per": "sr" + } + }, + "restriction": { + "type": "", + "subtype": "", + "level": "3" + } + }, + "value": {}, + "title": "Signature Spells", + "icon": "systems/dnd5e/icons/svg/item-choice.svg", + "_id": "tD8OooHM6soXzVTR" + }, + { + "type": "ScaleValue", + "configuration": { + "identifier": "cantrips-known", + "type": "number", + "distance": { + "units": "" + }, + "scale": { + "1": { + "value": 3 + }, + "4": { + "value": 4 + }, + "10": { + "value": 5 + } + } + }, + "value": {}, + "title": "Cantrips Known", + "icon": "systems/dnd5e/icons/svg/scale-value.svg", + "_id": "tLCuM1cHSnmr1VEu" + }, + { + "type": "AbilityScoreImprovement", + "configuration": { + "points": 2, + "fixed": { + "str": 0, + "dex": 0, + "con": 0, + "int": 0, + "wis": 0, + "cha": 0 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 4, + "title": "Ability Score Improvement", + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "EFPSW4WIEveFjZL0" + }, + { + "type": "AbilityScoreImprovement", + "configuration": { + "points": 2, + "fixed": { + "str": 0, + "dex": 0, + "con": 0, + "int": 0, + "wis": 0, + "cha": 0 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 8, + "title": "Ability Score Improvement", + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "uytL1QdWhsGgRAGk" + }, + { + "type": "AbilityScoreImprovement", + "configuration": { + "points": 2, + "fixed": { + "str": 0, + "dex": 0, + "con": 0, + "int": 0, + "wis": 0, + "cha": 0 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 12, + "title": "Ability Score Improvement", + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "OC4KaX8DSQVZFqli" + }, + { + "type": "AbilityScoreImprovement", + "configuration": { + "points": 2, + "fixed": { + "str": 0, + "dex": 0, + "con": 0, + "int": 0, + "wis": 0, + "cha": 0 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 16, + "title": "Ability Score Improvement", + "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", + "_id": "tNdNUznXfjAyXGGQ" + }, + { + "_id": "puDaUsYrlks0z5gm", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 2, + "fixed": { + "str": 0, + "dex": 0, + "con": 0, + "int": 0, + "wis": 0, + "cha": 0 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 19, + "title": "" + }, + { + "_id": "JXcSQmjdfaJeSjZ7", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim:dagger", + "weapon:sim:dart", + "weapon:sim:lightcrossbow", + "weapon:sim:quarterstaff", + "weapon:sim:sling" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "weapon:sim:dagger", + "weapon:sim:dart", + "weapon:sim:lightcrossbow", + "weapon:sim:quarterstaff", + "weapon:sim:sling" + ] + } + }, + { + "_id": "r1DG0GF8L6SkLNvq", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "saves:int", + "saves:wis" + ], + "choices": [] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "saves:int", + "saves:wis" + ] + } + }, + { + "_id": "6blzmKC4EON0KM2e", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:arc", + "skills:his", + "skills:ins", + "skills:inv", + "skills:med", + "skills:rel" + ] + } + ] + }, + "level": 1, + "title": "", + "classRestriction": "primary", + "value": { + "chosen": [ + "skills:med", + "skills:inv" + ] + } + } + ], + "spellcasting": { + "progression": "full", + "ability": "int" } - ], + }, + "effects": [], "folder": null, "sort": 0, "ownership": { @@ -3001,65 +3549,76 @@ }, "flags": { "core": { - "sourceId": "Compendium.dnd5e.spells.CKZTpZlxj7hjjo2H" + "sourceId": "Compendium.dnd5e.classes.wZK2Q0rXB0AQo8h3" } }, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.0.0", - "coreVersion": "10.279", - "createdTime": 1661603486026, - "modifiedTime": 1661603486026, + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234283, + "modifiedTime": 1699993725827, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.N4bhi6usK8wuNEnh" }, { - "_id": "KhwiSi9fwVfUPtku", - "name": "Sleep", - "type": "spell", - "img": "icons/magic/light/explosion-star-small-pink.webp", + "_id": "ZCH7glEObWbjFGHB", + "name": "Spellcasting (Wizard)", + "ownership": { + "default": 0 + }, + "type": "feat", "system": { "description": { - "value": "This spell sends creatures into a magical slumber. Roll 5d8; the total is how many hit points of creatures this spell can affect. Creatures within 20 feet of a point you choose within range are affected in ascending order of their current hit points (ignoring unconscious creatures).Starting with the creature that has the lowest current hit points, each creature affected by this spell falls unconscious until the spell ends, the sleeper takes damage, or someone uses an action to shake or slap the sleeper awake. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.Undead and creatures immune to being charmed aren't affected by this spell.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d8 for each slot level above 1st.", + "value": "As a student of arcane magic, you have a spellbook containing spells that show the first glimmerings of your true power.\nCantrips\nAt 1st level, you know three cantrips of your choice from the wizard spell list. You learn additional wizard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Wizard table.\nSpellbook\nAt 1st level, you have a spellbook containing six 1stlevel wizard spells of your choice. Your spellbook is the repository of the wizard spells you know, except your cantrips, which are fixed in your mind.\nPreparing and Casting Spells\nThe Wizard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nYou prepare the list of wizard spells that are available for you to cast. To do so, choose a number of wizard spells from your spellbook equal to your Intelligence modifier + your wizard level (minimum of one spell). The spells must be of a level for which you have spell slots.\nFor example, if you're a 3rd-level wizard, you have four 1st-level and two 2nd-level spell slots. With an Intelligence of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination, chosen from your spellbook. If you prepare the 1st-level spell magic missile, you can cast it using a 1st-level or a 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of wizard spells requires time spent studying your spellbook and memorizing the incantations and gestures you must make to cast the spell: at least 1 minute per spell level for each spell on your list.\nSpellcasting Ability\nIntelligence is your spellcasting ability for your wizard spells, since you learn your spells through dedicated study and memorization. You use your Intelligence whenever a spell refers to your spellcasting ability. In addition, you use your Intelligence modifier when setting the saving throw DC for a wizard spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Intelligence modifier\nSpell attack modifier = your proficiency bonus + your Intelligence modifier\nRitual Casting\nYou can cast a wizard spell as a ritual if that spell has the ritual tag and you have the spell in your spellbook. You don't need to have the spell prepared.\nSpellcasting Focus\nYou can use an arcane focus as a spellcasting focus for your wizard spells.\nLearning Spells of 1st Level and Higher\nEach time you gain a wizard level, you can add two wizard spells of your choice to your spellbook for free. Each of these spells must be of a level for which you have spell slots, as shown on the Wizard table. On your adventures, you might find other spells that you can add to your spellbook (see the \"Your Spellbook\" sidebar).", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { - "type": "action", - "cost": 1, + "type": "", + "cost": null, "condition": "" }, "duration": { - "value": "1", - "units": "minute" + "value": "", + "units": "" }, "cover": null, "crewed": false, "target": { - "value": 20, + "value": null, "width": null, - "units": "ft", - "type": "sphere" + "units": "", + "type": "", + "prompt": true }, "range": { - "value": 90, + "value": null, "long": null, - "units": "ft" + "units": "" }, "uses": { "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, - "ability": "", - "actionType": "other", + "ability": null, + "actionType": "", "attackBonus": "", "chatFlavor": "", "critical": { @@ -3067,12 +3626,7 @@ "damage": "" }, "damage": { - "parts": [ - [ - "5d8", - "" - ] - ], + "parts": [], "versatile": "" }, "formula": "", @@ -3081,225 +3635,166 @@ "dc": null, "scaling": "spell" }, - "level": 1, - "school": "enc", - "components": { - "vocal": true, - "somatic": true, - "material": true, - "ritual": false, - "concentration": false - }, - "materials": { - "value": "A pinch of fine sand, rose petals, or a cricket.", - "consumed": false, - "cost": 0, - "supply": 0 - }, - "preparation": { - "mode": "prepared", - "prepared": false + "type": { + "value": "class", + "subtype": "" }, - "scaling": { - "mode": "level", - "formula": "2d8" + "requirements": "Wizard 1", + "recharge": { + "value": null, + "charged": false } }, - "effects": [], - "folder": null, - "sort": 0, - "ownership": { - "default": 0 - }, "flags": { - "core": { - "sourceId": "Compendium.dnd5e.spells.KhwiSi9fwVfUPtku" + "dnd5e": { + "sourceId": "Compendium.dnd5e.classfeatures.gbNo5eVPaqr8IVKL", + "advancementOrigin": "N4bhi6usK8wuNEnh.NhwTsEnDKEFARuzC" } }, + "img": "icons/magic/fire/explosion-embers-orange.webp", + "effects": [], + "folder": null, + "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.0.0", - "coreVersion": "10.279", - "createdTime": 1661603486027, - "modifiedTime": 1661603486027, + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234406, + "modifiedTime": 1699987548856, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.ZCH7glEObWbjFGHB" }, { - "_id": "41JIhpDyM9Anm7cs", - "name": "Magic Missile", + "_id": "fnxa7jBxIHkDyZuU", + "name": "Arcane Recovery", "ownership": { "default": 0 }, - "type": "spell", + "type": "feat", "system": { "description": { - "value": "You create three glowing darts of magical force. Each dart hits a creature of your choice that you can see within range. A dart deals 1d4 + 1 force damage to its target. The darts all strike simultaneously, and you can direct them to hit one creature or several.Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the spell creates one more dart for each slot level above 1st.", + "value": "You have learned to regain some of your magical energy by studying your spellbook. Once per day when you finish a short rest, you can choose expended spell slots to recover. The spell slots can have a combined level that is equal to or less than half your wizard level (rounded up), and none of the slots can be 6th level or higher.For example, if you're a 4th-level wizard, you can recover up to two levels worth of spell slots. You can recover either a 2nd-level spell slot or two 1st-level spell slots.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { - "type": "action", - "cost": 1, + "type": "special", + "cost": null, "condition": "" }, "duration": { "value": "", - "units": "inst" + "units": "" }, "cover": null, "crewed": false, "target": { - "value": 1, + "value": null, "width": null, "units": "", - "type": "creature" + "type": "self", + "prompt": true }, "range": { - "value": 120, + "value": null, "long": null, - "units": "ft" + "units": "self" }, "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" + "value": 1, + "max": "1", + "per": "lr", + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", - "actionType": "other", + "actionType": "util", "attackBonus": "", - "chatFlavor": "", + "chatFlavor": "The wizard can recover this number worth of spells slots (of 5th-level or lower):", "critical": { "threshold": null, "damage": "" }, - "damage": { - "parts": [ - [ - "1d4 + 1", - "force" - ] - ], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "level": 1, - "school": "evo", - "components": { - "vocal": true, - "somatic": true, - "material": false, - "ritual": false, - "concentration": false + "damage": { + "parts": [], + "versatile": "" }, - "materials": { - "value": "", - "consumed": false, - "cost": 0, - "supply": 0 + "formula": "ceil(@classes.wizard.levels/2)", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" }, - "preparation": { - "mode": "prepared", - "prepared": false + "type": { + "value": "class", + "subtype": "" }, - "scaling": { - "mode": "level", - "formula": "" + "requirements": "Wizard 1", + "recharge": { + "value": null, + "charged": false } }, - "sort": 0, "flags": { - "core": { - "sourceId": "Compendium.dnd5e.spells.41JIhpDyM9Anm7cs" + "dnd5e": { + "sourceId": "Compendium.dnd5e.classfeatures.e0uTcFPpgxjIyUW9", + "advancementOrigin": "N4bhi6usK8wuNEnh.NhwTsEnDKEFARuzC" } }, - "img": "icons/magic/fire/projectile-meteor-salvo-light-pink.webp", - "effects": [], - "folder": null, - "_stats": { - "systemId": "dnd5e", - "systemVersion": "2.0.0", - "coreVersion": "10.279", - "createdTime": 1661603486027, - "modifiedTime": 1661603486027, - "lastModifiedBy": "dnd5ebuilder0000" - } - }, - { - "name": "Scholar", - "type": "background", - "system": { - "description": { - "value": "Skill Proficiencies: History, plus your choice of one from among Arcana, Nature, and ReligionLanguages: Two of your choiceEquipment: Scholar's robes, a writing kit, a book of lore, and a pouch containing 10 gp", - "chat": "", - "unidentified": "" - }, - "source": "", - "advancement": [] - }, - "img": "icons/magic/light/hand-sparks-smoke-teal.webp", + "img": "icons/magic/earth/explosion-lava-stone-green.webp", "effects": [], "folder": null, "sort": 0, - "ownership": { - "default": 0 - }, - "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", - "createdTime": 1673040183979, - "modifiedTime": 1673040326437, + "systemVersion": "2.2.2", + "coreVersion": "10.303", + "createdTime": 1661787234399, + "modifiedTime": 1691519218869, "lastModifiedBy": "dnd5ebuilder0000" }, - "_id": "Nt4QsuSYvhIwSoO5" + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.fnxa7jBxIHkDyZuU" }, { - "_id": "N4bhi6usK8wuNEnh", - "name": "Wizard", - "type": "class", - "img": "icons/magic/air/wind-tornado-wall-blue.webp", + "_id": "ur4Pjajcd3IlxKlZ", + "name": "Rock Gnome", + "type": "race", + "img": "icons/environment/wilderness/terrain-rocks-brown.webp", "system": { "description": { - "value": "As a wizard, you gain the following class features.Hit PointsHit Dice: 1d6 per wizard levelHit Points at 1st Level: 6 + your Constitution modifierHit Points at Higher Levels: 1d6 (or 4) + your Constitution modifier per wizard level after 1stProficienciesArmor: NoneWeapons: Daggers, darts, slings, quarterstaffs, light crossbowsTools: NoneSaving Throws: Intelligence, WisdomSkills: Choose two from Arcana, History, Insight, Investigation, Medicine, and ReligionEquipmentYou start with the following equipment, in addition to the equipment granted by your background:(a) a quarterstaff or (b) a dagger(a) a component pouch or (b) an arcane focus(a) a scholar's pack or (b) an explorer's packA spellbookWizard AdvancementLevelProficiency BonusFeatures1st+2@Compendium[dnd5e.classfeatures.gbNo5eVPaqr8IVKL]{Spellcasting}, @Compendium[dnd5e.classfeatures.e0uTcFPpgxjIyUW9]{Arcane Recovery}2nd+2@Compendium[dnd5e.classfeatures.AEWr9EMxy5gj4ZFT]{Arcane Tradition}3rd+22nd Level Spell Slot4th+2@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}5th+33rd Level Spell Slot6th+3Arcane Tradition feature7th+34th Level Spell Slot8th+3@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}9th+45th Level Spell Slot10th+4Arcane Tradition feature11th+46 Level Spell Slot12th+4@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}13th+57th Level Spell Slot14th+5Arcane Tradition feature15th+58th Level Spell Slot16th+5@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}17th+69 Level Spell Slot18th+6@Compendium[dnd5e.classfeatures.JfFfHTeIszx1hNRx]{Spell Mastery}19th+6@Compendium[dnd5e.classfeatures.s0Cc2zcX0JzIgam5]{Ability Score Improvement}20th+6@Compendium[dnd5e.classfeatures.nUrZDi6QN1YjwAr6]{Signature Spells}Your SpellbookThe spells that you add to your spellbook as you gain levels reflect the arcane research you conduct on your own, as well as intellectual breakthroughs you have had about the nature of the multiverse. You might find other spells during your adventures. You could discover a spell recorded on a scroll in an evil wizard's chest, for example, or in a dusty tome in an ancient library.Copying a Spell into the Book. When you find a wizard spell of 1st level or higher, you can add it to your spellbook if it is of a spell level you can prepare and if you can spare the time to decipher and copy it.Copying that spell into your spellbook involves reproducing the basic form of the spell, then deciphering the unique system of notation used by the wizard who wrote it. You must practice the spell until you understand the sounds or gestures required, then transcribe it into your spellbook using your own notation.For each level of the spell, the process takes 2 hours and costs 50 gp. The cost represents material components you expend as you experiment with the spell to master it, as well as the fine inks you need to record it. Once you have spent this time and money, you can prepare the spell just like your other spells.Replacing the Book. You can copy a spell from your own spellbook into another book—for example, if you want to make a backup copy of your spellbook. This is just like copying a new spell into your spellbook, but faster and easier, since you understand your own notation and already know how to cast the spell. You need spend only 1 hour and 10 gp for each level of the copied spell.If you lose your spellbook, you can use the same procedure to transcribe the spells that you have prepared into a new spellbook. Filling out the remainder of your spellbook requires you to find new spells to do so, as normal. For this reason, many wizards keep backup spellbooks in a safe place.The Book's Appearance. Your spellbook is a unique compilation of spells, with its own decorative flourishes and margin notes. It might be a plain, functional leather volume that you received as a gift from your master, a finely bound gilt-edged tome you found in an ancient library, or even a loose collection of notes scrounged together after you lost your previous spellbook in a mishap.Arcane TraditionsThe study of wizardry is ancient, stretching back to the earliest mortal discoveries of magic. It is firmly established in fantasy gaming worlds, with various traditions dedicated to its complex study.The most common arcane traditions in the multiverse revolve around the schools of magic. Wizards through the ages have cataloged thousands of spells, grouping them into eight categories called schools. In some places, these traditions are literally schools. In other institutions, the schools are more like academic departments, with rival faculties competing for students and funding. Even wizards who train apprentices in the solitude of their own towers use the division of magic into schools as a learning device, since the spells of each school require mastery of different techniques.@Compendium[dnd5e.subclasses.Ye5f3FReEnuXfi0y]{School of Evocation}", + "value": "Your gnome character has certain characteristics in common with all other gnomes.Ability Score Increase. Your Intelligence score increases by 2.Age. Gnomes mature at the same rate humans do, and most are expected to settle down into an adult life by around age 40. They can live 350 to almost 500 years.Alignment. Gnomes are most often good. Those who tend toward law are sages, engineers, researchers, scholars, investigators, or inventors. Those who tend toward chaos are minstrels, tricksters, wanderers, or fanciful jewelers. Gnomes are good‑hearted, and even the tricksters among them are more playful than vicious.Size. Gnomes are between 3 and 4 feet tall and average about 40 pounds. Your size is Small.Speed. Your base walking speed is 25 feet.Darkvision. Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Gnome Cunning. You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.Languages. You can speak, read, and write Common and Gnomish. The Gnomish language, which uses the Dwarvish script, is renowned for its technical treatises and its catalogs of knowledge about the natural world.Rock GnomeAs a rock gnome, you have a natural inventiveness and hardiness beyond that of other gnomes.Ability Score Increase. Your Constitution score increases by 1.Artificer's Lore. Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.Tinker. You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time.When you create a device, choose one of the following options:Clockwork Toy. This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.Fire Starter. The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.Music Box. When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "identifier": "wizard", - "levels": 1, - "hitDice": "d6", - "hitDiceUsed": 0, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "identifier": "rock-gnome", "advancement": [ { - "type": "HitPoints", - "configuration": {}, - "value": { - "1": "max" - }, - "title": "Hit Points", - "icon": "systems/dnd5e/icons/svg/hit-points.svg", - "_id": "o1lOLgOTi4SFT675" - }, - { + "_id": "oHASjkY2yexn8nAv", "type": "ItemGrant", "configuration": { "items": [ - "Compendium.dnd5e.classfeatures.gbNo5eVPaqr8IVKL", - "Compendium.dnd5e.classfeatures.e0uTcFPpgxjIyUW9" + "Compendium.dnd5e.races.EHhr9umJ5kxJFCQH", + "Compendium.dnd5e.races.OQA1sHxKnSJq01dL", + "Compendium.dnd5e.races.koRPOLtj8XAFMwnW" ], "optional": false, "spell": { @@ -3313,295 +3808,140 @@ }, "value": { "added": { - "ZCH7glEObWbjFGHB": "Compendium.dnd5e.classfeatures.gbNo5eVPaqr8IVKL", - "fnxa7jBxIHkDyZuU": "Compendium.dnd5e.classfeatures.e0uTcFPpgxjIyUW9" - } - }, - "level": 1, - "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg", - "_id": "NhwTsEnDKEFARuzC" - }, - { - "type": "ItemGrant", - "configuration": { - "items": [ - "Compendium.dnd5e.classfeatures.AEWr9EMxy5gj4ZFT" - ], - "optional": false, - "spell": { - "ability": "", - "preparation": "", - "uses": { - "max": "", - "per": "" - } - } - }, - "value": {}, - "level": 2, - "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg", - "_id": "0uOmTQCuBt5Uamzq" - }, - { - "type": "ItemGrant", - "configuration": { - "items": [ - "Compendium.dnd5e.classfeatures.JfFfHTeIszx1hNRx" - ], - "optional": false, - "spell": { - "ability": "", - "preparation": "", - "uses": { - "max": "", - "per": "" - } - } - }, - "value": {}, - "level": 18, - "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg", - "_id": "3mW9054CUxI1C7aO" - }, - { - "type": "ItemGrant", - "configuration": { - "items": [ - "Compendium.dnd5e.classfeatures.nUrZDi6QN1YjwAr6" - ], - "optional": false, - "spell": { - "ability": "", - "preparation": "", - "uses": { - "max": "", - "per": "" - } - } - }, - "value": {}, - "level": 20, - "title": "Features", - "icon": "systems/dnd5e/icons/svg/item-grant.svg", - "_id": "Eb7ydpaIxiGHB08g" - }, - { - "type": "ItemChoice", - "configuration": { - "hint": "Choose two 3rd-level wizard spells in your spellbook as your signature spells.", - "choices": { - "20": 2 - }, - "allowDrops": true, - "type": "spell", - "pool": [], - "spell": { - "ability": "", - "preparation": "atwill", - "uses": { - "max": "1", - "per": "sr" - } - }, - "restriction": { - "type": "", - "subtype": "", - "level": "3" - } - }, - "value": {}, - "title": "Signature Spells", - "icon": "systems/dnd5e/icons/svg/item-choice.svg", - "_id": "tD8OooHM6soXzVTR" - }, - { - "type": "ScaleValue", - "configuration": { - "identifier": "cantrips-known", - "type": "number", - "distance": { - "units": "" - }, - "scale": { - "1": { - "value": 3 - }, - "4": { - "value": 4 - }, - "10": { - "value": 5 - } - } - }, - "value": {}, - "title": "Cantrips Known", - "icon": "systems/dnd5e/icons/svg/scale-value.svg", - "_id": "tLCuM1cHSnmr1VEu" - }, - { - "type": "AbilityScoreImprovement", - "configuration": { - "points": 2, - "fixed": { - "str": 0, - "dex": 0, - "con": 0, - "int": 0, - "wis": 0, - "cha": 0 - } - }, - "value": { - "type": "asi" - }, - "level": 4, - "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", - "_id": "EFPSW4WIEveFjZL0" - }, - { - "type": "AbilityScoreImprovement", - "configuration": { - "points": 2, - "fixed": { - "str": 0, - "dex": 0, - "con": 0, - "int": 0, - "wis": 0, - "cha": 0 + "PZFiXV29QKKu02BE": "Compendium.dnd5e.races.EHhr9umJ5kxJFCQH", + "H5IsMCJRETbzQF6T": "Compendium.dnd5e.races.OQA1sHxKnSJq01dL", + "ylzIab4YKbPPyvj0": "Compendium.dnd5e.races.koRPOLtj8XAFMwnW" } }, - "value": { - "type": "asi" - }, - "level": 8, - "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", - "_id": "uytL1QdWhsGgRAGk" + "level": 0, + "title": "" }, { + "_id": "Z9hvZFkWUNvowbQX", "type": "AbilityScoreImprovement", "configuration": { - "points": 2, + "points": 0, "fixed": { "str": 0, "dex": 0, - "con": 0, - "int": 0, + "con": 1, + "int": 2, "wis": 0, "cha": 0 - } + }, + "cap": 2 }, "value": { - "type": "asi" + "type": "asi", + "assignments": { + "con": 1, + "int": 2 + } }, - "level": 12, - "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", - "_id": "OC4KaX8DSQVZFqli" + "level": 0, + "title": "" }, { - "type": "AbilityScoreImprovement", + "_id": "1qwH1s1GrEC8T8Qp", + "type": "Size", "configuration": { - "points": 2, - "fixed": { - "str": 0, - "dex": 0, - "con": 0, - "int": 0, - "wis": 0, - "cha": 0 - } + "hint": "Gnomes are between 3 and 4 feet tall and average about 40 pounds. Your size is Small.", + "sizes": [ + "sm" + ] }, "value": { - "type": "asi" + "size": "sm" }, - "level": 16, - "title": "Ability Score Improvement", - "icon": "systems/dnd5e/icons/svg/ability-score-improvement.svg", - "_id": "tNdNUznXfjAyXGGQ" + "level": 1, + "title": "" }, { - "_id": "puDaUsYrlks0z5gm", - "type": "AbilityScoreImprovement", + "_id": "lQjgBd250F2JZeo2", + "type": "Trait", "configuration": { - "points": 2, - "fixed": { - "str": 0, - "dex": 0, - "con": 0, - "int": 0, - "wis": 0, - "cha": 0 - } + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:standard:common", + "languages:standard:gnomish" + ], + "choices": [] }, + "level": 1, + "title": "", "value": { - "type": "asi" - }, - "level": 19, - "title": "" + "chosen": [ + "languages:standard:common", + "languages:standard:gnomish" + ] + } } ], - "saves": [ - "int", - "wis" - ], - "skills": { - "number": 2, - "choices": [ - "arc", - "his", - "ins", - "inv", - "med", - "rel" - ], - "value": [] + "movement": { + "walk": 25, + "burrow": 0, + "climb": 0, + "fly": 0, + "swim": 0, + "units": "ft", + "hover": false }, - "spellcasting": { - "progression": "full", - "ability": "int" + "senses": { + "darkvision": 60, + "blindsight": 0, + "tremorsense": 0, + "truesight": 0, + "units": "ft", + "special": "" + }, + "type": { + "subtype": "gnome", + "value": "humanoid", + "custom": "" } }, "effects": [], - "folder": null, - "sort": 0, "ownership": { "default": 0 }, "flags": { "core": { - "sourceId": "Compendium.dnd5e.classes.wZK2Q0rXB0AQo8h3" + "sourceId": "Compendium.dnd5e.races.TZtarkKs6cgGD7z2" } }, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", - "createdTime": 1661787234283, - "modifiedTime": 1691519218867, + "createdTime": 1677181053374, + "modifiedTime": 1699993725827, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "sort": 0, + "folder": null, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.ur4Pjajcd3IlxKlZ" }, { - "_id": "ZCH7glEObWbjFGHB", - "name": "Spellcasting (Wizard)", + "_id": "PZFiXV29QKKu02BE", + "name": "Gnome Cunning", "ownership": { "default": 0 }, "type": "feat", "system": { "description": { - "value": "As a student of arcane magic, you have a spellbook containing spells that show the first glimmerings of your true power.\nCantrips\nAt 1st level, you know three cantrips of your choice from the wizard spell list. You learn additional wizard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Wizard table.\nSpellbook\nAt 1st level, you have a spellbook containing six 1stlevel wizard spells of your choice. Your spellbook is the repository of the wizard spells you know, except your cantrips, which are fixed in your mind.\nPreparing and Casting Spells\nThe Wizard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\nYou prepare the list of wizard spells that are available for you to cast. To do so, choose a number of wizard spells from your spellbook equal to your Intelligence modifier + your wizard level (minimum of one spell). The spells must be of a level for which you have spell slots.\nFor example, if you're a 3rd-level wizard, you have four 1st-level and two 2nd-level spell slots. With an Intelligence of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination, chosen from your spellbook. If you prepare the 1st-level spell magic missile, you can cast it using a 1st-level or a 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of wizard spells requires time spent studying your spellbook and memorizing the incantations and gestures you must make to cast the spell: at least 1 minute per spell level for each spell on your list.\nSpellcasting Ability\nIntelligence is your spellcasting ability for your wizard spells, since you learn your spells through dedicated study and memorization. You use your Intelligence whenever a spell refers to your spellcasting ability. In addition, you use your Intelligence modifier when setting the saving throw DC for a wizard spell you cast and when making an attack roll with one.\nSpell save DC = 8 + your proficiency bonus + your Intelligence modifier\nSpell attack modifier = your proficiency bonus + your Intelligence modifier\nRitual Casting\nYou can cast a wizard spell as a ritual if that spell has the ritual tag and you have the spell in your spellbook. You don't need to have the spell prepared.\nSpellcasting Focus\nYou can use an arcane focus as a spellcasting focus for your wizard spells.\nLearning Spells of 1st Level and Higher\nEach time you gain a wizard level, you can add two wizard spells of your choice to your spellbook for free. Each of these spells must be of a level for which you have spell slots, as shown on the Wizard table. On your adventures, you might find other spells that you can add to your spellbook (see the \"Your Spellbook\" sidebar).", + "value": "You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -3617,7 +3957,8 @@ "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -3628,14 +3969,16 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, - "ability": null, + "ability": "", "actionType": "", "attackBonus": "", "chatFlavor": "", @@ -3654,10 +3997,10 @@ "scaling": "spell" }, "type": { - "value": "class", + "value": "race", "subtype": "" }, - "requirements": "Wizard 1", + "requirements": "Gnome", "recharge": { "value": null, "charged": false @@ -3665,39 +4008,45 @@ }, "flags": { "dnd5e": { - "sourceId": "Compendium.dnd5e.classfeatures.gbNo5eVPaqr8IVKL", - "advancementOrigin": "N4bhi6usK8wuNEnh.NhwTsEnDKEFARuzC" + "sourceId": "Compendium.dnd5e.races.EHhr9umJ5kxJFCQH", + "advancementOrigin": "ur4Pjajcd3IlxKlZ.oHASjkY2yexn8nAv" } }, - "img": "icons/magic/fire/explosion-embers-orange.webp", + "img": "icons/magic/light/hand-sparks-glow-yellow.webp", "effects": [], "folder": null, "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", - "createdTime": 1661787234406, - "modifiedTime": 1691519218869, + "createdTime": 1661787234464, + "modifiedTime": 1699987548856, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.PZFiXV29QKKu02BE" }, { - "_id": "fnxa7jBxIHkDyZuU", - "name": "Arcane Recovery", + "_id": "H5IsMCJRETbzQF6T", + "name": "Artificer's Lore", "ownership": { "default": 0 }, "type": "feat", "system": { "description": { - "value": "You have learned to regain some of your magical energy by studying your spellbook. Once per day when you finish a short rest, you can choose expended spell slots to recover. The spell slots can have a combined level that is equal to or less than half your wizard level (rounded up), and none of the slots can be 6th level or higher.For example, if you're a 4th-level wizard, you can recover up to two levels worth of spell slots. You can recover either a 2nd-level spell slot or two 1st-level spell slots.", + "value": "Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { - "type": "special", + "type": "", "cost": null, "condition": "" }, @@ -3711,28 +4060,31 @@ "value": null, "width": null, "units": "", - "type": "self" + "type": "", + "prompt": true }, "range": { "value": null, "long": null, - "units": "self" + "units": "" }, "uses": { - "value": 1, - "max": "1", - "per": "lr", - "recovery": "" + "value": null, + "max": "", + "per": null, + "recovery": "", + "prompt": true }, "consume": { "type": "", "target": null, - "amount": null + "amount": null, + "scale": false }, "ability": "", - "actionType": "util", + "actionType": "", "attackBonus": "", - "chatFlavor": "The wizard can recover this number worth of spells slots (of 5th-level or lower):", + "chatFlavor": "", "critical": { "threshold": null, "damage": "" @@ -3741,17 +4093,17 @@ "parts": [], "versatile": "" }, - "formula": "ceil(@classes.wizard.levels/2)", + "formula": "", "save": { "ability": "", "dc": null, "scaling": "spell" }, "type": { - "value": "class", + "value": "race", "subtype": "" }, - "requirements": "Wizard 1", + "requirements": "Rock Gnome", "recharge": { "value": null, "charged": false @@ -3759,22 +4111,156 @@ }, "flags": { "dnd5e": { - "sourceId": "Compendium.dnd5e.classfeatures.e0uTcFPpgxjIyUW9", - "advancementOrigin": "N4bhi6usK8wuNEnh.NhwTsEnDKEFARuzC" + "sourceId": "Compendium.dnd5e.races.OQA1sHxKnSJq01dL", + "advancementOrigin": "ur4Pjajcd3IlxKlZ.oHASjkY2yexn8nAv" } }, - "img": "icons/magic/earth/explosion-lava-stone-green.webp", + "img": "icons/magic/fire/flame-burning-chain.webp", "effects": [], "folder": null, "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", - "createdTime": 1661787234399, - "modifiedTime": 1691519218869, + "createdTime": 1661787234468, + "modifiedTime": 1699987550173, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.H5IsMCJRETbzQF6T" + }, + { + "_id": "ylzIab4YKbPPyvj0", + "name": "Tinker", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time. When you create a device, choose one of the following options:\nClockwork Toy: This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.\nFire Starter: The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.\nMusic Box: When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "hour", + "cost": 1, + "condition": "Expend 10 gp worth of materials" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "crewed": false, + "target": { + "value": null, + "width": null, + "units": "", + "type": "", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null, + "scale": false + }, + "ability": "", + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "Rock Gnome", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": { + "dnd5e": { + "sourceId": "Compendium.dnd5e.races.koRPOLtj8XAFMwnW", + "advancementOrigin": "ur4Pjajcd3IlxKlZ.oHASjkY2yexn8nAv" + } + }, + "img": "icons/commodities/tech/cog-steel.webp", + "effects": [ + { + "_id": "CkQlNsLyTZGVbnKM", + "changes": [ + { + "key": "system.traits.toolProf.value", + "mode": 2, + "value": "tinker", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "seconds": null, + "combat": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "icon": "icons/commodities/tech/cog-steel.webp", + "label": "Tinker", + "origin": "Item.koRPOLtj8XAFMwnW", + "transfer": true, + "flags": {}, + "tint": null, + "sort": 0, + "_key": "!actors.items.effects!4Jsv5vYaJ1atUEDV.ylzIab4YKbPPyvj0.CkQlNsLyTZGVbnKM" + } + ], + "folder": null, + "sort": 0, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1661787234472, + "modifiedTime": 1699986898969, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "_key": "!actors.items!4Jsv5vYaJ1atUEDV.ylzIab4YKbPPyvj0" } ], "effects": [ @@ -3804,7 +4290,8 @@ "origin": "Compendium.dnd5e.heroes.4Jsv5vYaJ1atUEDV.Item.z1mx84ONwkXKUZd7", "tint": null, "transfer": false, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!4Jsv5vYaJ1atUEDV.6pbotGIvqQkraPva" }, { "_id": "cfwMU7LuOJ619Lny", @@ -3832,7 +4319,37 @@ "transfer": false, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!4Jsv5vYaJ1atUEDV.cfwMU7LuOJ619Lny" + }, + { + "_id": "CkQlNsLyTZGVbnKM", + "changes": [ + { + "key": "system.traits.toolProf.value", + "mode": 2, + "value": "tinker", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": 0, + "seconds": null, + "combat": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "icon": "icons/commodities/tech/cog-steel.webp", + "label": "Tinker", + "origin": "Compendium.dnd5e.heroes.4Jsv5vYaJ1atUEDV.Item.ylzIab4YKbPPyvj0", + "transfer": false, + "flags": {}, + "tint": null, + "sort": 0, + "_key": "!actors.effects!4Jsv5vYaJ1atUEDV.CkQlNsLyTZGVbnKM" } ], "folder": null, @@ -3844,10 +4361,11 @@ "_id": "4Jsv5vYaJ1atUEDV", "_stats": { "systemId": "dnd5e", - "systemVersion": "2.2.2", + "systemVersion": "2.4.0", "coreVersion": "10.303", "createdTime": 1661787232155, - "modifiedTime": 1691519218885, + "modifiedTime": 1699993725854, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!4Jsv5vYaJ1atUEDV" } diff --git a/packs/src/items/ammo/arrow-1.json b/packs/src/items/ammo/arrow-1.json index 7cb0033e5f..d509f073e1 100644 --- a/packs/src/items/ammo/arrow-1.json +++ b/packs/src/items/ammo/arrow-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.05, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233906, "modifiedTime": 1671220964860, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!tEWhsb2lYF4uvF0z" } diff --git a/packs/src/items/ammo/arrow-2.json b/packs/src/items/ammo/arrow-2.json index 839e44e67a..b75856de49 100644 --- a/packs/src/items/ammo/arrow-2.json +++ b/packs/src/items/ammo/arrow-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.05, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233803, "modifiedTime": 1671220962904, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gLkbbUtGhQgYANM8" } diff --git a/packs/src/items/ammo/arrow-3.json b/packs/src/items/ammo/arrow-3.json index ab4eaeecea..09280ee665 100644 --- a/packs/src/items/ammo/arrow-3.json +++ b/packs/src/items/ammo/arrow-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.05, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233572, "modifiedTime": 1671220959282, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!IY5PveXrF7VoFlWg" } diff --git a/packs/src/items/ammo/arrow-of-slaying.json b/packs/src/items/ammo/arrow-of-slaying.json index ef223e9995..06699e35a9 100644 --- a/packs/src/items/ammo/arrow-of-slaying.json +++ b/packs/src/items/ammo/arrow-of-slaying.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.05, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233724, "modifiedTime": 1671220961833, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!aXsfZvDCdpuv3Yvb" } diff --git a/packs/src/items/ammo/arrow.json b/packs/src/items/ammo/arrow.json index a9e8cf3fd2..f55bf7250c 100644 --- a/packs/src/items/ammo/arrow.json +++ b/packs/src/items/ammo/arrow.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.05, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233457, "modifiedTime": 1671220957246, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3c7JXOzsv55gqJS5" } diff --git a/packs/src/items/ammo/blowgun-needle.json b/packs/src/items/ammo/blowgun-needle.json index 3540c6df84..f2014502b9 100644 --- a/packs/src/items/ammo/blowgun-needle.json +++ b/packs/src/items/ammo/blowgun-needle.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.02, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233803, "modifiedTime": 1671220962900, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gBQ8xqTA5f8wP5iu" } diff --git a/packs/src/items/ammo/bolt-of-slaying.json b/packs/src/items/ammo/bolt-of-slaying.json index 9abde2b99b..b9dcd300fe 100644 --- a/packs/src/items/ammo/bolt-of-slaying.json +++ b/packs/src/items/ammo/bolt-of-slaying.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.075, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233478, "modifiedTime": 1671220957496, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!6OIw31CDF6mAwFnd" } diff --git a/packs/src/items/ammo/component-pouch.json b/packs/src/items/ammo/component-pouch.json index ff3e86cb92..ff82c7bbe2 100644 --- a/packs/src/items/ammo/component-pouch.json +++ b/packs/src/items/ammo/component-pouch.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233786, "modifiedTime": 1671220962687, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eZGmdOhaTWMicXPW" } diff --git a/packs/src/items/ammo/crossbow-bolt-1.json b/packs/src/items/ammo/crossbow-bolt-1.json index 4bfaf47ed5..57fe79d72b 100644 --- a/packs/src/items/ammo/crossbow-bolt-1.json +++ b/packs/src/items/ammo/crossbow-bolt-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.075, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233718, "modifiedTime": 1671220961758, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ZjUOHSyND2VFXQeP" } diff --git a/packs/src/items/ammo/crossbow-bolt-2.json b/packs/src/items/ammo/crossbow-bolt-2.json index 710f728da4..9f134428c5 100644 --- a/packs/src/items/ammo/crossbow-bolt-2.json +++ b/packs/src/items/ammo/crossbow-bolt-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.075, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233962, "modifiedTime": 1671220965654, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!x1GUgZYjMubaFavx" } diff --git a/packs/src/items/ammo/crossbow-bolt-3.json b/packs/src/items/ammo/crossbow-bolt-3.json index 0b0da19cc6..c25e06f7ef 100644 --- a/packs/src/items/ammo/crossbow-bolt-3.json +++ b/packs/src/items/ammo/crossbow-bolt-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.075, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233701, "modifiedTime": 1671220961574, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XXLznzi3rlanMhTM" } diff --git a/packs/src/items/ammo/crossbow-bolt.json b/packs/src/items/ammo/crossbow-bolt.json index 9e163bbd77..170b6fd733 100644 --- a/packs/src/items/ammo/crossbow-bolt.json +++ b/packs/src/items/ammo/crossbow-bolt.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.075, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233660, "modifiedTime": 1671220960554, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!SItCnYBqhzqBoaWG" } diff --git a/packs/src/items/ammo/sling-bullet-1.json b/packs/src/items/ammo/sling-bullet-1.json index 0cd165cf4e..e60a3796f9 100644 --- a/packs/src/items/ammo/sling-bullet-1.json +++ b/packs/src/items/ammo/sling-bullet-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.075, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233632, "modifiedTime": 1671220960293, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!NYIib9KEYDUFe9GY" } diff --git a/packs/src/items/ammo/sling-bullet-2.json b/packs/src/items/ammo/sling-bullet-2.json index 30195ee66a..2b07533446 100644 --- a/packs/src/items/ammo/sling-bullet-2.json +++ b/packs/src/items/ammo/sling-bullet-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.075, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233510, "modifiedTime": 1671220958532, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!BNJmdttKvIwC08Pd" } diff --git a/packs/src/items/ammo/sling-bullet-3.json b/packs/src/items/ammo/sling-bullet-3.json index 94dd213a6e..a888abdc95 100644 --- a/packs/src/items/ammo/sling-bullet-3.json +++ b/packs/src/items/ammo/sling-bullet-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.075, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233963, "modifiedTime": 1671220965670, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!x9I9vdo4kafHDjcO" } diff --git a/packs/src/items/ammo/sling-bullet-of-slaying.json b/packs/src/items/ammo/sling-bullet-of-slaying.json index d0f05051ec..ce30a9a325 100644 --- a/packs/src/items/ammo/sling-bullet-of-slaying.json +++ b/packs/src/items/ammo/sling-bullet-of-slaying.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.075, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233627, "modifiedTime": 1671220960214, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Mj8fTo5VZKJJ7uMv" } diff --git a/packs/src/items/ammo/sling-bullet.json b/packs/src/items/ammo/sling-bullet.json index bc39f58f2e..b70914e81c 100644 --- a/packs/src/items/ammo/sling-bullet.json +++ b/packs/src/items/ammo/sling-bullet.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.075, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233974, "modifiedTime": 1671220965813, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!z9SbsMIBZzuhZOqT" } diff --git a/packs/src/items/backpack/alms-box.json b/packs/src/items/backpack/alms-box.json index 8654b07793..1c6062f8cc 100644 --- a/packs/src/items/backpack/alms-box.json +++ b/packs/src/items/backpack/alms-box.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233802, "modifiedTime": 1671220962897, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!g8fQZ1WyTz2bTtvA" } diff --git a/packs/src/items/backpack/backpack.json b/packs/src/items/backpack/backpack.json index 8c1ee3ff87..64dc61fdfb 100644 --- a/packs/src/items/backpack/backpack.json +++ b/packs/src/items/backpack/backpack.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233559, "modifiedTime": 1671220959140, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!H8YCd689ezlD26aT" } diff --git a/packs/src/items/backpack/bag-of-devouring.json b/packs/src/items/backpack/bag-of-devouring.json index 275f70f22c..5366436e3d 100644 --- a/packs/src/items/backpack/bag-of-devouring.json +++ b/packs/src/items/backpack/bag-of-devouring.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 15, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233705, "modifiedTime": 1671220961633, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!YG9QW0flem4SLL6A" } diff --git a/packs/src/items/backpack/bag-of-holding.json b/packs/src/items/backpack/bag-of-holding.json index c86730dc8a..1849da9470 100644 --- a/packs/src/items/backpack/bag-of-holding.json +++ b/packs/src/items/backpack/bag-of-holding.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 15, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233722, "modifiedTime": 1671220961791, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!aDHRuUs29SrumWfq" } diff --git a/packs/src/items/backpack/barrel.json b/packs/src/items/backpack/barrel.json index de3bf8ac94..4aeea67f7a 100644 --- a/packs/src/items/backpack/barrel.json +++ b/packs/src/items/backpack/barrel.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 70, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233482, "modifiedTime": 1671220957559, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7Yqbqg5EtVW16wfT" } diff --git a/packs/src/items/backpack/basket.json b/packs/src/items/backpack/basket.json index a36fb24818..6bf708b803 100644 --- a/packs/src/items/backpack/basket.json +++ b/packs/src/items/backpack/basket.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233694, "modifiedTime": 1671220961495, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Wv7HzD6dv1P0q78N" } diff --git a/packs/src/items/backpack/bucket.json b/packs/src/items/backpack/bucket.json index a8d505e209..69978bca1d 100644 --- a/packs/src/items/backpack/bucket.json +++ b/packs/src/items/backpack/bucket.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233853, "modifiedTime": 1671220963977, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!mQVYcHmMSoCUnBnM" } diff --git a/packs/src/items/backpack/chest.json b/packs/src/items/backpack/chest.json index ef05d05693..c2e7e21491 100644 --- a/packs/src/items/backpack/chest.json +++ b/packs/src/items/backpack/chest.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 25, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233447, "modifiedTime": 1671220957111, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!2YbuclKfhDL0bU4u" } diff --git a/packs/src/items/backpack/crossbow-bolt-case.json b/packs/src/items/backpack/crossbow-bolt-case.json index f554c6dd3d..f9b749339a 100644 --- a/packs/src/items/backpack/crossbow-bolt-case.json +++ b/packs/src/items/backpack/crossbow-bolt-case.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233781, "modifiedTime": 1671220962635, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eJtPBiZtr2pp6ynt" } diff --git a/packs/src/items/backpack/efficient-quiver.json b/packs/src/items/backpack/efficient-quiver.json index d82131bd01..8ed37441ac 100644 --- a/packs/src/items/backpack/efficient-quiver.json +++ b/packs/src/items/backpack/efficient-quiver.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233625, "modifiedTime": 1671220960175, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MLNzQUsVUi0PEV3i" } diff --git a/packs/src/items/backpack/flask.json b/packs/src/items/backpack/flask.json index 1779590624..a83b53f3e6 100644 --- a/packs/src/items/backpack/flask.json +++ b/packs/src/items/backpack/flask.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233844, "modifiedTime": 1671220963312, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!lHS63sC6bypENNlR" } diff --git a/packs/src/items/backpack/glass-bottle.json b/packs/src/items/backpack/glass-bottle.json index da7aad1ea3..32dcb17f86 100644 --- a/packs/src/items/backpack/glass-bottle.json +++ b/packs/src/items/backpack/glass-bottle.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233563, "modifiedTime": 1671220959190, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!HZp69hhyNZUUCipF" } diff --git a/packs/src/items/backpack/handy-haversack.json b/packs/src/items/backpack/handy-haversack.json index 00a49a3885..1fee0eee6d 100644 --- a/packs/src/items/backpack/handy-haversack.json +++ b/packs/src/items/backpack/handy-haversack.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233485, "modifiedTime": 1671220957587, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7vqs5AqI4VCmuszx" } diff --git a/packs/src/items/backpack/iron-pot.json b/packs/src/items/backpack/iron-pot.json index 506dfe4d0a..7a3a722988 100644 --- a/packs/src/items/backpack/iron-pot.json +++ b/packs/src/items/backpack/iron-pot.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233623, "modifiedTime": 1671220960143, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!M8xM8BLK4tpUayEE" } diff --git a/packs/src/items/backpack/jug.json b/packs/src/items/backpack/jug.json index ad15c54dbc..2f67654170 100644 --- a/packs/src/items/backpack/jug.json +++ b/packs/src/items/backpack/jug.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233435, "modifiedTime": 1671220957002, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!0ZBWwjFz3nIAXMLW" } diff --git a/packs/src/items/backpack/map-or-scroll-case.json b/packs/src/items/backpack/map-or-scroll-case.json index bcf2e3809c..179519f954 100644 --- a/packs/src/items/backpack/map-or-scroll-case.json +++ b/packs/src/items/backpack/map-or-scroll-case.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233472, "modifiedTime": 1671220957431, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!5mIeX824uMklU3xq" } diff --git a/packs/src/items/backpack/pitcher.json b/packs/src/items/backpack/pitcher.json index c37cf16699..98443d480a 100644 --- a/packs/src/items/backpack/pitcher.json +++ b/packs/src/items/backpack/pitcher.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233861, "modifiedTime": 1671220964184, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nXWdGtzi8DXDLLsL" } diff --git a/packs/src/items/backpack/pouch.json b/packs/src/items/backpack/pouch.json index de70d08fe3..782716aaa5 100644 --- a/packs/src/items/backpack/pouch.json +++ b/packs/src/items/backpack/pouch.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233499, "modifiedTime": 1671220957750, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9bWTRRDym06PzSAf" } diff --git a/packs/src/items/backpack/quiver.json b/packs/src/items/backpack/quiver.json index 77682aec62..7a476769ed 100644 --- a/packs/src/items/backpack/quiver.json +++ b/packs/src/items/backpack/quiver.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233465, "modifiedTime": 1671220957354, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!4MtQKPn9qMWCFjDA" } diff --git a/packs/src/items/backpack/sack.json b/packs/src/items/backpack/sack.json index 1b27a05a47..48bb0ec182 100644 --- a/packs/src/items/backpack/sack.json +++ b/packs/src/items/backpack/sack.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.5, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233516, "modifiedTime": 1671220958649, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!CNdDj8dsXVpRVpXt" } diff --git a/packs/src/items/backpack/saddlebags.json b/packs/src/items/backpack/saddlebags.json index f1c28c0df7..c342d5535b 100644 --- a/packs/src/items/backpack/saddlebags.json +++ b/packs/src/items/backpack/saddlebags.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 8, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233672, "modifiedTime": 1671220960656, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!TmfaFUSZJAotndn9" } diff --git a/packs/src/items/backpack/tankard.json b/packs/src/items/backpack/tankard.json index df1c2f9f88..d162c25071 100644 --- a/packs/src/items/backpack/tankard.json +++ b/packs/src/items/backpack/tankard.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233922, "modifiedTime": 1671220965504, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!uw6fINSmZ2j2o57A" } diff --git a/packs/src/items/backpack/vial.json b/packs/src/items/backpack/vial.json index 85c25571cb..65e51b335c 100644 --- a/packs/src/items/backpack/vial.json +++ b/packs/src/items/backpack/vial.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -47,5 +52,6 @@ "createdTime": 1661787233854, "modifiedTime": 1671220963991, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!meJEfX3gZgtMX4x2" } diff --git a/packs/src/items/equipment/adamantine-breastplate.json b/packs/src/items/equipment/adamantine-breastplate.json index 5ccaefc9ec..ce8b6a6827 100644 --- a/packs/src/items/equipment/adamantine-breastplate.json +++ b/packs/src/items/equipment/adamantine-breastplate.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 20, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233528, "modifiedTime": 1690538946202, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!DevmObXWP9MfwE2c" } diff --git a/packs/src/items/equipment/adamantine-chain-mail.json b/packs/src/items/equipment/adamantine-chain-mail.json index 8477927a9b..00fbdd7b70 100644 --- a/packs/src/items/equipment/adamantine-chain-mail.json +++ b/packs/src/items/equipment/adamantine-chain-mail.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 55, "price": { @@ -88,7 +93,7 @@ }, "strength": 13, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233858, "modifiedTime": 1671220964115, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!n7fm71CN7qDIBEKk" } diff --git a/packs/src/items/equipment/adamantine-chain-shirt.json b/packs/src/items/equipment/adamantine-chain-shirt.json index 41c3ea5b00..9c93faadbf 100644 --- a/packs/src/items/equipment/adamantine-chain-shirt.json +++ b/packs/src/items/equipment/adamantine-chain-shirt.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 20, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233839, "modifiedTime": 1690538773030, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!kjTPoUeomTPWJ9h3" } diff --git a/packs/src/items/equipment/adamantine-half-plate-armor.json b/packs/src/items/equipment/adamantine-half-plate-armor.json index 42d6fbf249..d6f931bce8 100644 --- a/packs/src/items/equipment/adamantine-half-plate-armor.json +++ b/packs/src/items/equipment/adamantine-half-plate-armor.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 40, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233438, "modifiedTime": 1690539010993, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!159agyOuBHCl2WKd" } diff --git a/packs/src/items/equipment/adamantine-plate-armor.json b/packs/src/items/equipment/adamantine-plate-armor.json index 3ba0bedb36..9cce6b2300 100644 --- a/packs/src/items/equipment/adamantine-plate-armor.json +++ b/packs/src/items/equipment/adamantine-plate-armor.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 65, "price": { @@ -89,7 +94,7 @@ }, "strength": 15, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233896, "modifiedTime": 1690539416931, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!sP8CV5VNEcY1Yh1Q" } diff --git a/packs/src/items/equipment/adamantine-ring-mail.json b/packs/src/items/equipment/adamantine-ring-mail.json index c0460fb7ce..531006d334 100644 --- a/packs/src/items/equipment/adamantine-ring-mail.json +++ b/packs/src/items/equipment/adamantine-ring-mail.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 40, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233680, "modifiedTime": 1690539362138, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!UpHAWqwifZpiZzns" } diff --git a/packs/src/items/equipment/adamantine-scale-mail.json b/packs/src/items/equipment/adamantine-scale-mail.json index 66a753be2e..00b303c67f 100644 --- a/packs/src/items/equipment/adamantine-scale-mail.json +++ b/packs/src/items/equipment/adamantine-scale-mail.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 45, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233619, "modifiedTime": 1690538814424, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LdAj2ES9EzfnWcA1" } diff --git a/packs/src/items/equipment/adamantine-splint-armor.json b/packs/src/items/equipment/adamantine-splint-armor.json index 79cfab7edd..95606944af 100644 --- a/packs/src/items/equipment/adamantine-splint-armor.json +++ b/packs/src/items/equipment/adamantine-splint-armor.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 60, "price": { @@ -88,7 +93,7 @@ }, "strength": 15, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233617, "modifiedTime": 1671220960041, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LDuqUcosOK8Bf76S" } diff --git a/packs/src/items/equipment/amulet-of-health.json b/packs/src/items/equipment/amulet-of-health.json index d9ff075a46..31a884328a 100644 --- a/packs/src/items/equipment/amulet-of-health.json +++ b/packs/src/items/equipment/amulet-of-health.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233824, "modifiedTime": 1671220963102, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!iiQxTvDOhPGW5spF" } diff --git a/packs/src/items/equipment/amulet-of-proof-against-detection-and-location.json b/packs/src/items/equipment/amulet-of-proof-against-detection-and-location.json index a9dbc3a1c8..31aa178e94 100644 --- a/packs/src/items/equipment/amulet-of-proof-against-detection-and-location.json +++ b/packs/src/items/equipment/amulet-of-proof-against-detection-and-location.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233468, "modifiedTime": 1671220957371, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!50N8zf58FR4JWR05" } diff --git a/packs/src/items/equipment/amulet-of-the-planes.json b/packs/src/items/equipment/amulet-of-the-planes.json index d83a6dde06..dc4aa963a5 100644 --- a/packs/src/items/equipment/amulet-of-the-planes.json +++ b/packs/src/items/equipment/amulet-of-the-planes.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233487, "modifiedTime": 1671220957616, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8ABk0XV76Hzq8Qul" } diff --git a/packs/src/items/equipment/amulet.json b/packs/src/items/equipment/amulet.json index 0c11301e88..97e3d61395 100644 --- a/packs/src/items/equipment/amulet.json +++ b/packs/src/items/equipment/amulet.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233876, "modifiedTime": 1671220964411, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!paqlMjggWkBIAeCe" } diff --git a/packs/src/items/equipment/animated-shield.json b/packs/src/items/equipment/animated-shield.json index a13f531129..bd0b6febfd 100644 --- a/packs/src/items/equipment/animated-shield.json +++ b/packs/src/items/equipment/animated-shield.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233630, "modifiedTime": 1671220960260, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!NG8BlE2nwYJxCjWO" } diff --git a/packs/src/items/equipment/armor-of-invulnerability.json b/packs/src/items/equipment/armor-of-invulnerability.json index aec39d379c..f0ccf1d65b 100644 --- a/packs/src/items/equipment/armor-of-invulnerability.json +++ b/packs/src/items/equipment/armor-of-invulnerability.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 65, "price": { @@ -89,7 +94,7 @@ }, "strength": 15, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233791, "modifiedTime": 1690539478582, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!evSCq83oPhR0ZK4y" } diff --git a/packs/src/items/equipment/armor-of-vulnerability.json b/packs/src/items/equipment/armor-of-vulnerability.json index 3cde7baf8c..502495c962 100644 --- a/packs/src/items/equipment/armor-of-vulnerability.json +++ b/packs/src/items/equipment/armor-of-vulnerability.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 65, "price": { @@ -89,7 +94,7 @@ }, "strength": 15, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233711, "modifiedTime": 1690539481978, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!YwS4pESpfsiq0JZv" } diff --git a/packs/src/items/equipment/arrow-catching-shield.json b/packs/src/items/equipment/arrow-catching-shield.json index 29d5d6c0b9..4ddea50c59 100644 --- a/packs/src/items/equipment/arrow-catching-shield.json +++ b/packs/src/items/equipment/arrow-catching-shield.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233920, "modifiedTime": 1690539658859, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!uWUD93jwuO2Jxkti" } diff --git a/packs/src/items/equipment/belt-of-cloud-giant-strength.json b/packs/src/items/equipment/belt-of-cloud-giant-strength.json index c05be16ff5..9c25a767c6 100644 --- a/packs/src/items/equipment/belt-of-cloud-giant-strength.json +++ b/packs/src/items/equipment/belt-of-cloud-giant-strength.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [ { @@ -117,7 +122,8 @@ "tint": null, "transfer": true, "flags": {}, - "sort": 0 + "sort": 0, + "_key": "!items.effects!NRj0lC3SM03s1YB3.iGbcuTRYb2okyQeS" } ], "folder": null, @@ -133,5 +139,6 @@ "createdTime": 1661787233631, "modifiedTime": 1690480168162, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!NRj0lC3SM03s1YB3" } diff --git a/packs/src/items/equipment/belt-of-dwarvenkind.json b/packs/src/items/equipment/belt-of-dwarvenkind.json index d052aea92f..b3e5b867ab 100644 --- a/packs/src/items/equipment/belt-of-dwarvenkind.json +++ b/packs/src/items/equipment/belt-of-dwarvenkind.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233829, "modifiedTime": 1671220963151, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!j2ZGEwx8MhHZXds4" } diff --git a/packs/src/items/equipment/belt-of-fire-giant-strength.json b/packs/src/items/equipment/belt-of-fire-giant-strength.json index cc333523af..58776ff92a 100644 --- a/packs/src/items/equipment/belt-of-fire-giant-strength.json +++ b/packs/src/items/equipment/belt-of-fire-giant-strength.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [ { @@ -117,7 +122,8 @@ "tint": null, "transfer": true, "flags": {}, - "sort": 0 + "sort": 0, + "_key": "!items.effects!bq9YKwEHLQ7p7ric.bOonopsHKkewV29S" } ], "folder": null, @@ -133,5 +139,6 @@ "createdTime": 1661787233733, "modifiedTime": 1690480245620, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!bq9YKwEHLQ7p7ric" } diff --git a/packs/src/items/equipment/belt-of-frost-giant-strength.json b/packs/src/items/equipment/belt-of-frost-giant-strength.json index e28e2e27fd..77d3ff91ba 100644 --- a/packs/src/items/equipment/belt-of-frost-giant-strength.json +++ b/packs/src/items/equipment/belt-of-frost-giant-strength.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [ { @@ -117,7 +122,8 @@ "tint": null, "transfer": true, "flags": {}, - "sort": 0 + "sort": 0, + "_key": "!items.effects!ORKf6RRcalrdD6Qp.uTXTubfcSCEANSBh" } ], "folder": null, @@ -133,5 +139,6 @@ "createdTime": 1661787233637, "modifiedTime": 1690480308813, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ORKf6RRcalrdD6Qp" } diff --git a/packs/src/items/equipment/belt-of-hill-giant-strength.json b/packs/src/items/equipment/belt-of-hill-giant-strength.json index 549f2168a0..94f426f29e 100644 --- a/packs/src/items/equipment/belt-of-hill-giant-strength.json +++ b/packs/src/items/equipment/belt-of-hill-giant-strength.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [ { @@ -117,7 +122,8 @@ "tint": null, "transfer": true, "flags": {}, - "sort": 0 + "sort": 0, + "_key": "!items.effects!ER75WHewYN04Zp11.wz6bugCbOYcTBUMg" } ], "folder": null, @@ -133,5 +139,6 @@ "createdTime": 1661787233535, "modifiedTime": 1690480497698, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ER75WHewYN04Zp11" } diff --git a/packs/src/items/equipment/belt-of-stone-giant-strength.json b/packs/src/items/equipment/belt-of-stone-giant-strength.json index 17a81ee836..0f37696d19 100644 --- a/packs/src/items/equipment/belt-of-stone-giant-strength.json +++ b/packs/src/items/equipment/belt-of-stone-giant-strength.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233795, "modifiedTime": 1671220962774, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!fCUZ7h8YYrs16UhX" } diff --git a/packs/src/items/equipment/belt-of-storm-giant-strength.json b/packs/src/items/equipment/belt-of-storm-giant-strength.json index 3b5a8ed2d1..4dc8b0f80d 100644 --- a/packs/src/items/equipment/belt-of-storm-giant-strength.json +++ b/packs/src/items/equipment/belt-of-storm-giant-strength.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [ { @@ -117,7 +122,8 @@ "tint": null, "transfer": true, "flags": {}, - "sort": 0 + "sort": 0, + "_key": "!items.effects!wBYmPQG3nZfD88aP.GjOniAcdINQsZbnX" } ], "folder": null, @@ -133,5 +139,6 @@ "createdTime": 1661787233955, "modifiedTime": 1690480557337, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!wBYmPQG3nZfD88aP" } diff --git a/packs/src/items/equipment/bit-and-bridle.json b/packs/src/items/equipment/bit-and-bridle.json index 7b791b4785..d34ab90eab 100644 --- a/packs/src/items/equipment/bit-and-bridle.json +++ b/packs/src/items/equipment/bit-and-bridle.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,7 +92,7 @@ }, "strength": null, "stealth": false, - "proficient": true + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233494, "modifiedTime": 1671220957703, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8l7M3zeqrU2vkA5h" } diff --git a/packs/src/items/equipment/boots-of-elvenkind.json b/packs/src/items/equipment/boots-of-elvenkind.json index 59b5c7c492..f438a71b2f 100644 --- a/packs/src/items/equipment/boots-of-elvenkind.json +++ b/packs/src/items/equipment/boots-of-elvenkind.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233612, "modifiedTime": 1671220959973, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!KKWBLKQIWHtcpymp" } diff --git a/packs/src/items/equipment/boots-of-levitation.json b/packs/src/items/equipment/boots-of-levitation.json index f27f0c09a7..31dab7d373 100644 --- a/packs/src/items/equipment/boots-of-levitation.json +++ b/packs/src/items/equipment/boots-of-levitation.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233561, "modifiedTime": 1671220959152, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!HLhFCDGfI8EK7uV9" } diff --git a/packs/src/items/equipment/boots-of-speed.json b/packs/src/items/equipment/boots-of-speed.json index 6461625c66..6e7214fb59 100644 --- a/packs/src/items/equipment/boots-of-speed.json +++ b/packs/src/items/equipment/boots-of-speed.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233624, "modifiedTime": 1671220960154, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MCMSZrhcD40oMJ9v" } diff --git a/packs/src/items/equipment/boots-of-striding-and-springing.json b/packs/src/items/equipment/boots-of-striding-and-springing.json index b8c7c5e57d..210222814d 100644 --- a/packs/src/items/equipment/boots-of-striding-and-springing.json +++ b/packs/src/items/equipment/boots-of-striding-and-springing.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [ { @@ -117,7 +122,8 @@ "tint": null, "transfer": true, "flags": {}, - "sort": 0 + "sort": 0, + "_key": "!items.effects!hSY1b8yi8JWw2blf.ewBIkUaBn4meKsK5" } ], "folder": null, @@ -133,5 +139,6 @@ "createdTime": 1661787233814, "modifiedTime": 1690480596552, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hSY1b8yi8JWw2blf" } diff --git a/packs/src/items/equipment/boots-of-the-winterlands.json b/packs/src/items/equipment/boots-of-the-winterlands.json index 803374cd28..056b0151ed 100644 --- a/packs/src/items/equipment/boots-of-the-winterlands.json +++ b/packs/src/items/equipment/boots-of-the-winterlands.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [ { @@ -117,7 +122,8 @@ "tint": null, "transfer": true, "flags": {}, - "sort": 0 + "sort": 0, + "_key": "!items.effects!RDPFmUR9exTEXFc8.6PXhI0qCk64LuoXO" } ], "folder": null, @@ -133,5 +139,6 @@ "createdTime": 1661787233655, "modifiedTime": 1690480634095, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!RDPFmUR9exTEXFc8" } diff --git a/packs/src/items/equipment/bracers-of-archery.json b/packs/src/items/equipment/bracers-of-archery.json index b149c3c608..4dec2cfc85 100644 --- a/packs/src/items/equipment/bracers-of-archery.json +++ b/packs/src/items/equipment/bracers-of-archery.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [ { @@ -122,7 +127,8 @@ "tint": null, "transfer": true, "flags": {}, - "sort": 0 + "sort": 0, + "_key": "!items.effects!ZYEqOSY9BLZs2GPx.ChaLjlYldFzDgHHv" } ], "folder": null, @@ -138,5 +144,6 @@ "createdTime": 1661787233715, "modifiedTime": 1690480681414, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ZYEqOSY9BLZs2GPx" } diff --git a/packs/src/items/equipment/bracers-of-defense.json b/packs/src/items/equipment/bracers-of-defense.json index 2dd475a720..757635105a 100644 --- a/packs/src/items/equipment/bracers-of-defense.json +++ b/packs/src/items/equipment/bracers-of-defense.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [ { @@ -117,7 +122,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!DSHi7yT6OUyDoCcu.ul7rjl68p1kyv4z2" } ], "folder": null, @@ -133,5 +139,6 @@ "createdTime": 1661787233523, "modifiedTime": 1671220958745, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!DSHi7yT6OUyDoCcu" } diff --git a/packs/src/items/equipment/breastplate-1.json b/packs/src/items/equipment/breastplate-1.json index af61f84830..f2a3563840 100644 --- a/packs/src/items/equipment/breastplate-1.json +++ b/packs/src/items/equipment/breastplate-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 20, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233486, "modifiedTime": 1690538958775, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!84z9mVy1mCipUWEY" } diff --git a/packs/src/items/equipment/breastplate-2.json b/packs/src/items/equipment/breastplate-2.json index a4372ad0df..b8294c9d9d 100644 --- a/packs/src/items/equipment/breastplate-2.json +++ b/packs/src/items/equipment/breastplate-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 20, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233535, "modifiedTime": 1690538962130, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ET8Oo5vaTZqyb7rN" } diff --git a/packs/src/items/equipment/breastplate-3.json b/packs/src/items/equipment/breastplate-3.json index 2f8bb98942..0e66873b47 100644 --- a/packs/src/items/equipment/breastplate-3.json +++ b/packs/src/items/equipment/breastplate-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 20, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233577, "modifiedTime": 1690538965498, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!JDTO996oInbiZGHW" } diff --git a/packs/src/items/equipment/breastplate-armor-of-resistance.json b/packs/src/items/equipment/breastplate-armor-of-resistance.json index c74b1b65bf..4c653f6cd4 100644 --- a/packs/src/items/equipment/breastplate-armor-of-resistance.json +++ b/packs/src/items/equipment/breastplate-armor-of-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 20, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233848, "modifiedTime": 1690538968668, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!lccm5AjIk91aIHbi" } diff --git a/packs/src/items/equipment/breastplate.json b/packs/src/items/equipment/breastplate.json index ae1c221116..4d751e01d3 100644 --- a/packs/src/items/equipment/breastplate.json +++ b/packs/src/items/equipment/breastplate.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 20, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233661, "modifiedTime": 1690538955372, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!SK2HATQ4abKUlV8i" } diff --git a/packs/src/items/equipment/brooch-of-shielding.json b/packs/src/items/equipment/brooch-of-shielding.json index f84aa9c889..b8d3d338a4 100644 --- a/packs/src/items/equipment/brooch-of-shielding.json +++ b/packs/src/items/equipment/brooch-of-shielding.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233716, "modifiedTime": 1671220961743, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ZdcEtbtU3VkuxIFE" } diff --git a/packs/src/items/equipment/cape-of-the-mountebank.json b/packs/src/items/equipment/cape-of-the-mountebank.json index fe4169911f..80e2680ac9 100644 --- a/packs/src/items/equipment/cape-of-the-mountebank.json +++ b/packs/src/items/equipment/cape-of-the-mountebank.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233808, "modifiedTime": 1671220962956, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gpHgWLsD8k2yzbfR" } diff --git a/packs/src/items/equipment/chain-mail-1.json b/packs/src/items/equipment/chain-mail-1.json index 83107c9cc9..cbf5bdba21 100644 --- a/packs/src/items/equipment/chain-mail-1.json +++ b/packs/src/items/equipment/chain-mail-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 55, "price": { @@ -88,7 +93,7 @@ }, "strength": 13, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233658, "modifiedTime": 1671220960535, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Rn9gt6JGULtx9Zvz" } diff --git a/packs/src/items/equipment/chain-mail-2.json b/packs/src/items/equipment/chain-mail-2.json index b993893c2e..dbd4086e43 100644 --- a/packs/src/items/equipment/chain-mail-2.json +++ b/packs/src/items/equipment/chain-mail-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 55, "price": { @@ -88,7 +93,7 @@ }, "strength": 13, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233725, "modifiedTime": 1671220961845, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!akjpaK4TYkUZbGrN" } diff --git a/packs/src/items/equipment/chain-mail-3.json b/packs/src/items/equipment/chain-mail-3.json index 50c8cd3cd5..a0773ca9ee 100644 --- a/packs/src/items/equipment/chain-mail-3.json +++ b/packs/src/items/equipment/chain-mail-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 55, "price": { @@ -88,7 +93,7 @@ }, "strength": 13, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233780, "modifiedTime": 1671220962623, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eHGbr3rqRRxdBPLq" } diff --git a/packs/src/items/equipment/chain-mail-armor-of-resistance.json b/packs/src/items/equipment/chain-mail-armor-of-resistance.json index 41be77da0c..f7e452fb1d 100644 --- a/packs/src/items/equipment/chain-mail-armor-of-resistance.json +++ b/packs/src/items/equipment/chain-mail-armor-of-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 55, "price": { @@ -88,7 +93,7 @@ }, "strength": 13, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233510, "modifiedTime": 1671220958537, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!BQw5lyopqLmf8B6u" } diff --git a/packs/src/items/equipment/chain-mail.json b/packs/src/items/equipment/chain-mail.json index af30956bb6..e46a4fcf85 100644 --- a/packs/src/items/equipment/chain-mail.json +++ b/packs/src/items/equipment/chain-mail.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 55, "price": { @@ -88,7 +93,7 @@ }, "strength": 13, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233889, "modifiedTime": 1671220964584, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!rLMflzmxpe8JGTOA" } diff --git a/packs/src/items/equipment/chain-shirt-1.json b/packs/src/items/equipment/chain-shirt-1.json index 376b5567e0..f303e5fd47 100644 --- a/packs/src/items/equipment/chain-shirt-1.json +++ b/packs/src/items/equipment/chain-shirt-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 20, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233626, "modifiedTime": 1690538780227, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MSO3JxK8578xSh6x" } diff --git a/packs/src/items/equipment/chain-shirt-2.json b/packs/src/items/equipment/chain-shirt-2.json index d1de781084..e12277271b 100644 --- a/packs/src/items/equipment/chain-shirt-2.json +++ b/packs/src/items/equipment/chain-shirt-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 20, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233546, "modifiedTime": 1690538783831, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!FLoBS3UnFnZTSsSx" } diff --git a/packs/src/items/equipment/chain-shirt-3.json b/packs/src/items/equipment/chain-shirt-3.json index 997870f930..dde0e8b4ee 100644 --- a/packs/src/items/equipment/chain-shirt-3.json +++ b/packs/src/items/equipment/chain-shirt-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 20, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233736, "modifiedTime": 1690538789485, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!cI0UhWUux8gIzSHn" } diff --git a/packs/src/items/equipment/chain-shirt-armor-of-resistance.json b/packs/src/items/equipment/chain-shirt-armor-of-resistance.json index a4f706d031..10f411d3d5 100644 --- a/packs/src/items/equipment/chain-shirt-armor-of-resistance.json +++ b/packs/src/items/equipment/chain-shirt-armor-of-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 20, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233560, "modifiedTime": 1690538792957, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!HF32aZSVw4P0MR4K" } diff --git a/packs/src/items/equipment/chain-shirt.json b/packs/src/items/equipment/chain-shirt.json index 41d8780f6f..a51448a74f 100644 --- a/packs/src/items/equipment/chain-shirt.json +++ b/packs/src/items/equipment/chain-shirt.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 20, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233873, "modifiedTime": 1690538776890, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!p2zChy24ZJdVqMSH" } diff --git a/packs/src/items/equipment/circlet-of-blasting.json b/packs/src/items/equipment/circlet-of-blasting.json index 3f56bd6cd7..4aaaa2be27 100644 --- a/packs/src/items/equipment/circlet-of-blasting.json +++ b/packs/src/items/equipment/circlet-of-blasting.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -93,7 +98,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -109,5 +114,6 @@ "createdTime": 1661787233498, "modifiedTime": 1671220957735, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9UvWQTY5yIgkJmmb" } diff --git a/packs/src/items/equipment/cloak-of-arachnida.json b/packs/src/items/equipment/cloak-of-arachnida.json index 952a8a9927..c6e503d391 100644 --- a/packs/src/items/equipment/cloak-of-arachnida.json +++ b/packs/src/items/equipment/cloak-of-arachnida.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233687, "modifiedTime": 1671220961395, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!VwJjuNbBf2KHMPrY" } diff --git a/packs/src/items/equipment/cloak-of-displacement.json b/packs/src/items/equipment/cloak-of-displacement.json index fb30ce9b4c..4b4c990dc0 100644 --- a/packs/src/items/equipment/cloak-of-displacement.json +++ b/packs/src/items/equipment/cloak-of-displacement.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233620, "modifiedTime": 1671220960109, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LpD064ilKEeFzVI8" } diff --git a/packs/src/items/equipment/cloak-of-elvenkind.json b/packs/src/items/equipment/cloak-of-elvenkind.json index 39bdd60a2e..1c370d1b16 100644 --- a/packs/src/items/equipment/cloak-of-elvenkind.json +++ b/packs/src/items/equipment/cloak-of-elvenkind.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233580, "modifiedTime": 1671220959392, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Jvf1NWFxcjfHnMQ5" } diff --git a/packs/src/items/equipment/cloak-of-protection.json b/packs/src/items/equipment/cloak-of-protection.json index 283ecf4564..bb5da1f8f1 100644 --- a/packs/src/items/equipment/cloak-of-protection.json +++ b/packs/src/items/equipment/cloak-of-protection.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [ { @@ -121,7 +126,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!lvaMqEhfidfHDGf5.jxfin1rh71p1xjjv" } ], "folder": null, @@ -137,5 +143,6 @@ "createdTime": 1661787233851, "modifiedTime": 1674424596069, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!lvaMqEhfidfHDGf5" } diff --git a/packs/src/items/equipment/cloak-of-the-bat.json b/packs/src/items/equipment/cloak-of-the-bat.json index 087b2325b2..c43f543778 100644 --- a/packs/src/items/equipment/cloak-of-the-bat.json +++ b/packs/src/items/equipment/cloak-of-the-bat.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233508, "modifiedTime": 1671220958520, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Aq1rhgcgFnwu2T4I" } diff --git a/packs/src/items/equipment/cloak-of-the-manta-ray.json b/packs/src/items/equipment/cloak-of-the-manta-ray.json index 62ba972dba..06d12c8362 100644 --- a/packs/src/items/equipment/cloak-of-the-manta-ray.json +++ b/packs/src/items/equipment/cloak-of-the-manta-ray.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233811, "modifiedTime": 1671220962984, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hGrxC676XmlnS9y0" } diff --git a/packs/src/items/equipment/common-clothes.json b/packs/src/items/equipment/common-clothes.json index aeb5052b6a..18b34f2b93 100644 --- a/packs/src/items/equipment/common-clothes.json +++ b/packs/src/items/equipment/common-clothes.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233492, "modifiedTime": 1671220957682, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8RXjiddJ6VGyE7vB" } diff --git a/packs/src/items/equipment/costume-clothes.json b/packs/src/items/equipment/costume-clothes.json index eeaac3cbf1..5dbd8a6dd8 100644 --- a/packs/src/items/equipment/costume-clothes.json +++ b/packs/src/items/equipment/costume-clothes.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233532, "modifiedTime": 1671220958843, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!E2h6sEe6FU2tnU96" } diff --git a/packs/src/items/equipment/demon-armor.json b/packs/src/items/equipment/demon-armor.json index 7c18f8b9f2..692e77d5ee 100644 --- a/packs/src/items/equipment/demon-armor.json +++ b/packs/src/items/equipment/demon-armor.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 65, "price": { @@ -94,7 +99,7 @@ }, "strength": 15, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -110,5 +115,6 @@ "createdTime": 1661787233789, "modifiedTime": 1690568584853, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ejEt6hLQxOux04lS" } diff --git a/packs/src/items/equipment/dragon-scale-mail.json b/packs/src/items/equipment/dragon-scale-mail.json index 07cce3d41c..d3fdbbb291 100644 --- a/packs/src/items/equipment/dragon-scale-mail.json +++ b/packs/src/items/equipment/dragon-scale-mail.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 45, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233910, "modifiedTime": 1690538818576, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!tIwoSAGJlcuyiwaQ" } diff --git a/packs/src/items/equipment/dwarven-plate.json b/packs/src/items/equipment/dwarven-plate.json index b5b1fe0a13..8fac85d703 100644 --- a/packs/src/items/equipment/dwarven-plate.json +++ b/packs/src/items/equipment/dwarven-plate.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 65, "price": { @@ -89,7 +94,7 @@ }, "strength": 15, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233641, "modifiedTime": 1690539518215, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!OwqRt1pVLhdMQa0d" } diff --git a/packs/src/items/equipment/elven-chain.json b/packs/src/items/equipment/elven-chain.json index 4f90d0c27b..317ee0ce58 100644 --- a/packs/src/items/equipment/elven-chain.json +++ b/packs/src/items/equipment/elven-chain.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 20, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": true + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233472, "modifiedTime": 1671220957447, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!6067acDZGv7KNOkP" } diff --git a/packs/src/items/equipment/emblem.json b/packs/src/items/equipment/emblem.json index 8b9b188f13..58e7148868 100644 --- a/packs/src/items/equipment/emblem.json +++ b/packs/src/items/equipment/emblem.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233847, "modifiedTime": 1671220963352, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!laVqttkGMW4B9654" } diff --git a/packs/src/items/equipment/exotic-saddle.json b/packs/src/items/equipment/exotic-saddle.json index 8c27b9b083..4e1c6e813a 100644 --- a/packs/src/items/equipment/exotic-saddle.json +++ b/packs/src/items/equipment/exotic-saddle.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 40, "price": { @@ -87,7 +92,7 @@ }, "strength": null, "stealth": false, - "proficient": true + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233463, "modifiedTime": 1671220957346, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!4932CLHvjZYxOm4g" } diff --git a/packs/src/items/equipment/eyes-of-charming.json b/packs/src/items/equipment/eyes-of-charming.json index 1c833fcd44..e27b347ffe 100644 --- a/packs/src/items/equipment/eyes-of-charming.json +++ b/packs/src/items/equipment/eyes-of-charming.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.01, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233493, "modifiedTime": 1671220957692, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8dfhaa1g3VDjhtm3" } diff --git a/packs/src/items/equipment/eyes-of-minute-seeing.json b/packs/src/items/equipment/eyes-of-minute-seeing.json index 98d4f4de07..81ca50a21c 100644 --- a/packs/src/items/equipment/eyes-of-minute-seeing.json +++ b/packs/src/items/equipment/eyes-of-minute-seeing.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.01, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233514, "modifiedTime": 1671220958595, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!BsyPV6eTNghT3Fho" } diff --git a/packs/src/items/equipment/eyes-of-the-eagle.json b/packs/src/items/equipment/eyes-of-the-eagle.json index da01662f83..86fc9b4e86 100644 --- a/packs/src/items/equipment/eyes-of-the-eagle.json +++ b/packs/src/items/equipment/eyes-of-the-eagle.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.01, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233675, "modifiedTime": 1671220960694, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!U4PI6l96QJUk6TGb" } diff --git a/packs/src/items/equipment/fine-clothes.json b/packs/src/items/equipment/fine-clothes.json index 6e38a41b7b..801842a768 100644 --- a/packs/src/items/equipment/fine-clothes.json +++ b/packs/src/items/equipment/fine-clothes.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233453, "modifiedTime": 1671220957197, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3OXueEpvDDCVfGFA" } diff --git a/packs/src/items/equipment/gauntlets-of-ogre-power.json b/packs/src/items/equipment/gauntlets-of-ogre-power.json index 78fff1696f..2a6b7aa6fd 100644 --- a/packs/src/items/equipment/gauntlets-of-ogre-power.json +++ b/packs/src/items/equipment/gauntlets-of-ogre-power.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": 0 + "proficient": null }, "effects": [ { @@ -117,7 +122,8 @@ "tint": null, "transfer": true, "flags": {}, - "sort": 0 + "sort": 0, + "_key": "!items.effects!3TWT5bv3z5zGUZCe.m7FoXVGKT7C9X7aq" } ], "ownership": { @@ -134,5 +140,6 @@ }, "folder": null, "sort": 0, - "_id": "3TWT5bv3z5zGUZCe" + "_id": "3TWT5bv3z5zGUZCe", + "_key": "!items!3TWT5bv3z5zGUZCe" } diff --git a/packs/src/items/equipment/glamoured-studded-leather.json b/packs/src/items/equipment/glamoured-studded-leather.json index e2e0c95277..b68bba8f0d 100644 --- a/packs/src/items/equipment/glamoured-studded-leather.json +++ b/packs/src/items/equipment/glamoured-studded-leather.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 13, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233668, "modifiedTime": 1671220960618, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!SypSoinJkES0o5FB" } diff --git a/packs/src/items/equipment/gloves-of-missile-snaring.json b/packs/src/items/equipment/gloves-of-missile-snaring.json index 040eab9a33..7ebf5bc468 100644 --- a/packs/src/items/equipment/gloves-of-missile-snaring.json +++ b/packs/src/items/equipment/gloves-of-missile-snaring.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233871, "modifiedTime": 1671220964365, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!otYAEwhsANKHZAmk" } diff --git a/packs/src/items/equipment/gloves-of-swimming-and-climbing.json b/packs/src/items/equipment/gloves-of-swimming-and-climbing.json index 24d4b53dd0..1ca1d97018 100644 --- a/packs/src/items/equipment/gloves-of-swimming-and-climbing.json +++ b/packs/src/items/equipment/gloves-of-swimming-and-climbing.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233645, "modifiedTime": 1671220960424, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!PRhtLbRLb9LjHZG7" } diff --git a/packs/src/items/equipment/goggles-of-night.json b/packs/src/items/equipment/goggles-of-night.json index 6603beba02..e95707d59f 100644 --- a/packs/src/items/equipment/goggles-of-night.json +++ b/packs/src/items/equipment/goggles-of-night.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.3, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233698, "modifiedTime": 1671220961546, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XGAWqtmhK6SYBL6A" } diff --git a/packs/src/items/equipment/half-plate-armor-1.json b/packs/src/items/equipment/half-plate-armor-1.json index 771bf3ff22..a5525816ff 100644 --- a/packs/src/items/equipment/half-plate-armor-1.json +++ b/packs/src/items/equipment/half-plate-armor-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 40, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233743, "modifiedTime": 1690539018148, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dOZkW5MwvsMhnd08" } diff --git a/packs/src/items/equipment/half-plate-armor-2.json b/packs/src/items/equipment/half-plate-armor-2.json index 85e610302d..87a6edfd3f 100644 --- a/packs/src/items/equipment/half-plate-armor-2.json +++ b/packs/src/items/equipment/half-plate-armor-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 40, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233705, "modifiedTime": 1690539021231, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!YFarUKR3OrM5raf5" } diff --git a/packs/src/items/equipment/half-plate-armor-3.json b/packs/src/items/equipment/half-plate-armor-3.json index e5265a75e3..079429fc7a 100644 --- a/packs/src/items/equipment/half-plate-armor-3.json +++ b/packs/src/items/equipment/half-plate-armor-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 40, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233966, "modifiedTime": 1690539024399, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!xbVpKtrQ6tJsPhXX" } diff --git a/packs/src/items/equipment/half-plate-armor-of-resistance.json b/packs/src/items/equipment/half-plate-armor-of-resistance.json index 1ac44748e2..be7290fb03 100644 --- a/packs/src/items/equipment/half-plate-armor-of-resistance.json +++ b/packs/src/items/equipment/half-plate-armor-of-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 40, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233845, "modifiedTime": 1690539027525, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!lN1VbnGFo3HNZXNb" } diff --git a/packs/src/items/equipment/half-plate-armor.json b/packs/src/items/equipment/half-plate-armor.json index 501d65418d..ef4e80f5e6 100644 --- a/packs/src/items/equipment/half-plate-armor.json +++ b/packs/src/items/equipment/half-plate-armor.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 40, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233954, "modifiedTime": 1690539014883, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!vsgmACFYINloIdPm" } diff --git a/packs/src/items/equipment/hat-of-disguise.json b/packs/src/items/equipment/hat-of-disguise.json index 0785ae3ed1..9d8c953cf2 100644 --- a/packs/src/items/equipment/hat-of-disguise.json +++ b/packs/src/items/equipment/hat-of-disguise.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233744, "modifiedTime": 1671220962047, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dQxqcjDm0IxYusCV" } diff --git a/packs/src/items/equipment/headband-of-intellect.json b/packs/src/items/equipment/headband-of-intellect.json index 22857c5636..916b96021f 100644 --- a/packs/src/items/equipment/headband-of-intellect.json +++ b/packs/src/items/equipment/headband-of-intellect.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.01, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233720, "modifiedTime": 1671220961770, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!a26LjC4QxP1oorXC" } diff --git a/packs/src/items/equipment/helm-of-brilliance.json b/packs/src/items/equipment/helm-of-brilliance.json index 3fd06ee48d..a4f3eb021c 100644 --- a/packs/src/items/equipment/helm-of-brilliance.json +++ b/packs/src/items/equipment/helm-of-brilliance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233893, "modifiedTime": 1671220964623, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!rhGulc3gEJhnuP31" } diff --git a/packs/src/items/equipment/helm-of-comprehending-languages.json b/packs/src/items/equipment/helm-of-comprehending-languages.json index 90f3282f1a..4974e13534 100644 --- a/packs/src/items/equipment/helm-of-comprehending-languages.json +++ b/packs/src/items/equipment/helm-of-comprehending-languages.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233892, "modifiedTime": 1671220964615, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!rY9sRFQp5CFSfsat" } diff --git a/packs/src/items/equipment/helm-of-telepathy.json b/packs/src/items/equipment/helm-of-telepathy.json index 53e99f26b7..689de7eefa 100644 --- a/packs/src/items/equipment/helm-of-telepathy.json +++ b/packs/src/items/equipment/helm-of-telepathy.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233534, "modifiedTime": 1671220958880, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!EJVaAvNfCq6gn6VG" } diff --git a/packs/src/items/equipment/helm-of-teleportation.json b/packs/src/items/equipment/helm-of-teleportation.json index 077edbeda7..681b862611 100644 --- a/packs/src/items/equipment/helm-of-teleportation.json +++ b/packs/src/items/equipment/helm-of-teleportation.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233521, "modifiedTime": 1671220958686, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!DEQkJiQdGyfmSNkV" } diff --git a/packs/src/items/equipment/hide-armor-1.json b/packs/src/items/equipment/hide-armor-1.json index 2a33501f84..abc2fc88a1 100644 --- a/packs/src/items/equipment/hide-armor-1.json +++ b/packs/src/items/equipment/hide-armor-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 12, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233834, "modifiedTime": 1690538747075, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!k2B9P3gm2NGjJ1m0" } diff --git a/packs/src/items/equipment/hide-armor-2.json b/packs/src/items/equipment/hide-armor-2.json index fe93b90b3a..838f1d6385 100644 --- a/packs/src/items/equipment/hide-armor-2.json +++ b/packs/src/items/equipment/hide-armor-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 12, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233699, "modifiedTime": 1690538750463, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XJFqU9COdk4ycFa2" } diff --git a/packs/src/items/equipment/hide-armor-3.json b/packs/src/items/equipment/hide-armor-3.json index d5f2f8fe1e..53d7d6d5ae 100644 --- a/packs/src/items/equipment/hide-armor-3.json +++ b/packs/src/items/equipment/hide-armor-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 12, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233573, "modifiedTime": 1690538753935, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!IeM5Ha2cg0RA99q3" } diff --git a/packs/src/items/equipment/hide-armor-of-resistance.json b/packs/src/items/equipment/hide-armor-of-resistance.json index dfa3a1ff0e..9d0bf5cb1c 100644 --- a/packs/src/items/equipment/hide-armor-of-resistance.json +++ b/packs/src/items/equipment/hide-armor-of-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 12, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233685, "modifiedTime": 1690538757312, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!VRT5GEusTFstOZdF" } diff --git a/packs/src/items/equipment/hide-armor.json b/packs/src/items/equipment/hide-armor.json index acd7c37dff..98c707ae3d 100644 --- a/packs/src/items/equipment/hide-armor.json +++ b/packs/src/items/equipment/hide-armor.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 12, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233857, "modifiedTime": 1690538743475, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!n1V07puo0RQxPGuF" } diff --git a/packs/src/items/equipment/ioun-stone-of-absorption.json b/packs/src/items/equipment/ioun-stone-of-absorption.json index 5f17bf9b86..e98ed00646 100644 --- a/packs/src/items/equipment/ioun-stone-of-absorption.json +++ b/packs/src/items/equipment/ioun-stone-of-absorption.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -93,7 +98,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -109,5 +114,6 @@ "createdTime": 1661787233630, "modifiedTime": 1671220960278, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!NGVEouqK0I6J6jV5" } diff --git a/packs/src/items/equipment/ioun-stone-of-agility.json b/packs/src/items/equipment/ioun-stone-of-agility.json index 53b389aa53..b2fcb9f89b 100644 --- a/packs/src/items/equipment/ioun-stone-of-agility.json +++ b/packs/src/items/equipment/ioun-stone-of-agility.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -94,7 +99,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [ { @@ -122,7 +127,8 @@ "tint": null, "transfer": true, "flags": {}, - "sort": 0 + "sort": 0, + "_key": "!items.effects!Q4Iy6hqREsbk9yG7.f4ScI5hFiyWF5heN" } ], "folder": null, @@ -138,5 +144,6 @@ "createdTime": 1661787233647, "modifiedTime": 1690480723227, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Q4Iy6hqREsbk9yG7" } diff --git a/packs/src/items/equipment/ioun-stone-of-awareness.json b/packs/src/items/equipment/ioun-stone-of-awareness.json index ef85562379..e720e9cc5a 100644 --- a/packs/src/items/equipment/ioun-stone-of-awareness.json +++ b/packs/src/items/equipment/ioun-stone-of-awareness.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -93,7 +98,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -109,5 +114,6 @@ "createdTime": 1661787233810, "modifiedTime": 1671220962973, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!h8rS84jKsMHl9J1i" } diff --git a/packs/src/items/equipment/ioun-stone-of-fortitude.json b/packs/src/items/equipment/ioun-stone-of-fortitude.json index 4ed69415b2..2cc42e2450 100644 --- a/packs/src/items/equipment/ioun-stone-of-fortitude.json +++ b/packs/src/items/equipment/ioun-stone-of-fortitude.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -94,7 +99,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [ { @@ -122,7 +127,8 @@ "tint": null, "transfer": true, "flags": {}, - "sort": 0 + "sort": 0, + "_key": "!items.effects!ig5DOQtQYJPXJId4.FpwzPfzNKZokKZF4" } ], "folder": null, @@ -138,5 +144,6 @@ "createdTime": 1661787233824, "modifiedTime": 1690480758230, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ig5DOQtQYJPXJId4" } diff --git a/packs/src/items/equipment/ioun-stone-of-greater-absorption.json b/packs/src/items/equipment/ioun-stone-of-greater-absorption.json index b7345cedc2..1f473cff39 100644 --- a/packs/src/items/equipment/ioun-stone-of-greater-absorption.json +++ b/packs/src/items/equipment/ioun-stone-of-greater-absorption.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -93,7 +98,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -109,5 +114,6 @@ "createdTime": 1661787233481, "modifiedTime": 1671220957529, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7FEcfqz1piPHN1tV" } diff --git a/packs/src/items/equipment/ioun-stone-of-insight.json b/packs/src/items/equipment/ioun-stone-of-insight.json index 29e23b3d53..998484fc72 100644 --- a/packs/src/items/equipment/ioun-stone-of-insight.json +++ b/packs/src/items/equipment/ioun-stone-of-insight.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -94,7 +99,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [ { @@ -122,7 +127,8 @@ "tint": null, "transfer": true, "flags": {}, - "sort": 0 + "sort": 0, + "_key": "!items.effects!9jMQEm99q1ttAV1Q.GDz8rS3R0TN0Pxhx" } ], "folder": null, @@ -138,5 +144,6 @@ "createdTime": 1661787233501, "modifiedTime": 1690480798346, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9jMQEm99q1ttAV1Q" } diff --git a/packs/src/items/equipment/ioun-stone-of-intellect.json b/packs/src/items/equipment/ioun-stone-of-intellect.json index 9c7d41b256..0dc8995278 100644 --- a/packs/src/items/equipment/ioun-stone-of-intellect.json +++ b/packs/src/items/equipment/ioun-stone-of-intellect.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -94,7 +99,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [ { @@ -122,7 +127,8 @@ "tint": null, "transfer": true, "flags": {}, - "sort": 0 + "sort": 0, + "_key": "!items.effects!YeLz5OxRNxmvHJId.PM2UOAyd8Cy964mo" } ], "folder": null, @@ -138,5 +144,6 @@ "createdTime": 1661787233707, "modifiedTime": 1690480835386, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!YeLz5OxRNxmvHJId" } diff --git a/packs/src/items/equipment/ioun-stone-of-leadership.json b/packs/src/items/equipment/ioun-stone-of-leadership.json index 4f47292c87..979fc72348 100644 --- a/packs/src/items/equipment/ioun-stone-of-leadership.json +++ b/packs/src/items/equipment/ioun-stone-of-leadership.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -94,7 +99,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [ { @@ -122,7 +127,8 @@ "tint": null, "transfer": true, "flags": {}, - "sort": 0 + "sort": 0, + "_key": "!items.effects!hDF4RSCzMO8iI14x.3hbyQMgvW8GyQotV" } ], "folder": null, @@ -138,5 +144,6 @@ "createdTime": 1661787233810, "modifiedTime": 1690480879261, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hDF4RSCzMO8iI14x" } diff --git a/packs/src/items/equipment/ioun-stone-of-mastery.json b/packs/src/items/equipment/ioun-stone-of-mastery.json index d5ac1ae9e3..9cac307d33 100644 --- a/packs/src/items/equipment/ioun-stone-of-mastery.json +++ b/packs/src/items/equipment/ioun-stone-of-mastery.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -94,7 +99,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [ { @@ -122,7 +127,8 @@ "tint": null, "transfer": true, "flags": {}, - "sort": 0 + "sort": 0, + "_key": "!items.effects!nk2MH16KcZmKp7FQ.jNhlCgAz5EWLkZy6" } ], "folder": null, @@ -138,5 +144,6 @@ "createdTime": 1661787233863, "modifiedTime": 1690481038713, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nk2MH16KcZmKp7FQ" } diff --git a/packs/src/items/equipment/ioun-stone-of-protection.json b/packs/src/items/equipment/ioun-stone-of-protection.json index 765c4677f1..94afb71aad 100644 --- a/packs/src/items/equipment/ioun-stone-of-protection.json +++ b/packs/src/items/equipment/ioun-stone-of-protection.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -94,7 +99,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [ { @@ -122,7 +127,8 @@ "tint": null, "transfer": true, "flags": {}, - "sort": 0 + "sort": 0, + "_key": "!items.effects!v4uNbmiz4ECTI89n.GWrRc9Yfqt7N24I6" } ], "folder": null, @@ -138,5 +144,6 @@ "createdTime": 1661787233950, "modifiedTime": 1690481078298, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!v4uNbmiz4ECTI89n" } diff --git a/packs/src/items/equipment/ioun-stone-of-regeneration.json b/packs/src/items/equipment/ioun-stone-of-regeneration.json index 0f8966ae2d..4d3c03a22e 100644 --- a/packs/src/items/equipment/ioun-stone-of-regeneration.json +++ b/packs/src/items/equipment/ioun-stone-of-regeneration.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -93,7 +98,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -109,5 +114,6 @@ "createdTime": 1661787233903, "modifiedTime": 1671220964815, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!szNhDWpks5BhEXhT" } diff --git a/packs/src/items/equipment/ioun-stone-of-reserve.json b/packs/src/items/equipment/ioun-stone-of-reserve.json index 89ed2fa909..2019c906f6 100644 --- a/packs/src/items/equipment/ioun-stone-of-reserve.json +++ b/packs/src/items/equipment/ioun-stone-of-reserve.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -93,7 +98,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -109,5 +114,6 @@ "createdTime": 1661787233833, "modifiedTime": 1671220963215, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!jvKmgJYL33E8gev5" } diff --git a/packs/src/items/equipment/ioun-stone-of-strength.json b/packs/src/items/equipment/ioun-stone-of-strength.json index 82ca6f6112..6b802a57d0 100644 --- a/packs/src/items/equipment/ioun-stone-of-strength.json +++ b/packs/src/items/equipment/ioun-stone-of-strength.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -94,7 +99,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [ { @@ -122,7 +127,8 @@ "tint": null, "transfer": true, "flags": {}, - "sort": 0 + "sort": 0, + "_key": "!items.effects!0G5LSgbb5NTV4XC7.plffDmuTOIrXAJDb" } ], "folder": null, @@ -138,5 +144,6 @@ "createdTime": 1661787233434, "modifiedTime": 1690481115410, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!0G5LSgbb5NTV4XC7" } diff --git a/packs/src/items/equipment/ioun-stone-of-sustenance.json b/packs/src/items/equipment/ioun-stone-of-sustenance.json index 53c95c7b17..d04d007c35 100644 --- a/packs/src/items/equipment/ioun-stone-of-sustenance.json +++ b/packs/src/items/equipment/ioun-stone-of-sustenance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -93,7 +98,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -109,5 +114,6 @@ "createdTime": 1661787233477, "modifiedTime": 1671220957492, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!6MDTnMG4Hcw7qZsy" } diff --git a/packs/src/items/equipment/leather-armor-1.json b/packs/src/items/equipment/leather-armor-1.json index 18aa4cbbba..5c5a927b41 100644 --- a/packs/src/items/equipment/leather-armor-1.json +++ b/packs/src/items/equipment/leather-armor-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233745, "modifiedTime": 1690538714547, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dXtZxlh2VKLCo1nA" } diff --git a/packs/src/items/equipment/leather-armor-2.json b/packs/src/items/equipment/leather-armor-2.json index 2fbb08d1c3..9f87d3cd65 100644 --- a/packs/src/items/equipment/leather-armor-2.json +++ b/packs/src/items/equipment/leather-armor-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233678, "modifiedTime": 1690538718437, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!UT8zCwmdXVQlBiyl" } diff --git a/packs/src/items/equipment/leather-armor-3.json b/packs/src/items/equipment/leather-armor-3.json index d31c9f38e9..2fa3f1d0d8 100644 --- a/packs/src/items/equipment/leather-armor-3.json +++ b/packs/src/items/equipment/leather-armor-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233719, "modifiedTime": 1690538721966, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ZwFCZDgQljlidzns" } diff --git a/packs/src/items/equipment/leather-armor-of-resistance.json b/packs/src/items/equipment/leather-armor-of-resistance.json index 295b5d47b2..a36ed8cad7 100644 --- a/packs/src/items/equipment/leather-armor-of-resistance.json +++ b/packs/src/items/equipment/leather-armor-of-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233744, "modifiedTime": 1690538725304, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dRtb9Tg34NKX9mGF" } diff --git a/packs/src/items/equipment/leather-armor.json b/packs/src/items/equipment/leather-armor.json index 9b5febbcc4..d2832e5c88 100644 --- a/packs/src/items/equipment/leather-armor.json +++ b/packs/src/items/equipment/leather-armor.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233695, "modifiedTime": 1690538710143, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WwdpHLXGX5r8uZu5" } diff --git a/packs/src/items/equipment/mantle-of-spell-resistance.json b/packs/src/items/equipment/mantle-of-spell-resistance.json index 882ddd0d56..ea0a39c11e 100644 --- a/packs/src/items/equipment/mantle-of-spell-resistance.json +++ b/packs/src/items/equipment/mantle-of-spell-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233872, "modifiedTime": 1671220964368, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!oxzUb5j1TMsccGW4" } diff --git a/packs/src/items/equipment/medallion-of-thoughts.json b/packs/src/items/equipment/medallion-of-thoughts.json index 087f57c450..1b567b27a7 100644 --- a/packs/src/items/equipment/medallion-of-thoughts.json +++ b/packs/src/items/equipment/medallion-of-thoughts.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.01, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233901, "modifiedTime": 1671220964778, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!skoUe223EvRYGPL6" } diff --git a/packs/src/items/equipment/military-saddle.json b/packs/src/items/equipment/military-saddle.json index 7d6d05e4fd..928f89e1d8 100644 --- a/packs/src/items/equipment/military-saddle.json +++ b/packs/src/items/equipment/military-saddle.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 30, "price": { @@ -87,7 +92,7 @@ }, "strength": null, "stealth": false, - "proficient": true + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233644, "modifiedTime": 1671220960420, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!PLkzJ310FzBnRrI5" } diff --git a/packs/src/items/equipment/mithral-breastplate.json b/packs/src/items/equipment/mithral-breastplate.json index 5b73e2585d..8ca4cc93b0 100644 --- a/packs/src/items/equipment/mithral-breastplate.json +++ b/packs/src/items/equipment/mithral-breastplate.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 20, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233519, "modifiedTime": 1690538971665, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!CcTGZzQHejxEVLK1" } diff --git a/packs/src/items/equipment/mithral-chain-mail.json b/packs/src/items/equipment/mithral-chain-mail.json index 324300c6cf..371824e28f 100644 --- a/packs/src/items/equipment/mithral-chain-mail.json +++ b/packs/src/items/equipment/mithral-chain-mail.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 55, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233706, "modifiedTime": 1671220961649, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!YS9CRHg2yQlOVi3j" } diff --git a/packs/src/items/equipment/mithral-chain-shirt.json b/packs/src/items/equipment/mithral-chain-shirt.json index ebbf4c8c2e..e84eaeea4d 100644 --- a/packs/src/items/equipment/mithral-chain-shirt.json +++ b/packs/src/items/equipment/mithral-chain-shirt.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 20, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233459, "modifiedTime": 1690538796181, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3h3ZU6qmQs18FfkA" } diff --git a/packs/src/items/equipment/mithral-half-plate-armor.json b/packs/src/items/equipment/mithral-half-plate-armor.json index 6fab464b8b..b4a48c09f4 100644 --- a/packs/src/items/equipment/mithral-half-plate-armor.json +++ b/packs/src/items/equipment/mithral-half-plate-armor.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 40, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233882, "modifiedTime": 1690539030662, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!qRMQH8lRE42JkugE" } diff --git a/packs/src/items/equipment/mithral-plate-armor.json b/packs/src/items/equipment/mithral-plate-armor.json index 7131c47538..605ae48607 100644 --- a/packs/src/items/equipment/mithral-plate-armor.json +++ b/packs/src/items/equipment/mithral-plate-armor.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 65, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233562, "modifiedTime": 1690539432643, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!HVpXIU0zZw0a4Fb7" } diff --git a/packs/src/items/equipment/mithral-ring-mail.json b/packs/src/items/equipment/mithral-ring-mail.json index d1a146c566..2daeeae26b 100644 --- a/packs/src/items/equipment/mithral-ring-mail.json +++ b/packs/src/items/equipment/mithral-ring-mail.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 40, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233911, "modifiedTime": 1690539366249, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!tJQXAJx92wL6GM1v" } diff --git a/packs/src/items/equipment/mithral-scale-mail.json b/packs/src/items/equipment/mithral-scale-mail.json index b864ffcd10..84287ae62c 100644 --- a/packs/src/items/equipment/mithral-scale-mail.json +++ b/packs/src/items/equipment/mithral-scale-mail.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 45, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233822, "modifiedTime": 1690538856644, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!iRDmig2qZ7LdP0ug" } diff --git a/packs/src/items/equipment/mithral-splint-armor.json b/packs/src/items/equipment/mithral-splint-armor.json index 1eef4e2de5..bf2033b5be 100644 --- a/packs/src/items/equipment/mithral-splint-armor.json +++ b/packs/src/items/equipment/mithral-splint-armor.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 60, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233555, "modifiedTime": 1671220959095, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!GKQSxYvS3m9qKVac" } diff --git a/packs/src/items/equipment/necklace-of-adaptation.json b/packs/src/items/equipment/necklace-of-adaptation.json index 6388e5156b..78e8450819 100644 --- a/packs/src/items/equipment/necklace-of-adaptation.json +++ b/packs/src/items/equipment/necklace-of-adaptation.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.01, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233961, "modifiedTime": 1671220965645, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!wwNpAz2KMukovewN" } diff --git a/packs/src/items/equipment/necklace-of-prayer-beads.json b/packs/src/items/equipment/necklace-of-prayer-beads.json index 0bcccf8346..75903fcf4d 100644 --- a/packs/src/items/equipment/necklace-of-prayer-beads.json +++ b/packs/src/items/equipment/necklace-of-prayer-beads.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.01, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233960, "modifiedTime": 1671220965621, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!wqVSRfkcTjuhvDyx" } diff --git a/packs/src/items/equipment/orb-of-dragonkind.json b/packs/src/items/equipment/orb-of-dragonkind.json index 00f4965726..bd6c5e0da0 100644 --- a/packs/src/items/equipment/orb-of-dragonkind.json +++ b/packs/src/items/equipment/orb-of-dragonkind.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233441, "modifiedTime": 1671220957064, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!1RwJWOAeyoideLKe" } diff --git a/packs/src/items/equipment/pack-saddle.json b/packs/src/items/equipment/pack-saddle.json index 531de9bb92..95b5c1e5b3 100644 --- a/packs/src/items/equipment/pack-saddle.json +++ b/packs/src/items/equipment/pack-saddle.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 15, "price": { @@ -87,7 +92,7 @@ }, "strength": null, "stealth": false, - "proficient": true + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233787, "modifiedTime": 1671220962695, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ecz2fVDyAg8YgJGe" } diff --git a/packs/src/items/equipment/padded-armor-1.json b/packs/src/items/equipment/padded-armor-1.json index df1eb17f94..a21b0bdb42 100644 --- a/packs/src/items/equipment/padded-armor-1.json +++ b/packs/src/items/equipment/padded-armor-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 8, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233915, "modifiedTime": 1671220964947, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!twRJhPtDQe1HceFt" } diff --git a/packs/src/items/equipment/padded-armor-2.json b/packs/src/items/equipment/padded-armor-2.json index 045cb4c064..ca50a7a266 100644 --- a/packs/src/items/equipment/padded-armor-2.json +++ b/packs/src/items/equipment/padded-armor-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 8, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233554, "modifiedTime": 1671220959082, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!G9XQPNLlDXkpVxn1" } diff --git a/packs/src/items/equipment/padded-armor-3.json b/packs/src/items/equipment/padded-armor-3.json index 35be94711c..4ea98870f3 100644 --- a/packs/src/items/equipment/padded-armor-3.json +++ b/packs/src/items/equipment/padded-armor-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 8, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233700, "modifiedTime": 1671220961566, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XKnDE8DTrJxIkVCF" } diff --git a/packs/src/items/equipment/padded-armor-of-resistance.json b/packs/src/items/equipment/padded-armor-of-resistance.json index 9ddf45c09a..09db4ebe2c 100644 --- a/packs/src/items/equipment/padded-armor-of-resistance.json +++ b/packs/src/items/equipment/padded-armor-of-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 8, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233475, "modifiedTime": 1671220957475, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!698gLyJ4JKVVMF53" } diff --git a/packs/src/items/equipment/padded-armor.json b/packs/src/items/equipment/padded-armor.json index cdf81908ea..1df4b119c6 100644 --- a/packs/src/items/equipment/padded-armor.json +++ b/packs/src/items/equipment/padded-armor.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 8, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233558, "modifiedTime": 1671220959131, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!GtKV1b5uqFQqpEni" } diff --git a/packs/src/items/equipment/periapt-of-health.json b/packs/src/items/equipment/periapt-of-health.json index c429240467..510d045d72 100644 --- a/packs/src/items/equipment/periapt-of-health.json +++ b/packs/src/items/equipment/periapt-of-health.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.01, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233504, "modifiedTime": 1671220958449, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9v0TPDXNa9S7aNB4" } diff --git a/packs/src/items/equipment/periapt-of-proof-against-poison.json b/packs/src/items/equipment/periapt-of-proof-against-poison.json index 6c31faebed..4651868805 100644 --- a/packs/src/items/equipment/periapt-of-proof-against-poison.json +++ b/packs/src/items/equipment/periapt-of-proof-against-poison.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.01, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233869, "modifiedTime": 1671220964317, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!oYZNXHth1UYxPwVi" } diff --git a/packs/src/items/equipment/periapt-of-wound-closure.json b/packs/src/items/equipment/periapt-of-wound-closure.json index da75276890..de48419ce0 100644 --- a/packs/src/items/equipment/periapt-of-wound-closure.json +++ b/packs/src/items/equipment/periapt-of-wound-closure.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.01, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233527, "modifiedTime": 1671220958772, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!DWwBkOFuYf5VN3M2" } diff --git a/packs/src/items/equipment/plate-armor-1.json b/packs/src/items/equipment/plate-armor-1.json index 0bb8c8e893..56f47f5132 100644 --- a/packs/src/items/equipment/plate-armor-1.json +++ b/packs/src/items/equipment/plate-armor-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 65, "price": { @@ -89,7 +94,7 @@ }, "strength": 15, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233797, "modifiedTime": 1690539452265, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!fStHPOhuJvwEjzQh" } diff --git a/packs/src/items/equipment/plate-armor-2.json b/packs/src/items/equipment/plate-armor-2.json index 4920b67571..ed010cdb6c 100644 --- a/packs/src/items/equipment/plate-armor-2.json +++ b/packs/src/items/equipment/plate-armor-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 65, "price": { @@ -89,7 +94,7 @@ }, "strength": 15, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233686, "modifiedTime": 1690539448688, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!VTc5McIjCm40KPIz" } diff --git a/packs/src/items/equipment/plate-armor-3.json b/packs/src/items/equipment/plate-armor-3.json index 673e95c2cf..4edfd4a3b4 100644 --- a/packs/src/items/equipment/plate-armor-3.json +++ b/packs/src/items/equipment/plate-armor-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 65, "price": { @@ -89,7 +94,7 @@ }, "strength": 15, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233462, "modifiedTime": 1690539445270, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!466j8hy4AiENMHVQ" } diff --git a/packs/src/items/equipment/plate-armor-of-etherealness.json b/packs/src/items/equipment/plate-armor-of-etherealness.json index bd7c027562..90dab69a64 100644 --- a/packs/src/items/equipment/plate-armor-of-etherealness.json +++ b/packs/src/items/equipment/plate-armor-of-etherealness.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 65, "price": { @@ -89,7 +94,7 @@ }, "strength": 15, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233742, "modifiedTime": 1690539440733, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dJjdWdaZU30r1zx4" } diff --git a/packs/src/items/equipment/plate-armor-of-resistance.json b/packs/src/items/equipment/plate-armor-of-resistance.json index 591812b152..23b6901dd6 100644 --- a/packs/src/items/equipment/plate-armor-of-resistance.json +++ b/packs/src/items/equipment/plate-armor-of-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 65, "price": { @@ -89,7 +94,7 @@ }, "strength": 15, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233727, "modifiedTime": 1690539437020, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!azxwKFHrNmG3HpVy" } diff --git a/packs/src/items/equipment/plate-armor.json b/packs/src/items/equipment/plate-armor.json index 225739c6f7..d3d952ed9f 100644 --- a/packs/src/items/equipment/plate-armor.json +++ b/packs/src/items/equipment/plate-armor.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 65, "price": { @@ -89,7 +94,7 @@ }, "strength": 15, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233639, "modifiedTime": 1690539455523, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!OjkIqlW2UpgFcjZa" } diff --git a/packs/src/items/equipment/reliquary.json b/packs/src/items/equipment/reliquary.json index 34b6e1dcd4..762ac33869 100644 --- a/packs/src/items/equipment/reliquary.json +++ b/packs/src/items/equipment/reliquary.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233804, "modifiedTime": 1671220962909, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gP1URGq3kVIIFHJ7" } diff --git a/packs/src/items/equipment/riding-saddle.json b/packs/src/items/equipment/riding-saddle.json index be640f1f61..f36973694a 100644 --- a/packs/src/items/equipment/riding-saddle.json +++ b/packs/src/items/equipment/riding-saddle.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 25, "price": { @@ -87,7 +92,7 @@ }, "strength": null, "stealth": false, - "proficient": true + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233629, "modifiedTime": 1671220960238, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!N0in6FE8DQdZrHei" } diff --git a/packs/src/items/equipment/ring-mail-1.json b/packs/src/items/equipment/ring-mail-1.json index a9554998c3..bfa0cef505 100644 --- a/packs/src/items/equipment/ring-mail-1.json +++ b/packs/src/items/equipment/ring-mail-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 40, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233631, "modifiedTime": 1690539372945, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!NM1dPyKwHw2DyUWA" } diff --git a/packs/src/items/equipment/ring-mail-2.json b/packs/src/items/equipment/ring-mail-2.json index 8dbd5f5fb4..c0f716f5b8 100644 --- a/packs/src/items/equipment/ring-mail-2.json +++ b/packs/src/items/equipment/ring-mail-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 40, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233621, "modifiedTime": 1690539376292, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!M28HYDCueaK7J8u8" } diff --git a/packs/src/items/equipment/ring-mail-3.json b/packs/src/items/equipment/ring-mail-3.json index 2ab450a517..f3979cfdcf 100644 --- a/packs/src/items/equipment/ring-mail-3.json +++ b/packs/src/items/equipment/ring-mail-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 40, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233612, "modifiedTime": 1690539379739, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!KhRhwADrTpol3yTx" } diff --git a/packs/src/items/equipment/ring-mail-armor-of-resistance.json b/packs/src/items/equipment/ring-mail-armor-of-resistance.json index 071d64b20a..676dd42a84 100644 --- a/packs/src/items/equipment/ring-mail-armor-of-resistance.json +++ b/packs/src/items/equipment/ring-mail-armor-of-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 40, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233694, "modifiedTime": 1690539382855, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Wo2Dkh191C4VmLmg" } diff --git a/packs/src/items/equipment/ring-mail.json b/packs/src/items/equipment/ring-mail.json index 531b87c32c..e5c9d1f1ad 100644 --- a/packs/src/items/equipment/ring-mail.json +++ b/packs/src/items/equipment/ring-mail.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 40, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233865, "modifiedTime": 1690539369755, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nsXZejlmgalj4he9" } diff --git a/packs/src/items/equipment/ring-of-acid-resistance.json b/packs/src/items/equipment/ring-of-acid-resistance.json index 489c01be65..13ddd03469 100644 --- a/packs/src/items/equipment/ring-of-acid-resistance.json +++ b/packs/src/items/equipment/ring-of-acid-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233690, "modifiedTime": 1671220961446, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WO8DLfz3G2QZ5njs" } diff --git a/packs/src/items/equipment/ring-of-air-elemental-command.json b/packs/src/items/equipment/ring-of-air-elemental-command.json index 4a55258cbc..c34a44028a 100644 --- a/packs/src/items/equipment/ring-of-air-elemental-command.json +++ b/packs/src/items/equipment/ring-of-air-elemental-command.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233701, "modifiedTime": 1671220961582, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XZWHQ20ynJBK6xmU" } diff --git a/packs/src/items/equipment/ring-of-animal-influence.json b/packs/src/items/equipment/ring-of-animal-influence.json index 5fe2a127c4..1f201a0f64 100644 --- a/packs/src/items/equipment/ring-of-animal-influence.json +++ b/packs/src/items/equipment/ring-of-animal-influence.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233537, "modifiedTime": 1671220958915, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ElLfmohtIFMagr5f" } diff --git a/packs/src/items/equipment/ring-of-cold-resistance.json b/packs/src/items/equipment/ring-of-cold-resistance.json index 6d28f85ae8..9e14f9d5de 100644 --- a/packs/src/items/equipment/ring-of-cold-resistance.json +++ b/packs/src/items/equipment/ring-of-cold-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233801, "modifiedTime": 1671220962879, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!fvezXwRJ5PqUf5NN" } diff --git a/packs/src/items/equipment/ring-of-djinni-summoning.json b/packs/src/items/equipment/ring-of-djinni-summoning.json index c148715d0e..9109c7d435 100644 --- a/packs/src/items/equipment/ring-of-djinni-summoning.json +++ b/packs/src/items/equipment/ring-of-djinni-summoning.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233815, "modifiedTime": 1671220963014, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hdlBOEbEjiwUjTW5" } diff --git a/packs/src/items/equipment/ring-of-earth-elemental-command.json b/packs/src/items/equipment/ring-of-earth-elemental-command.json index 2aa593d7ae..4aa82e25d6 100644 --- a/packs/src/items/equipment/ring-of-earth-elemental-command.json +++ b/packs/src/items/equipment/ring-of-earth-elemental-command.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233717, "modifiedTime": 1671220961749, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Zf7kBZa5f4WBepn1" } diff --git a/packs/src/items/equipment/ring-of-evasion.json b/packs/src/items/equipment/ring-of-evasion.json index 30951e0509..924eb004eb 100644 --- a/packs/src/items/equipment/ring-of-evasion.json +++ b/packs/src/items/equipment/ring-of-evasion.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233451, "modifiedTime": 1671220957159, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!2wxqnjpnPmkpPCC5" } diff --git a/packs/src/items/equipment/ring-of-feather-falling.json b/packs/src/items/equipment/ring-of-feather-falling.json index c37b5ce4fd..a59e756823 100644 --- a/packs/src/items/equipment/ring-of-feather-falling.json +++ b/packs/src/items/equipment/ring-of-feather-falling.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233582, "modifiedTime": 1671220959917, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!JyYwliYiWEw2g0yJ" } diff --git a/packs/src/items/equipment/ring-of-fire-elemental-command.json b/packs/src/items/equipment/ring-of-fire-elemental-command.json index 956227c6dd..387d7680fc 100644 --- a/packs/src/items/equipment/ring-of-fire-elemental-command.json +++ b/packs/src/items/equipment/ring-of-fire-elemental-command.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233615, "modifiedTime": 1671220960009, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!L9KBLub5vfb3mTDz" } diff --git a/packs/src/items/equipment/ring-of-fire-resistance.json b/packs/src/items/equipment/ring-of-fire-resistance.json index 92e8e14eaa..158b202f5b 100644 --- a/packs/src/items/equipment/ring-of-fire-resistance.json +++ b/packs/src/items/equipment/ring-of-fire-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233454, "modifiedTime": 1671220957219, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3X7vdOjnCSpi40yn" } diff --git a/packs/src/items/equipment/ring-of-force-resistance.json b/packs/src/items/equipment/ring-of-force-resistance.json index d2b0f566f3..a37dad8134 100644 --- a/packs/src/items/equipment/ring-of-force-resistance.json +++ b/packs/src/items/equipment/ring-of-force-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233664, "modifiedTime": 1671220960584, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ScxK8YNU5dWELhlQ" } diff --git a/packs/src/items/equipment/ring-of-free-action.json b/packs/src/items/equipment/ring-of-free-action.json index ed8217b70f..d524725074 100644 --- a/packs/src/items/equipment/ring-of-free-action.json +++ b/packs/src/items/equipment/ring-of-free-action.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233818, "modifiedTime": 1671220963048, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!i2puCDRaTxkuFfB4" } diff --git a/packs/src/items/equipment/ring-of-invisibility.json b/packs/src/items/equipment/ring-of-invisibility.json index 3ee7913e4e..518fc2220b 100644 --- a/packs/src/items/equipment/ring-of-invisibility.json +++ b/packs/src/items/equipment/ring-of-invisibility.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233439, "modifiedTime": 1671220957027, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!1J0dsxyKRhVXYQf5" } diff --git a/packs/src/items/equipment/ring-of-jumping.json b/packs/src/items/equipment/ring-of-jumping.json index 62d6fae47e..caa27d8c16 100644 --- a/packs/src/items/equipment/ring-of-jumping.json +++ b/packs/src/items/equipment/ring-of-jumping.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233962, "modifiedTime": 1671220965659, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!x7LfMrLafLKfemGH" } diff --git a/packs/src/items/equipment/ring-of-lightning-resistance.json b/packs/src/items/equipment/ring-of-lightning-resistance.json index 4ff358175e..ced99f59d6 100644 --- a/packs/src/items/equipment/ring-of-lightning-resistance.json +++ b/packs/src/items/equipment/ring-of-lightning-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233699, "modifiedTime": 1671220961555, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XJ8CG4UvLELCmOi2" } diff --git a/packs/src/items/equipment/ring-of-mind-shielding.json b/packs/src/items/equipment/ring-of-mind-shielding.json index 1ab069b40e..79a55e8a7b 100644 --- a/packs/src/items/equipment/ring-of-mind-shielding.json +++ b/packs/src/items/equipment/ring-of-mind-shielding.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233742, "modifiedTime": 1671220962030, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dGnkwePemh7ovuDv" } diff --git a/packs/src/items/equipment/ring-of-necrotic-resistance.json b/packs/src/items/equipment/ring-of-necrotic-resistance.json index d9a89e387e..ed2694d019 100644 --- a/packs/src/items/equipment/ring-of-necrotic-resistance.json +++ b/packs/src/items/equipment/ring-of-necrotic-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233881, "modifiedTime": 1671220964472, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!qMGkmzfLHfXd7DiJ" } diff --git a/packs/src/items/equipment/ring-of-poison-resistance.json b/packs/src/items/equipment/ring-of-poison-resistance.json index 7e75a29fa1..98b07a28cb 100644 --- a/packs/src/items/equipment/ring-of-poison-resistance.json +++ b/packs/src/items/equipment/ring-of-poison-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233470, "modifiedTime": 1671220957412, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!5SorTMl8NKDO9Yge" } diff --git a/packs/src/items/equipment/ring-of-protection.json b/packs/src/items/equipment/ring-of-protection.json index 16d9ac28f9..803baeef80 100644 --- a/packs/src/items/equipment/ring-of-protection.json +++ b/packs/src/items/equipment/ring-of-protection.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [ { @@ -124,7 +129,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!QtmVEreNIWEVOoLR.q1wbe9ru251bfnhg" } ], "folder": null, @@ -140,5 +146,6 @@ "createdTime": 1661787233653, "modifiedTime": 1690481162093, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!QtmVEreNIWEVOoLR" } diff --git a/packs/src/items/equipment/ring-of-psychic-resistance.json b/packs/src/items/equipment/ring-of-psychic-resistance.json index b07616897d..99baf23470 100644 --- a/packs/src/items/equipment/ring-of-psychic-resistance.json +++ b/packs/src/items/equipment/ring-of-psychic-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233648, "modifiedTime": 1671220960447, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Q7E6MgPzVkwBeZ6l" } diff --git a/packs/src/items/equipment/ring-of-radiant-resistance.json b/packs/src/items/equipment/ring-of-radiant-resistance.json index 6f097d47d8..1c11826261 100644 --- a/packs/src/items/equipment/ring-of-radiant-resistance.json +++ b/packs/src/items/equipment/ring-of-radiant-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233575, "modifiedTime": 1671220959318, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!IrC5LPbWNxlAQoK7" } diff --git a/packs/src/items/equipment/ring-of-regeneration.json b/packs/src/items/equipment/ring-of-regeneration.json index 50d05536f8..af2630c83a 100644 --- a/packs/src/items/equipment/ring-of-regeneration.json +++ b/packs/src/items/equipment/ring-of-regeneration.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -93,7 +98,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -109,5 +114,6 @@ "createdTime": 1661787233509, "modifiedTime": 1671220958527, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!AweD4kpKGM7Ilu3n" } diff --git a/packs/src/items/equipment/ring-of-shooting-stars.json b/packs/src/items/equipment/ring-of-shooting-stars.json index 92e7576a64..6ddd064821 100644 --- a/packs/src/items/equipment/ring-of-shooting-stars.json +++ b/packs/src/items/equipment/ring-of-shooting-stars.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233789, "modifiedTime": 1671220962713, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!etA2SBgWwduCLgLT" } diff --git a/packs/src/items/equipment/ring-of-spell-storing.json b/packs/src/items/equipment/ring-of-spell-storing.json index 19e18450b2..fc38f44edc 100644 --- a/packs/src/items/equipment/ring-of-spell-storing.json +++ b/packs/src/items/equipment/ring-of-spell-storing.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233499, "modifiedTime": 1671220957754, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9cIlRtKDtDXQtElf" } diff --git a/packs/src/items/equipment/ring-of-spell-turning.json b/packs/src/items/equipment/ring-of-spell-turning.json index c959c98dc3..0221cf7059 100644 --- a/packs/src/items/equipment/ring-of-spell-turning.json +++ b/packs/src/items/equipment/ring-of-spell-turning.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233492, "modifiedTime": 1671220957678, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8PI1EL8xHLq4tXKr" } diff --git a/packs/src/items/equipment/ring-of-swimming.json b/packs/src/items/equipment/ring-of-swimming.json index ec9cb06c83..8ee454a25b 100644 --- a/packs/src/items/equipment/ring-of-swimming.json +++ b/packs/src/items/equipment/ring-of-swimming.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233721, "modifiedTime": 1671220961782, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!aA7MbjnpHYoYvmuW" } diff --git a/packs/src/items/equipment/ring-of-telekinesis.json b/packs/src/items/equipment/ring-of-telekinesis.json index ab722c6179..f921b9f1ed 100644 --- a/packs/src/items/equipment/ring-of-telekinesis.json +++ b/packs/src/items/equipment/ring-of-telekinesis.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233817, "modifiedTime": 1671220963044, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hxfOtvFrY1PXHQN1" } diff --git a/packs/src/items/equipment/ring-of-the-ram.json b/packs/src/items/equipment/ring-of-the-ram.json index 5df661742c..27e679647c 100644 --- a/packs/src/items/equipment/ring-of-the-ram.json +++ b/packs/src/items/equipment/ring-of-the-ram.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -93,7 +98,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -109,5 +114,6 @@ "createdTime": 1661787233887, "modifiedTime": 1671220964551, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!qw05Om9XWqTMoio2" } diff --git a/packs/src/items/equipment/ring-of-three-wishes.json b/packs/src/items/equipment/ring-of-three-wishes.json index 674604582f..523ded45be 100644 --- a/packs/src/items/equipment/ring-of-three-wishes.json +++ b/packs/src/items/equipment/ring-of-three-wishes.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233791, "modifiedTime": 1671220962736, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ewXgnWiYQhS8KArS" } diff --git a/packs/src/items/equipment/ring-of-thunder-resistance.json b/packs/src/items/equipment/ring-of-thunder-resistance.json index 4d54901d7a..62722d5986 100644 --- a/packs/src/items/equipment/ring-of-thunder-resistance.json +++ b/packs/src/items/equipment/ring-of-thunder-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233574, "modifiedTime": 1671220959313, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!IpBBqr0r7JanyVn0" } diff --git a/packs/src/items/equipment/ring-of-warmth.json b/packs/src/items/equipment/ring-of-warmth.json index 6a56dd71cb..107f520bc2 100644 --- a/packs/src/items/equipment/ring-of-warmth.json +++ b/packs/src/items/equipment/ring-of-warmth.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233450, "modifiedTime": 1671220957147, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!2veAOEyfbDJuxR8Y" } diff --git a/packs/src/items/equipment/ring-of-water-elemental-command.json b/packs/src/items/equipment/ring-of-water-elemental-command.json index 75e3df606a..e1bd5f7d90 100644 --- a/packs/src/items/equipment/ring-of-water-elemental-command.json +++ b/packs/src/items/equipment/ring-of-water-elemental-command.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233565, "modifiedTime": 1671220959233, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!HnIERWmmra74hSCw" } diff --git a/packs/src/items/equipment/ring-of-water-walking.json b/packs/src/items/equipment/ring-of-water-walking.json index 80b154ac1a..2ce556c8d7 100644 --- a/packs/src/items/equipment/ring-of-water-walking.json +++ b/packs/src/items/equipment/ring-of-water-walking.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233616, "modifiedTime": 1671220960030, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LC5LsQOPwoHQW9Mi" } diff --git a/packs/src/items/equipment/ring-of-x-ray-vision.json b/packs/src/items/equipment/ring-of-x-ray-vision.json index e1a82c7839..e8fad569b7 100644 --- a/packs/src/items/equipment/ring-of-x-ray-vision.json +++ b/packs/src/items/equipment/ring-of-x-ray-vision.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233818, "modifiedTime": 1671220963052, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!i3njMqHc689GvHDn" } diff --git a/packs/src/items/equipment/robe-of-eyes.json b/packs/src/items/equipment/robe-of-eyes.json index d9e2a35922..f59547ed80 100644 --- a/packs/src/items/equipment/robe-of-eyes.json +++ b/packs/src/items/equipment/robe-of-eyes.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233675, "modifiedTime": 1671220960698, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!U74TPNQLJZbHJyCk" } diff --git a/packs/src/items/equipment/robe-of-scintillating-colors.json b/packs/src/items/equipment/robe-of-scintillating-colors.json index 8100908053..1114feaad1 100644 --- a/packs/src/items/equipment/robe-of-scintillating-colors.json +++ b/packs/src/items/equipment/robe-of-scintillating-colors.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233579, "modifiedTime": 1671220959366, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!JRJpKZyamkpa7awv" } diff --git a/packs/src/items/equipment/robe-of-stars.json b/packs/src/items/equipment/robe-of-stars.json index 03990fcda9..f1d7589ed5 100644 --- a/packs/src/items/equipment/robe-of-stars.json +++ b/packs/src/items/equipment/robe-of-stars.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -97,7 +102,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -113,5 +118,6 @@ "createdTime": 1661787233474, "modifiedTime": 1671220957469, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!66UkbfH0PVwo4HgA" } diff --git a/packs/src/items/equipment/robe-of-the-archmagi.json b/packs/src/items/equipment/robe-of-the-archmagi.json index d1457e9723..7319cb23b1 100644 --- a/packs/src/items/equipment/robe-of-the-archmagi.json +++ b/packs/src/items/equipment/robe-of-the-archmagi.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [ { @@ -117,7 +122,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!mr96Z8YTI490ExhP.x6gy8sik893jvxea" } ], "folder": null, @@ -133,5 +139,6 @@ "createdTime": 1661787233856, "modifiedTime": 1671220964066, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!mr96Z8YTI490ExhP" } diff --git a/packs/src/items/equipment/robe-of-useful-items.json b/packs/src/items/equipment/robe-of-useful-items.json index 60375a217e..4e5e8789fe 100644 --- a/packs/src/items/equipment/robe-of-useful-items.json +++ b/packs/src/items/equipment/robe-of-useful-items.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233448, "modifiedTime": 1671220957124, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!2ksm2KXCY3vBHTAx" } diff --git a/packs/src/items/equipment/robes.json b/packs/src/items/equipment/robes.json index ff6f4dfd37..b89bca551b 100644 --- a/packs/src/items/equipment/robes.json +++ b/packs/src/items/equipment/robes.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233488, "modifiedTime": 1671220957629, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8GCEodUsTEEpBlO6" } diff --git a/packs/src/items/equipment/scale-mail-1.json b/packs/src/items/equipment/scale-mail-1.json index ce57644735..489f6ca5ef 100644 --- a/packs/src/items/equipment/scale-mail-1.json +++ b/packs/src/items/equipment/scale-mail-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 45, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233721, "modifiedTime": 1690538864436, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!aDEAwKwttl35dWaB" } diff --git a/packs/src/items/equipment/scale-mail-2.json b/packs/src/items/equipment/scale-mail-2.json index 001f02fdb4..ec33364b18 100644 --- a/packs/src/items/equipment/scale-mail-2.json +++ b/packs/src/items/equipment/scale-mail-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 45, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233797, "modifiedTime": 1690538868549, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!fO1PuSOtZWLzEHqu" } diff --git a/packs/src/items/equipment/scale-mail-3.json b/packs/src/items/equipment/scale-mail-3.json index da92b22e88..b43c288348 100644 --- a/packs/src/items/equipment/scale-mail-3.json +++ b/packs/src/items/equipment/scale-mail-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 45, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233504, "modifiedTime": 1690538872425, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9uT9SXy1Gb1jiiZX" } diff --git a/packs/src/items/equipment/scale-mail-armor-of-resistance.json b/packs/src/items/equipment/scale-mail-armor-of-resistance.json index 7dbfcb3d29..fb3b2241ce 100644 --- a/packs/src/items/equipment/scale-mail-armor-of-resistance.json +++ b/packs/src/items/equipment/scale-mail-armor-of-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 45, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233792, "modifiedTime": 1690538875676, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!f0I81P9k29Q1lV4S" } diff --git a/packs/src/items/equipment/scale-mail.json b/packs/src/items/equipment/scale-mail.json index 049834aba7..72f3abb58e 100644 --- a/packs/src/items/equipment/scale-mail.json +++ b/packs/src/items/equipment/scale-mail.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 45, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233703, "modifiedTime": 1690538860575, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XmnlF5fgIO3tg6TG" } diff --git a/packs/src/items/equipment/shield-1.json b/packs/src/items/equipment/shield-1.json index 3268ca5b81..be007e6596 100644 --- a/packs/src/items/equipment/shield-1.json +++ b/packs/src/items/equipment/shield-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233633, "modifiedTime": 1690539669653, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!NgwrqNa6kkgoPW2Q" } diff --git a/packs/src/items/equipment/shield-2.json b/packs/src/items/equipment/shield-2.json index daff528425..a77f494d80 100644 --- a/packs/src/items/equipment/shield-2.json +++ b/packs/src/items/equipment/shield-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233970, "modifiedTime": 1690539683046, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!xzZQIIxXjNJwNqnp" } diff --git a/packs/src/items/equipment/shield-3.json b/packs/src/items/equipment/shield-3.json index f8920696ba..ce33e8b99c 100644 --- a/packs/src/items/equipment/shield-3.json +++ b/packs/src/items/equipment/shield-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233692, "modifiedTime": 1690539777633, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WfqBg3yBNoJQtVEB" } diff --git a/packs/src/items/equipment/shield-of-missile-attraction.json b/packs/src/items/equipment/shield-of-missile-attraction.json index d8ca6c46fa..9f5048a9bc 100644 --- a/packs/src/items/equipment/shield-of-missile-attraction.json +++ b/packs/src/items/equipment/shield-of-missile-attraction.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233622, "modifiedTime": 1690539785544, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!M5APnDW8bKQb7fHI" } diff --git a/packs/src/items/equipment/shield.json b/packs/src/items/equipment/shield.json index c3cfbef288..2310036945 100644 --- a/packs/src/items/equipment/shield.json +++ b/packs/src/items/equipment/shield.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233897, "modifiedTime": 1690539664692, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!sSs3hSzkKBMNBgTs" } diff --git a/packs/src/items/equipment/slippers-of-spider-climbing.json b/packs/src/items/equipment/slippers-of-spider-climbing.json index ee0b05d5ab..7cb386b17b 100644 --- a/packs/src/items/equipment/slippers-of-spider-climbing.json +++ b/packs/src/items/equipment/slippers-of-spider-climbing.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.5, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233717, "modifiedTime": 1671220961753, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ZgXJE9pjvZLMCeHg" } diff --git a/packs/src/items/equipment/spellguard-shield.json b/packs/src/items/equipment/spellguard-shield.json index 9bc0ce3761..69ab8fc629 100644 --- a/packs/src/items/equipment/spellguard-shield.json +++ b/packs/src/items/equipment/spellguard-shield.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233840, "modifiedTime": 1690540006987, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!kpDbCYgUivh7NApp" } diff --git a/packs/src/items/equipment/splint-armor-1.json b/packs/src/items/equipment/splint-armor-1.json index ffe24e59c2..99f3aff74c 100644 --- a/packs/src/items/equipment/splint-armor-1.json +++ b/packs/src/items/equipment/splint-armor-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 60, "price": { @@ -88,7 +93,7 @@ }, "strength": 15, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233568, "modifiedTime": 1671220959253, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!HpEEfZg9PRkXnMi4" } diff --git a/packs/src/items/equipment/splint-armor-2.json b/packs/src/items/equipment/splint-armor-2.json index cf41a1d5b6..8e9b2b175e 100644 --- a/packs/src/items/equipment/splint-armor-2.json +++ b/packs/src/items/equipment/splint-armor-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 60, "price": { @@ -88,7 +93,7 @@ }, "strength": 15, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233977, "modifiedTime": 1671220965845, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zIpNJyuOxp2raizE" } diff --git a/packs/src/items/equipment/splint-armor-3.json b/packs/src/items/equipment/splint-armor-3.json index bd65dbdb4d..19dc12e78c 100644 --- a/packs/src/items/equipment/splint-armor-3.json +++ b/packs/src/items/equipment/splint-armor-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 60, "price": { @@ -88,7 +93,7 @@ }, "strength": 15, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233514, "modifiedTime": 1671220958613, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!BwC8hZaNjO7IQc6K" } diff --git a/packs/src/items/equipment/splint-armor-of-resistance.json b/packs/src/items/equipment/splint-armor-of-resistance.json index a9d332ac6a..912545c9e0 100644 --- a/packs/src/items/equipment/splint-armor-of-resistance.json +++ b/packs/src/items/equipment/splint-armor-of-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 60, "price": { @@ -88,7 +93,7 @@ }, "strength": 15, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233578, "modifiedTime": 1671220959355, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!JNkjtTxYmEC7W34O" } diff --git a/packs/src/items/equipment/splint-armor.json b/packs/src/items/equipment/splint-armor.json index a130ab8857..9795719fbf 100644 --- a/packs/src/items/equipment/splint-armor.json +++ b/packs/src/items/equipment/splint-armor.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 60, "price": { @@ -88,7 +93,7 @@ }, "strength": 15, "stealth": true, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233736, "modifiedTime": 1671220961970, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!cKpJmsJmU8YaiuqG" } diff --git a/packs/src/items/equipment/stone-of-good-luck-luckstone.json b/packs/src/items/equipment/stone-of-good-luck-luckstone.json index 619747fd47..10ed937dd8 100644 --- a/packs/src/items/equipment/stone-of-good-luck-luckstone.json +++ b/packs/src/items/equipment/stone-of-good-luck-luckstone.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -89,7 +94,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [ { @@ -122,7 +127,8 @@ "tint": null, "transfer": true, "flags": {}, - "sort": 0 + "sort": 0, + "_key": "!items.effects!296Zgo9RhltWShE1.TghMVbmFnR0t0AoP" } ], "folder": null, @@ -138,5 +144,6 @@ "createdTime": 1661787233443, "modifiedTime": 1690481250206, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!296Zgo9RhltWShE1" } diff --git a/packs/src/items/equipment/studded-leather-armor-1.json b/packs/src/items/equipment/studded-leather-armor-1.json index cfc0ad7289..e310cf13c0 100644 --- a/packs/src/items/equipment/studded-leather-armor-1.json +++ b/packs/src/items/equipment/studded-leather-armor-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 13, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233662, "modifiedTime": 1671220960561, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!STxsp9Ao3pS2T4gt" } diff --git a/packs/src/items/equipment/studded-leather-armor-2.json b/packs/src/items/equipment/studded-leather-armor-2.json index 65e0187bf4..b5b9b4d192 100644 --- a/packs/src/items/equipment/studded-leather-armor-2.json +++ b/packs/src/items/equipment/studded-leather-armor-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 13, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233547, "modifiedTime": 1671220958977, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!FZixEM5voQkH84xP" } diff --git a/packs/src/items/equipment/studded-leather-armor-3.json b/packs/src/items/equipment/studded-leather-armor-3.json index b34507dde3..32a84c6c21 100644 --- a/packs/src/items/equipment/studded-leather-armor-3.json +++ b/packs/src/items/equipment/studded-leather-armor-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 13, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233431, "modifiedTime": 1671220956958, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!00BggOkChWztQx6R" } diff --git a/packs/src/items/equipment/studded-leather-armor-of-resistance.json b/packs/src/items/equipment/studded-leather-armor-of-resistance.json index b7d3bd4cc8..ae8d72a574 100644 --- a/packs/src/items/equipment/studded-leather-armor-of-resistance.json +++ b/packs/src/items/equipment/studded-leather-armor-of-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 13, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233688, "modifiedTime": 1671220961403, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!W1kDsFekjroIywuz" } diff --git a/packs/src/items/equipment/studded-leather-armor.json b/packs/src/items/equipment/studded-leather-armor.json index d0a088e626..a75aaae545 100644 --- a/packs/src/items/equipment/studded-leather-armor.json +++ b/packs/src/items/equipment/studded-leather-armor.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 13, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233668, "modifiedTime": 1671220960626, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!TIV3B1vbrVHIhQAm" } diff --git a/packs/src/items/equipment/travelers-clothes.json b/packs/src/items/equipment/travelers-clothes.json index 0206464485..260d5053f7 100644 --- a/packs/src/items/equipment/travelers-clothes.json +++ b/packs/src/items/equipment/travelers-clothes.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233666, "modifiedTime": 1671220960603, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!SsAmWV6YBqeOFihT" } diff --git a/packs/src/items/equipment/vestments.json b/packs/src/items/equipment/vestments.json index 07c857de01..6c8276cd03 100644 --- a/packs/src/items/equipment/vestments.json +++ b/packs/src/items/equipment/vestments.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233826, "modifiedTime": 1671220963131, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!irtqrzaUCeshmTZp" } diff --git a/packs/src/items/equipment/wand-of-the-war-mage-1.json b/packs/src/items/equipment/wand-of-the-war-mage-1.json index dad2c1f806..7aaa602abc 100644 --- a/packs/src/items/equipment/wand-of-the-war-mage-1.json +++ b/packs/src/items/equipment/wand-of-the-war-mage-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233637, "modifiedTime": 1671220960346, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!OPbdSlrhkUDNpgcS" } diff --git a/packs/src/items/equipment/wand-of-the-war-mage-2.json b/packs/src/items/equipment/wand-of-the-war-mage-2.json index eaff26da25..b6c076a868 100644 --- a/packs/src/items/equipment/wand-of-the-war-mage-2.json +++ b/packs/src/items/equipment/wand-of-the-war-mage-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233834, "modifiedTime": 1671220963233, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!k3T7tpcdzDyVKlF4" } diff --git a/packs/src/items/equipment/wand-of-the-war-mage-3.json b/packs/src/items/equipment/wand-of-the-war-mage-3.json index 5e412c61f6..c575d715bf 100644 --- a/packs/src/items/equipment/wand-of-the-war-mage-3.json +++ b/packs/src/items/equipment/wand-of-the-war-mage-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233576, "modifiedTime": 1671220959328, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!IuVaBrq17AqxpXc4" } diff --git a/packs/src/items/equipment/winged-boots.json b/packs/src/items/equipment/winged-boots.json index 3fdd3e9ab4..cc9fecabb2 100644 --- a/packs/src/items/equipment/winged-boots.json +++ b/packs/src/items/equipment/winged-boots.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233710, "modifiedTime": 1671220961671, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!YjImJ3cVnArHH4ES" } diff --git a/packs/src/items/equipment/wings-of-flying.json b/packs/src/items/equipment/wings-of-flying.json index 68a4262898..ed0f5b3917 100644 --- a/packs/src/items/equipment/wings-of-flying.json +++ b/packs/src/items/equipment/wings-of-flying.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -88,7 +93,7 @@ }, "strength": null, "stealth": false, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -104,5 +109,6 @@ "createdTime": 1661787233551, "modifiedTime": 1671220959053, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!FkDyLSpiynKTQZdi" } diff --git a/packs/src/items/food/feed.json b/packs/src/items/food/feed.json index fb7e3a45ae..b416d73a0b 100644 --- a/packs/src/items/food/feed.json +++ b/packs/src/items/food/feed.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233611, "modifiedTime": 1671220959958, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!KJuLguMZCThrQOEx" } diff --git a/packs/src/items/food/rations.json b/packs/src/items/food/rations.json index 2bc2a6135a..71ddf695e2 100644 --- a/packs/src/items/food/rations.json +++ b/packs/src/items/food/rations.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233793, "modifiedTime": 1671220962747, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!f4w4GxBi0nYXmhX4" } diff --git a/packs/src/items/food/waterskin.json b/packs/src/items/food/waterskin.json index 6649f7cd6c..46c214ba0e 100644 --- a/packs/src/items/food/waterskin.json +++ b/packs/src/items/food/waterskin.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233681, "modifiedTime": 1671220961278, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Uv0ilmzbWvqmlCVH" } diff --git a/packs/src/items/loot/abacus.json b/packs/src/items/loot/abacus.json index 5f704dea72..9a46eda6ad 100644 --- a/packs/src/items/loot/abacus.json +++ b/packs/src/items/loot/abacus.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233787, "modifiedTime": 1671220962691, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ea4xclqsksEQB1QF" } diff --git a/packs/src/items/loot/bag-of-sand.json b/packs/src/items/loot/bag-of-sand.json index 586a1f65b0..95b6a6d39e 100644 --- a/packs/src/items/loot/bag-of-sand.json +++ b/packs/src/items/loot/bag-of-sand.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.5, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233822, "modifiedTime": 1671220963085, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!iOMRrzfzFCfPGuD6" } diff --git a/packs/src/items/loot/bedroll.json b/packs/src/items/loot/bedroll.json index b8a824b3d2..7bd52b884b 100644 --- a/packs/src/items/loot/bedroll.json +++ b/packs/src/items/loot/bedroll.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233526, "modifiedTime": 1671220958762, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!DVXmyetZuvxbzAwW" } diff --git a/packs/src/items/loot/bell.json b/packs/src/items/loot/bell.json index 4b3ce86c04..a00b031caa 100644 --- a/packs/src/items/loot/bell.json +++ b/packs/src/items/loot/bell.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233541, "modifiedTime": 1671220958942, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!F6GwSqjErX1u35Re" } diff --git a/packs/src/items/loot/blanket.json b/packs/src/items/loot/blanket.json index 04ebb77dbf..fa0c74cb5e 100644 --- a/packs/src/items/loot/blanket.json +++ b/packs/src/items/loot/blanket.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233461, "modifiedTime": 1671220957286, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!419eNv7xp2p7Xlo5" } diff --git a/packs/src/items/loot/block-of-incense.json b/packs/src/items/loot/block-of-incense.json index 107e9d1011..b9e8c5226a 100644 --- a/packs/src/items/loot/block-of-incense.json +++ b/packs/src/items/loot/block-of-incense.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.5, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233781, "modifiedTime": 1671220962632, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eJY20LOs3pOkRDPl" } diff --git a/packs/src/items/loot/book-of-lore.json b/packs/src/items/loot/book-of-lore.json index f5923435cc..2ef9e811e7 100644 --- a/packs/src/items/loot/book-of-lore.json +++ b/packs/src/items/loot/book-of-lore.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233842, "modifiedTime": 1671220963300, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!l794iywHk8Wc6Uvi" } diff --git a/packs/src/items/loot/book-of-shadows.json b/packs/src/items/loot/book-of-shadows.json index e5053118df..b755c93482 100644 --- a/packs/src/items/loot/book-of-shadows.json +++ b/packs/src/items/loot/book-of-shadows.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233521, "modifiedTime": 1671220958682, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!CwWbeQ6XyqFzbMYw" } diff --git a/packs/src/items/loot/book.json b/packs/src/items/loot/book.json index 7aacc70b44..9f68c805a8 100644 --- a/packs/src/items/loot/book.json +++ b/packs/src/items/loot/book.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233655, "modifiedTime": 1671220960514, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!RMi9efrW9ouHVLI2" } diff --git a/packs/src/items/loot/censer.json b/packs/src/items/loot/censer.json index 428c886bb7..38f90ce20e 100644 --- a/packs/src/items/loot/censer.json +++ b/packs/src/items/loot/censer.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233486, "modifiedTime": 1671220957601, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7ztvHyYJCcOOAWmR" } diff --git a/packs/src/items/loot/chalk.json b/packs/src/items/loot/chalk.json index df77ad0251..7581d2f376 100644 --- a/packs/src/items/loot/chalk.json +++ b/packs/src/items/loot/chalk.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233471, "modifiedTime": 1671220957422, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!5fJn3LQ2eQG7luEO" } diff --git a/packs/src/items/loot/crowbar.json b/packs/src/items/loot/crowbar.json index 5b9156443e..870747fa00 100644 --- a/packs/src/items/loot/crowbar.json +++ b/packs/src/items/loot/crowbar.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233682, "modifiedTime": 1671220961307, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!V5UAjT3ed6sDNtgm" } diff --git a/packs/src/items/loot/fishing-tackle.json b/packs/src/items/loot/fishing-tackle.json index 93dcf9cb2a..1d44dd3bb5 100644 --- a/packs/src/items/loot/fishing-tackle.json +++ b/packs/src/items/loot/fishing-tackle.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233813, "modifiedTime": 1671220962997, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hOzuSDqmOIOx8z3Z" } diff --git a/packs/src/items/loot/grappling-hook.json b/packs/src/items/loot/grappling-hook.json index b64f4436e3..0c28ddf224 100644 --- a/packs/src/items/loot/grappling-hook.json +++ b/packs/src/items/loot/grappling-hook.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233913, "modifiedTime": 1671220964907, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!tfDxZIKDpOkz6pbx" } diff --git a/packs/src/items/loot/hammer.json b/packs/src/items/loot/hammer.json index 24799e3b36..111c79da8f 100644 --- a/packs/src/items/loot/hammer.json +++ b/packs/src/items/loot/hammer.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233437, "modifiedTime": 1671220957013, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!14pNRT4sZy9rgvhb" } diff --git a/packs/src/items/loot/hourglass.json b/packs/src/items/loot/hourglass.json index cf7d284d05..7f9b618bff 100644 --- a/packs/src/items/loot/hourglass.json +++ b/packs/src/items/loot/hourglass.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233553, "modifiedTime": 1671220959079, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!G7LqGzKR5ts0WlJ9" } diff --git a/packs/src/items/loot/ink-bottle.json b/packs/src/items/loot/ink-bottle.json index bb93dc7a4c..eb8332c0c0 100644 --- a/packs/src/items/loot/ink-bottle.json +++ b/packs/src/items/loot/ink-bottle.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.06, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233743, "modifiedTime": 1671220962044, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dP7jMKyHTTgVb3ii" } diff --git a/packs/src/items/loot/ink-pen.json b/packs/src/items/loot/ink-pen.json index 62fc651233..4d83dbf707 100644 --- a/packs/src/items/loot/ink-pen.json +++ b/packs/src/items/loot/ink-pen.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233919, "modifiedTime": 1671220964973, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!uVm7MiB71QblfnoY" } diff --git a/packs/src/items/loot/ladder-10-foot.json b/packs/src/items/loot/ladder-10-foot.json index c0b0d88d29..96a2f0b6ae 100644 --- a/packs/src/items/loot/ladder-10-foot.json +++ b/packs/src/items/loot/ladder-10-foot.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 25, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233785, "modifiedTime": 1671220962674, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eQTKbhnpkrtXUfwN" } diff --git a/packs/src/items/loot/magnifying-glass.json b/packs/src/items/loot/magnifying-glass.json index f191ead327..0eecd2c3bd 100644 --- a/packs/src/items/loot/magnifying-glass.json +++ b/packs/src/items/loot/magnifying-glass.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233646, "modifiedTime": 1671220960430, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!PV0sn2Nlr8CNn4W9" } diff --git a/packs/src/items/loot/merchants-scale.json b/packs/src/items/loot/merchants-scale.json index 9cae792d91..d449d07f87 100644 --- a/packs/src/items/loot/merchants-scale.json +++ b/packs/src/items/loot/merchants-scale.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233951, "modifiedTime": 1671220965515, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!vJvb6fx3JVPmhG8x" } diff --git a/packs/src/items/loot/mess-kit.json b/packs/src/items/loot/mess-kit.json index 1c1fca4969..5451b69646 100644 --- a/packs/src/items/loot/mess-kit.json +++ b/packs/src/items/loot/mess-kit.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233682, "modifiedTime": 1671220961300, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!V13fjV5oSmvbRdgP" } diff --git a/packs/src/items/loot/miners-pick.json b/packs/src/items/loot/miners-pick.json index 8fb4de24bb..2d53a16553 100644 --- a/packs/src/items/loot/miners-pick.json +++ b/packs/src/items/loot/miners-pick.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233696, "modifiedTime": 1671220961503, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!X5knPtrQAT8GePJ4" } diff --git a/packs/src/items/loot/paper.json b/packs/src/items/loot/paper.json index aa01093dcf..dd62cec774 100644 --- a/packs/src/items/loot/paper.json +++ b/packs/src/items/loot/paper.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233796, "modifiedTime": 1671220962840, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!fNMkFCOvMiW2Rh3t" } diff --git a/packs/src/items/loot/parchment.json b/packs/src/items/loot/parchment.json index 75ed3d09b7..ed492f50c6 100644 --- a/packs/src/items/loot/parchment.json +++ b/packs/src/items/loot/parchment.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233688, "modifiedTime": 1671220961427, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WFQS2vT8ddrFjTJg" } diff --git a/packs/src/items/loot/perfume.json b/packs/src/items/loot/perfume.json index 4d54284646..db43278e54 100644 --- a/packs/src/items/loot/perfume.json +++ b/packs/src/items/loot/perfume.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233922, "modifiedTime": 1671220965496, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!uuh4UH3Jx5CsFjdA" } diff --git a/packs/src/items/loot/pole.json b/packs/src/items/loot/pole.json index 945d14aa0d..f788333f4d 100644 --- a/packs/src/items/loot/pole.json +++ b/packs/src/items/loot/pole.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233915, "modifiedTime": 1671220964937, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!tut1jbW3UCsrUjCG" } diff --git a/packs/src/items/loot/prayer-book.json b/packs/src/items/loot/prayer-book.json index f88e676c0f..00edcfb294 100644 --- a/packs/src/items/loot/prayer-book.json +++ b/packs/src/items/loot/prayer-book.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233870, "modifiedTime": 1671220964320, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!odV5cq2HSLSCH69k" } diff --git a/packs/src/items/loot/prayer-wheel.json b/packs/src/items/loot/prayer-wheel.json index c7c0d9b97c..b3255696b5 100644 --- a/packs/src/items/loot/prayer-wheel.json +++ b/packs/src/items/loot/prayer-wheel.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.5, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233632, "modifiedTime": 1671220960300, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Nd4r4hocpfu6fYDP" } diff --git a/packs/src/items/loot/sealing-wax.json b/packs/src/items/loot/sealing-wax.json index d6dada83a8..2ec61f3a5d 100644 --- a/packs/src/items/loot/sealing-wax.json +++ b/packs/src/items/loot/sealing-wax.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233460, "modifiedTime": 1671220957282, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3uEyuCfnAzGkwAn5" } diff --git a/packs/src/items/loot/shovel.json b/packs/src/items/loot/shovel.json index 9fdb3ce6ac..700b62f642 100644 --- a/packs/src/items/loot/shovel.json +++ b/packs/src/items/loot/shovel.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233884, "modifiedTime": 1671220964499, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!qWlXDEgqdmdZWoab" } diff --git a/packs/src/items/loot/signal-whistle.json b/packs/src/items/loot/signal-whistle.json index f3e64353f7..5e8b03e8d4 100644 --- a/packs/src/items/loot/signal-whistle.json +++ b/packs/src/items/loot/signal-whistle.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233974, "modifiedTime": 1671220965807, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!z67d1DZzqDPmgEwP" } diff --git a/packs/src/items/loot/signet-ring.json b/packs/src/items/loot/signet-ring.json index 9d2b3c6a0b..c5fb64df81 100644 --- a/packs/src/items/loot/signet-ring.json +++ b/packs/src/items/loot/signet-ring.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233838, "modifiedTime": 1671220963273, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!kdkpSZMUHGXGM15H" } diff --git a/packs/src/items/loot/sledgehammer.json b/packs/src/items/loot/sledgehammer.json index 0c0ef5b87b..8cfb435068 100644 --- a/packs/src/items/loot/sledgehammer.json +++ b/packs/src/items/loot/sledgehammer.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233496, "modifiedTime": 1671220957719, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9G9QGSPgpZDSsm37" } diff --git a/packs/src/items/loot/small-knife.json b/packs/src/items/loot/small-knife.json index 3a35c79421..6f911c247a 100644 --- a/packs/src/items/loot/small-knife.json +++ b/packs/src/items/loot/small-knife.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.5, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233459, "modifiedTime": 1671220957266, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3nVvaHVfHsgwGlkL" } diff --git a/packs/src/items/loot/soap.json b/packs/src/items/loot/soap.json index ae4b16d816..4b7f0e1bf2 100644 --- a/packs/src/items/loot/soap.json +++ b/packs/src/items/loot/soap.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233655, "modifiedTime": 1671220960511, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!REBWkTKe6lJaIkpn" } diff --git a/packs/src/items/loot/spellbook.json b/packs/src/items/loot/spellbook.json index 7457c4de61..a235bf7493 100644 --- a/packs/src/items/loot/spellbook.json +++ b/packs/src/items/loot/spellbook.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233616, "modifiedTime": 1671220960025, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LBajgahniRJbAgDr" } diff --git a/packs/src/items/loot/spyglass.json b/packs/src/items/loot/spyglass.json index bb8ff93d3e..2d33d8e607 100644 --- a/packs/src/items/loot/spyglass.json +++ b/packs/src/items/loot/spyglass.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233688, "modifiedTime": 1671220961409, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WCafDVKITxwnlf2x" } diff --git a/packs/src/items/loot/steel-mirror.json b/packs/src/items/loot/steel-mirror.json index aa71e2e4c6..9223baf58d 100644 --- a/packs/src/items/loot/steel-mirror.json +++ b/packs/src/items/loot/steel-mirror.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.5, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233563, "modifiedTime": 1671220959196, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!HZsvDPmvysQKGzGy" } diff --git a/packs/src/items/loot/stick-of-incense.json b/packs/src/items/loot/stick-of-incense.json index bad9408a47..c17f78fdbc 100644 --- a/packs/src/items/loot/stick-of-incense.json +++ b/packs/src/items/loot/stick-of-incense.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233456, "modifiedTime": 1671220957232, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3b0RvGi0TnTYpIxn" } diff --git a/packs/src/items/loot/tinderbox.json b/packs/src/items/loot/tinderbox.json index 2eff753dc4..55dc12a3f6 100644 --- a/packs/src/items/loot/tinderbox.json +++ b/packs/src/items/loot/tinderbox.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233523, "modifiedTime": 1671220958728, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!DNOSEAvF4Oh1DlWy" } diff --git a/packs/src/items/loot/trinket.json b/packs/src/items/loot/trinket.json index 38c67b4a9c..ea2a7cb96d 100644 --- a/packs/src/items/loot/trinket.json +++ b/packs/src/items/loot/trinket.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233953, "modifiedTime": 1671220965547, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!vpenjFjUyEBLLlUc" } diff --git a/packs/src/items/loot/two-person-tent.json b/packs/src/items/loot/two-person-tent.json index c93fdd2b78..dca368d546 100644 --- a/packs/src/items/loot/two-person-tent.json +++ b/packs/src/items/loot/two-person-tent.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 20, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233646, "modifiedTime": 1671220960433, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!PanSr5EbqlfpSvwK" } diff --git a/packs/src/items/loot/whetstone.json b/packs/src/items/loot/whetstone.json index 90ad0b1adf..b4680f5c93 100644 --- a/packs/src/items/loot/whetstone.json +++ b/packs/src/items/loot/whetstone.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787233667, "modifiedTime": 1671220960610, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!SuQmsJfxyJl2hPcM" } diff --git a/packs/src/items/poison/potion-of-poison.json b/packs/src/items/poison/potion-of-poison.json index 054254c2a8..8572b16b49 100644 --- a/packs/src/items/poison/potion-of-poison.json +++ b/packs/src/items/poison/potion-of-poison.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233878, "modifiedTime": 1671220964452, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!qBSEGJyHxdKIlBfj" } diff --git a/packs/src/items/poison/truth-serum.json b/packs/src/items/poison/truth-serum.json index 2f7ca4e923..dc286a0fd0 100644 --- a/packs/src/items/poison/truth-serum.json +++ b/packs/src/items/poison/truth-serum.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233720, "modifiedTime": 1671220961776, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!a86F565Pjdzym1jH" } diff --git a/packs/src/items/potion/acid-vial.json b/packs/src/items/potion/acid-vial.json index cdd545e4a5..e57c844976 100644 --- a/packs/src/items/potion/acid-vial.json +++ b/packs/src/items/potion/acid-vial.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233667, "modifiedTime": 1671220960614, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Sx5E6utixHdAbGNb" } diff --git a/packs/src/items/potion/alchemists-fire.json b/packs/src/items/potion/alchemists-fire.json index 257d143571..6e72fd5ebb 100644 --- a/packs/src/items/potion/alchemists-fire.json +++ b/packs/src/items/potion/alchemists-fire.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233552, "modifiedTime": 1671220959064, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!FvNOwWbh5FXyX4xe" } diff --git a/packs/src/items/potion/antitoxin.json b/packs/src/items/potion/antitoxin.json index 457d80f97b..2ee81031ed 100644 --- a/packs/src/items/potion/antitoxin.json +++ b/packs/src/items/potion/antitoxin.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233547, "modifiedTime": 1671220958995, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Fc6UfFNOnW80XMzi" } diff --git a/packs/src/items/potion/basic-poison.json b/packs/src/items/potion/basic-poison.json index 51728d42c4..1bc436193f 100644 --- a/packs/src/items/potion/basic-poison.json +++ b/packs/src/items/potion/basic-poison.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233786, "modifiedTime": 1671220962682, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eVbPkYjpl29RE2uW" } diff --git a/packs/src/items/potion/deck-of-illusions.json b/packs/src/items/potion/deck-of-illusions.json index b8901e78a0..f03cbb111c 100644 --- a/packs/src/items/potion/deck-of-illusions.json +++ b/packs/src/items/potion/deck-of-illusions.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233692, "modifiedTime": 1671220961473, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Wk7EOYoY3b2tgGoS" } diff --git a/packs/src/items/potion/deck-of-many-things.json b/packs/src/items/potion/deck-of-many-things.json index 7a8ac2995c..631d03e03f 100644 --- a/packs/src/items/potion/deck-of-many-things.json +++ b/packs/src/items/potion/deck-of-many-things.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233868, "modifiedTime": 1671220964301, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!oSarKEU8x1AupB6z" } diff --git a/packs/src/items/potion/flask-of-holy-water.json b/packs/src/items/potion/flask-of-holy-water.json index 0737928da2..90e083385b 100644 --- a/packs/src/items/potion/flask-of-holy-water.json +++ b/packs/src/items/potion/flask-of-holy-water.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233691, "modifiedTime": 1671220961451, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WPWszFTGzmdIuDRJ" } diff --git a/packs/src/items/potion/oil-of-etherealness.json b/packs/src/items/potion/oil-of-etherealness.json index 37077396bd..38c721425f 100644 --- a/packs/src/items/potion/oil-of-etherealness.json +++ b/packs/src/items/potion/oil-of-etherealness.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233702, "modifiedTime": 1671220961587, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Xbq8CyXSRV358SfP" } diff --git a/packs/src/items/potion/oil-of-sharpness.json b/packs/src/items/potion/oil-of-sharpness.json index 7fc861d7db..72c044f7e3 100644 --- a/packs/src/items/potion/oil-of-sharpness.json +++ b/packs/src/items/potion/oil-of-sharpness.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233515, "modifiedTime": 1671220958619, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!C0MNXWA81ufzGlp5" } diff --git a/packs/src/items/potion/oil-of-slipperiness.json b/packs/src/items/potion/oil-of-slipperiness.json index ba23120a63..2834a67172 100644 --- a/packs/src/items/potion/oil-of-slipperiness.json +++ b/packs/src/items/potion/oil-of-slipperiness.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233544, "modifiedTime": 1671220958969, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!FIDyR0kZnxGy7bj8" } diff --git a/packs/src/items/potion/philter-of-love.json b/packs/src/items/potion/philter-of-love.json index 7b1850668f..8d01dcd1c8 100644 --- a/packs/src/items/potion/philter-of-love.json +++ b/packs/src/items/potion/philter-of-love.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233474, "modifiedTime": 1671220957464, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!63nb14yQRJMc4bIn" } diff --git a/packs/src/items/potion/potion-of-acid-resistance.json b/packs/src/items/potion/potion-of-acid-resistance.json index d77ba76c59..cf127eb553 100644 --- a/packs/src/items/potion/potion-of-acid-resistance.json +++ b/packs/src/items/potion/potion-of-acid-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233979, "modifiedTime": 1671220965874, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zgZkJAyFAfYmyn11" } diff --git a/packs/src/items/potion/potion-of-animal-friendship.json b/packs/src/items/potion/potion-of-animal-friendship.json index c5237276c2..c546810761 100644 --- a/packs/src/items/potion/potion-of-animal-friendship.json +++ b/packs/src/items/potion/potion-of-animal-friendship.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233862, "modifiedTime": 1671220964187, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nXWevqtV6p484N59" } diff --git a/packs/src/items/potion/potion-of-clairvoyance.json b/packs/src/items/potion/potion-of-clairvoyance.json index 43ed7a51b0..ed34d4a13d 100644 --- a/packs/src/items/potion/potion-of-clairvoyance.json +++ b/packs/src/items/potion/potion-of-clairvoyance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233729, "modifiedTime": 1671220961877, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!bAyr7j5Peq9wIJTa" } diff --git a/packs/src/items/potion/potion-of-climbing.json b/packs/src/items/potion/potion-of-climbing.json index b2a54f7b8c..94e915ef69 100644 --- a/packs/src/items/potion/potion-of-climbing.json +++ b/packs/src/items/potion/potion-of-climbing.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233723, "modifiedTime": 1671220961800, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!aMnWi1WXWpxRHq4r" } diff --git a/packs/src/items/potion/potion-of-cloud-giant-strength.json b/packs/src/items/potion/potion-of-cloud-giant-strength.json index a65812c876..af16813c1a 100644 --- a/packs/src/items/potion/potion-of-cloud-giant-strength.json +++ b/packs/src/items/potion/potion-of-cloud-giant-strength.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233843, "modifiedTime": 1671220963308, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!lAcTZgNtpmks2Mo5" } diff --git a/packs/src/items/potion/potion-of-cold-resistance.json b/packs/src/items/potion/potion-of-cold-resistance.json index 4b2140b732..b56d853ca5 100644 --- a/packs/src/items/potion/potion-of-cold-resistance.json +++ b/packs/src/items/potion/potion-of-cold-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233451, "modifiedTime": 1671220957163, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!34YKlIJVVWLeBv7R" } diff --git a/packs/src/items/potion/potion-of-diminution.json b/packs/src/items/potion/potion-of-diminution.json index a8283dd640..22a2b9619a 100644 --- a/packs/src/items/potion/potion-of-diminution.json +++ b/packs/src/items/potion/potion-of-diminution.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233562, "modifiedTime": 1671220959176, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!HY8duCwmvlXOruTG" } diff --git a/packs/src/items/potion/potion-of-fire-giant-strength.json b/packs/src/items/potion/potion-of-fire-giant-strength.json index 66a9f2935e..44e20657df 100644 --- a/packs/src/items/potion/potion-of-fire-giant-strength.json +++ b/packs/src/items/potion/potion-of-fire-giant-strength.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233729, "modifiedTime": 1671220961881, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!bEZOY6uvHRweMM56" } diff --git a/packs/src/items/potion/potion-of-fire-resistance.json b/packs/src/items/potion/potion-of-fire-resistance.json index 82646b0fa2..dde43947fa 100644 --- a/packs/src/items/potion/potion-of-fire-resistance.json +++ b/packs/src/items/potion/potion-of-fire-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233579, "modifiedTime": 1671220959375, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Jj4iFQQGvckx8Wsj" } diff --git a/packs/src/items/potion/potion-of-flying.json b/packs/src/items/potion/potion-of-flying.json index cba50d82d8..561f38491e 100644 --- a/packs/src/items/potion/potion-of-flying.json +++ b/packs/src/items/potion/potion-of-flying.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233785, "modifiedTime": 1671220962678, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eTNc8XPtvZNe3yQs" } diff --git a/packs/src/items/potion/potion-of-force-resistance.json b/packs/src/items/potion/potion-of-force-resistance.json index 04daa9f13b..edf6224b58 100644 --- a/packs/src/items/potion/potion-of-force-resistance.json +++ b/packs/src/items/potion/potion-of-force-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233836, "modifiedTime": 1671220963250, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!kKGJjVVlJVoakWgQ" } diff --git a/packs/src/items/potion/potion-of-frost-giant-strength.json b/packs/src/items/potion/potion-of-frost-giant-strength.json index a88a2d4182..77b2c199f7 100644 --- a/packs/src/items/potion/potion-of-frost-giant-strength.json +++ b/packs/src/items/potion/potion-of-frost-giant-strength.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233671, "modifiedTime": 1671220960649, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!TevMHicE3A70AlmP" } diff --git a/packs/src/items/potion/potion-of-gaseous-form.json b/packs/src/items/potion/potion-of-gaseous-form.json index c195b959ad..6ae3068456 100644 --- a/packs/src/items/potion/potion-of-gaseous-form.json +++ b/packs/src/items/potion/potion-of-gaseous-form.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233734, "modifiedTime": 1671220961946, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!bqZ6NTLDCUB98YjV" } diff --git a/packs/src/items/potion/potion-of-greater-healing.json b/packs/src/items/potion/potion-of-greater-healing.json index 03f1a0838d..79422aafe6 100644 --- a/packs/src/items/potion/potion-of-greater-healing.json +++ b/packs/src/items/potion/potion-of-greater-healing.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233614, "modifiedTime": 1671220960000, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!L887NdWEP5NqHCrQ" } diff --git a/packs/src/items/potion/potion-of-growth.json b/packs/src/items/potion/potion-of-growth.json index 1c492a688b..578e82960f 100644 --- a/packs/src/items/potion/potion-of-growth.json +++ b/packs/src/items/potion/potion-of-growth.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233805, "modifiedTime": 1671220962927, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gTRFQLdVD1gsKtPi" } diff --git a/packs/src/items/potion/potion-of-healing.json b/packs/src/items/potion/potion-of-healing.json index f60bcab56c..fc371c75e0 100644 --- a/packs/src/items/potion/potion-of-healing.json +++ b/packs/src/items/potion/potion-of-healing.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233972, "modifiedTime": 1671220965786, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ytlsBjYsZ7OBSEBs" } diff --git a/packs/src/items/potion/potion-of-heroism.json b/packs/src/items/potion/potion-of-heroism.json index 47495b0246..eacd8df418 100644 --- a/packs/src/items/potion/potion-of-heroism.json +++ b/packs/src/items/potion/potion-of-heroism.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233957, "modifiedTime": 1671220965584, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!wNKYbKYwOHbA7SH8" } diff --git a/packs/src/items/potion/potion-of-hill-giant-strength.json b/packs/src/items/potion/potion-of-hill-giant-strength.json index ec85ff06a4..acb2820356 100644 --- a/packs/src/items/potion/potion-of-hill-giant-strength.json +++ b/packs/src/items/potion/potion-of-hill-giant-strength.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233855, "modifiedTime": 1671220963995, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!mhFBTY0egW8AeCHe" } diff --git a/packs/src/items/potion/potion-of-invisibility.json b/packs/src/items/potion/potion-of-invisibility.json index 2cc4e9acef..c9bb324282 100644 --- a/packs/src/items/potion/potion-of-invisibility.json +++ b/packs/src/items/potion/potion-of-invisibility.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233892, "modifiedTime": 1671220964611, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!rTn4p9nJr4Aq2GPB" } diff --git a/packs/src/items/potion/potion-of-lightning-resistance.json b/packs/src/items/potion/potion-of-lightning-resistance.json index 53f05c108d..73e8a58d8e 100644 --- a/packs/src/items/potion/potion-of-lightning-resistance.json +++ b/packs/src/items/potion/potion-of-lightning-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233490, "modifiedTime": 1671220957664, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8MPnSrvEeZhPhtTi" } diff --git a/packs/src/items/potion/potion-of-mind-reading.json b/packs/src/items/potion/potion-of-mind-reading.json index fe70a78ddc..92d8e4da3f 100644 --- a/packs/src/items/potion/potion-of-mind-reading.json +++ b/packs/src/items/potion/potion-of-mind-reading.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233520, "modifiedTime": 1671220958671, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Ct9LR9Ft1FG4a6Y1" } diff --git a/packs/src/items/potion/potion-of-necrotic-resistance.json b/packs/src/items/potion/potion-of-necrotic-resistance.json index 00df46de6e..7493919c63 100644 --- a/packs/src/items/potion/potion-of-necrotic-resistance.json +++ b/packs/src/items/potion/potion-of-necrotic-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233969, "modifiedTime": 1671220965745, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!xw99pcqPBVwtMOLw" } diff --git a/packs/src/items/potion/potion-of-poison-resistance.json b/packs/src/items/potion/potion-of-poison-resistance.json index c45cb126a6..e5ff12f95d 100644 --- a/packs/src/items/potion/potion-of-poison-resistance.json +++ b/packs/src/items/potion/potion-of-poison-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233793, "modifiedTime": 1671220962751, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!f5chGcpQCi1HYPQw" } diff --git a/packs/src/items/potion/potion-of-psychic-resistance.json b/packs/src/items/potion/potion-of-psychic-resistance.json index 8b7648ffec..ee897916b6 100644 --- a/packs/src/items/potion/potion-of-psychic-resistance.json +++ b/packs/src/items/potion/potion-of-psychic-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233734, "modifiedTime": 1671220961953, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!c0luemOP0iW8L23R" } diff --git a/packs/src/items/potion/potion-of-radiant-resistance.json b/packs/src/items/potion/potion-of-radiant-resistance.json index d04d7b69b4..eb82f0fbc9 100644 --- a/packs/src/items/potion/potion-of-radiant-resistance.json +++ b/packs/src/items/potion/potion-of-radiant-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233615, "modifiedTime": 1671220960020, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LBQWNqX6hZOKhQ8a" } diff --git a/packs/src/items/potion/potion-of-speed.json b/packs/src/items/potion/potion-of-speed.json index 387fef8c14..c032fc94c4 100644 --- a/packs/src/items/potion/potion-of-speed.json +++ b/packs/src/items/potion/potion-of-speed.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233739, "modifiedTime": 1671220961999, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ctKfjHjk9gs9UtZI" } diff --git a/packs/src/items/potion/potion-of-stone-giant-strength.json b/packs/src/items/potion/potion-of-stone-giant-strength.json index 88d747ecd7..fe0442b825 100644 --- a/packs/src/items/potion/potion-of-stone-giant-strength.json +++ b/packs/src/items/potion/potion-of-stone-giant-strength.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233465, "modifiedTime": 1671220957361, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!4ZiJsDTRA1GgcWKP" } diff --git a/packs/src/items/potion/potion-of-storm-giant-strength.json b/packs/src/items/potion/potion-of-storm-giant-strength.json index 79043b77c0..27385e84fc 100644 --- a/packs/src/items/potion/potion-of-storm-giant-strength.json +++ b/packs/src/items/potion/potion-of-storm-giant-strength.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233439, "modifiedTime": 1671220957040, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!1KMSpOSU0EliUBm2" } diff --git a/packs/src/items/potion/potion-of-superior-healing.json b/packs/src/items/potion/potion-of-superior-healing.json index 2fe7629397..1d0f16d6a8 100644 --- a/packs/src/items/potion/potion-of-superior-healing.json +++ b/packs/src/items/potion/potion-of-superior-healing.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233471, "modifiedTime": 1671220957428, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!5m9ErO9In8Uc5yyf" } diff --git a/packs/src/items/potion/potion-of-supreme-healing.json b/packs/src/items/potion/potion-of-supreme-healing.json index 7aa5b1e4bf..0854a04035 100644 --- a/packs/src/items/potion/potion-of-supreme-healing.json +++ b/packs/src/items/potion/potion-of-supreme-healing.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233578, "modifiedTime": 1671220959341, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!JFiSlgcm3uSSBM5t" } diff --git a/packs/src/items/potion/potion-of-thunder-resistance.json b/packs/src/items/potion/potion-of-thunder-resistance.json index 1faf5b7208..1d8bf793e7 100644 --- a/packs/src/items/potion/potion-of-thunder-resistance.json +++ b/packs/src/items/potion/potion-of-thunder-resistance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233976, "modifiedTime": 1671220965835, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zBX8LLC2CjC89Dzl" } diff --git a/packs/src/items/potion/potion-of-water-breathing.json b/packs/src/items/potion/potion-of-water-breathing.json index 75be21bec1..f70077126b 100644 --- a/packs/src/items/potion/potion-of-water-breathing.json +++ b/packs/src/items/potion/potion-of-water-breathing.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233515, "modifiedTime": 1671220958633, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!CAZMwFBWp9VC0ZCg" } diff --git a/packs/src/items/potion/restorative-ointment.json b/packs/src/items/potion/restorative-ointment.json index eda4b28a1e..824286c3ba 100644 --- a/packs/src/items/potion/restorative-ointment.json +++ b/packs/src/items/potion/restorative-ointment.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.5, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233687, "modifiedTime": 1671220961389, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!VmcgAIsRCyrjBguC" } diff --git a/packs/src/items/rod/immovable-rod.json b/packs/src/items/rod/immovable-rod.json index 3b987fdca0..86fb3baeaa 100644 --- a/packs/src/items/rod/immovable-rod.json +++ b/packs/src/items/rod/immovable-rod.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233784, "modifiedTime": 1671220962670, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eQNXan0zp279jDtk" } diff --git a/packs/src/items/rod/rod-of-absorption.json b/packs/src/items/rod/rod-of-absorption.json index 5a970a72a4..d6c1bd7934 100644 --- a/packs/src/items/rod/rod-of-absorption.json +++ b/packs/src/items/rod/rod-of-absorption.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233480, "modifiedTime": 1671220957521, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!6pjaQzbtxQTuQ4RW" } diff --git a/packs/src/items/rod/rod-of-alertness.json b/packs/src/items/rod/rod-of-alertness.json index 9203a18294..2ecba068e9 100644 --- a/packs/src/items/rod/rod-of-alertness.json +++ b/packs/src/items/rod/rod-of-alertness.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233530, "modifiedTime": 1671220958796, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Do3qeSHtBjUsmfvz" } diff --git a/packs/src/items/rod/rod-of-lordly-might.json b/packs/src/items/rod/rod-of-lordly-might.json index b31e8b6306..c76814d974 100644 --- a/packs/src/items/rod/rod-of-lordly-might.json +++ b/packs/src/items/rod/rod-of-lordly-might.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233740, "modifiedTime": 1671220962010, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!d5HNCmLIPCpPoX2w" } diff --git a/packs/src/items/rod/rod-of-rulership.json b/packs/src/items/rod/rod-of-rulership.json index 2916699124..d250bf8060 100644 --- a/packs/src/items/rod/rod-of-rulership.json +++ b/packs/src/items/rod/rod-of-rulership.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233953, "modifiedTime": 1671220965543, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!vmbB2SK6pQU2Vkzb" } diff --git a/packs/src/items/rod/rod-of-security.json b/packs/src/items/rod/rod-of-security.json index 0ba02d39f5..644ed8953a 100644 --- a/packs/src/items/rod/rod-of-security.json +++ b/packs/src/items/rod/rod-of-security.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233501, "modifiedTime": 1671220957768, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9kfMsSweOBui0SC4" } diff --git a/packs/src/items/scroll/spell-scroll-1st-level.json b/packs/src/items/scroll/spell-scroll-1st-level.json index a0bea0f007..4a21f7dec9 100644 --- a/packs/src/items/scroll/spell-scroll-1st-level.json +++ b/packs/src/items/scroll/spell-scroll-1st-level.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233496, "modifiedTime": 1671220957723, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9GSfMg0VOA2b4uFN" } diff --git a/packs/src/items/scroll/spell-scroll-2nd-level.json b/packs/src/items/scroll/spell-scroll-2nd-level.json index 5afef237a3..eaec10984e 100644 --- a/packs/src/items/scroll/spell-scroll-2nd-level.json +++ b/packs/src/items/scroll/spell-scroll-2nd-level.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233703, "modifiedTime": 1671220961592, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XdDp6CKh9qEvPTuS" } diff --git a/packs/src/items/scroll/spell-scroll-3rd-level.json b/packs/src/items/scroll/spell-scroll-3rd-level.json index 8e44fef12f..a463b02cca 100644 --- a/packs/src/items/scroll/spell-scroll-3rd-level.json +++ b/packs/src/items/scroll/spell-scroll-3rd-level.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233817, "modifiedTime": 1671220963038, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hqVKZie7x9w3Kqds" } diff --git a/packs/src/items/scroll/spell-scroll-4th-level.json b/packs/src/items/scroll/spell-scroll-4th-level.json index 802e84a6d7..1d09d4e240 100644 --- a/packs/src/items/scroll/spell-scroll-4th-level.json +++ b/packs/src/items/scroll/spell-scroll-4th-level.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233522, "modifiedTime": 1671220958714, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!DM7hzgL836ZyUFB1" } diff --git a/packs/src/items/scroll/spell-scroll-5th-level.json b/packs/src/items/scroll/spell-scroll-5th-level.json index f3564e2fe6..17f8d0e1fc 100644 --- a/packs/src/items/scroll/spell-scroll-5th-level.json +++ b/packs/src/items/scroll/spell-scroll-5th-level.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233958, "modifiedTime": 1671220965594, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!wa1VF8TXHmkrrR35" } diff --git a/packs/src/items/scroll/spell-scroll-6th-level.json b/packs/src/items/scroll/spell-scroll-6th-level.json index b7bfd27a01..3a28f086d6 100644 --- a/packs/src/items/scroll/spell-scroll-6th-level.json +++ b/packs/src/items/scroll/spell-scroll-6th-level.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233909, "modifiedTime": 1671220964876, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!tI3rWx4bxefNCexS" } diff --git a/packs/src/items/scroll/spell-scroll-7th-level.json b/packs/src/items/scroll/spell-scroll-7th-level.json index 11729d9240..32db821593 100644 --- a/packs/src/items/scroll/spell-scroll-7th-level.json +++ b/packs/src/items/scroll/spell-scroll-7th-level.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233856, "modifiedTime": 1671220964094, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!mtyw4NS1s7j2EJaD" } diff --git a/packs/src/items/scroll/spell-scroll-8th-level.json b/packs/src/items/scroll/spell-scroll-8th-level.json index 5f4d904323..d8330e4296 100644 --- a/packs/src/items/scroll/spell-scroll-8th-level.json +++ b/packs/src/items/scroll/spell-scroll-8th-level.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233723, "modifiedTime": 1671220961807, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!aOrinPg7yuDZEuWr" } diff --git a/packs/src/items/scroll/spell-scroll-9th-level.json b/packs/src/items/scroll/spell-scroll-9th-level.json index 3330db4133..db398cdb4e 100644 --- a/packs/src/items/scroll/spell-scroll-9th-level.json +++ b/packs/src/items/scroll/spell-scroll-9th-level.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233636, "modifiedTime": 1671220960336, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!O4YbkJkLlnsgUszZ" } diff --git a/packs/src/items/scroll/spell-scroll-cantrip.json b/packs/src/items/scroll/spell-scroll-cantrip.json index 8fb1f617cc..1a0af6828a 100644 --- a/packs/src/items/scroll/spell-scroll-cantrip.json +++ b/packs/src/items/scroll/spell-scroll-cantrip.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233890, "modifiedTime": 1671220964591, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!rQ6sO7HDWzqMhSI3" } diff --git a/packs/src/items/tool/alchemists-supplies.json b/packs/src/items/tool/alchemists-supplies.json index 4b3d3a3687..23be5cb354 100644 --- a/packs/src/items/tool/alchemists-supplies.json +++ b/packs/src/items/tool/alchemists-supplies.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 8, "price": { @@ -24,7 +29,7 @@ "baseItem": "alchemist", "ability": "int", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233668, "modifiedTime": 1671220960623, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!SztwZhbhZeCqyAes" } diff --git a/packs/src/items/tool/bagpipes.json b/packs/src/items/tool/bagpipes.json index a332668cb3..439a1d2c84 100644 --- a/packs/src/items/tool/bagpipes.json +++ b/packs/src/items/tool/bagpipes.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -24,7 +29,7 @@ "baseItem": "bagpipes", "ability": "cha", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233973, "modifiedTime": 1671220965794, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!yxHi57T5mmVt0oDr" } diff --git a/packs/src/items/tool/brewers-supplies.json b/packs/src/items/tool/brewers-supplies.json index 4c22a78821..7cf9745a5a 100644 --- a/packs/src/items/tool/brewers-supplies.json +++ b/packs/src/items/tool/brewers-supplies.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 9, "price": { @@ -24,7 +29,7 @@ "baseItem": "brewer", "ability": "wis", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233704, "modifiedTime": 1671220961611, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Y9S75go1hLMXUD48" } diff --git a/packs/src/items/tool/calligraphers-supplies.json b/packs/src/items/tool/calligraphers-supplies.json index a8ac0287c5..ef54b91199 100644 --- a/packs/src/items/tool/calligraphers-supplies.json +++ b/packs/src/items/tool/calligraphers-supplies.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -24,7 +29,7 @@ "baseItem": "calligrapher", "ability": "int", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233831, "modifiedTime": 1671220963197, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!jhjo20QoiD5exf09" } diff --git a/packs/src/items/tool/carpenters-tools.json b/packs/src/items/tool/carpenters-tools.json index 40310c67d0..0cd88054c9 100644 --- a/packs/src/items/tool/carpenters-tools.json +++ b/packs/src/items/tool/carpenters-tools.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -24,7 +29,7 @@ "baseItem": "carpenter", "ability": "str", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233491, "modifiedTime": 1671220957674, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8NS6MSOdXtUqD7Ib" } diff --git a/packs/src/items/tool/cartographers-tools.json b/packs/src/items/tool/cartographers-tools.json index d39a60e33a..32fc524de0 100644 --- a/packs/src/items/tool/cartographers-tools.json +++ b/packs/src/items/tool/cartographers-tools.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -24,7 +29,7 @@ "baseItem": "cartographer", "ability": "int", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233794, "modifiedTime": 1671220962755, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!fC0lFK8P4RuhpfaU" } diff --git a/packs/src/items/tool/chess-set.json b/packs/src/items/tool/chess-set.json index 9043e3a16d..e939c689bb 100644 --- a/packs/src/items/tool/chess-set.json +++ b/packs/src/items/tool/chess-set.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.5, "price": { @@ -24,7 +29,7 @@ "baseItem": "", "ability": "dex", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233443, "modifiedTime": 1671220957078, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!23y8FvWKf9YLcnBL" } diff --git a/packs/src/items/tool/cobblers-tools.json b/packs/src/items/tool/cobblers-tools.json index 9b2089c737..a011ea8851 100644 --- a/packs/src/items/tool/cobblers-tools.json +++ b/packs/src/items/tool/cobblers-tools.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -24,7 +29,7 @@ "baseItem": "cobbler", "ability": "int", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233813, "modifiedTime": 1671220962994, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hM84pZnpCqKfi8XH" } diff --git a/packs/src/items/tool/cooks-utensils.json b/packs/src/items/tool/cooks-utensils.json index feb2821083..f7bfdfd335 100644 --- a/packs/src/items/tool/cooks-utensils.json +++ b/packs/src/items/tool/cooks-utensils.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 8, "price": { @@ -24,7 +29,7 @@ "baseItem": "cook", "ability": "wis", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233557, "modifiedTime": 1671220959120, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Gflnp29aEv5Lc1ZM" } diff --git a/packs/src/items/tool/dice-set.json b/packs/src/items/tool/dice-set.json index 2476f4cd01..9791209654 100644 --- a/packs/src/items/tool/dice-set.json +++ b/packs/src/items/tool/dice-set.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -24,7 +29,7 @@ "baseItem": "", "ability": "dex", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233820, "modifiedTime": 1671220963067, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!iBuTM09KD9IoM5L8" } diff --git a/packs/src/items/tool/disguise-kit.json b/packs/src/items/tool/disguise-kit.json index 17c6715e52..e8da7ae4c4 100644 --- a/packs/src/items/tool/disguise-kit.json +++ b/packs/src/items/tool/disguise-kit.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -24,7 +29,7 @@ "baseItem": "disg", "ability": "int", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233571, "modifiedTime": 1671220959270, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!IBhDAr7WkhWPYLVn" } diff --git a/packs/src/items/tool/drum.json b/packs/src/items/tool/drum.json index fd3c82cace..3dcab2c501 100644 --- a/packs/src/items/tool/drum.json +++ b/packs/src/items/tool/drum.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -24,7 +29,7 @@ "baseItem": "drum", "ability": "cha", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233476, "modifiedTime": 1671220957479, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!69Dpr25pf4BjkHKb" } diff --git a/packs/src/items/tool/dulcimer.json b/packs/src/items/tool/dulcimer.json index ebc69882a3..c6a403199d 100644 --- a/packs/src/items/tool/dulcimer.json +++ b/packs/src/items/tool/dulcimer.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -24,7 +29,7 @@ "baseItem": "dulcimer", "ability": "cha", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233635, "modifiedTime": 1671220960332, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!NtdDkjmpdIMiX7I2" } diff --git a/packs/src/items/tool/flute.json b/packs/src/items/tool/flute.json index 282ebe96e8..92ecf91b2c 100644 --- a/packs/src/items/tool/flute.json +++ b/packs/src/items/tool/flute.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -24,7 +29,7 @@ "baseItem": "flute", "ability": "cha", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233781, "modifiedTime": 1671220962629, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eJOrPcAz9EcquyRQ" } diff --git a/packs/src/items/tool/forgery-kit.json b/packs/src/items/tool/forgery-kit.json index dfba0fc958..abf1cc4530 100644 --- a/packs/src/items/tool/forgery-kit.json +++ b/packs/src/items/tool/forgery-kit.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -24,7 +29,7 @@ "baseItem": "forg", "ability": "int", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233735, "modifiedTime": 1671220961959, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!cG3m4YlHfbQlLEOx" } diff --git a/packs/src/items/tool/glassblowers-tools.json b/packs/src/items/tool/glassblowers-tools.json index 984dc335d9..3a85abe2cb 100644 --- a/packs/src/items/tool/glassblowers-tools.json +++ b/packs/src/items/tool/glassblowers-tools.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -24,7 +29,7 @@ "baseItem": "glassblower", "ability": "int", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233891, "modifiedTime": 1671220964607, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!rTbVrNcwApnuTz5E" } diff --git a/packs/src/items/tool/herbalism-kit.json b/packs/src/items/tool/herbalism-kit.json index 9d4897a835..2d5ae918a2 100644 --- a/packs/src/items/tool/herbalism-kit.json +++ b/packs/src/items/tool/herbalism-kit.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -24,7 +29,7 @@ "baseItem": "herb", "ability": "wis", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233819, "modifiedTime": 1671220963060, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!i89okN7GFTWHsvPy" } diff --git a/packs/src/items/tool/horn.json b/packs/src/items/tool/horn.json index d2f80d7006..ba636ff4fb 100644 --- a/packs/src/items/tool/horn.json +++ b/packs/src/items/tool/horn.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -24,7 +29,7 @@ "baseItem": "horn", "ability": "cha", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233724, "modifiedTime": 1671220961838, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!aa9KuBy4dst7WIW9" } diff --git a/packs/src/items/tool/jewelers-tools.json b/packs/src/items/tool/jewelers-tools.json index 9a7786cd80..8d51183d16 100644 --- a/packs/src/items/tool/jewelers-tools.json +++ b/packs/src/items/tool/jewelers-tools.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -24,7 +29,7 @@ "baseItem": "jeweler", "ability": "int", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233708, "modifiedTime": 1671220961667, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!YfBwELTgPFHmQdHh" } diff --git a/packs/src/items/tool/leatherworkers-tools.json b/packs/src/items/tool/leatherworkers-tools.json index 2b4f3895c0..ed5ffb8796 100644 --- a/packs/src/items/tool/leatherworkers-tools.json +++ b/packs/src/items/tool/leatherworkers-tools.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -24,7 +29,7 @@ "baseItem": "leatherworker", "ability": "int", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233645, "modifiedTime": 1671220960427, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!PUMfwyVUbtyxgYbD" } diff --git a/packs/src/items/tool/lute.json b/packs/src/items/tool/lute.json index c685bd8b70..53e6d70513 100644 --- a/packs/src/items/tool/lute.json +++ b/packs/src/items/tool/lute.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -24,7 +29,7 @@ "baseItem": "lute", "ability": "cha", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233878, "modifiedTime": 1671220964460, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!qBydtUUIkv520DT7" } diff --git a/packs/src/items/tool/lyre.json b/packs/src/items/tool/lyre.json index 64899d02f1..34eefe92b8 100644 --- a/packs/src/items/tool/lyre.json +++ b/packs/src/items/tool/lyre.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -24,7 +29,7 @@ "baseItem": "lyre", "ability": "cha", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233538, "modifiedTime": 1671220958925, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!EwG1EtmbgR3bM68U" } diff --git a/packs/src/items/tool/masons-tools.json b/packs/src/items/tool/masons-tools.json index e677cf0ae8..5762d99138 100644 --- a/packs/src/items/tool/masons-tools.json +++ b/packs/src/items/tool/masons-tools.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 8, "price": { @@ -24,7 +29,7 @@ "baseItem": "mason", "ability": "wis", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233900, "modifiedTime": 1671220964771, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!skUih6tBvcBbORzA" } diff --git a/packs/src/items/tool/navigators-tools.json b/packs/src/items/tool/navigators-tools.json index f8f8f2b0aa..535c340eb3 100644 --- a/packs/src/items/tool/navigators-tools.json +++ b/packs/src/items/tool/navigators-tools.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -24,7 +29,7 @@ "baseItem": "navg", "ability": "int", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233705, "modifiedTime": 1671220961637, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!YHCmjsiXxZ9UdUhU" } diff --git a/packs/src/items/tool/painters-supplies.json b/packs/src/items/tool/painters-supplies.json index 9bec0d642e..eab471bb5c 100644 --- a/packs/src/items/tool/painters-supplies.json +++ b/packs/src/items/tool/painters-supplies.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -24,7 +29,7 @@ "baseItem": "painter", "ability": "int", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233738, "modifiedTime": 1671220961986, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ccm5xlWhx74d6lsK" } diff --git a/packs/src/items/tool/pan-flute.json b/packs/src/items/tool/pan-flute.json index e83ccf3ec6..9b276dd086 100644 --- a/packs/src/items/tool/pan-flute.json +++ b/packs/src/items/tool/pan-flute.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -24,7 +29,7 @@ "baseItem": "flute", "ability": "cha", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233553, "modifiedTime": 1671220959076, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!G5m5gYIx9VAUWC3J" } diff --git a/packs/src/items/tool/playing-cards-set.json b/packs/src/items/tool/playing-cards-set.json index a473695ff8..9d23fb3a7f 100644 --- a/packs/src/items/tool/playing-cards-set.json +++ b/packs/src/items/tool/playing-cards-set.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -24,7 +29,7 @@ "baseItem": "", "ability": "dex", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233712, "modifiedTime": 1671220961685, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!YwlHI3BVJapz4a3E" } diff --git a/packs/src/items/tool/poisoners-kit.json b/packs/src/items/tool/poisoners-kit.json index e33aaf27f5..14b692d867 100644 --- a/packs/src/items/tool/poisoners-kit.json +++ b/packs/src/items/tool/poisoners-kit.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -24,7 +29,7 @@ "baseItem": "pois", "ability": "wis", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233826, "modifiedTime": 1671220963112, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!il2GNi8C0DvGLL9P" } diff --git a/packs/src/items/tool/potters-tools.json b/packs/src/items/tool/potters-tools.json index 24e9ac9bfe..9f6723069e 100644 --- a/packs/src/items/tool/potters-tools.json +++ b/packs/src/items/tool/potters-tools.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -24,7 +29,7 @@ "baseItem": "potter", "ability": "int", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233812, "modifiedTime": 1671220962991, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hJS8yEVkqgJjwfWa" } diff --git a/packs/src/items/tool/shawm.json b/packs/src/items/tool/shawm.json index 70ad597283..b52e343c04 100644 --- a/packs/src/items/tool/shawm.json +++ b/packs/src/items/tool/shawm.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -24,7 +29,7 @@ "baseItem": "shawm", "ability": "cha", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233552, "modifiedTime": 1671220959072, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!G3cqbejJpfB91VhP" } diff --git a/packs/src/items/tool/smiths-tools.json b/packs/src/items/tool/smiths-tools.json index 6d7ff85107..c86d6e87f1 100644 --- a/packs/src/items/tool/smiths-tools.json +++ b/packs/src/items/tool/smiths-tools.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 8, "price": { @@ -24,7 +29,7 @@ "baseItem": "smith", "ability": "str", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233613, "modifiedTime": 1671220959984, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!KndVe2insuctjIaj" } diff --git a/packs/src/items/tool/thieves-tools.json b/packs/src/items/tool/thieves-tools.json index f2991fc716..14dec84833 100644 --- a/packs/src/items/tool/thieves-tools.json +++ b/packs/src/items/tool/thieves-tools.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -24,7 +29,7 @@ "baseItem": "thief", "ability": "dex", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233959, "modifiedTime": 1671220965608, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!woWZ1sO5IUVGzo58" } diff --git a/packs/src/items/tool/tinkers-tools.json b/packs/src/items/tool/tinkers-tools.json index b021c54007..1352a8925a 100644 --- a/packs/src/items/tool/tinkers-tools.json +++ b/packs/src/items/tool/tinkers-tools.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -24,7 +29,7 @@ "baseItem": "tinker", "ability": "int", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233436, "modifiedTime": 1671220957005, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!0d08g1i5WXnNrCNA" } diff --git a/packs/src/items/tool/viol.json b/packs/src/items/tool/viol.json index cbfc757071..67b55605ff 100644 --- a/packs/src/items/tool/viol.json +++ b/packs/src/items/tool/viol.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -24,7 +29,7 @@ "baseItem": "viol", "ability": "cha", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233731, "modifiedTime": 1671220961904, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!baoe3U5BfMMMxhCU" } diff --git a/packs/src/items/tool/weavers-tools.json b/packs/src/items/tool/weavers-tools.json index f80be552a9..354751eb59 100644 --- a/packs/src/items/tool/weavers-tools.json +++ b/packs/src/items/tool/weavers-tools.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -24,7 +29,7 @@ "baseItem": "weaver", "ability": "dex", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233726, "modifiedTime": 1671220961852, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ap9prThUB2y9lDyj" } diff --git a/packs/src/items/tool/woodcarvers-tools.json b/packs/src/items/tool/woodcarvers-tools.json index bc418a17eb..c1831d26d6 100644 --- a/packs/src/items/tool/woodcarvers-tools.json +++ b/packs/src/items/tool/woodcarvers-tools.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -24,7 +29,7 @@ "baseItem": "woodcarver", "ability": "dex", "chatFlavor": "", - "proficient": 0, + "proficient": null, "bonus": "" }, "effects": [], @@ -41,5 +46,6 @@ "createdTime": 1661787233965, "modifiedTime": 1671220965685, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!xKErqkLo4ASYr5EP" } diff --git a/packs/src/items/trinket/alchemy-jug.json b/packs/src/items/trinket/alchemy-jug.json index 5d9b4ad4bc..c50a054c6a 100644 --- a/packs/src/items/trinket/alchemy-jug.json +++ b/packs/src/items/trinket/alchemy-jug.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 12, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233671, "modifiedTime": 1671220960642, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!TZggpdbOYqOCG7mY" } diff --git a/packs/src/items/trinket/apparatus-of-the-crab.json b/packs/src/items/trinket/apparatus-of-the-crab.json index c9b3bc1ddd..0307dd10a9 100644 --- a/packs/src/items/trinket/apparatus-of-the-crab.json +++ b/packs/src/items/trinket/apparatus-of-the-crab.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 500, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233846, "modifiedTime": 1671220963338, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!lSd5QHnIJbKvP1bh" } diff --git a/packs/src/items/trinket/bag-of-beans.json b/packs/src/items/trinket/bag-of-beans.json index 383e7c7777..37d7a8365c 100644 --- a/packs/src/items/trinket/bag-of-beans.json +++ b/packs/src/items/trinket/bag-of-beans.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3.5, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233542, "modifiedTime": 1671220958951, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!F8QpasPjLrw2POzE" } diff --git a/packs/src/items/trinket/bag-of-tricks-grey.json b/packs/src/items/trinket/bag-of-tricks-grey.json index 258c183a0c..3c9a431222 100644 --- a/packs/src/items/trinket/bag-of-tricks-grey.json +++ b/packs/src/items/trinket/bag-of-tricks-grey.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.5, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233497, "modifiedTime": 1671220957726, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9Ifr8fGvJ1bArzOW" } diff --git a/packs/src/items/trinket/bag-of-tricks-rust.json b/packs/src/items/trinket/bag-of-tricks-rust.json index 0c76d179ca..c804aca915 100644 --- a/packs/src/items/trinket/bag-of-tricks-rust.json +++ b/packs/src/items/trinket/bag-of-tricks-rust.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.5, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233531, "modifiedTime": 1671220958839, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!DxIdfGoJEYQj8o3D" } diff --git a/packs/src/items/trinket/bag-of-tricks-tan.json b/packs/src/items/trinket/bag-of-tricks-tan.json index ef001741e1..cdc6038b51 100644 --- a/packs/src/items/trinket/bag-of-tricks-tan.json +++ b/packs/src/items/trinket/bag-of-tricks-tan.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.5, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233618, "modifiedTime": 1671220960062, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LHaqMvrx3PfSzWMQ" } diff --git a/packs/src/items/trinket/ball-bearings.json b/packs/src/items/trinket/ball-bearings.json index 412efbe4e9..600952ef18 100644 --- a/packs/src/items/trinket/ball-bearings.json +++ b/packs/src/items/trinket/ball-bearings.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1000, "weight": 0.002, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233456, "modifiedTime": 1671220957228, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3YSUIp4eFo26YxJr" } diff --git a/packs/src/items/trinket/bead-of-force.json b/packs/src/items/trinket/bead-of-force.json index 0cb1a8a333..cb27b94d9f 100644 --- a/packs/src/items/trinket/bead-of-force.json +++ b/packs/src/items/trinket/bead-of-force.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.06, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233665, "modifiedTime": 1671220960599, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!SqTtbBCfiEsmZ36N" } diff --git a/packs/src/items/trinket/block-and-tackle.json b/packs/src/items/trinket/block-and-tackle.json index 4bd39a0515..73da1a73a3 100644 --- a/packs/src/items/trinket/block-and-tackle.json +++ b/packs/src/items/trinket/block-and-tackle.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233832, "modifiedTime": 1671220963202, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!jlI44g90pp4VazBU" } diff --git a/packs/src/items/trinket/bowl-of-commanding-water-elementals.json b/packs/src/items/trinket/bowl-of-commanding-water-elementals.json index f34f656570..c7c2821d2a 100644 --- a/packs/src/items/trinket/bowl-of-commanding-water-elementals.json +++ b/packs/src/items/trinket/bowl-of-commanding-water-elementals.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233890, "modifiedTime": 1671220964601, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!rRMaaGZ7qbzqMvoI" } diff --git a/packs/src/items/trinket/brass-horn-of-valhalla.json b/packs/src/items/trinket/brass-horn-of-valhalla.json index 132b16c134..0ec3dccc24 100644 --- a/packs/src/items/trinket/brass-horn-of-valhalla.json +++ b/packs/src/items/trinket/brass-horn-of-valhalla.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233651, "modifiedTime": 1671220960487, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!QYJyQCnIQeLiMrmJ" } diff --git a/packs/src/items/trinket/brazier-of-commanding-fire-elementals.json b/packs/src/items/trinket/brazier-of-commanding-fire-elementals.json index cc8b7330b7..9be3f0c24e 100644 --- a/packs/src/items/trinket/brazier-of-commanding-fire-elementals.json +++ b/packs/src/items/trinket/brazier-of-commanding-fire-elementals.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233638, "modifiedTime": 1671220960359, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!OcjcplcUWH07Kn9k" } diff --git a/packs/src/items/trinket/bronze-horn-of-valhalla.json b/packs/src/items/trinket/bronze-horn-of-valhalla.json index 718416a770..5b285d6b9c 100644 --- a/packs/src/items/trinket/bronze-horn-of-valhalla.json +++ b/packs/src/items/trinket/bronze-horn-of-valhalla.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233902, "modifiedTime": 1671220964786, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!sqcerAMszpe3hwyI" } diff --git a/packs/src/items/trinket/broom-of-flying.json b/packs/src/items/trinket/broom-of-flying.json index 127666525d..12681053f1 100644 --- a/packs/src/items/trinket/broom-of-flying.json +++ b/packs/src/items/trinket/broom-of-flying.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233811, "modifiedTime": 1671220962979, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hFAVm9pTJDm0nu3g" } diff --git a/packs/src/items/trinket/bullseye-lantern.json b/packs/src/items/trinket/bullseye-lantern.json index 58d93fa0f6..ce09eb2c70 100644 --- a/packs/src/items/trinket/bullseye-lantern.json +++ b/packs/src/items/trinket/bullseye-lantern.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233679, "modifiedTime": 1671220960742, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!UkWdyJYQTfVX2cJW" } diff --git a/packs/src/items/trinket/caltrops.json b/packs/src/items/trinket/caltrops.json index 8593abab2d..af916d818c 100644 --- a/packs/src/items/trinket/caltrops.json +++ b/packs/src/items/trinket/caltrops.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233494, "modifiedTime": 1671220957707, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8tvhh5wqG5FRh3Sf" } diff --git a/packs/src/items/trinket/candle-of-invocation.json b/packs/src/items/trinket/candle-of-invocation.json index 9938a65212..54b3852efb 100644 --- a/packs/src/items/trinket/candle-of-invocation.json +++ b/packs/src/items/trinket/candle-of-invocation.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233718, "modifiedTime": 1671220961763, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ZoUVmRA3HfAK2eZy" } diff --git a/packs/src/items/trinket/candle.json b/packs/src/items/trinket/candle.json index 9d7afdda34..8efe6c75c4 100644 --- a/packs/src/items/trinket/candle.json +++ b/packs/src/items/trinket/candle.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233435, "modifiedTime": 1671220956998, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!0NoBBP3MMkvJlwZY" } diff --git a/packs/src/items/trinket/carpet-of-flying-3x5.json b/packs/src/items/trinket/carpet-of-flying-3x5.json index de1032377c..b50ff757cc 100644 --- a/packs/src/items/trinket/carpet-of-flying-3x5.json +++ b/packs/src/items/trinket/carpet-of-flying-3x5.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -87,5 +92,6 @@ "sort": 0, "ownership": { "default": 0 - } + }, + "_key": "!items!XwqNHyox5OQQio8q" } diff --git a/packs/src/items/trinket/carpet-of-flying-4x6.json b/packs/src/items/trinket/carpet-of-flying-4x6.json index f92283bc83..06ea3eb8a0 100644 --- a/packs/src/items/trinket/carpet-of-flying-4x6.json +++ b/packs/src/items/trinket/carpet-of-flying-4x6.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -87,5 +92,6 @@ "sort": 0, "ownership": { "default": 0 - } + }, + "_key": "!items!DeK9uQvNJj3JzFwe" } diff --git a/packs/src/items/trinket/carpet-of-flying-5x7.json b/packs/src/items/trinket/carpet-of-flying-5x7.json index 5461766ae3..01add0f2ce 100644 --- a/packs/src/items/trinket/carpet-of-flying-5x7.json +++ b/packs/src/items/trinket/carpet-of-flying-5x7.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -87,5 +92,6 @@ "sort": 0, "ownership": { "default": 0 - } + }, + "_key": "!items!XAr1SR4POx5BAArk" } diff --git a/packs/src/items/trinket/carpet-of-flying-6x9.json b/packs/src/items/trinket/carpet-of-flying-6x9.json index 5b9dafac8d..6f572eb551 100644 --- a/packs/src/items/trinket/carpet-of-flying-6x9.json +++ b/packs/src/items/trinket/carpet-of-flying-6x9.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233672, "modifiedTime": 1671220960653, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!TjWk2mpNXjDdfIDM" } diff --git a/packs/src/items/trinket/censer-of-controlling-air-elementals.json b/packs/src/items/trinket/censer-of-controlling-air-elementals.json index 4947ccbbd1..7e4feaca81 100644 --- a/packs/src/items/trinket/censer-of-controlling-air-elementals.json +++ b/packs/src/items/trinket/censer-of-controlling-air-elementals.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233897, "modifiedTime": 1671220964695, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!sXEkkTDXWQDUMzsC" } diff --git a/packs/src/items/trinket/chain-10-feet.json b/packs/src/items/trinket/chain-10-feet.json index dd55201ba1..e5d6091a0e 100644 --- a/packs/src/items/trinket/chain-10-feet.json +++ b/packs/src/items/trinket/chain-10-feet.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233581, "modifiedTime": 1671220959397, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!JvoufrTkSDMsS9Sm" } diff --git a/packs/src/items/trinket/chime-of-opening.json b/packs/src/items/trinket/chime-of-opening.json index 80d3875bb6..a2d6a2552e 100644 --- a/packs/src/items/trinket/chime-of-opening.json +++ b/packs/src/items/trinket/chime-of-opening.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233951, "modifiedTime": 1671220965535, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!vZdLYfHlLcZqQ8zc" } diff --git a/packs/src/items/trinket/climbers-kit.json b/packs/src/items/trinket/climbers-kit.json index eee6aeec55..a3ccfbd7ba 100644 --- a/packs/src/items/trinket/climbers-kit.json +++ b/packs/src/items/trinket/climbers-kit.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 12, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233921, "modifiedTime": 1671220964984, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ugzwHl8vYaPu2GNd" } diff --git a/packs/src/items/trinket/crystal-ball-of-mind-reading.json b/packs/src/items/trinket/crystal-ball-of-mind-reading.json index 4e65a8e035..807884d36e 100644 --- a/packs/src/items/trinket/crystal-ball-of-mind-reading.json +++ b/packs/src/items/trinket/crystal-ball-of-mind-reading.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233674, "modifiedTime": 1671220960688, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!TwYeck6buBZ602mg" } diff --git a/packs/src/items/trinket/crystal-ball-of-telepathy.json b/packs/src/items/trinket/crystal-ball-of-telepathy.json index cc48d07268..165d603b92 100644 --- a/packs/src/items/trinket/crystal-ball-of-telepathy.json +++ b/packs/src/items/trinket/crystal-ball-of-telepathy.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233469, "modifiedTime": 1671220957393, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!5KiRtMMSTnJmMtBr" } diff --git a/packs/src/items/trinket/crystal-ball-of-true-seeing.json b/packs/src/items/trinket/crystal-ball-of-true-seeing.json index 11232ae01a..bf5010a7f9 100644 --- a/packs/src/items/trinket/crystal-ball-of-true-seeing.json +++ b/packs/src/items/trinket/crystal-ball-of-true-seeing.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233506, "modifiedTime": 1671220958471, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ADH0UZ8bf7Op0dgf" } diff --git a/packs/src/items/trinket/crystal-ball.json b/packs/src/items/trinket/crystal-ball.json index d968af2307..5424e18939 100644 --- a/packs/src/items/trinket/crystal-ball.json +++ b/packs/src/items/trinket/crystal-ball.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233575, "modifiedTime": 1671220959323, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ItoGjtOtDOQ2noNM" } diff --git a/packs/src/items/trinket/cube-of-force.json b/packs/src/items/trinket/cube-of-force.json index 511884b1dd..3541a3f31e 100644 --- a/packs/src/items/trinket/cube-of-force.json +++ b/packs/src/items/trinket/cube-of-force.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233895, "modifiedTime": 1671220964662, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!s4fR8bxQGSt4wbH7" } diff --git a/packs/src/items/trinket/cubic-gate.json b/packs/src/items/trinket/cubic-gate.json index e1449f438e..c719c56307 100644 --- a/packs/src/items/trinket/cubic-gate.json +++ b/packs/src/items/trinket/cubic-gate.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233478, "modifiedTime": 1671220957500, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!6ai1pEde3iQX30Fr" } diff --git a/packs/src/items/trinket/decanter-of-endless-water.json b/packs/src/items/trinket/decanter-of-endless-water.json index 8ab54e73c7..b1dd01a4ff 100644 --- a/packs/src/items/trinket/decanter-of-endless-water.json +++ b/packs/src/items/trinket/decanter-of-endless-water.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233884, "modifiedTime": 1671220964509, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!qXcUKfCVxEvV3VU8" } diff --git a/packs/src/items/trinket/dimensional-shackles.json b/packs/src/items/trinket/dimensional-shackles.json index 6908475f5b..186d2efca1 100644 --- a/packs/src/items/trinket/dimensional-shackles.json +++ b/packs/src/items/trinket/dimensional-shackles.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233957, "modifiedTime": 1671220965579, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!wGKykLRS8UqChNXI" } diff --git a/packs/src/items/trinket/dust-of-disappearance.json b/packs/src/items/trinket/dust-of-disappearance.json index 9e2dd5a71b..1d57c518f3 100644 --- a/packs/src/items/trinket/dust-of-disappearance.json +++ b/packs/src/items/trinket/dust-of-disappearance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233735, "modifiedTime": 1671220961963, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!cGUPm15mLfhGDz2b" } diff --git a/packs/src/items/trinket/dust-of-dryness.json b/packs/src/items/trinket/dust-of-dryness.json index 5ed1803ecc..115d3debad 100644 --- a/packs/src/items/trinket/dust-of-dryness.json +++ b/packs/src/items/trinket/dust-of-dryness.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233783, "modifiedTime": 1671220962663, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eMR6B4bIoJPUDJG8" } diff --git a/packs/src/items/trinket/dust-of-sneezing-and-choking.json b/packs/src/items/trinket/dust-of-sneezing-and-choking.json index a84086ace4..d4f337f1ca 100644 --- a/packs/src/items/trinket/dust-of-sneezing-and-choking.json +++ b/packs/src/items/trinket/dust-of-sneezing-and-choking.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233500, "modifiedTime": 1671220957760, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9eyZY9tL3fXD1Mbm" } diff --git a/packs/src/items/trinket/efreeti-bottle.json b/packs/src/items/trinket/efreeti-bottle.json index 5b550ec7ff..0727c8ce8e 100644 --- a/packs/src/items/trinket/efreeti-bottle.json +++ b/packs/src/items/trinket/efreeti-bottle.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233799, "modifiedTime": 1671220962866, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!fbcQsOgWCjhEAGY7" } diff --git a/packs/src/items/trinket/elemental-gem-of-air.json b/packs/src/items/trinket/elemental-gem-of-air.json index b1da0adfcb..e0f0daf603 100644 --- a/packs/src/items/trinket/elemental-gem-of-air.json +++ b/packs/src/items/trinket/elemental-gem-of-air.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233976, "modifiedTime": 1671220965840, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zDJ4oEt5HArN1xmP" } diff --git a/packs/src/items/trinket/elemental-gem-of-earth.json b/packs/src/items/trinket/elemental-gem-of-earth.json index 6dfae8458b..6b5a8fbfcf 100644 --- a/packs/src/items/trinket/elemental-gem-of-earth.json +++ b/packs/src/items/trinket/elemental-gem-of-earth.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233571, "modifiedTime": 1671220959274, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!IGwDN9gtYxCrlrCr" } diff --git a/packs/src/items/trinket/elemental-gem-of-fire.json b/packs/src/items/trinket/elemental-gem-of-fire.json index 286fc72644..934c542223 100644 --- a/packs/src/items/trinket/elemental-gem-of-fire.json +++ b/packs/src/items/trinket/elemental-gem-of-fire.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233748, "modifiedTime": 1671220962081, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dsjke4vPPsc9gsxH" } diff --git a/packs/src/items/trinket/elemental-gem-of-water.json b/packs/src/items/trinket/elemental-gem-of-water.json index b45cc08739..f64f7215bb 100644 --- a/packs/src/items/trinket/elemental-gem-of-water.json +++ b/packs/src/items/trinket/elemental-gem-of-water.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233560, "modifiedTime": 1671220959148, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!HLEhnzLbpRbYdAHo" } diff --git a/packs/src/items/trinket/eversmoking-bottle.json b/packs/src/items/trinket/eversmoking-bottle.json index 28dfca74b9..3c78dc2956 100644 --- a/packs/src/items/trinket/eversmoking-bottle.json +++ b/packs/src/items/trinket/eversmoking-bottle.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233520, "modifiedTime": 1671220958678, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!CvzjhUy9ekRieR1A" } diff --git a/packs/src/items/trinket/feather-token-anchor.json b/packs/src/items/trinket/feather-token-anchor.json index 8f1ca9d8c6..061640137f 100644 --- a/packs/src/items/trinket/feather-token-anchor.json +++ b/packs/src/items/trinket/feather-token-anchor.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233529, "modifiedTime": 1671220958792, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!DnlQkH6Bpwkd5n5Y" } diff --git a/packs/src/items/trinket/feather-token-bird.json b/packs/src/items/trinket/feather-token-bird.json index 21fb9c1b43..6281bd9a7b 100644 --- a/packs/src/items/trinket/feather-token-bird.json +++ b/packs/src/items/trinket/feather-token-bird.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233814, "modifiedTime": 1671220963006, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hWqImieUaLo08l9l" } diff --git a/packs/src/items/trinket/feather-token-fan.json b/packs/src/items/trinket/feather-token-fan.json index ca64412c6b..1fcad541dd 100644 --- a/packs/src/items/trinket/feather-token-fan.json +++ b/packs/src/items/trinket/feather-token-fan.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233779, "modifiedTime": 1671220962610, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!e98hfROZjztt7ccO" } diff --git a/packs/src/items/trinket/feather-token-swan-boat.json b/packs/src/items/trinket/feather-token-swan-boat.json index 13faa65e27..cea8acf9ec 100644 --- a/packs/src/items/trinket/feather-token-swan-boat.json +++ b/packs/src/items/trinket/feather-token-swan-boat.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233679, "modifiedTime": 1671220960736, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!UgnUJhu0tW1tLt7g" } diff --git a/packs/src/items/trinket/feather-token-tree.json b/packs/src/items/trinket/feather-token-tree.json index 0391a858e8..2f416bdcfd 100644 --- a/packs/src/items/trinket/feather-token-tree.json +++ b/packs/src/items/trinket/feather-token-tree.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233634, "modifiedTime": 1671220960312, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!NjTgPn2o0M1TGk93" } diff --git a/packs/src/items/trinket/feather-token-whip.json b/packs/src/items/trinket/feather-token-whip.json index 0eecae1de0..686efde398 100644 --- a/packs/src/items/trinket/feather-token-whip.json +++ b/packs/src/items/trinket/feather-token-whip.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233548, "modifiedTime": 1671220959038, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Fgkj11diTJJ7H3JC" } diff --git a/packs/src/items/trinket/figurine-of-wondrous-power-bronze-griffon.json b/packs/src/items/trinket/figurine-of-wondrous-power-bronze-griffon.json index 108c083d0a..e3e273a40a 100644 --- a/packs/src/items/trinket/figurine-of-wondrous-power-bronze-griffon.json +++ b/packs/src/items/trinket/figurine-of-wondrous-power-bronze-griffon.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233516, "modifiedTime": 1671220958644, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!CI58LNiwrTpmWYMp" } diff --git a/packs/src/items/trinket/figurine-of-wondrous-power-ebony-fly.json b/packs/src/items/trinket/figurine-of-wondrous-power-ebony-fly.json index d35b8f5e12..94eb5416d7 100644 --- a/packs/src/items/trinket/figurine-of-wondrous-power-ebony-fly.json +++ b/packs/src/items/trinket/figurine-of-wondrous-power-ebony-fly.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233894, "modifiedTime": 1671220964655, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!s2kQs21J3cFg7ZSs" } diff --git a/packs/src/items/trinket/figurine-of-wondrous-power-golden-lions.json b/packs/src/items/trinket/figurine-of-wondrous-power-golden-lions.json index bc797721bd..e6e49c3389 100644 --- a/packs/src/items/trinket/figurine-of-wondrous-power-golden-lions.json +++ b/packs/src/items/trinket/figurine-of-wondrous-power-golden-lions.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233627, "modifiedTime": 1671220960208, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Minr6xegwoHFvAjG" } diff --git a/packs/src/items/trinket/figurine-of-wondrous-power-ivory-goat-of-terror.json b/packs/src/items/trinket/figurine-of-wondrous-power-ivory-goat-of-terror.json index 5c152384a9..b98c4e8623 100644 --- a/packs/src/items/trinket/figurine-of-wondrous-power-ivory-goat-of-terror.json +++ b/packs/src/items/trinket/figurine-of-wondrous-power-ivory-goat-of-terror.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233487, "modifiedTime": 1671220957624, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8CaODbNQtxHGuVjn" } diff --git a/packs/src/items/trinket/figurine-of-wondrous-power-ivory-goat-of-travail.json b/packs/src/items/trinket/figurine-of-wondrous-power-ivory-goat-of-travail.json index 812b705773..e0deb27ccb 100644 --- a/packs/src/items/trinket/figurine-of-wondrous-power-ivory-goat-of-travail.json +++ b/packs/src/items/trinket/figurine-of-wondrous-power-ivory-goat-of-travail.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233461, "modifiedTime": 1671220957294, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!41kYCmKq0PbGVKaM" } diff --git a/packs/src/items/trinket/figurine-of-wondrous-power-ivory-goat-of-traveling.json b/packs/src/items/trinket/figurine-of-wondrous-power-ivory-goat-of-traveling.json index 0576af1f7c..d43ce83a0b 100644 --- a/packs/src/items/trinket/figurine-of-wondrous-power-ivory-goat-of-traveling.json +++ b/packs/src/items/trinket/figurine-of-wondrous-power-ivory-goat-of-traveling.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233821, "modifiedTime": 1671220963082, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!iLt7wTWr4cJnQulJ" } diff --git a/packs/src/items/trinket/figurine-of-wondrous-power-marble-elephant.json b/packs/src/items/trinket/figurine-of-wondrous-power-marble-elephant.json index 50fc1c113b..ee4fe24637 100644 --- a/packs/src/items/trinket/figurine-of-wondrous-power-marble-elephant.json +++ b/packs/src/items/trinket/figurine-of-wondrous-power-marble-elephant.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233556, "modifiedTime": 1671220959102, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!GP2bvHlxVi30OEmo" } diff --git a/packs/src/items/trinket/figurine-of-wondrous-power-obsidian-steed.json b/packs/src/items/trinket/figurine-of-wondrous-power-obsidian-steed.json index ebb050af56..85f4d40e95 100644 --- a/packs/src/items/trinket/figurine-of-wondrous-power-obsidian-steed.json +++ b/packs/src/items/trinket/figurine-of-wondrous-power-obsidian-steed.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233622, "modifiedTime": 1671220960138, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!M5qkJ7erLqWYUHa0" } diff --git a/packs/src/items/trinket/figurine-of-wondrous-power-onyx-dog.json b/packs/src/items/trinket/figurine-of-wondrous-power-onyx-dog.json index b9f8582682..613f97198e 100644 --- a/packs/src/items/trinket/figurine-of-wondrous-power-onyx-dog.json +++ b/packs/src/items/trinket/figurine-of-wondrous-power-onyx-dog.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233502, "modifiedTime": 1671220957777, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9nxSHbqlDdngtuuz" } diff --git a/packs/src/items/trinket/figurine-of-wondrous-power-serpentine-owl.json b/packs/src/items/trinket/figurine-of-wondrous-power-serpentine-owl.json index c73e13f4c4..2d09c97e08 100644 --- a/packs/src/items/trinket/figurine-of-wondrous-power-serpentine-owl.json +++ b/packs/src/items/trinket/figurine-of-wondrous-power-serpentine-owl.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233697, "modifiedTime": 1671220961537, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XEH5YErAN1WSytln" } diff --git a/packs/src/items/trinket/figurine-of-wondrous-power-silver-raven.json b/packs/src/items/trinket/figurine-of-wondrous-power-silver-raven.json index 5a5157a213..61fff85271 100644 --- a/packs/src/items/trinket/figurine-of-wondrous-power-silver-raven.json +++ b/packs/src/items/trinket/figurine-of-wondrous-power-silver-raven.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233860, "modifiedTime": 1671220964165, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nMtmxeYrbyFdv0bg" } diff --git a/packs/src/items/trinket/folding-boat.json b/packs/src/items/trinket/folding-boat.json index ae84c305f7..3380f59222 100644 --- a/packs/src/items/trinket/folding-boat.json +++ b/packs/src/items/trinket/folding-boat.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233916, "modifiedTime": 1671220964951, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!u4ewpAFZjLrWrmQv" } diff --git a/packs/src/items/trinket/gem-of-brightness.json b/packs/src/items/trinket/gem-of-brightness.json index 52fcc712ec..0ed37d01d8 100644 --- a/packs/src/items/trinket/gem-of-brightness.json +++ b/packs/src/items/trinket/gem-of-brightness.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233913, "modifiedTime": 1671220964911, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!thkvJ5QBRORIwkkV" } diff --git a/packs/src/items/trinket/gem-of-seeing.json b/packs/src/items/trinket/gem-of-seeing.json index 586298781a..e6a8770b33 100644 --- a/packs/src/items/trinket/gem-of-seeing.json +++ b/packs/src/items/trinket/gem-of-seeing.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233829, "modifiedTime": 1671220963159, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!jJU8vFhHLQeKe2wu" } diff --git a/packs/src/items/trinket/healers-kit.json b/packs/src/items/trinket/healers-kit.json index 79dec9801f..dcd10fbd97 100644 --- a/packs/src/items/trinket/healers-kit.json +++ b/packs/src/items/trinket/healers-kit.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233481, "modifiedTime": 1671220957525, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!6rocoBx5jdzG1QQH" } diff --git a/packs/src/items/trinket/hempen-rope-50-ft.json b/packs/src/items/trinket/hempen-rope-50-ft.json index 2b7b2bd1e7..aaafad26fc 100644 --- a/packs/src/items/trinket/hempen-rope-50-ft.json +++ b/packs/src/items/trinket/hempen-rope-50-ft.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233651, "modifiedTime": 1671220960482, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!QXmaarJ4X8P0C1HV" } diff --git a/packs/src/items/trinket/hooded-lantern.json b/packs/src/items/trinket/hooded-lantern.json index 9809956791..f5a7ce9ce4 100644 --- a/packs/src/items/trinket/hooded-lantern.json +++ b/packs/src/items/trinket/hooded-lantern.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233914, "modifiedTime": 1671220964918, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!trmWAdUoR6Y2B7rA" } diff --git a/packs/src/items/trinket/horn-of-blasting.json b/packs/src/items/trinket/horn-of-blasting.json index e71382c1c8..87d813d15f 100644 --- a/packs/src/items/trinket/horn-of-blasting.json +++ b/packs/src/items/trinket/horn-of-blasting.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233904, "modifiedTime": 1671220964823, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!t7GfyRp3dB3lqS9i" } diff --git a/packs/src/items/trinket/horseshoes-of-a-zephyr.json b/packs/src/items/trinket/horseshoes-of-a-zephyr.json index e5695dea71..65bf66e88c 100644 --- a/packs/src/items/trinket/horseshoes-of-a-zephyr.json +++ b/packs/src/items/trinket/horseshoes-of-a-zephyr.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 8, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233449, "modifiedTime": 1671220957143, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!2mvXGvDmHHhzbT04" } diff --git a/packs/src/items/trinket/horseshoes-of-speed.json b/packs/src/items/trinket/horseshoes-of-speed.json index 172abd7d4e..941fb2fd4c 100644 --- a/packs/src/items/trinket/horseshoes-of-speed.json +++ b/packs/src/items/trinket/horseshoes-of-speed.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 8, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233858, "modifiedTime": 1671220964135, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nAqDwI9GyXS1diiz" } diff --git a/packs/src/items/trinket/hunting-trap.json b/packs/src/items/trinket/hunting-trap.json index a55ec9ee98..e038bc0aa9 100644 --- a/packs/src/items/trinket/hunting-trap.json +++ b/packs/src/items/trinket/hunting-trap.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 25, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233620, "modifiedTime": 1671220960104, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LiOD83I4MIZlpoQQ" } diff --git a/packs/src/items/trinket/instant-fortress.json b/packs/src/items/trinket/instant-fortress.json index 7a347c52cb..e91d4825a8 100644 --- a/packs/src/items/trinket/instant-fortress.json +++ b/packs/src/items/trinket/instant-fortress.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233503, "modifiedTime": 1671220957790, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9stfX2i2I1YPo8vx" } diff --git a/packs/src/items/trinket/iron-bands-of-binding.json b/packs/src/items/trinket/iron-bands-of-binding.json index 6d9631c05c..bde090d532 100644 --- a/packs/src/items/trinket/iron-bands-of-binding.json +++ b/packs/src/items/trinket/iron-bands-of-binding.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233533, "modifiedTime": 1671220958866, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!E9G4jALlSA96fKAN" } diff --git a/packs/src/items/trinket/iron-flask.json b/packs/src/items/trinket/iron-flask.json index 8e85fa4e2e..a31a61c45f 100644 --- a/packs/src/items/trinket/iron-flask.json +++ b/packs/src/items/trinket/iron-flask.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233850, "modifiedTime": 1671220963919, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!lvLrkAR7k8DS7J3W" } diff --git a/packs/src/items/trinket/iron-horn-of-valhalla.json b/packs/src/items/trinket/iron-horn-of-valhalla.json index 4263f8dfd0..f99105a632 100644 --- a/packs/src/items/trinket/iron-horn-of-valhalla.json +++ b/packs/src/items/trinket/iron-horn-of-valhalla.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233883, "modifiedTime": 1671220964496, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!qVuZznv0MnIjDU70" } diff --git a/packs/src/items/trinket/iron-spike.json b/packs/src/items/trinket/iron-spike.json index 69b3a4ffc5..21b9b23ee0 100644 --- a/packs/src/items/trinket/iron-spike.json +++ b/packs/src/items/trinket/iron-spike.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.5, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233657, "modifiedTime": 1671220960528, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!RiOeHR2qaYktz5Ys" } diff --git a/packs/src/items/trinket/lamp.json b/packs/src/items/trinket/lamp.json index f3ac89aed5..b5c2aaa002 100644 --- a/packs/src/items/trinket/lamp.json +++ b/packs/src/items/trinket/lamp.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233881, "modifiedTime": 1671220964483, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!qMzHmlmha8qMDnEF" } diff --git a/packs/src/items/trinket/lantern-of-revealing.json b/packs/src/items/trinket/lantern-of-revealing.json index ab422133f2..1cc8e5bfca 100644 --- a/packs/src/items/trinket/lantern-of-revealing.json +++ b/packs/src/items/trinket/lantern-of-revealing.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233482, "modifiedTime": 1671220957546, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7FLs8qIGdOFnz9oL" } diff --git a/packs/src/items/trinket/lock.json b/packs/src/items/trinket/lock.json index 7b2729b1b8..042a087b96 100644 --- a/packs/src/items/trinket/lock.json +++ b/packs/src/items/trinket/lock.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233969, "modifiedTime": 1671220965753, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!xwUWrV15s9jLnmfZ" } diff --git a/packs/src/items/trinket/manacles.json b/packs/src/items/trinket/manacles.json index cdd3a70927..ed3b43364e 100644 --- a/packs/src/items/trinket/manacles.json +++ b/packs/src/items/trinket/manacles.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233912, "modifiedTime": 1671220964902, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!tWJLHIL6ZIZUez9k" } diff --git a/packs/src/items/trinket/manual-of-bodily-health.json b/packs/src/items/trinket/manual-of-bodily-health.json index f4b7b73ef3..ded0acdc66 100644 --- a/packs/src/items/trinket/manual-of-bodily-health.json +++ b/packs/src/items/trinket/manual-of-bodily-health.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233512, "modifiedTime": 1671220958578, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!BjyTJn9oGvURWKJR" } diff --git a/packs/src/items/trinket/manual-of-gainful-exercise.json b/packs/src/items/trinket/manual-of-gainful-exercise.json index a69149ceb9..b649da6012 100644 --- a/packs/src/items/trinket/manual-of-gainful-exercise.json +++ b/packs/src/items/trinket/manual-of-gainful-exercise.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233971, "modifiedTime": 1671220965773, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ykefWXBjq3y6y9Se" } diff --git a/packs/src/items/trinket/manual-of-golems.json b/packs/src/items/trinket/manual-of-golems.json index d1f7bb6de7..89d2d053e8 100644 --- a/packs/src/items/trinket/manual-of-golems.json +++ b/packs/src/items/trinket/manual-of-golems.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233681, "modifiedTime": 1671220961288, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!UxkP6FvDzPbsIY6o" } diff --git a/packs/src/items/trinket/manual-of-quickness-of-action.json b/packs/src/items/trinket/manual-of-quickness-of-action.json index c2ffc6946f..342219ef98 100644 --- a/packs/src/items/trinket/manual-of-quickness-of-action.json +++ b/packs/src/items/trinket/manual-of-quickness-of-action.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233647, "modifiedTime": 1671220960441, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Q4jmng3i9Lb2nL5F" } diff --git a/packs/src/items/trinket/marvelous-pigments.json b/packs/src/items/trinket/marvelous-pigments.json index 89f8a57335..425a216c6f 100644 --- a/packs/src/items/trinket/marvelous-pigments.json +++ b/packs/src/items/trinket/marvelous-pigments.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233750, "modifiedTime": 1671220962588, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!e3XQygrXkzNvkDGF" } diff --git a/packs/src/items/trinket/mirror-of-life-trapping.json b/packs/src/items/trinket/mirror-of-life-trapping.json index 244ba82ea8..39c7c8e62c 100644 --- a/packs/src/items/trinket/mirror-of-life-trapping.json +++ b/packs/src/items/trinket/mirror-of-life-trapping.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 50, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233816, "modifiedTime": 1671220963033, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hf5j1meGsA33HkUj" } diff --git a/packs/src/items/trinket/necklace-of-fireballs.json b/packs/src/items/trinket/necklace-of-fireballs.json index 79b59c3a14..3928156705 100644 --- a/packs/src/items/trinket/necklace-of-fireballs.json +++ b/packs/src/items/trinket/necklace-of-fireballs.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.01, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233452, "modifiedTime": 1671220957173, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3ALOhh6JNInIK4o7" } diff --git a/packs/src/items/trinket/oil-flask.json b/packs/src/items/trinket/oil-flask.json index 7ee32d7308..9084ca89a8 100644 --- a/packs/src/items/trinket/oil-flask.json +++ b/packs/src/items/trinket/oil-flask.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233876, "modifiedTime": 1671220964419, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!psoZaItkOScMVaHL" } diff --git a/packs/src/items/trinket/pearl-of-power.json b/packs/src/items/trinket/pearl-of-power.json index ac3ee5035d..986ff233de 100644 --- a/packs/src/items/trinket/pearl-of-power.json +++ b/packs/src/items/trinket/pearl-of-power.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233462, "modifiedTime": 1671220957306, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!44XNWmMGnwXn7bNW" } diff --git a/packs/src/items/trinket/pipes-of-haunting.json b/packs/src/items/trinket/pipes-of-haunting.json index 1a8b7be314..bdb7cbb2d8 100644 --- a/packs/src/items/trinket/pipes-of-haunting.json +++ b/packs/src/items/trinket/pipes-of-haunting.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233868, "modifiedTime": 1671220964284, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!oNLfJNRQgUHpU8c7" } diff --git a/packs/src/items/trinket/pipes-of-the-sewers.json b/packs/src/items/trinket/pipes-of-the-sewers.json index 16e1e1cc38..af96dc16ae 100644 --- a/packs/src/items/trinket/pipes-of-the-sewers.json +++ b/packs/src/items/trinket/pipes-of-the-sewers.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233865, "modifiedTime": 1671220964244, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nvhk1quD0Dg1ZtSH" } diff --git a/packs/src/items/trinket/piton.json b/packs/src/items/trinket/piton.json index 5e35394c3a..30dff3527b 100644 --- a/packs/src/items/trinket/piton.json +++ b/packs/src/items/trinket/piton.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.25, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233674, "modifiedTime": 1671220960664, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!TqyvIglHDj5kfohR" } diff --git a/packs/src/items/trinket/portable-hole.json b/packs/src/items/trinket/portable-hole.json index f90925d089..db90dc75d5 100644 --- a/packs/src/items/trinket/portable-hole.json +++ b/packs/src/items/trinket/portable-hole.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233894, "modifiedTime": 1671220964648, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!rvxGvcUzoQXVNbAu" } diff --git a/packs/src/items/trinket/portable-ram.json b/packs/src/items/trinket/portable-ram.json index 3c785d3684..c80b7ea9f9 100644 --- a/packs/src/items/trinket/portable-ram.json +++ b/packs/src/items/trinket/portable-ram.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 35, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233902, "modifiedTime": 1671220964798, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!srTRzwTfWKO5opOo" } diff --git a/packs/src/items/trinket/rope-of-climbing.json b/packs/src/items/trinket/rope-of-climbing.json index 215e34b7da..053a1e8a04 100644 --- a/packs/src/items/trinket/rope-of-climbing.json +++ b/packs/src/items/trinket/rope-of-climbing.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233444, "modifiedTime": 1671220957086, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!29e6gHwWKNLaRUoz" } diff --git a/packs/src/items/trinket/rope-of-entanglement.json b/packs/src/items/trinket/rope-of-entanglement.json index e1eca0c140..12043b9cb6 100644 --- a/packs/src/items/trinket/rope-of-entanglement.json +++ b/packs/src/items/trinket/rope-of-entanglement.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233577, "modifiedTime": 1671220959332, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!J8gQdJJi5e8LmD7H" } diff --git a/packs/src/items/trinket/scarab-of-protection.json b/packs/src/items/trinket/scarab-of-protection.json index d6973248d0..b2d809ad2d 100644 --- a/packs/src/items/trinket/scarab-of-protection.json +++ b/packs/src/items/trinket/scarab-of-protection.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233967, "modifiedTime": 1671220965704, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!xjRSY2ECcc9viSz3" } diff --git a/packs/src/items/trinket/silk-rope-50-ft.json b/packs/src/items/trinket/silk-rope-50-ft.json index 533c4a8c93..564d2c310a 100644 --- a/packs/src/items/trinket/silk-rope-50-ft.json +++ b/packs/src/items/trinket/silk-rope-50-ft.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233869, "modifiedTime": 1671220964311, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!oY8KbpGmB5H2Deoy" } diff --git a/packs/src/items/trinket/silver-horn-of-valhalla.json b/packs/src/items/trinket/silver-horn-of-valhalla.json index d108f59a71..b98e5de503 100644 --- a/packs/src/items/trinket/silver-horn-of-valhalla.json +++ b/packs/src/items/trinket/silver-horn-of-valhalla.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233847, "modifiedTime": 1671220963348, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!lTfo6OVvAY2iJ4oq" } diff --git a/packs/src/items/trinket/sovereign-glue.json b/packs/src/items/trinket/sovereign-glue.json index 95047c06a0..086f2f6b41 100644 --- a/packs/src/items/trinket/sovereign-glue.json +++ b/packs/src/items/trinket/sovereign-glue.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.25, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233977, "modifiedTime": 1671220965850, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zJ5LhDvTxYKzPIx4" } diff --git a/packs/src/items/trinket/sphere-of-annihilation.json b/packs/src/items/trinket/sphere-of-annihilation.json index 24be14cd2b..a1bff2e658 100644 --- a/packs/src/items/trinket/sphere-of-annihilation.json +++ b/packs/src/items/trinket/sphere-of-annihilation.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233446, "modifiedTime": 1671220957107, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!2YNqk5zm9jDTvd7q" } diff --git a/packs/src/items/trinket/stone-of-controlling-earth-elementals.json b/packs/src/items/trinket/stone-of-controlling-earth-elementals.json index 88cf313898..5ac63db70f 100644 --- a/packs/src/items/trinket/stone-of-controlling-earth-elementals.json +++ b/packs/src/items/trinket/stone-of-controlling-earth-elementals.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233670, "modifiedTime": 1671220960633, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!TWFS1BtruQeE10BY" } diff --git a/packs/src/items/trinket/talisman-of-pure-good.json b/packs/src/items/trinket/talisman-of-pure-good.json index 6674924b51..62b9662b0f 100644 --- a/packs/src/items/trinket/talisman-of-pure-good.json +++ b/packs/src/items/trinket/talisman-of-pure-good.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233820, "modifiedTime": 1671220963064, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!iB3gunzgxZ8xK6Z5" } diff --git a/packs/src/items/trinket/talisman-of-the-sphere.json b/packs/src/items/trinket/talisman-of-the-sphere.json index 4908f227eb..da415def6a 100644 --- a/packs/src/items/trinket/talisman-of-the-sphere.json +++ b/packs/src/items/trinket/talisman-of-the-sphere.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233463, "modifiedTime": 1671220957324, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!46ikeR4RrSim6DsN" } diff --git a/packs/src/items/trinket/talisman-of-ultimate-evil.json b/packs/src/items/trinket/talisman-of-ultimate-evil.json index 1fc0909e89..00b84d6dd0 100644 --- a/packs/src/items/trinket/talisman-of-ultimate-evil.json +++ b/packs/src/items/trinket/talisman-of-ultimate-evil.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233642, "modifiedTime": 1671220960399, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!PAXfmZ2ErDlCVy0N" } diff --git a/packs/src/items/trinket/tome-of-clear-thought.json b/packs/src/items/trinket/tome-of-clear-thought.json index 86f7d8dfe1..ebfd758d2b 100644 --- a/packs/src/items/trinket/tome-of-clear-thought.json +++ b/packs/src/items/trinket/tome-of-clear-thought.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233445, "modifiedTime": 1671220957091, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!2BYm8to5KldN8eYu" } diff --git a/packs/src/items/trinket/tome-of-leadership-and-influence.json b/packs/src/items/trinket/tome-of-leadership-and-influence.json index 808db4cbb1..a0c962b24c 100644 --- a/packs/src/items/trinket/tome-of-leadership-and-influence.json +++ b/packs/src/items/trinket/tome-of-leadership-and-influence.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233867, "modifiedTime": 1671220964279, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!oN4Glcmi4BhdAI3k" } diff --git a/packs/src/items/trinket/tome-of-understanding.json b/packs/src/items/trinket/tome-of-understanding.json index 6505486fc4..8784143863 100644 --- a/packs/src/items/trinket/tome-of-understanding.json +++ b/packs/src/items/trinket/tome-of-understanding.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233693, "modifiedTime": 1671220961486, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WnKWD1FuAFUE7f4v" } diff --git a/packs/src/items/trinket/torch.json b/packs/src/items/trinket/torch.json index c44f4200fa..aa8b8ce1a3 100644 --- a/packs/src/items/trinket/torch.json +++ b/packs/src/items/trinket/torch.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233513, "modifiedTime": 1671220958589, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!BnOCLuNWhVvzHLjl" } diff --git a/packs/src/items/trinket/universal-solvent.json b/packs/src/items/trinket/universal-solvent.json index 627c55b101..2603bdf1f8 100644 --- a/packs/src/items/trinket/universal-solvent.json +++ b/packs/src/items/trinket/universal-solvent.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233624, "modifiedTime": 1671220960147, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MAwoj2suj6cvb9Ti" } diff --git a/packs/src/items/trinket/well-of-many-worlds.json b/packs/src/items/trinket/well-of-many-worlds.json index d13001dff5..ffce624adf 100644 --- a/packs/src/items/trinket/well-of-many-worlds.json +++ b/packs/src/items/trinket/well-of-many-worlds.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233967, "modifiedTime": 1671220965711, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!xjme5oSQZmdAy1fc" } diff --git a/packs/src/items/trinket/wind-fan.json b/packs/src/items/trinket/wind-fan.json index 0920afe7fb..6260f3839d 100644 --- a/packs/src/items/trinket/wind-fan.json +++ b/packs/src/items/trinket/wind-fan.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233854, "modifiedTime": 1671220963985, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!mYFfH24uzuKh4IPS" } diff --git a/packs/src/items/wand/wand-of-binding.json b/packs/src/items/wand/wand-of-binding.json index ad41de663b..05009431e2 100644 --- a/packs/src/items/wand/wand-of-binding.json +++ b/packs/src/items/wand/wand-of-binding.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233484, "modifiedTime": 1671220957573, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7jEKkA9qbwJ3IuCb" } diff --git a/packs/src/items/wand/wand-of-enemy-detection.json b/packs/src/items/wand/wand-of-enemy-detection.json index ee79a63ecb..72ca1b8d74 100644 --- a/packs/src/items/wand/wand-of-enemy-detection.json +++ b/packs/src/items/wand/wand-of-enemy-detection.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233470, "modifiedTime": 1671220957400, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!5Rxo4K9cgpwgW9vZ" } diff --git a/packs/src/items/wand/wand-of-fear.json b/packs/src/items/wand/wand-of-fear.json index acba7b4ddb..b73f0123bf 100644 --- a/packs/src/items/wand/wand-of-fear.json +++ b/packs/src/items/wand/wand-of-fear.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233534, "modifiedTime": 1671220958871, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!EJFql4aNWHHJSxT9" } diff --git a/packs/src/items/wand/wand-of-fireballs.json b/packs/src/items/wand/wand-of-fireballs.json index 17b3a987c8..fa9f13ff99 100644 --- a/packs/src/items/wand/wand-of-fireballs.json +++ b/packs/src/items/wand/wand-of-fireballs.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233530, "modifiedTime": 1671220958821, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!DoSvjhRARhRqWZXg" } diff --git a/packs/src/items/wand/wand-of-lightning-bolts.json b/packs/src/items/wand/wand-of-lightning-bolts.json index 41867a41fa..6470c6e637 100644 --- a/packs/src/items/wand/wand-of-lightning-bolts.json +++ b/packs/src/items/wand/wand-of-lightning-bolts.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -92,5 +97,6 @@ "createdTime": 1661787233730, "modifiedTime": 1671220961893, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!bPFVfq81EsMNu6OQ" } diff --git a/packs/src/items/wand/wand-of-magic-detection.json b/packs/src/items/wand/wand-of-magic-detection.json index ca8f7904ac..c00ccc5d3a 100644 --- a/packs/src/items/wand/wand-of-magic-detection.json +++ b/packs/src/items/wand/wand-of-magic-detection.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233438, "modifiedTime": 1671220957022, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!18fbyArtidKzON01" } diff --git a/packs/src/items/wand/wand-of-magic-missiles.json b/packs/src/items/wand/wand-of-magic-missiles.json index 46db2ff9c6..ff5e6a8f5a 100644 --- a/packs/src/items/wand/wand-of-magic-missiles.json +++ b/packs/src/items/wand/wand-of-magic-missiles.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -96,5 +101,6 @@ "createdTime": 1661787233442, "modifiedTime": 1671220957074, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!1taRIMF9w7jpnonN" } diff --git a/packs/src/items/wand/wand-of-paralysis.json b/packs/src/items/wand/wand-of-paralysis.json index 20b166c2e6..84f58c3fd8 100644 --- a/packs/src/items/wand/wand-of-paralysis.json +++ b/packs/src/items/wand/wand-of-paralysis.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233556, "modifiedTime": 1671220959117, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!GcpXNc4dKUNw0Tk6" } diff --git a/packs/src/items/wand/wand-of-polymorph.json b/packs/src/items/wand/wand-of-polymorph.json index 63b9c37a09..c0cf299ecb 100644 --- a/packs/src/items/wand/wand-of-polymorph.json +++ b/packs/src/items/wand/wand-of-polymorph.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233839, "modifiedTime": 1671220963276, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!khyjT3dKyoEOf4eA" } diff --git a/packs/src/items/wand/wand-of-secrets.json b/packs/src/items/wand/wand-of-secrets.json index 1a9a3c3944..390769029e 100644 --- a/packs/src/items/wand/wand-of-secrets.json +++ b/packs/src/items/wand/wand-of-secrets.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233684, "modifiedTime": 1671220961349, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!VQ6NWjWV37wiB29O" } diff --git a/packs/src/items/wand/wand-of-web.json b/packs/src/items/wand/wand-of-web.json index 05175850f8..1f7fb15093 100644 --- a/packs/src/items/wand/wand-of-web.json +++ b/packs/src/items/wand/wand-of-web.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233466, "modifiedTime": 1671220957367, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!4sR5HOah6KwVPHOb" } diff --git a/packs/src/items/wand/wand-of-wonder.json b/packs/src/items/wand/wand-of-wonder.json index 71aa5966eb..408518a78b 100644 --- a/packs/src/items/wand/wand-of-wonder.json +++ b/packs/src/items/wand/wand-of-wonder.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -87,5 +92,6 @@ "createdTime": 1661787233845, "modifiedTime": 1671220963332, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!lPsueMv4ZoXqCYf9" } diff --git a/packs/src/items/weapon/battleaxe-1.json b/packs/src/items/weapon/battleaxe-1.json index c1ccf3acc6..baad525612 100644 --- a/packs/src/items/weapon/battleaxe-1.json +++ b/packs/src/items/weapon/battleaxe-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "two": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233676, "modifiedTime": 1671220960707, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!UAXu4MNvAvaKz9JO" } diff --git a/packs/src/items/weapon/battleaxe-2.json b/packs/src/items/weapon/battleaxe-2.json index 168f1f1c96..55f0899b56 100644 --- a/packs/src/items/weapon/battleaxe-2.json +++ b/packs/src/items/weapon/battleaxe-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "two": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233737, "modifiedTime": 1671220961975, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!cQ94oKUZN8FDAI8U" } diff --git a/packs/src/items/weapon/battleaxe-3.json b/packs/src/items/weapon/battleaxe-3.json index 0ee382594d..a0b18a3765 100644 --- a/packs/src/items/weapon/battleaxe-3.json +++ b/packs/src/items/weapon/battleaxe-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "two": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233837, "modifiedTime": 1671220963254, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!kNlvoSTcdMqxJPmI" } diff --git a/packs/src/items/weapon/battleaxe.json b/packs/src/items/weapon/battleaxe.json index 14e616c8f8..b6dfff821f 100644 --- a/packs/src/items/weapon/battleaxe.json +++ b/packs/src/items/weapon/battleaxe.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -89,7 +94,7 @@ "properties": { "ver": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233568, "modifiedTime": 1671220959258, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!I0WocDSuNpGJayPb" } diff --git a/packs/src/items/weapon/berserker-battleaxe.json b/packs/src/items/weapon/berserker-battleaxe.json index b357093749..e76be0793d 100644 --- a/packs/src/items/weapon/berserker-battleaxe.json +++ b/packs/src/items/weapon/berserker-battleaxe.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "ver": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233749, "modifiedTime": 1671220962569, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dvNzJqb7vq6oJlA2" } diff --git a/packs/src/items/weapon/berserker-greataxe.json b/packs/src/items/weapon/berserker-greataxe.json index 47e76e0bca..28b89d341f 100644 --- a/packs/src/items/weapon/berserker-greataxe.json +++ b/packs/src/items/weapon/berserker-greataxe.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233978, "modifiedTime": 1671220965854, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zSKorO6lwT7vs2uk" } diff --git a/packs/src/items/weapon/berserker-handaxe.json b/packs/src/items/weapon/berserker-handaxe.json index 8e568c5f19..b0b33afc0f 100644 --- a/packs/src/items/weapon/berserker-handaxe.json +++ b/packs/src/items/weapon/berserker-handaxe.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233808, "modifiedTime": 1671220962960, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gwuffGC4JZ8BbStz" } diff --git a/packs/src/items/weapon/blowgun-1.json b/packs/src/items/weapon/blowgun-1.json index 2573fdcaa6..0382a25f54 100644 --- a/packs/src/items/weapon/blowgun-1.json +++ b/packs/src/items/weapon/blowgun-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -103,7 +108,7 @@ "lod": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233629, "modifiedTime": 1671220960250, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!N8XNP3vjVZmM2r9S" } diff --git a/packs/src/items/weapon/blowgun-2.json b/packs/src/items/weapon/blowgun-2.json index 183c938925..347910439d 100644 --- a/packs/src/items/weapon/blowgun-2.json +++ b/packs/src/items/weapon/blowgun-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -103,7 +108,7 @@ "lod": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233800, "modifiedTime": 1671220962875, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!fu7DJcrYWfGMeVt9" } diff --git a/packs/src/items/weapon/blowgun-3.json b/packs/src/items/weapon/blowgun-3.json index ca5052b642..d136206162 100644 --- a/packs/src/items/weapon/blowgun-3.json +++ b/packs/src/items/weapon/blowgun-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -103,7 +108,7 @@ "lod": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233561, "modifiedTime": 1671220959157, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!HQJ8tiyyrJJSUSyF" } diff --git a/packs/src/items/weapon/blowgun.json b/packs/src/items/weapon/blowgun.json index 41af0ae0fe..688a6986d0 100644 --- a/packs/src/items/weapon/blowgun.json +++ b/packs/src/items/weapon/blowgun.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -102,7 +107,7 @@ "ver": false, "lod": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -118,5 +123,6 @@ "createdTime": 1661787233958, "modifiedTime": 1671220965589, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!wNWK6yJMHG9ANqQV" } diff --git a/packs/src/items/weapon/club-1.json b/packs/src/items/weapon/club-1.json index dccf762236..bc78cb0a69 100644 --- a/packs/src/items/weapon/club-1.json +++ b/packs/src/items/weapon/club-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233794, "modifiedTime": 1671220962765, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!fCRftM4QxEDkeu0a" } diff --git a/packs/src/items/weapon/club-2.json b/packs/src/items/weapon/club-2.json index f127bc2068..7bf0c53d12 100644 --- a/packs/src/items/weapon/club-2.json +++ b/packs/src/items/weapon/club-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233809, "modifiedTime": 1671220962964, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gyJ0imAckcWtCjyv" } diff --git a/packs/src/items/weapon/club-3.json b/packs/src/items/weapon/club-3.json index c7716228f7..1a1ed49195 100644 --- a/packs/src/items/weapon/club-3.json +++ b/packs/src/items/weapon/club-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233564, "modifiedTime": 1671220959203, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!HdC66U61pDOknaux" } diff --git a/packs/src/items/weapon/club.json b/packs/src/items/weapon/club.json index 68970d5bc9..5f0ccf7c78 100644 --- a/packs/src/items/weapon/club.json +++ b/packs/src/items/weapon/club.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -102,7 +107,7 @@ "two": false, "ver": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -118,5 +123,6 @@ "createdTime": 1661787233863, "modifiedTime": 1671220964208, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nfIRTECQIG81CvM4" } diff --git a/packs/src/items/weapon/crystal.json b/packs/src/items/weapon/crystal.json index 705ebca32f..88a849ffb0 100644 --- a/packs/src/items/weapon/crystal.json +++ b/packs/src/items/weapon/crystal.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -98,7 +103,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -114,5 +119,6 @@ "createdTime": 1661787233920, "modifiedTime": 1671220964981, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!uXOT4fYbgPY8DGdd" } diff --git a/packs/src/items/weapon/dagger-1.json b/packs/src/items/weapon/dagger-1.json index e7af8f1d9a..4790201fc7 100644 --- a/packs/src/items/weapon/dagger-1.json +++ b/packs/src/items/weapon/dagger-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233468, "modifiedTime": 1671220957375, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!59pjg8FGM4GG4Fdd" } diff --git a/packs/src/items/weapon/dagger-2.json b/packs/src/items/weapon/dagger-2.json index 59064f7f1f..4703c98cb4 100644 --- a/packs/src/items/weapon/dagger-2.json +++ b/packs/src/items/weapon/dagger-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233621, "modifiedTime": 1671220960124, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Lr8aRsnia8hftPAb" } diff --git a/packs/src/items/weapon/dagger-3.json b/packs/src/items/weapon/dagger-3.json index 56cc6318c4..1f3773798a 100644 --- a/packs/src/items/weapon/dagger-3.json +++ b/packs/src/items/weapon/dagger-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233731, "modifiedTime": 1671220961900, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!bWI5i4RbyGKT6Eiq" } diff --git a/packs/src/items/weapon/dagger-of-venom.json b/packs/src/items/weapon/dagger-of-venom.json index 58bd296732..c9d6812d35 100644 --- a/packs/src/items/weapon/dagger-of-venom.json +++ b/packs/src/items/weapon/dagger-of-venom.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233483, "modifiedTime": 1671220957563, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7i4s9msZWpAw4Ynv" } diff --git a/packs/src/items/weapon/dagger.json b/packs/src/items/weapon/dagger.json index 9d9b132761..c9d5632a38 100644 --- a/packs/src/items/weapon/dagger.json +++ b/packs/src/items/weapon/dagger.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -102,7 +107,7 @@ "two": false, "ver": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -118,5 +123,6 @@ "createdTime": 1661787233433, "modifiedTime": 1671220956984, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!0E565kQUBmndJ1a2" } diff --git a/packs/src/items/weapon/dancing-greatsword.json b/packs/src/items/weapon/dancing-greatsword.json index 2806b17260..dbcd150672 100644 --- a/packs/src/items/weapon/dancing-greatsword.json +++ b/packs/src/items/weapon/dancing-greatsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233978, "modifiedTime": 1671220965866, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zWSB0NCllWaSVoNT" } diff --git a/packs/src/items/weapon/dancing-longsword.json b/packs/src/items/weapon/dancing-longsword.json index cb9ba99d6d..679dac36b5 100644 --- a/packs/src/items/weapon/dancing-longsword.json +++ b/packs/src/items/weapon/dancing-longsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233895, "modifiedTime": 1671220964674, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!sIiUbRJItYAs5gtA" } diff --git a/packs/src/items/weapon/dancing-rapier.json b/packs/src/items/weapon/dancing-rapier.json index a4f929226b..7770745c43 100644 --- a/packs/src/items/weapon/dancing-rapier.json +++ b/packs/src/items/weapon/dancing-rapier.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233479, "modifiedTime": 1671220957506, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!6n8J07mFo8xs11vS" } diff --git a/packs/src/items/weapon/dancing-scimitar.json b/packs/src/items/weapon/dancing-scimitar.json index 50539a0e8d..81ec888b36 100644 --- a/packs/src/items/weapon/dancing-scimitar.json +++ b/packs/src/items/weapon/dancing-scimitar.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233837, "modifiedTime": 1671220963264, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!kOYXMf4GTtD7OqbD" } diff --git a/packs/src/items/weapon/dancing-shortsword.json b/packs/src/items/weapon/dancing-shortsword.json index 07dc2e0a77..4a7c908f36 100644 --- a/packs/src/items/weapon/dancing-shortsword.json +++ b/packs/src/items/weapon/dancing-shortsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233903, "modifiedTime": 1671220964802, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!stlFCpqW3ZuAftTi" } diff --git a/packs/src/items/weapon/dart-1.json b/packs/src/items/weapon/dart-1.json index d391cba2d8..2b1ee8073a 100644 --- a/packs/src/items/weapon/dart-1.json +++ b/packs/src/items/weapon/dart-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.25, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233807, "modifiedTime": 1671220962951, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!giU3yyZXvErjf78D" } diff --git a/packs/src/items/weapon/dart-2.json b/packs/src/items/weapon/dart-2.json index a55c694a5b..63a9750612 100644 --- a/packs/src/items/weapon/dart-2.json +++ b/packs/src/items/weapon/dart-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.25, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233536, "modifiedTime": 1671220958896, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!EWdfUQriSabqDESm" } diff --git a/packs/src/items/weapon/dart-3.json b/packs/src/items/weapon/dart-3.json index 50e76be18c..9141cb72aa 100644 --- a/packs/src/items/weapon/dart-3.json +++ b/packs/src/items/weapon/dart-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.25, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233828, "modifiedTime": 1671220963144, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!izF3kmyFEVI5TWhp" } diff --git a/packs/src/items/weapon/dart.json b/packs/src/items/weapon/dart.json index 3ba1ecdc2d..424aa19211 100644 --- a/packs/src/items/weapon/dart.json +++ b/packs/src/items/weapon/dart.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.25, "price": { @@ -101,7 +106,7 @@ "two": false, "ver": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -117,5 +122,6 @@ "createdTime": 1661787233460, "modifiedTime": 1671220957269, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3rCO8MTIdPGSW6IJ" } diff --git a/packs/src/items/weapon/defender-greatsword.json b/packs/src/items/weapon/defender-greatsword.json index 64e71fceb2..cce8f0394c 100644 --- a/packs/src/items/weapon/defender-greatsword.json +++ b/packs/src/items/weapon/defender-greatsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -105,7 +110,7 @@ "ada": false, "sil": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -121,5 +126,6 @@ "createdTime": 1661787233860, "modifiedTime": 1671220964179, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nSNhjX5F7f86AW1a" } diff --git a/packs/src/items/weapon/defender-longsword.json b/packs/src/items/weapon/defender-longsword.json index ad7f84f5ee..3e1671895c 100644 --- a/packs/src/items/weapon/defender-longsword.json +++ b/packs/src/items/weapon/defender-longsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -105,7 +110,7 @@ "ada": false, "sil": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -121,5 +126,6 @@ "createdTime": 1661787233921, "modifiedTime": 1671220965471, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ukcKemEoTTRB9yLC" } diff --git a/packs/src/items/weapon/defender-rapier.json b/packs/src/items/weapon/defender-rapier.json index ecc0fd2053..9baa51fd96 100644 --- a/packs/src/items/weapon/defender-rapier.json +++ b/packs/src/items/weapon/defender-rapier.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -105,7 +110,7 @@ "ada": false, "sil": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -121,5 +126,6 @@ "createdTime": 1661787233710, "modifiedTime": 1671220961676, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!YrkkHa6KN8a9o35k" } diff --git a/packs/src/items/weapon/defender-scimitar.json b/packs/src/items/weapon/defender-scimitar.json index 8d84809ea3..c21367aecf 100644 --- a/packs/src/items/weapon/defender-scimitar.json +++ b/packs/src/items/weapon/defender-scimitar.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -105,7 +110,7 @@ "ada": false, "sil": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -121,5 +126,6 @@ "createdTime": 1661787233574, "modifiedTime": 1671220959300, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Ilyv71AeobM6AvIn" } diff --git a/packs/src/items/weapon/defender-shortsword.json b/packs/src/items/weapon/defender-shortsword.json index 5fc367e710..844516ac36 100644 --- a/packs/src/items/weapon/defender-shortsword.json +++ b/packs/src/items/weapon/defender-shortsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -105,7 +110,7 @@ "ada": false, "sil": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -121,5 +126,6 @@ "createdTime": 1661787233740, "modifiedTime": 1671220962003, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!d58CvI0Fiav9Jjt1" } diff --git a/packs/src/items/weapon/dragon-slayer-greatsword.json b/packs/src/items/weapon/dragon-slayer-greatsword.json index 23856c10c8..5b8a0ad270 100644 --- a/packs/src/items/weapon/dragon-slayer-greatsword.json +++ b/packs/src/items/weapon/dragon-slayer-greatsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233870, "modifiedTime": 1671220964339, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!orHjq3XDPz4eXcov" } diff --git a/packs/src/items/weapon/dragon-slayer-longsword.json b/packs/src/items/weapon/dragon-slayer-longsword.json index 47c972b2ee..a5c25bece0 100644 --- a/packs/src/items/weapon/dragon-slayer-longsword.json +++ b/packs/src/items/weapon/dragon-slayer-longsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233663, "modifiedTime": 1671220960579, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!SXjs8JghAPBv7d6j" } diff --git a/packs/src/items/weapon/dragon-slayer-rapier.json b/packs/src/items/weapon/dragon-slayer-rapier.json index 89bb48fb0d..ee73e7c692 100644 --- a/packs/src/items/weapon/dragon-slayer-rapier.json +++ b/packs/src/items/weapon/dragon-slayer-rapier.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233660, "modifiedTime": 1671220960551, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!S7TrIOlE600KIOUx" } diff --git a/packs/src/items/weapon/dragon-slayer-scimitar.json b/packs/src/items/weapon/dragon-slayer-scimitar.json index be9cfb6244..4ca52add02 100644 --- a/packs/src/items/weapon/dragon-slayer-scimitar.json +++ b/packs/src/items/weapon/dragon-slayer-scimitar.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233799, "modifiedTime": 1671220962871, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!feKHv3JUWZdSNKf0" } diff --git a/packs/src/items/weapon/dragon-slayer-shortsword.json b/packs/src/items/weapon/dragon-slayer-shortsword.json index f06d55d547..8a63852ed9 100644 --- a/packs/src/items/weapon/dragon-slayer-shortsword.json +++ b/packs/src/items/weapon/dragon-slayer-shortsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233625, "modifiedTime": 1671220960159, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MFd96UkSs5g9QO78" } diff --git a/packs/src/items/weapon/dwarven-thrower.json b/packs/src/items/weapon/dwarven-thrower.json index 019640b0a9..6769b89bbc 100644 --- a/packs/src/items/weapon/dwarven-thrower.json +++ b/packs/src/items/weapon/dwarven-thrower.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -105,7 +110,7 @@ "ada": false, "sil": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -121,5 +126,6 @@ "createdTime": 1661787233841, "modifiedTime": 1671220963288, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!kvD4ElYCfCKpjDeg" } diff --git a/packs/src/items/weapon/flail-1.json b/packs/src/items/weapon/flail-1.json index 1ca92483e2..44d9f4c0df 100644 --- a/packs/src/items/weapon/flail-1.json +++ b/packs/src/items/weapon/flail-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233434, "modifiedTime": 1671220956993, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!0LVFLPmsu1b2vf8E" } diff --git a/packs/src/items/weapon/flail-2.json b/packs/src/items/weapon/flail-2.json index 1f7a625300..20c811c7d8 100644 --- a/packs/src/items/weapon/flail-2.json +++ b/packs/src/items/weapon/flail-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233973, "modifiedTime": 1671220965799, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!z0lIRURcyDYt1kLK" } diff --git a/packs/src/items/weapon/flail-3.json b/packs/src/items/weapon/flail-3.json index 759cee7b68..b6f51f66b8 100644 --- a/packs/src/items/weapon/flail-3.json +++ b/packs/src/items/weapon/flail-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233959, "modifiedTime": 1671220965599, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!wgBKZNeRN1XsE9I7" } diff --git a/packs/src/items/weapon/flail.json b/packs/src/items/weapon/flail.json index 7483aea744..772193430b 100644 --- a/packs/src/items/weapon/flail.json +++ b/packs/src/items/weapon/flail.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -101,7 +106,7 @@ "two": false, "ver": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -117,5 +122,6 @@ "createdTime": 1661787233680, "modifiedTime": 1671220961264, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!UrH3sMdnUDckIHJ6" } diff --git a/packs/src/items/weapon/flame-tongue-greatsword.json b/packs/src/items/weapon/flame-tongue-greatsword.json index 61a2d6ffe3..4a8fb36ba7 100644 --- a/packs/src/items/weapon/flame-tongue-greatsword.json +++ b/packs/src/items/weapon/flame-tongue-greatsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233691, "modifiedTime": 1671220961455, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WWb4vAmh18sMAxfY" } diff --git a/packs/src/items/weapon/flame-tongue-longsword.json b/packs/src/items/weapon/flame-tongue-longsword.json index fbefe0df10..a2c1b9dab5 100644 --- a/packs/src/items/weapon/flame-tongue-longsword.json +++ b/packs/src/items/weapon/flame-tongue-longsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233748, "modifiedTime": 1671220962085, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ducaFdrqwLZ0l3c7" } diff --git a/packs/src/items/weapon/flame-tongue-rapier.json b/packs/src/items/weapon/flame-tongue-rapier.json index 8b26fade36..9f8764f647 100644 --- a/packs/src/items/weapon/flame-tongue-rapier.json +++ b/packs/src/items/weapon/flame-tongue-rapier.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233519, "modifiedTime": 1671220958666, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!CoUFHk5keIihsbYL" } diff --git a/packs/src/items/weapon/flame-tongue-scimitar.json b/packs/src/items/weapon/flame-tongue-scimitar.json index 93337c2079..81ee362938 100644 --- a/packs/src/items/weapon/flame-tongue-scimitar.json +++ b/packs/src/items/weapon/flame-tongue-scimitar.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233883, "modifiedTime": 1671220964491, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!qVHCzgVvOZAtuk4N" } diff --git a/packs/src/items/weapon/flame-tongue-shortsword.json b/packs/src/items/weapon/flame-tongue-shortsword.json index 709daab2bf..6a70b1f155 100644 --- a/packs/src/items/weapon/flame-tongue-shortsword.json +++ b/packs/src/items/weapon/flame-tongue-shortsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233713, "modifiedTime": 1671220961699, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Z9FBwEoMi6daDGRj" } diff --git a/packs/src/items/weapon/frost-brand-greatsword.json b/packs/src/items/weapon/frost-brand-greatsword.json index bd0ee6985d..22f40f92c4 100644 --- a/packs/src/items/weapon/frost-brand-greatsword.json +++ b/packs/src/items/weapon/frost-brand-greatsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -107,7 +112,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -123,5 +128,6 @@ "createdTime": 1661787233971, "modifiedTime": 1671220965768, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ykB6UKv5BuQnSRSL" } diff --git a/packs/src/items/weapon/frost-brand-longsword.json b/packs/src/items/weapon/frost-brand-longsword.json index cf6889e0c7..cf48fdeda8 100644 --- a/packs/src/items/weapon/frost-brand-longsword.json +++ b/packs/src/items/weapon/frost-brand-longsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -107,7 +112,7 @@ "ver": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -123,5 +128,6 @@ "createdTime": 1661787233634, "modifiedTime": 1671220960317, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!NmZMx2u6bHpRyGUa" } diff --git a/packs/src/items/weapon/frost-brand-rapier.json b/packs/src/items/weapon/frost-brand-rapier.json index 1a689dd009..eb6b1f78a0 100644 --- a/packs/src/items/weapon/frost-brand-rapier.json +++ b/packs/src/items/weapon/frost-brand-rapier.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -107,7 +112,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -123,5 +128,6 @@ "createdTime": 1661787233788, "modifiedTime": 1671220962699, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!efluRemOguW2YeZY" } diff --git a/packs/src/items/weapon/frost-brand-scimitar.json b/packs/src/items/weapon/frost-brand-scimitar.json index dc50a71abe..48b91b02e4 100644 --- a/packs/src/items/weapon/frost-brand-scimitar.json +++ b/packs/src/items/weapon/frost-brand-scimitar.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -107,7 +112,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -123,5 +128,6 @@ "createdTime": 1661787233432, "modifiedTime": 1671220956973, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!07R6JFioylOCpVoL" } diff --git a/packs/src/items/weapon/frost-brand-shortsword.json b/packs/src/items/weapon/frost-brand-shortsword.json index 5a6469ca50..5b7466c92c 100644 --- a/packs/src/items/weapon/frost-brand-shortsword.json +++ b/packs/src/items/weapon/frost-brand-shortsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -107,7 +112,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -123,5 +128,6 @@ "createdTime": 1661787233524, "modifiedTime": 1671220958758, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!DT02xK1DzxLNlVaI" } diff --git a/packs/src/items/weapon/giant-slayer-battleaxe.json b/packs/src/items/weapon/giant-slayer-battleaxe.json index 81ca62fc63..c9760eca37 100644 --- a/packs/src/items/weapon/giant-slayer-battleaxe.json +++ b/packs/src/items/weapon/giant-slayer-battleaxe.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "ver": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233706, "modifiedTime": 1671220961644, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!YM6bZNmpync83VFa" } diff --git a/packs/src/items/weapon/giant-slayer-greataxe.json b/packs/src/items/weapon/giant-slayer-greataxe.json index a36814ff15..b5b10930e1 100644 --- a/packs/src/items/weapon/giant-slayer-greataxe.json +++ b/packs/src/items/weapon/giant-slayer-greataxe.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233833, "modifiedTime": 1671220963206, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!jmSC8I5awCoxNVv7" } diff --git a/packs/src/items/weapon/giant-slayer-greatsword.json b/packs/src/items/weapon/giant-slayer-greatsword.json index e32fa8125b..e6381d9e19 100644 --- a/packs/src/items/weapon/giant-slayer-greatsword.json +++ b/packs/src/items/weapon/giant-slayer-greatsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233859, "modifiedTime": 1671220964141, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nBFr5xTWeChM7xrb" } diff --git a/packs/src/items/weapon/giant-slayer-handaxe.json b/packs/src/items/weapon/giant-slayer-handaxe.json index bfc8409050..06c1196061 100644 --- a/packs/src/items/weapon/giant-slayer-handaxe.json +++ b/packs/src/items/weapon/giant-slayer-handaxe.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233540, "modifiedTime": 1671220958933, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!F3rQcaZvElNEiudk" } diff --git a/packs/src/items/weapon/giant-slayer-longsword.json b/packs/src/items/weapon/giant-slayer-longsword.json index c3bd97e6b2..55e57060f3 100644 --- a/packs/src/items/weapon/giant-slayer-longsword.json +++ b/packs/src/items/weapon/giant-slayer-longsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233968, "modifiedTime": 1671220965716, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!xw2kL7Puwg4wfjW3" } diff --git a/packs/src/items/weapon/giant-slayer-rapier.json b/packs/src/items/weapon/giant-slayer-rapier.json index d69fa1bb76..61cb3322aa 100644 --- a/packs/src/items/weapon/giant-slayer-rapier.json +++ b/packs/src/items/weapon/giant-slayer-rapier.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233569, "modifiedTime": 1671220959262, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!I5PWgE4IF40Iv9h4" } diff --git a/packs/src/items/weapon/giant-slayer-scimitar.json b/packs/src/items/weapon/giant-slayer-scimitar.json index 0e4b4b0fa1..1944136d1b 100644 --- a/packs/src/items/weapon/giant-slayer-scimitar.json +++ b/packs/src/items/weapon/giant-slayer-scimitar.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233714, "modifiedTime": 1671220961711, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ZLpj1bpnWlAFUEHE" } diff --git a/packs/src/items/weapon/giant-slayer-shortsword.json b/packs/src/items/weapon/giant-slayer-shortsword.json index 92dd64f483..e270432a4c 100644 --- a/packs/src/items/weapon/giant-slayer-shortsword.json +++ b/packs/src/items/weapon/giant-slayer-shortsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233912, "modifiedTime": 1671220964898, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!tTqixDDmzAfs995G" } diff --git a/packs/src/items/weapon/glaive-1.json b/packs/src/items/weapon/glaive-1.json index b8e4eaa73a..d9e652e7d1 100644 --- a/packs/src/items/weapon/glaive-1.json +++ b/packs/src/items/weapon/glaive-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233432, "modifiedTime": 1671220956979, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!09i8r1UmzDSKiZ9g" } diff --git a/packs/src/items/weapon/glaive-2.json b/packs/src/items/weapon/glaive-2.json index 7ce1d18cfd..b9cbf1ad29 100644 --- a/packs/src/items/weapon/glaive-2.json +++ b/packs/src/items/weapon/glaive-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233628, "modifiedTime": 1671220960233, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Mt2WB1W9nDWO4d16" } diff --git a/packs/src/items/weapon/glaive-3.json b/packs/src/items/weapon/glaive-3.json index 24c327aa2b..2757fc9141 100644 --- a/packs/src/items/weapon/glaive-3.json +++ b/packs/src/items/weapon/glaive-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233893, "modifiedTime": 1671220964618, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!rc9nkN6YOD7ogtEi" } diff --git a/packs/src/items/weapon/glaive.json b/packs/src/items/weapon/glaive.json index a00ae74ecd..58854c24bf 100644 --- a/packs/src/items/weapon/glaive.json +++ b/packs/src/items/weapon/glaive.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -91,7 +96,7 @@ "two": true, "rch": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -107,5 +112,6 @@ "createdTime": 1661787233889, "modifiedTime": 1671220964587, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!rOG1OM2ihgPjOvFW" } diff --git a/packs/src/items/weapon/greataxe-1.json b/packs/src/items/weapon/greataxe-1.json index 70664249a1..69d11c30d2 100644 --- a/packs/src/items/weapon/greataxe-1.json +++ b/packs/src/items/weapon/greataxe-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233886, "modifiedTime": 1671220964523, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!qhdGVfT5j6u46mtk" } diff --git a/packs/src/items/weapon/greataxe-2.json b/packs/src/items/weapon/greataxe-2.json index d601039bc2..77e8e54789 100644 --- a/packs/src/items/weapon/greataxe-2.json +++ b/packs/src/items/weapon/greataxe-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233815, "modifiedTime": 1671220963010, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hdUzXzVPonOQzW81" } diff --git a/packs/src/items/weapon/greataxe-3.json b/packs/src/items/weapon/greataxe-3.json index ab7d98e27c..db775ac20c 100644 --- a/packs/src/items/weapon/greataxe-3.json +++ b/packs/src/items/weapon/greataxe-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233642, "modifiedTime": 1671220960405, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!PAa2EG5kzmqxcp46" } diff --git a/packs/src/items/weapon/greataxe.json b/packs/src/items/weapon/greataxe.json index 7ec882dfd5..4440f33653 100644 --- a/packs/src/items/weapon/greataxe.json +++ b/packs/src/items/weapon/greataxe.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -102,7 +107,7 @@ "thr": false, "ver": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -118,5 +123,6 @@ "createdTime": 1661787233440, "modifiedTime": 1671220957049, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!1Lxk6kmoRhG8qQ0u" } diff --git a/packs/src/items/weapon/greatclub-1.json b/packs/src/items/weapon/greatclub-1.json index 5f5795c12d..38dc51eaad 100644 --- a/packs/src/items/weapon/greatclub-1.json +++ b/packs/src/items/weapon/greatclub-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233750, "modifiedTime": 1671220962581, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dwGxrGqkn2ppNaqs" } diff --git a/packs/src/items/weapon/greatclub-2.json b/packs/src/items/weapon/greatclub-2.json index b27d2fcf7a..b6f5367d76 100644 --- a/packs/src/items/weapon/greatclub-2.json +++ b/packs/src/items/weapon/greatclub-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233640, "modifiedTime": 1671220960384, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Or3kVfJ0Fbr33ARS" } diff --git a/packs/src/items/weapon/greatclub-3.json b/packs/src/items/weapon/greatclub-3.json index f1bf852d34..3aa05e4055 100644 --- a/packs/src/items/weapon/greatclub-3.json +++ b/packs/src/items/weapon/greatclub-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233855, "modifiedTime": 1671220964031, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!mkyltDYnuzNU3kmF" } diff --git a/packs/src/items/weapon/greatclub.json b/packs/src/items/weapon/greatclub.json index 7b4df54b9e..8ad073333d 100644 --- a/packs/src/items/weapon/greatclub.json +++ b/packs/src/items/weapon/greatclub.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -101,7 +106,7 @@ "thr": false, "ver": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -117,5 +122,6 @@ "createdTime": 1661787233650, "modifiedTime": 1671220960467, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!QRCsxkCwWNwswL9o" } diff --git a/packs/src/items/weapon/greatsword-1.json b/packs/src/items/weapon/greatsword-1.json index 748065870c..4d8f8df16a 100644 --- a/packs/src/items/weapon/greatsword-1.json +++ b/packs/src/items/weapon/greatsword-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233835, "modifiedTime": 1671220963237, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!kBVK2IiZYRkEYtcM" } diff --git a/packs/src/items/weapon/greatsword-2.json b/packs/src/items/weapon/greatsword-2.json index aba8f8b227..f222eaa7fc 100644 --- a/packs/src/items/weapon/greatsword-2.json +++ b/packs/src/items/weapon/greatsword-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233488, "modifiedTime": 1671220957632, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8LZBOY5USLZ4ngDq" } diff --git a/packs/src/items/weapon/greatsword-3.json b/packs/src/items/weapon/greatsword-3.json index 36cd7304ae..c71d92a4d5 100644 --- a/packs/src/items/weapon/greatsword-3.json +++ b/packs/src/items/weapon/greatsword-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233656, "modifiedTime": 1671220960524, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!RfEZvwcLwe6Ih0LQ" } diff --git a/packs/src/items/weapon/greatsword-of-life-stealing.json b/packs/src/items/weapon/greatsword-of-life-stealing.json index 9a3a419e21..1992ad9f71 100644 --- a/packs/src/items/weapon/greatsword-of-life-stealing.json +++ b/packs/src/items/weapon/greatsword-of-life-stealing.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233898, "modifiedTime": 1671220964699, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!sdHSbitJxgTX6aDG" } diff --git a/packs/src/items/weapon/greatsword-of-sharpness.json b/packs/src/items/weapon/greatsword-of-sharpness.json index 5463c9ca60..b7bec7f6e5 100644 --- a/packs/src/items/weapon/greatsword-of-sharpness.json +++ b/packs/src/items/weapon/greatsword-of-sharpness.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233648, "modifiedTime": 1671220960450, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!QB4CFMTLR6JlD7Kq" } diff --git a/packs/src/items/weapon/greatsword-of-wounding.json b/packs/src/items/weapon/greatsword-of-wounding.json index 41f2dfa50d..1c44a0b5e0 100644 --- a/packs/src/items/weapon/greatsword-of-wounding.json +++ b/packs/src/items/weapon/greatsword-of-wounding.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233580, "modifiedTime": 1671220959380, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!JpwuGtFkfrGibQpP" } diff --git a/packs/src/items/weapon/greatsword.json b/packs/src/items/weapon/greatsword.json index 9b791a9727..177c63b93a 100644 --- a/packs/src/items/weapon/greatsword.json +++ b/packs/src/items/weapon/greatsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -90,7 +95,7 @@ "hvy": true, "two": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -106,5 +111,6 @@ "createdTime": 1661787233965, "modifiedTime": 1671220965689, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!xMkP8BmFzElcsMaR" } diff --git a/packs/src/items/weapon/halberd-1.json b/packs/src/items/weapon/halberd-1.json index fed36d0624..1e75ff1b6f 100644 --- a/packs/src/items/weapon/halberd-1.json +++ b/packs/src/items/weapon/halberd-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233864, "modifiedTime": 1671220964217, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nl7cc7Z1HpSHbUdQ" } diff --git a/packs/src/items/weapon/halberd-2.json b/packs/src/items/weapon/halberd-2.json index 945e80b399..6fa22cb4a7 100644 --- a/packs/src/items/weapon/halberd-2.json +++ b/packs/src/items/weapon/halberd-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233479, "modifiedTime": 1671220957516, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!6ndqUhOySYVVQ5on" } diff --git a/packs/src/items/weapon/halberd-3.json b/packs/src/items/weapon/halberd-3.json index 243b63d1aa..34213421e9 100644 --- a/packs/src/items/weapon/halberd-3.json +++ b/packs/src/items/weapon/halberd-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233536, "modifiedTime": 1671220958892, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!EU78dSbnr91QWZ7g" } diff --git a/packs/src/items/weapon/halberd.json b/packs/src/items/weapon/halberd.json index 3c22611398..1270ba61de 100644 --- a/packs/src/items/weapon/halberd.json +++ b/packs/src/items/weapon/halberd.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -91,7 +96,7 @@ "two": true, "rch": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -107,5 +112,6 @@ "createdTime": 1661787233522, "modifiedTime": 1671220958720, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!DMejWAc8r8YvDPP1" } diff --git a/packs/src/items/weapon/hammer-of-thunderbolts.json b/packs/src/items/weapon/hammer-of-thunderbolts.json index 1f3924d681..06c31bed0e 100644 --- a/packs/src/items/weapon/hammer-of-thunderbolts.json +++ b/packs/src/items/weapon/hammer-of-thunderbolts.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233956, "modifiedTime": 1671220965574, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!wGDDt17DpBcXPuUD" } diff --git a/packs/src/items/weapon/hand-crossbow-1.json b/packs/src/items/weapon/hand-crossbow-1.json index 2b12748c75..80734ba9c0 100644 --- a/packs/src/items/weapon/hand-crossbow-1.json +++ b/packs/src/items/weapon/hand-crossbow-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "lod": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233628, "modifiedTime": 1671220960228, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MnX9soPEMNsCtpv7" } diff --git a/packs/src/items/weapon/hand-crossbow-2.json b/packs/src/items/weapon/hand-crossbow-2.json index 08d472e66b..c9f950ea6c 100644 --- a/packs/src/items/weapon/hand-crossbow-2.json +++ b/packs/src/items/weapon/hand-crossbow-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "lod": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233453, "modifiedTime": 1671220957206, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3Q6rw9kAMf6F1SW5" } diff --git a/packs/src/items/weapon/hand-crossbow-3.json b/packs/src/items/weapon/hand-crossbow-3.json index f039a6de9f..0ddfbe5efa 100644 --- a/packs/src/items/weapon/hand-crossbow-3.json +++ b/packs/src/items/weapon/hand-crossbow-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "lod": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233867, "modifiedTime": 1671220964267, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!oG4rvCuMstgl4Nez" } diff --git a/packs/src/items/weapon/hand-crossbow.json b/packs/src/items/weapon/hand-crossbow.json index 636850ac09..9ad094971c 100644 --- a/packs/src/items/weapon/hand-crossbow.json +++ b/packs/src/items/weapon/hand-crossbow.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -102,7 +107,7 @@ "ver": false, "lod": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -118,5 +123,6 @@ "createdTime": 1661787233885, "modifiedTime": 1671220964514, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!qaSro7kFhxD6INbZ" } diff --git a/packs/src/items/weapon/handaxe-1.json b/packs/src/items/weapon/handaxe-1.json index 980721315f..8f0bef4944 100644 --- a/packs/src/items/weapon/handaxe-1.json +++ b/packs/src/items/weapon/handaxe-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233652, "modifiedTime": 1671220960494, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Qfi5Rsuun3reqYmf" } diff --git a/packs/src/items/weapon/handaxe-2.json b/packs/src/items/weapon/handaxe-2.json index 90c1719fb1..5f9126b455 100644 --- a/packs/src/items/weapon/handaxe-2.json +++ b/packs/src/items/weapon/handaxe-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233619, "modifiedTime": 1671220960080, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LZcpcR21nte4Yoe2" } diff --git a/packs/src/items/weapon/handaxe-3.json b/packs/src/items/weapon/handaxe-3.json index 49e4a92c7f..cda68a01b8 100644 --- a/packs/src/items/weapon/handaxe-3.json +++ b/packs/src/items/weapon/handaxe-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233739, "modifiedTime": 1671220961994, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!cmnBssaWWzWWm70C" } diff --git a/packs/src/items/weapon/handaxe.json b/packs/src/items/weapon/handaxe.json index a2ebac4d25..282b758e4a 100644 --- a/packs/src/items/weapon/handaxe.json +++ b/packs/src/items/weapon/handaxe.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -102,7 +107,7 @@ "two": false, "ver": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -118,5 +123,6 @@ "createdTime": 1661787233784, "modifiedTime": 1671220962667, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eO7Fbv5WBk5zvGOc" } diff --git a/packs/src/items/weapon/heavy-crossbow-1.json b/packs/src/items/weapon/heavy-crossbow-1.json index eded402c19..975107320d 100644 --- a/packs/src/items/weapon/heavy-crossbow-1.json +++ b/packs/src/items/weapon/heavy-crossbow-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 18, "price": { @@ -103,7 +108,7 @@ "lod": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233825, "modifiedTime": 1671220963108, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ijDzcDXfJAdj2uED" } diff --git a/packs/src/items/weapon/heavy-crossbow-2.json b/packs/src/items/weapon/heavy-crossbow-2.json index db5bfe86f1..e974f73e6c 100644 --- a/packs/src/items/weapon/heavy-crossbow-2.json +++ b/packs/src/items/weapon/heavy-crossbow-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 18, "price": { @@ -103,7 +108,7 @@ "lod": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233495, "modifiedTime": 1671220957711, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8wXB18E0oPAYFkqc" } diff --git a/packs/src/items/weapon/heavy-crossbow-3.json b/packs/src/items/weapon/heavy-crossbow-3.json index 61959dc4b4..2af139ba66 100644 --- a/packs/src/items/weapon/heavy-crossbow-3.json +++ b/packs/src/items/weapon/heavy-crossbow-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 18, "price": { @@ -103,7 +108,7 @@ "lod": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233664, "modifiedTime": 1671220960588, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Sj4zEvuGcSV6anKm" } diff --git a/packs/src/items/weapon/heavy-crossbow.json b/packs/src/items/weapon/heavy-crossbow.json index d1951a6b57..0a0f330567 100644 --- a/packs/src/items/weapon/heavy-crossbow.json +++ b/packs/src/items/weapon/heavy-crossbow.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 18, "price": { @@ -102,7 +107,7 @@ "ver": false, "lod": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -118,5 +123,6 @@ "createdTime": 1661787233658, "modifiedTime": 1671220960532, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!RmP0mYRn2J7K26rX" } diff --git a/packs/src/items/weapon/holy-avenger-greatsword.json b/packs/src/items/weapon/holy-avenger-greatsword.json index 10f89a85ef..f8a8e5ae8f 100644 --- a/packs/src/items/weapon/holy-avenger-greatsword.json +++ b/packs/src/items/weapon/holy-avenger-greatsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233543, "modifiedTime": 1671220958955, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!FCxG64QUxsnF4Lis" } diff --git a/packs/src/items/weapon/holy-avenger-longsword.json b/packs/src/items/weapon/holy-avenger-longsword.json index e769fba0b3..53709c6ec6 100644 --- a/packs/src/items/weapon/holy-avenger-longsword.json +++ b/packs/src/items/weapon/holy-avenger-longsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233746, "modifiedTime": 1671220962067, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dZ9zWfhsIlabadKL" } diff --git a/packs/src/items/weapon/holy-avenger-rapier.json b/packs/src/items/weapon/holy-avenger-rapier.json index ec91088059..d44cd60be0 100644 --- a/packs/src/items/weapon/holy-avenger-rapier.json +++ b/packs/src/items/weapon/holy-avenger-rapier.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233838, "modifiedTime": 1671220963269, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!kTxi62RTrrdrIBr9" } diff --git a/packs/src/items/weapon/holy-avenger-scimitar.json b/packs/src/items/weapon/holy-avenger-scimitar.json index bb60de2312..9ef090e567 100644 --- a/packs/src/items/weapon/holy-avenger-scimitar.json +++ b/packs/src/items/weapon/holy-avenger-scimitar.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233677, "modifiedTime": 1671220960715, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ULL5nkyN3WzazI4l" } diff --git a/packs/src/items/weapon/holy-avenger-shortsword.json b/packs/src/items/weapon/holy-avenger-shortsword.json index 85556512a4..74a9284144 100644 --- a/packs/src/items/weapon/holy-avenger-shortsword.json +++ b/packs/src/items/weapon/holy-avenger-shortsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233730, "modifiedTime": 1671220961885, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!bHbbIhbTzu4lYMRz" } diff --git a/packs/src/items/weapon/javelin-1.json b/packs/src/items/weapon/javelin-1.json index 6def557c7d..df2dc142c1 100644 --- a/packs/src/items/weapon/javelin-1.json +++ b/packs/src/items/weapon/javelin-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233823, "modifiedTime": 1671220963092, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!idtlcnIWgwVdvp31" } diff --git a/packs/src/items/weapon/javelin-2.json b/packs/src/items/weapon/javelin-2.json index b9c4e0595d..c4230f7309 100644 --- a/packs/src/items/weapon/javelin-2.json +++ b/packs/src/items/weapon/javelin-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233805, "modifiedTime": 1671220962932, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gV671PZGnYoVZefN" } diff --git a/packs/src/items/weapon/javelin-3.json b/packs/src/items/weapon/javelin-3.json index 9f2378f43f..32acb8f291 100644 --- a/packs/src/items/weapon/javelin-3.json +++ b/packs/src/items/weapon/javelin-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233550, "modifiedTime": 1671220959044, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!FhtjbeBeP4q5vTyc" } diff --git a/packs/src/items/weapon/javelin-of-lightning.json b/packs/src/items/weapon/javelin-of-lightning.json index 8b5bbe86bc..304e302e8c 100644 --- a/packs/src/items/weapon/javelin-of-lightning.json +++ b/packs/src/items/weapon/javelin-of-lightning.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -107,7 +112,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -123,5 +128,6 @@ "createdTime": 1661787233617, "modifiedTime": 1671220960056, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LEC1wkaAUnWzDPDD" } diff --git a/packs/src/items/weapon/javelin.json b/packs/src/items/weapon/javelin.json index 7878acde11..9e19afa4fd 100644 --- a/packs/src/items/weapon/javelin.json +++ b/packs/src/items/weapon/javelin.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -102,7 +107,7 @@ "ver": false, "lod": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -118,5 +123,6 @@ "createdTime": 1661787233527, "modifiedTime": 1671220958767, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!DWLMnODrnHn8IbAG" } diff --git a/packs/src/items/weapon/lance-1.json b/packs/src/items/weapon/lance-1.json index 7e8e4c8a75..54d49de170 100644 --- a/packs/src/items/weapon/lance-1.json +++ b/packs/src/items/weapon/lance-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233843, "modifiedTime": 1671220963304, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!l88FXiodYofrJT8a" } diff --git a/packs/src/items/weapon/lance-2.json b/packs/src/items/weapon/lance-2.json index 86fde904e4..5ff900539b 100644 --- a/packs/src/items/weapon/lance-2.json +++ b/packs/src/items/weapon/lance-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233518, "modifiedTime": 1671220958653, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!CVMGOJWTO6TCybrH" } diff --git a/packs/src/items/weapon/lance-3.json b/packs/src/items/weapon/lance-3.json index 50b51eadd1..f19856fd94 100644 --- a/packs/src/items/weapon/lance-3.json +++ b/packs/src/items/weapon/lance-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233888, "modifiedTime": 1671220964568, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!r97KnMO7Zxgfdh3P" } diff --git a/packs/src/items/weapon/lance.json b/packs/src/items/weapon/lance.json index 765e858e1d..e9cae0318e 100644 --- a/packs/src/items/weapon/lance.json +++ b/packs/src/items/weapon/lance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -102,7 +107,7 @@ "two": false, "ver": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -118,5 +123,6 @@ "createdTime": 1661787233659, "modifiedTime": 1671220960539, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!RnuxdHUAIgxccVwj" } diff --git a/packs/src/items/weapon/light-crossbow-1.json b/packs/src/items/weapon/light-crossbow-1.json index 547f7db3e7..08a7ffe26e 100644 --- a/packs/src/items/weapon/light-crossbow-1.json +++ b/packs/src/items/weapon/light-crossbow-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -103,7 +108,7 @@ "lod": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233835, "modifiedTime": 1671220963247, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!kHjpHTKex95ULxUX" } diff --git a/packs/src/items/weapon/light-crossbow-2.json b/packs/src/items/weapon/light-crossbow-2.json index 01c051fac0..b5d6311397 100644 --- a/packs/src/items/weapon/light-crossbow-2.json +++ b/packs/src/items/weapon/light-crossbow-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -103,7 +108,7 @@ "lod": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233961, "modifiedTime": 1671220965650, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!x12sDhylcf8843fT" } diff --git a/packs/src/items/weapon/light-crossbow-3.json b/packs/src/items/weapon/light-crossbow-3.json index e84d06b081..3b59589754 100644 --- a/packs/src/items/weapon/light-crossbow-3.json +++ b/packs/src/items/weapon/light-crossbow-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -103,7 +108,7 @@ "lod": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233725, "modifiedTime": 1671220961849, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!amRx3jOYlPeXEiAN" } diff --git a/packs/src/items/weapon/light-crossbow.json b/packs/src/items/weapon/light-crossbow.json index 2f26f0f910..c0a6f0a5ae 100644 --- a/packs/src/items/weapon/light-crossbow.json +++ b/packs/src/items/weapon/light-crossbow.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -102,7 +107,7 @@ "ver": false, "lod": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -118,5 +123,6 @@ "createdTime": 1661787233747, "modifiedTime": 1671220962072, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ddWvQRLmnnIS0eLF" } diff --git a/packs/src/items/weapon/light-hammer-1.json b/packs/src/items/weapon/light-hammer-1.json index 63b639cba8..d6daf38687 100644 --- a/packs/src/items/weapon/light-hammer-1.json +++ b/packs/src/items/weapon/light-hammer-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233877, "modifiedTime": 1671220964425, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!q24QnImAicnT9Byd" } diff --git a/packs/src/items/weapon/light-hammer-2.json b/packs/src/items/weapon/light-hammer-2.json index e5630ec911..b4d3722670 100644 --- a/packs/src/items/weapon/light-hammer-2.json +++ b/packs/src/items/weapon/light-hammer-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233698, "modifiedTime": 1671220961551, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XIpJkxbySJxm6hoU" } diff --git a/packs/src/items/weapon/light-hammer-3.json b/packs/src/items/weapon/light-hammer-3.json index 73847bc8b8..14fbb0fe2a 100644 --- a/packs/src/items/weapon/light-hammer-3.json +++ b/packs/src/items/weapon/light-hammer-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233704, "modifiedTime": 1671220961606, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Y08Al2dMN8he1hFK" } diff --git a/packs/src/items/weapon/light-hammer.json b/packs/src/items/weapon/light-hammer.json index 262f7d28c8..17e9b19077 100644 --- a/packs/src/items/weapon/light-hammer.json +++ b/packs/src/items/weapon/light-hammer.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -102,7 +107,7 @@ "two": false, "ver": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -118,5 +123,6 @@ "createdTime": 1661787233700, "modifiedTime": 1671220961570, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XVK6TOL4sGItssAE" } diff --git a/packs/src/items/weapon/longbow-1.json b/packs/src/items/weapon/longbow-1.json index 52772e63b2..e735c29d34 100644 --- a/packs/src/items/weapon/longbow-1.json +++ b/packs/src/items/weapon/longbow-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233505, "modifiedTime": 1671220958459, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!A2i08i8gAFscm6hZ" } diff --git a/packs/src/items/weapon/longbow-2.json b/packs/src/items/weapon/longbow-2.json index 8f35a5e714..446c2436f1 100644 --- a/packs/src/items/weapon/longbow-2.json +++ b/packs/src/items/weapon/longbow-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233716, "modifiedTime": 1671220961737, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ZcvU9rRb573NOywv" } diff --git a/packs/src/items/weapon/longbow-3.json b/packs/src/items/weapon/longbow-3.json index 6e3112bbb0..9bb044e5d2 100644 --- a/packs/src/items/weapon/longbow-3.json +++ b/packs/src/items/weapon/longbow-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233493, "modifiedTime": 1671220957688, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8W6ULfSqzuHh6Peg" } diff --git a/packs/src/items/weapon/longbow.json b/packs/src/items/weapon/longbow.json index 633f80a692..7e8ebe4dc2 100644 --- a/packs/src/items/weapon/longbow.json +++ b/packs/src/items/weapon/longbow.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -101,7 +106,7 @@ "thr": false, "ver": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -117,5 +122,6 @@ "createdTime": 1661787233458, "modifiedTime": 1671220957251, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3cymOVja8jXbzrdT" } diff --git a/packs/src/items/weapon/longsword-1.json b/packs/src/items/weapon/longsword-1.json index d0ce5abb06..9ddc9861b6 100644 --- a/packs/src/items/weapon/longsword-1.json +++ b/packs/src/items/weapon/longsword-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "two": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233572, "modifiedTime": 1671220959278, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!IPkf0XNowClwXnjQ" } diff --git a/packs/src/items/weapon/longsword-2.json b/packs/src/items/weapon/longsword-2.json index 74686876e3..86748edf38 100644 --- a/packs/src/items/weapon/longsword-2.json +++ b/packs/src/items/weapon/longsword-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "two": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233732, "modifiedTime": 1671220961913, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!bcv7J9culilK68zp" } diff --git a/packs/src/items/weapon/longsword-3.json b/packs/src/items/weapon/longsword-3.json index 6014beb461..b56da4bf3f 100644 --- a/packs/src/items/weapon/longsword-3.json +++ b/packs/src/items/weapon/longsword-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "two": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233559, "modifiedTime": 1671220959135, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!H6SIiRIig7OMM2Z0" } diff --git a/packs/src/items/weapon/longsword-of-life-stealing.json b/packs/src/items/weapon/longsword-of-life-stealing.json index f6adfdfa54..882f213ea2 100644 --- a/packs/src/items/weapon/longsword-of-life-stealing.json +++ b/packs/src/items/weapon/longsword-of-life-stealing.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -105,7 +110,7 @@ "mgc": true, "sil": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -121,5 +126,6 @@ "createdTime": 1661787233960, "modifiedTime": 1671220965637, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!wtctR6tCcYbQPiS0" } diff --git a/packs/src/items/weapon/longsword-of-sharpness.json b/packs/src/items/weapon/longsword-of-sharpness.json index cbd66f6891..4fc5c4065b 100644 --- a/packs/src/items/weapon/longsword-of-sharpness.json +++ b/packs/src/items/weapon/longsword-of-sharpness.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233489, "modifiedTime": 1671220957649, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8MNDhKb1Q87QszOJ" } diff --git a/packs/src/items/weapon/longsword-of-wounding.json b/packs/src/items/weapon/longsword-of-wounding.json index 371545dde0..4b69a8a631 100644 --- a/packs/src/items/weapon/longsword-of-wounding.json +++ b/packs/src/items/weapon/longsword-of-wounding.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233875, "modifiedTime": 1671220964407, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!pG6dddIcb9NmPrdt" } diff --git a/packs/src/items/weapon/longsword.json b/packs/src/items/weapon/longsword.json index 16e00092d7..c35e9a52fb 100644 --- a/packs/src/items/weapon/longsword.json +++ b/packs/src/items/weapon/longsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -89,7 +94,7 @@ "properties": { "ver": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233436, "modifiedTime": 1671220957009, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!10ZP2Bu3vnCuYMIB" } diff --git a/packs/src/items/weapon/luck-blade-greatsword.json b/packs/src/items/weapon/luck-blade-greatsword.json index 97fb8994a8..d74c8e7016 100644 --- a/packs/src/items/weapon/luck-blade-greatsword.json +++ b/packs/src/items/weapon/luck-blade-greatsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233798, "modifiedTime": 1671220962858, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!fWR9EFEjR0JtFdCC" } diff --git a/packs/src/items/weapon/luck-blade-longsword.json b/packs/src/items/weapon/luck-blade-longsword.json index fd83698706..6210307200 100644 --- a/packs/src/items/weapon/luck-blade-longsword.json +++ b/packs/src/items/weapon/luck-blade-longsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233697, "modifiedTime": 1671220961507, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!X6PHssSGnwiJRgcx" } diff --git a/packs/src/items/weapon/luck-blade-rapier.json b/packs/src/items/weapon/luck-blade-rapier.json index bca0c2995e..108a7537ea 100644 --- a/packs/src/items/weapon/luck-blade-rapier.json +++ b/packs/src/items/weapon/luck-blade-rapier.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233879, "modifiedTime": 1671220964464, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!qGH7YqWhi0tHisMi" } diff --git a/packs/src/items/weapon/luck-blade-scimitar.json b/packs/src/items/weapon/luck-blade-scimitar.json index 76e2cac517..e44584906a 100644 --- a/packs/src/items/weapon/luck-blade-scimitar.json +++ b/packs/src/items/weapon/luck-blade-scimitar.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233532, "modifiedTime": 1671220958851, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!E7c4zpWdYgkKDHGo" } diff --git a/packs/src/items/weapon/luck-blade-shortsword.json b/packs/src/items/weapon/luck-blade-shortsword.json index 8bcbedff47..47bf2f14c5 100644 --- a/packs/src/items/weapon/luck-blade-shortsword.json +++ b/packs/src/items/weapon/luck-blade-shortsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233859, "modifiedTime": 1671220964146, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nL0Y0X8SjF58OmBM" } diff --git a/packs/src/items/weapon/mace-1.json b/packs/src/items/weapon/mace-1.json index 7c834620d7..de97ee90c8 100644 --- a/packs/src/items/weapon/mace-1.json +++ b/packs/src/items/weapon/mace-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233831, "modifiedTime": 1671220963184, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!jf0XMx2vfEZzZuD7" } diff --git a/packs/src/items/weapon/mace-2.json b/packs/src/items/weapon/mace-2.json index 70289c85db..2faf976ad8 100644 --- a/packs/src/items/weapon/mace-2.json +++ b/packs/src/items/weapon/mace-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233851, "modifiedTime": 1671220963951, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!m1hJnK7CHsaJB26v" } diff --git a/packs/src/items/weapon/mace-3.json b/packs/src/items/weapon/mace-3.json index 3a89f4421e..0899d993d0 100644 --- a/packs/src/items/weapon/mace-3.json +++ b/packs/src/items/weapon/mace-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233445, "modifiedTime": 1671220957096, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!2CQnAvn06bncXPBt" } diff --git a/packs/src/items/weapon/mace-of-disruption.json b/packs/src/items/weapon/mace-of-disruption.json index fc0073cf4d..b6627302d9 100644 --- a/packs/src/items/weapon/mace-of-disruption.json +++ b/packs/src/items/weapon/mace-of-disruption.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233852, "modifiedTime": 1671220963959, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!m7RubLd1lUcMjYgY" } diff --git a/packs/src/items/weapon/mace-of-smiting.json b/packs/src/items/weapon/mace-of-smiting.json index 42dadff5ed..824a11a4c7 100644 --- a/packs/src/items/weapon/mace-of-smiting.json +++ b/packs/src/items/weapon/mace-of-smiting.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -105,7 +110,7 @@ "ada": false, "sil": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -121,5 +126,6 @@ "createdTime": 1661787233955, "modifiedTime": 1671220965564, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!w56FIjFafs2rN6iK" } diff --git a/packs/src/items/weapon/mace-of-terror.json b/packs/src/items/weapon/mace-of-terror.json index 30f88a50f7..8dee37dc35 100644 --- a/packs/src/items/weapon/mace-of-terror.json +++ b/packs/src/items/weapon/mace-of-terror.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233728, "modifiedTime": 1671220961872, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!b46t42bMruQf9v3O" } diff --git a/packs/src/items/weapon/mace.json b/packs/src/items/weapon/mace.json index fa27ae3e29..302fe1ef25 100644 --- a/packs/src/items/weapon/mace.json +++ b/packs/src/items/weapon/mace.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -101,7 +106,7 @@ "two": false, "ver": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -117,5 +122,6 @@ "createdTime": 1661787233508, "modifiedTime": 1671220958515, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Ajyq6nGwF7FtLhDQ" } diff --git a/packs/src/items/weapon/maul-1.json b/packs/src/items/weapon/maul-1.json index c24a01f650..8130f2291f 100644 --- a/packs/src/items/weapon/maul-1.json +++ b/packs/src/items/weapon/maul-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233538, "modifiedTime": 1671220958919, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!EveBprZPBjfZqXLt" } diff --git a/packs/src/items/weapon/maul-2.json b/packs/src/items/weapon/maul-2.json index 0ad2a3c2a9..9252d55e0f 100644 --- a/packs/src/items/weapon/maul-2.json +++ b/packs/src/items/weapon/maul-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233442, "modifiedTime": 1671220957069, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!1kihEfn9QppB34ee" } diff --git a/packs/src/items/weapon/maul-3.json b/packs/src/items/weapon/maul-3.json index a4ffaccb8e..54342a3f0e 100644 --- a/packs/src/items/weapon/maul-3.json +++ b/packs/src/items/weapon/maul-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233641, "modifiedTime": 1671220960395, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!P8f9o36qxagW2uRW" } diff --git a/packs/src/items/weapon/maul.json b/packs/src/items/weapon/maul.json index 796d007242..cf04b03247 100644 --- a/packs/src/items/weapon/maul.json +++ b/packs/src/items/weapon/maul.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -90,7 +95,7 @@ "hvy": true, "two": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -106,5 +111,6 @@ "createdTime": 1661787233528, "modifiedTime": 1671220958787, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!DizirD7eqjh8n95A" } diff --git a/packs/src/items/weapon/morningstar-1.json b/packs/src/items/weapon/morningstar-1.json index 736da49503..e9b0d5b341 100644 --- a/packs/src/items/weapon/morningstar-1.json +++ b/packs/src/items/weapon/morningstar-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233644, "modifiedTime": 1671220960415, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!PKpftwMAn88gfLi7" } diff --git a/packs/src/items/weapon/morningstar-2.json b/packs/src/items/weapon/morningstar-2.json index a1ccc50091..078a9febb0 100644 --- a/packs/src/items/weapon/morningstar-2.json +++ b/packs/src/items/weapon/morningstar-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233635, "modifiedTime": 1671220960327, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!NrHboku9vJO5FGiY" } diff --git a/packs/src/items/weapon/morningstar-3.json b/packs/src/items/weapon/morningstar-3.json index 5f70c9b2e1..2bf01a4400 100644 --- a/packs/src/items/weapon/morningstar-3.json +++ b/packs/src/items/weapon/morningstar-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233747, "modifiedTime": 1671220962076, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dghpiMWDSUXtQf6X" } diff --git a/packs/src/items/weapon/morningstar.json b/packs/src/items/weapon/morningstar.json index 2a46888c8b..43a590b289 100644 --- a/packs/src/items/weapon/morningstar.json +++ b/packs/src/items/weapon/morningstar.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -101,7 +106,7 @@ "two": false, "ver": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -117,5 +122,6 @@ "createdTime": 1661787233745, "modifiedTime": 1671220962059, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dX8AxCh9o0A9CkT3" } diff --git a/packs/src/items/weapon/net-1.json b/packs/src/items/weapon/net-1.json index 20e48cad22..779e3e1e69 100644 --- a/packs/src/items/weapon/net-1.json +++ b/packs/src/items/weapon/net-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -98,7 +103,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -114,5 +119,6 @@ "createdTime": 1661787233888, "modifiedTime": 1671220964579, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!rJKXDPikXSYXYgb5" } diff --git a/packs/src/items/weapon/net-2.json b/packs/src/items/weapon/net-2.json index affb221284..6a75588687 100644 --- a/packs/src/items/weapon/net-2.json +++ b/packs/src/items/weapon/net-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -98,7 +103,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -114,5 +119,6 @@ "createdTime": 1661787233812, "modifiedTime": 1671220962988, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hHX5qXva1ScCpBpL" } diff --git a/packs/src/items/weapon/net-3.json b/packs/src/items/weapon/net-3.json index 857d7e9898..3935711ebf 100644 --- a/packs/src/items/weapon/net-3.json +++ b/packs/src/items/weapon/net-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -98,7 +103,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -114,5 +119,6 @@ "createdTime": 1661787233821, "modifiedTime": 1671220963075, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!iIuNqnpWCHrLEKWj" } diff --git a/packs/src/items/weapon/net.json b/packs/src/items/weapon/net.json index 5147281dfb..14c23df445 100644 --- a/packs/src/items/weapon/net.json +++ b/packs/src/items/weapon/net.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -97,7 +102,7 @@ "ver": false, "lod": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -113,5 +118,6 @@ "createdTime": 1661787233722, "modifiedTime": 1671220961795, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!aEiM49V8vWpWw7rU" } diff --git a/packs/src/items/weapon/nine-lives-stealer-greatsword.json b/packs/src/items/weapon/nine-lives-stealer-greatsword.json index eedff25e5f..e7ce97b12d 100644 --- a/packs/src/items/weapon/nine-lives-stealer-greatsword.json +++ b/packs/src/items/weapon/nine-lives-stealer-greatsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -105,7 +110,7 @@ "ada": false, "sil": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -121,5 +126,6 @@ "createdTime": 1661787233908, "modifiedTime": 1671220964867, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!tFLmAPUDLxBY8jFO" } diff --git a/packs/src/items/weapon/nine-lives-stealer-longsword.json b/packs/src/items/weapon/nine-lives-stealer-longsword.json index 2e86b9260d..0e565f9d03 100644 --- a/packs/src/items/weapon/nine-lives-stealer-longsword.json +++ b/packs/src/items/weapon/nine-lives-stealer-longsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -105,7 +110,7 @@ "ada": false, "sil": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -121,5 +126,6 @@ "createdTime": 1661787233511, "modifiedTime": 1671220958564, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!BefbYlWbRYyy6R8s" } diff --git a/packs/src/items/weapon/nine-lives-stealer-rapier.json b/packs/src/items/weapon/nine-lives-stealer-rapier.json index c5286bb952..21d05eb3ea 100644 --- a/packs/src/items/weapon/nine-lives-stealer-rapier.json +++ b/packs/src/items/weapon/nine-lives-stealer-rapier.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -105,7 +110,7 @@ "ada": false, "sil": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -121,5 +126,6 @@ "createdTime": 1661787233638, "modifiedTime": 1671220960355, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!OUGMoQYeJzxEcRvm" } diff --git a/packs/src/items/weapon/nine-lives-stealer-scimitar.json b/packs/src/items/weapon/nine-lives-stealer-scimitar.json index ab754c546b..5acb1e418f 100644 --- a/packs/src/items/weapon/nine-lives-stealer-scimitar.json +++ b/packs/src/items/weapon/nine-lives-stealer-scimitar.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -105,7 +110,7 @@ "ada": false, "sil": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -121,5 +126,6 @@ "createdTime": 1661787233498, "modifiedTime": 1671220957731, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9Mdes2tKt0cqsNTw" } diff --git a/packs/src/items/weapon/nine-lives-stealer-shortsword.json b/packs/src/items/weapon/nine-lives-stealer-shortsword.json index 833a06d258..804afda147 100644 --- a/packs/src/items/weapon/nine-lives-stealer-shortsword.json +++ b/packs/src/items/weapon/nine-lives-stealer-shortsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -105,7 +110,7 @@ "ada": false, "sil": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -121,5 +126,6 @@ "createdTime": 1661787233446, "modifiedTime": 1671220957102, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!2Lkub0qIwucWEfp3" } diff --git a/packs/src/items/weapon/oathbow.json b/packs/src/items/weapon/oathbow.json index a03e5eb94f..d7c6503cfe 100644 --- a/packs/src/items/weapon/oathbow.json +++ b/packs/src/items/weapon/oathbow.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233853, "modifiedTime": 1671220963967, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!mGIwk9FwTAJB6qTn" } diff --git a/packs/src/items/weapon/orb.json b/packs/src/items/weapon/orb.json index 364523be4e..d59c4f1b10 100644 --- a/packs/src/items/weapon/orb.json +++ b/packs/src/items/weapon/orb.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -98,7 +103,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -114,5 +119,6 @@ "createdTime": 1661787233909, "modifiedTime": 1671220964871, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!tH5Rn0JVRG1zdmPa" } diff --git a/packs/src/items/weapon/pike-1.json b/packs/src/items/weapon/pike-1.json index 2a76fff365..398ad7031b 100644 --- a/packs/src/items/weapon/pike-1.json +++ b/packs/src/items/weapon/pike-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 18, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233972, "modifiedTime": 1671220965778, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!yoFff2zdTloKx1if" } diff --git a/packs/src/items/weapon/pike-2.json b/packs/src/items/weapon/pike-2.json index 2a0f75ee06..f8cd9dcf83 100644 --- a/packs/src/items/weapon/pike-2.json +++ b/packs/src/items/weapon/pike-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 18, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233885, "modifiedTime": 1671220964519, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!qcEiSj67zfbLvYdJ" } diff --git a/packs/src/items/weapon/pike-3.json b/packs/src/items/weapon/pike-3.json index 1c29be6d9f..b62bf2ce6a 100644 --- a/packs/src/items/weapon/pike-3.json +++ b/packs/src/items/weapon/pike-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 18, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233455, "modifiedTime": 1671220957224, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3YH1o1Wa4gcdN3fh" } diff --git a/packs/src/items/weapon/pike.json b/packs/src/items/weapon/pike.json index 3eea7208e6..3a40e9a228 100644 --- a/packs/src/items/weapon/pike.json +++ b/packs/src/items/weapon/pike.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 18, "price": { @@ -102,7 +107,7 @@ "thr": false, "ver": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -118,5 +123,6 @@ "createdTime": 1661787233905, "modifiedTime": 1671220964854, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!tC0kcqZT9HHAO0PD" } diff --git a/packs/src/items/weapon/quarterstaff-1.json b/packs/src/items/weapon/quarterstaff-1.json index c8d3640ba9..05f0b38132 100644 --- a/packs/src/items/weapon/quarterstaff-1.json +++ b/packs/src/items/weapon/quarterstaff-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "two": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233905, "modifiedTime": 1671220964837, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!t8L7B0JWamsvxhui" } diff --git a/packs/src/items/weapon/quarterstaff-2.json b/packs/src/items/weapon/quarterstaff-2.json index fc25bea92e..b4afc8f16f 100644 --- a/packs/src/items/weapon/quarterstaff-2.json +++ b/packs/src/items/weapon/quarterstaff-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "two": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233484, "modifiedTime": 1671220957582, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7kVZo4DLBq22406E" } diff --git a/packs/src/items/weapon/quarterstaff-3.json b/packs/src/items/weapon/quarterstaff-3.json index f4f20450d6..8075f8fef5 100644 --- a/packs/src/items/weapon/quarterstaff-3.json +++ b/packs/src/items/weapon/quarterstaff-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "two": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233512, "modifiedTime": 1671220958583, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!BmWnprrj0QWQ1BL3" } diff --git a/packs/src/items/weapon/quarterstaff.json b/packs/src/items/weapon/quarterstaff.json index 729ad6867a..efc6982f40 100644 --- a/packs/src/items/weapon/quarterstaff.json +++ b/packs/src/items/weapon/quarterstaff.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -102,7 +107,7 @@ "thr": false, "two": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -118,5 +123,6 @@ "createdTime": 1661787233801, "modifiedTime": 1671220962883, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!g2dWN7PQiMRYWzyk" } diff --git a/packs/src/items/weapon/rapier-1.json b/packs/src/items/weapon/rapier-1.json index 2f1fb05ff3..aacd212886 100644 --- a/packs/src/items/weapon/rapier-1.json +++ b/packs/src/items/weapon/rapier-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233659, "modifiedTime": 1671220960546, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!S7AhpCPDBGUBbg7b" } diff --git a/packs/src/items/weapon/rapier-2.json b/packs/src/items/weapon/rapier-2.json index 6756aa8cc5..4a9e0d906d 100644 --- a/packs/src/items/weapon/rapier-2.json +++ b/packs/src/items/weapon/rapier-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233918, "modifiedTime": 1671220964965, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!uLY74ppOrTaWKwer" } diff --git a/packs/src/items/weapon/rapier-3.json b/packs/src/items/weapon/rapier-3.json index b7f7660b83..7bf273d58a 100644 --- a/packs/src/items/weapon/rapier-3.json +++ b/packs/src/items/weapon/rapier-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233708, "modifiedTime": 1671220961663, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!YevPP0DZXgAcLmzv" } diff --git a/packs/src/items/weapon/rapier-of-life-stealing.json b/packs/src/items/weapon/rapier-of-life-stealing.json index 747a5494c4..a9f7ec63fc 100644 --- a/packs/src/items/weapon/rapier-of-life-stealing.json +++ b/packs/src/items/weapon/rapier-of-life-stealing.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233873, "modifiedTime": 1671220964377, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!p01JzD9RpIOkJiqK" } diff --git a/packs/src/items/weapon/rapier-of-wounding.json b/packs/src/items/weapon/rapier-of-wounding.json index 525ec216f2..8c4800becc 100644 --- a/packs/src/items/weapon/rapier-of-wounding.json +++ b/packs/src/items/weapon/rapier-of-wounding.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233611, "modifiedTime": 1671220959953, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!KJYqNZgdkRwPmPMl" } diff --git a/packs/src/items/weapon/rapier.json b/packs/src/items/weapon/rapier.json index 7c8426d178..772b27d0fb 100644 --- a/packs/src/items/weapon/rapier.json +++ b/packs/src/items/weapon/rapier.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -89,7 +94,7 @@ "properties": { "fin": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -105,5 +110,6 @@ "createdTime": 1661787233673, "modifiedTime": 1671220960660, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Tobce1hexTnDk4sV" } diff --git a/packs/src/items/weapon/rod.json b/packs/src/items/weapon/rod.json index c24a605968..942a44ac30 100644 --- a/packs/src/items/weapon/rod.json +++ b/packs/src/items/weapon/rod.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233639, "modifiedTime": 1671220960379, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!OojyyGfh91iViuMF" } diff --git a/packs/src/items/weapon/scimitar-1.json b/packs/src/items/weapon/scimitar-1.json index 5a9815b129..c5065eb04f 100644 --- a/packs/src/items/weapon/scimitar-1.json +++ b/packs/src/items/weapon/scimitar-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233683, "modifiedTime": 1671220961312, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!VGtyTdVLoWls8FL5" } diff --git a/packs/src/items/weapon/scimitar-2.json b/packs/src/items/weapon/scimitar-2.json index 761854f374..5dda3fc15a 100644 --- a/packs/src/items/weapon/scimitar-2.json +++ b/packs/src/items/weapon/scimitar-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233684, "modifiedTime": 1671220961343, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!VHYy3ZsJNPUo1SIx" } diff --git a/packs/src/items/weapon/scimitar-3.json b/packs/src/items/weapon/scimitar-3.json index aa50f94cd8..9a3ca72a46 100644 --- a/packs/src/items/weapon/scimitar-3.json +++ b/packs/src/items/weapon/scimitar-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233450, "modifiedTime": 1671220957151, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!2wK9ImkAeG3Lzxa0" } diff --git a/packs/src/items/weapon/scimitar-of-life-stealing.json b/packs/src/items/weapon/scimitar-of-life-stealing.json index 2395c19545..b3345eb787 100644 --- a/packs/src/items/weapon/scimitar-of-life-stealing.json +++ b/packs/src/items/weapon/scimitar-of-life-stealing.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233899, "modifiedTime": 1671220964715, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!sfegfmo59MHJg2YC" } diff --git a/packs/src/items/weapon/scimitar-of-sharpness.json b/packs/src/items/weapon/scimitar-of-sharpness.json index bcb20e9cbb..157d6542c5 100644 --- a/packs/src/items/weapon/scimitar-of-sharpness.json +++ b/packs/src/items/weapon/scimitar-of-sharpness.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233714, "modifiedTime": 1671220961705, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ZKyhkS8ud2NpV7ng" } diff --git a/packs/src/items/weapon/scimitar-of-speed.json b/packs/src/items/weapon/scimitar-of-speed.json index c7b5e1f422..9f27f2e0f0 100644 --- a/packs/src/items/weapon/scimitar-of-speed.json +++ b/packs/src/items/weapon/scimitar-of-speed.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233485, "modifiedTime": 1671220957597, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7wY0389wscheFkIa" } diff --git a/packs/src/items/weapon/scimitar-of-wounding.json b/packs/src/items/weapon/scimitar-of-wounding.json index a592392ec4..84af7d0548 100644 --- a/packs/src/items/weapon/scimitar-of-wounding.json +++ b/packs/src/items/weapon/scimitar-of-wounding.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233614, "modifiedTime": 1671220959995, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!L4PxYPtYca283sju" } diff --git a/packs/src/items/weapon/scimitar.json b/packs/src/items/weapon/scimitar.json index 98947e806e..d8d20a3e3f 100644 --- a/packs/src/items/weapon/scimitar.json +++ b/packs/src/items/weapon/scimitar.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -90,7 +95,7 @@ "fin": true, "lgt": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -106,5 +111,6 @@ "createdTime": 1661787233798, "modifiedTime": 1671220962862, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!fbC0Mg1a73wdFbqO" } diff --git a/packs/src/items/weapon/shortbow-1.json b/packs/src/items/weapon/shortbow-1.json index 5d27830051..151bb95622 100644 --- a/packs/src/items/weapon/shortbow-1.json +++ b/packs/src/items/weapon/shortbow-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233806, "modifiedTime": 1671220962947, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gYDMk3LWikIP5PmA" } diff --git a/packs/src/items/weapon/shortbow-2.json b/packs/src/items/weapon/shortbow-2.json index 8978933611..80ed8b54a9 100644 --- a/packs/src/items/weapon/shortbow-2.json +++ b/packs/src/items/weapon/shortbow-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233914, "modifiedTime": 1671220964923, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!tt4WokZBZMGqgYm5" } diff --git a/packs/src/items/weapon/shortbow-3.json b/packs/src/items/weapon/shortbow-3.json index 1262a050a3..bcf3a2765a 100644 --- a/packs/src/items/weapon/shortbow-3.json +++ b/packs/src/items/weapon/shortbow-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233788, "modifiedTime": 1671220962703, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!egJhGFU3v5OfjPNS" } diff --git a/packs/src/items/weapon/shortbow.json b/packs/src/items/weapon/shortbow.json index c5d1298c51..c273445d08 100644 --- a/packs/src/items/weapon/shortbow.json +++ b/packs/src/items/weapon/shortbow.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -102,7 +107,7 @@ "ver": false, "lod": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -118,5 +123,6 @@ "createdTime": 1661787233554, "modifiedTime": 1671220959086, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!GJv6WkD7D2J6rP6M" } diff --git a/packs/src/items/weapon/shortsword-1.json b/packs/src/items/weapon/shortsword-1.json index f071a761d3..f2910fbb6b 100644 --- a/packs/src/items/weapon/shortsword-1.json +++ b/packs/src/items/weapon/shortsword-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233901, "modifiedTime": 1671220964782, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!sl6yiYSlqkHiVVSN" } diff --git a/packs/src/items/weapon/shortsword-2.json b/packs/src/items/weapon/shortsword-2.json index 763bc1dbf0..ce0148a31b 100644 --- a/packs/src/items/weapon/shortsword-2.json +++ b/packs/src/items/weapon/shortsword-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233727, "modifiedTime": 1671220961866, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!b2l2ubCGSnmiTrm8" } diff --git a/packs/src/items/weapon/shortsword-3.json b/packs/src/items/weapon/shortsword-3.json index 2e329deaf5..b5490115ce 100644 --- a/packs/src/items/weapon/shortsword-3.json +++ b/packs/src/items/weapon/shortsword-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233917, "modifiedTime": 1671220964961, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!uIHXYhnOwETlA5lT" } diff --git a/packs/src/items/weapon/shortsword-of-life-stealing.json b/packs/src/items/weapon/shortsword-of-life-stealing.json index 6805948560..03406fddf5 100644 --- a/packs/src/items/weapon/shortsword-of-life-stealing.json +++ b/packs/src/items/weapon/shortsword-of-life-stealing.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233496, "modifiedTime": 1671220957715, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!902yxeFDwavpm6cv" } diff --git a/packs/src/items/weapon/shortsword-of-wounding.json b/packs/src/items/weapon/shortsword-of-wounding.json index 13fe6c2e22..0f2a059e47 100644 --- a/packs/src/items/weapon/shortsword-of-wounding.json +++ b/packs/src/items/weapon/shortsword-of-wounding.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233665, "modifiedTime": 1671220960595, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!SpbjbMMoJiva2zOa" } diff --git a/packs/src/items/weapon/shortsword.json b/packs/src/items/weapon/shortsword.json index 6b4ca4e4e1..4a89431cc3 100644 --- a/packs/src/items/weapon/shortsword.json +++ b/packs/src/items/weapon/shortsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -102,7 +107,7 @@ "two": false, "ver": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -118,5 +123,6 @@ "createdTime": 1661787233871, "modifiedTime": 1671220964357, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!osLzOwQdPtrK3rQH" } diff --git a/packs/src/items/weapon/sickle-1.json b/packs/src/items/weapon/sickle-1.json index 05fc3ecbe4..c3c5616a85 100644 --- a/packs/src/items/weapon/sickle-1.json +++ b/packs/src/items/weapon/sickle-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233726, "modifiedTime": 1671220961855, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!asUgQFrF1xYeNhtW" } diff --git a/packs/src/items/weapon/sickle-2.json b/packs/src/items/weapon/sickle-2.json index 09d86e7dc7..82ff84bf4a 100644 --- a/packs/src/items/weapon/sickle-2.json +++ b/packs/src/items/weapon/sickle-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233919, "modifiedTime": 1671220964969, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!uRoHwk1c8e5xJjkV" } diff --git a/packs/src/items/weapon/sickle-3.json b/packs/src/items/weapon/sickle-3.json index 77b623e60c..3513d47531 100644 --- a/packs/src/items/weapon/sickle-3.json +++ b/packs/src/items/weapon/sickle-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233507, "modifiedTime": 1671220958484, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!AHn15T1TOuDFS0GH" } diff --git a/packs/src/items/weapon/sickle.json b/packs/src/items/weapon/sickle.json index a271f50060..3a692e1969 100644 --- a/packs/src/items/weapon/sickle.json +++ b/packs/src/items/weapon/sickle.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -102,7 +107,7 @@ "two": false, "ver": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -118,5 +123,6 @@ "createdTime": 1661787233819, "modifiedTime": 1671220963056, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!i4NeNZ30ycwPDHMx" } diff --git a/packs/src/items/weapon/sling-1.json b/packs/src/items/weapon/sling-1.json index 87bd014d84..3755ad4518 100644 --- a/packs/src/items/weapon/sling-1.json +++ b/packs/src/items/weapon/sling-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233476, "modifiedTime": 1671220957483, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!6I5lt8KheTsAE4Zr" } diff --git a/packs/src/items/weapon/sling-2.json b/packs/src/items/weapon/sling-2.json index 6a9aae722d..7814db820e 100644 --- a/packs/src/items/weapon/sling-2.json +++ b/packs/src/items/weapon/sling-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233503, "modifiedTime": 1671220957785, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9qOAoFw9dTXhJ1w0" } diff --git a/packs/src/items/weapon/sling-3.json b/packs/src/items/weapon/sling-3.json index c7e4baad99..669d0e9634 100644 --- a/packs/src/items/weapon/sling-3.json +++ b/packs/src/items/weapon/sling-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233877, "modifiedTime": 1671220964441, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!q3WqP3r2emnumyUF" } diff --git a/packs/src/items/weapon/sling.json b/packs/src/items/weapon/sling.json index a018722fb1..353b0b0cee 100644 --- a/packs/src/items/weapon/sling.json +++ b/packs/src/items/weapon/sling.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -102,7 +107,7 @@ "two": false, "ver": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -118,5 +123,6 @@ "createdTime": 1661787233458, "modifiedTime": 1671220957255, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3gynWO9sN4OLGMWD" } diff --git a/packs/src/items/weapon/spear-1.json b/packs/src/items/weapon/spear-1.json index f45656ab03..40a47216f1 100644 --- a/packs/src/items/weapon/spear-1.json +++ b/packs/src/items/weapon/spear-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "two": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233689, "modifiedTime": 1671220961439, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WNdN2mBF3O7ZNcMp" } diff --git a/packs/src/items/weapon/spear-2.json b/packs/src/items/weapon/spear-2.json index 2939e0404f..5952d6fad5 100644 --- a/packs/src/items/weapon/spear-2.json +++ b/packs/src/items/weapon/spear-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "two": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233564, "modifiedTime": 1671220959219, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!HeDP6dL9daVT3uj2" } diff --git a/packs/src/items/weapon/spear-3.json b/packs/src/items/weapon/spear-3.json index 8f17268e15..bb9dfd93f3 100644 --- a/packs/src/items/weapon/spear-3.json +++ b/packs/src/items/weapon/spear-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "two": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233473, "modifiedTime": 1671220957451, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!62EaozKvcA0aSy2q" } diff --git a/packs/src/items/weapon/spear.json b/packs/src/items/weapon/spear.json index b360a6a888..fdb033dbf3 100644 --- a/packs/src/items/weapon/spear.json +++ b/packs/src/items/weapon/spear.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -102,7 +107,7 @@ "spc": false, "two": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -118,5 +123,6 @@ "createdTime": 1661787233636, "modifiedTime": 1671220960340, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!OG4nBBydvmfWYXIk" } diff --git a/packs/src/items/weapon/sprig-of-mistletoe.json b/packs/src/items/weapon/sprig-of-mistletoe.json index 89ac1d58eb..dc0b8264d8 100644 --- a/packs/src/items/weapon/sprig-of-mistletoe.json +++ b/packs/src/items/weapon/sprig-of-mistletoe.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -98,7 +103,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -114,5 +119,6 @@ "createdTime": 1661787233963, "modifiedTime": 1671220965676, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!xDK9GQd2iqOGH8Sd" } diff --git a/packs/src/items/weapon/staff-of-charming.json b/packs/src/items/weapon/staff-of-charming.json index 661fffc1be..7003b5dcac 100644 --- a/packs/src/items/weapon/staff-of-charming.json +++ b/packs/src/items/weapon/staff-of-charming.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -105,7 +110,7 @@ "ada": false, "sil": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -121,5 +126,6 @@ "createdTime": 1661787233548, "modifiedTime": 1671220959000, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!FeouSUPUlUhfgeRp" } diff --git a/packs/src/items/weapon/staff-of-fire.json b/packs/src/items/weapon/staff-of-fire.json index 629fd76c5d..59defa9f7c 100644 --- a/packs/src/items/weapon/staff-of-fire.json +++ b/packs/src/items/weapon/staff-of-fire.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -100,7 +105,7 @@ "ada": false, "sil": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -116,5 +121,6 @@ "createdTime": 1661787233849, "modifiedTime": 1671220963900, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!lsiR1hVfISlC5YoB" } diff --git a/packs/src/items/weapon/staff-of-frost.json b/packs/src/items/weapon/staff-of-frost.json index 21b7e8fd1c..b4326e7d83 100644 --- a/packs/src/items/weapon/staff-of-frost.json +++ b/packs/src/items/weapon/staff-of-frost.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -100,7 +105,7 @@ "ada": false, "sil": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -116,5 +121,6 @@ "createdTime": 1661787233964, "modifiedTime": 1671220965681, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!xEtBeZjJnkDXojQM" } diff --git a/packs/src/items/weapon/staff-of-healing.json b/packs/src/items/weapon/staff-of-healing.json index 2a7d8ef82b..dc13eee60e 100644 --- a/packs/src/items/weapon/staff-of-healing.json +++ b/packs/src/items/weapon/staff-of-healing.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -100,7 +105,7 @@ "ada": false, "sil": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -116,5 +121,6 @@ "createdTime": 1661787233689, "modifiedTime": 1671220961432, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WLVQJVpCWiPkCAtZ" } diff --git a/packs/src/items/weapon/staff-of-power.json b/packs/src/items/weapon/staff-of-power.json index 6dab8bc901..777b0aef3e 100644 --- a/packs/src/items/weapon/staff-of-power.json +++ b/packs/src/items/weapon/staff-of-power.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -105,7 +110,7 @@ "ada": false, "sil": false }, - "proficient": false + "proficient": null }, "effects": [ { @@ -134,7 +139,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!eM5gEe4SEOvA2Y9t.313kehq7ifkqiz2u" } ], "folder": null, @@ -150,5 +156,6 @@ "createdTime": 1661787233783, "modifiedTime": 1671220962653, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eM5gEe4SEOvA2Y9t" } diff --git a/packs/src/items/weapon/staff-of-striking.json b/packs/src/items/weapon/staff-of-striking.json index 9b8a0e7409..25531a6bb7 100644 --- a/packs/src/items/weapon/staff-of-striking.json +++ b/packs/src/items/weapon/staff-of-striking.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -105,7 +110,7 @@ "ada": false, "sil": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -121,5 +126,6 @@ "createdTime": 1661787233677, "modifiedTime": 1671220960721, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!URun3vYrXKJJdAJe" } diff --git a/packs/src/items/weapon/staff-of-swarming-insects.json b/packs/src/items/weapon/staff-of-swarming-insects.json index 644f393b1c..beb7dcf6e8 100644 --- a/packs/src/items/weapon/staff-of-swarming-insects.json +++ b/packs/src/items/weapon/staff-of-swarming-insects.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -100,7 +105,7 @@ "ada": false, "sil": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -116,5 +121,6 @@ "createdTime": 1661787233733, "modifiedTime": 1671220961931, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!bod1dKzbAkAm21Ho" } diff --git a/packs/src/items/weapon/staff-of-the-magi.json b/packs/src/items/weapon/staff-of-the-magi.json index 5b7c9b5f69..1383a32ffe 100644 --- a/packs/src/items/weapon/staff-of-the-magi.json +++ b/packs/src/items/weapon/staff-of-the-magi.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -105,7 +110,7 @@ "ada": false, "sil": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -121,5 +126,6 @@ "createdTime": 1661787233842, "modifiedTime": 1671220963297, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!l3V7V8VCXpmAAysQ" } diff --git a/packs/src/items/weapon/staff-of-the-python.json b/packs/src/items/weapon/staff-of-the-python.json index 2858513e2f..0e3f689ac5 100644 --- a/packs/src/items/weapon/staff-of-the-python.json +++ b/packs/src/items/weapon/staff-of-the-python.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -98,7 +103,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -114,5 +119,6 @@ "createdTime": 1661787233626, "modifiedTime": 1671220960180, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MOeFq5MLAQzVQC7z" } diff --git a/packs/src/items/weapon/staff-of-the-woodlands.json b/packs/src/items/weapon/staff-of-the-woodlands.json index 39038bc27e..f2e2baee88 100644 --- a/packs/src/items/weapon/staff-of-the-woodlands.json +++ b/packs/src/items/weapon/staff-of-the-woodlands.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -105,7 +110,7 @@ "ada": false, "sil": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -121,5 +126,6 @@ "createdTime": 1661787233738, "modifiedTime": 1671220961981, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!caEn3ixCUFBnHTx6" } diff --git a/packs/src/items/weapon/staff-of-thunder-and-lightning.json b/packs/src/items/weapon/staff-of-thunder-and-lightning.json index 34bc348c25..65688e9d0c 100644 --- a/packs/src/items/weapon/staff-of-thunder-and-lightning.json +++ b/packs/src/items/weapon/staff-of-thunder-and-lightning.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "ver": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233541, "modifiedTime": 1671220958947, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!F6v3Q7dz1SlpLTMf" } diff --git a/packs/src/items/weapon/staff-of-withering.json b/packs/src/items/weapon/staff-of-withering.json index ca27c2753e..a4ef7abf14 100644 --- a/packs/src/items/weapon/staff-of-withering.json +++ b/packs/src/items/weapon/staff-of-withering.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -105,7 +110,7 @@ "ada": false, "sil": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -121,5 +126,6 @@ "createdTime": 1661787233917, "modifiedTime": 1671220964956, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!uHL99JKLUpTKAbz8" } diff --git a/packs/src/items/weapon/staff.json b/packs/src/items/weapon/staff.json index c5c68f5762..b2d1bf0c49 100644 --- a/packs/src/items/weapon/staff.json +++ b/packs/src/items/weapon/staff.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233511, "modifiedTime": 1671220958550, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!BeKIrNIvNHRPQ4t5" } diff --git a/packs/src/items/weapon/sun-blade.json b/packs/src/items/weapon/sun-blade.json index db4abde04a..c6caf9ac6a 100644 --- a/packs/src/items/weapon/sun-blade.json +++ b/packs/src/items/weapon/sun-blade.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "two": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233970, "modifiedTime": 1671220965763, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!yiYCqmD5n08NftYk" } diff --git a/packs/src/items/weapon/totem.json b/packs/src/items/weapon/totem.json index 7818b0953b..19aff8b68b 100644 --- a/packs/src/items/weapon/totem.json +++ b/packs/src/items/weapon/totem.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -98,7 +103,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -114,5 +119,6 @@ "createdTime": 1661787233643, "modifiedTime": 1671220960410, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!PGL6aaM0wE5h0VN5" } diff --git a/packs/src/items/weapon/trident-1.json b/packs/src/items/weapon/trident-1.json index 41889f95f3..8dfae71ec2 100644 --- a/packs/src/items/weapon/trident-1.json +++ b/packs/src/items/weapon/trident-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "ver": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233954, "modifiedTime": 1671220965556, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!vuThcmO7MYlw5b9f" } diff --git a/packs/src/items/weapon/trident-2.json b/packs/src/items/weapon/trident-2.json index fd16a7b04e..97a9ab992b 100644 --- a/packs/src/items/weapon/trident-2.json +++ b/packs/src/items/weapon/trident-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "ver": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233537, "modifiedTime": 1671220958910, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!EkTpM4Wbsrdqflzl" } diff --git a/packs/src/items/weapon/trident-3.json b/packs/src/items/weapon/trident-3.json index 307668dc21..8e5a83c150 100644 --- a/packs/src/items/weapon/trident-3.json +++ b/packs/src/items/weapon/trident-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "ver": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233975, "modifiedTime": 1671220965817, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!z9fFB1uaGJvcXTf7" } diff --git a/packs/src/items/weapon/trident-of-fish-command.json b/packs/src/items/weapon/trident-of-fish-command.json index 6e94f485e5..50c12e2ce5 100644 --- a/packs/src/items/weapon/trident-of-fish-command.json +++ b/packs/src/items/weapon/trident-of-fish-command.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "ver": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233866, "modifiedTime": 1671220964253, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!o4Irx3hHiD3FnPbL" } diff --git a/packs/src/items/weapon/trident.json b/packs/src/items/weapon/trident.json index a62bbb386f..97dcc86cfa 100644 --- a/packs/src/items/weapon/trident.json +++ b/packs/src/items/weapon/trident.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -102,7 +107,7 @@ "two": false, "ver": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -118,5 +123,6 @@ "createdTime": 1661787233540, "modifiedTime": 1671220958937, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!F65ANO66ckP8FDMa" } diff --git a/packs/src/items/weapon/unarmed-strike.json b/packs/src/items/weapon/unarmed-strike.json index 38f8ec6ea4..3942ce1117 100644 --- a/packs/src/items/weapon/unarmed-strike.json +++ b/packs/src/items/weapon/unarmed-strike.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": false }, - "proficient": true + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233557, "modifiedTime": 1671220959127, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!GsuvwoekKZatfKwF" } diff --git a/packs/src/items/weapon/vicious-battleaxe.json b/packs/src/items/weapon/vicious-battleaxe.json index e6649960f3..f25140e63f 100644 --- a/packs/src/items/weapon/vicious-battleaxe.json +++ b/packs/src/items/weapon/vicious-battleaxe.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "two": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233741, "modifiedTime": 1671220962025, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dG7iFak1YH1nXRpC" } diff --git a/packs/src/items/weapon/vicious-blowgun.json b/packs/src/items/weapon/vicious-blowgun.json index 38117278db..410f669e83 100644 --- a/packs/src/items/weapon/vicious-blowgun.json +++ b/packs/src/items/weapon/vicious-blowgun.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -103,7 +108,7 @@ "lod": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233872, "modifiedTime": 1671220964372, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ozYrQ5N4s81h35Fa" } diff --git a/packs/src/items/weapon/vicious-club.json b/packs/src/items/weapon/vicious-club.json index 18e6ae213f..b88abd60c3 100644 --- a/packs/src/items/weapon/vicious-club.json +++ b/packs/src/items/weapon/vicious-club.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233678, "modifiedTime": 1671220960732, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!UctSPehpKb4lJQGr" } diff --git a/packs/src/items/weapon/vicious-dagger.json b/packs/src/items/weapon/vicious-dagger.json index 1985e3f71b..64a23a9a91 100644 --- a/packs/src/items/weapon/vicious-dagger.json +++ b/packs/src/items/weapon/vicious-dagger.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233469, "modifiedTime": 1671220957385, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!5Jz5w7XJxgtlsx6K" } diff --git a/packs/src/items/weapon/vicious-dart.json b/packs/src/items/weapon/vicious-dart.json index 55185ca1f1..d624018ea5 100644 --- a/packs/src/items/weapon/vicious-dart.json +++ b/packs/src/items/weapon/vicious-dart.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.25, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233830, "modifiedTime": 1671220963176, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!jeoZmDD9fuQdvC77" } diff --git a/packs/src/items/weapon/vicious-flail.json b/packs/src/items/weapon/vicious-flail.json index 43ef485d02..29e0a2cf5e 100644 --- a/packs/src/items/weapon/vicious-flail.json +++ b/packs/src/items/weapon/vicious-flail.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233886, "modifiedTime": 1671220964545, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!qmuOeNsOKwkn6K8W" } diff --git a/packs/src/items/weapon/vicious-glaive.json b/packs/src/items/weapon/vicious-glaive.json index 886360a782..d2dbbf657f 100644 --- a/packs/src/items/weapon/vicious-glaive.json +++ b/packs/src/items/weapon/vicious-glaive.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233782, "modifiedTime": 1671220962646, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eKip69fExSYN661B" } diff --git a/packs/src/items/weapon/vicious-greataxe.json b/packs/src/items/weapon/vicious-greataxe.json index 1e238d04e3..a4ebf9d70a 100644 --- a/packs/src/items/weapon/vicious-greataxe.json +++ b/packs/src/items/weapon/vicious-greataxe.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233862, "modifiedTime": 1671220964201, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nY6CnKEHyJ5STgt5" } diff --git a/packs/src/items/weapon/vicious-greatclub.json b/packs/src/items/weapon/vicious-greatclub.json index 4779a83a28..e46db8c6ec 100644 --- a/packs/src/items/weapon/vicious-greatclub.json +++ b/packs/src/items/weapon/vicious-greatclub.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233874, "modifiedTime": 1671220964385, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!p9dtQU9wEZGumHSb" } diff --git a/packs/src/items/weapon/vicious-greatsword.json b/packs/src/items/weapon/vicious-greatsword.json index 9c784f5899..7a9810d201 100644 --- a/packs/src/items/weapon/vicious-greatsword.json +++ b/packs/src/items/weapon/vicious-greatsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233551, "modifiedTime": 1671220959058, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!FpLaviCom3XR1ckP" } diff --git a/packs/src/items/weapon/vicious-halberd.json b/packs/src/items/weapon/vicious-halberd.json index 2fb6e005cc..19119259d9 100644 --- a/packs/src/items/weapon/vicious-halberd.json +++ b/packs/src/items/weapon/vicious-halberd.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233828, "modifiedTime": 1671220963137, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!isKR904LkLaH4i6M" } diff --git a/packs/src/items/weapon/vicious-hand-crossbow.json b/packs/src/items/weapon/vicious-hand-crossbow.json index 9e9f4d9383..ad84014298 100644 --- a/packs/src/items/weapon/vicious-hand-crossbow.json +++ b/packs/src/items/weapon/vicious-hand-crossbow.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "lod": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233583, "modifiedTime": 1671220959940, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!K7h4LT03SNt2807z" } diff --git a/packs/src/items/weapon/vicious-handaxe.json b/packs/src/items/weapon/vicious-handaxe.json index 62078d8010..5349b9b4f3 100644 --- a/packs/src/items/weapon/vicious-handaxe.json +++ b/packs/src/items/weapon/vicious-handaxe.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233650, "modifiedTime": 1671220960461, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!QM3gdsL0eaAus7XT" } diff --git a/packs/src/items/weapon/vicious-heavy-crossbow.json b/packs/src/items/weapon/vicious-heavy-crossbow.json index 883f0af047..cf8dd531fb 100644 --- a/packs/src/items/weapon/vicious-heavy-crossbow.json +++ b/packs/src/items/weapon/vicious-heavy-crossbow.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 18, "price": { @@ -103,7 +108,7 @@ "lod": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233550, "modifiedTime": 1671220959049, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Fk78kNmp3OLX5EMC" } diff --git a/packs/src/items/weapon/vicious-javelin.json b/packs/src/items/weapon/vicious-javelin.json index 38fdb71a17..f780977f5e 100644 --- a/packs/src/items/weapon/vicious-javelin.json +++ b/packs/src/items/weapon/vicious-javelin.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233844, "modifiedTime": 1671220963315, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!lM5uo6R4gy8rJG5Y" } diff --git a/packs/src/items/weapon/vicious-lance.json b/packs/src/items/weapon/vicious-lance.json index 49edbc3d94..0000afe63f 100644 --- a/packs/src/items/weapon/vicious-lance.json +++ b/packs/src/items/weapon/vicious-lance.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233887, "modifiedTime": 1671220964562, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!r8yK6SrWOz4hqF01" } diff --git a/packs/src/items/weapon/vicious-light-crossbow.json b/packs/src/items/weapon/vicious-light-crossbow.json index eb76b3ea4c..1bebdeac39 100644 --- a/packs/src/items/weapon/vicious-light-crossbow.json +++ b/packs/src/items/weapon/vicious-light-crossbow.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -103,7 +108,7 @@ "lod": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233685, "modifiedTime": 1671220961353, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!VQAUcjn1qdwW3MeU" } diff --git a/packs/src/items/weapon/vicious-light-hammer.json b/packs/src/items/weapon/vicious-light-hammer.json index 51914826bf..83763211a2 100644 --- a/packs/src/items/weapon/vicious-light-hammer.json +++ b/packs/src/items/weapon/vicious-light-hammer.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233464, "modifiedTime": 1671220957351, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!4MeSq8KcF7KK7emF" } diff --git a/packs/src/items/weapon/vicious-longbow.json b/packs/src/items/weapon/vicious-longbow.json index 3cfdfcee11..2572930a35 100644 --- a/packs/src/items/weapon/vicious-longbow.json +++ b/packs/src/items/weapon/vicious-longbow.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233806, "modifiedTime": 1671220962935, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gVo3UbvwjFIiFR0c" } diff --git a/packs/src/items/weapon/vicious-longsword.json b/packs/src/items/weapon/vicious-longsword.json index c09fb53754..9c901761f3 100644 --- a/packs/src/items/weapon/vicious-longsword.json +++ b/packs/src/items/weapon/vicious-longsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "two": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233875, "modifiedTime": 1671220964400, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!pC3202gDTy8G5i4r" } diff --git a/packs/src/items/weapon/vicious-mace.json b/packs/src/items/weapon/vicious-mace.json index 08f4c0a948..1936a1e736 100644 --- a/packs/src/items/weapon/vicious-mace.json +++ b/packs/src/items/weapon/vicious-mace.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233804, "modifiedTime": 1671220962913, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gSwpQacBLOJeLWrK" } diff --git a/packs/src/items/weapon/vicious-maul.json b/packs/src/items/weapon/vicious-maul.json index 677acaf78e..2a59bbcf22 100644 --- a/packs/src/items/weapon/vicious-maul.json +++ b/packs/src/items/weapon/vicious-maul.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233477, "modifiedTime": 1671220957487, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!6JbrdSg5YYbs9ANm" } diff --git a/packs/src/items/weapon/vicious-morningstar.json b/packs/src/items/weapon/vicious-morningstar.json index 53a985f283..3d19827e9c 100644 --- a/packs/src/items/weapon/vicious-morningstar.json +++ b/packs/src/items/weapon/vicious-morningstar.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233686, "modifiedTime": 1671220961383, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Vm6SuX6TkDvSIVGr" } diff --git a/packs/src/items/weapon/vicious-pike.json b/packs/src/items/weapon/vicious-pike.json index b8bd6521e8..5572ea3fdd 100644 --- a/packs/src/items/weapon/vicious-pike.json +++ b/packs/src/items/weapon/vicious-pike.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 18, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233979, "modifiedTime": 1671220965886, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zibIgdxPz8QHSCg6" } diff --git a/packs/src/items/weapon/vicious-quarterstaff.json b/packs/src/items/weapon/vicious-quarterstaff.json index 5221223f88..c325d28e8b 100644 --- a/packs/src/items/weapon/vicious-quarterstaff.json +++ b/packs/src/items/weapon/vicious-quarterstaff.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "two": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233713, "modifiedTime": 1671220961695, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Z7xno2zMzRtqqUIQ" } diff --git a/packs/src/items/weapon/vicious-rapier.json b/packs/src/items/weapon/vicious-rapier.json index 15fd399c82..a81a3df48e 100644 --- a/packs/src/items/weapon/vicious-rapier.json +++ b/packs/src/items/weapon/vicious-rapier.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233809, "modifiedTime": 1671220962968, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!h0XLhuUQ0vSnW3DU" } diff --git a/packs/src/items/weapon/vicious-scimitar.json b/packs/src/items/weapon/vicious-scimitar.json index 7aca1c54c7..cfb78d19a1 100644 --- a/packs/src/items/weapon/vicious-scimitar.json +++ b/packs/src/items/weapon/vicious-scimitar.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233544, "modifiedTime": 1671220958963, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!FHUDEygUW7EWCDgA" } diff --git a/packs/src/items/weapon/vicious-shortbow.json b/packs/src/items/weapon/vicious-shortbow.json index 79900702b8..b766d2eb8d 100644 --- a/packs/src/items/weapon/vicious-shortbow.json +++ b/packs/src/items/weapon/vicious-shortbow.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "lod": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233712, "modifiedTime": 1671220961690, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Z0eO3TTpYA2hjwdd" } diff --git a/packs/src/items/weapon/vicious-shortsword.json b/packs/src/items/weapon/vicious-shortsword.json index 2d9ae0c66b..36f0688ebc 100644 --- a/packs/src/items/weapon/vicious-shortsword.json +++ b/packs/src/items/weapon/vicious-shortsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233441, "modifiedTime": 1671220957054, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!1PMaZR6CX8fUnOZd" } diff --git a/packs/src/items/weapon/vicious-sickle.json b/packs/src/items/weapon/vicious-sickle.json index 2183369aea..08c4c64662 100644 --- a/packs/src/items/weapon/vicious-sickle.json +++ b/packs/src/items/weapon/vicious-sickle.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233506, "modifiedTime": 1671220958465, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!AChuumAYmts5uGFT" } diff --git a/packs/src/items/weapon/vicious-sling.json b/packs/src/items/weapon/vicious-sling.json index 35898a85f2..425c5b064d 100644 --- a/packs/src/items/weapon/vicious-sling.json +++ b/packs/src/items/weapon/vicious-sling.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233879, "modifiedTime": 1671220964468, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!qGRN4wvZLJ8uITf2" } diff --git a/packs/src/items/weapon/vicious-spear.json b/packs/src/items/weapon/vicious-spear.json index e381b1afb7..6fa87115ca 100644 --- a/packs/src/items/weapon/vicious-spear.json +++ b/packs/src/items/weapon/vicious-spear.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "two": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233779, "modifiedTime": 1671220962605, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!e7JpVX2549vp9mgF" } diff --git a/packs/src/items/weapon/vicious-trident.json b/packs/src/items/weapon/vicious-trident.json index be264f1d78..9bae7870d5 100644 --- a/packs/src/items/weapon/vicious-trident.json +++ b/packs/src/items/weapon/vicious-trident.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "ver": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233669, "modifiedTime": 1671220960630, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!TMqS62qjBCveT1Ss" } diff --git a/packs/src/items/weapon/vicious-war-pick.json b/packs/src/items/weapon/vicious-war-pick.json index 1cdf79bf69..b0fc0686b3 100644 --- a/packs/src/items/weapon/vicious-war-pick.json +++ b/packs/src/items/weapon/vicious-war-pick.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233802, "modifiedTime": 1671220962887, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!g8DG0jXlvfP3uTtZ" } diff --git a/packs/src/items/weapon/vicious-warhammer.json b/packs/src/items/weapon/vicious-warhammer.json index 8469798637..7b906ff3d5 100644 --- a/packs/src/items/weapon/vicious-warhammer.json +++ b/packs/src/items/weapon/vicious-warhammer.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "two": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233566, "modifiedTime": 1671220959244, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!HnJqfKkYXIWo2sp9" } diff --git a/packs/src/items/weapon/vicious-whip.json b/packs/src/items/weapon/vicious-whip.json index d5e5bd2efe..f50d9e08e8 100644 --- a/packs/src/items/weapon/vicious-whip.json +++ b/packs/src/items/weapon/vicious-whip.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233850, "modifiedTime": 1671220963910, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!luTJgPXN5n0EN7iy" } diff --git a/packs/src/items/weapon/vorpal-greatsword.json b/packs/src/items/weapon/vorpal-greatsword.json index f7a27618b9..6100887198 100644 --- a/packs/src/items/weapon/vorpal-greatsword.json +++ b/packs/src/items/weapon/vorpal-greatsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233452, "modifiedTime": 1671220957186, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3FNyS6DeCBZzFbqU" } diff --git a/packs/src/items/weapon/vorpal-longsword.json b/packs/src/items/weapon/vorpal-longsword.json index f239d0966f..a8c443164d 100644 --- a/packs/src/items/weapon/vorpal-longsword.json +++ b/packs/src/items/weapon/vorpal-longsword.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233567, "modifiedTime": 1671220959249, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!HokQ1loVJTFxt27u" } diff --git a/packs/src/items/weapon/vorpal-scimitar.json b/packs/src/items/weapon/vorpal-scimitar.json index 8ff11ceb7a..74bcab10a0 100644 --- a/packs/src/items/weapon/vorpal-scimitar.json +++ b/packs/src/items/weapon/vorpal-scimitar.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233570, "modifiedTime": 1671220959267, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!I7cOsXsklWkzouHA" } diff --git a/packs/src/items/weapon/wand.json b/packs/src/items/weapon/wand.json index 8aba475994..8b177b8e81 100644 --- a/packs/src/items/weapon/wand.json +++ b/packs/src/items/weapon/wand.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -98,7 +103,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -114,5 +119,6 @@ "createdTime": 1661787233610, "modifiedTime": 1671220959947, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!KA2P6I48iOWlnboO" } diff --git a/packs/src/items/weapon/war-pick-1.json b/packs/src/items/weapon/war-pick-1.json index 93f6f90377..96938acab2 100644 --- a/packs/src/items/weapon/war-pick-1.json +++ b/packs/src/items/weapon/war-pick-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233841, "modifiedTime": 1671220963292, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!l2T46xCqUbJvKE7A" } diff --git a/packs/src/items/weapon/war-pick-2.json b/packs/src/items/weapon/war-pick-2.json index a1fda532df..9a7c03656b 100644 --- a/packs/src/items/weapon/war-pick-2.json +++ b/packs/src/items/weapon/war-pick-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233656, "modifiedTime": 1671220960518, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!RbC0UCqAnQcIPIXZ" } diff --git a/packs/src/items/weapon/war-pick-3.json b/packs/src/items/weapon/war-pick-3.json index 26cdee813c..7587b67f4d 100644 --- a/packs/src/items/weapon/war-pick-3.json +++ b/packs/src/items/weapon/war-pick-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233864, "modifiedTime": 1671220964231, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nrvAo3TznyQrHS1t" } diff --git a/packs/src/items/weapon/war-pick.json b/packs/src/items/weapon/war-pick.json index b665deef06..4ed805b3a7 100644 --- a/packs/src/items/weapon/war-pick.json +++ b/packs/src/items/weapon/war-pick.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -102,7 +107,7 @@ "two": false, "ver": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -118,5 +123,6 @@ "createdTime": 1661787233447, "modifiedTime": 1671220957117, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!2YdfjN1PIIrSHZii" } diff --git a/packs/src/items/weapon/warhammer-1.json b/packs/src/items/weapon/warhammer-1.json index e1f090ccac..1de03acdab 100644 --- a/packs/src/items/weapon/warhammer-1.json +++ b/packs/src/items/weapon/warhammer-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "two": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233490, "modifiedTime": 1671220957670, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8N1GqcdroUpmM9dS" } diff --git a/packs/src/items/weapon/warhammer-2.json b/packs/src/items/weapon/warhammer-2.json index 72c7d553e9..726999fdb0 100644 --- a/packs/src/items/weapon/warhammer-2.json +++ b/packs/src/items/weapon/warhammer-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "two": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233613, "modifiedTime": 1671220959989, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!KvIlZssYEtQ4bvSE" } diff --git a/packs/src/items/weapon/warhammer-3.json b/packs/src/items/weapon/warhammer-3.json index c185036764..acde6ac5c4 100644 --- a/packs/src/items/weapon/warhammer-3.json +++ b/packs/src/items/weapon/warhammer-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -103,7 +108,7 @@ "two": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233899, "modifiedTime": 1671220964706, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!setcTdSZ09rmsqMn" } diff --git a/packs/src/items/weapon/warhammer.json b/packs/src/items/weapon/warhammer.json index cfdb0eaf08..c50699d7b2 100644 --- a/packs/src/items/weapon/warhammer.json +++ b/packs/src/items/weapon/warhammer.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -102,7 +107,7 @@ "thr": false, "two": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -118,5 +123,6 @@ "createdTime": 1661787233539, "modifiedTime": 1671220958929, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!F0Df164Xv1gWcYt0" } diff --git a/packs/src/items/weapon/whip-1.json b/packs/src/items/weapon/whip-1.json index a128fc9550..4fc43b5585 100644 --- a/packs/src/items/weapon/whip-1.json +++ b/packs/src/items/weapon/whip-1.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233848, "modifiedTime": 1671220963882, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!lcqqW2vGF6P8nJ77" } diff --git a/packs/src/items/weapon/whip-2.json b/packs/src/items/weapon/whip-2.json index 7e667e32f9..6011beba6d 100644 --- a/packs/src/items/weapon/whip-2.json +++ b/packs/src/items/weapon/whip-2.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233693, "modifiedTime": 1671220961481, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WlPzuxaVnYzxzDEC" } diff --git a/packs/src/items/weapon/whip-3.json b/packs/src/items/weapon/whip-3.json index 83389f495e..ba73a5260d 100644 --- a/packs/src/items/weapon/whip-3.json +++ b/packs/src/items/weapon/whip-3.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -103,7 +108,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233830, "modifiedTime": 1671220963171, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!jcQqI0pxLD2nNNQ4" } diff --git a/packs/src/items/weapon/whip.json b/packs/src/items/weapon/whip.json index 9ff7901a16..6ff45ef509 100644 --- a/packs/src/items/weapon/whip.json +++ b/packs/src/items/weapon/whip.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -102,7 +107,7 @@ "two": false, "ver": false }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -118,5 +123,6 @@ "createdTime": 1661787233649, "modifiedTime": 1671220960457, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!QKTyxoO0YDnAsbYe" } diff --git a/packs/src/items/weapon/wooden-staff.json b/packs/src/items/weapon/wooden-staff.json index 7cbe45c3bd..d7487204bf 100644 --- a/packs/src/items/weapon/wooden-staff.json +++ b/packs/src/items/weapon/wooden-staff.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -103,7 +108,7 @@ "ver": true, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -119,5 +124,6 @@ "createdTime": 1661787233543, "modifiedTime": 1671220958959, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!FF1ktpb2YSiyv896" } diff --git a/packs/src/items/weapon/yew-wand.json b/packs/src/items/weapon/yew-wand.json index de17f7706b..105c4e0e8c 100644 --- a/packs/src/items/weapon/yew-wand.json +++ b/packs/src/items/weapon/yew-wand.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -98,7 +103,7 @@ "ver": false, "mgc": true }, - "proficient": false + "proficient": null }, "effects": [], "folder": null, @@ -114,5 +119,6 @@ "createdTime": 1661787233904, "modifiedTime": 1671220964819, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!t5yP0d7YaKwuKKiH" } diff --git a/packs/src/monsterfeatures/aberrant-ground.json b/packs/src/monsterfeatures/aberrant-ground.json index 5259ffd6dd..875376a749 100644 --- a/packs/src/monsterfeatures/aberrant-ground.json +++ b/packs/src/monsterfeatures/aberrant-ground.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234532, "modifiedTime": 1672335459239, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!KoBGbIkb2tMZv0ch" } diff --git a/packs/src/monsterfeatures/acid-absorption.json b/packs/src/monsterfeatures/acid-absorption.json index eacdb90c67..84e8a10e4a 100644 --- a/packs/src/monsterfeatures/acid-absorption.json +++ b/packs/src/monsterfeatures/acid-absorption.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234551, "modifiedTime": 1672335456646, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!TVPqMOcoLNFBUMyG" } diff --git a/packs/src/monsterfeatures/acid-breath.json b/packs/src/monsterfeatures/acid-breath.json index 4c7dc87416..9cca8b4c17 100644 --- a/packs/src/monsterfeatures/acid-breath.json +++ b/packs/src/monsterfeatures/acid-breath.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234636, "modifiedTime": 1672335453831, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zjcGly9P3Gn9MXt7" } diff --git a/packs/src/monsterfeatures/acid-spray.json b/packs/src/monsterfeatures/acid-spray.json index d7b6c27a77..9bb5b915d3 100644 --- a/packs/src/monsterfeatures/acid-spray.json +++ b/packs/src/monsterfeatures/acid-spray.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234593, "modifiedTime": 1672335444093, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!kZpl32DBmqxlRegX" } diff --git a/packs/src/monsterfeatures/adhesive.json b/packs/src/monsterfeatures/adhesive.json index a70a016250..da0c17ae91 100644 --- a/packs/src/monsterfeatures/adhesive.json +++ b/packs/src/monsterfeatures/adhesive.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234510, "modifiedTime": 1672335441736, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8H0t1US0zvNPWtQ9" } diff --git a/packs/src/monsterfeatures/aggressive.json b/packs/src/monsterfeatures/aggressive.json index 2cca02236a..ef156dd565 100644 --- a/packs/src/monsterfeatures/aggressive.json +++ b/packs/src/monsterfeatures/aggressive.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234507, "modifiedTime": 1672335438914, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7NML6SkyvOsZ17iq" } diff --git a/packs/src/monsterfeatures/air-form.json b/packs/src/monsterfeatures/air-form.json index 804140fc39..20ae057247 100644 --- a/packs/src/monsterfeatures/air-form.json +++ b/packs/src/monsterfeatures/air-form.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234552, "modifiedTime": 1672335435297, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!TyDSfYTJeKv7c8lB" } diff --git a/packs/src/monsterfeatures/ambusher.json b/packs/src/monsterfeatures/ambusher.json index 03a6660eb2..751dc4eb49 100644 --- a/packs/src/monsterfeatures/ambusher.json +++ b/packs/src/monsterfeatures/ambusher.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234517, "modifiedTime": 1672335433142, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!EMygUh5uRujWaFYK" } diff --git a/packs/src/monsterfeatures/amorphous.json b/packs/src/monsterfeatures/amorphous.json index 05f8fbf627..3038528329 100644 --- a/packs/src/monsterfeatures/amorphous.json +++ b/packs/src/monsterfeatures/amorphous.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234499, "modifiedTime": 1672335430564, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3lDp8DtWwNDHSvxX" } diff --git a/packs/src/monsterfeatures/amphibious.json b/packs/src/monsterfeatures/amphibious.json index dd4d37f194..85a6c02380 100644 --- a/packs/src/monsterfeatures/amphibious.json +++ b/packs/src/monsterfeatures/amphibious.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234501, "modifiedTime": 1672335428669, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!4Fap14HgvAwTAZuD" } diff --git a/packs/src/monsterfeatures/angelic-weapons.json b/packs/src/monsterfeatures/angelic-weapons.json index 6cf09e78ee..96aa9a3082 100644 --- a/packs/src/monsterfeatures/angelic-weapons.json +++ b/packs/src/monsterfeatures/angelic-weapons.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234572, "modifiedTime": 1672335425867, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!cz1LUaiXG8GshgU9" } diff --git a/packs/src/monsterfeatures/animate-chains.json b/packs/src/monsterfeatures/animate-chains.json index cf8646f5f5..441e86a213 100644 --- a/packs/src/monsterfeatures/animate-chains.json +++ b/packs/src/monsterfeatures/animate-chains.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234506, "modifiedTime": 1672335423463, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!6ej6jlwh8ryDEzlB" } diff --git a/packs/src/monsterfeatures/animate-trees.json b/packs/src/monsterfeatures/animate-trees.json index 8468d8db82..0404cb97ab 100644 --- a/packs/src/monsterfeatures/animate-trees.json +++ b/packs/src/monsterfeatures/animate-trees.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234590, "modifiedTime": 1672335420956, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!j6F0v4guYhRYWddT" } diff --git a/packs/src/monsterfeatures/antennae.json b/packs/src/monsterfeatures/antennae.json index fb87d49b25..2dde0226f6 100644 --- a/packs/src/monsterfeatures/antennae.json +++ b/packs/src/monsterfeatures/antennae.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234505, "modifiedTime": 1672335418948, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!6HJpLJxctQdMLeuB" } diff --git a/packs/src/monsterfeatures/antimagic-susceptibility.json b/packs/src/monsterfeatures/antimagic-susceptibility.json index d67ac16ca4..358d830e47 100644 --- a/packs/src/monsterfeatures/antimagic-susceptibility.json +++ b/packs/src/monsterfeatures/antimagic-susceptibility.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234531, "modifiedTime": 1672335416740, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!KMQAgNxBCAHrd2JU" } diff --git a/packs/src/monsterfeatures/assassinate.json b/packs/src/monsterfeatures/assassinate.json index 4469b65665..c32fb3d9e4 100644 --- a/packs/src/monsterfeatures/assassinate.json +++ b/packs/src/monsterfeatures/assassinate.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234527, "modifiedTime": 1672335414391, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!IwqUTWqdgrKEvohr" } diff --git a/packs/src/monsterfeatures/aversion-of-fire.json b/packs/src/monsterfeatures/aversion-of-fire.json index 3a9ec82bee..1b65898eaf 100644 --- a/packs/src/monsterfeatures/aversion-of-fire.json +++ b/packs/src/monsterfeatures/aversion-of-fire.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234615, "modifiedTime": 1672335411545, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!uxFQ3TxO3isW5WKK" } diff --git a/packs/src/monsterfeatures/barbed-hide.json b/packs/src/monsterfeatures/barbed-hide.json index 4a51f70699..678fda5a98 100644 --- a/packs/src/monsterfeatures/barbed-hide.json +++ b/packs/src/monsterfeatures/barbed-hide.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234547, "modifiedTime": 1672335570428, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!QMGBV7OSnXqWLdhr" } diff --git a/packs/src/monsterfeatures/beast-of-burden.json b/packs/src/monsterfeatures/beast-of-burden.json index bc29ea7fe0..7a95e56926 100644 --- a/packs/src/monsterfeatures/beast-of-burden.json +++ b/packs/src/monsterfeatures/beast-of-burden.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234599, "modifiedTime": 1672335567763, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!mUwZfxiOyao1Xuxt" } diff --git a/packs/src/monsterfeatures/berserk.json b/packs/src/monsterfeatures/berserk.json index befc220546..b80f4b8bbe 100644 --- a/packs/src/monsterfeatures/berserk.json +++ b/packs/src/monsterfeatures/berserk.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234547, "modifiedTime": 1672335565693, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!QOWoa60SwvsQJifN" } diff --git a/packs/src/monsterfeatures/bite.json b/packs/src/monsterfeatures/bite.json index 372db6bf9d..06deffa724 100644 --- a/packs/src/monsterfeatures/bite.json +++ b/packs/src/monsterfeatures/bite.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -116,5 +121,6 @@ "createdTime": 1661787234559, "modifiedTime": 1672335563706, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WdpSeGqhZpptz37y" } diff --git a/packs/src/monsterfeatures/blasphemous-word.json b/packs/src/monsterfeatures/blasphemous-word.json index 318edd9da6..9f4c50d503 100644 --- a/packs/src/monsterfeatures/blasphemous-word.json +++ b/packs/src/monsterfeatures/blasphemous-word.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -84,5 +89,6 @@ "createdTime": 1661787234563, "modifiedTime": 1672335560632, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Xwj2GPqTxngS0j2L" } diff --git a/packs/src/monsterfeatures/blind-senses.json b/packs/src/monsterfeatures/blind-senses.json index f5ca183bd0..cb830d94c2 100644 --- a/packs/src/monsterfeatures/blind-senses.json +++ b/packs/src/monsterfeatures/blind-senses.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234507, "modifiedTime": 1672335556632, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7nbokvWfSckl2iWz" } diff --git a/packs/src/monsterfeatures/blinding-breath.json b/packs/src/monsterfeatures/blinding-breath.json index 2720077bcd..de6ab51a7f 100644 --- a/packs/src/monsterfeatures/blinding-breath.json +++ b/packs/src/monsterfeatures/blinding-breath.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234612, "modifiedTime": 1672335553304, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!tHvaJB8tXSriVXRm" } diff --git a/packs/src/monsterfeatures/blinding-dust.json b/packs/src/monsterfeatures/blinding-dust.json index 5622bc3922..48957d0e45 100644 --- a/packs/src/monsterfeatures/blinding-dust.json +++ b/packs/src/monsterfeatures/blinding-dust.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234567, "modifiedTime": 1672335550516, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ao6mxTJVYy7WaVgW" } diff --git a/packs/src/monsterfeatures/blinding-gaze.json b/packs/src/monsterfeatures/blinding-gaze.json index c8416229ce..898caadb8f 100644 --- a/packs/src/monsterfeatures/blinding-gaze.json +++ b/packs/src/monsterfeatures/blinding-gaze.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 3, @@ -84,5 +89,6 @@ "createdTime": 1661787234509, "modifiedTime": 1672335548494, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8C6hkMXWLeymmJ5C" } diff --git a/packs/src/monsterfeatures/blinding-spittle.json b/packs/src/monsterfeatures/blinding-spittle.json index 53ca611259..37eed68539 100644 --- a/packs/src/monsterfeatures/blinding-spittle.json +++ b/packs/src/monsterfeatures/blinding-spittle.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234495, "modifiedTime": 1672335545635, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!0awyZX05OnVLF4k2" } diff --git a/packs/src/monsterfeatures/blood-frenzy.json b/packs/src/monsterfeatures/blood-frenzy.json index f0016ed2d1..84f020d928 100644 --- a/packs/src/monsterfeatures/blood-frenzy.json +++ b/packs/src/monsterfeatures/blood-frenzy.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234513, "modifiedTime": 1672335543399, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!B2kZOyrB7poB4liR" } diff --git a/packs/src/monsterfeatures/bound.json b/packs/src/monsterfeatures/bound.json index 5e62549c86..3c6b03a4aa 100644 --- a/packs/src/monsterfeatures/bound.json +++ b/packs/src/monsterfeatures/bound.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234613, "modifiedTime": 1672335540865, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!twrIaUZ79Yn5qpML" } diff --git a/packs/src/monsterfeatures/brave.json b/packs/src/monsterfeatures/brave.json index 0ccdb5adcc..a4d4e817b7 100644 --- a/packs/src/monsterfeatures/brave.json +++ b/packs/src/monsterfeatures/brave.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234497, "modifiedTime": 1672335538495, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!108q5fJnnBRoLKfe" } diff --git a/packs/src/monsterfeatures/breath-weapons.json b/packs/src/monsterfeatures/breath-weapons.json index f0d7d82619..97669fdc56 100644 --- a/packs/src/monsterfeatures/breath-weapons.json +++ b/packs/src/monsterfeatures/breath-weapons.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234532, "modifiedTime": 1672335533713, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!KcUjvqIXZI3APp5a" } diff --git a/packs/src/monsterfeatures/brute.json b/packs/src/monsterfeatures/brute.json index a19642c659..7fd607a279 100644 --- a/packs/src/monsterfeatures/brute.json +++ b/packs/src/monsterfeatures/brute.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234606, "modifiedTime": 1672335531878, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!q8w1UF9woZDGIwvS" } diff --git a/packs/src/monsterfeatures/cast-a-spell.json b/packs/src/monsterfeatures/cast-a-spell.json index 1a1f7cd10b..24057ce541 100644 --- a/packs/src/monsterfeatures/cast-a-spell.json +++ b/packs/src/monsterfeatures/cast-a-spell.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 3, @@ -84,5 +89,6 @@ "createdTime": 1661787234506, "modifiedTime": 1672335529673, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7HPC39yg8OYshJos" } diff --git a/packs/src/monsterfeatures/change-shape.json b/packs/src/monsterfeatures/change-shape.json index f63be035ab..6e00331d71 100644 --- a/packs/src/monsterfeatures/change-shape.json +++ b/packs/src/monsterfeatures/change-shape.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234530, "modifiedTime": 1672335527261, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!JsAys4RSGi4lN5Jy" } diff --git a/packs/src/monsterfeatures/channel-negative-energy.json b/packs/src/monsterfeatures/channel-negative-energy.json index 202a0087df..6d7cebed7f 100644 --- a/packs/src/monsterfeatures/channel-negative-energy.json +++ b/packs/src/monsterfeatures/channel-negative-energy.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -84,5 +89,6 @@ "createdTime": 1661787234535, "modifiedTime": 1672335525024, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LO4nrudXAKJ4DbQI" } diff --git a/packs/src/monsterfeatures/charge.json b/packs/src/monsterfeatures/charge.json index 0beff18c38..098d7dab9c 100644 --- a/packs/src/monsterfeatures/charge.json +++ b/packs/src/monsterfeatures/charge.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234560, "modifiedTime": 1672335522635, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WqRzbokPG0am6AHb" } diff --git a/packs/src/monsterfeatures/charm.json b/packs/src/monsterfeatures/charm.json index 2903b2e319..ae61cefc9f 100644 --- a/packs/src/monsterfeatures/charm.json +++ b/packs/src/monsterfeatures/charm.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234622, "modifiedTime": 1672335520716, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ykoo88OJOdfYH7mH" } diff --git a/packs/src/monsterfeatures/children-of-the-night.json b/packs/src/monsterfeatures/children-of-the-night.json index dd84ef3155..748e5fae12 100644 --- a/packs/src/monsterfeatures/children-of-the-night.json +++ b/packs/src/monsterfeatures/children-of-the-night.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234574, "modifiedTime": 1672335518512, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dm2G9HupHZbZRvNm" } diff --git a/packs/src/monsterfeatures/chomp.json b/packs/src/monsterfeatures/chomp.json index 25246db247..46a1fc14c0 100644 --- a/packs/src/monsterfeatures/chomp.json +++ b/packs/src/monsterfeatures/chomp.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -84,5 +89,6 @@ "createdTime": 1661787234505, "modifiedTime": 1672335515749, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!5rr8YdsGtL8WxEuE" } diff --git a/packs/src/monsterfeatures/claw-attack.json b/packs/src/monsterfeatures/claw-attack.json index 35eb337e5d..317ce6f0cd 100644 --- a/packs/src/monsterfeatures/claw-attack.json +++ b/packs/src/monsterfeatures/claw-attack.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234516, "modifiedTime": 1672335513298, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!DPrO7eVVxiKD8QWD" } diff --git a/packs/src/monsterfeatures/cold-breath.json b/packs/src/monsterfeatures/cold-breath.json index 26b11a81fe..dee4b6a3ac 100644 --- a/packs/src/monsterfeatures/cold-breath.json +++ b/packs/src/monsterfeatures/cold-breath.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234587, "modifiedTime": 1672335510515, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!iHOaiOqwUWIfCljJ" } diff --git a/packs/src/monsterfeatures/confer-fire-resistance.json b/packs/src/monsterfeatures/confer-fire-resistance.json index 6efb81cc37..17b145664e 100644 --- a/packs/src/monsterfeatures/confer-fire-resistance.json +++ b/packs/src/monsterfeatures/confer-fire-resistance.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234616, "modifiedTime": 1672335508712, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!wzgGJyVFGIcj1XAb" } diff --git a/packs/src/monsterfeatures/consume-life.json b/packs/src/monsterfeatures/consume-life.json index 8f7abb601a..2db903ddfd 100644 --- a/packs/src/monsterfeatures/consume-life.json +++ b/packs/src/monsterfeatures/consume-life.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234607, "modifiedTime": 1672335506336, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!r2nM5I77LnSvkLvD" } diff --git a/packs/src/monsterfeatures/corrode-metal.json b/packs/src/monsterfeatures/corrode-metal.json index 4c3db566c3..2b931b1fa0 100644 --- a/packs/src/monsterfeatures/corrode-metal.json +++ b/packs/src/monsterfeatures/corrode-metal.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234496, "modifiedTime": 1672335503971, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!0z5v1BfMqQl5Z7UW" } diff --git a/packs/src/monsterfeatures/corrosive-form.json b/packs/src/monsterfeatures/corrosive-form.json index 7c7af9bde2..16f5f4bae4 100644 --- a/packs/src/monsterfeatures/corrosive-form.json +++ b/packs/src/monsterfeatures/corrosive-form.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234570, "modifiedTime": 1672335501748, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!cZm13DxOe9lZyGFT" } diff --git a/packs/src/monsterfeatures/create-specter.json b/packs/src/monsterfeatures/create-specter.json index 4442b5fd72..1611b48027 100644 --- a/packs/src/monsterfeatures/create-specter.json +++ b/packs/src/monsterfeatures/create-specter.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234548, "modifiedTime": 1672335499576, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!SlAF2AE4ZKoUvQql" } diff --git a/packs/src/monsterfeatures/create-whirlwind.json b/packs/src/monsterfeatures/create-whirlwind.json index 2db4c34e96..668db4c466 100644 --- a/packs/src/monsterfeatures/create-whirlwind.json +++ b/packs/src/monsterfeatures/create-whirlwind.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234497, "modifiedTime": 1672335497110, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!1XeF2VMMPw7QYffo" } diff --git a/packs/src/monsterfeatures/cunning-action.json b/packs/src/monsterfeatures/cunning-action.json index 6e68ef2522..0df0e259a3 100644 --- a/packs/src/monsterfeatures/cunning-action.json +++ b/packs/src/monsterfeatures/cunning-action.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234528, "modifiedTime": 1672335493909, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!J36uxDWfbkflPV7k" } diff --git a/packs/src/monsterfeatures/damage-transfer.json b/packs/src/monsterfeatures/damage-transfer.json index 35872a8f32..67430940d6 100644 --- a/packs/src/monsterfeatures/damage-transfer.json +++ b/packs/src/monsterfeatures/damage-transfer.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234496, "modifiedTime": 1672335491944, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!0npeEcwmiVMdwGMV" } diff --git a/packs/src/monsterfeatures/dark-devotion.json b/packs/src/monsterfeatures/dark-devotion.json index 19c2fd2f95..4b1e9b0d46 100644 --- a/packs/src/monsterfeatures/dark-devotion.json +++ b/packs/src/monsterfeatures/dark-devotion.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234562, "modifiedTime": 1672335489676, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XFvk6ywwZWTkMmQR" } diff --git a/packs/src/monsterfeatures/darkness-aura.json b/packs/src/monsterfeatures/darkness-aura.json index e066555eb1..d74dc742d8 100644 --- a/packs/src/monsterfeatures/darkness-aura.json +++ b/packs/src/monsterfeatures/darkness-aura.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234591, "modifiedTime": 1672335486969, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!jhAU6pb5GvbjwTX7" } diff --git a/packs/src/monsterfeatures/deadly-leap.json b/packs/src/monsterfeatures/deadly-leap.json index 02937ced7c..f690ab68ae 100644 --- a/packs/src/monsterfeatures/deadly-leap.json +++ b/packs/src/monsterfeatures/deadly-leap.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234568, "modifiedTime": 1672335740014, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!bG5Z45jj4wz0N3T6" } diff --git a/packs/src/monsterfeatures/death-burst.json b/packs/src/monsterfeatures/death-burst.json index 48f541c12a..9aa4c2ff6f 100644 --- a/packs/src/monsterfeatures/death-burst.json +++ b/packs/src/monsterfeatures/death-burst.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234603, "modifiedTime": 1672335737084, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!net3yBKQoxl8bZ4r" } diff --git a/packs/src/monsterfeatures/death-glare.json b/packs/src/monsterfeatures/death-glare.json index 0884a41684..b06f787eeb 100644 --- a/packs/src/monsterfeatures/death-glare.json +++ b/packs/src/monsterfeatures/death-glare.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234604, "modifiedTime": 1672335734961, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!o8G8BNPJOWoCKzR5" } diff --git a/packs/src/monsterfeatures/death-throes.json b/packs/src/monsterfeatures/death-throes.json index 90fcb7e9e6..33eb6d357f 100644 --- a/packs/src/monsterfeatures/death-throes.json +++ b/packs/src/monsterfeatures/death-throes.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234519, "modifiedTime": 1672335731472, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!EmlE1a0rhucK2UT1" } diff --git a/packs/src/monsterfeatures/detect-legendary.json b/packs/src/monsterfeatures/detect-legendary.json index 3d82272e78..2ae4e8f562 100644 --- a/packs/src/monsterfeatures/detect-legendary.json +++ b/packs/src/monsterfeatures/detect-legendary.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234541, "modifiedTime": 1672335727255, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!NmWSgqxpYfhrvQKq" } diff --git a/packs/src/monsterfeatures/devil-sight.json b/packs/src/monsterfeatures/devil-sight.json index e8c9a257fb..aa6e47011d 100644 --- a/packs/src/monsterfeatures/devil-sight.json +++ b/packs/src/monsterfeatures/devil-sight.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234553, "modifiedTime": 1672335724735, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!UjbgbOnd6ltjagZm" } diff --git a/packs/src/monsterfeatures/disrupt-life.json b/packs/src/monsterfeatures/disrupt-life.json index da129c8f47..f620f34578 100644 --- a/packs/src/monsterfeatures/disrupt-life.json +++ b/packs/src/monsterfeatures/disrupt-life.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 3, @@ -84,5 +89,6 @@ "createdTime": 1661787234518, "modifiedTime": 1672335722684, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!EguIm3u5kkopYwEM" } diff --git a/packs/src/monsterfeatures/divine-awareness.json b/packs/src/monsterfeatures/divine-awareness.json index 09436a41d0..10d6e6c8e1 100644 --- a/packs/src/monsterfeatures/divine-awareness.json +++ b/packs/src/monsterfeatures/divine-awareness.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234596, "modifiedTime": 1672335720614, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!lOJK48AtlIcfYPPB" } diff --git a/packs/src/monsterfeatures/divine-eminence.json b/packs/src/monsterfeatures/divine-eminence.json index bdc6a99809..552a998351 100644 --- a/packs/src/monsterfeatures/divine-eminence.json +++ b/packs/src/monsterfeatures/divine-eminence.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234597, "modifiedTime": 1672335718280, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!lVrnjqBrv90VH96d" } diff --git a/packs/src/monsterfeatures/draining-kiss.json b/packs/src/monsterfeatures/draining-kiss.json index 5c4ba07b6a..2215d9735a 100644 --- a/packs/src/monsterfeatures/draining-kiss.json +++ b/packs/src/monsterfeatures/draining-kiss.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234589, "modifiedTime": 1672335715817, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!iq0J225DCbHYU2hU" } diff --git a/packs/src/monsterfeatures/dreadful-glare.json b/packs/src/monsterfeatures/dreadful-glare.json index 9dcc7507c2..a06d2e587e 100644 --- a/packs/src/monsterfeatures/dreadful-glare.json +++ b/packs/src/monsterfeatures/dreadful-glare.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234524, "modifiedTime": 1672335713413, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!H306eluIH47Wfr0U" } diff --git a/packs/src/monsterfeatures/duergar-resilience.json b/packs/src/monsterfeatures/duergar-resilience.json index eb73198d36..6e8d7b3014 100644 --- a/packs/src/monsterfeatures/duergar-resilience.json +++ b/packs/src/monsterfeatures/duergar-resilience.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234558, "modifiedTime": 1672335711131, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WHnLJRaXfIW7Z28t" } diff --git a/packs/src/monsterfeatures/earth-glide.json b/packs/src/monsterfeatures/earth-glide.json index 1df3783c08..b7a35c0816 100644 --- a/packs/src/monsterfeatures/earth-glide.json +++ b/packs/src/monsterfeatures/earth-glide.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234622, "modifiedTime": 1672335708064, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!yrpqazOHqI4BrYW4" } diff --git a/packs/src/monsterfeatures/echolocation.json b/packs/src/monsterfeatures/echolocation.json index 14fa26d3fa..b64b27e79d 100644 --- a/packs/src/monsterfeatures/echolocation.json +++ b/packs/src/monsterfeatures/echolocation.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234609, "modifiedTime": 1672335705674, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!rUongiWD51ZopRk2" } diff --git a/packs/src/monsterfeatures/elemental-demise.json b/packs/src/monsterfeatures/elemental-demise.json index e96793d115..e618ec3edb 100644 --- a/packs/src/monsterfeatures/elemental-demise.json +++ b/packs/src/monsterfeatures/elemental-demise.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234558, "modifiedTime": 1672335703551, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WbaKH3NLA3mvylfM" } diff --git a/packs/src/monsterfeatures/engulf.json b/packs/src/monsterfeatures/engulf.json index 5c50b6ca74..cca7f4f1b9 100644 --- a/packs/src/monsterfeatures/engulf.json +++ b/packs/src/monsterfeatures/engulf.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234518, "modifiedTime": 1672335701493, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Eh80lkzHiEOJP8FI" } diff --git a/packs/src/monsterfeatures/enlarge.json b/packs/src/monsterfeatures/enlarge.json index 090beb5111..773a04b934 100644 --- a/packs/src/monsterfeatures/enlarge.json +++ b/packs/src/monsterfeatures/enlarge.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234591, "modifiedTime": 1672335699110, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!jZgeHxCR8pF6FOmQ" } diff --git a/packs/src/monsterfeatures/enslave.json b/packs/src/monsterfeatures/enslave.json index e9dcbd2ef9..5a105cd4bc 100644 --- a/packs/src/monsterfeatures/enslave.json +++ b/packs/src/monsterfeatures/enslave.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234580, "modifiedTime": 1672335696160, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gbcy9MyUF06iUC88" } diff --git a/packs/src/monsterfeatures/ephemeral.json b/packs/src/monsterfeatures/ephemeral.json index 00fe85e690..7e71bd3567 100644 --- a/packs/src/monsterfeatures/ephemeral.json +++ b/packs/src/monsterfeatures/ephemeral.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234557, "modifiedTime": 1672335693650, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!VrPyFE3Hhjh0QjIO" } diff --git a/packs/src/monsterfeatures/ethereal-jaunt.json b/packs/src/monsterfeatures/ethereal-jaunt.json index 1f90550b44..18faefa6f8 100644 --- a/packs/src/monsterfeatures/ethereal-jaunt.json +++ b/packs/src/monsterfeatures/ethereal-jaunt.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234499, "modifiedTime": 1672335691371, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3iLXiqhhOgXOMMg7" } diff --git a/packs/src/monsterfeatures/ethereal-sight.json b/packs/src/monsterfeatures/ethereal-sight.json index cc184bc0af..f3b55a9490 100644 --- a/packs/src/monsterfeatures/ethereal-sight.json +++ b/packs/src/monsterfeatures/ethereal-sight.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234560, "modifiedTime": 1672335689629, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!We6R4thWKYDRYlEc" } diff --git a/packs/src/monsterfeatures/ethereal-stride.json b/packs/src/monsterfeatures/ethereal-stride.json index 6dc15fb6ac..90e6417cb7 100644 --- a/packs/src/monsterfeatures/ethereal-stride.json +++ b/packs/src/monsterfeatures/ethereal-stride.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234540, "modifiedTime": 1672335686940, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!NfTCXq8eRrqjhvAo" } diff --git a/packs/src/monsterfeatures/etherealness.json b/packs/src/monsterfeatures/etherealness.json index 17e321f923..799a5b2716 100644 --- a/packs/src/monsterfeatures/etherealness.json +++ b/packs/src/monsterfeatures/etherealness.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234609, "modifiedTime": 1672335683807, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!rDoNJnKdY47x8MD4" } diff --git a/packs/src/monsterfeatures/evasion.json b/packs/src/monsterfeatures/evasion.json index 1a172ea1b5..4e39f91024 100644 --- a/packs/src/monsterfeatures/evasion.json +++ b/packs/src/monsterfeatures/evasion.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234617, "modifiedTime": 1672335680206, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!xOgrn5QXzSP4QN6V" } diff --git a/packs/src/monsterfeatures/false-appearance.json b/packs/src/monsterfeatures/false-appearance.json index 3ab0f01cec..7de74ff2b5 100644 --- a/packs/src/monsterfeatures/false-appearance.json +++ b/packs/src/monsterfeatures/false-appearance.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234595, "modifiedTime": 1672335677470, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!kyVgQNSa12loxVvr" } diff --git a/packs/src/monsterfeatures/faultless-tracker.json b/packs/src/monsterfeatures/faultless-tracker.json index f926bfb114..e5c5d4f382 100644 --- a/packs/src/monsterfeatures/faultless-tracker.json +++ b/packs/src/monsterfeatures/faultless-tracker.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234516, "modifiedTime": 1672335675523, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!E8SiDA7Z3Ybd6wt0" } diff --git a/packs/src/monsterfeatures/fear-aura.json b/packs/src/monsterfeatures/fear-aura.json index bb6ad38590..6fb8d4e2b2 100644 --- a/packs/src/monsterfeatures/fear-aura.json +++ b/packs/src/monsterfeatures/fear-aura.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234539, "modifiedTime": 1672335673682, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MLVEyA7VcWu9uXqV" } diff --git a/packs/src/monsterfeatures/fetid-cloud.json b/packs/src/monsterfeatures/fetid-cloud.json index 3e387acf6e..dd97ea56c5 100644 --- a/packs/src/monsterfeatures/fetid-cloud.json +++ b/packs/src/monsterfeatures/fetid-cloud.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234563, "modifiedTime": 1672335671239, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XwcFK21aM2BThgSk" } diff --git a/packs/src/monsterfeatures/fey-ancestry.json b/packs/src/monsterfeatures/fey-ancestry.json index 4767636603..a4ffff95e5 100644 --- a/packs/src/monsterfeatures/fey-ancestry.json +++ b/packs/src/monsterfeatures/fey-ancestry.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234537, "modifiedTime": 1672335668695, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LvSBjRKoCAKaAnQy" } diff --git a/packs/src/monsterfeatures/fey-charm.json b/packs/src/monsterfeatures/fey-charm.json index 133d63b038..e8b4bfa664 100644 --- a/packs/src/monsterfeatures/fey-charm.json +++ b/packs/src/monsterfeatures/fey-charm.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234548, "modifiedTime": 1672335666423, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!SGgVxdZbmsStfeGB" } diff --git a/packs/src/monsterfeatures/fire-absorption.json b/packs/src/monsterfeatures/fire-absorption.json index af3a0e72b6..ef64019922 100644 --- a/packs/src/monsterfeatures/fire-absorption.json +++ b/packs/src/monsterfeatures/fire-absorption.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234552, "modifiedTime": 1672335663799, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!UH57LTsTGDxl2oS6" } diff --git a/packs/src/monsterfeatures/fire-aura.json b/packs/src/monsterfeatures/fire-aura.json index 4efa810148..47ace499ca 100644 --- a/packs/src/monsterfeatures/fire-aura.json +++ b/packs/src/monsterfeatures/fire-aura.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234535, "modifiedTime": 1672335661674, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LJTY3nl1cp9go4eT" } diff --git a/packs/src/monsterfeatures/fire-breath.json b/packs/src/monsterfeatures/fire-breath.json index 2899375968..05e62659dc 100644 --- a/packs/src/monsterfeatures/fire-breath.json +++ b/packs/src/monsterfeatures/fire-breath.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234568, "modifiedTime": 1672335659330, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!bGSW8IuWURWiWtxr" } diff --git a/packs/src/monsterfeatures/fire-form.json b/packs/src/monsterfeatures/fire-form.json index 3703f7467f..67b32d6751 100644 --- a/packs/src/monsterfeatures/fire-form.json +++ b/packs/src/monsterfeatures/fire-form.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234493, "modifiedTime": 1672335656049, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!0YuGSS8E8ElHLRyb" } diff --git a/packs/src/monsterfeatures/first-roar.json b/packs/src/monsterfeatures/first-roar.json index 0ba707d5a1..6c601f1584 100644 --- a/packs/src/monsterfeatures/first-roar.json +++ b/packs/src/monsterfeatures/first-roar.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234549, "modifiedTime": 1672335653874, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!T25IRJ66yUqi2F1m" } diff --git a/packs/src/monsterfeatures/fling.json b/packs/src/monsterfeatures/fling.json index cf406b75a9..f2523fa7f9 100644 --- a/packs/src/monsterfeatures/fling.json +++ b/packs/src/monsterfeatures/fling.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234584, "modifiedTime": 1672335651727, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hxXzd3KCfnqnT89w" } diff --git a/packs/src/monsterfeatures/flyby.json b/packs/src/monsterfeatures/flyby.json index 4a0280764f..756f9a7f74 100644 --- a/packs/src/monsterfeatures/flyby.json +++ b/packs/src/monsterfeatures/flyby.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234507, "modifiedTime": 1672335649716, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7WfeHV27l7DMcuTG" } diff --git a/packs/src/monsterfeatures/flying-sword.json b/packs/src/monsterfeatures/flying-sword.json index 678c01639a..9e8c6dd7f4 100644 --- a/packs/src/monsterfeatures/flying-sword.json +++ b/packs/src/monsterfeatures/flying-sword.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234543, "modifiedTime": 1672335647897, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Ouvju0Y3SoYb5EMR" } diff --git a/packs/src/monsterfeatures/freedom-of-movement.json b/packs/src/monsterfeatures/freedom-of-movement.json index 30d3dc8303..311ce517ef 100644 --- a/packs/src/monsterfeatures/freedom-of-movement.json +++ b/packs/src/monsterfeatures/freedom-of-movement.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234577, "modifiedTime": 1672335645524, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!fUMY4b9snsiKl30e" } diff --git a/packs/src/monsterfeatures/freeze.json b/packs/src/monsterfeatures/freeze.json index ca2125a283..6838e8e4c3 100644 --- a/packs/src/monsterfeatures/freeze.json +++ b/packs/src/monsterfeatures/freeze.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234599, "modifiedTime": 1672335643328, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!m0FA3UM62hlTPVSA" } diff --git a/packs/src/monsterfeatures/frightening-gaze.json b/packs/src/monsterfeatures/frightening-gaze.json index 3d3b0c4554..4112e1aec2 100644 --- a/packs/src/monsterfeatures/frightening-gaze.json +++ b/packs/src/monsterfeatures/frightening-gaze.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -84,5 +89,6 @@ "createdTime": 1661787234571, "modifiedTime": 1672335640862, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!cpnrDGQrqgPlSmwR" } diff --git a/packs/src/monsterfeatures/frightful-presence.json b/packs/src/monsterfeatures/frightful-presence.json index e9c8dfc383..31171e7df3 100644 --- a/packs/src/monsterfeatures/frightful-presence.json +++ b/packs/src/monsterfeatures/frightful-presence.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234602, "modifiedTime": 1672335638732, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nb6zOmwIIJBLz4iT" } diff --git a/packs/src/monsterfeatures/frost-breath.json b/packs/src/monsterfeatures/frost-breath.json index fa64527368..558cdeee4b 100644 --- a/packs/src/monsterfeatures/frost-breath.json +++ b/packs/src/monsterfeatures/frost-breath.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234565, "modifiedTime": 1672335636492, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Z7U6z4HD1ORlkTIJ" } diff --git a/packs/src/monsterfeatures/gibbering.json b/packs/src/monsterfeatures/gibbering.json index 7ea28c0815..f1938d6b1a 100644 --- a/packs/src/monsterfeatures/gibbering.json +++ b/packs/src/monsterfeatures/gibbering.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234573, "modifiedTime": 1672335634223, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dPPLbo3Unu3TqZrs" } diff --git a/packs/src/monsterfeatures/gnome-cunning.json b/packs/src/monsterfeatures/gnome-cunning.json index a5c6d46245..4f48ea8328 100644 --- a/packs/src/monsterfeatures/gnome-cunning.json +++ b/packs/src/monsterfeatures/gnome-cunning.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234495, "modifiedTime": 1672335631189, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!0gl43AC57cvJaW7D" } diff --git a/packs/src/monsterfeatures/grappler.json b/packs/src/monsterfeatures/grappler.json index dd6da58956..22d82907b8 100644 --- a/packs/src/monsterfeatures/grappler.json +++ b/packs/src/monsterfeatures/grappler.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234592, "modifiedTime": 1672335628507, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!kP9t6MAeUvBBmoM3" } diff --git a/packs/src/monsterfeatures/grasping-tendrils.json b/packs/src/monsterfeatures/grasping-tendrils.json index 4e6b94762c..9d3a0ca970 100644 --- a/packs/src/monsterfeatures/grasping-tendrils.json +++ b/packs/src/monsterfeatures/grasping-tendrils.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234537, "modifiedTime": 1672335626084, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LkepRN2rP3Hp4orY" } diff --git a/packs/src/monsterfeatures/haste.json b/packs/src/monsterfeatures/haste.json index 1b4cdb430e..e867e66930 100644 --- a/packs/src/monsterfeatures/haste.json +++ b/packs/src/monsterfeatures/haste.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234565, "modifiedTime": 1672335622871, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ZIGTG2qhkJ54jEk4" } diff --git a/packs/src/monsterfeatures/heal-self.json b/packs/src/monsterfeatures/heal-self.json index cc80ee5c3b..707ffb6173 100644 --- a/packs/src/monsterfeatures/heal-self.json +++ b/packs/src/monsterfeatures/heal-self.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 3, @@ -84,5 +89,6 @@ "createdTime": 1661787234581, "modifiedTime": 1672335620632, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gklxiU0PKYSM7RWv" } diff --git a/packs/src/monsterfeatures/healing-touch.json b/packs/src/monsterfeatures/healing-touch.json index 52efa70c5b..85ec078f9c 100644 --- a/packs/src/monsterfeatures/healing-touch.json +++ b/packs/src/monsterfeatures/healing-touch.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234608, "modifiedTime": 1672335617695, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!r3Ugp8f5Ckw2EUHL" } diff --git a/packs/src/monsterfeatures/heart-sight.json b/packs/src/monsterfeatures/heart-sight.json index cbc7eafb11..12c4a0a3af 100644 --- a/packs/src/monsterfeatures/heart-sight.json +++ b/packs/src/monsterfeatures/heart-sight.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234586, "modifiedTime": 1672335615271, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!iCae1IDxHvRmjEgi" } diff --git a/packs/src/monsterfeatures/heated-body.json b/packs/src/monsterfeatures/heated-body.json index 3a8b354482..79df5dc117 100644 --- a/packs/src/monsterfeatures/heated-body.json +++ b/packs/src/monsterfeatures/heated-body.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234587, "modifiedTime": 1672335909941, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!iFNpsEMJT66eLoat" } diff --git a/packs/src/monsterfeatures/heated-weapons.json b/packs/src/monsterfeatures/heated-weapons.json index 2cfb88b05f..31ba8c8ecf 100644 --- a/packs/src/monsterfeatures/heated-weapons.json +++ b/packs/src/monsterfeatures/heated-weapons.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234585, "modifiedTime": 1672335907816, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!i3viKtKcSVeWLJFJ" } diff --git a/packs/src/monsterfeatures/hellish-rejuvenation.json b/packs/src/monsterfeatures/hellish-rejuvenation.json index 7ec56f57f8..35d411f2cc 100644 --- a/packs/src/monsterfeatures/hellish-rejuvenation.json +++ b/packs/src/monsterfeatures/hellish-rejuvenation.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234562, "modifiedTime": 1672335905764, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XmLuhZYd9WnCWBlU" } diff --git a/packs/src/monsterfeatures/hellish-weapons.json b/packs/src/monsterfeatures/hellish-weapons.json index 8286cc2bea..a9fc716806 100644 --- a/packs/src/monsterfeatures/hellish-weapons.json +++ b/packs/src/monsterfeatures/hellish-weapons.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234614, "modifiedTime": 1672335903792, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!uqoqQJ9NpMCPra6P" } diff --git a/packs/src/monsterfeatures/hold-breath.json b/packs/src/monsterfeatures/hold-breath.json index d325345225..a3355401df 100644 --- a/packs/src/monsterfeatures/hold-breath.json +++ b/packs/src/monsterfeatures/hold-breath.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234598, "modifiedTime": 1672335901417, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!lwC6jwy9bXberyWo" } diff --git a/packs/src/monsterfeatures/hooves.json b/packs/src/monsterfeatures/hooves.json index 3bb2524b1d..5b1949917e 100644 --- a/packs/src/monsterfeatures/hooves.json +++ b/packs/src/monsterfeatures/hooves.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234610, "modifiedTime": 1672335898349, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!re3oXQ3Xg4Z3Fr6O" } diff --git a/packs/src/monsterfeatures/horrific-appearance.json b/packs/src/monsterfeatures/horrific-appearance.json index 59e7570d6a..48518a0670 100644 --- a/packs/src/monsterfeatures/horrific-appearance.json +++ b/packs/src/monsterfeatures/horrific-appearance.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234564, "modifiedTime": 1672335895418, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!YShGyidij4sLpyzF" } diff --git a/packs/src/monsterfeatures/horrifying-visage.json b/packs/src/monsterfeatures/horrifying-visage.json index 8b6dadbf60..3dd0267ac5 100644 --- a/packs/src/monsterfeatures/horrifying-visage.json +++ b/packs/src/monsterfeatures/horrifying-visage.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234596, "modifiedTime": 1672335893253, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!lBN86BToCJgkakL3" } diff --git a/packs/src/monsterfeatures/horror-nimbus.json b/packs/src/monsterfeatures/horror-nimbus.json index c614b27051..0ef6582400 100644 --- a/packs/src/monsterfeatures/horror-nimbus.json +++ b/packs/src/monsterfeatures/horror-nimbus.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234583, "modifiedTime": 1672335890789, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hu2pgYS1RD7hglvg" } diff --git a/packs/src/monsterfeatures/ice-walk.json b/packs/src/monsterfeatures/ice-walk.json index 42f3b8389b..2658c8fb09 100644 --- a/packs/src/monsterfeatures/ice-walk.json +++ b/packs/src/monsterfeatures/ice-walk.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234564, "modifiedTime": 1672335888117, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!YKC7pwYkJSKn1vuw" } diff --git a/packs/src/monsterfeatures/ignited-illumination.json b/packs/src/monsterfeatures/ignited-illumination.json index be186338f5..14f6d606f9 100644 --- a/packs/src/monsterfeatures/ignited-illumination.json +++ b/packs/src/monsterfeatures/ignited-illumination.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234554, "modifiedTime": 1672335885761, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Uvy7vla2EhYSfTl0" } diff --git a/packs/src/monsterfeatures/illumination.json b/packs/src/monsterfeatures/illumination.json index 556374a348..9b044edf1e 100644 --- a/packs/src/monsterfeatures/illumination.json +++ b/packs/src/monsterfeatures/illumination.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234521, "modifiedTime": 1672335883340, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!F3gzBbCW7U14zkBF" } diff --git a/packs/src/monsterfeatures/illusory-appearance.json b/packs/src/monsterfeatures/illusory-appearance.json index 91793108f9..a4cd4c875f 100644 --- a/packs/src/monsterfeatures/illusory-appearance.json +++ b/packs/src/monsterfeatures/illusory-appearance.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234610, "modifiedTime": 1672335880972, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!s7kqggp9VLDb39nu" } diff --git a/packs/src/monsterfeatures/immutable-form.json b/packs/src/monsterfeatures/immutable-form.json index fe587ec8d6..0cc004da03 100644 --- a/packs/src/monsterfeatures/immutable-form.json +++ b/packs/src/monsterfeatures/immutable-form.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234539, "modifiedTime": 1672335878637, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MFuiImIvLzYA3osc" } diff --git a/packs/src/monsterfeatures/incorporeal-movement.json b/packs/src/monsterfeatures/incorporeal-movement.json index c9a2e0135e..d44e759659 100644 --- a/packs/src/monsterfeatures/incorporeal-movement.json +++ b/packs/src/monsterfeatures/incorporeal-movement.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234536, "modifiedTime": 1672335876206, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LUHmtIDD1VTreFqI" } diff --git a/packs/src/monsterfeatures/ink-cloud.json b/packs/src/monsterfeatures/ink-cloud.json index 3cdae02737..042644d470 100644 --- a/packs/src/monsterfeatures/ink-cloud.json +++ b/packs/src/monsterfeatures/ink-cloud.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234569, "modifiedTime": 1672335874265, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!bojUXmNOZ2rJVujD" } diff --git a/packs/src/monsterfeatures/innate-spellcasting.json b/packs/src/monsterfeatures/innate-spellcasting.json index 02f8294ead..c7a3ef8d58 100644 --- a/packs/src/monsterfeatures/innate-spellcasting.json +++ b/packs/src/monsterfeatures/innate-spellcasting.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234583, "modifiedTime": 1672335871990, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hkmTEk6klT6QL4K4" } diff --git a/packs/src/monsterfeatures/inscrutable.json b/packs/src/monsterfeatures/inscrutable.json index c2c76f69a7..3eeee94b5d 100644 --- a/packs/src/monsterfeatures/inscrutable.json +++ b/packs/src/monsterfeatures/inscrutable.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234521, "modifiedTime": 1672335869833, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!FHrFOjEfkdRm4u43" } diff --git a/packs/src/monsterfeatures/intoxicating-touch.json b/packs/src/monsterfeatures/intoxicating-touch.json index d9076a6318..13f7609bc4 100644 --- a/packs/src/monsterfeatures/intoxicating-touch.json +++ b/packs/src/monsterfeatures/intoxicating-touch.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234607, "modifiedTime": 1672335867022, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!qfWKOH5AawhmNSwl" } diff --git a/packs/src/monsterfeatures/invisibility.json b/packs/src/monsterfeatures/invisibility.json index b817d6bb56..93013f6362 100644 --- a/packs/src/monsterfeatures/invisibility.json +++ b/packs/src/monsterfeatures/invisibility.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234573, "modifiedTime": 1672335864557, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dA5X2eQuOtHywpQF" } diff --git a/packs/src/monsterfeatures/invisible-passage.json b/packs/src/monsterfeatures/invisible-passage.json index f23824f1b8..b3bfc678d4 100644 --- a/packs/src/monsterfeatures/invisible-passage.json +++ b/packs/src/monsterfeatures/invisible-passage.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234522, "modifiedTime": 1672335861964, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!FRIASnssihfMTZ7q" } diff --git a/packs/src/monsterfeatures/iron-scent.json b/packs/src/monsterfeatures/iron-scent.json index 9f80616cd9..959e765ce3 100644 --- a/packs/src/monsterfeatures/iron-scent.json +++ b/packs/src/monsterfeatures/iron-scent.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234581, "modifiedTime": 1672335859642, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gh5UPTS0L16fHYwB" } diff --git a/packs/src/monsterfeatures/keen-senses.json b/packs/src/monsterfeatures/keen-senses.json index ee419f4a5c..972a51f208 100644 --- a/packs/src/monsterfeatures/keen-senses.json +++ b/packs/src/monsterfeatures/keen-senses.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234530, "modifiedTime": 1672335857594, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!JnLN0Rz60WHXk2Fr" } diff --git a/packs/src/monsterfeatures/labyrinthine-recall.json b/packs/src/monsterfeatures/labyrinthine-recall.json index 329130935f..ecc1a9780c 100644 --- a/packs/src/monsterfeatures/labyrinthine-recall.json +++ b/packs/src/monsterfeatures/labyrinthine-recall.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234498, "modifiedTime": 1672335855313, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!1w6k5iHV8QSz5w46" } diff --git a/packs/src/monsterfeatures/lair-actions.json b/packs/src/monsterfeatures/lair-actions.json index 7775d4814a..968644326c 100644 --- a/packs/src/monsterfeatures/lair-actions.json +++ b/packs/src/monsterfeatures/lair-actions.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234544, "modifiedTime": 1672335852792, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!P0DMM1rgpoiBodDT" } diff --git a/packs/src/monsterfeatures/leadership.json b/packs/src/monsterfeatures/leadership.json index 7ba24f1eec..caa2f00f6a 100644 --- a/packs/src/monsterfeatures/leadership.json +++ b/packs/src/monsterfeatures/leadership.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234571, "modifiedTime": 1672335850907, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!cl5sUkAIeJoAG4gh" } diff --git a/packs/src/monsterfeatures/legendary-actions.json b/packs/src/monsterfeatures/legendary-actions.json index ef993150e2..8d8bbe026c 100644 --- a/packs/src/monsterfeatures/legendary-actions.json +++ b/packs/src/monsterfeatures/legendary-actions.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234612, "modifiedTime": 1672335848580, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!terEuqr148hQBkIq" } diff --git a/packs/src/monsterfeatures/legendary-resistance.json b/packs/src/monsterfeatures/legendary-resistance.json index d5ac7635b9..a036ee0b47 100644 --- a/packs/src/monsterfeatures/legendary-resistance.json +++ b/packs/src/monsterfeatures/legendary-resistance.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234527, "modifiedTime": 1672335845863, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!J1NxNTJ2qi05iAFF" } diff --git a/packs/src/monsterfeatures/light-sensitivity.json b/packs/src/monsterfeatures/light-sensitivity.json index 05298c479c..01fe763f19 100644 --- a/packs/src/monsterfeatures/light-sensitivity.json +++ b/packs/src/monsterfeatures/light-sensitivity.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234498, "modifiedTime": 1672335841725, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!2l557y06401lwsqs" } diff --git a/packs/src/monsterfeatures/lightning-absorption.json b/packs/src/monsterfeatures/lightning-absorption.json index 8fc1ae84ff..df26991f2e 100644 --- a/packs/src/monsterfeatures/lightning-absorption.json +++ b/packs/src/monsterfeatures/lightning-absorption.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234531, "modifiedTime": 1672335839390, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!KTsFgSQlDetDDm1f" } diff --git a/packs/src/monsterfeatures/lightning-breath.json b/packs/src/monsterfeatures/lightning-breath.json index a370db4c7d..5a6bc2038c 100644 --- a/packs/src/monsterfeatures/lightning-breath.json +++ b/packs/src/monsterfeatures/lightning-breath.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234536, "modifiedTime": 1672335836200, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LVnd9fq9cQj7rR0Q" } diff --git a/packs/src/monsterfeatures/lightning-storm.json b/packs/src/monsterfeatures/lightning-storm.json index b0068b8d24..ce8014bf3a 100644 --- a/packs/src/monsterfeatures/lightning-storm.json +++ b/packs/src/monsterfeatures/lightning-storm.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234579, "modifiedTime": 1672335833216, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gM767AhU36B6LUGU" } diff --git a/packs/src/monsterfeatures/limited-amphibiousness.json b/packs/src/monsterfeatures/limited-amphibiousness.json index 835e0e5587..f17679cc83 100644 --- a/packs/src/monsterfeatures/limited-amphibiousness.json +++ b/packs/src/monsterfeatures/limited-amphibiousness.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234568, "modifiedTime": 1672335831362, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!boO7LJ0RRinoWHyT" } diff --git a/packs/src/monsterfeatures/limited-magic-immunity.json b/packs/src/monsterfeatures/limited-magic-immunity.json index fcc8dfa34c..05a99f9931 100644 --- a/packs/src/monsterfeatures/limited-magic-immunity.json +++ b/packs/src/monsterfeatures/limited-magic-immunity.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234538, "modifiedTime": 1672335829042, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MBOiQSnMr02wUpEN" } diff --git a/packs/src/monsterfeatures/limited-telepathy.json b/packs/src/monsterfeatures/limited-telepathy.json index cce89368bf..88fc21269e 100644 --- a/packs/src/monsterfeatures/limited-telepathy.json +++ b/packs/src/monsterfeatures/limited-telepathy.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234618, "modifiedTime": 1672335827087, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!xna3UTd4EFLCZMt9" } diff --git a/packs/src/monsterfeatures/luring-song.json b/packs/src/monsterfeatures/luring-song.json index 97cac1c59a..b3c7864729 100644 --- a/packs/src/monsterfeatures/luring-song.json +++ b/packs/src/monsterfeatures/luring-song.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234525, "modifiedTime": 1672335824733, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!IALpDTyYdDOzmDb5" } diff --git a/packs/src/monsterfeatures/magic-resistance.json b/packs/src/monsterfeatures/magic-resistance.json index 14afc88baf..3b96152704 100644 --- a/packs/src/monsterfeatures/magic-resistance.json +++ b/packs/src/monsterfeatures/magic-resistance.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234525, "modifiedTime": 1672335821479, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Hc6MqLQhPTI1KOvm" } diff --git a/packs/src/monsterfeatures/magic-weapons.json b/packs/src/monsterfeatures/magic-weapons.json index bc90491437..aff0ddd4a1 100644 --- a/packs/src/monsterfeatures/magic-weapons.json +++ b/packs/src/monsterfeatures/magic-weapons.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234602, "modifiedTime": 1672335819457, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nahRRxck9R5GVVFS" } diff --git a/packs/src/monsterfeatures/martial-advantage.json b/packs/src/monsterfeatures/martial-advantage.json index bb131e2f28..12115e2f8c 100644 --- a/packs/src/monsterfeatures/martial-advantage.json +++ b/packs/src/monsterfeatures/martial-advantage.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234627, "modifiedTime": 1672335817491, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zg0RZmAncKJqIpax" } diff --git a/packs/src/monsterfeatures/mimicry.json b/packs/src/monsterfeatures/mimicry.json index 9136cb4493..e9b8479fa9 100644 --- a/packs/src/monsterfeatures/mimicry.json +++ b/packs/src/monsterfeatures/mimicry.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234626, "modifiedTime": 1672335814707, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zZkNtL97hn1P6OJC" } diff --git a/packs/src/monsterfeatures/misty-escape.json b/packs/src/monsterfeatures/misty-escape.json index bbaec5a7a7..d580058c81 100644 --- a/packs/src/monsterfeatures/misty-escape.json +++ b/packs/src/monsterfeatures/misty-escape.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234582, "modifiedTime": 1672335811934, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hMC7XCkDbzVMZ0QG" } diff --git a/packs/src/monsterfeatures/moan.json b/packs/src/monsterfeatures/moan.json index 604046619a..4e7604c6a6 100644 --- a/packs/src/monsterfeatures/moan.json +++ b/packs/src/monsterfeatures/moan.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234557, "modifiedTime": 1672335809708, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!VvXrTnB2FscxqbG3" } diff --git a/packs/src/monsterfeatures/move-legendary.json b/packs/src/monsterfeatures/move-legendary.json index c3173c7241..a083c41cc6 100644 --- a/packs/src/monsterfeatures/move-legendary.json +++ b/packs/src/monsterfeatures/move-legendary.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234523, "modifiedTime": 1672335805837, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!FzbCXXFlZVpcea4t" } diff --git a/packs/src/monsterfeatures/mucous-cloud.json b/packs/src/monsterfeatures/mucous-cloud.json index baa6d902c0..7ab951750d 100644 --- a/packs/src/monsterfeatures/mucous-cloud.json +++ b/packs/src/monsterfeatures/mucous-cloud.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234524, "modifiedTime": 1672335803766, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!HMOOZRxolMmv91xm" } diff --git a/packs/src/monsterfeatures/multiattack.json b/packs/src/monsterfeatures/multiattack.json index bc2152c08d..0f88385e7f 100644 --- a/packs/src/monsterfeatures/multiattack.json +++ b/packs/src/monsterfeatures/multiattack.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234520, "modifiedTime": 1672335801543, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!EqoLg8T8EHvhJgKE" } diff --git a/packs/src/monsterfeatures/multiple-heads.json b/packs/src/monsterfeatures/multiple-heads.json index eabc527199..7e01d3d480 100644 --- a/packs/src/monsterfeatures/multiple-heads.json +++ b/packs/src/monsterfeatures/multiple-heads.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234574, "modifiedTime": 1672335799733, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dvSoAF3bOeUeIrxf" } diff --git a/packs/src/monsterfeatures/nightmare-haunting.json b/packs/src/monsterfeatures/nightmare-haunting.json index 02e4b7119c..27fb3a8c10 100644 --- a/packs/src/monsterfeatures/nightmare-haunting.json +++ b/packs/src/monsterfeatures/nightmare-haunting.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234556, "modifiedTime": 1672335797625, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!VbBHypDc0eLWbsNE" } diff --git a/packs/src/monsterfeatures/nimble-escape.json b/packs/src/monsterfeatures/nimble-escape.json index b8a5dddbda..6538542170 100644 --- a/packs/src/monsterfeatures/nimble-escape.json +++ b/packs/src/monsterfeatures/nimble-escape.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234546, "modifiedTime": 1672335795741, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!PqVfFNyOPmecrS7N" } diff --git a/packs/src/monsterfeatures/ooze-cube.json b/packs/src/monsterfeatures/ooze-cube.json index 9b473ce4c9..cc3b89bfe8 100644 --- a/packs/src/monsterfeatures/ooze-cube.json +++ b/packs/src/monsterfeatures/ooze-cube.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234515, "modifiedTime": 1672335792413, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!CvtGj6YimGuZdrhB" } diff --git a/packs/src/monsterfeatures/pack-tactics.json b/packs/src/monsterfeatures/pack-tactics.json index 1839e6896b..a4f72a1a15 100644 --- a/packs/src/monsterfeatures/pack-tactics.json +++ b/packs/src/monsterfeatures/pack-tactics.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234555, "modifiedTime": 1672335789570, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!V1lW1vnrTpVTDr6o" } diff --git a/packs/src/monsterfeatures/paralyzing-breath.json b/packs/src/monsterfeatures/paralyzing-breath.json index 54a7b51ce0..2144176646 100644 --- a/packs/src/monsterfeatures/paralyzing-breath.json +++ b/packs/src/monsterfeatures/paralyzing-breath.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234514, "modifiedTime": 1672335786811, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!BiasCPpNsaAVKzIj" } diff --git a/packs/src/monsterfeatures/paralyzing-touch.json b/packs/src/monsterfeatures/paralyzing-touch.json index 0ad0fe7d4a..3bd8d1087f 100644 --- a/packs/src/monsterfeatures/paralyzing-touch.json +++ b/packs/src/monsterfeatures/paralyzing-touch.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -84,5 +89,6 @@ "createdTime": 1661787234576, "modifiedTime": 1672336061779, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ebcmg4M5LsUYCqee" } diff --git a/packs/src/monsterfeatures/parry.json b/packs/src/monsterfeatures/parry.json index c848750920..d0e61cdb57 100644 --- a/packs/src/monsterfeatures/parry.json +++ b/packs/src/monsterfeatures/parry.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234594, "modifiedTime": 1672336059573, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!kfi26Jy0VLXv9TTm" } diff --git a/packs/src/monsterfeatures/petrifying-breath.json b/packs/src/monsterfeatures/petrifying-breath.json index 5ddbead28b..d3e0bb01e9 100644 --- a/packs/src/monsterfeatures/petrifying-breath.json +++ b/packs/src/monsterfeatures/petrifying-breath.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234617, "modifiedTime": 1672336057332, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!xmXYBevj0kuPa3Fo" } diff --git a/packs/src/monsterfeatures/petrifying-gaze.json b/packs/src/monsterfeatures/petrifying-gaze.json index fd76e4ccc9..8a181808f5 100644 --- a/packs/src/monsterfeatures/petrifying-gaze.json +++ b/packs/src/monsterfeatures/petrifying-gaze.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234615, "modifiedTime": 1672336055212, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!wkIN7WTeX8ebbjtv" } diff --git a/packs/src/monsterfeatures/phantasms.json b/packs/src/monsterfeatures/phantasms.json index 3d56d2ee83..6da170110c 100644 --- a/packs/src/monsterfeatures/phantasms.json +++ b/packs/src/monsterfeatures/phantasms.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234611, "modifiedTime": 1672336053064, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!t0ojYPOlKEbPpYNc" } diff --git a/packs/src/monsterfeatures/poison-breath.json b/packs/src/monsterfeatures/poison-breath.json index 9e7c752279..2bc7b61a5a 100644 --- a/packs/src/monsterfeatures/poison-breath.json +++ b/packs/src/monsterfeatures/poison-breath.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234528, "modifiedTime": 1672336050640, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!JAEclghgOT24pQD9" } diff --git a/packs/src/monsterfeatures/possession.json b/packs/src/monsterfeatures/possession.json index 1b777bab41..97aa3a10f2 100644 --- a/packs/src/monsterfeatures/possession.json +++ b/packs/src/monsterfeatures/possession.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234540, "modifiedTime": 1672336048232, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!NI3FPb5jQsePdlVl" } diff --git a/packs/src/monsterfeatures/pounce.json b/packs/src/monsterfeatures/pounce.json index 39d449591d..e6249b2ecb 100644 --- a/packs/src/monsterfeatures/pounce.json +++ b/packs/src/monsterfeatures/pounce.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234539, "modifiedTime": 1672336046015, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MqAVplIArAKzpnXB" } diff --git a/packs/src/monsterfeatures/probing-telepathy.json b/packs/src/monsterfeatures/probing-telepathy.json index 5cc0e9eb6c..3f9bd41939 100644 --- a/packs/src/monsterfeatures/probing-telepathy.json +++ b/packs/src/monsterfeatures/probing-telepathy.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234586, "modifiedTime": 1672336043865, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!iDem2vV36tRkZUx0" } diff --git a/packs/src/monsterfeatures/psychic-drain.json b/packs/src/monsterfeatures/psychic-drain.json index 024e85ac4d..f7a68933b9 100644 --- a/packs/src/monsterfeatures/psychic-drain.json +++ b/packs/src/monsterfeatures/psychic-drain.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -89,5 +94,6 @@ "createdTime": 1661787234542, "modifiedTime": 1672336039782, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!OejKD6LitlURecxp" } diff --git a/packs/src/monsterfeatures/rampage.json b/packs/src/monsterfeatures/rampage.json index 89a65ffd9f..a8cd964000 100644 --- a/packs/src/monsterfeatures/rampage.json +++ b/packs/src/monsterfeatures/rampage.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234514, "modifiedTime": 1672336036678, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!BnuDkgCOeGvAoYhy" } diff --git a/packs/src/monsterfeatures/reactive-heads.json b/packs/src/monsterfeatures/reactive-heads.json index 6b2f9a1398..b7b790d07c 100644 --- a/packs/src/monsterfeatures/reactive-heads.json +++ b/packs/src/monsterfeatures/reactive-heads.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234600, "modifiedTime": 1672336032103, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!miIjsa984tZ0Mil6" } diff --git a/packs/src/monsterfeatures/reactive.json b/packs/src/monsterfeatures/reactive.json index c29ba8563d..d058babc35 100644 --- a/packs/src/monsterfeatures/reactive.json +++ b/packs/src/monsterfeatures/reactive.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234598, "modifiedTime": 1672336034357, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!lhTQJsLKYUZT2gV5" } diff --git a/packs/src/monsterfeatures/read-thoughts.json b/packs/src/monsterfeatures/read-thoughts.json index b7cccfbb9b..edc0fb87d8 100644 --- a/packs/src/monsterfeatures/read-thoughts.json +++ b/packs/src/monsterfeatures/read-thoughts.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234615, "modifiedTime": 1672336027874, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!w5mFTTFsdKC7TXgg" } diff --git a/packs/src/monsterfeatures/reaping-scythe.json b/packs/src/monsterfeatures/reaping-scythe.json index 2374479c57..3c7857cc34 100644 --- a/packs/src/monsterfeatures/reaping-scythe.json +++ b/packs/src/monsterfeatures/reaping-scythe.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234605, "modifiedTime": 1672336025257, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!of2dTSnPwmhR52O7" } diff --git a/packs/src/monsterfeatures/reckless.json b/packs/src/monsterfeatures/reckless.json index 33fc0ff886..67ff80200c 100644 --- a/packs/src/monsterfeatures/reckless.json +++ b/packs/src/monsterfeatures/reckless.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234503, "modifiedTime": 1672336022974, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!4v3xxn1jEEMRzLBG" } diff --git a/packs/src/monsterfeatures/reel.json b/packs/src/monsterfeatures/reel.json index 043030cd9d..64518129cd 100644 --- a/packs/src/monsterfeatures/reel.json +++ b/packs/src/monsterfeatures/reel.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234526, "modifiedTime": 1672336020209, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!IwQRhCTgCfAADyt8" } diff --git a/packs/src/monsterfeatures/reflective-carapace.json b/packs/src/monsterfeatures/reflective-carapace.json index 2b0b14fbc0..22f854a108 100644 --- a/packs/src/monsterfeatures/reflective-carapace.json +++ b/packs/src/monsterfeatures/reflective-carapace.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234545, "modifiedTime": 1672335958324, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!PLBui1FCQuSlEqyI" } diff --git a/packs/src/monsterfeatures/regeneration.json b/packs/src/monsterfeatures/regeneration.json index b5b8fe16de..60ea7d935d 100644 --- a/packs/src/monsterfeatures/regeneration.json +++ b/packs/src/monsterfeatures/regeneration.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234513, "modifiedTime": 1672336015899, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Av7H0ymGdPeTsnwV" } diff --git a/packs/src/monsterfeatures/regional-effects.json b/packs/src/monsterfeatures/regional-effects.json index efa071f58a..aee158c8c4 100644 --- a/packs/src/monsterfeatures/regional-effects.json +++ b/packs/src/monsterfeatures/regional-effects.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234534, "modifiedTime": 1672336013541, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!L7myj23X3PFPUNh6" } diff --git a/packs/src/monsterfeatures/rejuvenation.json b/packs/src/monsterfeatures/rejuvenation.json index c6c50f8871..e222a5cf89 100644 --- a/packs/src/monsterfeatures/rejuvenation.json +++ b/packs/src/monsterfeatures/rejuvenation.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234529, "modifiedTime": 1672336011174, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!JcfHlAcfwSWnt7Ud" } diff --git a/packs/src/monsterfeatures/relentless.json b/packs/src/monsterfeatures/relentless.json index 57ca4f3195..a37c1977f1 100644 --- a/packs/src/monsterfeatures/relentless.json +++ b/packs/src/monsterfeatures/relentless.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234509, "modifiedTime": 1672336008886, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8FX2KlWyBAKEYGzs" } diff --git a/packs/src/monsterfeatures/repulsion-breath.json b/packs/src/monsterfeatures/repulsion-breath.json index bcf4532b13..d38cc34014 100644 --- a/packs/src/monsterfeatures/repulsion-breath.json +++ b/packs/src/monsterfeatures/repulsion-breath.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234625, "modifiedTime": 1672336006385, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zRDERBe0lMbwyGwN" } diff --git a/packs/src/monsterfeatures/roar.json b/packs/src/monsterfeatures/roar.json index 4dd56ec4ad..d97a663873 100644 --- a/packs/src/monsterfeatures/roar.json +++ b/packs/src/monsterfeatures/roar.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234546, "modifiedTime": 1672336004217, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!QCNJD2GuOZSTT4Wt" } diff --git a/packs/src/monsterfeatures/rock-catching.json b/packs/src/monsterfeatures/rock-catching.json index 9aad2899ee..21aa2843cc 100644 --- a/packs/src/monsterfeatures/rock-catching.json +++ b/packs/src/monsterfeatures/rock-catching.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234515, "modifiedTime": 1672336002046, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!BpwXJvMA7MfVQ7i6" } diff --git a/packs/src/monsterfeatures/running-leap.json b/packs/src/monsterfeatures/running-leap.json index 0aa36b4d5b..92e01d1eaf 100644 --- a/packs/src/monsterfeatures/running-leap.json +++ b/packs/src/monsterfeatures/running-leap.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234544, "modifiedTime": 1672335999848, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Ozz1xvw2ydiw4IJP" } diff --git a/packs/src/monsterfeatures/rust-metal.json b/packs/src/monsterfeatures/rust-metal.json index 99ff64aed4..5f09e92777 100644 --- a/packs/src/monsterfeatures/rust-metal.json +++ b/packs/src/monsterfeatures/rust-metal.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234523, "modifiedTime": 1672335996198, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!GSgfXL9DyDA3GD0n" } diff --git a/packs/src/monsterfeatures/scare.json b/packs/src/monsterfeatures/scare.json index 670087eaf3..b3dbde1b99 100644 --- a/packs/src/monsterfeatures/scare.json +++ b/packs/src/monsterfeatures/scare.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234582, "modifiedTime": 1672335994225, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gqrKcFwxHhmwrP2q" } diff --git a/packs/src/monsterfeatures/searing-burst.json b/packs/src/monsterfeatures/searing-burst.json index a87d92bb4d..e0e59c0030 100644 --- a/packs/src/monsterfeatures/searing-burst.json +++ b/packs/src/monsterfeatures/searing-burst.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -93,5 +98,6 @@ "createdTime": 1661787234504, "modifiedTime": 1672335991907, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!5OYruoI92fxTOLts" } diff --git a/packs/src/monsterfeatures/second-roar.json b/packs/src/monsterfeatures/second-roar.json index b0281208f5..a39e0add6f 100644 --- a/packs/src/monsterfeatures/second-roar.json +++ b/packs/src/monsterfeatures/second-roar.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234597, "modifiedTime": 1672335989726, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!lWnUAwBPfJf9WupM" } diff --git a/packs/src/monsterfeatures/sense-magic.json b/packs/src/monsterfeatures/sense-magic.json index bc5659d0b9..d97ed2f45a 100644 --- a/packs/src/monsterfeatures/sense-magic.json +++ b/packs/src/monsterfeatures/sense-magic.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234529, "modifiedTime": 1672335987293, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!JAnMheqgFhkLF2ET" } diff --git a/packs/src/monsterfeatures/shadow-stealth.json b/packs/src/monsterfeatures/shadow-stealth.json index a1a9acc6d7..55a0ed99e5 100644 --- a/packs/src/monsterfeatures/shadow-stealth.json +++ b/packs/src/monsterfeatures/shadow-stealth.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234601, "modifiedTime": 1672335985051, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nUVFUgyKK7fmQaFh" } diff --git a/packs/src/monsterfeatures/shapechanger.json b/packs/src/monsterfeatures/shapechanger.json index 935d1d21bb..d86e33aa64 100644 --- a/packs/src/monsterfeatures/shapechanger.json +++ b/packs/src/monsterfeatures/shapechanger.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234556, "modifiedTime": 1672335982772, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!VhByyxHJN7MNQJRd" } diff --git a/packs/src/monsterfeatures/shark-telepathy.json b/packs/src/monsterfeatures/shark-telepathy.json index 53929b6ed7..3e8910c986 100644 --- a/packs/src/monsterfeatures/shark-telepathy.json +++ b/packs/src/monsterfeatures/shark-telepathy.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234553, "modifiedTime": 1672335980640, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!UYorz1ZrfuoTRknp" } diff --git a/packs/src/monsterfeatures/shield.json b/packs/src/monsterfeatures/shield.json index 37d01974ff..063794e3d0 100644 --- a/packs/src/monsterfeatures/shield.json +++ b/packs/src/monsterfeatures/shield.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234622, "modifiedTime": 1672336298878, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!yHcr3vlkmtInELj2" } diff --git a/packs/src/monsterfeatures/shielded-mind.json b/packs/src/monsterfeatures/shielded-mind.json index 23dccbffc6..6f76b1d532 100644 --- a/packs/src/monsterfeatures/shielded-mind.json +++ b/packs/src/monsterfeatures/shielded-mind.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234549, "modifiedTime": 1672336296900, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!SrmR5UfLMFxTErTp" } diff --git a/packs/src/monsterfeatures/shimmering-shield.json b/packs/src/monsterfeatures/shimmering-shield.json index ae2378e246..9ec2c83b83 100644 --- a/packs/src/monsterfeatures/shimmering-shield.json +++ b/packs/src/monsterfeatures/shimmering-shield.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -84,5 +89,6 @@ "createdTime": 1661787234510, "modifiedTime": 1672336294896, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8l0R2MIYxWxYJT6O" } diff --git a/packs/src/monsterfeatures/shriek.json b/packs/src/monsterfeatures/shriek.json index 92f6c3b9d1..7ae265232f 100644 --- a/packs/src/monsterfeatures/shriek.json +++ b/packs/src/monsterfeatures/shriek.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234542, "modifiedTime": 1672336291499, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!OqRnKL4703RuReS1" } diff --git a/packs/src/monsterfeatures/siege-monster.json b/packs/src/monsterfeatures/siege-monster.json index 6e6179cb64..f60d195386 100644 --- a/packs/src/monsterfeatures/siege-monster.json +++ b/packs/src/monsterfeatures/siege-monster.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234570, "modifiedTime": 1672336289181, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!cSA0EbjlxCbst4gJ" } diff --git a/packs/src/monsterfeatures/sleep-breath.json b/packs/src/monsterfeatures/sleep-breath.json index 0b1d431823..fc55fa1544 100644 --- a/packs/src/monsterfeatures/sleep-breath.json +++ b/packs/src/monsterfeatures/sleep-breath.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234500, "modifiedTime": 1672336287083, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!43BnuqkQgg5l1Nfh" } diff --git a/packs/src/monsterfeatures/slowing-breath.json b/packs/src/monsterfeatures/slowing-breath.json index a2b30b9d2c..119cdc9266 100644 --- a/packs/src/monsterfeatures/slowing-breath.json +++ b/packs/src/monsterfeatures/slowing-breath.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234529, "modifiedTime": 1672336285044, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!JRy507rS9wxT3GBh" } diff --git a/packs/src/monsterfeatures/sneak-attack.json b/packs/src/monsterfeatures/sneak-attack.json index 8a07fe0227..d052e0a10e 100644 --- a/packs/src/monsterfeatures/sneak-attack.json +++ b/packs/src/monsterfeatures/sneak-attack.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234511, "modifiedTime": 1672336282691, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9uKShqfuA73duQsT" } diff --git a/packs/src/monsterfeatures/snow-camouflage.json b/packs/src/monsterfeatures/snow-camouflage.json index 0ce1725785..8e529cbb7e 100644 --- a/packs/src/monsterfeatures/snow-camouflage.json +++ b/packs/src/monsterfeatures/snow-camouflage.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234592, "modifiedTime": 1672336279539, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!jnKOUieu2UO1xHhT" } diff --git a/packs/src/monsterfeatures/speak-with-beasts-and-plants.json b/packs/src/monsterfeatures/speak-with-beasts-and-plants.json index 409583f20d..55a7ec406f 100644 --- a/packs/src/monsterfeatures/speak-with-beasts-and-plants.json +++ b/packs/src/monsterfeatures/speak-with-beasts-and-plants.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234503, "modifiedTime": 1672336276838, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!59DUUDZet1J4PIlA" } diff --git a/packs/src/monsterfeatures/spell-storing.json b/packs/src/monsterfeatures/spell-storing.json index 0650354c31..4488bb5721 100644 --- a/packs/src/monsterfeatures/spell-storing.json +++ b/packs/src/monsterfeatures/spell-storing.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234593, "modifiedTime": 1672336247267, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!kSgBb9r1TCfDIMY0" } diff --git a/packs/src/monsterfeatures/spellcasting.json b/packs/src/monsterfeatures/spellcasting.json index 6d5dce40d6..86c31b4bf2 100644 --- a/packs/src/monsterfeatures/spellcasting.json +++ b/packs/src/monsterfeatures/spellcasting.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234578, "modifiedTime": 1672336245100, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!fdmzHw875EzpXM2a" } diff --git a/packs/src/monsterfeatures/spider-climb.json b/packs/src/monsterfeatures/spider-climb.json index 25f1772a0f..b9845e2661 100644 --- a/packs/src/monsterfeatures/spider-climb.json +++ b/packs/src/monsterfeatures/spider-climb.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234522, "modifiedTime": 1672336243265, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!FXHEc39G2d19opuE" } diff --git a/packs/src/monsterfeatures/split.json b/packs/src/monsterfeatures/split.json index ffe0903326..24d94a5bab 100644 --- a/packs/src/monsterfeatures/split.json +++ b/packs/src/monsterfeatures/split.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234541, "modifiedTime": 1672336241184, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!NzHwrEuKnKxZ4NTP" } diff --git a/packs/src/monsterfeatures/spores.json b/packs/src/monsterfeatures/spores.json index d4d5ab8561..6b422c837d 100644 --- a/packs/src/monsterfeatures/spores.json +++ b/packs/src/monsterfeatures/spores.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234588, "modifiedTime": 1672336238832, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ihWvcWsnfqW2HFlA" } diff --git a/packs/src/monsterfeatures/standing-leap.json b/packs/src/monsterfeatures/standing-leap.json index 19277c647d..b288a2a66f 100644 --- a/packs/src/monsterfeatures/standing-leap.json +++ b/packs/src/monsterfeatures/standing-leap.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234576, "modifiedTime": 1672336236951, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!f4yvSah35ixQOswD" } diff --git a/packs/src/monsterfeatures/steadfast.json b/packs/src/monsterfeatures/steadfast.json index c62543461f..7ca68677a8 100644 --- a/packs/src/monsterfeatures/steadfast.json +++ b/packs/src/monsterfeatures/steadfast.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234502, "modifiedTime": 1672336234837, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!4N7S29kDROQ932pG" } diff --git a/packs/src/monsterfeatures/steam-breath.json b/packs/src/monsterfeatures/steam-breath.json index 0c4440bd65..ec44ab466a 100644 --- a/packs/src/monsterfeatures/steam-breath.json +++ b/packs/src/monsterfeatures/steam-breath.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234502, "modifiedTime": 1672336232699, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!4UuuUKjATTixrZGP" } diff --git a/packs/src/monsterfeatures/stench.json b/packs/src/monsterfeatures/stench.json index 0e66f918ca..27ba431445 100644 --- a/packs/src/monsterfeatures/stench.json +++ b/packs/src/monsterfeatures/stench.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234543, "modifiedTime": 1672336230984, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!OsPhT7jA5LlvUA6e" } diff --git a/packs/src/monsterfeatures/stone-camouflage.json b/packs/src/monsterfeatures/stone-camouflage.json index c215c14eaf..a495f509a9 100644 --- a/packs/src/monsterfeatures/stone-camouflage.json +++ b/packs/src/monsterfeatures/stone-camouflage.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234589, "modifiedTime": 1672336229022, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!j1cPfWFNvxGoex9Z" } diff --git a/packs/src/monsterfeatures/stone-golem-slow.json b/packs/src/monsterfeatures/stone-golem-slow.json index 2f891ff44d..be1192f9d2 100644 --- a/packs/src/monsterfeatures/stone-golem-slow.json +++ b/packs/src/monsterfeatures/stone-golem-slow.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234514, "modifiedTime": 1672336226974, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!BDnjS1sQi2pdARh8" } diff --git a/packs/src/monsterfeatures/stunning-screech.json b/packs/src/monsterfeatures/stunning-screech.json index f99f42ee65..9cb2f2e76a 100644 --- a/packs/src/monsterfeatures/stunning-screech.json +++ b/packs/src/monsterfeatures/stunning-screech.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234566, "modifiedTime": 1672336224908, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!aD3HKoBnJtZL6cDj" } diff --git a/packs/src/monsterfeatures/sunlight-sensitivity.json b/packs/src/monsterfeatures/sunlight-sensitivity.json index ad7af3fbe0..d74937a517 100644 --- a/packs/src/monsterfeatures/sunlight-sensitivity.json +++ b/packs/src/monsterfeatures/sunlight-sensitivity.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234520, "modifiedTime": 1672336222775, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!F14aW2Ke3I5ZtSg4" } diff --git a/packs/src/monsterfeatures/sunlight-weakness.json b/packs/src/monsterfeatures/sunlight-weakness.json index 68bf4dd365..ce5e3c362f 100644 --- a/packs/src/monsterfeatures/sunlight-weakness.json +++ b/packs/src/monsterfeatures/sunlight-weakness.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234613, "modifiedTime": 1672336220283, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!u1Tt4l4Mczgt3wOS" } diff --git a/packs/src/monsterfeatures/sure-footed.json b/packs/src/monsterfeatures/sure-footed.json index f7b4eab7f1..d2c25fac41 100644 --- a/packs/src/monsterfeatures/sure-footed.json +++ b/packs/src/monsterfeatures/sure-footed.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234600, "modifiedTime": 1672336217894, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nJHx2fudYhZeexDP" } diff --git a/packs/src/monsterfeatures/surprise-attack.json b/packs/src/monsterfeatures/surprise-attack.json index 39f47b5133..52c007b45d 100644 --- a/packs/src/monsterfeatures/surprise-attack.json +++ b/packs/src/monsterfeatures/surprise-attack.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234504, "modifiedTime": 1672336215056, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!5DJYFjGQCz5aSl5e" } diff --git a/packs/src/monsterfeatures/swallow.json b/packs/src/monsterfeatures/swallow.json index bb313be906..fea010368b 100644 --- a/packs/src/monsterfeatures/swallow.json +++ b/packs/src/monsterfeatures/swallow.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234567, "modifiedTime": 1672336212815, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!aH5ncM30tP8tPQ24" } diff --git a/packs/src/monsterfeatures/swarm.json b/packs/src/monsterfeatures/swarm.json index 1fb897757a..af212af9a7 100644 --- a/packs/src/monsterfeatures/swarm.json +++ b/packs/src/monsterfeatures/swarm.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234575, "modifiedTime": 1672336209124, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eL3OJmc4FuetizKO" } diff --git a/packs/src/monsterfeatures/tail-spike-regrowth.json b/packs/src/monsterfeatures/tail-spike-regrowth.json index b8045f3a79..659d3289fc 100644 --- a/packs/src/monsterfeatures/tail-spike-regrowth.json +++ b/packs/src/monsterfeatures/tail-spike-regrowth.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234588, "modifiedTime": 1672336207186, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!iVOxckt9448v7Ho5" } diff --git a/packs/src/monsterfeatures/tail-swipe-legendary.json b/packs/src/monsterfeatures/tail-swipe-legendary.json index 3b220f4c86..4ec23e9158 100644 --- a/packs/src/monsterfeatures/tail-swipe-legendary.json +++ b/packs/src/monsterfeatures/tail-swipe-legendary.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234534, "modifiedTime": 1672336204525, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Kx011zSOyhqEumH5" } diff --git a/packs/src/monsterfeatures/telepathic-bond.json b/packs/src/monsterfeatures/telepathic-bond.json index 70f16bc8d5..0ecc1afe9c 100644 --- a/packs/src/monsterfeatures/telepathic-bond.json +++ b/packs/src/monsterfeatures/telepathic-bond.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234575, "modifiedTime": 1672336202508, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eVKgO2130oiJqsjY" } diff --git a/packs/src/monsterfeatures/teleport.json b/packs/src/monsterfeatures/teleport.json index 672447350a..27947ea85c 100644 --- a/packs/src/monsterfeatures/teleport.json +++ b/packs/src/monsterfeatures/teleport.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -84,5 +89,6 @@ "createdTime": 1661787234545, "modifiedTime": 1672336200251, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!PPzVD90vab60FqCt" } diff --git a/packs/src/monsterfeatures/tentacle-attack-or-fling.json b/packs/src/monsterfeatures/tentacle-attack-or-fling.json index 9283069a7d..e6132038ef 100644 --- a/packs/src/monsterfeatures/tentacle-attack-or-fling.json +++ b/packs/src/monsterfeatures/tentacle-attack-or-fling.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234573, "modifiedTime": 1672336197999, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!czKwBo1qw5O2gCNy" } diff --git a/packs/src/monsterfeatures/tentacle-disease.json b/packs/src/monsterfeatures/tentacle-disease.json index 55df1318b4..84c5f396a9 100644 --- a/packs/src/monsterfeatures/tentacle-disease.json +++ b/packs/src/monsterfeatures/tentacle-disease.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234621, "modifiedTime": 1672336195967, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!y18y37F8ppFLGuLb" } diff --git a/packs/src/monsterfeatures/tentacle-slam.json b/packs/src/monsterfeatures/tentacle-slam.json index a1c459ede3..ca3abb4592 100644 --- a/packs/src/monsterfeatures/tentacle-slam.json +++ b/packs/src/monsterfeatures/tentacle-slam.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234548, "modifiedTime": 1672336192418, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!QiM1nbPzbLzKnfmP" } diff --git a/packs/src/monsterfeatures/tentacles.json b/packs/src/monsterfeatures/tentacles.json index 506aefef39..a449a764c2 100644 --- a/packs/src/monsterfeatures/tentacles.json +++ b/packs/src/monsterfeatures/tentacles.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234601, "modifiedTime": 1672336189563, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nKpLMXS9E10TSGhU" } diff --git a/packs/src/monsterfeatures/third-roar.json b/packs/src/monsterfeatures/third-roar.json index 6f1f24cb8a..5031887dc7 100644 --- a/packs/src/monsterfeatures/third-roar.json +++ b/packs/src/monsterfeatures/third-roar.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234561, "modifiedTime": 1672336187309, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WtQHjfWuFrsYEns3" } diff --git a/packs/src/monsterfeatures/trampling-charge.json b/packs/src/monsterfeatures/trampling-charge.json index 2c117dc0fd..daa20c49e3 100644 --- a/packs/src/monsterfeatures/trampling-charge.json +++ b/packs/src/monsterfeatures/trampling-charge.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234621, "modifiedTime": 1672336184983, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!yD51x4dihnbHwfsj" } diff --git a/packs/src/monsterfeatures/transparent.json b/packs/src/monsterfeatures/transparent.json index 87866602f5..7cc2ccc650 100644 --- a/packs/src/monsterfeatures/transparent.json +++ b/packs/src/monsterfeatures/transparent.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234572, "modifiedTime": 1672336182664, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!cueeLXQ3W8gKHiLq" } diff --git a/packs/src/monsterfeatures/treasure-sense.json b/packs/src/monsterfeatures/treasure-sense.json index 59a5f39c71..f9cfa7683c 100644 --- a/packs/src/monsterfeatures/treasure-sense.json +++ b/packs/src/monsterfeatures/treasure-sense.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234519, "modifiedTime": 1672336180777, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Enhb3XowXPMsVapw" } diff --git a/packs/src/monsterfeatures/tree-stride.json b/packs/src/monsterfeatures/tree-stride.json index d643f698ec..2c522ab952 100644 --- a/packs/src/monsterfeatures/tree-stride.json +++ b/packs/src/monsterfeatures/tree-stride.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234578, "modifiedTime": 1672336178492, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!g4V02wJbEstUpwi9" } diff --git a/packs/src/monsterfeatures/tunneler.json b/packs/src/monsterfeatures/tunneler.json index a28b4eea5d..621235456a 100644 --- a/packs/src/monsterfeatures/tunneler.json +++ b/packs/src/monsterfeatures/tunneler.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234500, "modifiedTime": 1672336176227, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3mrPXaxalJxpxVrv" } diff --git a/packs/src/monsterfeatures/turn-defiance.json b/packs/src/monsterfeatures/turn-defiance.json index db63d67098..4eb75d8b14 100644 --- a/packs/src/monsterfeatures/turn-defiance.json +++ b/packs/src/monsterfeatures/turn-defiance.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234606, "modifiedTime": 1672336174051, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!oi1sikVSw463lQlp" } diff --git a/packs/src/monsterfeatures/turn-immunity.json b/packs/src/monsterfeatures/turn-immunity.json index d4e9a07408..ae8f7a8ce5 100644 --- a/packs/src/monsterfeatures/turn-immunity.json +++ b/packs/src/monsterfeatures/turn-immunity.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234512, "modifiedTime": 1672336170951, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ARWpuy82jh0daSDa" } diff --git a/packs/src/monsterfeatures/turn-resistance.json b/packs/src/monsterfeatures/turn-resistance.json index c9ce55e310..224412fb6c 100644 --- a/packs/src/monsterfeatures/turn-resistance.json +++ b/packs/src/monsterfeatures/turn-resistance.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234608, "modifiedTime": 1672336168716, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!r9aMLZ7F3gSRLgRr" } diff --git a/packs/src/monsterfeatures/two-headed.json b/packs/src/monsterfeatures/two-headed.json index 053ef3b45e..e24801d261 100644 --- a/packs/src/monsterfeatures/two-headed.json +++ b/packs/src/monsterfeatures/two-headed.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234626, "modifiedTime": 1672336164323, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zSBlyP5Vm1CAV5VO" } diff --git a/packs/src/monsterfeatures/two-heads.json b/packs/src/monsterfeatures/two-heads.json index 1798f1a011..a263bd0fa0 100644 --- a/packs/src/monsterfeatures/two-heads.json +++ b/packs/src/monsterfeatures/two-heads.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234579, "modifiedTime": 1672336166182, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gWpp0N06HvS937Go" } diff --git a/packs/src/monsterfeatures/unarmed-strike-legendary.json b/packs/src/monsterfeatures/unarmed-strike-legendary.json index db00c13bb6..6cc40fe226 100644 --- a/packs/src/monsterfeatures/unarmed-strike-legendary.json +++ b/packs/src/monsterfeatures/unarmed-strike-legendary.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234510, "modifiedTime": 1672336161859, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9W2baYpS2ahNYhjb" } diff --git a/packs/src/monsterfeatures/undead-fortitude.json b/packs/src/monsterfeatures/undead-fortitude.json index 57198c1d91..9b9a1a18ce 100644 --- a/packs/src/monsterfeatures/undead-fortitude.json +++ b/packs/src/monsterfeatures/undead-fortitude.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234556, "modifiedTime": 1672336159442, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!VYAnJjIgb5nPXfRr" } diff --git a/packs/src/monsterfeatures/underwater-camouflage.json b/packs/src/monsterfeatures/underwater-camouflage.json index 0758907df4..87947ad1e2 100644 --- a/packs/src/monsterfeatures/underwater-camouflage.json +++ b/packs/src/monsterfeatures/underwater-camouflage.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234538, "modifiedTime": 1672336157550, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!M9XqZZGoTKawAsCl" } diff --git a/packs/src/monsterfeatures/unnerving-mask.json b/packs/src/monsterfeatures/unnerving-mask.json index 1511758100..9496feb5e8 100644 --- a/packs/src/monsterfeatures/unnerving-mask.json +++ b/packs/src/monsterfeatures/unnerving-mask.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234614, "modifiedTime": 1672336155418, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!uEYSTOkpfr0OkKrD" } diff --git a/packs/src/monsterfeatures/vampire-weaknesses.json b/packs/src/monsterfeatures/vampire-weaknesses.json index 1a64e3a9d8..53afd7adfc 100644 --- a/packs/src/monsterfeatures/vampire-weaknesses.json +++ b/packs/src/monsterfeatures/vampire-weaknesses.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234520, "modifiedTime": 1672336152412, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Ervkb8H99e2Beiae" } diff --git a/packs/src/monsterfeatures/variable-illumination.json b/packs/src/monsterfeatures/variable-illumination.json index 94dc913c63..d411bce8fb 100644 --- a/packs/src/monsterfeatures/variable-illumination.json +++ b/packs/src/monsterfeatures/variable-illumination.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234588, "modifiedTime": 1672336149760, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!iQGaWIinmYFPRF94" } diff --git a/packs/src/monsterfeatures/wakeful.json b/packs/src/monsterfeatures/wakeful.json index 1ad7e57c2d..ec6fafb7fb 100644 --- a/packs/src/monsterfeatures/wakeful.json +++ b/packs/src/monsterfeatures/wakeful.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234550, "modifiedTime": 1672336146498, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!T2gLBBjrHTbLTdGc" } diff --git a/packs/src/monsterfeatures/wall-of-ice.json b/packs/src/monsterfeatures/wall-of-ice.json index b636ace7fb..d59e597e19 100644 --- a/packs/src/monsterfeatures/wall-of-ice.json +++ b/packs/src/monsterfeatures/wall-of-ice.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234533, "modifiedTime": 1672336144151, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Kwt8YDIBHg6JO2v2" } diff --git a/packs/src/monsterfeatures/water-breathing.json b/packs/src/monsterfeatures/water-breathing.json index 65a4615890..b2877d4e64 100644 --- a/packs/src/monsterfeatures/water-breathing.json +++ b/packs/src/monsterfeatures/water-breathing.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234569, "modifiedTime": 1672336141867, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!c4Q6NDCLJSNcNc9T" } diff --git a/packs/src/monsterfeatures/water-form.json b/packs/src/monsterfeatures/water-form.json index 02123a8881..86788846ab 100644 --- a/packs/src/monsterfeatures/water-form.json +++ b/packs/src/monsterfeatures/water-form.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234511, "modifiedTime": 1672336138719, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!AFYR2eZavzQUbZNb" } diff --git a/packs/src/monsterfeatures/water-susceptibility.json b/packs/src/monsterfeatures/water-susceptibility.json index fa2bd2463c..6f2a86d723 100644 --- a/packs/src/monsterfeatures/water-susceptibility.json +++ b/packs/src/monsterfeatures/water-susceptibility.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234504, "modifiedTime": 1672336135290, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!5V7SCABXvIbnk2Zn" } diff --git a/packs/src/monsterfeatures/weakening-breath.json b/packs/src/monsterfeatures/weakening-breath.json index 2062c250d8..c928b409d7 100644 --- a/packs/src/monsterfeatures/weakening-breath.json +++ b/packs/src/monsterfeatures/weakening-breath.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234526, "modifiedTime": 1672336133443, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!IHh6n8uZBGqyRfZz" } diff --git a/packs/src/monsterfeatures/web-sense.json b/packs/src/monsterfeatures/web-sense.json index 0eed64f4c6..f7dadabee2 100644 --- a/packs/src/monsterfeatures/web-sense.json +++ b/packs/src/monsterfeatures/web-sense.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234594, "modifiedTime": 1672336128334, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!kjF0btAMYHUAQgOt" } diff --git a/packs/src/monsterfeatures/web-walker.json b/packs/src/monsterfeatures/web-walker.json index 16d7537a97..1ceef6378c 100644 --- a/packs/src/monsterfeatures/web-walker.json +++ b/packs/src/monsterfeatures/web-walker.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -84,5 +89,6 @@ "createdTime": 1661787234623, "modifiedTime": 1672336126229, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zITrVwmnPpLoBZI1" } diff --git a/packs/src/monsterfeatures/web.json b/packs/src/monsterfeatures/web.json index 662ea9489b..2731b2cf72 100644 --- a/packs/src/monsterfeatures/web.json +++ b/packs/src/monsterfeatures/web.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234585, "modifiedTime": 1672336130965, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!i8WDjw4J1gJWQmqG" } diff --git a/packs/src/monsterfeatures/whelm.json b/packs/src/monsterfeatures/whelm.json index 4e44ee41c1..1431847985 100644 --- a/packs/src/monsterfeatures/whelm.json +++ b/packs/src/monsterfeatures/whelm.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234611, "modifiedTime": 1672336123041, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!sMgKJtbCLNSX7V80" } diff --git a/packs/src/monsterfeatures/whirlwind-of-sand.json b/packs/src/monsterfeatures/whirlwind-of-sand.json index be01ba83bc..2db1b78841 100644 --- a/packs/src/monsterfeatures/whirlwind-of-sand.json +++ b/packs/src/monsterfeatures/whirlwind-of-sand.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -84,5 +89,6 @@ "createdTime": 1661787234561, "modifiedTime": 1672336117138, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!X96xsQjIolyHtV91" } diff --git a/packs/src/monsterfeatures/whirlwind.json b/packs/src/monsterfeatures/whirlwind.json index 1a59e02cb4..c89999021d 100644 --- a/packs/src/monsterfeatures/whirlwind.json +++ b/packs/src/monsterfeatures/whirlwind.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -84,5 +89,6 @@ "createdTime": 1661787234605, "modifiedTime": 1672336120552, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ocmSrMY2NX3e43uN" } diff --git a/packs/src/monsters/aberration/aboleth.json b/packs/src/monsters/aberration/aboleth.json index be4467a2a5..1503f8d42f 100644 --- a/packs/src/monsters/aberration/aboleth.json +++ b/packs/src/monsters/aberration/aboleth.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 10, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -452,7 +457,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -531,7 +541,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!shhHtE7b92PefCWB.Wpa7li8EJJJ7W3kA" }, { "_id": "eK34LWjCZnoLqUbv", @@ -544,7 +555,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -619,7 +635,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!shhHtE7b92PefCWB.eK34LWjCZnoLqUbv" }, { "_id": "nb2rVHLawik6EjMJ", @@ -632,7 +649,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -712,7 +734,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!shhHtE7b92PefCWB.nb2rVHLawik6EjMJ" }, { "_id": "SCTJPlV2KrhVflgI", @@ -725,7 +748,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -809,7 +837,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!shhHtE7b92PefCWB.SCTJPlV2KrhVflgI" }, { "_id": "dZWUNgKiLNxVg983", @@ -822,7 +851,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -901,7 +935,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!shhHtE7b92PefCWB.dZWUNgKiLNxVg983" }, { "_id": "R5sQYgehDyPiDyyE", @@ -914,7 +949,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -993,7 +1033,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!shhHtE7b92PefCWB.R5sQYgehDyPiDyyE" }, { "_id": "sgauK8Lyt8qxsxOH", @@ -1006,7 +1047,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1115,7 +1161,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!shhHtE7b92PefCWB.sgauK8Lyt8qxsxOH" }, { "_id": "FwOZEwx7MPDq8Igu", @@ -1128,7 +1175,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1237,7 +1289,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!shhHtE7b92PefCWB.FwOZEwx7MPDq8Igu" }, { "_id": "fI8m07LnyCCdsSpn", @@ -1250,7 +1303,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1329,7 +1387,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!shhHtE7b92PefCWB.fI8m07LnyCCdsSpn" }, { "_id": "Lnp6wFaKnkpuWJs2", @@ -1342,7 +1401,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "none", "cost": null, @@ -1426,7 +1490,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!shhHtE7b92PefCWB.Lnp6wFaKnkpuWJs2" }, { "_id": "5zfFkWqOMddCmxiR", @@ -1439,7 +1504,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1518,7 +1588,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!shhHtE7b92PefCWB.5zfFkWqOMddCmxiR" }, { "_id": "7GePgmNDyzzHHCKS", @@ -1531,7 +1602,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1610,7 +1686,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!shhHtE7b92PefCWB.7GePgmNDyzzHHCKS" }, { "_id": "SHlQeobxHZU6iQ24", @@ -1623,7 +1700,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1702,7 +1784,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!shhHtE7b92PefCWB.SHlQeobxHZU6iQ24" }, { "_id": "a4mvD9abiTdVlDIh", @@ -1715,7 +1798,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1794,7 +1882,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!shhHtE7b92PefCWB.a4mvD9abiTdVlDIh" } ], "effects": [], @@ -1811,5 +1900,6 @@ "createdTime": 1661787233214, "modifiedTime": 1672596108032, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!shhHtE7b92PefCWB" } diff --git a/packs/src/monsters/aberration/chuul.json b/packs/src/monsters/aberration/chuul.json index 243fca27d9..bf0dcf5067 100644 --- a/packs/src/monsters/aberration/chuul.json +++ b/packs/src/monsters/aberration/chuul.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 4, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!P6qC8jB3pnEH0tIE.7lnXqe8AnWhtnQh7" }, { "_id": "XUzROtGqVZS61Ofm", @@ -580,7 +591,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -659,7 +675,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!P6qC8jB3pnEH0tIE.XUzROtGqVZS61Ofm" }, { "_id": "uMZgFW5l9JQmFBp8", @@ -672,7 +689,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -751,7 +773,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!P6qC8jB3pnEH0tIE.uMZgFW5l9JQmFBp8" }, { "_id": "OtOJ4eSobUE30d2S", @@ -764,7 +787,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -843,7 +871,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!P6qC8jB3pnEH0tIE.OtOJ4eSobUE30d2S" }, { "_id": "03oy1y5rwobZdg46", @@ -856,7 +885,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -935,7 +969,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!P6qC8jB3pnEH0tIE.03oy1y5rwobZdg46" } ], "effects": [], @@ -952,5 +987,6 @@ "createdTime": 1661787232804, "modifiedTime": 1672596099151, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!P6qC8jB3pnEH0tIE" } diff --git a/packs/src/monsters/aberration/cloaker.json b/packs/src/monsters/aberration/cloaker.json index af28d1bfd0..ef42f5f9e4 100644 --- a/packs/src/monsters/aberration/cloaker.json +++ b/packs/src/monsters/aberration/cloaker.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 8, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -457,7 +462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -570,7 +580,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!HPUO3weiwRQnql0d.afXMbT7smRaCJbhc" }, { "_id": "Dfy6ujJALd2FPxNy", @@ -583,7 +594,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -662,7 +678,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!HPUO3weiwRQnql0d.Dfy6ujJALd2FPxNy" }, { "_id": "i7LEQhKLh7yPIldc", @@ -675,7 +692,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -754,7 +776,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!HPUO3weiwRQnql0d.i7LEQhKLh7yPIldc" }, { "_id": "DxtSFI4LS6w1gzQP", @@ -767,7 +790,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -846,7 +874,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!HPUO3weiwRQnql0d.DxtSFI4LS6w1gzQP" }, { "_id": "E76WCem1q8Dt8qkE", @@ -859,7 +888,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -938,7 +972,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!HPUO3weiwRQnql0d.E76WCem1q8Dt8qkE" }, { "_id": "ZRvdvg8n7pQdJ1Mj", @@ -951,7 +986,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1060,7 +1100,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!HPUO3weiwRQnql0d.ZRvdvg8n7pQdJ1Mj" }, { "_id": "Jiua0A8CFeKc7Zun", @@ -1073,7 +1114,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1152,7 +1198,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!HPUO3weiwRQnql0d.Jiua0A8CFeKc7Zun" }, { "_id": "UYqrfrW4pmBsmtiQ", @@ -1165,7 +1212,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1244,7 +1296,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!HPUO3weiwRQnql0d.UYqrfrW4pmBsmtiQ" } ], "effects": [], @@ -1261,5 +1314,6 @@ "createdTime": 1661787232722, "modifiedTime": 1672596096080, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!HPUO3weiwRQnql0d" } diff --git a/packs/src/monsters/aberration/gibbering-mouther.json b/packs/src/monsters/aberration/gibbering-mouther.json index bd06983494..e75dbcac09 100644 --- a/packs/src/monsters/aberration/gibbering-mouther.json +++ b/packs/src/monsters/aberration/gibbering-mouther.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -456,7 +461,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -535,7 +545,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8pX2JhWUpTNNRBVx.yxlzyXTpsEf4QiI9" }, { "_id": "SzwWnAgr25vDeHKu", @@ -548,7 +559,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -627,7 +643,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8pX2JhWUpTNNRBVx.SzwWnAgr25vDeHKu" }, { "_id": "qlBBeTku9uoaEv8G", @@ -640,7 +657,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -719,7 +741,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8pX2JhWUpTNNRBVx.qlBBeTku9uoaEv8G" }, { "_id": "lfUDtJ8hdeULQzqa", @@ -732,7 +755,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -841,7 +869,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8pX2JhWUpTNNRBVx.lfUDtJ8hdeULQzqa" }, { "_id": "KQRvDGowc6ihejLu", @@ -854,7 +883,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -933,7 +967,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8pX2JhWUpTNNRBVx.KQRvDGowc6ihejLu" } ], "effects": [], @@ -950,5 +985,6 @@ "createdTime": 1661787232636, "modifiedTime": 1672596093670, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!8pX2JhWUpTNNRBVx" } diff --git a/packs/src/monsters/aberration/otyugh.json b/packs/src/monsters/aberration/otyugh.json index 8020aac1f3..bc55dd2da1 100644 --- a/packs/src/monsters/aberration/otyugh.json +++ b/packs/src/monsters/aberration/otyugh.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -456,7 +461,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -535,7 +545,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!jcZblJ6lqtW0ePxe.z8zfieQSSbMtBNQz" }, { "_id": "CCawltKiVU4Mup9i", @@ -548,7 +559,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -661,7 +677,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!jcZblJ6lqtW0ePxe.CCawltKiVU4Mup9i" }, { "_id": "BPYsBEkmZMcGYZDh", @@ -674,7 +691,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -787,7 +809,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!jcZblJ6lqtW0ePxe.BPYsBEkmZMcGYZDh" }, { "_id": "9d1ZhvT1vIJsNnN1", @@ -800,7 +823,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -884,7 +912,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!jcZblJ6lqtW0ePxe.9d1ZhvT1vIJsNnN1" }, { "_id": "O9otNESvCCUdwYhc", @@ -897,7 +926,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -976,7 +1010,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!jcZblJ6lqtW0ePxe.O9otNESvCCUdwYhc" } ], "effects": [], @@ -993,5 +1028,6 @@ "createdTime": 1661787233010, "modifiedTime": 1672596104610, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!jcZblJ6lqtW0ePxe" } diff --git a/packs/src/monsters/beast/ape.json b/packs/src/monsters/beast/ape.json index d2daaec9b9..2faab48a92 100644 --- a/packs/src/monsters/beast/ape.json +++ b/packs/src/monsters/beast/ape.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!K5cKmPoFkpuOotis.hbxC3Wg3H8cSIvM0" }, { "_id": "jxC1VNaCf2VXlD6C", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -655,7 +671,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!K5cKmPoFkpuOotis.jxC1VNaCf2VXlD6C" }, { "_id": "NsTx3MUaYkEI2t8M", @@ -668,7 +685,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -777,7 +799,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!K5cKmPoFkpuOotis.NsTx3MUaYkEI2t8M" } ], "effects": [], @@ -794,5 +817,6 @@ "createdTime": 1661787232749, "modifiedTime": 1672596096785, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!K5cKmPoFkpuOotis" } diff --git a/packs/src/monsters/beast/axe-beak.json b/packs/src/monsters/beast/axe-beak.json index dc3a643791..9426a99bb6 100644 --- a/packs/src/monsters/beast/axe-beak.json +++ b/packs/src/monsters/beast/axe-beak.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -563,7 +573,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SXXvwaLBNuzBymp3.FsSMPLEC46UKCf7T" } ], "effects": [], @@ -580,5 +591,6 @@ "createdTime": 1661787232835, "modifiedTime": 1672596100062, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!SXXvwaLBNuzBymp3" } diff --git a/packs/src/monsters/beast/baboon.json b/packs/src/monsters/beast/baboon.json index 0d4793f79f..3357e4504d 100644 --- a/packs/src/monsters/beast/baboon.json +++ b/packs/src/monsters/beast/baboon.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "sm", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!JW8bXggOMBx1S6tF.yb6o6KfKlg9bGhqA" }, { "_id": "EXVZptAEHLscbODF", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -659,7 +675,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!JW8bXggOMBx1S6tF.EXVZptAEHLscbODF" } ], "effects": [], @@ -676,5 +693,6 @@ "createdTime": 1661787232742, "modifiedTime": 1672596096591, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!JW8bXggOMBx1S6tF" } diff --git a/packs/src/monsters/beast/badger.json b/packs/src/monsters/beast/badger.json index 8ee380ee56..48fd79f393 100644 --- a/packs/src/monsters/beast/badger.json +++ b/packs/src/monsters/beast/badger.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!oQvORD924obyPdCc.hwviWX3lRj9wqENj" }, { "_id": "siQuRYBFdjgVrKlA", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -655,7 +671,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!oQvORD924obyPdCc.siQuRYBFdjgVrKlA" } ], "effects": [], @@ -672,5 +689,6 @@ "createdTime": 1661787233167, "modifiedTime": 1672596106500, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!oQvORD924obyPdCc" } diff --git a/packs/src/monsters/beast/bat.json b/packs/src/monsters/beast/bat.json index be76fdb55a..7ada9f4883 100644 --- a/packs/src/monsters/beast/bat.json +++ b/packs/src/monsters/beast/bat.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qav2dvMIUiMQCCsy.xL1zgEf89s0xSVlW" }, { "_id": "fVUqOLxkujSbpeB7", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -621,7 +637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qav2dvMIUiMQCCsy.fVUqOLxkujSbpeB7" }, { "_id": "N05hdQhXPTOHipkJ", @@ -634,7 +651,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -747,7 +769,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qav2dvMIUiMQCCsy.N05hdQhXPTOHipkJ" } ], "effects": [], @@ -764,5 +787,6 @@ "createdTime": 1661787233193, "modifiedTime": 1672596107319, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!qav2dvMIUiMQCCsy" } diff --git a/packs/src/monsters/beast/black-bear.json b/packs/src/monsters/beast/black-bear.json index 1f85e82055..a4895c787f 100644 --- a/packs/src/monsters/beast/black-bear.json +++ b/packs/src/monsters/beast/black-bear.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!D5WjGwKskeUT8HXa.ojB2xDcEAx6QHZAu" }, { "_id": "ZBWu2XGwEnsaVNsH", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -621,7 +637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!D5WjGwKskeUT8HXa.ZBWu2XGwEnsaVNsH" }, { "_id": "8VdhUFhUE9m12piC", @@ -634,7 +651,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -747,7 +769,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!D5WjGwKskeUT8HXa.8VdhUFhUE9m12piC" }, { "_id": "gaxofmkFqQG1zqK9", @@ -760,7 +783,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -869,7 +897,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!D5WjGwKskeUT8HXa.gaxofmkFqQG1zqK9" } ], "effects": [], @@ -886,5 +915,6 @@ "createdTime": 1661787232676, "modifiedTime": 1672596094908, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!D5WjGwKskeUT8HXa" } diff --git a/packs/src/monsters/beast/blood-hawk.json b/packs/src/monsters/beast/blood-hawk.json index 6d61dc0f4f..f1b01ac926 100644 --- a/packs/src/monsters/beast/blood-hawk.json +++ b/packs/src/monsters/beast/blood-hawk.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 0.125, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "sm", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!AJiJW7K957aJJCN6.TePImx0XTnaVC3HB" }, { "_id": "H3wZQRau9dswB1Fr", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -621,7 +637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!AJiJW7K957aJJCN6.H3wZQRau9dswB1Fr" }, { "_id": "Jt0l1S2jZWGIiXjE", @@ -634,7 +651,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -743,7 +765,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!AJiJW7K957aJJCN6.Jt0l1S2jZWGIiXjE" } ], "effects": [], @@ -760,5 +783,6 @@ "createdTime": 1661787232645, "modifiedTime": 1672596093892, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!AJiJW7K957aJJCN6" } diff --git a/packs/src/monsters/beast/boar.json b/packs/src/monsters/beast/boar.json index 62707b9090..fc37e8828b 100644 --- a/packs/src/monsters/beast/boar.json +++ b/packs/src/monsters/beast/boar.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -563,7 +573,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lZR4lhNmYSf89s4Q.ypnf9maxKh66ucMe" }, { "_id": "TSmET06nE61H6HC2", @@ -576,7 +587,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -660,7 +676,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lZR4lhNmYSf89s4Q.TSmET06nE61H6HC2" }, { "_id": "U66PTM15QvmkenvW", @@ -673,7 +690,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -752,7 +774,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lZR4lhNmYSf89s4Q.U66PTM15QvmkenvW" } ], "effects": [], @@ -769,5 +792,6 @@ "createdTime": 1661787233025, "modifiedTime": 1672596105404, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!lZR4lhNmYSf89s4Q" } diff --git a/packs/src/monsters/beast/brown-bear.json b/packs/src/monsters/beast/brown-bear.json index c11b9c08a3..685c8abf22 100644 --- a/packs/src/monsters/beast/brown-bear.json +++ b/packs/src/monsters/beast/brown-bear.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -570,7 +580,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!omcDpBoB69esCXeM.tOPVA2liaPY9pwgO" }, { "_id": "MozRn0kqcm5IG3WI", @@ -583,7 +594,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -695,7 +711,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!omcDpBoB69esCXeM.MozRn0kqcm5IG3WI" }, { "_id": "D3rgzM9PCR2iXku5", @@ -708,7 +725,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -783,7 +805,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!omcDpBoB69esCXeM.D3rgzM9PCR2iXku5" }, { "_id": "AVusgSNjauFD9XnU", @@ -796,7 +819,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -875,7 +903,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!omcDpBoB69esCXeM.AVusgSNjauFD9XnU" } ], "effects": [], @@ -892,5 +921,6 @@ "createdTime": 1661787233170, "modifiedTime": 1672596106588, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!omcDpBoB69esCXeM" } diff --git a/packs/src/monsters/beast/camel.json b/packs/src/monsters/beast/camel.json index 9bd8544947..4dadef03ac 100644 --- a/packs/src/monsters/beast/camel.json +++ b/packs/src/monsters/beast/camel.json @@ -110,7 +110,12 @@ "environment": "Desert", "cr": 0.125, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!FQMFuzzSh73d0Nrd.XY89jRSGIvqLmLmw" } ], "effects": [], @@ -584,5 +595,6 @@ "createdTime": 1661787232704, "modifiedTime": 1672596095506, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!FQMFuzzSh73d0Nrd" } diff --git a/packs/src/monsters/beast/cat.json b/packs/src/monsters/beast/cat.json index 48060c00ea..af33ab9ca5 100644 --- a/packs/src/monsters/beast/cat.json +++ b/packs/src/monsters/beast/cat.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -563,7 +573,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hIf83RD3ZVW4Egfi.QEiTKu95xZ1ovW5K" }, { "_id": "rZhUwhHEUo6VBxPt", @@ -576,7 +587,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -651,7 +667,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hIf83RD3ZVW4Egfi.rZhUwhHEUo6VBxPt" } ], "effects": [], @@ -668,5 +685,6 @@ "createdTime": 1661787232986, "modifiedTime": 1672596103953, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!hIf83RD3ZVW4Egfi" } diff --git a/packs/src/monsters/beast/constrictor-snake.json b/packs/src/monsters/beast/constrictor-snake.json index 8093672454..83b4c472b4 100644 --- a/packs/src/monsters/beast/constrictor-snake.json +++ b/packs/src/monsters/beast/constrictor-snake.json @@ -110,7 +110,12 @@ "environment": "Underwater", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!UTuKdTah1DKfPwWe.hZOM2L6WMmk8QOfO" }, { "_id": "haXdYCAfGXo0iVqC", @@ -580,7 +591,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -689,7 +705,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!UTuKdTah1DKfPwWe.haXdYCAfGXo0iVqC" } ], "effects": [], @@ -706,5 +723,6 @@ "createdTime": 1661787232854, "modifiedTime": 1672596100544, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!UTuKdTah1DKfPwWe" } diff --git a/packs/src/monsters/beast/crab.json b/packs/src/monsters/beast/crab.json index 81429bfac1..a81e380403 100644 --- a/packs/src/monsters/beast/crab.json +++ b/packs/src/monsters/beast/crab.json @@ -110,7 +110,12 @@ "environment": "Coastal", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -563,7 +573,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8RgUhb31VvjUNZU1.gvfgesIscW0VALbY" }, { "_id": "ciz8wAZjqxPnu5Pe", @@ -576,7 +587,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -655,7 +671,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8RgUhb31VvjUNZU1.ciz8wAZjqxPnu5Pe" } ], "effects": [], @@ -672,5 +689,6 @@ "createdTime": 1661787232629, "modifiedTime": 1672596093471, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!8RgUhb31VvjUNZU1" } diff --git a/packs/src/monsters/beast/crocodile.json b/packs/src/monsters/beast/crocodile.json index d9ceddd426..082cca03d5 100644 --- a/packs/src/monsters/beast/crocodile.json +++ b/packs/src/monsters/beast/crocodile.json @@ -110,7 +110,12 @@ "environment": "Swamp", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8aCTKP5qaBPFOqxM.L0k8pFgKxxEEMEOY" }, { "_id": "vuDMChx74s6CMCab", @@ -580,7 +591,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -659,7 +675,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8aCTKP5qaBPFOqxM.vuDMChx74s6CMCab" } ], "effects": [], @@ -676,5 +693,6 @@ "createdTime": 1661787232633, "modifiedTime": 1672596093588, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!8aCTKP5qaBPFOqxM" } diff --git a/packs/src/monsters/beast/deer.json b/packs/src/monsters/beast/deer.json index 86714bf641..d9be4fda35 100644 --- a/packs/src/monsters/beast/deer.json +++ b/packs/src/monsters/beast/deer.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4EODJbmPlpnNGVR7.EyXnPvAdgwKZz6LT" } ], "effects": [], @@ -584,5 +595,6 @@ "createdTime": 1661787232579, "modifiedTime": 1672596091887, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!4EODJbmPlpnNGVR7" } diff --git a/packs/src/monsters/beast/dire-wolf.json b/packs/src/monsters/beast/dire-wolf.json index bd98409a4b..ec6947c50f 100644 --- a/packs/src/monsters/beast/dire-wolf.json +++ b/packs/src/monsters/beast/dire-wolf.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!EYiQZ3rFL25fEJY5.K0u6bJqRtcj0cSzK" }, { "_id": "weFcATmtqqUJ39Pw", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -621,7 +637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!EYiQZ3rFL25fEJY5.weFcATmtqqUJ39Pw" }, { "_id": "tx9xPDEQ8osJq6ZQ", @@ -634,7 +651,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -747,7 +769,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!EYiQZ3rFL25fEJY5.tx9xPDEQ8osJq6ZQ" } ], "effects": [], @@ -764,5 +787,6 @@ "createdTime": 1661787232697, "modifiedTime": 1672596095322, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!EYiQZ3rFL25fEJY5" } diff --git a/packs/src/monsters/beast/draft-horse.json b/packs/src/monsters/beast/draft-horse.json index 7fcdd8a4d7..e3b548402c 100644 --- a/packs/src/monsters/beast/draft-horse.json +++ b/packs/src/monsters/beast/draft-horse.json @@ -110,7 +110,12 @@ "environment": "Urban", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Bupo3E9X5Ptx6XeT.dJyouOu3yDwHTXEX" } ], "effects": [], @@ -584,5 +595,6 @@ "createdTime": 1661787232663, "modifiedTime": 1672596094547, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!Bupo3E9X5Ptx6XeT" } diff --git a/packs/src/monsters/beast/eagle.json b/packs/src/monsters/beast/eagle.json index 64b3f57371..c8254d8053 100644 --- a/packs/src/monsters/beast/eagle.json +++ b/packs/src/monsters/beast/eagle.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "sm", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!EI8w6XjzCZICkox9.IffB1JYSLbOfFeCr" }, { "_id": "FeybcW5pMzYjWRqq", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -651,7 +667,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!EI8w6XjzCZICkox9.FeybcW5pMzYjWRqq" } ], "effects": [], @@ -668,5 +685,6 @@ "createdTime": 1661787232683, "modifiedTime": 1672596095113, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!EI8w6XjzCZICkox9" } diff --git a/packs/src/monsters/beast/elephant.json b/packs/src/monsters/beast/elephant.json index ba7e07e1e5..7952333acb 100644 --- a/packs/src/monsters/beast/elephant.json +++ b/packs/src/monsters/beast/elephant.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 4, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!jLPhaBnMtAbB5dp1.TtrZUBPjTrxKxoFn" }, { "_id": "r6mBkCtL5j6Y6sBr", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -655,7 +671,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!jLPhaBnMtAbB5dp1.r6mBkCtL5j6Y6sBr" }, { "_id": "ZHBbc5K4n6sU17rC", @@ -668,7 +685,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -777,7 +799,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!jLPhaBnMtAbB5dp1.ZHBbc5K4n6sU17rC" } ], "effects": [], @@ -794,5 +817,6 @@ "createdTime": 1661787233007, "modifiedTime": 1672596104525, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!jLPhaBnMtAbB5dp1" } diff --git a/packs/src/monsters/beast/elk.json b/packs/src/monsters/beast/elk.json index ad9490612a..c5dca689b6 100644 --- a/packs/src/monsters/beast/elk.json +++ b/packs/src/monsters/beast/elk.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -538,7 +548,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!55PkbskG5iBZGrgR.slVyUWagsSZ5CXSh" }, { "_id": "05Vs3AiPgtQkX84S", @@ -551,7 +562,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -660,7 +676,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!55PkbskG5iBZGrgR.05Vs3AiPgtQkX84S" }, { "_id": "FneLrX10GhkE2o4E", @@ -673,7 +690,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -786,7 +808,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!55PkbskG5iBZGrgR.FneLrX10GhkE2o4E" } ], "effects": [], @@ -803,5 +826,6 @@ "createdTime": 1661787232586, "modifiedTime": 1672596092137, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!55PkbskG5iBZGrgR" } diff --git a/packs/src/monsters/beast/flying-snake.json b/packs/src/monsters/beast/flying-snake.json index 7cc4027dd1..ac849f9bf4 100644 --- a/packs/src/monsters/beast/flying-snake.json +++ b/packs/src/monsters/beast/flying-snake.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 0.125, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SMfgOsfPgf6rb01k.5d7uD5cYAPtlPrWh" }, { "_id": "ITtDDLuoOyJbDQpA", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -663,7 +679,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SMfgOsfPgf6rb01k.ITtDDLuoOyJbDQpA" } ], "effects": [], @@ -680,5 +697,6 @@ "createdTime": 1661787232829, "modifiedTime": 1672596099891, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!SMfgOsfPgf6rb01k" } diff --git a/packs/src/monsters/beast/frog.json b/packs/src/monsters/beast/frog.json index 1cc0262371..90b15da66e 100644 --- a/packs/src/monsters/beast/frog.json +++ b/packs/src/monsters/beast/frog.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!EZgiprHXA2D7Uyb3.8Y7gW0cyZLIzdvQb" }, { "_id": "3CnWEl3LzMTy99vo", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!EZgiprHXA2D7Uyb3.3CnWEl3LzMTy99vo" } ], "effects": [], @@ -642,5 +659,6 @@ "createdTime": 1661787232699, "modifiedTime": 1672596095359, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!EZgiprHXA2D7Uyb3" } diff --git a/packs/src/monsters/beast/giant-ape.json b/packs/src/monsters/beast/giant-ape.json index 36711a4c0f..a929225e1a 100644 --- a/packs/src/monsters/beast/giant-ape.json +++ b/packs/src/monsters/beast/giant-ape.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 7, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8MuL8xisavJW9bnw.NOajNyilBv8JIEVp" }, { "_id": "N86NeUNsfvruyJGq", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -655,7 +671,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8MuL8xisavJW9bnw.N86NeUNsfvruyJGq" }, { "_id": "CVDcFc8ZcjYVl1EV", @@ -668,7 +685,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -777,7 +799,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8MuL8xisavJW9bnw.CVDcFc8ZcjYVl1EV" } ], "effects": [], @@ -794,5 +817,6 @@ "createdTime": 1661787232627, "modifiedTime": 1672596093430, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!8MuL8xisavJW9bnw" } diff --git a/packs/src/monsters/beast/giant-badger.json b/packs/src/monsters/beast/giant-badger.json index 5bbe36fe11..9d62fe3e31 100644 --- a/packs/src/monsters/beast/giant-badger.json +++ b/packs/src/monsters/beast/giant-badger.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cJGY1ZywUOo6heNR.MdbJir3UFvpFs2Zq" }, { "_id": "1lGtRKKScQMq9K3R", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -621,7 +637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cJGY1ZywUOo6heNR.1lGtRKKScQMq9K3R" }, { "_id": "NTUVjYVsAjweAj1R", @@ -634,7 +651,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -747,7 +769,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cJGY1ZywUOo6heNR.NTUVjYVsAjweAj1R" }, { "_id": "BToZtvd0HCyQvoXC", @@ -760,7 +783,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -869,7 +897,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cJGY1ZywUOo6heNR.BToZtvd0HCyQvoXC" } ], "effects": [], @@ -886,5 +915,6 @@ "createdTime": 1661787232923, "modifiedTime": 1672596102579, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!cJGY1ZywUOo6heNR" } diff --git a/packs/src/monsters/beast/giant-bat.json b/packs/src/monsters/beast/giant-bat.json index 18ee57467d..98a713911b 100644 --- a/packs/src/monsters/beast/giant-bat.json +++ b/packs/src/monsters/beast/giant-bat.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SoK7l5zJQKxTVgLL.UfsuvLGCWiYxrys1" }, { "_id": "6xCOiR7PxQkaDGY4", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -621,7 +637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SoK7l5zJQKxTVgLL.6xCOiR7PxQkaDGY4" }, { "_id": "r77BXFVYT1LuJCZs", @@ -634,7 +651,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -747,7 +769,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SoK7l5zJQKxTVgLL.r77BXFVYT1LuJCZs" } ], "effects": [], @@ -764,5 +787,6 @@ "createdTime": 1661787232836, "modifiedTime": 1672596100097, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!SoK7l5zJQKxTVgLL" } diff --git a/packs/src/monsters/beast/giant-boar.json b/packs/src/monsters/beast/giant-boar.json index bd3b30be56..d933317284 100644 --- a/packs/src/monsters/beast/giant-boar.json +++ b/packs/src/monsters/beast/giant-boar.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -538,7 +548,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SsuCaF2fIEoDdFA3.1ArcmRCn5G0t6sOo" }, { "_id": "byaGAd7ILpgsQ7Un", @@ -551,7 +562,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -630,7 +646,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SsuCaF2fIEoDdFA3.byaGAd7ILpgsQ7Un" }, { "_id": "zHwaxxXcDz8AE8Bj", @@ -643,7 +660,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -752,7 +774,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SsuCaF2fIEoDdFA3.zHwaxxXcDz8AE8Bj" } ], "effects": [], @@ -769,5 +792,6 @@ "createdTime": 1661787232839, "modifiedTime": 1672596100169, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!SsuCaF2fIEoDdFA3" } diff --git a/packs/src/monsters/beast/giant-centipede.json b/packs/src/monsters/beast/giant-centipede.json index 533f3d9226..b89ee2b88d 100644 --- a/packs/src/monsters/beast/giant-centipede.json +++ b/packs/src/monsters/beast/giant-centipede.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "sm", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Hn8FFLEzscgT7azz.8EvqvqLumOBhrjeD" } ], "effects": [], @@ -584,5 +595,6 @@ "createdTime": 1661787232727, "modifiedTime": 1672596096198, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!Hn8FFLEzscgT7azz" } diff --git a/packs/src/monsters/beast/giant-constrictor-snake.json b/packs/src/monsters/beast/giant-constrictor-snake.json index 4234da20f8..4aa7bff6fc 100644 --- a/packs/src/monsters/beast/giant-constrictor-snake.json +++ b/packs/src/monsters/beast/giant-constrictor-snake.json @@ -110,7 +110,12 @@ "environment": "Underwater", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!NpvwE1feOHyEqAbP.qB9j7Epq7UVkGWzY" }, { "_id": "3FIKn37A037kPgzc", @@ -580,7 +591,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -689,7 +705,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!NpvwE1feOHyEqAbP.3FIKn37A037kPgzc" } ], "effects": [], @@ -706,5 +723,6 @@ "createdTime": 1661787232793, "modifiedTime": 1672596098852, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!NpvwE1feOHyEqAbP" } diff --git a/packs/src/monsters/beast/giant-crab.json b/packs/src/monsters/beast/giant-crab.json index f95fc70b2b..178250871d 100644 --- a/packs/src/monsters/beast/giant-crab.json +++ b/packs/src/monsters/beast/giant-crab.json @@ -110,7 +110,12 @@ "environment": "Coastal", "cr": 0.125, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!AOJvmk1IchxNxQzP.NsbkrfEUPw2pbRZ3" }, { "_id": "7qDtYuaBNQ3zOnBC", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -655,7 +671,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!AOJvmk1IchxNxQzP.7qDtYuaBNQ3zOnBC" } ], "effects": [], @@ -672,5 +689,6 @@ "createdTime": 1661787232647, "modifiedTime": 1672596093929, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!AOJvmk1IchxNxQzP" } diff --git a/packs/src/monsters/beast/giant-crocodile.json b/packs/src/monsters/beast/giant-crocodile.json index 02544ebdee..b06f69e9d1 100644 --- a/packs/src/monsters/beast/giant-crocodile.json +++ b/packs/src/monsters/beast/giant-crocodile.json @@ -110,7 +110,12 @@ "environment": "Swamp", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3YwmvDupMwycWNCO.Mgvz3Hm49kujtR0M" }, { "_id": "YSeYSzU3P0FooGIw", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3YwmvDupMwycWNCO.YSeYSzU3P0FooGIw" }, { "_id": "u7eurp95tuW3tYGl", @@ -638,7 +655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -751,7 +773,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3YwmvDupMwycWNCO.u7eurp95tuW3tYGl" }, { "_id": "VkCVMF2SvsuYWWYg", @@ -764,7 +787,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -873,7 +901,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3YwmvDupMwycWNCO.VkCVMF2SvsuYWWYg" } ], "effects": [], @@ -890,5 +919,6 @@ "createdTime": 1661787232570, "modifiedTime": 1672596091594, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!3YwmvDupMwycWNCO" } diff --git a/packs/src/monsters/beast/giant-eagle.json b/packs/src/monsters/beast/giant-eagle.json index 8f86282a20..e155b81d30 100644 --- a/packs/src/monsters/beast/giant-eagle.json +++ b/packs/src/monsters/beast/giant-eagle.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!9bHoR8k5D2DKHaF3.qOh4l0rSZlQOEhyc" }, { "_id": "QaRbm71tWEQzR4GK", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -621,7 +637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!9bHoR8k5D2DKHaF3.QaRbm71tWEQzR4GK" }, { "_id": "vyI1tbobhrYMxj76", @@ -634,7 +651,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -743,7 +765,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!9bHoR8k5D2DKHaF3.vyI1tbobhrYMxj76" }, { "_id": "sh91NilUd5bUZyiG", @@ -756,7 +779,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -865,7 +893,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!9bHoR8k5D2DKHaF3.sh91NilUd5bUZyiG" } ], "effects": [], @@ -882,5 +911,6 @@ "createdTime": 1661787232640, "modifiedTime": 1672596093761, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!9bHoR8k5D2DKHaF3" } diff --git a/packs/src/monsters/beast/giant-elk.json b/packs/src/monsters/beast/giant-elk.json index 94df253879..04a2cf0586 100644 --- a/packs/src/monsters/beast/giant-elk.json +++ b/packs/src/monsters/beast/giant-elk.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -538,7 +548,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hQt3qIahnB1Odb40.xSzDPptifNbKyf5N" }, { "_id": "jDA6wujGF6L3tPBM", @@ -551,7 +562,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -664,7 +680,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hQt3qIahnB1Odb40.jDA6wujGF6L3tPBM" }, { "_id": "epOt7fzXcBz9Hf0i", @@ -677,7 +694,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -786,7 +808,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hQt3qIahnB1Odb40.epOt7fzXcBz9Hf0i" } ], "effects": [], @@ -803,5 +826,6 @@ "createdTime": 1661787232988, "modifiedTime": 1672596103996, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!hQt3qIahnB1Odb40" } diff --git a/packs/src/monsters/beast/giant-fire-beetle.json b/packs/src/monsters/beast/giant-fire-beetle.json index 08702577ae..0cdcac3413 100644 --- a/packs/src/monsters/beast/giant-fire-beetle.json +++ b/packs/src/monsters/beast/giant-fire-beetle.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "sm", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Z0GiAv3bJxTjUfjM.ytajTMHqbOxc0BvA" }, { "_id": "t1I5Ss8xvBplViSy", @@ -580,7 +591,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -659,7 +675,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Z0GiAv3bJxTjUfjM.t1I5Ss8xvBplViSy" } ], "effects": [], @@ -676,5 +693,6 @@ "createdTime": 1661787232886, "modifiedTime": 1672596101374, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!Z0GiAv3bJxTjUfjM" } diff --git a/packs/src/monsters/beast/giant-fly.json b/packs/src/monsters/beast/giant-fly.json index a25857a04f..6946e2b48b 100644 --- a/packs/src/monsters/beast/giant-fly.json +++ b/packs/src/monsters/beast/giant-fly.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -453,5 +458,6 @@ "createdTime": 1661787233200, "modifiedTime": 1672596107483, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!rLl22hYeAH3ljhdI" } diff --git a/packs/src/monsters/beast/giant-frog.json b/packs/src/monsters/beast/giant-frog.json index 6b61e15ede..a94bb8356a 100644 --- a/packs/src/monsters/beast/giant-frog.json +++ b/packs/src/monsters/beast/giant-frog.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kSAi2KRonL4G4JpO.ERYnD50Ibrrag5s6" }, { "_id": "SE3xtItC4V2Eckjk", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kSAi2KRonL4G4JpO.SE3xtItC4V2Eckjk" }, { "_id": "2y826IUSIAgmYf2c", @@ -638,7 +655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -751,7 +773,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kSAi2KRonL4G4JpO.2y826IUSIAgmYf2c" }, { "_id": "37M4eUyS3kovXqdr", @@ -764,7 +787,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -848,7 +876,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kSAi2KRonL4G4JpO.37M4eUyS3kovXqdr" } ], "effects": [], @@ -865,5 +894,6 @@ "createdTime": 1661787233012, "modifiedTime": 1672596104657, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!kSAi2KRonL4G4JpO" } diff --git a/packs/src/monsters/beast/giant-goat.json b/packs/src/monsters/beast/giant-goat.json index c2346f9ba0..aa5208d530 100644 --- a/packs/src/monsters/beast/giant-goat.json +++ b/packs/src/monsters/beast/giant-goat.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -538,7 +548,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!rjqk7ToMD8sGr3n4.dBII3VhTvg43aTUI" }, { "_id": "kqrWunjvDSHdnPmW", @@ -551,7 +562,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -630,7 +646,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!rjqk7ToMD8sGr3n4.kqrWunjvDSHdnPmW" }, { "_id": "t8cKnWGtgVCfhW5v", @@ -643,7 +660,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -752,7 +774,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!rjqk7ToMD8sGr3n4.t8cKnWGtgVCfhW5v" } ], "effects": [], @@ -769,5 +792,6 @@ "createdTime": 1661787233206, "modifiedTime": 1672596107673, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!rjqk7ToMD8sGr3n4" } diff --git a/packs/src/monsters/beast/giant-hyena.json b/packs/src/monsters/beast/giant-hyena.json index 00ad179e78..e9aea19ab8 100644 --- a/packs/src/monsters/beast/giant-hyena.json +++ b/packs/src/monsters/beast/giant-hyena.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aAqfEHPiVbhMwZ6j.QY2OI39oNi9VUuAY" }, { "_id": "X9XQ405Nx5lHP20E", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -659,7 +675,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aAqfEHPiVbhMwZ6j.X9XQ405Nx5lHP20E" } ], "effects": [], @@ -676,5 +693,6 @@ "createdTime": 1661787232901, "modifiedTime": 1672596101847, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!aAqfEHPiVbhMwZ6j" } diff --git a/packs/src/monsters/beast/giant-lizard.json b/packs/src/monsters/beast/giant-lizard.json index 70e49f9685..ef39209f1b 100644 --- a/packs/src/monsters/beast/giant-lizard.json +++ b/packs/src/monsters/beast/giant-lizard.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pLzSh4dA517Tn73E.fLwfCY0GE5S7mMYv" } ], "effects": [], @@ -584,5 +595,6 @@ "createdTime": 1661787233178, "modifiedTime": 1672596106822, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!pLzSh4dA517Tn73E" } diff --git a/packs/src/monsters/beast/giant-octopus.json b/packs/src/monsters/beast/giant-octopus.json index d2a196f833..b25f7e4af7 100644 --- a/packs/src/monsters/beast/giant-octopus.json +++ b/packs/src/monsters/beast/giant-octopus.json @@ -110,7 +110,12 @@ "environment": "Underwater", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!p9Xnr820UAZBOIVN.Fz4N05s53rXx3EKX" }, { "_id": "NDE2nul3OiWsL2Hq", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!p9Xnr820UAZBOIVN.NDE2nul3OiWsL2Hq" }, { "_id": "WkrcqZN7dSJu9CYC", @@ -638,7 +655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -717,7 +739,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!p9Xnr820UAZBOIVN.WkrcqZN7dSJu9CYC" }, { "_id": "HoGLXQIsF3riSu3X", @@ -730,7 +753,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -809,7 +837,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!p9Xnr820UAZBOIVN.HoGLXQIsF3riSu3X" }, { "_id": "yOZK7sWcCRFmuAxz", @@ -822,7 +851,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -935,7 +969,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!p9Xnr820UAZBOIVN.yOZK7sWcCRFmuAxz" } ], "effects": [], @@ -952,5 +987,6 @@ "createdTime": 1661787233174, "modifiedTime": 1672596106672, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!p9Xnr820UAZBOIVN" } diff --git a/packs/src/monsters/beast/giant-owl.json b/packs/src/monsters/beast/giant-owl.json index 5c373683ac..11c0f4d078 100644 --- a/packs/src/monsters/beast/giant-owl.json +++ b/packs/src/monsters/beast/giant-owl.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VVXly3ue0i3YgGrB.KPd0M35kARcddw1j" }, { "_id": "u75qrcQ8DsrUULkS", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -621,7 +637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VVXly3ue0i3YgGrB.u75qrcQ8DsrUULkS" }, { "_id": "6jw1NtpZQXIesO4Y", @@ -634,7 +651,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -743,7 +765,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VVXly3ue0i3YgGrB.6jw1NtpZQXIesO4Y" } ], "effects": [], @@ -760,5 +783,6 @@ "createdTime": 1661787232864, "modifiedTime": 1672596100805, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!VVXly3ue0i3YgGrB" } diff --git a/packs/src/monsters/beast/giant-poisonous-snake.json b/packs/src/monsters/beast/giant-poisonous-snake.json index aead5411be..b8be565c40 100644 --- a/packs/src/monsters/beast/giant-poisonous-snake.json +++ b/packs/src/monsters/beast/giant-poisonous-snake.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZW39DE2zI3TXVYC9.GlOJaYXJFUP0Hd80" } ], "effects": [], @@ -584,5 +595,6 @@ "createdTime": 1661787232894, "modifiedTime": 1672596101590, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!ZW39DE2zI3TXVYC9" } diff --git a/packs/src/monsters/beast/giant-rat-diseased.json b/packs/src/monsters/beast/giant-rat-diseased.json index b09e5e0860..84220c5dff 100644 --- a/packs/src/monsters/beast/giant-rat-diseased.json +++ b/packs/src/monsters/beast/giant-rat-diseased.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0.125, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "sm", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!z0zvgcIugizwcuxJ.52m3BQ2wpXvT0jOM" }, { "_id": "uQpDpdmzlAyQKbRu", @@ -580,7 +591,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -655,7 +671,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!z0zvgcIugizwcuxJ.uQpDpdmzlAyQKbRu" }, { "_id": "5ZWzJ5OSQh22ueeq", @@ -668,7 +685,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -747,7 +769,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!z0zvgcIugizwcuxJ.5ZWzJ5OSQh22ueeq" } ], "effects": [], @@ -764,5 +787,6 @@ "createdTime": 1661787233253, "modifiedTime": 1672596109177, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!z0zvgcIugizwcuxJ" } diff --git a/packs/src/monsters/beast/giant-rat.json b/packs/src/monsters/beast/giant-rat.json index a7f984f046..3e4feb418e 100644 --- a/packs/src/monsters/beast/giant-rat.json +++ b/packs/src/monsters/beast/giant-rat.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0.125, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "sm", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!q1YJIeIt6rK8fCKn.IJJ5nwTmA5BBnSvq" }, { "_id": "m1b40a7qTZXNiBLw", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -621,7 +637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!q1YJIeIt6rK8fCKn.m1b40a7qTZXNiBLw" }, { "_id": "D98YkFEPQRdesZUW", @@ -634,7 +651,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -747,7 +769,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!q1YJIeIt6rK8fCKn.D98YkFEPQRdesZUW" } ], "effects": [], @@ -764,5 +787,6 @@ "createdTime": 1661787233183, "modifiedTime": 1672596106954, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!q1YJIeIt6rK8fCKn" } diff --git a/packs/src/monsters/beast/giant-scorpion.json b/packs/src/monsters/beast/giant-scorpion.json index 75f519de0d..f411b68e14 100644 --- a/packs/src/monsters/beast/giant-scorpion.json +++ b/packs/src/monsters/beast/giant-scorpion.json @@ -110,7 +110,12 @@ "environment": "Desert", "cr": 3, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GxgIVRX5GbVTifiF.wpqra38jsZPRAuov" }, { "_id": "OJ2b64O3e1nni21W", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -655,7 +671,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GxgIVRX5GbVTifiF.OJ2b64O3e1nni21W" }, { "_id": "q6uVUHWyzht5OpwV", @@ -668,7 +685,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -777,7 +799,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GxgIVRX5GbVTifiF.q6uVUHWyzht5OpwV" } ], "effects": [], @@ -794,5 +817,6 @@ "createdTime": 1661787232718, "modifiedTime": 1672596095952, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!GxgIVRX5GbVTifiF" } diff --git a/packs/src/monsters/beast/giant-sea-horse.json b/packs/src/monsters/beast/giant-sea-horse.json index 50786a07cf..9d0a294539 100644 --- a/packs/src/monsters/beast/giant-sea-horse.json +++ b/packs/src/monsters/beast/giant-sea-horse.json @@ -110,7 +110,12 @@ "environment": "Underwater", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -538,7 +548,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!c9XDGsTJRy9HUaxQ.MB7KUNGnxz6mw1J5" }, { "_id": "yCZ6sgHxxIr0zIxO", @@ -551,7 +562,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -630,7 +646,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!c9XDGsTJRy9HUaxQ.yCZ6sgHxxIr0zIxO" }, { "_id": "tTZCmbeeSHXXFZGJ", @@ -643,7 +660,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -752,7 +774,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!c9XDGsTJRy9HUaxQ.tTZCmbeeSHXXFZGJ" } ], "effects": [], @@ -769,5 +792,6 @@ "createdTime": 1661787232917, "modifiedTime": 1672596102373, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!c9XDGsTJRy9HUaxQ" } diff --git a/packs/src/monsters/beast/giant-shark.json b/packs/src/monsters/beast/giant-shark.json index 951c09bb67..8b06b80dcc 100644 --- a/packs/src/monsters/beast/giant-shark.json +++ b/packs/src/monsters/beast/giant-shark.json @@ -110,7 +110,12 @@ "environment": "Underwater", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MWlwLlKXh8jUUxOL.0r0ClOXv3FyCYvTr" }, { "_id": "VMKAbY9Znfzav7Ou", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MWlwLlKXh8jUUxOL.VMKAbY9Znfzav7Ou" }, { "_id": "fGIh2Vq3XhIzacIg", @@ -638,7 +655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -751,7 +773,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MWlwLlKXh8jUUxOL.fGIh2Vq3XhIzacIg" } ], "effects": [], @@ -768,5 +791,6 @@ "createdTime": 1661787232781, "modifiedTime": 1672596097854, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!MWlwLlKXh8jUUxOL" } diff --git a/packs/src/monsters/beast/giant-spider.json b/packs/src/monsters/beast/giant-spider.json index 3d0529386d..d78993000f 100644 --- a/packs/src/monsters/beast/giant-spider.json +++ b/packs/src/monsters/beast/giant-spider.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!v99wOosUJjUgcUNF.OPXUPzkwhBaLTt7a" }, { "_id": "1LTl2RCToU6ZLZdi", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!v99wOosUJjUgcUNF.1LTl2RCToU6ZLZdi" }, { "_id": "tEmV0HTreVHudOYa", @@ -638,7 +655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -717,7 +739,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!v99wOosUJjUgcUNF.tEmV0HTreVHudOYa" }, { "_id": "SuRAERXystPvC7Ci", @@ -730,7 +753,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -843,7 +871,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!v99wOosUJjUgcUNF.SuRAERXystPvC7Ci" }, { "_id": "g7e60AxXarlQ9xQC", @@ -856,7 +885,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -935,7 +969,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!v99wOosUJjUgcUNF.g7e60AxXarlQ9xQC" } ], "effects": [], @@ -952,5 +987,6 @@ "createdTime": 1661787233234, "modifiedTime": 1672596108588, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!v99wOosUJjUgcUNF" } diff --git a/packs/src/monsters/beast/giant-toad.json b/packs/src/monsters/beast/giant-toad.json index 9930e88ab6..ebd57ed2d5 100644 --- a/packs/src/monsters/beast/giant-toad.json +++ b/packs/src/monsters/beast/giant-toad.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Ixo5shumxy4I9qyD.rNhsbUDaAVVoxquv" }, { "_id": "zEtaamYVRSqu81fy", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Ixo5shumxy4I9qyD.zEtaamYVRSqu81fy" }, { "_id": "lYSWskOMRCVLyWLZ", @@ -638,7 +655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -755,7 +777,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Ixo5shumxy4I9qyD.lYSWskOMRCVLyWLZ" }, { "_id": "6aBDwlIsxceFMXxL", @@ -768,7 +791,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -852,7 +880,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Ixo5shumxy4I9qyD.6aBDwlIsxceFMXxL" } ], "effects": [], @@ -869,5 +898,6 @@ "createdTime": 1661787232734, "modifiedTime": 1672596096363, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!Ixo5shumxy4I9qyD" } diff --git a/packs/src/monsters/beast/giant-vulture.json b/packs/src/monsters/beast/giant-vulture.json index b8895678fc..573720b34d 100644 --- a/packs/src/monsters/beast/giant-vulture.json +++ b/packs/src/monsters/beast/giant-vulture.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4ZlUHt4xmB7GdPfk.AB0XlPm529Z5WEyY" }, { "_id": "m4B7gGdnTcIHeRpH", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -621,7 +637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4ZlUHt4xmB7GdPfk.m4B7gGdnTcIHeRpH" }, { "_id": "5kigRXx2FSlzVUWm", @@ -634,7 +651,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -713,7 +735,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4ZlUHt4xmB7GdPfk.5kigRXx2FSlzVUWm" }, { "_id": "t6TG4rgkOXBefYZQ", @@ -726,7 +749,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -835,7 +863,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4ZlUHt4xmB7GdPfk.t6TG4rgkOXBefYZQ" }, { "_id": "AXKWmB2ZU1hebo5S", @@ -848,7 +877,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -957,7 +991,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4ZlUHt4xmB7GdPfk.AXKWmB2ZU1hebo5S" } ], "effects": [], @@ -974,5 +1009,6 @@ "createdTime": 1661787232581, "modifiedTime": 1672596091964, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!4ZlUHt4xmB7GdPfk" } diff --git a/packs/src/monsters/beast/giant-wasp.json b/packs/src/monsters/beast/giant-wasp.json index 948194d40c..556b1274df 100644 --- a/packs/src/monsters/beast/giant-wasp.json +++ b/packs/src/monsters/beast/giant-wasp.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -563,7 +573,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4tl0s2SnaLjkoDiI.L1TmhBXd2UrVxExn" } ], "effects": [], @@ -580,5 +591,6 @@ "createdTime": 1661787232583, "modifiedTime": 1672596092043, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!4tl0s2SnaLjkoDiI" } diff --git a/packs/src/monsters/beast/giant-weasel.json b/packs/src/monsters/beast/giant-weasel.json index 4228849fb3..add0ef448c 100644 --- a/packs/src/monsters/beast/giant-weasel.json +++ b/packs/src/monsters/beast/giant-weasel.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 0.125, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8VXxqeBvN54rPh81.MWoEhaUMfZJAQH2R" }, { "_id": "BrbVh5Sx3clXLHIi", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -655,7 +671,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8VXxqeBvN54rPh81.BrbVh5Sx3clXLHIi" } ], "effects": [], @@ -672,5 +689,6 @@ "createdTime": 1661787232632, "modifiedTime": 1672596093551, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!8VXxqeBvN54rPh81" } diff --git a/packs/src/monsters/beast/giant-wolf-spider.json b/packs/src/monsters/beast/giant-wolf-spider.json index eacd352c30..72fb19fadf 100644 --- a/packs/src/monsters/beast/giant-wolf-spider.json +++ b/packs/src/monsters/beast/giant-wolf-spider.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!f9JbhBfWucrY2eDA.w4oJusdFuSttyz8X" }, { "_id": "Et0GP61ZnJkxxqvN", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -659,7 +675,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!f9JbhBfWucrY2eDA.Et0GP61ZnJkxxqvN" }, { "_id": "OwNnGHVHu2XX0oPc", @@ -672,7 +689,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -751,7 +773,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!f9JbhBfWucrY2eDA.OwNnGHVHu2XX0oPc" }, { "_id": "oRhC5cUi8uHMapul", @@ -764,7 +787,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -843,7 +871,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!f9JbhBfWucrY2eDA.oRhC5cUi8uHMapul" } ], "effects": [], @@ -860,5 +889,6 @@ "createdTime": 1661787232956, "modifiedTime": 1672596103200, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!f9JbhBfWucrY2eDA" } diff --git a/packs/src/monsters/beast/goat.json b/packs/src/monsters/beast/goat.json index c5feed1891..b576f31d8c 100644 --- a/packs/src/monsters/beast/goat.json +++ b/packs/src/monsters/beast/goat.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -538,7 +548,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!y8sRU8Ks2lcrGsaf.fmILoB0arLdodNGB" }, { "_id": "gyY5rw0x4itzMKoj", @@ -551,7 +562,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -630,7 +646,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!y8sRU8Ks2lcrGsaf.gyY5rw0x4itzMKoj" }, { "_id": "I3ioyE4CVHPLGGy7", @@ -643,7 +660,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -752,7 +774,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!y8sRU8Ks2lcrGsaf.I3ioyE4CVHPLGGy7" } ], "effects": [], @@ -769,5 +792,6 @@ "createdTime": 1661787233245, "modifiedTime": 1672596108999, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!y8sRU8Ks2lcrGsaf" } diff --git a/packs/src/monsters/beast/hawk.json b/packs/src/monsters/beast/hawk.json index 7bce0dedfa..db8ef3238a 100644 --- a/packs/src/monsters/beast/hawk.json +++ b/packs/src/monsters/beast/hawk.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!fnkPNfIpS62LqOu4.hHbY6NAFUWVlz7tj" }, { "_id": "0Di3cqTRD7ot8ZCa", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -651,7 +667,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!fnkPNfIpS62LqOu4.0Di3cqTRD7ot8ZCa" } ], "effects": [], @@ -668,5 +685,6 @@ "createdTime": 1661787232961, "modifiedTime": 1672596103316, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!fnkPNfIpS62LqOu4" } diff --git a/packs/src/monsters/beast/hunter-shark.json b/packs/src/monsters/beast/hunter-shark.json index 7fc1b10c8c..919f939267 100644 --- a/packs/src/monsters/beast/hunter-shark.json +++ b/packs/src/monsters/beast/hunter-shark.json @@ -110,7 +110,12 @@ "environment": "Underwater", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!siBUEAj4UVdaiH6p.nobk1ka9lHYyoww0" }, { "_id": "QX33CsCo431JxQxy", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!siBUEAj4UVdaiH6p.QX33CsCo431JxQxy" }, { "_id": "KcQolnG6732GPN3o", @@ -638,7 +655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -751,7 +773,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!siBUEAj4UVdaiH6p.KcQolnG6732GPN3o" } ], "effects": [], @@ -768,5 +791,6 @@ "createdTime": 1661787233217, "modifiedTime": 1672596108078, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!siBUEAj4UVdaiH6p" } diff --git a/packs/src/monsters/beast/hyena.json b/packs/src/monsters/beast/hyena.json index fcea209f55..45124b4981 100644 --- a/packs/src/monsters/beast/hyena.json +++ b/packs/src/monsters/beast/hyena.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cDr1JtzEV26bP5Ym.RvZitO1X1j16tABV" }, { "_id": "gqMeY9GtWfBNt1bf", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -659,7 +675,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cDr1JtzEV26bP5Ym.gqMeY9GtWfBNt1bf" } ], "effects": [], @@ -676,5 +693,6 @@ "createdTime": 1661787232919, "modifiedTime": 1672596102413, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!cDr1JtzEV26bP5Ym" } diff --git a/packs/src/monsters/beast/jackal.json b/packs/src/monsters/beast/jackal.json index 0ff136afd6..5d61cd387b 100644 --- a/packs/src/monsters/beast/jackal.json +++ b/packs/src/monsters/beast/jackal.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "sm", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MZYCPIVoBs918qGZ.fBpB1lIZvuqLD74z" }, { "_id": "JX4jbwWlO8zaTc4s", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -621,7 +637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MZYCPIVoBs918qGZ.JX4jbwWlO8zaTc4s" }, { "_id": "ggHLjL39tb62Bwxy", @@ -634,7 +651,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -747,7 +769,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MZYCPIVoBs918qGZ.ggHLjL39tb62Bwxy" } ], "effects": [], @@ -764,5 +787,6 @@ "createdTime": 1661787232783, "modifiedTime": 1672596098520, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!MZYCPIVoBs918qGZ" } diff --git a/packs/src/monsters/beast/killer-whale.json b/packs/src/monsters/beast/killer-whale.json index 37ea2cf6e7..0a773695c9 100644 --- a/packs/src/monsters/beast/killer-whale.json +++ b/packs/src/monsters/beast/killer-whale.json @@ -110,7 +110,12 @@ "environment": "Underwater", "cr": 3, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ciLSItjCpwT7nMmk.1EB34o4iqY7GN1HT" }, { "_id": "Hwa4dcQdXAi1vk7z", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ciLSItjCpwT7nMmk.Hwa4dcQdXAi1vk7z" }, { "_id": "z9JmFBY3z1pnVFX9", @@ -638,7 +655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -713,7 +735,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ciLSItjCpwT7nMmk.z9JmFBY3z1pnVFX9" }, { "_id": "2JDxekOVx1NSUwuP", @@ -726,7 +749,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -839,7 +867,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ciLSItjCpwT7nMmk.2JDxekOVx1NSUwuP" } ], "effects": [], @@ -856,5 +885,6 @@ "createdTime": 1661787232932, "modifiedTime": 1672596102617, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!ciLSItjCpwT7nMmk" } diff --git a/packs/src/monsters/beast/lion.json b/packs/src/monsters/beast/lion.json index 6602e3b386..31e9f4e6ad 100644 --- a/packs/src/monsters/beast/lion.json +++ b/packs/src/monsters/beast/lion.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hjhERRzafCiFFVLA.ZFsvhBgKXqgf17TZ" }, { "_id": "Kztga4jBHZCUjO3A", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -621,7 +637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hjhERRzafCiFFVLA.Kztga4jBHZCUjO3A" }, { "_id": "pQdtHaxlArSTjbqb", @@ -634,7 +651,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -713,7 +735,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hjhERRzafCiFFVLA.pQdtHaxlArSTjbqb" }, { "_id": "3dmAdKAVc8JqLgIj", @@ -726,7 +749,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -805,7 +833,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hjhERRzafCiFFVLA.3dmAdKAVc8JqLgIj" }, { "_id": "gKj1TlVfDhLp5WIk", @@ -818,7 +847,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -931,7 +965,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hjhERRzafCiFFVLA.gKj1TlVfDhLp5WIk" }, { "_id": "CHIayoaCAZj0GBkM", @@ -944,7 +979,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1053,7 +1093,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hjhERRzafCiFFVLA.CHIayoaCAZj0GBkM" } ], "effects": [], @@ -1070,5 +1111,6 @@ "createdTime": 1661787232994, "modifiedTime": 1672596104131, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!hjhERRzafCiFFVLA" } diff --git a/packs/src/monsters/beast/lizard.json b/packs/src/monsters/beast/lizard.json index 97531ed762..9d23332893 100644 --- a/packs/src/monsters/beast/lizard.json +++ b/packs/src/monsters/beast/lizard.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!I2x01hzOjVN4NUjf.AlO7NtMS64z0faPM" } ], "effects": [], @@ -584,5 +595,6 @@ "createdTime": 1661787232729, "modifiedTime": 1672596096235, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!I2x01hzOjVN4NUjf" } diff --git a/packs/src/monsters/beast/mammoth.json b/packs/src/monsters/beast/mammoth.json index 227535dc61..d1a41308f6 100644 --- a/packs/src/monsters/beast/mammoth.json +++ b/packs/src/monsters/beast/mammoth.json @@ -110,7 +110,12 @@ "environment": "Arctic", "cr": 6, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MiYRAIHwm9It1in8.4LYRJH02EsSnZUNc" }, { "_id": "S7i3GTdoo6tyc2wL", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -655,7 +671,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MiYRAIHwm9It1in8.S7i3GTdoo6tyc2wL" }, { "_id": "Hx541foatcQiMSZj", @@ -668,7 +685,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -777,7 +799,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MiYRAIHwm9It1in8.Hx541foatcQiMSZj" } ], "effects": [], @@ -794,5 +817,6 @@ "createdTime": 1661787232784, "modifiedTime": 1672596098575, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!MiYRAIHwm9It1in8" } diff --git a/packs/src/monsters/beast/mastiff.json b/packs/src/monsters/beast/mastiff.json index a4419be14e..1bbce677c5 100644 --- a/packs/src/monsters/beast/mastiff.json +++ b/packs/src/monsters/beast/mastiff.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 0.125, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!YTpL2c3NO4sOn2UA.F1Rua6pTBYdDfVob" }, { "_id": "QLJgy1aF5ijBEp4K", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -655,7 +671,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!YTpL2c3NO4sOn2UA.QLJgy1aF5ijBEp4K" } ], "effects": [], @@ -672,5 +689,6 @@ "createdTime": 1661787232883, "modifiedTime": 1672596101303, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!YTpL2c3NO4sOn2UA" } diff --git a/packs/src/monsters/beast/mule.json b/packs/src/monsters/beast/mule.json index cf5b22a35b..cb182cfd55 100644 --- a/packs/src/monsters/beast/mule.json +++ b/packs/src/monsters/beast/mule.json @@ -110,7 +110,12 @@ "environment": "Hill", "cr": 0.125, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Vk7uHVkJ5b26gaTh.nIYcqw8lbaWP1sSJ" }, { "_id": "PWqvlPCG9P9edPYi", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Vk7uHVkJ5b26gaTh.PWqvlPCG9P9edPYi" }, { "_id": "Ou2VI9ORGu2JnZqj", @@ -638,7 +655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -751,7 +773,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Vk7uHVkJ5b26gaTh.Ou2VI9ORGu2JnZqj" } ], "effects": [], @@ -768,5 +791,6 @@ "createdTime": 1661787232865, "modifiedTime": 1672596100842, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!Vk7uHVkJ5b26gaTh" } diff --git a/packs/src/monsters/beast/octopus.json b/packs/src/monsters/beast/octopus.json index c8a005dfdd..a3ca9d2eec 100644 --- a/packs/src/monsters/beast/octopus.json +++ b/packs/src/monsters/beast/octopus.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "sm", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3UUNbGiG2Yf1ZPxM.SLnyx0Ta2ksVM9QL" }, { "_id": "TKztZERtXehbxu2q", @@ -580,7 +591,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -659,7 +675,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3UUNbGiG2Yf1ZPxM.TKztZERtXehbxu2q" }, { "_id": "ODM4yi5BKpC4Hohw", @@ -672,7 +689,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -751,7 +773,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3UUNbGiG2Yf1ZPxM.ODM4yi5BKpC4Hohw" }, { "_id": "LZOszBNIg9oMej4l", @@ -764,7 +787,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -843,7 +871,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3UUNbGiG2Yf1ZPxM.LZOszBNIg9oMej4l" }, { "_id": "8qYBpaA8c3BuBujY", @@ -856,7 +885,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -935,7 +969,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3UUNbGiG2Yf1ZPxM.8qYBpaA8c3BuBujY" } ], "effects": [], @@ -952,5 +987,6 @@ "createdTime": 1661787232567, "modifiedTime": 1672596091536, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!3UUNbGiG2Yf1ZPxM" } diff --git a/packs/src/monsters/beast/owl.json b/packs/src/monsters/beast/owl.json index 5753862ab7..02feded0a1 100644 --- a/packs/src/monsters/beast/owl.json +++ b/packs/src/monsters/beast/owl.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!d0prpsGSAorDadec.HZ5UNadatPJxpeKP" }, { "_id": "9H6ylAxHKFhsfqno", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -621,7 +637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!d0prpsGSAorDadec.9H6ylAxHKFhsfqno" }, { "_id": "c3NnWQRHnaBpqtbe", @@ -634,7 +651,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -743,7 +765,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!d0prpsGSAorDadec.c3NnWQRHnaBpqtbe" } ], "effects": [], @@ -760,5 +783,6 @@ "createdTime": 1661787232936, "modifiedTime": 1672596102757, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!d0prpsGSAorDadec" } diff --git a/packs/src/monsters/beast/panther.json b/packs/src/monsters/beast/panther.json index 44df7e24a2..de853887cc 100644 --- a/packs/src/monsters/beast/panther.json +++ b/packs/src/monsters/beast/panther.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!AijNdqMurWxDxUSl.vS7OqBXfpfbsx5Rh" }, { "_id": "6UmjtTyihpEERg1I", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -621,7 +637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!AijNdqMurWxDxUSl.6UmjtTyihpEERg1I" }, { "_id": "c7iYo6g3A6DP8V4w", @@ -634,7 +651,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -747,7 +769,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!AijNdqMurWxDxUSl.c7iYo6g3A6DP8V4w" }, { "_id": "t4bERcqBVDvjJ2gx", @@ -760,7 +783,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -869,7 +897,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!AijNdqMurWxDxUSl.t4bERcqBVDvjJ2gx" } ], "effects": [], @@ -886,5 +915,6 @@ "createdTime": 1661787232648, "modifiedTime": 1672596093969, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!AijNdqMurWxDxUSl" } diff --git a/packs/src/monsters/beast/plesiosaurus.json b/packs/src/monsters/beast/plesiosaurus.json index be72b39d7e..3ae05bc885 100644 --- a/packs/src/monsters/beast/plesiosaurus.json +++ b/packs/src/monsters/beast/plesiosaurus.json @@ -110,7 +110,12 @@ "environment": "Underwater", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4OeZZguYgJcsZoM9.RbcK5H5JO9EnIiCA" }, { "_id": "PtGDikGuH6rHkITy", @@ -580,7 +591,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -659,7 +675,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4OeZZguYgJcsZoM9.PtGDikGuH6rHkITy" } ], "effects": [], @@ -676,5 +693,6 @@ "createdTime": 1661787232580, "modifiedTime": 1672596091924, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!4OeZZguYgJcsZoM9" } diff --git a/packs/src/monsters/beast/poisonous-snake.json b/packs/src/monsters/beast/poisonous-snake.json index e87751b595..9782f5c153 100644 --- a/packs/src/monsters/beast/poisonous-snake.json +++ b/packs/src/monsters/beast/poisonous-snake.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 0.125, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!D5rwVIxmfFrdyyxT.obYv0JJqJiMTsoIF" } ], "effects": [], @@ -584,5 +595,6 @@ "createdTime": 1661787232678, "modifiedTime": 1672596094945, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!D5rwVIxmfFrdyyxT" } diff --git a/packs/src/monsters/beast/polar-bear.json b/packs/src/monsters/beast/polar-bear.json index ae89436524..c8758f60e9 100644 --- a/packs/src/monsters/beast/polar-bear.json +++ b/packs/src/monsters/beast/polar-bear.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hb6pjvdCNYmLLp8V.ieLtcJMAlgYVDSvs" }, { "_id": "hJyurwicMrRIt2TC", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -621,7 +637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hb6pjvdCNYmLLp8V.hJyurwicMrRIt2TC" }, { "_id": "c8cisRQ7Ki3qiXgL", @@ -634,7 +651,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -747,7 +769,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hb6pjvdCNYmLLp8V.c8cisRQ7Ki3qiXgL" }, { "_id": "jFBgpP0EO1Y2HRL0", @@ -760,7 +783,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -869,7 +897,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hb6pjvdCNYmLLp8V.jFBgpP0EO1Y2HRL0" } ], "effects": [], @@ -886,5 +915,6 @@ "createdTime": 1661787232992, "modifiedTime": 1672596104088, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!hb6pjvdCNYmLLp8V" } diff --git a/packs/src/monsters/beast/pony.json b/packs/src/monsters/beast/pony.json index 7feb5a5633..163e78f7fd 100644 --- a/packs/src/monsters/beast/pony.json +++ b/packs/src/monsters/beast/pony.json @@ -110,7 +110,12 @@ "environment": "Urban", "cr": 0.125, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!PHO4J98zK2p4KNyc.bDVZoB8Y0b3nkveO" } ], "effects": [], @@ -584,5 +595,6 @@ "createdTime": 1661787232806, "modifiedTime": 1672596099222, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!PHO4J98zK2p4KNyc" } diff --git a/packs/src/monsters/beast/quipper.json b/packs/src/monsters/beast/quipper.json index e5c58e1c85..74f0c1db2a 100644 --- a/packs/src/monsters/beast/quipper.json +++ b/packs/src/monsters/beast/quipper.json @@ -110,7 +110,12 @@ "environment": "Underwater", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nkyCGJ9wXeAZkyyz.jFoGi81ljGK27zpX" }, { "_id": "fTUKEAcQ4JT7xieY", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nkyCGJ9wXeAZkyyz.fTUKEAcQ4JT7xieY" }, { "_id": "0SJofXpPrHJsVXOy", @@ -638,7 +655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -751,7 +773,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nkyCGJ9wXeAZkyyz.0SJofXpPrHJsVXOy" } ], "effects": [], @@ -768,5 +791,6 @@ "createdTime": 1661787233163, "modifiedTime": 1672596106362, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!nkyCGJ9wXeAZkyyz" } diff --git a/packs/src/monsters/beast/rat.json b/packs/src/monsters/beast/rat.json index 4c95d52472..9f7f31b8af 100644 --- a/packs/src/monsters/beast/rat.json +++ b/packs/src/monsters/beast/rat.json @@ -110,7 +110,12 @@ "environment": "Swamp", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pozQUPTnLZW8epox.mll5ghZVkPuiyBoa" }, { "_id": "QpysqgoHq9LXsShc", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -655,7 +671,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pozQUPTnLZW8epox.QpysqgoHq9LXsShc" } ], "effects": [], @@ -672,5 +689,6 @@ "createdTime": 1661787233181, "modifiedTime": 1672596106914, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!pozQUPTnLZW8epox" } diff --git a/packs/src/monsters/beast/raven.json b/packs/src/monsters/beast/raven.json index ec4c7da896..907edc279f 100644 --- a/packs/src/monsters/beast/raven.json +++ b/packs/src/monsters/beast/raven.json @@ -110,7 +110,12 @@ "environment": "Swamp", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!LPdX5YLlwci0NDZx.nDvgtu7NSNCrREAv" }, { "_id": "p8JmuP7pndzbZVzj", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -655,7 +671,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!LPdX5YLlwci0NDZx.p8JmuP7pndzbZVzj" } ], "effects": [], @@ -672,5 +689,6 @@ "createdTime": 1661787232767, "modifiedTime": 1672596097374, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!LPdX5YLlwci0NDZx" } diff --git a/packs/src/monsters/beast/reef-shark.json b/packs/src/monsters/beast/reef-shark.json index 8a3d7f44e4..8e2c4ace4a 100644 --- a/packs/src/monsters/beast/reef-shark.json +++ b/packs/src/monsters/beast/reef-shark.json @@ -110,7 +110,12 @@ "environment": "Underwater", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!F0yILX4xKKt4dxKY.vFBjTLrkdsB0llcn" }, { "_id": "nA5rxVuopudrZgZB", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!F0yILX4xKKt4dxKY.nA5rxVuopudrZgZB" }, { "_id": "9xaHEynEl0adgcJ4", @@ -638,7 +655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -751,7 +773,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!F0yILX4xKKt4dxKY.9xaHEynEl0adgcJ4" } ], "effects": [], @@ -768,5 +791,6 @@ "createdTime": 1661787232703, "modifiedTime": 1672596095468, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!F0yILX4xKKt4dxKY" } diff --git a/packs/src/monsters/beast/rhinoceros.json b/packs/src/monsters/beast/rhinoceros.json index 3eb292d008..2b239bb228 100644 --- a/packs/src/monsters/beast/rhinoceros.json +++ b/packs/src/monsters/beast/rhinoceros.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -538,7 +548,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SBCe2BSa6opTS5M4.e1ZjZT7dyExUSEOu" }, { "_id": "uFv78t6CwySS1gio", @@ -551,7 +562,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -660,7 +676,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SBCe2BSa6opTS5M4.uFv78t6CwySS1gio" } ], "effects": [], @@ -677,5 +694,6 @@ "createdTime": 1661787232828, "modifiedTime": 1672596099855, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!SBCe2BSa6opTS5M4" } diff --git a/packs/src/monsters/beast/riding-horse.json b/packs/src/monsters/beast/riding-horse.json index 055d4153b6..9964a33e17 100644 --- a/packs/src/monsters/beast/riding-horse.json +++ b/packs/src/monsters/beast/riding-horse.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!rz8UTUnFT87BsAFR.CwpmLFcikAet169F" } ], "effects": [], @@ -584,5 +595,6 @@ "createdTime": 1661787233208, "modifiedTime": 1672596107713, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!rz8UTUnFT87BsAFR" } diff --git a/packs/src/monsters/beast/saber-toothed-tiger.json b/packs/src/monsters/beast/saber-toothed-tiger.json index 2133d24cb4..d71979b323 100644 --- a/packs/src/monsters/beast/saber-toothed-tiger.json +++ b/packs/src/monsters/beast/saber-toothed-tiger.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!tYYoifu9teGLetVI.1GpwqMUVXUhKvZSS" }, { "_id": "6f3yWYLcONtKe72e", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -621,7 +637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!tYYoifu9teGLetVI.6f3yWYLcONtKe72e" }, { "_id": "npiswgaiGzupcEmw", @@ -634,7 +651,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -747,7 +769,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!tYYoifu9teGLetVI.npiswgaiGzupcEmw" }, { "_id": "I9zJprscDFYpwwJR", @@ -760,7 +783,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -869,7 +897,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!tYYoifu9teGLetVI.I9zJprscDFYpwwJR" } ], "effects": [], @@ -886,5 +915,6 @@ "createdTime": 1661787233221, "modifiedTime": 1672596108207, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!tYYoifu9teGLetVI" } diff --git a/packs/src/monsters/beast/scorpion.json b/packs/src/monsters/beast/scorpion.json index 51c64e5b4c..fb4227118b 100644 --- a/packs/src/monsters/beast/scorpion.json +++ b/packs/src/monsters/beast/scorpion.json @@ -110,7 +110,12 @@ "environment": "Desert", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -563,7 +573,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Y0vxQVF7w2P38FK2.ltue5DUb1SZfphHE" } ], "effects": [], @@ -580,5 +591,6 @@ "createdTime": 1661787232880, "modifiedTime": 1672596101222, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!Y0vxQVF7w2P38FK2" } diff --git a/packs/src/monsters/beast/sea-horse.json b/packs/src/monsters/beast/sea-horse.json index 3bdead8c3b..58f6d335b4 100644 --- a/packs/src/monsters/beast/sea-horse.json +++ b/packs/src/monsters/beast/sea-horse.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!FWSDiq9SZsdiBAa8.PBYkvhJmi5ACi2MO" } ], "effects": [], @@ -550,5 +561,6 @@ "createdTime": 1661787232706, "modifiedTime": 1672596095540, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!FWSDiq9SZsdiBAa8" } diff --git a/packs/src/monsters/beast/spider.json b/packs/src/monsters/beast/spider.json index 926fe9f75a..ba9b7b7a42 100644 --- a/packs/src/monsters/beast/spider.json +++ b/packs/src/monsters/beast/spider.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!28gU50HtG8Kp7uIz.0Oap13hi3sDNwVZn" }, { "_id": "ysV0KgiPcJOYCdMh", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -663,7 +679,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!28gU50HtG8Kp7uIz.ysV0KgiPcJOYCdMh" }, { "_id": "JxuVwnSxsKwGVL0x", @@ -676,7 +693,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -755,7 +777,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!28gU50HtG8Kp7uIz.JxuVwnSxsKwGVL0x" }, { "_id": "GQ8a63ou7VwIGrvv", @@ -768,7 +791,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -847,7 +875,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!28gU50HtG8Kp7uIz.GQ8a63ou7VwIGrvv" } ], "effects": [], @@ -864,5 +893,6 @@ "createdTime": 1661787232561, "modifiedTime": 1672596091346, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!28gU50HtG8Kp7uIz" } diff --git a/packs/src/monsters/beast/stirge.json b/packs/src/monsters/beast/stirge.json index bb9e3f3b8a..a30cd100a9 100644 --- a/packs/src/monsters/beast/stirge.json +++ b/packs/src/monsters/beast/stirge.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 0.125, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -563,7 +573,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gKRtiMNAjZiCVfwz.MEFgfFD6YUD9cE08" } ], "effects": [], @@ -580,5 +591,6 @@ "createdTime": 1661787232971, "modifiedTime": 1672596103548, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!gKRtiMNAjZiCVfwz" } diff --git a/packs/src/monsters/beast/swarm-of-bats.json b/packs/src/monsters/beast/swarm-of-bats.json index b8903061ad..0f94e09c33 100644 --- a/packs/src/monsters/beast/swarm-of-bats.json +++ b/packs/src/monsters/beast/swarm-of-bats.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -467,7 +472,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -576,7 +586,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!PcZ0QjIG6bHpffp9.0NpX1YUDTXjgIm23" }, { "_id": "cBVltbg8hNBBuTZ7", @@ -589,7 +600,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -668,7 +684,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!PcZ0QjIG6bHpffp9.cBVltbg8hNBBuTZ7" }, { "_id": "AKRFqSGc4D9j3Mhl", @@ -681,7 +698,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -756,7 +778,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!PcZ0QjIG6bHpffp9.AKRFqSGc4D9j3Mhl" }, { "_id": "tRdXVBesxDaXdhqP", @@ -769,7 +792,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -848,7 +876,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!PcZ0QjIG6bHpffp9.tRdXVBesxDaXdhqP" } ], "effects": [], @@ -865,5 +894,6 @@ "createdTime": 1661787232810, "modifiedTime": 1672596099371, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!PcZ0QjIG6bHpffp9" } diff --git a/packs/src/monsters/beast/swarm-of-beetles.json b/packs/src/monsters/beast/swarm-of-beetles.json index c2fb852f83..ca0fe87a89 100644 --- a/packs/src/monsters/beast/swarm-of-beetles.json +++ b/packs/src/monsters/beast/swarm-of-beetles.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -467,7 +472,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -546,7 +556,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!dZZFmG8LiBlgWi76.F2s1LlBQGprxK07S" }, { "_id": "neEOya9BCR7VSH09", @@ -559,7 +570,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -668,7 +684,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!dZZFmG8LiBlgWi76.neEOya9BCR7VSH09" } ], "effects": [], @@ -685,5 +702,6 @@ "createdTime": 1661787232940, "modifiedTime": 1672596102839, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!dZZFmG8LiBlgWi76" } diff --git a/packs/src/monsters/beast/swarm-of-centipedes.json b/packs/src/monsters/beast/swarm-of-centipedes.json index b55a3a09f1..79e9c58686 100644 --- a/packs/src/monsters/beast/swarm-of-centipedes.json +++ b/packs/src/monsters/beast/swarm-of-centipedes.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -467,7 +472,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -546,7 +556,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KC4tYOolARhajP18.jGCUdUnQs3nyBZLD" }, { "_id": "E6zkvUOJARx1t0nc", @@ -559,7 +570,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -668,7 +684,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KC4tYOolARhajP18.E6zkvUOJARx1t0nc" } ], "effects": [], @@ -685,5 +702,6 @@ "createdTime": 1661787232750, "modifiedTime": 1672596096826, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!KC4tYOolARhajP18" } diff --git a/packs/src/monsters/beast/swarm-of-insects.json b/packs/src/monsters/beast/swarm-of-insects.json index 39a67d772d..0c9f64a43c 100644 --- a/packs/src/monsters/beast/swarm-of-insects.json +++ b/packs/src/monsters/beast/swarm-of-insects.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -467,7 +472,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -546,7 +556,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!S0zDrv6lbnwWaz9E.neAokA0n390MXPMQ" }, { "_id": "1yXz3JunJtlQs6vV", @@ -559,7 +570,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -668,7 +684,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!S0zDrv6lbnwWaz9E.1yXz3JunJtlQs6vV" } ], "effects": [], @@ -685,5 +702,6 @@ "createdTime": 1661787232826, "modifiedTime": 1672596099814, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!S0zDrv6lbnwWaz9E" } diff --git a/packs/src/monsters/beast/swarm-of-poisonous-snakes.json b/packs/src/monsters/beast/swarm-of-poisonous-snakes.json index 1e1c71ff4e..3f553ee482 100644 --- a/packs/src/monsters/beast/swarm-of-poisonous-snakes.json +++ b/packs/src/monsters/beast/swarm-of-poisonous-snakes.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -467,7 +472,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -546,7 +556,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!XfQMBoTh892XSnCX.SFmH90jkxaUoPJjk" }, { "_id": "OyLoUiIl3p2j4p59", @@ -559,7 +570,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -668,7 +684,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!XfQMBoTh892XSnCX.OyLoUiIl3p2j4p59" } ], "effects": [], @@ -685,5 +702,6 @@ "createdTime": 1661787232877, "modifiedTime": 1672596101150, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!XfQMBoTh892XSnCX" } diff --git a/packs/src/monsters/beast/swarm-of-quippers.json b/packs/src/monsters/beast/swarm-of-quippers.json index d382f14a54..77cd495dfc 100644 --- a/packs/src/monsters/beast/swarm-of-quippers.json +++ b/packs/src/monsters/beast/swarm-of-quippers.json @@ -110,7 +110,12 @@ "environment": "Underwater", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -467,7 +472,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -546,7 +556,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KXG5XLIwKhn1V0Y5.4Zbr0ZIgWS4WFshO" }, { "_id": "QPJWgfVwJ8tu5zsa", @@ -559,7 +570,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -638,7 +654,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KXG5XLIwKhn1V0Y5.QPJWgfVwJ8tu5zsa" }, { "_id": "oAc2jxMRMdek0hTs", @@ -651,7 +668,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -730,7 +752,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KXG5XLIwKhn1V0Y5.oAc2jxMRMdek0hTs" }, { "_id": "hZiOYQNCqAFq0sD6", @@ -743,7 +766,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -852,7 +880,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KXG5XLIwKhn1V0Y5.hZiOYQNCqAFq0sD6" } ], "effects": [], @@ -869,5 +898,6 @@ "createdTime": 1661787232762, "modifiedTime": 1672596097179, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!KXG5XLIwKhn1V0Y5" } diff --git a/packs/src/monsters/beast/swarm-of-rats.json b/packs/src/monsters/beast/swarm-of-rats.json index 2444c9bd6d..865f433874 100644 --- a/packs/src/monsters/beast/swarm-of-rats.json +++ b/packs/src/monsters/beast/swarm-of-rats.json @@ -110,7 +110,12 @@ "environment": "Swamp", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -467,7 +472,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -542,7 +552,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8ihbbjkaOFTPbI73.EsvdwAvnKR0SGP6R" }, { "_id": "ARmqveDkUL48Hupc", @@ -555,7 +566,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -634,7 +650,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8ihbbjkaOFTPbI73.ARmqveDkUL48Hupc" }, { "_id": "ESv9NuVeZhnEW1ua", @@ -647,7 +664,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -756,7 +778,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8ihbbjkaOFTPbI73.ESv9NuVeZhnEW1ua" } ], "effects": [], @@ -773,5 +796,6 @@ "createdTime": 1661787232635, "modifiedTime": 1672596093627, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!8ihbbjkaOFTPbI73" } diff --git a/packs/src/monsters/beast/swarm-of-ravens.json b/packs/src/monsters/beast/swarm-of-ravens.json index fe48227551..88d1759e1f 100644 --- a/packs/src/monsters/beast/swarm-of-ravens.json +++ b/packs/src/monsters/beast/swarm-of-ravens.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -467,7 +472,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -546,7 +556,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!g40zN6xMye6bSS94.Vmmq0dqa2hEcTGOC" }, { "_id": "rQWSxwspySRtFst2", @@ -559,7 +570,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -668,7 +684,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!g40zN6xMye6bSS94.rQWSxwspySRtFst2" } ], "effects": [], @@ -685,5 +702,6 @@ "createdTime": 1661787232967, "modifiedTime": 1672596103435, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!g40zN6xMye6bSS94" } diff --git a/packs/src/monsters/beast/swarm-of-spiders.json b/packs/src/monsters/beast/swarm-of-spiders.json index a11ad181f3..eeb6f2ba20 100644 --- a/packs/src/monsters/beast/swarm-of-spiders.json +++ b/packs/src/monsters/beast/swarm-of-spiders.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -467,7 +472,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -546,7 +556,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4udpeEneFSZK9NTB.72ha7NWOEA4qIOdY" }, { "_id": "qoIR278ckqhlVaNr", @@ -559,7 +570,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -668,7 +684,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4udpeEneFSZK9NTB.qoIR278ckqhlVaNr" }, { "_id": "KYBcEhA6mh3gqPG8", @@ -681,7 +698,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -760,7 +782,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4udpeEneFSZK9NTB.KYBcEhA6mh3gqPG8" }, { "_id": "LPkqp4g22PENqi8b", @@ -773,7 +796,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -852,7 +880,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4udpeEneFSZK9NTB.LPkqp4g22PENqi8b" }, { "_id": "KyittoVFeC2HA9By", @@ -865,7 +894,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -944,7 +978,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!4udpeEneFSZK9NTB.KyittoVFeC2HA9By" } ], "effects": [], @@ -961,5 +996,6 @@ "createdTime": 1661787232584, "modifiedTime": 1672596092092, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!4udpeEneFSZK9NTB" } diff --git a/packs/src/monsters/beast/swarm-of-wasps.json b/packs/src/monsters/beast/swarm-of-wasps.json index 1f75a5f6ea..775082e2b5 100644 --- a/packs/src/monsters/beast/swarm-of-wasps.json +++ b/packs/src/monsters/beast/swarm-of-wasps.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -467,7 +472,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -546,7 +556,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!YUaprnengdFDNG8P.kQMM3DSzE6UDZWZd" }, { "_id": "bmjRGkZH4lnTX72M", @@ -559,7 +570,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -668,7 +684,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!YUaprnengdFDNG8P.bmjRGkZH4lnTX72M" } ], "effects": [], @@ -685,5 +702,6 @@ "createdTime": 1661787232885, "modifiedTime": 1672596101338, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!YUaprnengdFDNG8P" } diff --git a/packs/src/monsters/beast/tiger.json b/packs/src/monsters/beast/tiger.json index c69051792e..1cb724fcaa 100644 --- a/packs/src/monsters/beast/tiger.json +++ b/packs/src/monsters/beast/tiger.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!FayqbnjBMszO6Pat.G2GfXsv9MMfL3lc5" }, { "_id": "wklAUVakX97y0z2S", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "none", "cost": null, @@ -621,7 +637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!FayqbnjBMszO6Pat.wklAUVakX97y0z2S" }, { "_id": "YypXtXEL61FqWYOP", @@ -634,7 +651,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -747,7 +769,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!FayqbnjBMszO6Pat.YypXtXEL61FqWYOP" }, { "_id": "7GCnVtakQo6iZyn7", @@ -760,7 +783,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -869,7 +897,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!FayqbnjBMszO6Pat.7GCnVtakQo6iZyn7" } ], "effects": [], @@ -886,5 +915,6 @@ "createdTime": 1661787232707, "modifiedTime": 1672596095579, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!FayqbnjBMszO6Pat" } diff --git a/packs/src/monsters/beast/triceratops.json b/packs/src/monsters/beast/triceratops.json index cca0773a2e..82f853cd91 100644 --- a/packs/src/monsters/beast/triceratops.json +++ b/packs/src/monsters/beast/triceratops.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -563,7 +573,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!e5IQxSJO7ySEDdSH.h5lGnMKW65NWIi2W" }, { "_id": "6UWSefP0BqnmYwAz", @@ -576,7 +587,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -685,7 +701,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!e5IQxSJO7ySEDdSH.6UWSefP0BqnmYwAz" }, { "_id": "4jztSrWQNxc4q55u", @@ -698,7 +715,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -777,7 +799,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!e5IQxSJO7ySEDdSH.4jztSrWQNxc4q55u" } ], "effects": [], @@ -794,5 +817,6 @@ "createdTime": 1661787232941, "modifiedTime": 1672596102881, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!e5IQxSJO7ySEDdSH" } diff --git a/packs/src/monsters/beast/tyrannosaurus-rex.json b/packs/src/monsters/beast/tyrannosaurus-rex.json index ed43f2c06b..0defc3300e 100644 --- a/packs/src/monsters/beast/tyrannosaurus-rex.json +++ b/packs/src/monsters/beast/tyrannosaurus-rex.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 8, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!HlddcPm4cWptj3ka.O8pEyHMhxCwROJ6O" }, { "_id": "Fi45qe2ncVZHNq43", @@ -580,7 +591,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -659,7 +675,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!HlddcPm4cWptj3ka.Fi45qe2ncVZHNq43" }, { "_id": "jw9SyNUWRzgHe37B", @@ -672,7 +689,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -781,7 +803,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!HlddcPm4cWptj3ka.jw9SyNUWRzgHe37B" } ], "effects": [], @@ -798,5 +821,6 @@ "createdTime": 1661787232724, "modifiedTime": 1672596096123, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!HlddcPm4cWptj3ka" } diff --git a/packs/src/monsters/beast/vulture.json b/packs/src/monsters/beast/vulture.json index 994a8c4564..957eabc862 100644 --- a/packs/src/monsters/beast/vulture.json +++ b/packs/src/monsters/beast/vulture.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!fkJ8Z8zi2JtlcHh9.oFwDpNHu44o0BRx1" }, { "_id": "Pi704hBXv722CLGM", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -621,7 +637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!fkJ8Z8zi2JtlcHh9.Pi704hBXv722CLGM" }, { "_id": "MnAKUayu6jCzzRsS", @@ -634,7 +651,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -743,7 +765,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!fkJ8Z8zi2JtlcHh9.MnAKUayu6jCzzRsS" } ], "effects": [], @@ -760,5 +783,6 @@ "createdTime": 1661787232960, "modifiedTime": 1672596103282, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!fkJ8Z8zi2JtlcHh9" } diff --git a/packs/src/monsters/beast/warhorse.json b/packs/src/monsters/beast/warhorse.json index 250be83c52..49d7c75652 100644 --- a/packs/src/monsters/beast/warhorse.json +++ b/packs/src/monsters/beast/warhorse.json @@ -110,7 +110,12 @@ "environment": "Urban", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!T1xZTDCGuvMBSq8d.1KyNbDtLLrcA5lj0" }, { "_id": "7MiLYgDyM2Rm3nEb", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -659,7 +675,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!T1xZTDCGuvMBSq8d.7MiLYgDyM2Rm3nEb" } ], "effects": [], @@ -676,5 +693,6 @@ "createdTime": 1661787232841, "modifiedTime": 1672596100206, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!T1xZTDCGuvMBSq8d" } diff --git a/packs/src/monsters/beast/weasel.json b/packs/src/monsters/beast/weasel.json index 1536afa6fd..684dc8d0df 100644 --- a/packs/src/monsters/beast/weasel.json +++ b/packs/src/monsters/beast/weasel.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!WOdeacKCYVhgLDuN.yCp6Ire7GPbpAwpZ" }, { "_id": "qQmFFG5fOGkUEeu2", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -655,7 +671,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!WOdeacKCYVhgLDuN.qQmFFG5fOGkUEeu2" } ], "effects": [], @@ -672,5 +689,6 @@ "createdTime": 1661787232870, "modifiedTime": 1672596100965, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!WOdeacKCYVhgLDuN" } diff --git a/packs/src/monsters/beast/wolf.json b/packs/src/monsters/beast/wolf.json index 32d6a1f938..d787ee79e6 100644 --- a/packs/src/monsters/beast/wolf.json +++ b/packs/src/monsters/beast/wolf.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!yawTeS8u2FCfzzZH.z1WFJdHb8OXvW2yy" }, { "_id": "GtradZW0Fk8JKMAe", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -621,7 +637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!yawTeS8u2FCfzzZH.GtradZW0Fk8JKMAe" }, { "_id": "MuH5aMoKOyZanrFf", @@ -634,7 +651,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -747,7 +769,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!yawTeS8u2FCfzzZH.MuH5aMoKOyZanrFf" } ], "effects": [], @@ -764,5 +787,6 @@ "createdTime": 1661787233251, "modifiedTime": 1672596109135, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!yawTeS8u2FCfzzZH" } diff --git a/packs/src/monsters/celestial/couatl.json b/packs/src/monsters/celestial/couatl.json index 2e3d85430f..5fd60a2458 100644 --- a/packs/src/monsters/celestial/couatl.json +++ b/packs/src/monsters/celestial/couatl.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 4, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -463,7 +468,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -576,7 +586,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZaP1H91t4FzbRqR5.7M1OrMoMMTCEKxta" }, { "_id": "8LkzioyaScFxfst7", @@ -589,7 +600,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -698,7 +714,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZaP1H91t4FzbRqR5.8LkzioyaScFxfst7" }, { "_id": "iw2q07K1D0X01DZO", @@ -711,7 +728,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -790,7 +812,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZaP1H91t4FzbRqR5.iw2q07K1D0X01DZO" }, { "_id": "J40yeoOnwpvtVpHt", @@ -803,7 +826,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -882,7 +910,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZaP1H91t4FzbRqR5.J40yeoOnwpvtVpHt" }, { "_id": "3qE2LLHPANSEPmIN", @@ -895,7 +924,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -974,7 +1008,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZaP1H91t4FzbRqR5.3qE2LLHPANSEPmIN" }, { "_id": "MGh9IkfXNn7FmwL5", @@ -987,7 +1022,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1066,7 +1106,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZaP1H91t4FzbRqR5.MGh9IkfXNn7FmwL5" }, { "_id": "Mzh95utKDPIrjiH8", @@ -1081,7 +1122,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1172,7 +1218,8 @@ "createdTime": 1661787234128, "modifiedTime": 1661791116658, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZaP1H91t4FzbRqR5.Mzh95utKDPIrjiH8" }, { "_id": "ghXTfe7sgCbgf1Q8", @@ -1187,7 +1234,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1278,7 +1330,8 @@ "createdTime": 1661787234192, "modifiedTime": 1661791116658, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZaP1H91t4FzbRqR5.ghXTfe7sgCbgf1Q8" }, { "_id": "ppWAAEul0QHtm4er", @@ -1293,7 +1346,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1384,7 +1442,8 @@ "createdTime": 1661787234229, "modifiedTime": 1661791116659, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZaP1H91t4FzbRqR5.ppWAAEul0QHtm4er" }, { "_id": "8dzaICjGy6mTUaUr", @@ -1397,7 +1456,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1523,7 +1587,8 @@ "origin": "Item.kZZAZ6kp9YzgPQEe", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!actors.items.effects!ZaP1H91t4FzbRqR5.8dzaICjGy6mTUaUr.8rP3gwmXVTgZqYZE" } ], "folder": null, @@ -1543,7 +1608,8 @@ "createdTime": 1661787234081, "modifiedTime": 1661791116659, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZaP1H91t4FzbRqR5.8dzaICjGy6mTUaUr" }, { "_id": "BV0mpbHh29IbbIj5", @@ -1558,7 +1624,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1649,7 +1720,8 @@ "createdTime": 1661787234092, "modifiedTime": 1661791116659, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZaP1H91t4FzbRqR5.BV0mpbHh29IbbIj5" }, { "_id": "uUWb1wZgtMou0TVP", @@ -1664,7 +1736,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1760,7 +1837,8 @@ "createdTime": 1661787234236, "modifiedTime": 1661791116660, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZaP1H91t4FzbRqR5.uUWb1wZgtMou0TVP" }, { "_id": "F0GsG0SJzsIOacwV", @@ -1775,7 +1853,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1866,7 +1949,8 @@ "createdTime": 1661787234103, "modifiedTime": 1661791116660, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZaP1H91t4FzbRqR5.F0GsG0SJzsIOacwV" }, { "_id": "gvdA9nPuWLck4tBl", @@ -1881,7 +1965,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -1972,7 +2061,8 @@ "createdTime": 1661787234193, "modifiedTime": 1661791116660, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZaP1H91t4FzbRqR5.gvdA9nPuWLck4tBl" }, { "_id": "z1mx84ONwkXKUZd7", @@ -1985,7 +2075,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -2087,7 +2182,8 @@ "origin": "Item.FlLKKv7bQBlIAs11", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!actors.items.effects!ZaP1H91t4FzbRqR5.z1mx84ONwkXKUZd7.6pbotGIvqQkraPva" } ], "folder": null, @@ -2107,7 +2203,8 @@ "createdTime": 1661787234244, "modifiedTime": 1661791116660, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZaP1H91t4FzbRqR5.z1mx84ONwkXKUZd7" }, { "_id": "kSPRpeIx3w3nihrF", @@ -2122,7 +2219,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -2218,7 +2320,8 @@ "createdTime": 1661787234214, "modifiedTime": 1661791116661, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZaP1H91t4FzbRqR5.kSPRpeIx3w3nihrF" }, { "_id": "WzvJ7G3cqvIubsLk", @@ -2233,7 +2336,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2324,7 +2432,8 @@ "createdTime": 1661787234154, "modifiedTime": 1661791116661, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZaP1H91t4FzbRqR5.WzvJ7G3cqvIubsLk" }, { "_id": "fVbCxFRaORalHB20", @@ -2339,7 +2448,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -2430,7 +2544,8 @@ "createdTime": 1661787234189, "modifiedTime": 1661791116662, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZaP1H91t4FzbRqR5.fVbCxFRaORalHB20" }, { "_id": "MAxM77CDUu8dgIRQ", @@ -2445,7 +2560,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2536,7 +2656,8 @@ "createdTime": 1661787234123, "modifiedTime": 1661791116662, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZaP1H91t4FzbRqR5.MAxM77CDUu8dgIRQ" } ], "effects": [ @@ -2590,7 +2711,8 @@ "origin": "Compendium.dnd5e.monsters.ZaP1H91t4FzbRqR5.Item.8dzaICjGy6mTUaUr", "tint": null, "transfer": false, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!ZaP1H91t4FzbRqR5.8rP3gwmXVTgZqYZE" }, { "_id": "6pbotGIvqQkraPva", @@ -2618,7 +2740,8 @@ "origin": "Compendium.dnd5e.monsters.ZaP1H91t4FzbRqR5.Item.z1mx84ONwkXKUZd7", "tint": null, "transfer": false, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!ZaP1H91t4FzbRqR5.6pbotGIvqQkraPva" } ], "folder": null, @@ -2634,5 +2757,6 @@ "createdTime": 1661787232895, "modifiedTime": 1672596101693, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!ZaP1H91t4FzbRqR5" } diff --git a/packs/src/monsters/celestial/deva.json b/packs/src/monsters/celestial/deva.json index a7c2cbff64..e366f0b25c 100644 --- a/packs/src/monsters/celestial/deva.json +++ b/packs/src/monsters/celestial/deva.json @@ -110,7 +110,12 @@ "environment": "", "cr": 10, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -465,7 +470,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -544,7 +554,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!m4H3hjamBNMH09S9.KRskTTMCEepXUPwU" }, { "_id": "3u5Rv7dQ2fIl1rbB", @@ -557,7 +568,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -636,7 +652,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!m4H3hjamBNMH09S9.3u5Rv7dQ2fIl1rbB" }, { "_id": "Lx0nT1oq0bLjX1lx", @@ -649,7 +666,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -733,7 +755,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!m4H3hjamBNMH09S9.Lx0nT1oq0bLjX1lx" }, { "_id": "dhEmGtIDAZEBrsZ2", @@ -746,7 +769,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -825,7 +853,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!m4H3hjamBNMH09S9.dhEmGtIDAZEBrsZ2" }, { "_id": "yo4YL40mReo1Gwx5", @@ -838,7 +867,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -917,7 +951,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!m4H3hjamBNMH09S9.yo4YL40mReo1Gwx5" }, { "_id": "P3T5BWT2TFHCxUkr", @@ -930,7 +965,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1009,7 +1049,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!m4H3hjamBNMH09S9.P3T5BWT2TFHCxUkr" }, { "_id": "qADu4OS68yINJCnZ", @@ -1022,7 +1063,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -1139,7 +1185,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!m4H3hjamBNMH09S9.qADu4OS68yINJCnZ" }, { "_id": "Mzh95utKDPIrjiH8", @@ -1154,7 +1201,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1245,7 +1297,8 @@ "createdTime": 1661787234128, "modifiedTime": 1661791116786, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!m4H3hjamBNMH09S9.Mzh95utKDPIrjiH8" }, { "_id": "d54VDyFulD9xxY7J", @@ -1260,7 +1313,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -1351,7 +1409,8 @@ "createdTime": 1661787234177, "modifiedTime": 1661791116787, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!m4H3hjamBNMH09S9.d54VDyFulD9xxY7J" }, { "_id": "AGFMPAmuzwWO6Dfz", @@ -1366,7 +1425,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "hour", "cost": 1, @@ -1462,7 +1526,8 @@ "createdTime": 1661787234087, "modifiedTime": 1661791116787, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!m4H3hjamBNMH09S9.AGFMPAmuzwWO6Dfz" } ], "effects": [], @@ -1479,5 +1544,6 @@ "createdTime": 1661787233142, "modifiedTime": 1672596105591, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!m4H3hjamBNMH09S9" } diff --git a/packs/src/monsters/celestial/pegasus.json b/packs/src/monsters/celestial/pegasus.json index 9bc67e4950..97ce2a28db 100644 --- a/packs/src/monsters/celestial/pegasus.json +++ b/packs/src/monsters/celestial/pegasus.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!EIgAW1dWVPpyWLUh.1HxBbZFsegOJ0cgu" } ], "effects": [], @@ -584,5 +595,6 @@ "createdTime": 1661787232690, "modifiedTime": 1672596095149, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!EIgAW1dWVPpyWLUh" } diff --git a/packs/src/monsters/celestial/planetar.json b/packs/src/monsters/celestial/planetar.json index c5f86eb0e8..3fc56de275 100644 --- a/packs/src/monsters/celestial/planetar.json +++ b/packs/src/monsters/celestial/planetar.json @@ -110,7 +110,12 @@ "environment": "", "cr": 16, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -465,7 +470,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -544,7 +554,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!XEByBLeOkDgL3mrr.sDvx0IybgYa8Q4WG" }, { "_id": "2kBUlTLMlwq3KoUB", @@ -557,7 +568,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -636,7 +652,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!XEByBLeOkDgL3mrr.2kBUlTLMlwq3KoUB" }, { "_id": "9hrSczyYfl4fSrpZ", @@ -649,7 +666,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -728,7 +750,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!XEByBLeOkDgL3mrr.9hrSczyYfl4fSrpZ" }, { "_id": "2C0408CEBtrZW8ji", @@ -741,7 +764,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -834,7 +862,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!XEByBLeOkDgL3mrr.2C0408CEBtrZW8ji" }, { "_id": "5sDIEn5aplaeXax7", @@ -847,7 +876,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -926,7 +960,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!XEByBLeOkDgL3mrr.5sDIEn5aplaeXax7" }, { "_id": "LyxrhwvzMW4YbiYE", @@ -939,7 +974,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1018,7 +1058,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!XEByBLeOkDgL3mrr.LyxrhwvzMW4YbiYE" }, { "_id": "BBLXs9hiUvtRaP16", @@ -1031,7 +1072,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -1148,7 +1194,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!XEByBLeOkDgL3mrr.BBLXs9hiUvtRaP16" }, { "_id": "VJz6sW3vOJcEL4IS", @@ -1161,7 +1208,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1245,7 +1297,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!XEByBLeOkDgL3mrr.VJz6sW3vOJcEL4IS" }, { "_id": "Mzh95utKDPIrjiH8", @@ -1260,7 +1313,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1351,7 +1409,8 @@ "createdTime": 1661787234128, "modifiedTime": 1661791116611, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!XEByBLeOkDgL3mrr.Mzh95utKDPIrjiH8" }, { "_id": "dLJhxDfeyOsc3zsY", @@ -1366,7 +1425,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1462,7 +1526,8 @@ "createdTime": 1661787234179, "modifiedTime": 1661791116612, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!XEByBLeOkDgL3mrr.dLJhxDfeyOsc3zsY" }, { "_id": "TkJ8Wtg1L7TZtspm", @@ -1477,7 +1542,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1568,7 +1638,8 @@ "createdTime": 1661787234146, "modifiedTime": 1661791116612, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!XEByBLeOkDgL3mrr.TkJ8Wtg1L7TZtspm" }, { "_id": "5e1xTohkzqFqbYH4", @@ -1583,7 +1654,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1683,7 +1759,8 @@ "createdTime": 1661787234070, "modifiedTime": 1661791116612, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!XEByBLeOkDgL3mrr.5e1xTohkzqFqbYH4" }, { "_id": "AGFMPAmuzwWO6Dfz", @@ -1698,7 +1775,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "hour", "cost": 1, @@ -1794,7 +1876,8 @@ "createdTime": 1661787234087, "modifiedTime": 1661791116613, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!XEByBLeOkDgL3mrr.AGFMPAmuzwWO6Dfz" }, { "_id": "d54VDyFulD9xxY7J", @@ -1809,7 +1892,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -1900,7 +1988,8 @@ "createdTime": 1661787234177, "modifiedTime": 1661791116613, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!XEByBLeOkDgL3mrr.d54VDyFulD9xxY7J" }, { "_id": "ZPd73HtKF3At11jh", @@ -1915,7 +2004,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -2006,7 +2100,8 @@ "createdTime": 1661787234163, "modifiedTime": 1661791116614, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!XEByBLeOkDgL3mrr.ZPd73HtKF3At11jh" }, { "_id": "OVikYmSdHliAG2YD", @@ -2021,7 +2116,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2117,7 +2217,8 @@ "createdTime": 1661787234131, "modifiedTime": 1661791116614, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!XEByBLeOkDgL3mrr.OVikYmSdHliAG2YD" } ], "effects": [], @@ -2134,5 +2235,6 @@ "createdTime": 1661787232875, "modifiedTime": 1672596101101, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!XEByBLeOkDgL3mrr" } diff --git a/packs/src/monsters/celestial/solar.json b/packs/src/monsters/celestial/solar.json index b0f8431d07..769222985a 100644 --- a/packs/src/monsters/celestial/solar.json +++ b/packs/src/monsters/celestial/solar.json @@ -110,7 +110,12 @@ "environment": "", "cr": 21, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -469,7 +474,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -548,7 +558,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lOYt73eaJojBDxAV.zkNT86Xasjyzk8Df" }, { "_id": "T8xqterWWFewCoot", @@ -561,7 +572,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -640,7 +656,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lOYt73eaJojBDxAV.T8xqterWWFewCoot" }, { "_id": "N5YFwsrzGuUFrblp", @@ -653,7 +670,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -732,7 +754,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lOYt73eaJojBDxAV.N5YFwsrzGuUFrblp" }, { "_id": "BqJjoHBgnTDTcLbB", @@ -745,7 +768,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -829,7 +857,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lOYt73eaJojBDxAV.BqJjoHBgnTDTcLbB" }, { "_id": "hWnnOw9zwmvWvFT7", @@ -842,7 +871,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -921,7 +955,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lOYt73eaJojBDxAV.hWnnOw9zwmvWvFT7" }, { "_id": "WYt9oaIl8PZrMDNl", @@ -934,7 +969,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1013,7 +1053,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lOYt73eaJojBDxAV.WYt9oaIl8PZrMDNl" }, { "_id": "H0o9gjKN8xSdBHdB", @@ -1026,7 +1067,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1105,7 +1151,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lOYt73eaJojBDxAV.H0o9gjKN8xSdBHdB" }, { "_id": "QssrfCioglFdfd8I", @@ -1118,7 +1165,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -1235,7 +1287,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lOYt73eaJojBDxAV.QssrfCioglFdfd8I" }, { "_id": "BSLTe0yfltAnguOT", @@ -1248,7 +1301,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -1361,7 +1419,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lOYt73eaJojBDxAV.BSLTe0yfltAnguOT" }, { "_id": "sZjcCRCNcf6m4VoK", @@ -1374,7 +1433,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1453,7 +1517,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lOYt73eaJojBDxAV.sZjcCRCNcf6m4VoK" }, { "_id": "H4Qnl5aNwIuOiKvm", @@ -1466,7 +1531,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1545,7 +1615,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lOYt73eaJojBDxAV.H4Qnl5aNwIuOiKvm" }, { "_id": "hvLibxV3shPORnBB", @@ -1558,7 +1629,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -1646,7 +1722,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lOYt73eaJojBDxAV.hvLibxV3shPORnBB" }, { "_id": "iXcyU8grGuxZbkYJ", @@ -1659,7 +1736,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 3, @@ -1738,7 +1820,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lOYt73eaJojBDxAV.iXcyU8grGuxZbkYJ" }, { "_id": "eNypfn99CwFCi47y", @@ -1751,7 +1834,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1830,7 +1918,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lOYt73eaJojBDxAV.eNypfn99CwFCi47y" }, { "_id": "wxR8cWGMfaaMKc1W", @@ -1843,7 +1932,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1922,7 +2016,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lOYt73eaJojBDxAV.wxR8cWGMfaaMKc1W" }, { "_id": "Mzh95utKDPIrjiH8", @@ -1937,7 +2032,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2028,7 +2128,8 @@ "createdTime": 1661787234128, "modifiedTime": 1661791116764, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!lOYt73eaJojBDxAV.Mzh95utKDPIrjiH8" }, { "_id": "1N8dDMMgZ1h1YJ3B", @@ -2043,7 +2144,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2134,7 +2240,8 @@ "createdTime": 1661787234056, "modifiedTime": 1661791116765, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!lOYt73eaJojBDxAV.1N8dDMMgZ1h1YJ3B" }, { "_id": "dLJhxDfeyOsc3zsY", @@ -2149,7 +2256,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2245,7 +2357,8 @@ "createdTime": 1661787234179, "modifiedTime": 1661791116765, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!lOYt73eaJojBDxAV.dLJhxDfeyOsc3zsY" }, { "_id": "TkJ8Wtg1L7TZtspm", @@ -2260,7 +2373,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2351,7 +2469,8 @@ "createdTime": 1661787234146, "modifiedTime": 1661791116765, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!lOYt73eaJojBDxAV.TkJ8Wtg1L7TZtspm" }, { "_id": "jhhT9PsHy5A7EojO", @@ -2366,7 +2485,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "hour", "cost": 1, @@ -2457,7 +2581,8 @@ "createdTime": 1661787234213, "modifiedTime": 1661791116766, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!lOYt73eaJojBDxAV.jhhT9PsHy5A7EojO" }, { "_id": "d54VDyFulD9xxY7J", @@ -2472,7 +2597,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -2563,7 +2693,8 @@ "createdTime": 1661787234177, "modifiedTime": 1661791116766, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!lOYt73eaJojBDxAV.d54VDyFulD9xxY7J" }, { "_id": "ZPd73HtKF3At11jh", @@ -2578,7 +2709,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -2669,7 +2805,8 @@ "createdTime": 1661787234163, "modifiedTime": 1661791116766, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!lOYt73eaJojBDxAV.ZPd73HtKF3At11jh" } ], "effects": [], @@ -2686,5 +2823,6 @@ "createdTime": 1661787233022, "modifiedTime": 1672596104993, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!lOYt73eaJojBDxAV" } diff --git a/packs/src/monsters/celestial/unicorn.json b/packs/src/monsters/celestial/unicorn.json index 0ce0fae8de..8fe1b1e6f4 100644 --- a/packs/src/monsters/celestial/unicorn.json +++ b/packs/src/monsters/celestial/unicorn.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -464,7 +469,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -548,7 +558,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!G9PENY6nw0xRxCJW.iWDQPwdffkW06c2Y" }, { "_id": "8yPzMeXvBJC2POQK", @@ -561,7 +572,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -640,7 +656,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!G9PENY6nw0xRxCJW.8yPzMeXvBJC2POQK" }, { "_id": "MW3V6fHknXOLuVxU", @@ -653,7 +670,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -732,7 +754,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!G9PENY6nw0xRxCJW.MW3V6fHknXOLuVxU" }, { "_id": "hyiKyfKiplfTQ0ZX", @@ -745,7 +768,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -824,7 +852,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!G9PENY6nw0xRxCJW.hyiKyfKiplfTQ0ZX" }, { "_id": "vnAmgF7ZkpmDIJSc", @@ -837,7 +866,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -916,7 +950,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!G9PENY6nw0xRxCJW.vnAmgF7ZkpmDIJSc" }, { "_id": "f7m44y4TqYYcunMj", @@ -929,7 +964,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1042,7 +1082,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!G9PENY6nw0xRxCJW.f7m44y4TqYYcunMj" }, { "_id": "ORrGdhTLKLTKK3BH", @@ -1055,7 +1096,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1168,7 +1214,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!G9PENY6nw0xRxCJW.ORrGdhTLKLTKK3BH" }, { "_id": "uCaHWOOBeJEyR1ay", @@ -1181,7 +1228,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1265,7 +1317,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!G9PENY6nw0xRxCJW.uCaHWOOBeJEyR1ay" }, { "_id": "W5ceTePXIPlUuiEY", @@ -1278,7 +1331,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1357,7 +1415,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!G9PENY6nw0xRxCJW.W5ceTePXIPlUuiEY" }, { "_id": "uGNhUMAmD8L5AD1M", @@ -1370,7 +1429,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1449,7 +1513,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!G9PENY6nw0xRxCJW.uGNhUMAmD8L5AD1M" }, { "_id": "A9f9DUM9Sh0qLYlF", @@ -1462,7 +1527,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1541,7 +1611,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!G9PENY6nw0xRxCJW.A9f9DUM9Sh0qLYlF" }, { "_id": "MdpCZRnBOnzgAKPg", @@ -1554,7 +1625,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1633,7 +1709,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!G9PENY6nw0xRxCJW.MdpCZRnBOnzgAKPg" }, { "_id": "UNbcqlW8Siek0Fpm", @@ -1646,7 +1723,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1725,7 +1807,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!G9PENY6nw0xRxCJW.UNbcqlW8Siek0Fpm" }, { "_id": "Ps56FcAJxi2L3QdZ", @@ -1738,7 +1821,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -1817,7 +1905,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!G9PENY6nw0xRxCJW.Ps56FcAJxi2L3QdZ" }, { "_id": "Plfy8GZ08uqupxe6", @@ -1830,7 +1919,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 3, @@ -1914,7 +2008,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!G9PENY6nw0xRxCJW.Plfy8GZ08uqupxe6" }, { "_id": "Mzh95utKDPIrjiH8", @@ -1929,7 +2024,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2020,7 +2120,8 @@ "createdTime": 1661787234128, "modifiedTime": 1661791116345, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!G9PENY6nw0xRxCJW.Mzh95utKDPIrjiH8" }, { "_id": "SbSvZKkJASyk8jKo", @@ -2035,7 +2136,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2126,7 +2232,8 @@ "createdTime": 1661787234141, "modifiedTime": 1661791116345, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!G9PENY6nw0xRxCJW.SbSvZKkJASyk8jKo" }, { "_id": "pRMvmknwLf2tdMTj", @@ -2141,7 +2248,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2232,7 +2344,8 @@ "createdTime": 1661787234227, "modifiedTime": 1661791116345, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!G9PENY6nw0xRxCJW.pRMvmknwLf2tdMTj" }, { "_id": "3MYDjS6k9IYL0aTj", @@ -2247,7 +2360,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2338,7 +2456,8 @@ "createdTime": 1661787234063, "modifiedTime": 1661791116345, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!G9PENY6nw0xRxCJW.3MYDjS6k9IYL0aTj" }, { "_id": "TkJ8Wtg1L7TZtspm", @@ -2353,7 +2472,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2444,7 +2568,8 @@ "createdTime": 1661787234146, "modifiedTime": 1661791116346, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!G9PENY6nw0xRxCJW.TkJ8Wtg1L7TZtspm" }, { "name": "Entangle", @@ -2456,7 +2581,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2550,7 +2680,8 @@ "createdTime": 1661787234191, "modifiedTime": 1661791116346, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!G9PENY6nw0xRxCJW.gMrWeG8fMDPRFiVe" } ], "effects": [], @@ -2567,5 +2698,6 @@ "createdTime": 1661787232710, "modifiedTime": 1672596095722, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!G9PENY6nw0xRxCJW" } diff --git a/packs/src/monsters/construct/animated-armor.json b/packs/src/monsters/construct/animated-armor.json index e0baccd0d4..af8e1608a8 100644 --- a/packs/src/monsters/construct/animated-armor.json +++ b/packs/src/monsters/construct/animated-armor.json @@ -110,7 +110,12 @@ "environment": "", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -466,7 +471,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -545,7 +555,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!eORmAXuV5v3nWsQL.jlZrv208u9gYyh7I" }, { "_id": "Kwed9PPaTkZYr8Jh", @@ -558,7 +569,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -637,7 +653,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!eORmAXuV5v3nWsQL.Kwed9PPaTkZYr8Jh" }, { "_id": "bdRuWKCO8gXQPu16", @@ -650,7 +667,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -729,7 +751,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!eORmAXuV5v3nWsQL.bdRuWKCO8gXQPu16" }, { "_id": "vUqKQJ1GGWbKg6cX", @@ -742,7 +765,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -851,7 +879,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!eORmAXuV5v3nWsQL.vUqKQJ1GGWbKg6cX" } ], "effects": [], @@ -868,5 +897,6 @@ "createdTime": 1661787232944, "modifiedTime": 1672596102960, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!eORmAXuV5v3nWsQL" } diff --git a/packs/src/monsters/construct/clay-golem.json b/packs/src/monsters/construct/clay-golem.json index 7d2b7361b7..6bddb98af2 100644 --- a/packs/src/monsters/construct/clay-golem.json +++ b/packs/src/monsters/construct/clay-golem.json @@ -110,7 +110,12 @@ "environment": "", "cr": 9, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -471,7 +476,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -580,7 +590,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!YOqhbf8WsX0jH9Fu.vEEJei0CNaNbfQ2w" }, { "_id": "GOADsI5dGE3ah0Vi", @@ -593,7 +604,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -672,7 +688,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!YOqhbf8WsX0jH9Fu.GOADsI5dGE3ah0Vi" }, { "_id": "91uPF10lBpn5EOhn", @@ -685,7 +702,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -764,7 +786,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!YOqhbf8WsX0jH9Fu.91uPF10lBpn5EOhn" }, { "_id": "K5xMZVNv8m2Pw87E", @@ -777,7 +800,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -856,7 +884,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!YOqhbf8WsX0jH9Fu.K5xMZVNv8m2Pw87E" }, { "_id": "og0rfDmwPObM3ulb", @@ -869,7 +898,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -948,7 +982,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!YOqhbf8WsX0jH9Fu.og0rfDmwPObM3ulb" }, { "_id": "J1NgIuQWtR4G9JKd", @@ -961,7 +996,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1040,7 +1080,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!YOqhbf8WsX0jH9Fu.J1NgIuQWtR4G9JKd" }, { "_id": "hftXBQthz8jMjFTs", @@ -1053,7 +1094,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1132,7 +1178,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!YOqhbf8WsX0jH9Fu.hftXBQthz8jMjFTs" }, { "_id": "g0R4u7liRAurxB04", @@ -1145,7 +1192,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1224,7 +1276,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!YOqhbf8WsX0jH9Fu.g0R4u7liRAurxB04" } ], "effects": [], @@ -1241,5 +1294,6 @@ "createdTime": 1661787232881, "modifiedTime": 1672596101263, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!YOqhbf8WsX0jH9Fu" } diff --git a/packs/src/monsters/construct/flesh-golem.json b/packs/src/monsters/construct/flesh-golem.json index 053ec509d2..2f1ebc0679 100644 --- a/packs/src/monsters/construct/flesh-golem.json +++ b/packs/src/monsters/construct/flesh-golem.json @@ -110,7 +110,12 @@ "environment": "", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -472,7 +477,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -551,7 +561,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Hm4o2FgPZsdbXjLq.AwiZrSjLzs3aNC33" }, { "_id": "Ee9WvQyqy1lRYtuj", @@ -564,7 +575,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -643,7 +659,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Hm4o2FgPZsdbXjLq.Ee9WvQyqy1lRYtuj" }, { "_id": "NnEyJiIMUFY8ovfl", @@ -656,7 +673,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -735,7 +757,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Hm4o2FgPZsdbXjLq.NnEyJiIMUFY8ovfl" }, { "_id": "27csbMlmaIFdMcTA", @@ -748,7 +771,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -827,7 +855,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Hm4o2FgPZsdbXjLq.27csbMlmaIFdMcTA" }, { "_id": "EAWR3fONAFox5cvp", @@ -840,7 +869,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -919,7 +953,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Hm4o2FgPZsdbXjLq.EAWR3fONAFox5cvp" }, { "_id": "R8MFu1EkI4xBgXXr", @@ -932,7 +967,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1011,7 +1051,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Hm4o2FgPZsdbXjLq.R8MFu1EkI4xBgXXr" }, { "_id": "mCNNxLGdzy54omRW", @@ -1024,7 +1065,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1103,7 +1149,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Hm4o2FgPZsdbXjLq.mCNNxLGdzy54omRW" }, { "_id": "mjn0iMGrjGTOn42w", @@ -1116,7 +1163,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1225,7 +1277,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Hm4o2FgPZsdbXjLq.mjn0iMGrjGTOn42w" } ], "effects": [], @@ -1242,5 +1295,6 @@ "createdTime": 1661787232725, "modifiedTime": 1672596096160, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!Hm4o2FgPZsdbXjLq" } diff --git a/packs/src/monsters/construct/flying-sword.json b/packs/src/monsters/construct/flying-sword.json index 9294e440f8..0ece7a0b4b 100644 --- a/packs/src/monsters/construct/flying-sword.json +++ b/packs/src/monsters/construct/flying-sword.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "sm", @@ -465,7 +470,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -544,7 +554,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!EqJUA3Z3181RSSFU.KFvtNOH2AMQIWRps" }, { "_id": "EY5bnNsvwwHGfCk1", @@ -557,7 +568,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -636,7 +652,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!EqJUA3Z3181RSSFU.EY5bnNsvwwHGfCk1" }, { "_id": "D2cJQHQa8UQp99Wt", @@ -649,7 +666,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -762,7 +784,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!EqJUA3Z3181RSSFU.D2cJQHQa8UQp99Wt" } ], "effects": [], @@ -779,5 +802,6 @@ "createdTime": 1661787232702, "modifiedTime": 1672596095429, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!EqJUA3Z3181RSSFU" } diff --git a/packs/src/monsters/construct/homunculus.json b/packs/src/monsters/construct/homunculus.json index 25f7ccf634..6595600f90 100644 --- a/packs/src/monsters/construct/homunculus.json +++ b/packs/src/monsters/construct/homunculus.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -459,7 +464,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -572,7 +582,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZQTCZfTV9ZoTjNCU.1uXv78I9YByiz6rV" }, { "_id": "5bFYYcQnfN1KtOwr", @@ -585,7 +596,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -664,7 +680,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZQTCZfTV9ZoTjNCU.5bFYYcQnfN1KtOwr" } ], "effects": [], @@ -681,5 +698,6 @@ "createdTime": 1661787232892, "modifiedTime": 1672596101554, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!ZQTCZfTV9ZoTjNCU" } diff --git a/packs/src/monsters/construct/iron-golem.json b/packs/src/monsters/construct/iron-golem.json index f94b746439..5a5c7058e4 100644 --- a/packs/src/monsters/construct/iron-golem.json +++ b/packs/src/monsters/construct/iron-golem.json @@ -110,7 +110,12 @@ "environment": "", "cr": 16, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -471,7 +476,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -550,7 +560,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!h98AuPfomEPcCibP.y2j6GWf1Ur3GRtYI" }, { "_id": "ajTNe969fHHuppwl", @@ -563,7 +574,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -642,7 +658,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!h98AuPfomEPcCibP.ajTNe969fHHuppwl" }, { "_id": "vUyYxadU3cXz7Zqf", @@ -655,7 +672,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -734,7 +756,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!h98AuPfomEPcCibP.vUyYxadU3cXz7Zqf" }, { "_id": "aIoPr5RkxMhH5prU", @@ -747,7 +770,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -826,7 +854,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!h98AuPfomEPcCibP.aIoPr5RkxMhH5prU" }, { "_id": "UupAbZ0Pu4j3vLLg", @@ -839,7 +868,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -918,7 +952,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!h98AuPfomEPcCibP.UupAbZ0Pu4j3vLLg" }, { "_id": "0z51jBlE4BoPaEQn", @@ -931,7 +966,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1040,7 +1080,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!h98AuPfomEPcCibP.0z51jBlE4BoPaEQn" }, { "_id": "pPThO0mEw9iMaJw7", @@ -1053,7 +1094,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -1162,7 +1208,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!h98AuPfomEPcCibP.pPThO0mEw9iMaJw7" }, { "_id": "x44GisqrxHYC5fov", @@ -1175,7 +1222,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1259,7 +1311,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!h98AuPfomEPcCibP.x44GisqrxHYC5fov" } ], "effects": [], @@ -1276,5 +1329,6 @@ "createdTime": 1661787232983, "modifiedTime": 1672596103909, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!h98AuPfomEPcCibP" } diff --git a/packs/src/monsters/construct/rug-of-smothering.json b/packs/src/monsters/construct/rug-of-smothering.json index 13b461f234..5fff186228 100644 --- a/packs/src/monsters/construct/rug-of-smothering.json +++ b/packs/src/monsters/construct/rug-of-smothering.json @@ -110,7 +110,12 @@ "environment": "", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -465,7 +470,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -544,7 +554,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!f6HaKROPIcBRmSd1.PGulBR18kfO768c7" }, { "_id": "Jwm0r4Us1rwS6XfV", @@ -557,7 +568,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -636,7 +652,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!f6HaKROPIcBRmSd1.Jwm0r4Us1rwS6XfV" }, { "_id": "N30l3HXqmQ6H6Xo5", @@ -649,7 +666,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -728,7 +750,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!f6HaKROPIcBRmSd1.N30l3HXqmQ6H6Xo5" }, { "_id": "7p94WH1WPMhF1ZP9", @@ -741,7 +764,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -850,7 +878,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!f6HaKROPIcBRmSd1.7p94WH1WPMhF1ZP9" } ], "effects": [], @@ -867,5 +896,6 @@ "createdTime": 1661787232954, "modifiedTime": 1672596103163, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!f6HaKROPIcBRmSd1" } diff --git a/packs/src/monsters/construct/shield-guardian.json b/packs/src/monsters/construct/shield-guardian.json index 0f9bac8d6d..2c98c87cd9 100644 --- a/packs/src/monsters/construct/shield-guardian.json +++ b/packs/src/monsters/construct/shield-guardian.json @@ -110,7 +110,12 @@ "environment": "Urban", "cr": 7, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -464,7 +469,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -543,7 +553,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!z85EsGS2GVWj46qE.mJoNsESU5X2lBKqn" }, { "_id": "vk0gd3buCPWGpyYF", @@ -556,7 +567,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -640,7 +656,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!z85EsGS2GVWj46qE.vk0gd3buCPWGpyYF" }, { "_id": "qbSL2A0uKuh2iER5", @@ -653,7 +670,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -732,7 +754,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!z85EsGS2GVWj46qE.qbSL2A0uKuh2iER5" }, { "_id": "7R1cDGKMv0mdxaE7", @@ -745,7 +768,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -824,7 +852,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!z85EsGS2GVWj46qE.7R1cDGKMv0mdxaE7" }, { "_id": "r6GQ1TwNK7pinX0a", @@ -837,7 +866,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -946,7 +980,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!z85EsGS2GVWj46qE.r6GQ1TwNK7pinX0a" }, { "_id": "EjeLsaCua7yjgxax", @@ -959,7 +994,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -1038,7 +1078,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!z85EsGS2GVWj46qE.EjeLsaCua7yjgxax" } ], "effects": [], @@ -1055,5 +1096,6 @@ "createdTime": 1661787233256, "modifiedTime": 1672596109269, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!z85EsGS2GVWj46qE" } diff --git a/packs/src/monsters/construct/stone-golem.json b/packs/src/monsters/construct/stone-golem.json index d8fdd698d1..26bb67559d 100644 --- a/packs/src/monsters/construct/stone-golem.json +++ b/packs/src/monsters/construct/stone-golem.json @@ -110,7 +110,12 @@ "environment": "", "cr": 10, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -470,7 +475,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -549,7 +559,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!z3gSIXHHWYaHjfBT.FWww5Mv4eoxXAADH" }, { "_id": "kf6ELkKrSnpD2fwD", @@ -562,7 +573,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -641,7 +657,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!z3gSIXHHWYaHjfBT.kf6ELkKrSnpD2fwD" }, { "_id": "GGgxGpYSCDYiflMA", @@ -654,7 +671,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -733,7 +755,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!z3gSIXHHWYaHjfBT.GGgxGpYSCDYiflMA" }, { "_id": "Ym2CUTgDPucdmj1W", @@ -746,7 +769,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -825,7 +853,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!z3gSIXHHWYaHjfBT.Ym2CUTgDPucdmj1W" }, { "_id": "DelAxHnRbNHC6OoV", @@ -838,7 +867,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -947,7 +981,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!z3gSIXHHWYaHjfBT.DelAxHnRbNHC6OoV" }, { "_id": "9aTwUWuZQLhMxjcD", @@ -960,7 +995,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1039,7 +1079,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!z3gSIXHHWYaHjfBT.9aTwUWuZQLhMxjcD" } ], "effects": [], @@ -1056,5 +1097,6 @@ "createdTime": 1661787233254, "modifiedTime": 1672596109220, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!z3gSIXHHWYaHjfBT" } diff --git a/packs/src/monsters/dragon/adult-black-dragon.json b/packs/src/monsters/dragon/adult-black-dragon.json index 8db465370f..77f80fd2f5 100644 --- a/packs/src/monsters/dragon/adult-black-dragon.json +++ b/packs/src/monsters/dragon/adult-black-dragon.json @@ -110,7 +110,12 @@ "environment": "Swamp", "cr": 14, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -455,7 +460,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -534,7 +544,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!M4eX4Mu5IHCr3TMf.P47jJ8bjQulsbdUg" }, { "_id": "amUUCouL69OK1GZU", @@ -547,7 +558,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -664,7 +680,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!M4eX4Mu5IHCr3TMf.amUUCouL69OK1GZU" }, { "_id": "uXxifk618IakGfYG", @@ -677,7 +694,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -786,7 +808,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!M4eX4Mu5IHCr3TMf.uXxifk618IakGfYG" }, { "_id": "t9FrDQLVCU8x4obw", @@ -799,7 +822,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -908,7 +936,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!M4eX4Mu5IHCr3TMf.t9FrDQLVCU8x4obw" }, { "_id": "A3azHlbNcHLRgogu", @@ -921,7 +950,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1000,7 +1034,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!M4eX4Mu5IHCr3TMf.A3azHlbNcHLRgogu" }, { "_id": "Xlzm4nSYrmGB03GH", @@ -1013,7 +1048,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1092,7 +1132,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!M4eX4Mu5IHCr3TMf.Xlzm4nSYrmGB03GH" }, { "_id": "6gjpG1ezpMNyJDGc", @@ -1105,7 +1146,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -1184,7 +1230,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!M4eX4Mu5IHCr3TMf.6gjpG1ezpMNyJDGc" }, { "_id": "6bromElr0abqNXJL", @@ -1197,7 +1244,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1281,7 +1333,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!M4eX4Mu5IHCr3TMf.6bromElr0abqNXJL" }, { "_id": "tWGObm0RZMwSrQLU", @@ -1294,7 +1347,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1373,7 +1431,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!M4eX4Mu5IHCr3TMf.tWGObm0RZMwSrQLU" }, { "_id": "LgqLdk3VQOVcO5UI", @@ -1386,7 +1445,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1490,7 +1554,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!M4eX4Mu5IHCr3TMf.LgqLdk3VQOVcO5UI" }, { "_id": "kFPbmQZGCKfWRXpq", @@ -1503,7 +1568,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1612,7 +1682,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!M4eX4Mu5IHCr3TMf.kFPbmQZGCKfWRXpq" }, { "_id": "RnqMV5Ur5n9S3wIt", @@ -1625,7 +1696,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1700,7 +1776,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!M4eX4Mu5IHCr3TMf.RnqMV5Ur5n9S3wIt" }, { "_id": "cqasTMQJDj2XBMse", @@ -1713,7 +1790,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1792,7 +1874,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!M4eX4Mu5IHCr3TMf.cqasTMQJDj2XBMse" }, { "_id": "Wgu6mm84tNNWdiEH", @@ -1805,7 +1888,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1884,7 +1972,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!M4eX4Mu5IHCr3TMf.Wgu6mm84tNNWdiEH" } ], "effects": [], @@ -1901,5 +1990,6 @@ "createdTime": 1661787232772, "modifiedTime": 1672596097571, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!M4eX4Mu5IHCr3TMf" } diff --git a/packs/src/monsters/dragon/adult-blue-dragon.json b/packs/src/monsters/dragon/adult-blue-dragon.json index 93120516c3..934d569749 100644 --- a/packs/src/monsters/dragon/adult-blue-dragon.json +++ b/packs/src/monsters/dragon/adult-blue-dragon.json @@ -110,7 +110,12 @@ "environment": "Desert", "cr": 16, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -455,7 +460,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -534,7 +544,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cGM3iVYTtCsYXjzO.sIvGEhLogBsA5OXM" }, { "_id": "tz3vYeFf3GLouPGC", @@ -547,7 +558,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -664,7 +680,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cGM3iVYTtCsYXjzO.tz3vYeFf3GLouPGC" }, { "_id": "kYySllKlNPBsT7Ho", @@ -677,7 +694,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -786,7 +808,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cGM3iVYTtCsYXjzO.kYySllKlNPBsT7Ho" }, { "_id": "wpVgm5eOdM9j3C3N", @@ -799,7 +822,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -874,7 +902,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cGM3iVYTtCsYXjzO.wpVgm5eOdM9j3C3N" }, { "_id": "zMT1Uj814On8O1Hg", @@ -887,7 +916,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -966,7 +1000,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cGM3iVYTtCsYXjzO.zMT1Uj814On8O1Hg" }, { "_id": "hTzGBPIQzZPRkUgt", @@ -979,7 +1014,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1058,7 +1098,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cGM3iVYTtCsYXjzO.hTzGBPIQzZPRkUgt" }, { "_id": "2yqNNNEOupSnZs0p", @@ -1071,7 +1112,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1150,7 +1196,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cGM3iVYTtCsYXjzO.2yqNNNEOupSnZs0p" }, { "_id": "BNmepDhipTFG7kIT", @@ -1163,7 +1210,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -1242,7 +1294,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cGM3iVYTtCsYXjzO.BNmepDhipTFG7kIT" }, { "_id": "ZrmS45Tc7RieN0qd", @@ -1255,7 +1308,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1339,7 +1397,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cGM3iVYTtCsYXjzO.ZrmS45Tc7RieN0qd" }, { "_id": "kWquVg3QhBwODyz3", @@ -1352,7 +1411,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1431,7 +1495,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cGM3iVYTtCsYXjzO.kWquVg3QhBwODyz3" }, { "_id": "JRgWoRDlExmKqNVa", @@ -1444,7 +1509,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1553,7 +1623,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cGM3iVYTtCsYXjzO.JRgWoRDlExmKqNVa" }, { "_id": "ANMZzr2n2EpU41eg", @@ -1566,7 +1637,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1670,7 +1746,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cGM3iVYTtCsYXjzO.ANMZzr2n2EpU41eg" }, { "_id": "GcUNB4m0NAPgP0Nx", @@ -1683,7 +1760,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1792,7 +1874,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!cGM3iVYTtCsYXjzO.GcUNB4m0NAPgP0Nx" } ], "effects": [], @@ -1809,5 +1892,6 @@ "createdTime": 1661787232920, "modifiedTime": 1672596102531, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!cGM3iVYTtCsYXjzO" } diff --git a/packs/src/monsters/dragon/adult-brass-dragon.json b/packs/src/monsters/dragon/adult-brass-dragon.json index 294b930d89..978fd54c87 100644 --- a/packs/src/monsters/dragon/adult-brass-dragon.json +++ b/packs/src/monsters/dragon/adult-brass-dragon.json @@ -110,7 +110,12 @@ "environment": "Desert", "cr": 13, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -455,7 +460,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -568,7 +578,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7vswgicsiMfS4ZTS.Rr34cx78OgioMSHH" }, { "_id": "HOTavLfsvvI26Ele", @@ -581,7 +592,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -665,7 +681,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7vswgicsiMfS4ZTS.HOTavLfsvvI26Ele" }, { "_id": "Gx6DVWF7D9lzZjse", @@ -678,7 +695,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -787,7 +809,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7vswgicsiMfS4ZTS.Gx6DVWF7D9lzZjse" }, { "_id": "jM7XLTjt7QeJ8B7U", @@ -800,7 +823,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -875,7 +903,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7vswgicsiMfS4ZTS.jM7XLTjt7QeJ8B7U" }, { "_id": "cVkEgorVxYQJkS8M", @@ -888,7 +917,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -967,7 +1001,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7vswgicsiMfS4ZTS.cVkEgorVxYQJkS8M" }, { "_id": "Mmn2SNmzahxtikN3", @@ -980,7 +1015,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1059,7 +1099,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7vswgicsiMfS4ZTS.Mmn2SNmzahxtikN3" }, { "_id": "86DJipzmvkhxDoKr", @@ -1072,7 +1113,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": 1, @@ -1151,7 +1197,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7vswgicsiMfS4ZTS.86DJipzmvkhxDoKr" }, { "_id": "MUTDiPrzhDqLYlKU", @@ -1164,7 +1211,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1243,7 +1295,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7vswgicsiMfS4ZTS.MUTDiPrzhDqLYlKU" }, { "_id": "rR1dMvZqWVQTgCVw", @@ -1256,7 +1309,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1365,7 +1423,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7vswgicsiMfS4ZTS.rR1dMvZqWVQTgCVw" }, { "_id": "StCQbn2czecQteRM", @@ -1378,7 +1437,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1487,7 +1551,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7vswgicsiMfS4ZTS.StCQbn2czecQteRM" }, { "_id": "Ge1y4jlE3zGCsy6K", @@ -1500,7 +1565,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1609,7 +1679,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7vswgicsiMfS4ZTS.Ge1y4jlE3zGCsy6K" }, { "_id": "37PM2SkkUbzzambk", @@ -1622,7 +1693,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1701,7 +1777,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7vswgicsiMfS4ZTS.37PM2SkkUbzzambk" }, { "_id": "asAmhLPOTnfZhb5I", @@ -1714,7 +1791,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1793,7 +1875,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7vswgicsiMfS4ZTS.asAmhLPOTnfZhb5I" }, { "_id": "K7XKtsJS8WUoEE0u", @@ -1806,7 +1889,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1885,7 +1973,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7vswgicsiMfS4ZTS.K7XKtsJS8WUoEE0u" }, { "_id": "VOrehjcYVau3aE1g", @@ -1898,7 +1987,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1977,7 +2071,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7vswgicsiMfS4ZTS.VOrehjcYVau3aE1g" } ], "effects": [], @@ -1994,5 +2089,6 @@ "createdTime": 1661787232616, "modifiedTime": 1672596093131, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!7vswgicsiMfS4ZTS" } diff --git a/packs/src/monsters/dragon/adult-bronze-dragon.json b/packs/src/monsters/dragon/adult-bronze-dragon.json index abcd8f8a59..b015c02f00 100644 --- a/packs/src/monsters/dragon/adult-bronze-dragon.json +++ b/packs/src/monsters/dragon/adult-bronze-dragon.json @@ -110,7 +110,12 @@ "environment": "Coastal", "cr": 15, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -455,7 +460,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -534,7 +544,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VCuG0Z3MrO8kfDU0.KVwqxZJAuhE9M5kP" }, { "_id": "zMFGBLVpXSZC1Vjm", @@ -547,7 +558,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -660,7 +676,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VCuG0Z3MrO8kfDU0.zMFGBLVpXSZC1Vjm" }, { "_id": "ZEeiaB4lQMzRas3i", @@ -673,7 +690,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -752,7 +774,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VCuG0Z3MrO8kfDU0.ZEeiaB4lQMzRas3i" }, { "_id": "Sn1RpgmvWb3DPz66", @@ -765,7 +788,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -844,7 +872,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VCuG0Z3MrO8kfDU0.Sn1RpgmvWb3DPz66" }, { "_id": "P0ycd36lowML3rTc", @@ -857,7 +886,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -966,7 +1000,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VCuG0Z3MrO8kfDU0.P0ycd36lowML3rTc" }, { "_id": "irNLCfkryOmVWf25", @@ -979,7 +1014,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1088,7 +1128,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VCuG0Z3MrO8kfDU0.irNLCfkryOmVWf25" }, { "_id": "m7dF0hheApwoJLpp", @@ -1101,7 +1142,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1180,7 +1226,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VCuG0Z3MrO8kfDU0.m7dF0hheApwoJLpp" }, { "_id": "ZDVExJaMLcCwOcyq", @@ -1193,7 +1240,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1272,7 +1324,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VCuG0Z3MrO8kfDU0.ZDVExJaMLcCwOcyq" }, { "_id": "ApCOq8kdcdR2lgPa", @@ -1285,7 +1338,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1364,7 +1422,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VCuG0Z3MrO8kfDU0.ApCOq8kdcdR2lgPa" }, { "_id": "Irqf7lAff02Flboj", @@ -1377,7 +1436,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1461,7 +1525,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VCuG0Z3MrO8kfDU0.Irqf7lAff02Flboj" }, { "_id": "TlmOXrpIxG13apJr", @@ -1474,7 +1539,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1553,7 +1623,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VCuG0Z3MrO8kfDU0.TlmOXrpIxG13apJr" }, { "_id": "jwbM0YJCiaOuH9fv", @@ -1566,7 +1637,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1645,7 +1721,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VCuG0Z3MrO8kfDU0.jwbM0YJCiaOuH9fv" }, { "_id": "7UhgJ951z7hjLmBu", @@ -1658,7 +1735,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1733,7 +1815,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VCuG0Z3MrO8kfDU0.7UhgJ951z7hjLmBu" }, { "_id": "JOKHSoiYvCINS119", @@ -1746,7 +1829,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1850,7 +1938,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VCuG0Z3MrO8kfDU0.JOKHSoiYvCINS119" }, { "_id": "Ls6rBLfLiVx1xTaD", @@ -1863,7 +1952,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1972,7 +2066,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VCuG0Z3MrO8kfDU0.Ls6rBLfLiVx1xTaD" }, { "_id": "WoixfK4f9t5yZ9XN", @@ -1985,7 +2080,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -2064,7 +2164,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VCuG0Z3MrO8kfDU0.WoixfK4f9t5yZ9XN" }, { "_id": "ygGwKyrOo5J2gWKh", @@ -2077,7 +2178,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -2156,7 +2262,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VCuG0Z3MrO8kfDU0.ygGwKyrOo5J2gWKh" } ], "effects": [], @@ -2173,5 +2280,6 @@ "createdTime": 1661787232862, "modifiedTime": 1672596100761, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!VCuG0Z3MrO8kfDU0" } diff --git a/packs/src/monsters/dragon/adult-copper-dragon.json b/packs/src/monsters/dragon/adult-copper-dragon.json index 9649af0ce3..6ee023c6d3 100644 --- a/packs/src/monsters/dragon/adult-copper-dragon.json +++ b/packs/src/monsters/dragon/adult-copper-dragon.json @@ -110,7 +110,12 @@ "environment": "Hill", "cr": 14, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -455,7 +460,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": 1, @@ -534,7 +544,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!irz834sqAxRihtSG.2WoNMpj7w91Dt4fY" }, { "_id": "qfV8YlDhXHfI9Uin", @@ -547,7 +558,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -626,7 +642,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!irz834sqAxRihtSG.qfV8YlDhXHfI9Uin" }, { "_id": "jLzmwSFLsR0jhWHF", @@ -639,7 +656,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -752,7 +774,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!irz834sqAxRihtSG.jLzmwSFLsR0jhWHF" }, { "_id": "rIzRUQvEexZL1wZx", @@ -765,7 +788,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -874,7 +902,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!irz834sqAxRihtSG.rIzRUQvEexZL1wZx" }, { "_id": "S1RmDd4fOJffOxAy", @@ -887,7 +916,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -996,7 +1030,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!irz834sqAxRihtSG.S1RmDd4fOJffOxAy" }, { "_id": "3ovBwWW2b9S8LYId", @@ -1009,7 +1044,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1088,7 +1128,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!irz834sqAxRihtSG.3ovBwWW2b9S8LYId" }, { "_id": "l9M8UzmizF3KRbEr", @@ -1101,7 +1142,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1180,7 +1226,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!irz834sqAxRihtSG.l9M8UzmizF3KRbEr" }, { "_id": "AMOb6E3TENPVZzFu", @@ -1193,7 +1240,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1277,7 +1329,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!irz834sqAxRihtSG.AMOb6E3TENPVZzFu" }, { "_id": "PMfemsI55IkO3buY", @@ -1290,7 +1343,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1369,7 +1427,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!irz834sqAxRihtSG.PMfemsI55IkO3buY" }, { "_id": "EuIDfrjxsngqBcnD", @@ -1382,7 +1441,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1461,7 +1525,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!irz834sqAxRihtSG.EuIDfrjxsngqBcnD" }, { "_id": "WpLmLtkW78JzpUOu", @@ -1474,7 +1539,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1549,7 +1619,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!irz834sqAxRihtSG.WpLmLtkW78JzpUOu" }, { "_id": "56yxRgRdOJvr3Hi3", @@ -1562,7 +1633,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1666,7 +1742,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!irz834sqAxRihtSG.56yxRgRdOJvr3Hi3" }, { "_id": "4Cf4U7JMFMCyjw7N", @@ -1679,7 +1756,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1788,7 +1870,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!irz834sqAxRihtSG.4Cf4U7JMFMCyjw7N" }, { "_id": "othdHNDe2JbOsBXv", @@ -1801,7 +1884,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1880,7 +1968,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!irz834sqAxRihtSG.othdHNDe2JbOsBXv" }, { "_id": "0javcL0nFMoeWm3I", @@ -1893,7 +1982,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1972,7 +2066,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!irz834sqAxRihtSG.0javcL0nFMoeWm3I" } ], "effects": [], @@ -1989,5 +2084,6 @@ "createdTime": 1661787233005, "modifiedTime": 1672596104472, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!irz834sqAxRihtSG" } diff --git a/packs/src/monsters/dragon/adult-gold-dragon.json b/packs/src/monsters/dragon/adult-gold-dragon.json index bf37daf4e8..8f2660ebb4 100644 --- a/packs/src/monsters/dragon/adult-gold-dragon.json +++ b/packs/src/monsters/dragon/adult-gold-dragon.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 17, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -455,7 +460,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -534,7 +544,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MO382D2sxtAIuUC5.EDuUEVF5kjzG5YQZ" }, { "_id": "OFL5IcvfcWfE3Vmp", @@ -547,7 +558,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -626,7 +642,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MO382D2sxtAIuUC5.OFL5IcvfcWfE3Vmp" }, { "_id": "TUvgGNvTgO6MlepM", @@ -639,7 +656,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -718,7 +740,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MO382D2sxtAIuUC5.TUvgGNvTgO6MlepM" }, { "_id": "tx5M41t7JlSuVQ9R", @@ -731,7 +754,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -844,7 +872,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MO382D2sxtAIuUC5.tx5M41t7JlSuVQ9R" }, { "_id": "ORrcO13EbgjVvNjA", @@ -857,7 +886,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -966,7 +1000,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MO382D2sxtAIuUC5.ORrcO13EbgjVvNjA" }, { "_id": "FXYoii0YU2Y7CqBa", @@ -979,7 +1014,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1088,7 +1128,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MO382D2sxtAIuUC5.FXYoii0YU2Y7CqBa" }, { "_id": "v92F1DGzRWSEMPxH", @@ -1101,7 +1142,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1180,7 +1226,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MO382D2sxtAIuUC5.v92F1DGzRWSEMPxH" }, { "_id": "GTmsKSKk8kTlQXkT", @@ -1193,7 +1240,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1272,7 +1324,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MO382D2sxtAIuUC5.GTmsKSKk8kTlQXkT" }, { "_id": "zoAkmBfD677QYuSh", @@ -1285,7 +1338,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1369,7 +1427,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MO382D2sxtAIuUC5.zoAkmBfD677QYuSh" }, { "_id": "KfnqUfoAw7IVzVpy", @@ -1382,7 +1441,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1461,7 +1525,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MO382D2sxtAIuUC5.KfnqUfoAw7IVzVpy" }, { "_id": "Fyvg74zRJWn05uhK", @@ -1474,7 +1539,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1553,7 +1623,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MO382D2sxtAIuUC5.Fyvg74zRJWn05uhK" }, { "_id": "RNFCtDcWoF0NAvl2", @@ -1566,7 +1637,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1645,7 +1721,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MO382D2sxtAIuUC5.RNFCtDcWoF0NAvl2" }, { "_id": "QtK9Z8y5x78hUIxF", @@ -1658,7 +1735,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1733,7 +1815,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MO382D2sxtAIuUC5.QtK9Z8y5x78hUIxF" }, { "_id": "FehkcXNr3EsmJMif", @@ -1746,7 +1829,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1850,7 +1938,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MO382D2sxtAIuUC5.FehkcXNr3EsmJMif" }, { "_id": "G0aqIC7Haxea184o", @@ -1863,7 +1952,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1972,7 +2066,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MO382D2sxtAIuUC5.G0aqIC7Haxea184o" }, { "_id": "jAr1sQYarE6ySAbR", @@ -1985,7 +2080,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -2064,7 +2164,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MO382D2sxtAIuUC5.jAr1sQYarE6ySAbR" }, { "_id": "eo41KZmfDzUstx4g", @@ -2077,7 +2178,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -2156,7 +2262,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MO382D2sxtAIuUC5.eo41KZmfDzUstx4g" } ], "effects": [], @@ -2173,5 +2280,6 @@ "createdTime": 1661787232777, "modifiedTime": 1672596097762, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!MO382D2sxtAIuUC5" } diff --git a/packs/src/monsters/dragon/adult-green-dragon.json b/packs/src/monsters/dragon/adult-green-dragon.json index aee2dca5c4..9fba58d3a5 100644 --- a/packs/src/monsters/dragon/adult-green-dragon.json +++ b/packs/src/monsters/dragon/adult-green-dragon.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 15, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -457,7 +462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -536,7 +546,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GP8JMSDugRxuLOD2.iSMssiqxkZFEt2ch" }, { "_id": "dOplnQbE1lIu7Rt8", @@ -549,7 +560,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": 1, @@ -628,7 +644,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GP8JMSDugRxuLOD2.dOplnQbE1lIu7Rt8" }, { "_id": "dhanHpeimPZOKFTP", @@ -641,7 +658,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -720,7 +742,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GP8JMSDugRxuLOD2.dhanHpeimPZOKFTP" }, { "_id": "ZJR61a1mg2JHdHE0", @@ -733,7 +756,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -850,7 +878,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GP8JMSDugRxuLOD2.ZJR61a1mg2JHdHE0" }, { "_id": "I4ycwNCADZj1bun0", @@ -863,7 +892,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -972,7 +1006,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GP8JMSDugRxuLOD2.I4ycwNCADZj1bun0" }, { "_id": "HwjAaKkl4iBsFB24", @@ -985,7 +1020,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1094,7 +1134,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GP8JMSDugRxuLOD2.HwjAaKkl4iBsFB24" }, { "_id": "k9uTT39kBp2sDDUE", @@ -1107,7 +1148,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1186,7 +1232,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GP8JMSDugRxuLOD2.k9uTT39kBp2sDDUE" }, { "_id": "WAglSb6wsm8V1iCd", @@ -1199,7 +1246,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1283,7 +1335,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GP8JMSDugRxuLOD2.WAglSb6wsm8V1iCd" }, { "_id": "jls6tBzceKBhLIJ9", @@ -1296,7 +1349,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1375,7 +1433,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GP8JMSDugRxuLOD2.jls6tBzceKBhLIJ9" }, { "_id": "hj8x2cAmsCz65VMp", @@ -1388,7 +1447,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1463,7 +1527,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GP8JMSDugRxuLOD2.hj8x2cAmsCz65VMp" }, { "_id": "jp6U9gVAnEqYxjal", @@ -1476,7 +1541,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1580,7 +1650,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GP8JMSDugRxuLOD2.jp6U9gVAnEqYxjal" }, { "_id": "mjuHphDtsXPuLymt", @@ -1593,7 +1664,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1702,7 +1778,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GP8JMSDugRxuLOD2.mjuHphDtsXPuLymt" }, { "_id": "N0yg5M0tfiYJqxjz", @@ -1715,7 +1792,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1794,7 +1876,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GP8JMSDugRxuLOD2.N0yg5M0tfiYJqxjz" }, { "_id": "7HzyoXYLdWSACePR", @@ -1807,7 +1890,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1886,7 +1974,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GP8JMSDugRxuLOD2.7HzyoXYLdWSACePR" } ], "effects": [], @@ -1903,5 +1992,6 @@ "createdTime": 1661787232713, "modifiedTime": 1672596095831, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!GP8JMSDugRxuLOD2" } diff --git a/packs/src/monsters/dragon/adult-red-dragon.json b/packs/src/monsters/dragon/adult-red-dragon.json index 8b0ea73df3..a49d204fb6 100644 --- a/packs/src/monsters/dragon/adult-red-dragon.json +++ b/packs/src/monsters/dragon/adult-red-dragon.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 17, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -455,7 +460,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": 1, @@ -534,7 +544,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZyIBOoZZD0nDaO2s.MN60UTO1pjltasYN" }, { "_id": "nF4ZHYj37UstHCUT", @@ -547,7 +558,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -626,7 +642,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZyIBOoZZD0nDaO2s.nF4ZHYj37UstHCUT" }, { "_id": "ftqEpCKoioTST72K", @@ -639,7 +656,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -718,7 +740,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZyIBOoZZD0nDaO2s.ftqEpCKoioTST72K" }, { "_id": "tD8Vmsb4B5eqTOJA", @@ -731,7 +754,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -815,7 +843,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZyIBOoZZD0nDaO2s.tD8Vmsb4B5eqTOJA" }, { "_id": "060hAjIEDdMDfVoE", @@ -828,7 +857,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -945,7 +979,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZyIBOoZZD0nDaO2s.060hAjIEDdMDfVoE" }, { "_id": "pzDFBmC7wfQsMJzw", @@ -958,7 +993,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1067,7 +1107,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZyIBOoZZD0nDaO2s.pzDFBmC7wfQsMJzw" }, { "_id": "DF0doZR8pYSjsrme", @@ -1080,7 +1121,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1189,7 +1235,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZyIBOoZZD0nDaO2s.DF0doZR8pYSjsrme" }, { "_id": "LESSs8CLEr1DEuLM", @@ -1202,7 +1249,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1281,7 +1333,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZyIBOoZZD0nDaO2s.LESSs8CLEr1DEuLM" }, { "_id": "1PppVLNAsjADU0Za", @@ -1294,7 +1347,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1369,7 +1427,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZyIBOoZZD0nDaO2s.1PppVLNAsjADU0Za" }, { "_id": "ut9yaZWaSkU7bT1h", @@ -1382,7 +1441,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1486,7 +1550,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZyIBOoZZD0nDaO2s.ut9yaZWaSkU7bT1h" }, { "_id": "Q5JDbGOejqXyeaCj", @@ -1499,7 +1564,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1608,7 +1678,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZyIBOoZZD0nDaO2s.Q5JDbGOejqXyeaCj" }, { "_id": "yCGYa27YqTLhQK0I", @@ -1621,7 +1692,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1700,7 +1776,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZyIBOoZZD0nDaO2s.yCGYa27YqTLhQK0I" }, { "_id": "NQk4f6iqTeJaFaT0", @@ -1713,7 +1790,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1792,7 +1874,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZyIBOoZZD0nDaO2s.NQk4f6iqTeJaFaT0" } ], "effects": [], @@ -1809,5 +1892,6 @@ "createdTime": 1661787232898, "modifiedTime": 1672596101801, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!ZyIBOoZZD0nDaO2s" } diff --git a/packs/src/monsters/dragon/adult-silver-dragon.json b/packs/src/monsters/dragon/adult-silver-dragon.json index 66be952478..323907223c 100644 --- a/packs/src/monsters/dragon/adult-silver-dragon.json +++ b/packs/src/monsters/dragon/adult-silver-dragon.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 16, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -455,7 +460,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -534,7 +544,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!geM2F7HvVGhtk3h4.PHDGDBP8gGjp1XRs" }, { "_id": "ajPmtUy0amdphs7D", @@ -547,7 +558,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -626,7 +642,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!geM2F7HvVGhtk3h4.ajPmtUy0amdphs7D" }, { "_id": "3WM5UpCTIb6fQaWA", @@ -639,7 +656,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -752,7 +774,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!geM2F7HvVGhtk3h4.3WM5UpCTIb6fQaWA" }, { "_id": "nO1hKkZifzX3UJ2y", @@ -765,7 +788,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -874,7 +902,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!geM2F7HvVGhtk3h4.nO1hKkZifzX3UJ2y" }, { "_id": "v5TMyixZTtiw13d7", @@ -887,7 +916,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -996,7 +1030,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!geM2F7HvVGhtk3h4.v5TMyixZTtiw13d7" }, { "_id": "F8gfPJkHrrlTwVUs", @@ -1009,7 +1044,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1088,7 +1128,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!geM2F7HvVGhtk3h4.F8gfPJkHrrlTwVUs" }, { "_id": "3c1EZHdUBP4tiWfK", @@ -1101,7 +1142,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1180,7 +1226,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!geM2F7HvVGhtk3h4.3c1EZHdUBP4tiWfK" }, { "_id": "MzyHKQpwLeUUgBW7", @@ -1193,7 +1240,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1277,7 +1329,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!geM2F7HvVGhtk3h4.MzyHKQpwLeUUgBW7" }, { "_id": "5Q60uuHW5kZGaopg", @@ -1290,7 +1343,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1369,7 +1427,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!geM2F7HvVGhtk3h4.5Q60uuHW5kZGaopg" }, { "_id": "4NQZ8XlRj6sbjbOs", @@ -1382,7 +1441,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1461,7 +1525,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!geM2F7HvVGhtk3h4.4NQZ8XlRj6sbjbOs" }, { "_id": "lslg4XVihVKQhwte", @@ -1474,7 +1539,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1553,7 +1623,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!geM2F7HvVGhtk3h4.lslg4XVihVKQhwte" }, { "_id": "uqanvb4CeQp0bdn3", @@ -1566,7 +1637,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1641,7 +1717,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!geM2F7HvVGhtk3h4.uqanvb4CeQp0bdn3" }, { "_id": "1OojtcMLidFnfuTi", @@ -1654,7 +1731,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1758,7 +1840,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!geM2F7HvVGhtk3h4.1OojtcMLidFnfuTi" }, { "_id": "CdSoAS13rAlkBKI7", @@ -1771,7 +1854,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1880,7 +1968,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!geM2F7HvVGhtk3h4.CdSoAS13rAlkBKI7" }, { "_id": "W525tFlyOp18jFTJ", @@ -1893,7 +1982,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1972,7 +2066,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!geM2F7HvVGhtk3h4.W525tFlyOp18jFTJ" }, { "_id": "XTlIcoABQaHZTn5D", @@ -1985,7 +2080,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -2064,7 +2164,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!geM2F7HvVGhtk3h4.XTlIcoABQaHZTn5D" } ], "effects": [], @@ -2081,5 +2182,6 @@ "createdTime": 1661787232976, "modifiedTime": 1672596103681, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!geM2F7HvVGhtk3h4" } diff --git a/packs/src/monsters/dragon/adult-white-dragon.json b/packs/src/monsters/dragon/adult-white-dragon.json index 7d11596ac2..4a2ffcb01e 100644 --- a/packs/src/monsters/dragon/adult-white-dragon.json +++ b/packs/src/monsters/dragon/adult-white-dragon.json @@ -110,7 +110,12 @@ "environment": "Arctic", "cr": 13, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -455,7 +460,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -534,7 +544,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3uIursokd3KdZrW3.9BSey1ZiD31ClK2C" }, { "_id": "542eNLhAx7XYJErk", @@ -547,7 +558,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -664,7 +680,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3uIursokd3KdZrW3.542eNLhAx7XYJErk" }, { "_id": "FhUOX8awKhQrGBV0", @@ -677,7 +694,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -786,7 +808,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3uIursokd3KdZrW3.FhUOX8awKhQrGBV0" }, { "_id": "lQ57BVbUiVe2tJcL", @@ -799,7 +822,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -883,7 +911,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3uIursokd3KdZrW3.lQ57BVbUiVe2tJcL" }, { "_id": "CwDVyMam0aPSvRyx", @@ -896,7 +925,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -971,7 +1005,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3uIursokd3KdZrW3.CwDVyMam0aPSvRyx" }, { "_id": "nKX7IFrwLJsAsWXU", @@ -984,7 +1019,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1063,7 +1103,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3uIursokd3KdZrW3.nKX7IFrwLJsAsWXU" }, { "_id": "FeXPnKNku7x5oGMv", @@ -1076,7 +1117,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1155,7 +1201,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3uIursokd3KdZrW3.FeXPnKNku7x5oGMv" }, { "_id": "6AiskuquLuemBSzo", @@ -1168,7 +1215,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1247,7 +1299,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3uIursokd3KdZrW3.6AiskuquLuemBSzo" }, { "_id": "7JtKHjp4ib2tL3Qu", @@ -1260,7 +1313,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1339,7 +1397,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3uIursokd3KdZrW3.7JtKHjp4ib2tL3Qu" }, { "_id": "2TDIeRNe4vEJPgi6", @@ -1352,7 +1411,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -1431,7 +1495,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3uIursokd3KdZrW3.2TDIeRNe4vEJPgi6" }, { "_id": "QAzUtpWvNd9ptDjZ", @@ -1444,7 +1509,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1523,7 +1593,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3uIursokd3KdZrW3.QAzUtpWvNd9ptDjZ" }, { "_id": "pwOLYvuj5c9fEQAH", @@ -1536,7 +1607,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1645,7 +1721,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3uIursokd3KdZrW3.pwOLYvuj5c9fEQAH" }, { "_id": "6HVXfjsMra3fHVLb", @@ -1658,7 +1735,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1762,7 +1844,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3uIursokd3KdZrW3.6HVXfjsMra3fHVLb" }, { "_id": "dEBTjqEC02PwvqOV", @@ -1775,7 +1858,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1884,7 +1972,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3uIursokd3KdZrW3.dEBTjqEC02PwvqOV" } ], "effects": [], @@ -1901,5 +1990,6 @@ "createdTime": 1661787232575, "modifiedTime": 1672596091793, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!3uIursokd3KdZrW3" } diff --git a/packs/src/monsters/dragon/ancient-black-dragon.json b/packs/src/monsters/dragon/ancient-black-dragon.json index 370b800a86..3401462fa2 100644 --- a/packs/src/monsters/dragon/ancient-black-dragon.json +++ b/packs/src/monsters/dragon/ancient-black-dragon.json @@ -110,7 +110,12 @@ "environment": "Swamp", "cr": 21, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "grg", @@ -455,7 +460,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -534,7 +544,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qNdFhY3JOkCfhG3d.5IEyeZf0FqkPrv7R" }, { "_id": "J86tFiZtAP8BbHzF", @@ -547,7 +558,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -626,7 +642,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qNdFhY3JOkCfhG3d.J86tFiZtAP8BbHzF" }, { "_id": "RKsS1lZwBekMMGMt", @@ -639,7 +656,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -718,7 +740,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qNdFhY3JOkCfhG3d.RKsS1lZwBekMMGMt" }, { "_id": "YauNxZeIeT4uDcTf", @@ -731,7 +754,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -848,7 +876,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qNdFhY3JOkCfhG3d.YauNxZeIeT4uDcTf" }, { "_id": "GQLQiLBrkoOiNc8q", @@ -861,7 +890,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -970,7 +1004,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qNdFhY3JOkCfhG3d.GQLQiLBrkoOiNc8q" }, { "_id": "A5cRQsDF3Qih94rC", @@ -983,7 +1018,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1092,7 +1132,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qNdFhY3JOkCfhG3d.A5cRQsDF3Qih94rC" }, { "_id": "M3VJyuM63OKH7JH0", @@ -1105,7 +1146,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1184,7 +1230,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qNdFhY3JOkCfhG3d.M3VJyuM63OKH7JH0" }, { "_id": "zDlCrWQVJgZFMfxY", @@ -1197,7 +1244,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1281,7 +1333,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qNdFhY3JOkCfhG3d.zDlCrWQVJgZFMfxY" }, { "_id": "3ZEmD9O6eOtAfSzJ", @@ -1294,7 +1347,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1373,7 +1431,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qNdFhY3JOkCfhG3d.3ZEmD9O6eOtAfSzJ" }, { "_id": "Ue0XiojtilVvKhH4", @@ -1386,7 +1445,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1461,7 +1525,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qNdFhY3JOkCfhG3d.Ue0XiojtilVvKhH4" }, { "_id": "UpWaTW9cFf96GmMH", @@ -1474,7 +1539,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1578,7 +1648,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qNdFhY3JOkCfhG3d.UpWaTW9cFf96GmMH" }, { "_id": "i4ggPCju3QyYJslH", @@ -1591,7 +1662,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1700,7 +1776,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qNdFhY3JOkCfhG3d.i4ggPCju3QyYJslH" }, { "_id": "84PHEVjYThsmbYxc", @@ -1713,7 +1790,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1792,7 +1874,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qNdFhY3JOkCfhG3d.84PHEVjYThsmbYxc" }, { "_id": "PO5gIWTWS1dahP5E", @@ -1805,7 +1888,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1884,7 +1972,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qNdFhY3JOkCfhG3d.PO5gIWTWS1dahP5E" } ], "effects": [], @@ -1901,5 +1990,6 @@ "createdTime": 1661787233185, "modifiedTime": 1672596107052, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!qNdFhY3JOkCfhG3d" } diff --git a/packs/src/monsters/dragon/ancient-blue-dragon.json b/packs/src/monsters/dragon/ancient-blue-dragon.json index fdc126422b..0ed0009d5c 100644 --- a/packs/src/monsters/dragon/ancient-blue-dragon.json +++ b/packs/src/monsters/dragon/ancient-blue-dragon.json @@ -110,7 +110,12 @@ "environment": "Desert", "cr": 23, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "grg", @@ -455,7 +460,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": 1, @@ -534,7 +544,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SNT0JNVSngUTsj4m.OUkdlIHkMVy9284v" }, { "_id": "gbM7g0hyrF6MMYqR", @@ -547,7 +558,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -626,7 +642,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SNT0JNVSngUTsj4m.gbM7g0hyrF6MMYqR" }, { "_id": "F29wEcjTlpKWcfO3", @@ -639,7 +656,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -756,7 +778,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SNT0JNVSngUTsj4m.F29wEcjTlpKWcfO3" }, { "_id": "uDd2aKkvwMwZfncQ", @@ -769,7 +792,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -848,7 +876,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SNT0JNVSngUTsj4m.uDd2aKkvwMwZfncQ" }, { "_id": "BOsuBiKE1Enpl4xl", @@ -861,7 +890,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -936,7 +970,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SNT0JNVSngUTsj4m.BOsuBiKE1Enpl4xl" }, { "_id": "BLj6WOTkgYmTEfj1", @@ -949,7 +984,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1028,7 +1068,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SNT0JNVSngUTsj4m.BLj6WOTkgYmTEfj1" }, { "_id": "Hoc6KiovAZiBi5HV", @@ -1041,7 +1082,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1150,7 +1196,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SNT0JNVSngUTsj4m.Hoc6KiovAZiBi5HV" }, { "_id": "NhYVY7hHFu2YsFpN", @@ -1163,7 +1210,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1242,7 +1294,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SNT0JNVSngUTsj4m.NhYVY7hHFu2YsFpN" }, { "_id": "834XVlRwHOXkE2rK", @@ -1255,7 +1308,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1339,7 +1397,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SNT0JNVSngUTsj4m.834XVlRwHOXkE2rK" }, { "_id": "rwLwUWCVufdiKDaK", @@ -1352,7 +1411,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1461,7 +1525,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SNT0JNVSngUTsj4m.rwLwUWCVufdiKDaK" }, { "_id": "qUJb6VyY5ITDA0TL", @@ -1474,7 +1539,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1578,7 +1648,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SNT0JNVSngUTsj4m.qUJb6VyY5ITDA0TL" }, { "_id": "ZF7ixqLMH0gc0qlL", @@ -1591,7 +1662,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1700,7 +1776,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SNT0JNVSngUTsj4m.ZF7ixqLMH0gc0qlL" }, { "_id": "IzwKf1Ux0tSzK1F7", @@ -1713,7 +1790,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1792,7 +1874,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SNT0JNVSngUTsj4m.IzwKf1Ux0tSzK1F7" } ], "effects": [], @@ -1809,5 +1892,6 @@ "createdTime": 1661787232831, "modifiedTime": 1672596099981, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!SNT0JNVSngUTsj4m" } diff --git a/packs/src/monsters/dragon/ancient-brass-dragon.json b/packs/src/monsters/dragon/ancient-brass-dragon.json index e4e2a0ecfa..c8f23a8d8a 100644 --- a/packs/src/monsters/dragon/ancient-brass-dragon.json +++ b/packs/src/monsters/dragon/ancient-brass-dragon.json @@ -110,7 +110,12 @@ "environment": "Desert", "cr": 20, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "grg", @@ -455,7 +460,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -534,7 +544,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pAuiNDr7nvpsW9nG.pv497s1HuExllRI0" }, { "_id": "IiNKOgZ3djF0mBXR", @@ -547,7 +558,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -626,7 +642,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pAuiNDr7nvpsW9nG.IiNKOgZ3djF0mBXR" }, { "_id": "M8QrGIl4ESY4kh6A", @@ -639,7 +656,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -752,7 +774,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pAuiNDr7nvpsW9nG.M8QrGIl4ESY4kh6A" }, { "_id": "Iy1UXphRvuXgybrn", @@ -765,7 +788,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -874,7 +902,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pAuiNDr7nvpsW9nG.Iy1UXphRvuXgybrn" }, { "_id": "yJGmBczsD2hSQuzI", @@ -887,7 +916,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -966,7 +1000,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pAuiNDr7nvpsW9nG.yJGmBczsD2hSQuzI" }, { "_id": "JjvNpMw6JP0A33yu", @@ -979,7 +1014,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1088,7 +1128,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pAuiNDr7nvpsW9nG.JjvNpMw6JP0A33yu" }, { "_id": "qmdYJXoLm52JeDEN", @@ -1101,7 +1142,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1180,7 +1226,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pAuiNDr7nvpsW9nG.qmdYJXoLm52JeDEN" }, { "_id": "zM7nlV0WXlCeZj01", @@ -1193,7 +1240,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1277,7 +1329,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pAuiNDr7nvpsW9nG.zM7nlV0WXlCeZj01" }, { "_id": "n1nya8bJgMqzsyfz", @@ -1290,7 +1343,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1369,7 +1427,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pAuiNDr7nvpsW9nG.n1nya8bJgMqzsyfz" }, { "_id": "ffeBuEAJL0Kk0RRk", @@ -1382,7 +1441,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1461,7 +1525,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pAuiNDr7nvpsW9nG.ffeBuEAJL0Kk0RRk" }, { "_id": "BgJf6V68k1OQMyWH", @@ -1474,7 +1539,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1553,7 +1623,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pAuiNDr7nvpsW9nG.BgJf6V68k1OQMyWH" }, { "_id": "FWLpSMrjPPegkAxX", @@ -1566,7 +1637,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1641,7 +1717,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pAuiNDr7nvpsW9nG.FWLpSMrjPPegkAxX" }, { "_id": "Ru7kWvjTE3H4Qbrh", @@ -1654,7 +1731,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1758,7 +1840,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pAuiNDr7nvpsW9nG.Ru7kWvjTE3H4Qbrh" }, { "_id": "NgeJhGPvdvOyx7OI", @@ -1771,7 +1854,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1880,7 +1968,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pAuiNDr7nvpsW9nG.NgeJhGPvdvOyx7OI" }, { "_id": "OY4mIiqSBDwjHjdj", @@ -1893,7 +1982,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1972,7 +2066,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pAuiNDr7nvpsW9nG.OY4mIiqSBDwjHjdj" }, { "_id": "rV06CSnbJVNfLnyr", @@ -1985,7 +2080,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -2064,7 +2164,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pAuiNDr7nvpsW9nG.rV06CSnbJVNfLnyr" } ], "effects": [], @@ -2081,5 +2182,6 @@ "createdTime": 1661787233176, "modifiedTime": 1672596106772, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!pAuiNDr7nvpsW9nG" } diff --git a/packs/src/monsters/dragon/ancient-bronze-dragon.json b/packs/src/monsters/dragon/ancient-bronze-dragon.json index d2fea0fad1..4ab4981439 100644 --- a/packs/src/monsters/dragon/ancient-bronze-dragon.json +++ b/packs/src/monsters/dragon/ancient-bronze-dragon.json @@ -110,7 +110,12 @@ "environment": "Coastal", "cr": 22, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "grg", @@ -455,7 +460,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -534,7 +544,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!35Y64PEFFdvQS0ra.8ATtkPLmg7NooADy" }, { "_id": "lxwKTlmSXPr3wkUF", @@ -547,7 +558,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -626,7 +642,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!35Y64PEFFdvQS0ra.lxwKTlmSXPr3wkUF" }, { "_id": "J1T00n4aCL5ybwJS", @@ -639,7 +656,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -718,7 +740,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!35Y64PEFFdvQS0ra.J1T00n4aCL5ybwJS" }, { "_id": "17bKqeydGVM0tR6p", @@ -731,7 +754,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -844,7 +872,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!35Y64PEFFdvQS0ra.17bKqeydGVM0tR6p" }, { "_id": "qd5qScYvDjNbDERs", @@ -857,7 +886,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -966,7 +1000,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!35Y64PEFFdvQS0ra.qd5qScYvDjNbDERs" }, { "_id": "Vu2UkFmxzWB17KtN", @@ -979,7 +1014,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1088,7 +1128,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!35Y64PEFFdvQS0ra.Vu2UkFmxzWB17KtN" }, { "_id": "QUlBJuNL7JOevT7b", @@ -1101,7 +1142,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1180,7 +1226,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!35Y64PEFFdvQS0ra.QUlBJuNL7JOevT7b" }, { "_id": "oVxtfa5RF6ibpTIt", @@ -1193,7 +1240,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1272,7 +1324,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!35Y64PEFFdvQS0ra.oVxtfa5RF6ibpTIt" }, { "_id": "X15z14jf8Wmtjz2i", @@ -1285,7 +1338,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1369,7 +1427,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!35Y64PEFFdvQS0ra.X15z14jf8Wmtjz2i" }, { "_id": "e2kQ63WuGtictHXG", @@ -1382,7 +1441,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1461,7 +1525,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!35Y64PEFFdvQS0ra.e2kQ63WuGtictHXG" }, { "_id": "YNplj2D0sAC6OT7z", @@ -1474,7 +1539,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1553,7 +1623,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!35Y64PEFFdvQS0ra.YNplj2D0sAC6OT7z" }, { "_id": "LxYk4BFUh3Qo9b9U", @@ -1566,7 +1637,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1645,7 +1721,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!35Y64PEFFdvQS0ra.LxYk4BFUh3Qo9b9U" }, { "_id": "KgtmSzFoi9FmWEvj", @@ -1658,7 +1735,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1762,7 +1844,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!35Y64PEFFdvQS0ra.KgtmSzFoi9FmWEvj" }, { "_id": "lUgfHIerFG9DvYSB", @@ -1775,7 +1858,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1884,7 +1972,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!35Y64PEFFdvQS0ra.lUgfHIerFG9DvYSB" }, { "_id": "b7ej3RkphhDGh617", @@ -1897,7 +1986,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1972,7 +2066,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!35Y64PEFFdvQS0ra.b7ej3RkphhDGh617" }, { "_id": "uVSCMztRY9x8FkWs", @@ -1985,7 +2080,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -2064,7 +2164,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!35Y64PEFFdvQS0ra.uVSCMztRY9x8FkWs" } ], "effects": [], @@ -2081,5 +2182,6 @@ "createdTime": 1661787232565, "modifiedTime": 1672596091491, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!35Y64PEFFdvQS0ra" } diff --git a/packs/src/monsters/dragon/ancient-copper-dragon.json b/packs/src/monsters/dragon/ancient-copper-dragon.json index e70870d592..6539909663 100644 --- a/packs/src/monsters/dragon/ancient-copper-dragon.json +++ b/packs/src/monsters/dragon/ancient-copper-dragon.json @@ -110,7 +110,12 @@ "environment": "Hill", "cr": 21, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "grg", @@ -455,7 +460,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -534,7 +544,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!u0FWdplSOMTXGnN1.1sKXBcJq4vo5LyOB" }, { "_id": "ztuakGSKlE6QF2MC", @@ -547,7 +558,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -626,7 +642,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!u0FWdplSOMTXGnN1.ztuakGSKlE6QF2MC" }, { "_id": "hGGrGcyo6L62I2rM", @@ -639,7 +656,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -718,7 +740,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!u0FWdplSOMTXGnN1.hGGrGcyo6L62I2rM" }, { "_id": "CXPSEbsRqSkZnER8", @@ -731,7 +754,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -810,7 +838,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!u0FWdplSOMTXGnN1.CXPSEbsRqSkZnER8" }, { "_id": "eCpXCLFLV7W22orV", @@ -823,7 +852,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -936,7 +970,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!u0FWdplSOMTXGnN1.eCpXCLFLV7W22orV" }, { "_id": "lsey8RJZiuByt97z", @@ -949,7 +984,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1058,7 +1098,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!u0FWdplSOMTXGnN1.lsey8RJZiuByt97z" }, { "_id": "SvpSnbfGzHw6dW0p", @@ -1071,7 +1112,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1180,7 +1226,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!u0FWdplSOMTXGnN1.SvpSnbfGzHw6dW0p" }, { "_id": "YkCurZ53A7ciRit3", @@ -1193,7 +1240,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1272,7 +1324,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!u0FWdplSOMTXGnN1.YkCurZ53A7ciRit3" }, { "_id": "gkVpkxWRXjzllWOH", @@ -1285,7 +1338,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1364,7 +1422,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!u0FWdplSOMTXGnN1.gkVpkxWRXjzllWOH" }, { "_id": "8GXBUXkbu1e62ZDK", @@ -1377,7 +1436,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1456,7 +1520,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!u0FWdplSOMTXGnN1.8GXBUXkbu1e62ZDK" }, { "_id": "O2pIuhKov4RccvzH", @@ -1469,7 +1534,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1544,7 +1614,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!u0FWdplSOMTXGnN1.O2pIuhKov4RccvzH" }, { "_id": "oSQ8xmkOOeRaSlFz", @@ -1557,7 +1628,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1661,7 +1737,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!u0FWdplSOMTXGnN1.oSQ8xmkOOeRaSlFz" }, { "_id": "sacY5ISgjFZCSNUi", @@ -1674,7 +1751,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1783,7 +1865,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!u0FWdplSOMTXGnN1.sacY5ISgjFZCSNUi" }, { "_id": "TXjalusRqJTJKFCq", @@ -1796,7 +1879,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1875,7 +1963,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!u0FWdplSOMTXGnN1.TXjalusRqJTJKFCq" }, { "_id": "gWVU1Bt1WhK9lLEf", @@ -1888,7 +1977,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1972,7 +2066,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!u0FWdplSOMTXGnN1.gWVU1Bt1WhK9lLEf" }, { "_id": "B8O16TZ5LWWKc4a4", @@ -1985,7 +2080,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2064,7 +2164,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!u0FWdplSOMTXGnN1.B8O16TZ5LWWKc4a4" } ], "effects": [], @@ -2081,5 +2182,6 @@ "createdTime": 1661787233228, "modifiedTime": 1672596108451, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!u0FWdplSOMTXGnN1" } diff --git a/packs/src/monsters/dragon/ancient-gold-dragon.json b/packs/src/monsters/dragon/ancient-gold-dragon.json index 1d9bf042fb..6ba33b4c17 100644 --- a/packs/src/monsters/dragon/ancient-gold-dragon.json +++ b/packs/src/monsters/dragon/ancient-gold-dragon.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 24, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "grg", @@ -455,7 +460,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -534,7 +544,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ckOF3vQrnjFnZIDU.iwb9D2aGX9fy818q" }, { "_id": "xe5ziibjDPuvqO20", @@ -547,7 +558,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -626,7 +642,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ckOF3vQrnjFnZIDU.xe5ziibjDPuvqO20" }, { "_id": "1k9ihUu6sedelfkA", @@ -639,7 +656,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -718,7 +740,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ckOF3vQrnjFnZIDU.1k9ihUu6sedelfkA" }, { "_id": "SG0kdaxjbJFUtdrJ", @@ -731,7 +754,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -810,7 +838,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ckOF3vQrnjFnZIDU.SG0kdaxjbJFUtdrJ" }, { "_id": "GlvW2Ae0hvh1zCOV", @@ -823,7 +852,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -902,7 +936,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ckOF3vQrnjFnZIDU.GlvW2Ae0hvh1zCOV" }, { "_id": "BFbR0db4At8TQY91", @@ -915,7 +950,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1028,7 +1068,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ckOF3vQrnjFnZIDU.BFbR0db4At8TQY91" }, { "_id": "iqduxJQPzhHPTJp2", @@ -1041,7 +1082,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1150,7 +1196,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ckOF3vQrnjFnZIDU.iqduxJQPzhHPTJp2" }, { "_id": "5dpAWzBBJmkzgvGY", @@ -1163,7 +1210,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1272,7 +1324,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ckOF3vQrnjFnZIDU.5dpAWzBBJmkzgvGY" }, { "_id": "ncKFI8v5vPO7kOFi", @@ -1285,7 +1338,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1364,7 +1422,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ckOF3vQrnjFnZIDU.ncKFI8v5vPO7kOFi" }, { "_id": "j2nbvKIkKdNI32hU", @@ -1377,7 +1436,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1456,7 +1520,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ckOF3vQrnjFnZIDU.j2nbvKIkKdNI32hU" }, { "_id": "zeRGidXXHkyRaA0g", @@ -1469,7 +1534,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1553,7 +1623,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ckOF3vQrnjFnZIDU.zeRGidXXHkyRaA0g" }, { "_id": "aOiuiILBGXCAei63", @@ -1566,7 +1637,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1645,7 +1721,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ckOF3vQrnjFnZIDU.aOiuiILBGXCAei63" }, { "_id": "XRmYEohSc8WQkWYT", @@ -1658,7 +1735,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1737,7 +1819,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ckOF3vQrnjFnZIDU.XRmYEohSc8WQkWYT" }, { "_id": "MEN285wvE8ocd3E3", @@ -1750,7 +1833,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1825,7 +1913,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ckOF3vQrnjFnZIDU.MEN285wvE8ocd3E3" }, { "_id": "eIY2gDYaffnDNdh3", @@ -1838,7 +1927,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1942,7 +2036,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ckOF3vQrnjFnZIDU.eIY2gDYaffnDNdh3" }, { "_id": "GZdNj6f2SdN1fr4A", @@ -1955,7 +2050,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -2064,7 +2164,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ckOF3vQrnjFnZIDU.GZdNj6f2SdN1fr4A" }, { "_id": "1KAScMfU0fdHhR2g", @@ -2077,7 +2178,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2156,7 +2262,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ckOF3vQrnjFnZIDU.1KAScMfU0fdHhR2g" } ], "effects": [], @@ -2173,5 +2280,6 @@ "createdTime": 1661787232934, "modifiedTime": 1672596102711, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!ckOF3vQrnjFnZIDU" } diff --git a/packs/src/monsters/dragon/ancient-green-dragon.json b/packs/src/monsters/dragon/ancient-green-dragon.json index 7962233029..1433d4422f 100644 --- a/packs/src/monsters/dragon/ancient-green-dragon.json +++ b/packs/src/monsters/dragon/ancient-green-dragon.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 22, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "grg", @@ -457,7 +462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -536,7 +546,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zjqjcRWKDMc59Tnx.AyIhVI6Kj5ONGc6I" }, { "_id": "hu8nutF4VrQWCe3U", @@ -549,7 +560,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": 1, @@ -628,7 +644,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zjqjcRWKDMc59Tnx.hu8nutF4VrQWCe3U" }, { "_id": "lQLxY76Q2g6iB9UT", @@ -641,7 +658,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -720,7 +742,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zjqjcRWKDMc59Tnx.lQLxY76Q2g6iB9UT" }, { "_id": "qq17e5u6Bey1aHqo", @@ -733,7 +756,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -850,7 +878,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zjqjcRWKDMc59Tnx.qq17e5u6Bey1aHqo" }, { "_id": "Ja5vvhGRJnCi9YGT", @@ -863,7 +892,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -972,7 +1006,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zjqjcRWKDMc59Tnx.Ja5vvhGRJnCi9YGT" }, { "_id": "X1d4jzEXKYOuvEjT", @@ -985,7 +1020,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1094,7 +1134,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zjqjcRWKDMc59Tnx.X1d4jzEXKYOuvEjT" }, { "_id": "kZAndihX3RcDqN5P", @@ -1107,7 +1148,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1186,7 +1232,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zjqjcRWKDMc59Tnx.kZAndihX3RcDqN5P" }, { "_id": "4Ntr5H946Prr6gC0", @@ -1199,7 +1246,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1283,7 +1335,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zjqjcRWKDMc59Tnx.4Ntr5H946Prr6gC0" }, { "_id": "6y5ZnqreJDNfNzBm", @@ -1296,7 +1349,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1375,7 +1433,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zjqjcRWKDMc59Tnx.6y5ZnqreJDNfNzBm" }, { "_id": "JYKvD7WqfnM7mgru", @@ -1388,7 +1447,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1463,7 +1527,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zjqjcRWKDMc59Tnx.JYKvD7WqfnM7mgru" }, { "_id": "bsXRf7yffdCDv9xp", @@ -1476,7 +1541,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1580,7 +1650,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zjqjcRWKDMc59Tnx.bsXRf7yffdCDv9xp" }, { "_id": "X7cYMwpdqWU6j4kt", @@ -1593,7 +1664,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1702,7 +1778,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zjqjcRWKDMc59Tnx.X7cYMwpdqWU6j4kt" }, { "_id": "rjVthf9YEA81XZjL", @@ -1715,7 +1792,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1794,7 +1876,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zjqjcRWKDMc59Tnx.rjVthf9YEA81XZjL" }, { "_id": "OoVAWU2oGYfbBuiv", @@ -1807,7 +1890,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1886,7 +1974,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zjqjcRWKDMc59Tnx.OoVAWU2oGYfbBuiv" } ], "effects": [], @@ -1903,5 +1992,6 @@ "createdTime": 1661787233263, "modifiedTime": 1672596109541, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!zjqjcRWKDMc59Tnx" } diff --git a/packs/src/monsters/dragon/ancient-red-dragon.json b/packs/src/monsters/dragon/ancient-red-dragon.json index f70fa0a126..ab5bb15d1a 100644 --- a/packs/src/monsters/dragon/ancient-red-dragon.json +++ b/packs/src/monsters/dragon/ancient-red-dragon.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 24, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "grg", @@ -455,7 +460,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -572,7 +582,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!vFeFRlF2FOgf2HIL.nOBAY4ulYbWMc8Pz" }, { "_id": "AheA06jKecElYrVt", @@ -585,7 +596,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -694,7 +710,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!vFeFRlF2FOgf2HIL.AheA06jKecElYrVt" }, { "_id": "EjnCigBWyq30VL4S", @@ -707,7 +724,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -816,7 +838,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!vFeFRlF2FOgf2HIL.EjnCigBWyq30VL4S" }, { "_id": "LQKBexRS91dTMEKa", @@ -829,7 +852,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -908,7 +936,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!vFeFRlF2FOgf2HIL.LQKBexRS91dTMEKa" }, { "_id": "wUEVmK5TEnYsMuwJ", @@ -921,7 +950,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1005,7 +1039,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!vFeFRlF2FOgf2HIL.wUEVmK5TEnYsMuwJ" }, { "_id": "CGGqslZMTHbSwRwP", @@ -1018,7 +1053,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -1097,7 +1137,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!vFeFRlF2FOgf2HIL.CGGqslZMTHbSwRwP" }, { "_id": "Whn4pPAB1YSnvocN", @@ -1110,7 +1151,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1189,7 +1235,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!vFeFRlF2FOgf2HIL.Whn4pPAB1YSnvocN" }, { "_id": "diR3Lju2cmIwIOyG", @@ -1202,7 +1249,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1281,7 +1333,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!vFeFRlF2FOgf2HIL.diR3Lju2cmIwIOyG" }, { "_id": "rOXIh3YF5Aiu8aVC", @@ -1294,7 +1347,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1398,7 +1456,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!vFeFRlF2FOgf2HIL.rOXIh3YF5Aiu8aVC" }, { "_id": "0fheJO7kmH1UV99g", @@ -1411,7 +1470,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1520,7 +1584,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!vFeFRlF2FOgf2HIL.0fheJO7kmH1UV99g" }, { "_id": "7WxDZHowVjqC4DfC", @@ -1533,7 +1598,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1608,7 +1678,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!vFeFRlF2FOgf2HIL.7WxDZHowVjqC4DfC" }, { "_id": "H2ocal2ApylIiTPs", @@ -1621,7 +1692,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1700,7 +1776,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!vFeFRlF2FOgf2HIL.H2ocal2ApylIiTPs" }, { "_id": "CKhSReu2mqp91FfW", @@ -1713,7 +1790,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1792,7 +1874,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!vFeFRlF2FOgf2HIL.CKhSReu2mqp91FfW" } ], "effects": [], @@ -1809,5 +1892,6 @@ "createdTime": 1661787233235, "modifiedTime": 1672596108681, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!vFeFRlF2FOgf2HIL" } diff --git a/packs/src/monsters/dragon/ancient-silver-dragon.json b/packs/src/monsters/dragon/ancient-silver-dragon.json index a02aca3c3f..bbd1925253 100644 --- a/packs/src/monsters/dragon/ancient-silver-dragon.json +++ b/packs/src/monsters/dragon/ancient-silver-dragon.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 23, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "grg", @@ -455,7 +460,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -534,7 +544,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gf9QbHdMAfvFtxcv.gcXX5P25Hed1CHt2" }, { "_id": "shoHSForHM2cwBtd", @@ -547,7 +558,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -626,7 +642,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gf9QbHdMAfvFtxcv.shoHSForHM2cwBtd" }, { "_id": "YCbR7M5CKKCFWLvk", @@ -639,7 +656,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -752,7 +774,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gf9QbHdMAfvFtxcv.YCbR7M5CKKCFWLvk" }, { "_id": "YHoeJdvSJaT3qblq", @@ -765,7 +788,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -874,7 +902,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gf9QbHdMAfvFtxcv.YHoeJdvSJaT3qblq" }, { "_id": "VlNQwm636T7qIEoQ", @@ -887,7 +916,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -996,7 +1030,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gf9QbHdMAfvFtxcv.VlNQwm636T7qIEoQ" }, { "_id": "ohWgcdw603aWWXum", @@ -1009,7 +1044,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1088,7 +1128,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gf9QbHdMAfvFtxcv.ohWgcdw603aWWXum" }, { "_id": "oL7vyWwH6bvXyl95", @@ -1101,7 +1142,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1180,7 +1226,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gf9QbHdMAfvFtxcv.oL7vyWwH6bvXyl95" }, { "_id": "p6laYHKsnkMnfwtu", @@ -1193,7 +1240,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1277,7 +1329,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gf9QbHdMAfvFtxcv.p6laYHKsnkMnfwtu" }, { "_id": "TbcUwDfwFSYvMmwp", @@ -1290,7 +1343,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1369,7 +1427,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gf9QbHdMAfvFtxcv.TbcUwDfwFSYvMmwp" }, { "_id": "nnMmiUPuJEyViPaq", @@ -1382,7 +1441,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1461,7 +1525,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gf9QbHdMAfvFtxcv.nnMmiUPuJEyViPaq" }, { "_id": "yAVNzttgGO1cHIlQ", @@ -1474,7 +1539,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1553,7 +1623,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gf9QbHdMAfvFtxcv.yAVNzttgGO1cHIlQ" }, { "_id": "tg4h1Ht7X4YmDTd9", @@ -1566,7 +1637,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1670,7 +1746,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gf9QbHdMAfvFtxcv.tg4h1Ht7X4YmDTd9" }, { "_id": "saU6KEYGTm2SZ3jv", @@ -1683,7 +1760,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1792,7 +1874,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gf9QbHdMAfvFtxcv.saU6KEYGTm2SZ3jv" }, { "_id": "fu7gTjVI9Dk9J8tT", @@ -1805,7 +1888,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1880,7 +1968,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gf9QbHdMAfvFtxcv.fu7gTjVI9Dk9J8tT" }, { "_id": "Pb87W9xoor7xP185", @@ -1893,7 +1982,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1972,7 +2066,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gf9QbHdMAfvFtxcv.Pb87W9xoor7xP185" }, { "_id": "7OzKj0pIQLqNVmmF", @@ -1985,7 +2080,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -2064,7 +2164,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gf9QbHdMAfvFtxcv.7OzKj0pIQLqNVmmF" } ], "effects": [], @@ -2081,5 +2182,6 @@ "createdTime": 1661787232978, "modifiedTime": 1672596103792, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!gf9QbHdMAfvFtxcv" } diff --git a/packs/src/monsters/dragon/ancient-white-dragon.json b/packs/src/monsters/dragon/ancient-white-dragon.json index 52a0fd4d9a..301fc91c3e 100644 --- a/packs/src/monsters/dragon/ancient-white-dragon.json +++ b/packs/src/monsters/dragon/ancient-white-dragon.json @@ -110,7 +110,12 @@ "environment": "Arctic", "cr": 20, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "grg", @@ -455,7 +460,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -572,7 +582,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aTITHYYxthuZBPBn.NB88hf8oRtLwBolX" }, { "_id": "Cz5xqvQ50f5zxuNY", @@ -585,7 +596,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -694,7 +710,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aTITHYYxthuZBPBn.Cz5xqvQ50f5zxuNY" }, { "_id": "VtIk8lLDM4Qj3uOl", @@ -707,7 +724,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -791,7 +813,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aTITHYYxthuZBPBn.VtIk8lLDM4Qj3uOl" }, { "_id": "2LAZaoPDRIvnHwtf", @@ -804,7 +827,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -879,7 +907,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aTITHYYxthuZBPBn.2LAZaoPDRIvnHwtf" }, { "_id": "sYtyFXYWqxWT1uUI", @@ -892,7 +921,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -971,7 +1005,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aTITHYYxthuZBPBn.sYtyFXYWqxWT1uUI" }, { "_id": "fgHGU46JtSboc23B", @@ -984,7 +1019,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1063,7 +1103,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aTITHYYxthuZBPBn.fgHGU46JtSboc23B" }, { "_id": "hixTmzxSmaFgXDMy", @@ -1076,7 +1117,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1155,7 +1201,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aTITHYYxthuZBPBn.hixTmzxSmaFgXDMy" }, { "_id": "rtz0KAuj9DeBKT8A", @@ -1168,7 +1215,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1247,7 +1299,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aTITHYYxthuZBPBn.rtz0KAuj9DeBKT8A" }, { "_id": "b8vjJzQ5ha5CqneP", @@ -1260,7 +1313,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -1339,7 +1397,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aTITHYYxthuZBPBn.b8vjJzQ5ha5CqneP" }, { "_id": "UGfL5qnzzi2y2pNj", @@ -1352,7 +1411,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1431,7 +1495,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aTITHYYxthuZBPBn.UGfL5qnzzi2y2pNj" }, { "_id": "Q3Nd59qtQ5rsGs6c", @@ -1444,7 +1509,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1553,7 +1623,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aTITHYYxthuZBPBn.Q3Nd59qtQ5rsGs6c" }, { "_id": "zu4q8DV9mStLmBeN", @@ -1566,7 +1637,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1670,7 +1746,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aTITHYYxthuZBPBn.zu4q8DV9mStLmBeN" }, { "_id": "DQGSNN2zFqmnBy9R", @@ -1683,7 +1760,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1792,7 +1874,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aTITHYYxthuZBPBn.DQGSNN2zFqmnBy9R" }, { "_id": "aHpjkoAnU66iriJW", @@ -1805,7 +1888,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1884,7 +1972,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aTITHYYxthuZBPBn.aHpjkoAnU66iriJW" } ], "effects": [], @@ -1901,5 +1990,6 @@ "createdTime": 1661787232905, "modifiedTime": 1672596101991, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!aTITHYYxthuZBPBn" } diff --git a/packs/src/monsters/dragon/black-dragon-wyrmling.json b/packs/src/monsters/dragon/black-dragon-wyrmling.json index b437ebc082..3eb7ed5c7b 100644 --- a/packs/src/monsters/dragon/black-dragon-wyrmling.json +++ b/packs/src/monsters/dragon/black-dragon-wyrmling.json @@ -110,7 +110,12 @@ "environment": "", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -542,7 +552,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!IZMbiAHqQpzPo0CX.ABS9Om2RejM5wrRF" }, { "_id": "50udgXso5dIQmQfv", @@ -555,7 +566,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -634,7 +650,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!IZMbiAHqQpzPo0CX.50udgXso5dIQmQfv" }, { "_id": "dmLvn6VGNA20rMvC", @@ -647,7 +664,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -764,7 +786,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!IZMbiAHqQpzPo0CX.dmLvn6VGNA20rMvC" } ], "effects": [], @@ -781,5 +804,6 @@ "createdTime": 1661787232730, "modifiedTime": 1672596096280, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!IZMbiAHqQpzPo0CX" } diff --git a/packs/src/monsters/dragon/blue-dragon-wyrmling.json b/packs/src/monsters/dragon/blue-dragon-wyrmling.json index 837453f947..a618ac6215 100644 --- a/packs/src/monsters/dragon/blue-dragon-wyrmling.json +++ b/packs/src/monsters/dragon/blue-dragon-wyrmling.json @@ -110,7 +110,12 @@ "environment": "", "cr": 3, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -575,7 +585,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!najtPRiHLR6buSWe.VkmpLaL0RYt8WrzR" }, { "_id": "7LCUjJcHm3odI9C8", @@ -588,7 +599,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -672,7 +688,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!najtPRiHLR6buSWe.7LCUjJcHm3odI9C8" } ], "effects": [], @@ -689,5 +706,6 @@ "createdTime": 1661787233160, "modifiedTime": 1672596106273, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!najtPRiHLR6buSWe" } diff --git a/packs/src/monsters/dragon/brass-dragon-wyrmling.json b/packs/src/monsters/dragon/brass-dragon-wyrmling.json index f0ccdba643..19a980c0ef 100644 --- a/packs/src/monsters/dragon/brass-dragon-wyrmling.json +++ b/packs/src/monsters/dragon/brass-dragon-wyrmling.json @@ -110,7 +110,12 @@ "environment": "", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -571,7 +581,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!azCbLQt5LAYwTI7U.K4qz0HVrX4JxcUvf" }, { "_id": "JmVLjWM4G6OOQxl4", @@ -584,7 +595,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -663,7 +679,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!azCbLQt5LAYwTI7U.JmVLjWM4G6OOQxl4" }, { "_id": "Z7rjC1RhE8VwXz4Z", @@ -676,7 +693,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -760,7 +782,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!azCbLQt5LAYwTI7U.Z7rjC1RhE8VwXz4Z" }, { "_id": "z0g5kgBSkb9qHd6S", @@ -773,7 +796,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -852,7 +880,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!azCbLQt5LAYwTI7U.z0g5kgBSkb9qHd6S" } ], "effects": [], @@ -869,5 +898,6 @@ "createdTime": 1661787232907, "modifiedTime": 1672596102040, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!azCbLQt5LAYwTI7U" } diff --git a/packs/src/monsters/dragon/bronze-dragon-wyrmling.json b/packs/src/monsters/dragon/bronze-dragon-wyrmling.json index 3d1e24c8b5..e0fc430217 100644 --- a/packs/src/monsters/dragon/bronze-dragon-wyrmling.json +++ b/packs/src/monsters/dragon/bronze-dragon-wyrmling.json @@ -110,7 +110,12 @@ "environment": "", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -537,7 +547,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hY9ptpO5Xl2tfkcj.H2dPYlwoo8MOstEQ" }, { "_id": "Vq0dUbodqBggQAVQ", @@ -550,7 +561,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -663,7 +679,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hY9ptpO5Xl2tfkcj.Vq0dUbodqBggQAVQ" }, { "_id": "Bl0NweDKcGjwVdPu", @@ -676,7 +693,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -755,7 +777,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hY9ptpO5Xl2tfkcj.Bl0NweDKcGjwVdPu" }, { "_id": "QoYyaNGqsz935dS2", @@ -768,7 +791,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -852,7 +880,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hY9ptpO5Xl2tfkcj.QoYyaNGqsz935dS2" }, { "_id": "WT04ZQprU9op6Wny", @@ -865,7 +894,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -944,7 +978,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hY9ptpO5Xl2tfkcj.WT04ZQprU9op6Wny" } ], "effects": [], @@ -961,5 +996,6 @@ "createdTime": 1661787232990, "modifiedTime": 1672596104043, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!hY9ptpO5Xl2tfkcj" } diff --git a/packs/src/monsters/dragon/copper-dragon-wyrmling.json b/packs/src/monsters/dragon/copper-dragon-wyrmling.json index 393a942983..f615abea19 100644 --- a/packs/src/monsters/dragon/copper-dragon-wyrmling.json +++ b/packs/src/monsters/dragon/copper-dragon-wyrmling.json @@ -110,7 +110,12 @@ "environment": "", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -571,7 +581,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!AyvniEKtyroOe83p.BQZkHEsVvkPuGJKq" }, { "_id": "6mcnEM9hUPlfUT9x", @@ -584,7 +595,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -663,7 +679,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!AyvniEKtyroOe83p.6mcnEM9hUPlfUT9x" }, { "_id": "xwWjmumhVKXd0vQM", @@ -676,7 +693,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -760,7 +782,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!AyvniEKtyroOe83p.xwWjmumhVKXd0vQM" }, { "_id": "FNphFmvaLB9QD8Ta", @@ -773,7 +796,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -852,7 +880,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!AyvniEKtyroOe83p.FNphFmvaLB9QD8Ta" } ], "effects": [], @@ -869,5 +898,6 @@ "createdTime": 1661787232654, "modifiedTime": 1672596094176, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!AyvniEKtyroOe83p" } diff --git a/packs/src/monsters/dragon/dragon-turtle.json b/packs/src/monsters/dragon/dragon-turtle.json index bc4926a1ef..c9edb329d6 100644 --- a/packs/src/monsters/dragon/dragon-turtle.json +++ b/packs/src/monsters/dragon/dragon-turtle.json @@ -110,7 +110,12 @@ "environment": "Underwater", "cr": 17, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "grg", @@ -459,7 +464,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -538,7 +548,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ijsfYEDqSuwQXwNN.Pu7Q4aCRVqVqVkeM" }, { "_id": "2m2mkUSBJi2QOZje", @@ -551,7 +562,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -630,7 +646,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ijsfYEDqSuwQXwNN.2m2mkUSBJi2QOZje" }, { "_id": "7QJr0VCtVk2wtZ78", @@ -643,7 +660,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -756,7 +778,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ijsfYEDqSuwQXwNN.7QJr0VCtVk2wtZ78" }, { "_id": "P4joxK4BwyYsPfJv", @@ -769,7 +792,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -878,7 +906,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ijsfYEDqSuwQXwNN.P4joxK4BwyYsPfJv" }, { "_id": "zNDI1LvLKZ9Hi2Ew", @@ -891,7 +920,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1000,7 +1034,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ijsfYEDqSuwQXwNN.zNDI1LvLKZ9Hi2Ew" }, { "_id": "UjT93YD55B87gMqZ", @@ -1013,7 +1048,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1097,7 +1137,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ijsfYEDqSuwQXwNN.UjT93YD55B87gMqZ" } ], "effects": [], @@ -1114,5 +1155,6 @@ "createdTime": 1661787233003, "modifiedTime": 1672596104372, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!ijsfYEDqSuwQXwNN" } diff --git a/packs/src/monsters/dragon/gold-dragon-wyrmling.json b/packs/src/monsters/dragon/gold-dragon-wyrmling.json index ea5ac0567c..ccdbd64b03 100644 --- a/packs/src/monsters/dragon/gold-dragon-wyrmling.json +++ b/packs/src/monsters/dragon/gold-dragon-wyrmling.json @@ -110,7 +110,12 @@ "environment": "", "cr": 3, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -537,7 +547,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!naSoHU9KbkgeNIwB.hTsrzcY4zYsqqzPf" }, { "_id": "s90OWDANSrZ1ttWp", @@ -550,7 +561,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -663,7 +679,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!naSoHU9KbkgeNIwB.s90OWDANSrZ1ttWp" }, { "_id": "JH4iOMWhpUPZneJN", @@ -676,7 +693,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -755,7 +777,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!naSoHU9KbkgeNIwB.JH4iOMWhpUPZneJN" }, { "_id": "XeFYvc5dR8YNRizI", @@ -768,7 +791,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -852,7 +880,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!naSoHU9KbkgeNIwB.XeFYvc5dR8YNRizI" }, { "_id": "8mLdG3PPJsB8rrI3", @@ -865,7 +894,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -944,7 +978,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!naSoHU9KbkgeNIwB.8mLdG3PPJsB8rrI3" } ], "effects": [], @@ -961,5 +996,6 @@ "createdTime": 1661787233159, "modifiedTime": 1672596106207, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!naSoHU9KbkgeNIwB" } diff --git a/packs/src/monsters/dragon/green-dragon-wyrmling.json b/packs/src/monsters/dragon/green-dragon-wyrmling.json index cb5f7cfab5..1445e40338 100644 --- a/packs/src/monsters/dragon/green-dragon-wyrmling.json +++ b/packs/src/monsters/dragon/green-dragon-wyrmling.json @@ -110,7 +110,12 @@ "environment": "", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -460,7 +465,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -544,7 +554,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KH6ZrUiUOKQCOlRH.pFFlq9KvfXzAxhU8" }, { "_id": "zii9P95YmeE6b4km", @@ -557,7 +568,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -674,7 +690,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KH6ZrUiUOKQCOlRH.zii9P95YmeE6b4km" }, { "_id": "8U6fHYSsBSDhYHpr", @@ -687,7 +704,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -766,7 +788,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KH6ZrUiUOKQCOlRH.8U6fHYSsBSDhYHpr" } ], "effects": [], @@ -783,5 +806,6 @@ "createdTime": 1661787232755, "modifiedTime": 1672596096967, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!KH6ZrUiUOKQCOlRH" } diff --git a/packs/src/monsters/dragon/pseudodragon.json b/packs/src/monsters/dragon/pseudodragon.json index 5f8a5dc9a0..c5e596bfb8 100644 --- a/packs/src/monsters/dragon/pseudodragon.json +++ b/packs/src/monsters/dragon/pseudodragon.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -453,7 +458,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -532,7 +542,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!fkCNtbvPOMd7mipF.heZCHSZEeLLiweK7" }, { "_id": "GAzi14ICaeeOAO8J", @@ -545,7 +556,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -624,7 +640,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!fkCNtbvPOMd7mipF.GAzi14ICaeeOAO8J" }, { "_id": "aIqOpP93mUsy9yD1", @@ -637,7 +654,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -716,7 +738,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!fkCNtbvPOMd7mipF.aIqOpP93mUsy9yD1" }, { "_id": "GJgN3Qy49XCaKmTc", @@ -729,7 +752,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -842,7 +870,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!fkCNtbvPOMd7mipF.GJgN3Qy49XCaKmTc" }, { "_id": "MKFXRWP55I1bVlyD", @@ -855,7 +884,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -964,7 +998,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!fkCNtbvPOMd7mipF.MKFXRWP55I1bVlyD" } ], "effects": [], @@ -981,5 +1016,6 @@ "createdTime": 1661787232958, "modifiedTime": 1672596103242, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!fkCNtbvPOMd7mipF" } diff --git a/packs/src/monsters/dragon/red-dragon-wyrmling.json b/packs/src/monsters/dragon/red-dragon-wyrmling.json index 12c890f389..c6087142af 100644 --- a/packs/src/monsters/dragon/red-dragon-wyrmling.json +++ b/packs/src/monsters/dragon/red-dragon-wyrmling.json @@ -110,7 +110,12 @@ "environment": "", "cr": 4, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -575,7 +585,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zgWkII3VoE4AHCND.iGge3BzjEfpSeaxP" }, { "_id": "KVIjYSLZoYmdFwzS", @@ -588,7 +599,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -672,7 +688,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zgWkII3VoE4AHCND.KVIjYSLZoYmdFwzS" } ], "effects": [], @@ -689,5 +706,6 @@ "createdTime": 1661787233262, "modifiedTime": 1672596109447, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!zgWkII3VoE4AHCND" } diff --git a/packs/src/monsters/dragon/silver-dragon-wyrmling.json b/packs/src/monsters/dragon/silver-dragon-wyrmling.json index 11d818c838..419920e9de 100644 --- a/packs/src/monsters/dragon/silver-dragon-wyrmling.json +++ b/packs/src/monsters/dragon/silver-dragon-wyrmling.json @@ -110,7 +110,12 @@ "environment": "", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -571,7 +581,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!J1QVPd8POvcPaqx4.x7uPzThV97uQxTun" }, { "_id": "W386vxVMsDz3Gr9l", @@ -584,7 +595,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -663,7 +679,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!J1QVPd8POvcPaqx4.W386vxVMsDz3Gr9l" }, { "_id": "DRZQX4YLhabLlxIR", @@ -676,7 +693,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -760,7 +782,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!J1QVPd8POvcPaqx4.DRZQX4YLhabLlxIR" }, { "_id": "lq8qwetpVyoHKCyi", @@ -773,7 +796,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -852,7 +880,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!J1QVPd8POvcPaqx4.lq8qwetpVyoHKCyi" } ], "effects": [], @@ -869,5 +898,6 @@ "createdTime": 1661787232737, "modifiedTime": 1672596096455, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!J1QVPd8POvcPaqx4" } diff --git a/packs/src/monsters/dragon/white-dragon-wyrmling.json b/packs/src/monsters/dragon/white-dragon-wyrmling.json index 32e1f50b4f..f47e9a245b 100644 --- a/packs/src/monsters/dragon/white-dragon-wyrmling.json +++ b/packs/src/monsters/dragon/white-dragon-wyrmling.json @@ -110,7 +110,12 @@ "environment": "", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -575,7 +585,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!vc2TAgIuq4yInjbf.5fAK2gZdIiYxLNzK" }, { "_id": "8ZXdgzpI6WytT63w", @@ -588,7 +599,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -672,7 +688,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!vc2TAgIuq4yInjbf.8ZXdgzpI6WytT63w" } ], "effects": [], @@ -689,5 +706,6 @@ "createdTime": 1661787233237, "modifiedTime": 1672596108728, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!vc2TAgIuq4yInjbf" } diff --git a/packs/src/monsters/dragon/wyvern.json b/packs/src/monsters/dragon/wyvern.json index 8a803b9732..bb5f931e06 100644 --- a/packs/src/monsters/dragon/wyvern.json +++ b/packs/src/monsters/dragon/wyvern.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 6, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7198siHjPJf8g0cG.vnO8N4pro9PVOOQn" }, { "_id": "j1LTHxGLXWdnEbwq", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -659,7 +675,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7198siHjPJf8g0cG.j1LTHxGLXWdnEbwq" }, { "_id": "Wa8BU72wRqyBCqkI", @@ -672,7 +689,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -781,7 +803,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7198siHjPJf8g0cG.Wa8BU72wRqyBCqkI" }, { "_id": "HzLuzqlmtBSeSS4Q", @@ -794,7 +817,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -903,7 +931,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7198siHjPJf8g0cG.HzLuzqlmtBSeSS4Q" } ], "effects": [], @@ -920,5 +949,6 @@ "createdTime": 1661787232608, "modifiedTime": 1672596092870, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!7198siHjPJf8g0cG" } diff --git a/packs/src/monsters/dragon/young-black-dragon.json b/packs/src/monsters/dragon/young-black-dragon.json index a98639f435..ee3d11b6d1 100644 --- a/packs/src/monsters/dragon/young-black-dragon.json +++ b/packs/src/monsters/dragon/young-black-dragon.json @@ -110,7 +110,12 @@ "environment": "Swamp", "cr": 7, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -459,7 +464,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -543,7 +553,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bcapsJdIhY5WktpT.963t1Gp9Nsy3UY9D" }, { "_id": "KRrrjifJpxjJ0zKy", @@ -556,7 +567,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -635,7 +651,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bcapsJdIhY5WktpT.KRrrjifJpxjJ0zKy" }, { "_id": "kuTDtAq2QL2Tmr4h", @@ -648,7 +665,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -765,7 +787,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bcapsJdIhY5WktpT.kuTDtAq2QL2Tmr4h" }, { "_id": "gy0FMKec2tea9YI1", @@ -778,7 +801,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -887,7 +915,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bcapsJdIhY5WktpT.gy0FMKec2tea9YI1" }, { "_id": "ApR7vtoU4ec7UulE", @@ -900,7 +929,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -979,7 +1013,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bcapsJdIhY5WktpT.ApR7vtoU4ec7UulE" } ], "effects": [], @@ -996,5 +1031,6 @@ "createdTime": 1661787232910, "modifiedTime": 1672596102136, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!bcapsJdIhY5WktpT" } diff --git a/packs/src/monsters/dragon/young-blue-dragon.json b/packs/src/monsters/dragon/young-blue-dragon.json index d802b651c6..f2ec7c88b6 100644 --- a/packs/src/monsters/dragon/young-blue-dragon.json +++ b/packs/src/monsters/dragon/young-blue-dragon.json @@ -110,7 +110,12 @@ "environment": "Desert", "cr": 9, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -459,7 +464,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -576,7 +586,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!mNijwXPMhwR7yYfc.42AGHJQzJZfUYxF9" }, { "_id": "YSVencwrBzRdfm62", @@ -589,7 +600,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -698,7 +714,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!mNijwXPMhwR7yYfc.YSVencwrBzRdfm62" }, { "_id": "7XDStiwr5cRAODjk", @@ -711,7 +728,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -795,7 +817,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!mNijwXPMhwR7yYfc.7XDStiwr5cRAODjk" }, { "_id": "dGVHjuCt6WhGx0sX", @@ -808,7 +831,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -887,7 +915,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!mNijwXPMhwR7yYfc.dGVHjuCt6WhGx0sX" } ], "effects": [], @@ -904,5 +933,6 @@ "createdTime": 1661787233143, "modifiedTime": 1672596105641, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!mNijwXPMhwR7yYfc" } diff --git a/packs/src/monsters/dragon/young-brass-dragon.json b/packs/src/monsters/dragon/young-brass-dragon.json index 08fa4ab561..e452cb98ec 100644 --- a/packs/src/monsters/dragon/young-brass-dragon.json +++ b/packs/src/monsters/dragon/young-brass-dragon.json @@ -110,7 +110,12 @@ "environment": "Desert", "cr": 6, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -459,7 +464,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -572,7 +582,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!FzvZ6xl3U9GoL9ju.dYJy66Ftt58qpTUi" }, { "_id": "h8ocFdixa3iZVj0m", @@ -585,7 +596,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -664,7 +680,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!FzvZ6xl3U9GoL9ju.h8ocFdixa3iZVj0m" }, { "_id": "oXGdDIdmBZe6g4Uo", @@ -677,7 +694,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -761,7 +783,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!FzvZ6xl3U9GoL9ju.oXGdDIdmBZe6g4Uo" }, { "_id": "JPo2TKHFQ4pJKZqr", @@ -774,7 +797,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -853,7 +881,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!FzvZ6xl3U9GoL9ju.JPo2TKHFQ4pJKZqr" }, { "_id": "YHom7FFObzrKEBLQ", @@ -866,7 +895,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -975,7 +1009,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!FzvZ6xl3U9GoL9ju.YHom7FFObzrKEBLQ" }, { "_id": "oyNvUJRyGRVF22t8", @@ -988,7 +1023,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1067,7 +1107,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!FzvZ6xl3U9GoL9ju.oyNvUJRyGRVF22t8" } ], "effects": [], @@ -1084,5 +1125,6 @@ "createdTime": 1661787232709, "modifiedTime": 1672596095622, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!FzvZ6xl3U9GoL9ju" } diff --git a/packs/src/monsters/dragon/young-bronze-dragon.json b/packs/src/monsters/dragon/young-bronze-dragon.json index ceb1b24661..979c7a81d0 100644 --- a/packs/src/monsters/dragon/young-bronze-dragon.json +++ b/packs/src/monsters/dragon/young-bronze-dragon.json @@ -110,7 +110,12 @@ "environment": "Coastal", "cr": 8, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -459,7 +464,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -538,7 +548,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!NmQLj0zv4FmfuSan.E7PndURmnBqGibjl" }, { "_id": "22lf3TLPObmD4s6h", @@ -551,7 +562,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -664,7 +680,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!NmQLj0zv4FmfuSan.22lf3TLPObmD4s6h" }, { "_id": "LMfwpBb1Pg7CLItO", @@ -677,7 +694,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -756,7 +778,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!NmQLj0zv4FmfuSan.LMfwpBb1Pg7CLItO" }, { "_id": "Eahi8ih9q0jF1XW2", @@ -769,7 +792,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -853,7 +881,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!NmQLj0zv4FmfuSan.Eahi8ih9q0jF1XW2" }, { "_id": "h48EplFcKFZxJWjO", @@ -866,7 +895,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -945,7 +979,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!NmQLj0zv4FmfuSan.h48EplFcKFZxJWjO" }, { "_id": "LGFPSpA0pvVpj3cF", @@ -958,7 +993,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1067,7 +1107,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!NmQLj0zv4FmfuSan.LGFPSpA0pvVpj3cF" }, { "_id": "xDjzXK9dbD2EV8hi", @@ -1080,7 +1121,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1159,7 +1205,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!NmQLj0zv4FmfuSan.xDjzXK9dbD2EV8hi" } ], "effects": [], @@ -1176,5 +1223,6 @@ "createdTime": 1661787232791, "modifiedTime": 1672596098812, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!NmQLj0zv4FmfuSan" } diff --git a/packs/src/monsters/dragon/young-copper-dragon.json b/packs/src/monsters/dragon/young-copper-dragon.json index 45949d290f..9e3bd177a5 100644 --- a/packs/src/monsters/dragon/young-copper-dragon.json +++ b/packs/src/monsters/dragon/young-copper-dragon.json @@ -110,7 +110,12 @@ "environment": "Hill", "cr": 7, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -459,7 +464,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -572,7 +582,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qW8cBwg7ghCA4Cw6.Km7rUn5tu44KuVbz" }, { "_id": "DlxAB4bcOmBIn0UG", @@ -585,7 +596,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -694,7 +710,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qW8cBwg7ghCA4Cw6.DlxAB4bcOmBIn0UG" }, { "_id": "eKFnpVBhSSB91leK", @@ -707,7 +724,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -786,7 +808,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qW8cBwg7ghCA4Cw6.eKFnpVBhSSB91leK" }, { "_id": "HHLqWQuhYdWvo1Tj", @@ -799,7 +822,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -883,7 +911,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qW8cBwg7ghCA4Cw6.HHLqWQuhYdWvo1Tj" }, { "_id": "jH7GlNkVX5D2chWY", @@ -896,7 +925,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -975,7 +1009,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qW8cBwg7ghCA4Cw6.jH7GlNkVX5D2chWY" }, { "_id": "kk9fXkx19bCD5Qqv", @@ -988,7 +1023,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1067,7 +1107,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qW8cBwg7ghCA4Cw6.kk9fXkx19bCD5Qqv" } ], "effects": [], @@ -1084,5 +1125,6 @@ "createdTime": 1661787233187, "modifiedTime": 1672596107104, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!qW8cBwg7ghCA4Cw6" } diff --git a/packs/src/monsters/dragon/young-gold-dragon.json b/packs/src/monsters/dragon/young-gold-dragon.json index ff85ecabea..b18c4de1d5 100644 --- a/packs/src/monsters/dragon/young-gold-dragon.json +++ b/packs/src/monsters/dragon/young-gold-dragon.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 10, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -459,7 +464,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -538,7 +548,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!QSytPah5WKoFJ1zt.At4ZIy9ucx4umj5Y" }, { "_id": "IiZoBYBEjE5gGjeD", @@ -551,7 +562,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -664,7 +680,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!QSytPah5WKoFJ1zt.IiZoBYBEjE5gGjeD" }, { "_id": "7lHaAZMjuTYZ6w6J", @@ -677,7 +694,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -756,7 +778,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!QSytPah5WKoFJ1zt.7lHaAZMjuTYZ6w6J" }, { "_id": "qRuJSlOzJITBzcjv", @@ -769,7 +792,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -878,7 +906,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!QSytPah5WKoFJ1zt.qRuJSlOzJITBzcjv" }, { "_id": "VmQbXjALjJwKhT91", @@ -891,7 +920,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -970,7 +1004,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!QSytPah5WKoFJ1zt.VmQbXjALjJwKhT91" }, { "_id": "AedUiopUrkxaTl7S", @@ -983,7 +1018,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1067,7 +1107,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!QSytPah5WKoFJ1zt.AedUiopUrkxaTl7S" }, { "_id": "0D1CWFdQeP5vpXLz", @@ -1080,7 +1121,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1159,7 +1205,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!QSytPah5WKoFJ1zt.0D1CWFdQeP5vpXLz" } ], "effects": [], @@ -1176,5 +1223,6 @@ "createdTime": 1661787232816, "modifiedTime": 1672596099532, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!QSytPah5WKoFJ1zt" } diff --git a/packs/src/monsters/dragon/young-green-dragon.json b/packs/src/monsters/dragon/young-green-dragon.json index 031b9e2ec6..3829bda74b 100644 --- a/packs/src/monsters/dragon/young-green-dragon.json +++ b/packs/src/monsters/dragon/young-green-dragon.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 8, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -461,7 +466,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -540,7 +550,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!85ahD1jEo9B3POaQ.6VIuuNCntP3W9Tki" }, { "_id": "0Ob35HZxhSF7p2ys", @@ -553,7 +564,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -670,7 +686,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!85ahD1jEo9B3POaQ.0Ob35HZxhSF7p2ys" }, { "_id": "WvvHslcDhMq7MD1s", @@ -683,7 +700,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -792,7 +814,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!85ahD1jEo9B3POaQ.WvvHslcDhMq7MD1s" }, { "_id": "Ux1Gv0S29JzRaD27", @@ -805,7 +828,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -884,7 +912,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!85ahD1jEo9B3POaQ.Ux1Gv0S29JzRaD27" }, { "_id": "PIXokIK4tYPwua2G", @@ -897,7 +926,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -981,7 +1015,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!85ahD1jEo9B3POaQ.PIXokIK4tYPwua2G" } ], "effects": [], @@ -998,5 +1033,6 @@ "createdTime": 1661787232619, "modifiedTime": 1672596093178, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!85ahD1jEo9B3POaQ" } diff --git a/packs/src/monsters/dragon/young-red-dragon.json b/packs/src/monsters/dragon/young-red-dragon.json index 585309f701..d1e6b0a02f 100644 --- a/packs/src/monsters/dragon/young-red-dragon.json +++ b/packs/src/monsters/dragon/young-red-dragon.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 10, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -459,7 +464,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -576,7 +586,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qrasJNDC7SGj7xzG.KuuOPjJ1YeTtjGbN" }, { "_id": "3UHmbpT3v3FTlplI", @@ -589,7 +600,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -698,7 +714,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qrasJNDC7SGj7xzG.3UHmbpT3v3FTlplI" }, { "_id": "nWjLJm6ErLvCUvun", @@ -711,7 +728,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -795,7 +817,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qrasJNDC7SGj7xzG.nWjLJm6ErLvCUvun" }, { "_id": "uwDyoGhbCR8NoRmc", @@ -808,7 +831,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -887,7 +915,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qrasJNDC7SGj7xzG.uwDyoGhbCR8NoRmc" } ], "effects": [], @@ -904,5 +933,6 @@ "createdTime": 1661787233197, "modifiedTime": 1672596107445, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!qrasJNDC7SGj7xzG" } diff --git a/packs/src/monsters/dragon/young-silver-dragon.json b/packs/src/monsters/dragon/young-silver-dragon.json index dd747209e4..5f30254a3f 100644 --- a/packs/src/monsters/dragon/young-silver-dragon.json +++ b/packs/src/monsters/dragon/young-silver-dragon.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 9, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -459,7 +464,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -572,7 +582,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!eykRfV85DQJoCkmc.qsfDO6B4wLP1UeKS" }, { "_id": "08bC5Aq3vPzJatVB", @@ -585,7 +596,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -664,7 +680,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!eykRfV85DQJoCkmc.08bC5Aq3vPzJatVB" }, { "_id": "GvAgPChKDJLm64Za", @@ -677,7 +694,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -786,7 +808,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!eykRfV85DQJoCkmc.GvAgPChKDJLm64Za" }, { "_id": "dAoWnethMNHwPNDJ", @@ -799,7 +822,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -878,7 +906,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!eykRfV85DQJoCkmc.dAoWnethMNHwPNDJ" }, { "_id": "vuuyXwshegZEpoSb", @@ -891,7 +920,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -975,7 +1009,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!eykRfV85DQJoCkmc.vuuyXwshegZEpoSb" }, { "_id": "spr7KRotXDVgwIso", @@ -988,7 +1023,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1067,7 +1107,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!eykRfV85DQJoCkmc.spr7KRotXDVgwIso" } ], "effects": [], @@ -1084,5 +1125,6 @@ "createdTime": 1661787232952, "modifiedTime": 1672596103127, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!eykRfV85DQJoCkmc" } diff --git a/packs/src/monsters/dragon/young-white-dragon.json b/packs/src/monsters/dragon/young-white-dragon.json index 52b307d33a..45d103c65f 100644 --- a/packs/src/monsters/dragon/young-white-dragon.json +++ b/packs/src/monsters/dragon/young-white-dragon.json @@ -110,7 +110,12 @@ "environment": "Arctic", "cr": 6, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -459,7 +464,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -576,7 +586,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!u1UQfHutP5eEKkjM.qFfEF7lLt2kH3RbA" }, { "_id": "d9xXEIYNNQjIMGF8", @@ -589,7 +600,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -698,7 +714,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!u1UQfHutP5eEKkjM.d9xXEIYNNQjIMGF8" }, { "_id": "78LbjdfWaZcAqVE7", @@ -711,7 +728,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -795,7 +817,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!u1UQfHutP5eEKkjM.78LbjdfWaZcAqVE7" }, { "_id": "g2nJbBJ06mRtxEy0", @@ -808,7 +831,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -887,7 +915,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!u1UQfHutP5eEKkjM.g2nJbBJ06mRtxEy0" }, { "_id": "lRFwKaRqhFY4xNhJ", @@ -900,7 +929,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -979,7 +1013,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!u1UQfHutP5eEKkjM.lRFwKaRqhFY4xNhJ" } ], "effects": [], @@ -996,5 +1031,6 @@ "createdTime": 1661787233230, "modifiedTime": 1672596108500, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!u1UQfHutP5eEKkjM" } diff --git a/packs/src/monsters/elemental/air-elemental.json b/packs/src/monsters/elemental/air-elemental.json index 3f64b7a504..f27622a160 100644 --- a/packs/src/monsters/elemental/air-elemental.json +++ b/packs/src/monsters/elemental/air-elemental.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -475,7 +480,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -554,7 +564,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!banHjKDMCegbUwYE.8FHVwYBJY7dxIv9D" }, { "_id": "IyR3c30mCbL8VMCo", @@ -567,7 +578,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -646,7 +662,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!banHjKDMCegbUwYE.IyR3c30mCbL8VMCo" }, { "_id": "qzLZFBO75loU77TZ", @@ -659,7 +676,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -768,7 +790,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!banHjKDMCegbUwYE.qzLZFBO75loU77TZ" }, { "_id": "PVdWTEQBuiAglD7l", @@ -781,7 +804,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -865,7 +893,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!banHjKDMCegbUwYE.PVdWTEQBuiAglD7l" } ], "effects": [], @@ -882,5 +911,6 @@ "createdTime": 1661787232909, "modifiedTime": 1672596102082, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!banHjKDMCegbUwYE" } diff --git a/packs/src/monsters/elemental/azer.json b/packs/src/monsters/elemental/azer.json index 37343e0952..f7bf6d2ca9 100644 --- a/packs/src/monsters/elemental/azer.json +++ b/packs/src/monsters/elemental/azer.json @@ -110,7 +110,12 @@ "environment": "", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -461,7 +466,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -560,7 +570,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!IiEDPMWqBlzkggYD.sSs3hSzkKBMNBgTs" }, { "_id": "P0pbiook7Q79UYqQ", @@ -573,7 +584,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -657,7 +673,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!IiEDPMWqBlzkggYD.P0pbiook7Q79UYqQ" }, { "_id": "WRygAnkpMeaqiw70", @@ -670,7 +687,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -749,7 +771,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!IiEDPMWqBlzkggYD.WRygAnkpMeaqiw70" }, { "_id": "oPddwb4BScCEDanp", @@ -762,7 +785,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -841,7 +869,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!IiEDPMWqBlzkggYD.oPddwb4BScCEDanp" }, { "_id": "YvzdCGQeCV1XOcUt", @@ -854,7 +883,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -971,7 +1005,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!IiEDPMWqBlzkggYD.YvzdCGQeCV1XOcUt" } ], "effects": [], @@ -988,5 +1023,6 @@ "createdTime": 1661787232732, "modifiedTime": 1672596096323, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!IiEDPMWqBlzkggYD" } diff --git a/packs/src/monsters/elemental/djinni.json b/packs/src/monsters/elemental/djinni.json index f24586a7ed..d9b7415c37 100644 --- a/packs/src/monsters/elemental/djinni.json +++ b/packs/src/monsters/elemental/djinni.json @@ -110,7 +110,12 @@ "environment": "Coastal", "cr": 11, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -459,7 +464,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -538,7 +548,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5P1VGAZQwOilwZQf.fL3AlIo9kQ591fz5" }, { "_id": "PvddSEYCJ3fSHEOr", @@ -551,7 +562,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -630,7 +646,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5P1VGAZQwOilwZQf.PvddSEYCJ3fSHEOr" }, { "_id": "Q7JcaZkLaYQq4CE5", @@ -643,7 +660,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -722,7 +744,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5P1VGAZQwOilwZQf.Q7JcaZkLaYQq4CE5" }, { "_id": "DGP7lnAJT1cv8SA4", @@ -735,7 +758,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -852,7 +880,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5P1VGAZQwOilwZQf.DGP7lnAJT1cv8SA4" }, { "_id": "nE7YNnVM7srBcdfl", @@ -865,7 +894,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -944,7 +978,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5P1VGAZQwOilwZQf.nE7YNnVM7srBcdfl" }, { "_id": "gr4aC1723KRzCJ5z", @@ -957,7 +992,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -1046,7 +1086,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5P1VGAZQwOilwZQf.gr4aC1723KRzCJ5z" }, { "_id": "Mzh95utKDPIrjiH8", @@ -1061,7 +1102,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1152,7 +1198,8 @@ "createdTime": 1661787234128, "modifiedTime": 1661791116031, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!5P1VGAZQwOilwZQf.Mzh95utKDPIrjiH8" }, { "_id": "ghXTfe7sgCbgf1Q8", @@ -1167,7 +1214,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1258,7 +1310,8 @@ "createdTime": 1661787234192, "modifiedTime": 1661791116031, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!5P1VGAZQwOilwZQf.ghXTfe7sgCbgf1Q8" }, { "_id": "WTbOQBsarsL1LuXJ", @@ -1273,7 +1326,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1369,7 +1427,8 @@ "createdTime": 1661787234152, "modifiedTime": 1661791116033, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!5P1VGAZQwOilwZQf.WTbOQBsarsL1LuXJ" }, { "_id": "BV0mpbHh29IbbIj5", @@ -1384,7 +1443,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1475,7 +1539,8 @@ "createdTime": 1661787234092, "modifiedTime": 1661791116033, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!5P1VGAZQwOilwZQf.BV0mpbHh29IbbIj5" }, { "_id": "gopnZvS0c2jD5FP8", @@ -1490,7 +1555,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1581,7 +1651,8 @@ "createdTime": 1661787234193, "modifiedTime": 1661791116034, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!5P1VGAZQwOilwZQf.gopnZvS0c2jD5FP8" }, { "_id": "8PJAsHmbu6UgDHC0", @@ -1596,7 +1667,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -1687,7 +1763,8 @@ "createdTime": 1661787234079, "modifiedTime": 1661791116035, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!5P1VGAZQwOilwZQf.8PJAsHmbu6UgDHC0" }, { "_id": "lnaGnxMzpYnbw1uU", @@ -1702,7 +1779,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -1793,7 +1875,8 @@ "createdTime": 1661787234217, "modifiedTime": 1661791116037, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!5P1VGAZQwOilwZQf.lnaGnxMzpYnbw1uU" }, { "_id": "2IWiZAJtOGDoKjiz", @@ -1808,7 +1891,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1899,7 +1987,8 @@ "createdTime": 1661787234058, "modifiedTime": 1661791116037, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!5P1VGAZQwOilwZQf.2IWiZAJtOGDoKjiz" }, { "_id": "1N8dDMMgZ1h1YJ3B", @@ -1914,7 +2003,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2005,7 +2099,8 @@ "createdTime": 1661787234056, "modifiedTime": 1661791116038, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!5P1VGAZQwOilwZQf.1N8dDMMgZ1h1YJ3B" }, { "_id": "nslx2nT3p4lNkmdp", @@ -2020,7 +2115,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2111,7 +2211,8 @@ "createdTime": 1661787234222, "modifiedTime": 1661791116040, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!5P1VGAZQwOilwZQf.nslx2nT3p4lNkmdp" }, { "_id": "J6Jpw5XzB5aTeqnz", @@ -2126,7 +2227,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2217,7 +2323,8 @@ "createdTime": 1661787234111, "modifiedTime": 1661791116041, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!5P1VGAZQwOilwZQf.J6Jpw5XzB5aTeqnz" } ], "effects": [], @@ -2234,5 +2341,6 @@ "createdTime": 1661787232589, "modifiedTime": 1672596092302, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!5P1VGAZQwOilwZQf" } diff --git a/packs/src/monsters/elemental/dust-mephit.json b/packs/src/monsters/elemental/dust-mephit.json index 8bd37e5575..cf536dfc08 100644 --- a/packs/src/monsters/elemental/dust-mephit.json +++ b/packs/src/monsters/elemental/dust-mephit.json @@ -110,7 +110,12 @@ "environment": "Desert", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "sm", @@ -463,7 +468,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -542,7 +552,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!BUCfQ7ihaXX75Vai.v3i1DaUS4Bkc8Ser" }, { "_id": "muKb2wMq6khBe1yH", @@ -555,7 +566,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -634,7 +650,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!BUCfQ7ihaXX75Vai.muKb2wMq6khBe1yH" }, { "_id": "lazTMrXNUpGCrKdR", @@ -647,7 +664,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -756,7 +778,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!BUCfQ7ihaXX75Vai.lazTMrXNUpGCrKdR" }, { "_id": "RTpPc5fs27dBqDuj", @@ -769,7 +792,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -848,7 +876,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!BUCfQ7ihaXX75Vai.RTpPc5fs27dBqDuj" }, { "_id": "KhwiSi9fwVfUPtku", @@ -861,7 +890,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -959,7 +993,8 @@ "createdTime": 1661787234117, "modifiedTime": 1661791116287, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!BUCfQ7ihaXX75Vai.KhwiSi9fwVfUPtku" } ], "effects": [], @@ -976,5 +1011,6 @@ "createdTime": 1661787232661, "modifiedTime": 1672596094498, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!BUCfQ7ihaXX75Vai" } diff --git a/packs/src/monsters/elemental/earth-elemental.json b/packs/src/monsters/elemental/earth-elemental.json index 4c0a5f5458..b536bfe200 100644 --- a/packs/src/monsters/elemental/earth-elemental.json +++ b/packs/src/monsters/elemental/earth-elemental.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -472,7 +477,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -551,7 +561,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!sApYLZj9PTZ40wJr.Ctnlm397G5vkwWA4" }, { "_id": "1fGoFeub69Dueemk", @@ -564,7 +575,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -643,7 +659,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!sApYLZj9PTZ40wJr.1fGoFeub69Dueemk" }, { "_id": "A8nxS57cG2yZpu1m", @@ -656,7 +673,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -735,7 +757,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!sApYLZj9PTZ40wJr.A8nxS57cG2yZpu1m" }, { "_id": "2AD5aTLMPDmQFhGZ", @@ -748,7 +771,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -857,7 +885,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!sApYLZj9PTZ40wJr.2AD5aTLMPDmQFhGZ" } ], "effects": [], @@ -874,5 +903,6 @@ "createdTime": 1661787233209, "modifiedTime": 1672596107754, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!sApYLZj9PTZ40wJr" } diff --git a/packs/src/monsters/elemental/efreeti.json b/packs/src/monsters/elemental/efreeti.json index d7f5cc2670..9813544afc 100644 --- a/packs/src/monsters/elemental/efreeti.json +++ b/packs/src/monsters/elemental/efreeti.json @@ -110,7 +110,12 @@ "environment": "Desert", "cr": 11, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -537,7 +547,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!LTomFUTBrkRi0Pj5.Fr77Z90cITQsMV3N" }, { "_id": "gb5HcbKlmYUvLAsk", @@ -550,7 +561,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -629,7 +645,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!LTomFUTBrkRi0Pj5.gb5HcbKlmYUvLAsk" }, { "_id": "gWEMjYhRVIEnKbZH", @@ -642,7 +659,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -735,7 +757,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!LTomFUTBrkRi0Pj5.gWEMjYhRVIEnKbZH" }, { "_id": "2NzoIyouATBfPgdc", @@ -748,7 +771,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -827,7 +855,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!LTomFUTBrkRi0Pj5.2NzoIyouATBfPgdc" }, { "_id": "tR7JGJjIz6H1oerb", @@ -840,7 +869,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -957,7 +991,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!LTomFUTBrkRi0Pj5.tR7JGJjIz6H1oerb" }, { "_id": "9D7vAr8iJbSa4g5N", @@ -970,7 +1005,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1079,7 +1119,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!LTomFUTBrkRi0Pj5.9D7vAr8iJbSa4g5N" }, { "_id": "ghXTfe7sgCbgf1Q8", @@ -1094,7 +1135,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1185,7 +1231,8 @@ "createdTime": 1661787234192, "modifiedTime": 1661791116443, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!LTomFUTBrkRi0Pj5.ghXTfe7sgCbgf1Q8" }, { "_id": "WahI41a3goVUg0x1", @@ -1200,7 +1247,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1291,7 +1343,8 @@ "createdTime": 1661787234153, "modifiedTime": 1661791116444, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!LTomFUTBrkRi0Pj5.WahI41a3goVUg0x1" }, { "_id": "gopnZvS0c2jD5FP8", @@ -1306,7 +1359,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1397,7 +1455,8 @@ "createdTime": 1661787234193, "modifiedTime": 1661791116444, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!LTomFUTBrkRi0Pj5.gopnZvS0c2jD5FP8" }, { "_id": "2IWiZAJtOGDoKjiz", @@ -1412,7 +1471,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1503,7 +1567,8 @@ "createdTime": 1661787234058, "modifiedTime": 1661791116444, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!LTomFUTBrkRi0Pj5.2IWiZAJtOGDoKjiz" }, { "_id": "1N8dDMMgZ1h1YJ3B", @@ -1518,7 +1583,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1609,7 +1679,8 @@ "createdTime": 1661787234056, "modifiedTime": 1661791116444, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!LTomFUTBrkRi0Pj5.1N8dDMMgZ1h1YJ3B" }, { "_id": "nslx2nT3p4lNkmdp", @@ -1624,7 +1695,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1715,7 +1791,8 @@ "createdTime": 1661787234222, "modifiedTime": 1661791116445, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!LTomFUTBrkRi0Pj5.nslx2nT3p4lNkmdp" }, { "_id": "J6Jpw5XzB5aTeqnz", @@ -1730,7 +1807,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1821,7 +1903,8 @@ "createdTime": 1661787234111, "modifiedTime": 1661791116445, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!LTomFUTBrkRi0Pj5.J6Jpw5XzB5aTeqnz" }, { "_id": "X3DrXgxjwI2dvkD6", @@ -1836,7 +1919,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1932,7 +2020,8 @@ "createdTime": 1661787234155, "modifiedTime": 1661791116445, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!LTomFUTBrkRi0Pj5.X3DrXgxjwI2dvkD6" } ], "effects": [], @@ -1949,5 +2038,6 @@ "createdTime": 1661787232769, "modifiedTime": 1672596097471, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!LTomFUTBrkRi0Pj5" } diff --git a/packs/src/monsters/elemental/fire-elemental.json b/packs/src/monsters/elemental/fire-elemental.json index 2f0f69738d..55ab604141 100644 --- a/packs/src/monsters/elemental/fire-elemental.json +++ b/packs/src/monsters/elemental/fire-elemental.json @@ -110,7 +110,12 @@ "environment": "Desert", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -474,7 +479,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "none", "cost": null, @@ -558,7 +568,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8SMQl75HLjhuSeau.yud1cnEVQ9KxbmWc" }, { "_id": "iQt3J3ZnHDoeaEIR", @@ -571,7 +582,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -650,7 +666,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8SMQl75HLjhuSeau.iQt3J3ZnHDoeaEIR" }, { "_id": "AW3qP6nJk45lOHe3", @@ -663,7 +680,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -742,7 +764,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8SMQl75HLjhuSeau.AW3qP6nJk45lOHe3" }, { "_id": "PRiFJLZbvIt2nkTk", @@ -755,7 +778,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -834,7 +862,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8SMQl75HLjhuSeau.PRiFJLZbvIt2nkTk" }, { "_id": "fdt2FIirmBRCpRBm", @@ -847,7 +876,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -956,7 +990,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8SMQl75HLjhuSeau.fdt2FIirmBRCpRBm" } ], "effects": [], @@ -973,5 +1008,6 @@ "createdTime": 1661787232630, "modifiedTime": 1672596093514, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!8SMQl75HLjhuSeau" } diff --git a/packs/src/monsters/elemental/gargoyle.json b/packs/src/monsters/elemental/gargoyle.json index 90a2792a3d..80a83a6279 100644 --- a/packs/src/monsters/elemental/gargoyle.json +++ b/packs/src/monsters/elemental/gargoyle.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -469,7 +474,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -548,7 +558,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!0m8QyDN52qw9zzOM.sXPmgYwYgosoytUu" }, { "_id": "yczO5JpGxAk51Gp8", @@ -561,7 +572,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -640,7 +656,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!0m8QyDN52qw9zzOM.yczO5JpGxAk51Gp8" }, { "_id": "A6GBvah75Y7fGjc5", @@ -653,7 +670,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -766,7 +788,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!0m8QyDN52qw9zzOM.A6GBvah75Y7fGjc5" }, { "_id": "ipJwA0j2zfzmq5GW", @@ -779,7 +802,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -888,7 +916,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!0m8QyDN52qw9zzOM.ipJwA0j2zfzmq5GW" } ], "effects": [], @@ -905,5 +934,6 @@ "createdTime": 1661787232548, "modifiedTime": 1672596090881, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!0m8QyDN52qw9zzOM" } diff --git a/packs/src/monsters/elemental/ice-mephit.json b/packs/src/monsters/elemental/ice-mephit.json index 6ed841e551..6c18d57317 100644 --- a/packs/src/monsters/elemental/ice-mephit.json +++ b/packs/src/monsters/elemental/ice-mephit.json @@ -110,7 +110,12 @@ "environment": "Arctic", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "sm", @@ -465,7 +470,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -549,7 +559,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ESEm3fGUfSKjzVUc.D4cqlN9pDyQwRvWP" }, { "_id": "CG9kMpmgbBE0ePpO", @@ -562,7 +573,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -641,7 +657,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ESEm3fGUfSKjzVUc.CG9kMpmgbBE0ePpO" }, { "_id": "qSKvifcPZvWEyQwS", @@ -654,7 +671,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -733,7 +755,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ESEm3fGUfSKjzVUc.qSKvifcPZvWEyQwS" }, { "_id": "YEZPqZegxKiGO0Gq", @@ -746,7 +769,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -859,7 +887,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ESEm3fGUfSKjzVUc.YEZPqZegxKiGO0Gq" }, { "_id": "1mD9NcCf8ZMQtsrU", @@ -872,7 +901,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -956,7 +990,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ESEm3fGUfSKjzVUc.1mD9NcCf8ZMQtsrU" }, { "_id": "IBJmWjzbQGu7M4UX", @@ -971,7 +1006,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1062,7 +1102,8 @@ "createdTime": 1661787234109, "modifiedTime": 1661791116325, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ESEm3fGUfSKjzVUc.IBJmWjzbQGu7M4UX" } ], "effects": [], @@ -1079,5 +1120,6 @@ "createdTime": 1661787232693, "modifiedTime": 1672596095240, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!ESEm3fGUfSKjzVUc" } diff --git a/packs/src/monsters/elemental/invisible-stalker.json b/packs/src/monsters/elemental/invisible-stalker.json index 5512b244f9..fb73774eb3 100644 --- a/packs/src/monsters/elemental/invisible-stalker.json +++ b/packs/src/monsters/elemental/invisible-stalker.json @@ -110,7 +110,12 @@ "environment": "Urban", "cr": 6, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -473,7 +478,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -552,7 +562,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!oDspGxRQFBhE74L2.VdFnTF9MqUFF7KPQ" }, { "_id": "UR2TYdvh0VZzLKyO", @@ -565,7 +576,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -644,7 +660,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!oDspGxRQFBhE74L2.UR2TYdvh0VZzLKyO" }, { "_id": "bl0mrJpx4dqL9Ub8", @@ -657,7 +674,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -736,7 +758,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!oDspGxRQFBhE74L2.bl0mrJpx4dqL9Ub8" }, { "_id": "rpKiEPQVeOZTLwjf", @@ -749,7 +772,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -858,7 +886,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!oDspGxRQFBhE74L2.rpKiEPQVeOZTLwjf" } ], "effects": [], @@ -875,5 +904,6 @@ "createdTime": 1661787233164, "modifiedTime": 1672596106410, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!oDspGxRQFBhE74L2" } diff --git a/packs/src/monsters/elemental/magma-mephit.json b/packs/src/monsters/elemental/magma-mephit.json index ee081a497f..f2edbc5811 100644 --- a/packs/src/monsters/elemental/magma-mephit.json +++ b/packs/src/monsters/elemental/magma-mephit.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "sm", @@ -460,7 +465,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -539,7 +549,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!oJCOB9X2BPsBkWW5.lAwQmCYEd9CtDdTb" }, { "_id": "LpYrQPxHA10HPnkl", @@ -552,7 +563,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -636,7 +652,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!oJCOB9X2BPsBkWW5.LpYrQPxHA10HPnkl" }, { "_id": "FEdBqpqpIEyjdO2H", @@ -649,7 +666,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -728,7 +750,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!oJCOB9X2BPsBkWW5.FEdBqpqpIEyjdO2H" }, { "_id": "BiAfcjq7C9Wf8R9b", @@ -741,7 +764,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -854,7 +882,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!oJCOB9X2BPsBkWW5.BiAfcjq7C9Wf8R9b" }, { "_id": "iXhbFt7gCj3FBM2r", @@ -867,7 +896,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -951,7 +985,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!oJCOB9X2BPsBkWW5.iXhbFt7gCj3FBM2r" }, { "_id": "2yHXEcrRbadZDr5M", @@ -966,7 +1001,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1062,7 +1102,8 @@ "createdTime": 1661787234061, "modifiedTime": 1661791116872, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!oJCOB9X2BPsBkWW5.2yHXEcrRbadZDr5M" } ], "effects": [], @@ -1079,5 +1120,6 @@ "createdTime": 1661787233166, "modifiedTime": 1672596106455, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!oJCOB9X2BPsBkWW5" } diff --git a/packs/src/monsters/elemental/magmin.json b/packs/src/monsters/elemental/magmin.json index 754603aec5..e604374537 100644 --- a/packs/src/monsters/elemental/magmin.json +++ b/packs/src/monsters/elemental/magmin.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "sm", @@ -460,7 +465,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -544,7 +554,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8MD1vRBTcgSXXk3u.0xdLfPJEHYwh8MIT" }, { "_id": "rlA41r2MlaqmVjvf", @@ -557,7 +568,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -636,7 +652,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8MD1vRBTcgSXXk3u.rlA41r2MlaqmVjvf" }, { "_id": "th3hfRWQ3PT9f3Gs", @@ -649,7 +666,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -758,7 +780,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8MD1vRBTcgSXXk3u.th3hfRWQ3PT9f3Gs" } ], "effects": [], @@ -775,5 +798,6 @@ "createdTime": 1661787232626, "modifiedTime": 1672596093385, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!8MD1vRBTcgSXXk3u" } diff --git a/packs/src/monsters/elemental/salamander.json b/packs/src/monsters/elemental/salamander.json index cd2a32d41c..a9b74ea17a 100644 --- a/packs/src/monsters/elemental/salamander.json +++ b/packs/src/monsters/elemental/salamander.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -466,7 +471,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -550,7 +560,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!yVNPVJIBpQ2Mp3Xa.2n8ByeQNl7QkjNVA" }, { "_id": "2y0o9wGzCVoBBuDZ", @@ -563,7 +574,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -642,7 +658,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!yVNPVJIBpQ2Mp3Xa.2y0o9wGzCVoBBuDZ" }, { "_id": "H9TCRB3zfkFwk192", @@ -655,7 +672,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -734,7 +756,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!yVNPVJIBpQ2Mp3Xa.H9TCRB3zfkFwk192" }, { "_id": "rvRy41yt9zowrAr1", @@ -747,7 +770,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -860,7 +888,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!yVNPVJIBpQ2Mp3Xa.rvRy41yt9zowrAr1" }, { "_id": "SKwOsrThcwqMXCZv", @@ -873,7 +902,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -990,7 +1024,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!yVNPVJIBpQ2Mp3Xa.SKwOsrThcwqMXCZv" } ], "effects": [], @@ -1007,5 +1042,6 @@ "createdTime": 1661787233249, "modifiedTime": 1672596109088, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!yVNPVJIBpQ2Mp3Xa" } diff --git a/packs/src/monsters/elemental/steam-mephit.json b/packs/src/monsters/elemental/steam-mephit.json index ee4cc10c53..2035f05606 100644 --- a/packs/src/monsters/elemental/steam-mephit.json +++ b/packs/src/monsters/elemental/steam-mephit.json @@ -110,7 +110,12 @@ "environment": "Underwater", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "sm", @@ -462,7 +467,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -575,7 +585,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!UthHOT7QfZfEIUue.QrN7UxINx4UCaPIC" }, { "_id": "QWi0q0cSzHEp8VqB", @@ -588,7 +599,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -672,7 +688,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!UthHOT7QfZfEIUue.QWi0q0cSzHEp8VqB" }, { "_id": "AVlovjg4AFAbd6rY", @@ -685,7 +702,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -764,7 +786,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!UthHOT7QfZfEIUue.AVlovjg4AFAbd6rY" }, { "_id": "RnLjEUZ0gBxcH2T3", @@ -777,7 +800,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -861,7 +889,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!UthHOT7QfZfEIUue.RnLjEUZ0gBxcH2T3" }, { "_id": "UDUnlfPsOAbq2RSE", @@ -876,7 +905,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -967,7 +1001,8 @@ "createdTime": 1661787234147, "modifiedTime": 1661791116593, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!UthHOT7QfZfEIUue.UDUnlfPsOAbq2RSE" } ], "effects": [], @@ -984,5 +1019,6 @@ "createdTime": 1661787232856, "modifiedTime": 1672596100584, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!UthHOT7QfZfEIUue" } diff --git a/packs/src/monsters/elemental/water-elemental.json b/packs/src/monsters/elemental/water-elemental.json index 487497ade7..e0148f1c04 100644 --- a/packs/src/monsters/elemental/water-elemental.json +++ b/packs/src/monsters/elemental/water-elemental.json @@ -110,7 +110,12 @@ "environment": "Underwater", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -474,7 +479,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -553,7 +563,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!namJz755U1EhvEJa.sZcc3bwnRjaDV9BZ" }, { "_id": "6AQXZ1FlO8qhnPTR", @@ -566,7 +577,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -645,7 +661,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!namJz755U1EhvEJa.6AQXZ1FlO8qhnPTR" }, { "_id": "9saHudPLoj6va2em", @@ -658,7 +675,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -737,7 +759,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!namJz755U1EhvEJa.9saHudPLoj6va2em" }, { "_id": "7xDGPsWicxgP6feT", @@ -750,7 +773,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -859,7 +887,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!namJz755U1EhvEJa.7xDGPsWicxgP6feT" }, { "_id": "5XUFTldfE6mtRUfd", @@ -872,7 +901,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -956,7 +990,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!namJz755U1EhvEJa.5XUFTldfE6mtRUfd" } ], "effects": [], @@ -973,5 +1008,6 @@ "createdTime": 1661787233161, "modifiedTime": 1672596106320, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!namJz755U1EhvEJa" } diff --git a/packs/src/monsters/elemental/xorn.json b/packs/src/monsters/elemental/xorn.json index 654a7f7955..6ee0bdf28c 100644 --- a/packs/src/monsters/elemental/xorn.json +++ b/packs/src/monsters/elemental/xorn.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -462,7 +467,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -575,7 +585,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!2MZNHeOZweXAYbv1.ODAa1IROPs40MUI2" }, { "_id": "LRjB7lk0aa4TOd16", @@ -588,7 +599,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -697,7 +713,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!2MZNHeOZweXAYbv1.LRjB7lk0aa4TOd16" }, { "_id": "a5CLV8aL4SowIich", @@ -710,7 +727,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -789,7 +811,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!2MZNHeOZweXAYbv1.a5CLV8aL4SowIich" }, { "_id": "kRGZU8eMwOBt3kVd", @@ -802,7 +825,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -881,7 +909,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!2MZNHeOZweXAYbv1.kRGZU8eMwOBt3kVd" }, { "_id": "ryNcNrIgtkYHRKWj", @@ -894,7 +923,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -973,7 +1007,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!2MZNHeOZweXAYbv1.ryNcNrIgtkYHRKWj" }, { "_id": "x6Hd2pSXy7TDwgjR", @@ -986,7 +1021,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1065,7 +1105,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!2MZNHeOZweXAYbv1.x6Hd2pSXy7TDwgjR" } ], "effects": [], @@ -1082,5 +1123,6 @@ "createdTime": 1661787232563, "modifiedTime": 1672596091393, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!2MZNHeOZweXAYbv1" } diff --git a/packs/src/monsters/fey/blink-dog.json b/packs/src/monsters/fey/blink-dog.json index ee06e28f50..9c629b0583 100644 --- a/packs/src/monsters/fey/blink-dog.json +++ b/packs/src/monsters/fey/blink-dog.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!jOANE6M0My6UJF4e.BNRcaqutWC30200X" }, { "_id": "DcZYdK2iycSJzamK", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -655,7 +671,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!jOANE6M0My6UJF4e.DcZYdK2iycSJzamK" }, { "_id": "1IE8rHcJIihDWCda", @@ -668,7 +685,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -747,7 +769,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!jOANE6M0My6UJF4e.1IE8rHcJIihDWCda" } ], "effects": [], @@ -764,5 +787,6 @@ "createdTime": 1661787233009, "modifiedTime": 1672596104564, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!jOANE6M0My6UJF4e" } diff --git a/packs/src/monsters/fey/dryad.json b/packs/src/monsters/fey/dryad.json index f2089753fe..3652ec5be3 100644 --- a/packs/src/monsters/fey/dryad.json +++ b/packs/src/monsters/fey/dryad.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -457,7 +462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "none", "cost": null, @@ -536,7 +546,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KOHVWl5RU9XBR8Jb.Wkv8laBNYgkdA7lL" }, { "_id": "JExoadfmCtQH6vsK", @@ -549,7 +560,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -628,7 +644,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KOHVWl5RU9XBR8Jb.JExoadfmCtQH6vsK" }, { "_id": "beL4bLUcyTb1Sxgz", @@ -641,7 +658,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -720,7 +742,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KOHVWl5RU9XBR8Jb.beL4bLUcyTb1Sxgz" }, { "_id": "wwQTeXOmFLO2MW0Y", @@ -733,7 +756,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -812,7 +840,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KOHVWl5RU9XBR8Jb.wwQTeXOmFLO2MW0Y" }, { "_id": "DNPx6Myd5rHTGu4a", @@ -825,7 +854,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -938,7 +972,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KOHVWl5RU9XBR8Jb.DNPx6Myd5rHTGu4a" }, { "_id": "OdzhvEDeD06BWsZS", @@ -951,7 +986,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1030,7 +1070,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KOHVWl5RU9XBR8Jb.OdzhvEDeD06BWsZS" }, { "name": "Entangle", @@ -1042,7 +1083,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1136,7 +1182,8 @@ "createdTime": 1661787234191, "modifiedTime": 1661791116394, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!KOHVWl5RU9XBR8Jb.gMrWeG8fMDPRFiVe" }, { "_id": "SbSvZKkJASyk8jKo", @@ -1151,7 +1198,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1242,7 +1294,8 @@ "createdTime": 1661787234141, "modifiedTime": 1661791116394, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!KOHVWl5RU9XBR8Jb.SbSvZKkJASyk8jKo" }, { "_id": "Qf6CAZkc7ms4ZY3e", @@ -1257,7 +1310,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1353,7 +1411,8 @@ "createdTime": 1661787234136, "modifiedTime": 1661791116394, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!KOHVWl5RU9XBR8Jb.Qf6CAZkc7ms4ZY3e" }, { "_id": "JPwIEfgUPVebr5AH", @@ -1366,7 +1425,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1474,7 +1538,8 @@ "origin": "Item.VQMKMnQDw5rzL0zp", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!actors.items.effects!KOHVWl5RU9XBR8Jb.JPwIEfgUPVebr5AH.uM6rgctYpcbCVSkn" } ], "folder": null, @@ -1494,7 +1559,8 @@ "createdTime": 1661787234113, "modifiedTime": 1661791116395, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!KOHVWl5RU9XBR8Jb.JPwIEfgUPVebr5AH" }, { "_id": "pRMvmknwLf2tdMTj", @@ -1509,7 +1575,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1600,7 +1671,8 @@ "createdTime": 1661787234227, "modifiedTime": 1661791116395, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!KOHVWl5RU9XBR8Jb.pRMvmknwLf2tdMTj" }, { "_id": "VzgFzcmocr1X1cp4", @@ -1615,7 +1687,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -1711,7 +1788,8 @@ "createdTime": 1661787234149, "modifiedTime": 1661791116395, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!KOHVWl5RU9XBR8Jb.VzgFzcmocr1X1cp4" } ], "effects": [ @@ -1747,7 +1825,8 @@ "origin": "Compendium.dnd5e.monsters.KOHVWl5RU9XBR8Jb.Item.JPwIEfgUPVebr5AH", "tint": null, "transfer": false, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!KOHVWl5RU9XBR8Jb.uM6rgctYpcbCVSkn" } ], "folder": null, @@ -1763,5 +1842,6 @@ "createdTime": 1661787232758, "modifiedTime": 1672596097101, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!KOHVWl5RU9XBR8Jb" } diff --git a/packs/src/monsters/fey/green-hag.json b/packs/src/monsters/fey/green-hag.json index cce953a295..81d30b554e 100644 --- a/packs/src/monsters/fey/green-hag.json +++ b/packs/src/monsters/fey/green-hag.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 3, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -537,7 +547,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!saq6WM959pKHuaqP.TwdKEVj1NjVefyq9" }, { "_id": "9HX1VdEInbRUnBVL", @@ -550,7 +561,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -629,7 +645,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!saq6WM959pKHuaqP.9HX1VdEInbRUnBVL" }, { "_id": "C2ZJ3Oe30dyU2o7E", @@ -642,7 +659,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -721,7 +743,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!saq6WM959pKHuaqP.C2ZJ3Oe30dyU2o7E" }, { "_id": "gtixTr9i63RtsSCv", @@ -734,7 +757,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -843,7 +871,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!saq6WM959pKHuaqP.gtixTr9i63RtsSCv" }, { "_id": "cvdyEyn0s7hKwIcN", @@ -856,7 +885,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -935,7 +969,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!saq6WM959pKHuaqP.cvdyEyn0s7hKwIcN" }, { "_id": "Cdis1lnjFvqfoScV", @@ -948,7 +983,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1027,7 +1067,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!saq6WM959pKHuaqP.Cdis1lnjFvqfoScV" }, { "_id": "CAxSzHWizrafT033", @@ -1042,7 +1083,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1133,7 +1179,8 @@ "createdTime": 1661787234094, "modifiedTime": 1661791116911, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!saq6WM959pKHuaqP.CAxSzHWizrafT033" }, { "_id": "oIzA2MEHwxhtQneU", @@ -1148,7 +1195,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1239,7 +1291,8 @@ "createdTime": 1661787234224, "modifiedTime": 1661791116912, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!saq6WM959pKHuaqP.oIzA2MEHwxhtQneU" }, { "_id": "cdrYKaFi98YWaBMw", @@ -1254,7 +1307,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1350,7 +1408,8 @@ "createdTime": 1661787234175, "modifiedTime": 1661791116912, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!saq6WM959pKHuaqP.cdrYKaFi98YWaBMw" } ], "effects": [], @@ -1367,5 +1426,6 @@ "createdTime": 1661787233213, "modifiedTime": 1672596107911, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!saq6WM959pKHuaqP" } diff --git a/packs/src/monsters/fey/satyr.json b/packs/src/monsters/fey/satyr.json index 789b5e4883..4db76c5dcb 100644 --- a/packs/src/monsters/fey/satyr.json +++ b/packs/src/monsters/fey/satyr.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -571,7 +581,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8xhuJXYMnlQD7LF6.bAm4BNi3o137SAmd" }, { "_id": "198fJNFbhjGeZ8UZ", @@ -584,7 +595,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -697,7 +713,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8xhuJXYMnlQD7LF6.198fJNFbhjGeZ8UZ" }, { "_id": "vd2pvVVxaLhqrWqe", @@ -710,7 +727,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -809,7 +831,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8xhuJXYMnlQD7LF6.vd2pvVVxaLhqrWqe" }, { "_id": "jgHhzAjFiPXlluVM", @@ -822,7 +845,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -901,7 +929,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8xhuJXYMnlQD7LF6.jgHhzAjFiPXlluVM" }, { "_id": "2btvWgv8WIkadZjh", @@ -914,7 +943,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1023,7 +1057,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8xhuJXYMnlQD7LF6.2btvWgv8WIkadZjh" } ], "effects": [], @@ -1040,5 +1075,6 @@ "createdTime": 1661787232638, "modifiedTime": 1672596093716, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!8xhuJXYMnlQD7LF6" } diff --git a/packs/src/monsters/fey/sea-hag.json b/packs/src/monsters/fey/sea-hag.json index 167055bdf1..319dcbdae6 100644 --- a/packs/src/monsters/fey/sea-hag.json +++ b/packs/src/monsters/fey/sea-hag.json @@ -110,7 +110,12 @@ "environment": "Underwater", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -537,7 +547,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!OQqybZoMeDFn5AFD.VlvfR7YD6twoSRhg" }, { "_id": "XeAyeJsNjKZKPWEN", @@ -550,7 +561,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "none", "cost": null, @@ -629,7 +645,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!OQqybZoMeDFn5AFD.XeAyeJsNjKZKPWEN" }, { "_id": "a75Ba80yp6Y28AJQ", @@ -642,7 +659,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -751,7 +773,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!OQqybZoMeDFn5AFD.a75Ba80yp6Y28AJQ" }, { "_id": "7AGmP2dRLYmORUX7", @@ -764,7 +787,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -843,7 +871,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!OQqybZoMeDFn5AFD.7AGmP2dRLYmORUX7" }, { "_id": "8s0lGEYZGFEpwt12", @@ -856,7 +885,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -935,7 +969,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!OQqybZoMeDFn5AFD.8s0lGEYZGFEpwt12" } ], "effects": [], @@ -952,5 +987,6 @@ "createdTime": 1661787232802, "modifiedTime": 1672596099113, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!OQqybZoMeDFn5AFD" } diff --git a/packs/src/monsters/fey/sprite.json b/packs/src/monsters/fey/sprite.json index 457150f422..0386dd2640 100644 --- a/packs/src/monsters/fey/sprite.json +++ b/packs/src/monsters/fey/sprite.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -553,7 +563,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MUpBNDoJEr09bLaO.qlTIjSkjmEDQTj1x" }, { "_id": "YN8cO9SCNOIFJcmw", @@ -566,7 +577,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -679,7 +695,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MUpBNDoJEr09bLaO.YN8cO9SCNOIFJcmw" }, { "_id": "mT8SL7VHsG6qY5G7", @@ -692,7 +709,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -805,7 +827,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MUpBNDoJEr09bLaO.mT8SL7VHsG6qY5G7" }, { "_id": "qLd01BTjVwH6NUfH", @@ -818,7 +841,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -897,7 +925,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MUpBNDoJEr09bLaO.qLd01BTjVwH6NUfH" }, { "_id": "qJHrH8Q3q1JB5xe5", @@ -910,7 +939,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -989,7 +1023,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MUpBNDoJEr09bLaO.qJHrH8Q3q1JB5xe5" } ], "effects": [], @@ -1006,5 +1041,6 @@ "createdTime": 1661787232779, "modifiedTime": 1672596097811, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!MUpBNDoJEr09bLaO" } diff --git a/packs/src/monsters/fiend/balor.json b/packs/src/monsters/fiend/balor.json index 3aef2a4608..6600c68a46 100644 --- a/packs/src/monsters/fiend/balor.json +++ b/packs/src/monsters/fiend/balor.json @@ -110,7 +110,12 @@ "environment": "", "cr": 19, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -467,7 +472,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -551,7 +561,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!uZ8NrRenwYZ4qNf6.nzkZgDrDq0RwWUao" }, { "_id": "FWSzSLqeIDq7meXC", @@ -564,7 +575,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -648,7 +664,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!uZ8NrRenwYZ4qNf6.FWSzSLqeIDq7meXC" }, { "_id": "0Y2ThqWytMPb9RlR", @@ -661,7 +678,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -740,7 +762,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!uZ8NrRenwYZ4qNf6.0Y2ThqWytMPb9RlR" }, { "_id": "5TGqX6bI8BdLEvTk", @@ -753,7 +776,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -832,7 +860,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!uZ8NrRenwYZ4qNf6.5TGqX6bI8BdLEvTk" }, { "_id": "qzphlErr2D2mRpxT", @@ -845,7 +874,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -924,7 +958,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!uZ8NrRenwYZ4qNf6.qzphlErr2D2mRpxT" }, { "_id": "mw93amZDA4ctKqvQ", @@ -937,7 +972,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1016,7 +1056,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!uZ8NrRenwYZ4qNf6.mw93amZDA4ctKqvQ" }, { "_id": "6ZAh5TkiXwQMUfDB", @@ -1029,7 +1070,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -1146,7 +1192,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!uZ8NrRenwYZ4qNf6.6ZAh5TkiXwQMUfDB" }, { "_id": "1oGgJQB1ItqyKoZ5", @@ -1159,7 +1206,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -1276,7 +1328,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!uZ8NrRenwYZ4qNf6.1oGgJQB1ItqyKoZ5" } ], "effects": [], @@ -1293,5 +1346,6 @@ "createdTime": 1661787233232, "modifiedTime": 1672596108544, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!uZ8NrRenwYZ4qNf6" } diff --git a/packs/src/monsters/fiend/barbed-devil.json b/packs/src/monsters/fiend/barbed-devil.json index 3f353ef0bb..fc07351b50 100644 --- a/packs/src/monsters/fiend/barbed-devil.json +++ b/packs/src/monsters/fiend/barbed-devil.json @@ -110,7 +110,12 @@ "environment": "", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -469,7 +474,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -553,7 +563,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!sLdpiuaZF8lujJQy.8QaMc1baRrSlLFXN" }, { "_id": "wPHhtm2eyM9LKpT4", @@ -566,7 +577,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -641,7 +657,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!sLdpiuaZF8lujJQy.wPHhtm2eyM9LKpT4" }, { "_id": "f3ItDDfd5L4WMGlf", @@ -654,7 +671,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -733,7 +755,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!sLdpiuaZF8lujJQy.f3ItDDfd5L4WMGlf" }, { "_id": "JbDDt9MNYFyEbHsm", @@ -746,7 +769,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -825,7 +853,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!sLdpiuaZF8lujJQy.JbDDt9MNYFyEbHsm" }, { "_id": "pya9jchjLkwMedEr", @@ -838,7 +867,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -947,7 +981,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!sLdpiuaZF8lujJQy.pya9jchjLkwMedEr" }, { "_id": "mlWql992zSZ6hvl6", @@ -960,7 +995,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1069,7 +1109,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!sLdpiuaZF8lujJQy.mlWql992zSZ6hvl6" }, { "_id": "syCZDlwGoyT1GvJv", @@ -1082,7 +1123,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1191,7 +1237,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!sLdpiuaZF8lujJQy.syCZDlwGoyT1GvJv" } ], "effects": [], @@ -1208,5 +1255,6 @@ "createdTime": 1661787233211, "modifiedTime": 1672596107819, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!sLdpiuaZF8lujJQy" } diff --git a/packs/src/monsters/fiend/bearded-devil.json b/packs/src/monsters/fiend/bearded-devil.json index 68e000141d..8ac61f321a 100644 --- a/packs/src/monsters/fiend/bearded-devil.json +++ b/packs/src/monsters/fiend/bearded-devil.json @@ -110,7 +110,12 @@ "environment": "", "cr": 3, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -469,7 +474,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -544,7 +554,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!9ggQBmAKXraOtz7S.xt4Cm1tg8Xfodhdt" }, { "_id": "u1abloZz4RhCI9rk", @@ -557,7 +568,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -636,7 +652,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!9ggQBmAKXraOtz7S.u1abloZz4RhCI9rk" }, { "_id": "PIggvpkBTTCDGOHp", @@ -649,7 +666,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -728,7 +750,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!9ggQBmAKXraOtz7S.PIggvpkBTTCDGOHp" }, { "_id": "ndwCjJFBLTujojCl", @@ -741,7 +764,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -850,7 +878,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!9ggQBmAKXraOtz7S.ndwCjJFBLTujojCl" }, { "_id": "RgZ4lGrNf9AaIyrG", @@ -863,7 +892,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -976,7 +1010,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!9ggQBmAKXraOtz7S.RgZ4lGrNf9AaIyrG" }, { "_id": "iRRniNGmcgkUi4oH", @@ -989,7 +1024,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1068,7 +1108,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!9ggQBmAKXraOtz7S.iRRniNGmcgkUi4oH" } ], "effects": [], @@ -1085,5 +1126,6 @@ "createdTime": 1661787232643, "modifiedTime": 1672596093849, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!9ggQBmAKXraOtz7S" } diff --git a/packs/src/monsters/fiend/bone-devil.json b/packs/src/monsters/fiend/bone-devil.json index c88726aaa3..393c6c629b 100644 --- a/packs/src/monsters/fiend/bone-devil.json +++ b/packs/src/monsters/fiend/bone-devil.json @@ -110,7 +110,12 @@ "environment": "", "cr": 9, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -469,7 +474,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -578,7 +588,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!AnseLn7HwuP97grf.KjxsSFx9xv2HLtMX" }, { "_id": "iFHGL8wlqBtZAdHr", @@ -591,7 +602,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -704,7 +720,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!AnseLn7HwuP97grf.iFHGL8wlqBtZAdHr" }, { "_id": "aj4Bg2H8CNydNhMB", @@ -717,7 +734,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -796,7 +818,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!AnseLn7HwuP97grf.aj4Bg2H8CNydNhMB" }, { "_id": "hQXiIJrlHh2rb2k9", @@ -809,7 +832,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -888,7 +916,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!AnseLn7HwuP97grf.hQXiIJrlHh2rb2k9" }, { "_id": "sC1dqjfFZKnDmhec", @@ -901,7 +930,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -980,7 +1014,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!AnseLn7HwuP97grf.sC1dqjfFZKnDmhec" } ], "effects": [], @@ -997,5 +1032,6 @@ "createdTime": 1661787232650, "modifiedTime": 1672596094012, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!AnseLn7HwuP97grf" } diff --git a/packs/src/monsters/fiend/chain-devil.json b/packs/src/monsters/fiend/chain-devil.json index d881bcece9..97e2c252ec 100644 --- a/packs/src/monsters/fiend/chain-devil.json +++ b/packs/src/monsters/fiend/chain-devil.json @@ -110,7 +110,12 @@ "environment": "", "cr": 8, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -469,7 +474,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -578,7 +588,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KtM6IV9I5l1MWUDk.9SWi4zPVGsMD5l2Y" }, { "_id": "c8fbl1Kc5O3GNTus", @@ -591,7 +602,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -670,7 +686,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KtM6IV9I5l1MWUDk.c8fbl1Kc5O3GNTus" }, { "_id": "FkvVIJjzEPFMgvsc", @@ -683,7 +700,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -758,7 +780,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KtM6IV9I5l1MWUDk.FkvVIJjzEPFMgvsc" }, { "_id": "ZZ4l35Sr34AL2Ett", @@ -771,7 +794,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -850,7 +878,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KtM6IV9I5l1MWUDk.ZZ4l35Sr34AL2Ett" }, { "_id": "AGKUD82KJZaMKVRt", @@ -863,7 +892,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -942,7 +976,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KtM6IV9I5l1MWUDk.AGKUD82KJZaMKVRt" }, { "_id": "B9KJpn20n0tG4xit", @@ -955,7 +990,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1034,7 +1074,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KtM6IV9I5l1MWUDk.B9KJpn20n0tG4xit" } ], "effects": [], @@ -1051,5 +1092,6 @@ "createdTime": 1661787232763, "modifiedTime": 1672596097220, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!KtM6IV9I5l1MWUDk" } diff --git a/packs/src/monsters/fiend/dretch.json b/packs/src/monsters/fiend/dretch.json index 8095f174f5..498ae03b3b 100644 --- a/packs/src/monsters/fiend/dretch.json +++ b/packs/src/monsters/fiend/dretch.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "sm", @@ -464,7 +469,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -543,7 +553,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kz2fW9xb5CcvXLX4.Ex0UN9pj0w7p4D9F" }, { "_id": "2So9DIMKKgeGHVru", @@ -556,7 +567,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -669,7 +685,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kz2fW9xb5CcvXLX4.2So9DIMKKgeGHVru" }, { "_id": "5fa9Rdzy2YYpkAgS", @@ -682,7 +699,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -791,7 +813,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kz2fW9xb5CcvXLX4.5fa9Rdzy2YYpkAgS" }, { "_id": "JVbj7KABKYi3Z8U3", @@ -804,7 +827,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -883,7 +911,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kz2fW9xb5CcvXLX4.JVbj7KABKYi3Z8U3" } ], "effects": [], @@ -900,5 +929,6 @@ "createdTime": 1661787233020, "modifiedTime": 1672596104884, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!kz2fW9xb5CcvXLX4" } diff --git a/packs/src/monsters/fiend/erinyes.json b/packs/src/monsters/fiend/erinyes.json index 7414cdf177..2cbb20dd35 100644 --- a/packs/src/monsters/fiend/erinyes.json +++ b/packs/src/monsters/fiend/erinyes.json @@ -110,7 +110,12 @@ "environment": "", "cr": 12, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -469,7 +474,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -548,7 +558,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3o2rQBqpzjIHmrBW.BeB04w7ftFRDaMQ6" }, { "_id": "dvoOA7jzBnq2Lxza", @@ -561,7 +572,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -678,7 +694,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3o2rQBqpzjIHmrBW.dvoOA7jzBnq2Lxza" }, { "_id": "W7sEr3m8MBrzYq2v", @@ -691,7 +708,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -770,7 +792,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3o2rQBqpzjIHmrBW.W7sEr3m8MBrzYq2v" }, { "_id": "WharT2ReFy2FYTG0", @@ -783,7 +806,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -862,7 +890,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3o2rQBqpzjIHmrBW.WharT2ReFy2FYTG0" }, { "_id": "qO61ofcSoMF4uxk8", @@ -875,7 +904,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 65, "price": { @@ -974,7 +1008,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3o2rQBqpzjIHmrBW.qO61ofcSoMF4uxk8" }, { "_id": "CElneYmOXIzyfv2a", @@ -987,7 +1022,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -1104,7 +1144,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3o2rQBqpzjIHmrBW.CElneYmOXIzyfv2a" }, { "_id": "Fp0Jye7Qwk8KOvH7", @@ -1117,7 +1158,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1196,7 +1242,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3o2rQBqpzjIHmrBW.Fp0Jye7Qwk8KOvH7" } ], "effects": [], @@ -1213,5 +1260,6 @@ "createdTime": 1661787232573, "modifiedTime": 1672596091689, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!3o2rQBqpzjIHmrBW" } diff --git a/packs/src/monsters/fiend/glabrezu.json b/packs/src/monsters/fiend/glabrezu.json index c46e2ba106..dc4120c9b8 100644 --- a/packs/src/monsters/fiend/glabrezu.json +++ b/packs/src/monsters/fiend/glabrezu.json @@ -110,7 +110,12 @@ "environment": "", "cr": 9, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -469,7 +474,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -548,7 +558,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!OGPHF4sCVOAi87TU.9kqiKxbLXk7Ved3q" }, { "_id": "7a3DRiT1Ku9AnAQO", @@ -561,7 +572,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -640,7 +656,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!OGPHF4sCVOAi87TU.7a3DRiT1Ku9AnAQO" }, { "_id": "MCquBpEbQDXKRAju", @@ -653,7 +670,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -732,7 +754,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!OGPHF4sCVOAi87TU.MCquBpEbQDXKRAju" }, { "_id": "pEUD99mri5iDNGH7", @@ -745,7 +768,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -854,7 +882,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!OGPHF4sCVOAi87TU.pEUD99mri5iDNGH7" }, { "_id": "VGFZM2Zvp0NT5Yb9", @@ -867,7 +896,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -976,7 +1010,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!OGPHF4sCVOAi87TU.VGFZM2Zvp0NT5Yb9" }, { "_id": "S7VbUetIfVT7B6Eq", @@ -991,7 +1026,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1082,7 +1122,8 @@ "createdTime": 1661787234139, "modifiedTime": 1661791116486, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!OGPHF4sCVOAi87TU.S7VbUetIfVT7B6Eq" }, { "_id": "ghXTfe7sgCbgf1Q8", @@ -1097,7 +1138,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1188,7 +1234,8 @@ "createdTime": 1661787234192, "modifiedTime": 1661791116487, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!OGPHF4sCVOAi87TU.ghXTfe7sgCbgf1Q8" }, { "_id": "15Fa6q1nH27XfbR8", @@ -1203,7 +1250,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1294,7 +1346,8 @@ "createdTime": 1661787234054, "modifiedTime": 1661791116487, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!OGPHF4sCVOAi87TU.15Fa6q1nH27XfbR8" }, { "_id": "9hQXdMSmerkTsHDe", @@ -1307,7 +1360,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1400,7 +1458,8 @@ "createdTime": 1661787234085, "modifiedTime": 1661791116491, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!OGPHF4sCVOAi87TU.9hQXdMSmerkTsHDe" }, { "_id": "yfbK8gZqESlaoY5t", @@ -1415,7 +1474,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1506,7 +1570,8 @@ "createdTime": 1661787234243, "modifiedTime": 1661791116492, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!OGPHF4sCVOAi87TU.yfbK8gZqESlaoY5t" }, { "_id": "35j2QIMmIk6aEdxj", @@ -1521,7 +1586,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1612,7 +1682,8 @@ "createdTime": 1661787234062, "modifiedTime": 1661791116492, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!OGPHF4sCVOAi87TU.35j2QIMmIk6aEdxj" } ], "effects": [], @@ -1629,5 +1700,6 @@ "createdTime": 1661787232800, "modifiedTime": 1672596099071, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!OGPHF4sCVOAi87TU" } diff --git a/packs/src/monsters/fiend/hell-hound.json b/packs/src/monsters/fiend/hell-hound.json index 134a74eebe..7cadc8bb45 100644 --- a/packs/src/monsters/fiend/hell-hound.json +++ b/packs/src/monsters/fiend/hell-hound.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 3, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!iSCL4Q82ivnYelzc.fhBBeyLSor6NVA0l" }, { "_id": "BVEOVtTEuJhNvTfo", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!iSCL4Q82ivnYelzc.BVEOVtTEuJhNvTfo" }, { "_id": "AnHeKid7zbyPKJg9", @@ -638,7 +655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -755,7 +777,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!iSCL4Q82ivnYelzc.AnHeKid7zbyPKJg9" }, { "_id": "gijcyepmnWeRu4HV", @@ -768,7 +791,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -852,7 +880,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!iSCL4Q82ivnYelzc.gijcyepmnWeRu4HV" } ], "effects": [], @@ -869,5 +898,6 @@ "createdTime": 1661787233001, "modifiedTime": 1672596104323, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!iSCL4Q82ivnYelzc" } diff --git a/packs/src/monsters/fiend/hezrou.json b/packs/src/monsters/fiend/hezrou.json index ed4cee9ba9..3e4dfee0cc 100644 --- a/packs/src/monsters/fiend/hezrou.json +++ b/packs/src/monsters/fiend/hezrou.json @@ -110,7 +110,12 @@ "environment": "", "cr": 8, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -470,7 +475,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -549,7 +559,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ec3lhsNv1ZRu7Qaq.dQt68nlmGdhK2ojI" }, { "_id": "0EcUwWcmWzFuiJyg", @@ -562,7 +573,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -641,7 +657,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ec3lhsNv1ZRu7Qaq.0EcUwWcmWzFuiJyg" }, { "_id": "xQ1RYlOxb6lMRhdI", @@ -654,7 +671,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -733,7 +755,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ec3lhsNv1ZRu7Qaq.xQ1RYlOxb6lMRhdI" }, { "_id": "UNNl5XqsXZuKOm69", @@ -746,7 +769,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -859,7 +887,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ec3lhsNv1ZRu7Qaq.UNNl5XqsXZuKOm69" }, { "_id": "HEQqPUsmmNs178Mj", @@ -872,7 +901,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -981,7 +1015,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ec3lhsNv1ZRu7Qaq.HEQqPUsmmNs178Mj" } ], "effects": [], @@ -998,5 +1033,6 @@ "createdTime": 1661787232946, "modifiedTime": 1672596103000, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!ec3lhsNv1ZRu7Qaq" } diff --git a/packs/src/monsters/fiend/horned-devil.json b/packs/src/monsters/fiend/horned-devil.json index 8498cdbddb..540304bcea 100644 --- a/packs/src/monsters/fiend/horned-devil.json +++ b/packs/src/monsters/fiend/horned-devil.json @@ -110,7 +110,12 @@ "environment": "", "cr": 11, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -469,7 +474,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -578,7 +588,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MADGs8pWMVyyFOf1.g8r9DZeHyfNzerHP" }, { "_id": "smHERNgdj5yGNQuD", @@ -591,7 +602,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -666,7 +682,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MADGs8pWMVyyFOf1.smHERNgdj5yGNQuD" }, { "_id": "gq4SqLPtYhhtWidm", @@ -679,7 +696,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -758,7 +780,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MADGs8pWMVyyFOf1.gq4SqLPtYhhtWidm" }, { "_id": "VpvOoT7mbR0XNZiL", @@ -771,7 +794,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -880,7 +908,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MADGs8pWMVyyFOf1.VpvOoT7mbR0XNZiL" }, { "_id": "9FAl5YGUTmt1RnEF", @@ -893,7 +922,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -972,7 +1006,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MADGs8pWMVyyFOf1.9FAl5YGUTmt1RnEF" }, { "_id": "GFYzWSyeuW9O4a0I", @@ -985,7 +1020,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1094,7 +1134,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MADGs8pWMVyyFOf1.GFYzWSyeuW9O4a0I" } ], "effects": [], @@ -1111,5 +1152,6 @@ "createdTime": 1661787232774, "modifiedTime": 1672596097618, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!MADGs8pWMVyyFOf1" } diff --git a/packs/src/monsters/fiend/ice-devil.json b/packs/src/monsters/fiend/ice-devil.json index 63d14fe403..6e6c06ee68 100644 --- a/packs/src/monsters/fiend/ice-devil.json +++ b/packs/src/monsters/fiend/ice-devil.json @@ -110,7 +110,12 @@ "environment": "", "cr": 14, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -469,7 +474,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -586,7 +596,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1zzRQps9jZdLZGqI.DV4KS0OE541vGOtI" }, { "_id": "WAGF3evP6GTYDvM0", @@ -599,7 +610,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -674,7 +690,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1zzRQps9jZdLZGqI.WAGF3evP6GTYDvM0" }, { "_id": "IKaEdLLHwVL0s9UP", @@ -687,7 +704,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -766,7 +788,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1zzRQps9jZdLZGqI.IKaEdLLHwVL0s9UP" }, { "_id": "nCTze3rZpWcTeuYQ", @@ -779,7 +802,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -863,7 +891,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1zzRQps9jZdLZGqI.nCTze3rZpWcTeuYQ" }, { "_id": "AQ551xglVn90BdwU", @@ -876,7 +905,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -989,7 +1023,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1zzRQps9jZdLZGqI.AQ551xglVn90BdwU" }, { "_id": "E6iXljYXLdQyfk1l", @@ -1002,7 +1037,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1115,7 +1155,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1zzRQps9jZdLZGqI.E6iXljYXLdQyfk1l" }, { "_id": "vLQAjoewGE5MAHn2", @@ -1128,7 +1169,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1207,7 +1253,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1zzRQps9jZdLZGqI.vLQAjoewGE5MAHn2" } ], "effects": [], @@ -1224,5 +1271,6 @@ "createdTime": 1661787232559, "modifiedTime": 1672596091301, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!1zzRQps9jZdLZGqI" } diff --git a/packs/src/monsters/fiend/imp.json b/packs/src/monsters/fiend/imp.json index b9e589ea5b..90c8ba79c7 100644 --- a/packs/src/monsters/fiend/imp.json +++ b/packs/src/monsters/fiend/imp.json @@ -110,7 +110,12 @@ "environment": "", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -470,7 +475,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -549,7 +559,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!dLQiESMsfsXijD5c.9ioH5ocevSRjYBaD" }, { "_id": "OljCWQpwojS4FKur", @@ -562,7 +573,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -637,7 +653,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!dLQiESMsfsXijD5c.OljCWQpwojS4FKur" }, { "_id": "sl0CxgkL7SkRIv7j", @@ -650,7 +667,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -729,7 +751,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!dLQiESMsfsXijD5c.sl0CxgkL7SkRIv7j" }, { "_id": "64Swhse7QnbiLAbi", @@ -742,7 +765,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -851,7 +879,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!dLQiESMsfsXijD5c.64Swhse7QnbiLAbi" }, { "_id": "mMdtSlNy6FuPju7p", @@ -864,7 +893,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -943,7 +977,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!dLQiESMsfsXijD5c.mMdtSlNy6FuPju7p" }, { "_id": "RZpYFJGNqA7L1bj1", @@ -956,7 +991,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1065,7 +1105,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!dLQiESMsfsXijD5c.RZpYFJGNqA7L1bj1" } ], "effects": [], @@ -1082,5 +1123,6 @@ "createdTime": 1661787232938, "modifiedTime": 1672596102797, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!dLQiESMsfsXijD5c" } diff --git a/packs/src/monsters/fiend/lemure.json b/packs/src/monsters/fiend/lemure.json index f1df465b76..c900afaaaf 100644 --- a/packs/src/monsters/fiend/lemure.json +++ b/packs/src/monsters/fiend/lemure.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -466,7 +471,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -541,7 +551,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!tubcO7kaQ4w0soxS.zEGUljO44aDmj8z5" }, { "_id": "7gfe5c1qGIvai12V", @@ -554,7 +565,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -633,7 +649,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!tubcO7kaQ4w0soxS.7gfe5c1qGIvai12V" }, { "_id": "TypCj0S846TqsHzI", @@ -646,7 +663,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -755,7 +777,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!tubcO7kaQ4w0soxS.TypCj0S846TqsHzI" } ], "effects": [], @@ -772,5 +795,6 @@ "createdTime": 1661787233226, "modifiedTime": 1672596108358, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!tubcO7kaQ4w0soxS" } diff --git a/packs/src/monsters/fiend/marilith.json b/packs/src/monsters/fiend/marilith.json index 286ef4e5a5..8a780b8080 100644 --- a/packs/src/monsters/fiend/marilith.json +++ b/packs/src/monsters/fiend/marilith.json @@ -110,7 +110,12 @@ "environment": "", "cr": 16, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -469,7 +474,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -548,7 +558,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!egsSDYbqoLCelb0J.JT4JWvnmmQnEJ2qv" }, { "_id": "e5syW3Oa9yNGZ09T", @@ -561,7 +572,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -640,7 +656,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!egsSDYbqoLCelb0J.e5syW3Oa9yNGZ09T" }, { "_id": "rBHEI0gZnnv8h44g", @@ -653,7 +670,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -732,7 +754,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!egsSDYbqoLCelb0J.rBHEI0gZnnv8h44g" }, { "_id": "nEKlIbUhhx9akBjK", @@ -745,7 +768,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -824,7 +852,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!egsSDYbqoLCelb0J.nEKlIbUhhx9akBjK" }, { "_id": "VzPNwzlwJ7knJ9MC", @@ -837,7 +866,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -950,7 +984,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!egsSDYbqoLCelb0J.VzPNwzlwJ7knJ9MC" }, { "_id": "BoIambnHLbZXr85T", @@ -963,7 +998,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1072,7 +1112,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!egsSDYbqoLCelb0J.BoIambnHLbZXr85T" }, { "_id": "EMJe4NIzUdNIQj9S", @@ -1085,7 +1126,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1164,7 +1210,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!egsSDYbqoLCelb0J.EMJe4NIzUdNIQj9S" }, { "_id": "lS2o3QOZ2lxKyi0L", @@ -1177,7 +1224,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -1256,7 +1308,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!egsSDYbqoLCelb0J.lS2o3QOZ2lxKyi0L" } ], "effects": [], @@ -1273,5 +1326,6 @@ "createdTime": 1661787232948, "modifiedTime": 1672596103042, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!egsSDYbqoLCelb0J" } diff --git a/packs/src/monsters/fiend/nalfeshnee.json b/packs/src/monsters/fiend/nalfeshnee.json index 71f6467486..ad6dc34c0f 100644 --- a/packs/src/monsters/fiend/nalfeshnee.json +++ b/packs/src/monsters/fiend/nalfeshnee.json @@ -110,7 +110,12 @@ "environment": "", "cr": 13, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -469,7 +474,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -548,7 +558,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!rUg5JMnKNnZNBAq9.jZeQHAOQV365hmZF" }, { "_id": "swlYyGYwkdNzuRkG", @@ -561,7 +572,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -640,7 +656,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!rUg5JMnKNnZNBAq9.swlYyGYwkdNzuRkG" }, { "_id": "524dkWbpWUJKFaj2", @@ -653,7 +670,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -766,7 +788,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!rUg5JMnKNnZNBAq9.524dkWbpWUJKFaj2" }, { "_id": "xhKo80CbyA57Kl1l", @@ -779,7 +802,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -888,7 +916,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!rUg5JMnKNnZNBAq9.xhKo80CbyA57Kl1l" }, { "_id": "RFPDYIhkmBW2B47S", @@ -901,7 +930,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -980,7 +1014,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!rUg5JMnKNnZNBAq9.RFPDYIhkmBW2B47S" }, { "_id": "zK5E9yD6BR0fZRBo", @@ -993,7 +1028,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1072,7 +1112,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!rUg5JMnKNnZNBAq9.zK5E9yD6BR0fZRBo" } ], "effects": [], @@ -1089,5 +1130,6 @@ "createdTime": 1661787233201, "modifiedTime": 1672596107525, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!rUg5JMnKNnZNBAq9" } diff --git a/packs/src/monsters/fiend/night-hag.json b/packs/src/monsters/fiend/night-hag.json index 52c9dff669..8efd528f07 100644 --- a/packs/src/monsters/fiend/night-hag.json +++ b/packs/src/monsters/fiend/night-hag.json @@ -110,7 +110,12 @@ "environment": "", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -470,7 +475,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -549,7 +559,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xvh2UOKv1bh03Gih.bUkTkdnQ3XbRcXkD" }, { "_id": "9Gf1hal94HjuAHMN", @@ -562,7 +573,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -655,7 +671,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xvh2UOKv1bh03Gih.9Gf1hal94HjuAHMN" }, { "_id": "OMZ6qNK1bdpI8ryh", @@ -668,7 +685,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -747,7 +769,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xvh2UOKv1bh03Gih.OMZ6qNK1bdpI8ryh" }, { "_id": "Um3cK4i4ZQSTqodb", @@ -760,7 +783,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -869,7 +897,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xvh2UOKv1bh03Gih.Um3cK4i4ZQSTqodb" }, { "_id": "ftmaVOSJXvHPhraJ", @@ -882,7 +911,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -961,7 +995,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xvh2UOKv1bh03Gih.ftmaVOSJXvHPhraJ" }, { "_id": "0blKOND2AnsMsZa6", @@ -974,7 +1009,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1053,7 +1093,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xvh2UOKv1bh03Gih.0blKOND2AnsMsZa6" }, { "_id": "tYZggJHgAbixP5rs", @@ -1066,7 +1107,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1145,7 +1191,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xvh2UOKv1bh03Gih.tYZggJHgAbixP5rs" }, { "_id": "ghXTfe7sgCbgf1Q8", @@ -1160,7 +1207,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1251,7 +1303,8 @@ "createdTime": 1661787234192, "modifiedTime": 1661791116952, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xvh2UOKv1bh03Gih.ghXTfe7sgCbgf1Q8" }, { "_id": "41JIhpDyM9Anm7cs", @@ -1266,7 +1319,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1362,7 +1420,8 @@ "createdTime": 1661787234065, "modifiedTime": 1661791116952, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xvh2UOKv1bh03Gih.41JIhpDyM9Anm7cs" }, { "_id": "ODhLKBxLnvvLOnw1", @@ -1377,7 +1436,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1468,7 +1532,8 @@ "createdTime": 1661787234130, "modifiedTime": 1661791116952, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xvh2UOKv1bh03Gih.ODhLKBxLnvvLOnw1" }, { "_id": "KhwiSi9fwVfUPtku", @@ -1481,7 +1546,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1579,7 +1649,8 @@ "createdTime": 1661787234117, "modifiedTime": 1661791116953, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!xvh2UOKv1bh03Gih.KhwiSi9fwVfUPtku" } ], "effects": [], @@ -1596,5 +1667,6 @@ "createdTime": 1661787233243, "modifiedTime": 1672596108951, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!xvh2UOKv1bh03Gih" } diff --git a/packs/src/monsters/fiend/nightmare.json b/packs/src/monsters/fiend/nightmare.json index dbdd50fae5..3651cb7580 100644 --- a/packs/src/monsters/fiend/nightmare.json +++ b/packs/src/monsters/fiend/nightmare.json @@ -110,7 +110,12 @@ "environment": "", "cr": 3, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -456,7 +461,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -535,7 +545,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5SgVGhQBswgWRwsF.ez0lp4uo2fLOc5Yf" }, { "_id": "YXCQq6M3IGaLDz2M", @@ -548,7 +559,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -627,7 +643,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5SgVGhQBswgWRwsF.YXCQq6M3IGaLDz2M" }, { "_id": "lzv29dS3tAUUuVlI", @@ -640,7 +657,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -757,7 +779,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5SgVGhQBswgWRwsF.lzv29dS3tAUUuVlI" }, { "_id": "XtK73VCT1s8abvjs", @@ -770,7 +793,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -849,7 +877,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5SgVGhQBswgWRwsF.XtK73VCT1s8abvjs" } ], "effects": [], @@ -866,5 +895,6 @@ "createdTime": 1661787232592, "modifiedTime": 1672596092354, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!5SgVGhQBswgWRwsF" } diff --git a/packs/src/monsters/fiend/pit-fiend.json b/packs/src/monsters/fiend/pit-fiend.json index a05cc8cba0..29ff1df1a9 100644 --- a/packs/src/monsters/fiend/pit-fiend.json +++ b/packs/src/monsters/fiend/pit-fiend.json @@ -110,7 +110,12 @@ "environment": "", "cr": 20, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -469,7 +474,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -548,7 +558,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!RCv5y7iWlfNxkinx.wkqjn4bqhPIUUo7k" }, { "_id": "2MKXiCJeOrUJIEto", @@ -561,7 +572,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -640,7 +656,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!RCv5y7iWlfNxkinx.2MKXiCJeOrUJIEto" }, { "_id": "TT2YmAw82Sj1WNKn", @@ -653,7 +670,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -732,7 +754,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!RCv5y7iWlfNxkinx.TT2YmAw82Sj1WNKn" }, { "_id": "2Wh1GHIIzBfCm8md", @@ -745,7 +768,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -824,7 +852,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!RCv5y7iWlfNxkinx.2Wh1GHIIzBfCm8md" }, { "_id": "BFv56pkQ54pdTkYM", @@ -837,7 +866,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -916,7 +950,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!RCv5y7iWlfNxkinx.BFv56pkQ54pdTkYM" }, { "_id": "GjIQl7UOQUtsrj2v", @@ -929,7 +964,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1042,7 +1082,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!RCv5y7iWlfNxkinx.GjIQl7UOQUtsrj2v" }, { "_id": "RkuPEGbAXHhxfNWJ", @@ -1055,7 +1096,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1164,7 +1210,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!RCv5y7iWlfNxkinx.RkuPEGbAXHhxfNWJ" }, { "_id": "gpjBebqxqbQA35st", @@ -1177,7 +1224,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1294,7 +1346,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!RCv5y7iWlfNxkinx.gpjBebqxqbQA35st" }, { "_id": "Gh1DbMpJiaTlTwWp", @@ -1307,7 +1360,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1416,7 +1474,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!RCv5y7iWlfNxkinx.Gh1DbMpJiaTlTwWp" }, { "_id": "ghXTfe7sgCbgf1Q8", @@ -1431,7 +1490,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1522,7 +1586,8 @@ "createdTime": 1661787234192, "modifiedTime": 1661791116539, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!RCv5y7iWlfNxkinx.ghXTfe7sgCbgf1Q8" }, { "_id": "ztgcdrWPshKRpFd0", @@ -1537,7 +1602,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1633,7 +1703,8 @@ "createdTime": 1661787234246, "modifiedTime": 1661791116540, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!RCv5y7iWlfNxkinx.ztgcdrWPshKRpFd0" }, { "_id": "l9Ju5KE7bbn3WpTm", @@ -1648,7 +1719,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1739,7 +1815,8 @@ "createdTime": 1661787234216, "modifiedTime": 1661791116540, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!RCv5y7iWlfNxkinx.l9Ju5KE7bbn3WpTm" }, { "_id": "X3DrXgxjwI2dvkD6", @@ -1754,7 +1831,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1850,7 +1932,8 @@ "createdTime": 1661787234155, "modifiedTime": 1661791116540, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!RCv5y7iWlfNxkinx.X3DrXgxjwI2dvkD6" } ], "effects": [], @@ -1867,5 +1950,6 @@ "createdTime": 1661787232823, "modifiedTime": 1672596099731, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!RCv5y7iWlfNxkinx" } diff --git a/packs/src/monsters/fiend/quasit.json b/packs/src/monsters/fiend/quasit.json index 82a5758e70..6b8a4030fb 100644 --- a/packs/src/monsters/fiend/quasit.json +++ b/packs/src/monsters/fiend/quasit.json @@ -110,7 +110,12 @@ "environment": "", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -470,7 +475,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -549,7 +559,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bwtkdzavdNHISgp4.MLfZqvhaJjB78YiT" }, { "_id": "ae0OI3obJqa4AS7U", @@ -562,7 +573,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -671,7 +687,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bwtkdzavdNHISgp4.ae0OI3obJqa4AS7U" }, { "_id": "e8rpvJJVWCN4HU7I", @@ -684,7 +701,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -763,7 +785,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bwtkdzavdNHISgp4.e8rpvJJVWCN4HU7I" }, { "_id": "vlmHYqAZxNGh8xQ6", @@ -776,7 +799,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -855,7 +883,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bwtkdzavdNHISgp4.vlmHYqAZxNGh8xQ6" }, { "_id": "1YhP86rTuRIXKFi2", @@ -868,7 +897,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -947,7 +981,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bwtkdzavdNHISgp4.1YhP86rTuRIXKFi2" } ], "effects": [], @@ -964,5 +999,6 @@ "createdTime": 1661787232916, "modifiedTime": 1672596102335, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!bwtkdzavdNHISgp4" } diff --git a/packs/src/monsters/fiend/rakshasa.json b/packs/src/monsters/fiend/rakshasa.json index 8d7c0eac9d..acb1b13cf6 100644 --- a/packs/src/monsters/fiend/rakshasa.json +++ b/packs/src/monsters/fiend/rakshasa.json @@ -110,7 +110,12 @@ "environment": "Urban", "cr": 13, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -463,7 +468,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -542,7 +552,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qXzMsRTHEodqO8l2.ChSnKd7pSLoN1Jeu" }, { "_id": "NYUeQsYqRhROcVMQ", @@ -555,7 +566,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -634,7 +650,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qXzMsRTHEodqO8l2.NYUeQsYqRhROcVMQ" }, { "_id": "18NEVoD84KHDcWoG", @@ -647,7 +664,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -726,7 +748,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qXzMsRTHEodqO8l2.18NEVoD84KHDcWoG" }, { "_id": "pHBLWUN5VKEjSBh6", @@ -739,7 +762,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -848,7 +876,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qXzMsRTHEodqO8l2.pHBLWUN5VKEjSBh6" }, { "_id": "ppWAAEul0QHtm4er", @@ -863,7 +892,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -954,7 +988,8 @@ "createdTime": 1661787234229, "modifiedTime": 1661791116890, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!qXzMsRTHEodqO8l2.ppWAAEul0QHtm4er" }, { "_id": "A3q2gTNqG6fvNGrv", @@ -969,7 +1004,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1060,7 +1100,8 @@ "createdTime": 1661787234086, "modifiedTime": 1661791116890, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!qXzMsRTHEodqO8l2.A3q2gTNqG6fvNGrv" }, { "_id": "Utk1OQRwYkMkFRD3", @@ -1075,7 +1116,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1166,7 +1212,8 @@ "createdTime": 1661787234148, "modifiedTime": 1661791116890, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!qXzMsRTHEodqO8l2.Utk1OQRwYkMkFRD3" }, { "_id": "oIzA2MEHwxhtQneU", @@ -1181,7 +1228,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1272,7 +1324,8 @@ "createdTime": 1661787234224, "modifiedTime": 1661791116891, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!qXzMsRTHEodqO8l2.oIzA2MEHwxhtQneU" }, { "_id": "eS7XnnApoxRxYXPs", @@ -1287,7 +1340,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1378,7 +1436,8 @@ "createdTime": 1661787234185, "modifiedTime": 1661791116891, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!qXzMsRTHEodqO8l2.eS7XnnApoxRxYXPs" }, { "_id": "ghXTfe7sgCbgf1Q8", @@ -1393,7 +1452,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1484,7 +1548,8 @@ "createdTime": 1661787234192, "modifiedTime": 1661791116891, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!qXzMsRTHEodqO8l2.ghXTfe7sgCbgf1Q8" }, { "_id": "1N8dDMMgZ1h1YJ3B", @@ -1499,7 +1564,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1590,7 +1660,8 @@ "createdTime": 1661787234056, "modifiedTime": 1661791116892, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!qXzMsRTHEodqO8l2.1N8dDMMgZ1h1YJ3B" }, { "_id": "nslx2nT3p4lNkmdp", @@ -1605,7 +1676,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1696,7 +1772,8 @@ "createdTime": 1661787234222, "modifiedTime": 1661791116892, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!qXzMsRTHEodqO8l2.nslx2nT3p4lNkmdp" }, { "_id": "zMAWdyc8UVb37BK4", @@ -1711,7 +1788,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1802,7 +1884,8 @@ "createdTime": 1661787234245, "modifiedTime": 1661791116892, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!qXzMsRTHEodqO8l2.zMAWdyc8UVb37BK4" }, { "_id": "91Sw6vOIaO7U8DvM", @@ -1817,7 +1900,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1908,7 +1996,8 @@ "createdTime": 1661787234083, "modifiedTime": 1661791116893, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!qXzMsRTHEodqO8l2.91Sw6vOIaO7U8DvM" }, { "_id": "yfbK8gZqESlaoY5t", @@ -1923,7 +2012,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2014,7 +2108,8 @@ "createdTime": 1661787234243, "modifiedTime": 1661791116893, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!qXzMsRTHEodqO8l2.yfbK8gZqESlaoY5t" }, { "_id": "J6Jpw5XzB5aTeqnz", @@ -2029,7 +2124,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2120,7 +2220,8 @@ "createdTime": 1661787234111, "modifiedTime": 1661791116893, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!qXzMsRTHEodqO8l2.J6Jpw5XzB5aTeqnz" }, { "_id": "XzkJpE6XpZfKjODD", @@ -2135,7 +2236,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2226,7 +2332,8 @@ "createdTime": 1661787234160, "modifiedTime": 1661791116893, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!qXzMsRTHEodqO8l2.XzkJpE6XpZfKjODD" } ], "effects": [], @@ -2243,5 +2350,6 @@ "createdTime": 1661787233189, "modifiedTime": 1672596107216, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!qXzMsRTHEodqO8l2" } diff --git a/packs/src/monsters/fiend/succubus-incubus.json b/packs/src/monsters/fiend/succubus-incubus.json index cb0370582a..ba0ccc6a78 100644 --- a/packs/src/monsters/fiend/succubus-incubus.json +++ b/packs/src/monsters/fiend/succubus-incubus.json @@ -110,7 +110,12 @@ "environment": "", "cr": 4, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -464,7 +469,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -543,7 +553,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VmdyZDjqAc8vdncY.P3P1EukfOip32dtd" }, { "_id": "ZVMVqd01HraMcenH", @@ -556,7 +567,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -635,7 +651,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VmdyZDjqAc8vdncY.ZVMVqd01HraMcenH" }, { "_id": "oSlFzVMu0fdEfYt1", @@ -648,7 +665,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -757,7 +779,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VmdyZDjqAc8vdncY.oSlFzVMu0fdEfYt1" }, { "_id": "2bFCfFfjRNmhyE8A", @@ -770,7 +793,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -849,7 +877,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VmdyZDjqAc8vdncY.2bFCfFfjRNmhyE8A" }, { "_id": "eb0O9cQ8N6lovLyI", @@ -862,7 +891,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -946,7 +980,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VmdyZDjqAc8vdncY.eb0O9cQ8N6lovLyI" }, { "_id": "s1s5asgUorljP7SV", @@ -959,7 +994,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1038,7 +1078,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VmdyZDjqAc8vdncY.s1s5asgUorljP7SV" } ], "effects": [], @@ -1055,5 +1096,6 @@ "createdTime": 1661787232867, "modifiedTime": 1672596100885, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!VmdyZDjqAc8vdncY" } diff --git a/packs/src/monsters/fiend/vrock.json b/packs/src/monsters/fiend/vrock.json index 4b76f75388..be97687a62 100644 --- a/packs/src/monsters/fiend/vrock.json +++ b/packs/src/monsters/fiend/vrock.json @@ -110,7 +110,12 @@ "environment": "", "cr": 6, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -469,7 +474,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -548,7 +558,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!6oc29m5uzzzb0pk3.mViCCkDhb1mA9oO6" }, { "_id": "oWzM562ozNrlfOZe", @@ -561,7 +572,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -640,7 +656,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!6oc29m5uzzzb0pk3.oWzM562ozNrlfOZe" }, { "_id": "JwAFMjU7vHDDL2Ib", @@ -653,7 +670,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -762,7 +784,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!6oc29m5uzzzb0pk3.JwAFMjU7vHDDL2Ib" }, { "_id": "H5JJE8uS39dTI3Vg", @@ -775,7 +798,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -884,7 +912,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!6oc29m5uzzzb0pk3.H5JJE8uS39dTI3Vg" }, { "_id": "eEVWpD5omMdUkWLu", @@ -897,7 +926,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -981,7 +1015,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!6oc29m5uzzzb0pk3.eEVWpD5omMdUkWLu" }, { "_id": "Ijd3GKLRlMzwoSe1", @@ -994,7 +1029,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1073,7 +1113,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!6oc29m5uzzzb0pk3.Ijd3GKLRlMzwoSe1" } ], "effects": [], @@ -1090,5 +1131,6 @@ "createdTime": 1661787232602, "modifiedTime": 1672596092645, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!6oc29m5uzzzb0pk3" } diff --git a/packs/src/monsters/giant/cloud-giant.json b/packs/src/monsters/giant/cloud-giant.json index 48fb32e547..52d0e40086 100644 --- a/packs/src/monsters/giant/cloud-giant.json +++ b/packs/src/monsters/giant/cloud-giant.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 9, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -457,7 +462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -532,7 +542,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Aw2wmqGIatxe2ImI.4xg2sYoD5Z4lRmkT" }, { "_id": "WFfPQjdkfYdIIiZT", @@ -545,7 +556,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -624,7 +640,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Aw2wmqGIatxe2ImI.WFfPQjdkfYdIIiZT" }, { "_id": "pH1i4SwsZRV3rq3v", @@ -637,7 +654,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -716,7 +738,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Aw2wmqGIatxe2ImI.pH1i4SwsZRV3rq3v" }, { "_id": "Jr0CfxY8xuFT6hoa", @@ -729,7 +752,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 40, "price": { @@ -842,7 +870,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Aw2wmqGIatxe2ImI.Jr0CfxY8xuFT6hoa" }, { "_id": "NXgSHbDNtVbxsItU", @@ -855,7 +884,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -964,7 +998,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Aw2wmqGIatxe2ImI.NXgSHbDNtVbxsItU" }, { "_id": "ghXTfe7sgCbgf1Q8", @@ -979,7 +1014,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1070,7 +1110,8 @@ "createdTime": 1661787234192, "modifiedTime": 1661791116159, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Aw2wmqGIatxe2ImI.ghXTfe7sgCbgf1Q8" }, { "_id": "IBJmWjzbQGu7M4UX", @@ -1085,7 +1126,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1176,7 +1222,8 @@ "createdTime": 1661787234109, "modifiedTime": 1661791116159, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Aw2wmqGIatxe2ImI.IBJmWjzbQGu7M4UX" }, { "_id": "Bnn9Nzajixvow9xi", @@ -1191,7 +1238,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1282,7 +1334,8 @@ "createdTime": 1661787234093, "modifiedTime": 1661791116160, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Aw2wmqGIatxe2ImI.Bnn9Nzajixvow9xi" }, { "_id": "pub0OWVEB71XQx1n", @@ -1297,7 +1350,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -1388,7 +1446,8 @@ "createdTime": 1661787234229, "modifiedTime": 1661791116160, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Aw2wmqGIatxe2ImI.pub0OWVEB71XQx1n" }, { "_id": "yfbK8gZqESlaoY5t", @@ -1403,7 +1462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1494,7 +1558,8 @@ "createdTime": 1661787234243, "modifiedTime": 1661791116160, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Aw2wmqGIatxe2ImI.yfbK8gZqESlaoY5t" }, { "_id": "wqfAVANuQonNBgnL", @@ -1509,7 +1574,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -1600,7 +1670,8 @@ "createdTime": 1661787234238, "modifiedTime": 1661791116160, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Aw2wmqGIatxe2ImI.wqfAVANuQonNBgnL" }, { "_id": "HQfd7jJyULIoGxrZ", @@ -1615,7 +1686,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1706,7 +1782,8 @@ "createdTime": 1661787234107, "modifiedTime": 1661791116161, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Aw2wmqGIatxe2ImI.HQfd7jJyULIoGxrZ" }, { "_id": "ZPd73HtKF3At11jh", @@ -1721,7 +1798,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -1812,7 +1894,8 @@ "createdTime": 1661787234163, "modifiedTime": 1661791116162, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Aw2wmqGIatxe2ImI.ZPd73HtKF3At11jh" }, { "_id": "2IWiZAJtOGDoKjiz", @@ -1827,7 +1910,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1918,7 +2006,8 @@ "createdTime": 1661787234058, "modifiedTime": 1661791116162, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Aw2wmqGIatxe2ImI.2IWiZAJtOGDoKjiz" } ], "effects": [], @@ -1935,5 +2024,6 @@ "createdTime": 1661787232651, "modifiedTime": 1672596094113, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!Aw2wmqGIatxe2ImI" } diff --git a/packs/src/monsters/giant/ettin.json b/packs/src/monsters/giant/ettin.json index 0972f4dbb1..e672e23c94 100644 --- a/packs/src/monsters/giant/ettin.json +++ b/packs/src/monsters/giant/ettin.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 4, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -457,7 +462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -536,7 +546,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KLCkHep28HBfdsky.hon1LZGigQRl2jBn" }, { "_id": "0NvLts9eWaCvcOOn", @@ -549,7 +560,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -628,7 +644,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KLCkHep28HBfdsky.0NvLts9eWaCvcOOn" }, { "_id": "FcbmWHMk3H4MGdxy", @@ -641,7 +658,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -720,7 +742,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KLCkHep28HBfdsky.FcbmWHMk3H4MGdxy" }, { "_id": "T1QQrbvnvnM73eIe", @@ -733,7 +756,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -846,7 +874,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KLCkHep28HBfdsky.T1QQrbvnvnM73eIe" }, { "_id": "5ri5zr7IJKsaZNF7", @@ -859,7 +888,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -972,7 +1006,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KLCkHep28HBfdsky.5ri5zr7IJKsaZNF7" } ], "effects": [], @@ -989,5 +1024,6 @@ "createdTime": 1661787232756, "modifiedTime": 1672596097006, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!KLCkHep28HBfdsky" } diff --git a/packs/src/monsters/giant/fire-giant.json b/packs/src/monsters/giant/fire-giant.json index 50644e82a9..800eae09b7 100644 --- a/packs/src/monsters/giant/fire-giant.json +++ b/packs/src/monsters/giant/fire-giant.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 9, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 65, "price": { @@ -557,7 +567,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!45Z5kogZEhawX1Ey.P38O0pGKUKXuYgd0" }, { "_id": "vgN2DlqQtt77mxKO", @@ -570,7 +581,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -649,7 +665,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!45Z5kogZEhawX1Ey.vgN2DlqQtt77mxKO" }, { "_id": "c8b8jy3sM3Z8gxm0", @@ -662,7 +679,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -775,7 +797,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!45Z5kogZEhawX1Ey.c8b8jy3sM3Z8gxm0" }, { "_id": "DgNvJ2F0HSMya3hp", @@ -788,7 +811,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -897,7 +925,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!45Z5kogZEhawX1Ey.DgNvJ2F0HSMya3hp" } ], "effects": [], @@ -914,5 +943,6 @@ "createdTime": 1661787232577, "modifiedTime": 1672596091842, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!45Z5kogZEhawX1Ey" } diff --git a/packs/src/monsters/giant/frost-giant.json b/packs/src/monsters/giant/frost-giant.json index 4cb0dc837e..33bb83307a 100644 --- a/packs/src/monsters/giant/frost-giant.json +++ b/packs/src/monsters/giant/frost-giant.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 8, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Buxe6dDK5Mw7kxe6.gCi538awNcOfcZf7" }, { "_id": "9LXx1CaY98oYrwWK", @@ -580,7 +591,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 12, "price": { @@ -675,7 +691,8 @@ "createdTime": null, "modifiedTime": 1662588021210, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!Buxe6dDK5Mw7kxe6.9LXx1CaY98oYrwWK" }, { "_id": "LVOGKiIm4UTD4fpj", @@ -688,7 +705,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -801,7 +823,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Buxe6dDK5Mw7kxe6.LVOGKiIm4UTD4fpj" }, { "_id": "i49lwJ84vB720EPW", @@ -814,7 +837,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -893,7 +921,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Buxe6dDK5Mw7kxe6.i49lwJ84vB720EPW" } ], "effects": [], @@ -910,5 +939,6 @@ "createdTime": 1661787232665, "modifiedTime": 1672596094588, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!Buxe6dDK5Mw7kxe6" } diff --git a/packs/src/monsters/giant/hill-giant.json b/packs/src/monsters/giant/hill-giant.json index 3b181c07de..740d40aea8 100644 --- a/packs/src/monsters/giant/hill-giant.json +++ b/packs/src/monsters/giant/hill-giant.json @@ -110,7 +110,12 @@ "environment": "Hill", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -456,7 +461,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -535,7 +545,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!9g4N9sjyh8Ql46to.1k58ryEYEYijhYOb" }, { "_id": "250gOq5bpqIHb7rw", @@ -548,7 +559,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -661,7 +677,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!9g4N9sjyh8Ql46to.250gOq5bpqIHb7rw" }, { "_id": "lpyNJHYnhFtpLgo9", @@ -674,7 +691,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -783,7 +805,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!9g4N9sjyh8Ql46to.lpyNJHYnhFtpLgo9" } ], "effects": [], @@ -800,5 +823,6 @@ "createdTime": 1661787232641, "modifiedTime": 1672596093803, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!9g4N9sjyh8Ql46to" } diff --git a/packs/src/monsters/giant/ogre.json b/packs/src/monsters/giant/ogre.json index d866f616ab..aa787d3b31 100644 --- a/packs/src/monsters/giant/ogre.json +++ b/packs/src/monsters/giant/ogre.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -457,7 +462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -570,7 +580,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!eIGowKTkEBC9gUzx.1bqysUVTadmvi8nb" }, { "_id": "tXgnd9qKOE2b7Wis", @@ -583,7 +594,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -696,7 +712,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!eIGowKTkEBC9gUzx.tXgnd9qKOE2b7Wis" }, { "_id": "lJ2gJxLDBbFtLwdk", @@ -709,7 +726,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 12, "price": { @@ -808,7 +830,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!eIGowKTkEBC9gUzx.lJ2gJxLDBbFtLwdk" } ], "effects": [], @@ -825,5 +848,6 @@ "createdTime": 1661787232943, "modifiedTime": 1672596102923, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!eIGowKTkEBC9gUzx" } diff --git a/packs/src/monsters/giant/oni.json b/packs/src/monsters/giant/oni.json index bf0448558d..5b2a8ee016 100644 --- a/packs/src/monsters/giant/oni.json +++ b/packs/src/monsters/giant/oni.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 7, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -457,7 +462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 55, "price": { @@ -556,7 +566,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!L1w8yBkInMscfJ3F.m65uENAa93Pz8lLl" }, { "_id": "FC0FNE8O4rnbth8s", @@ -569,7 +580,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -682,7 +698,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!L1w8yBkInMscfJ3F.FC0FNE8O4rnbth8s" }, { "_id": "q7J7PERrJb2vxtlt", @@ -695,7 +712,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -804,7 +826,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!L1w8yBkInMscfJ3F.q7J7PERrJb2vxtlt" }, { "_id": "HiGvFK1bT8zkJA3r", @@ -817,7 +840,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -896,7 +924,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!L1w8yBkInMscfJ3F.HiGvFK1bT8zkJA3r" }, { "_id": "7YSwI62Budsr6HzO", @@ -909,7 +938,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -988,7 +1022,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!L1w8yBkInMscfJ3F.7YSwI62Budsr6HzO" }, { "_id": "8liUuXPhjNLKYMMx", @@ -1001,7 +1036,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1085,7 +1125,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!L1w8yBkInMscfJ3F.8liUuXPhjNLKYMMx" }, { "_id": "HJDOmnRX2zQuXraB", @@ -1098,7 +1139,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1177,7 +1223,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!L1w8yBkInMscfJ3F.HJDOmnRX2zQuXraB" }, { "_id": "QGNzJqfTHnbhjzFN", @@ -1190,7 +1237,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1269,7 +1321,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!L1w8yBkInMscfJ3F.QGNzJqfTHnbhjzFN" }, { "_id": "S7VbUetIfVT7B6Eq", @@ -1284,7 +1337,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1375,7 +1433,8 @@ "createdTime": 1661787234139, "modifiedTime": 1661791116422, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!L1w8yBkInMscfJ3F.S7VbUetIfVT7B6Eq" }, { "_id": "1N8dDMMgZ1h1YJ3B", @@ -1390,7 +1449,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1481,7 +1545,8 @@ "createdTime": 1661787234056, "modifiedTime": 1661791116423, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!L1w8yBkInMscfJ3F.1N8dDMMgZ1h1YJ3B" }, { "_id": "eS7XnnApoxRxYXPs", @@ -1496,7 +1561,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1587,7 +1657,8 @@ "createdTime": 1661787234185, "modifiedTime": 1661791116423, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!L1w8yBkInMscfJ3F.eS7XnnApoxRxYXPs" }, { "_id": "RpKjTlYASrfqUPVA", @@ -1602,7 +1673,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1698,7 +1774,8 @@ "createdTime": 1661787234138, "modifiedTime": 1661791116423, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!L1w8yBkInMscfJ3F.RpKjTlYASrfqUPVA" }, { "_id": "2IWiZAJtOGDoKjiz", @@ -1713,7 +1790,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1804,7 +1886,8 @@ "createdTime": 1661787234058, "modifiedTime": 1661791116423, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!L1w8yBkInMscfJ3F.2IWiZAJtOGDoKjiz" }, { "_id": "KhwiSi9fwVfUPtku", @@ -1817,7 +1900,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1915,7 +2003,8 @@ "createdTime": 1661787234117, "modifiedTime": 1661791116424, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!L1w8yBkInMscfJ3F.KhwiSi9fwVfUPtku" } ], "effects": [], @@ -1932,5 +2021,6 @@ "createdTime": 1661787232765, "modifiedTime": 1672596097327, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!L1w8yBkInMscfJ3F" } diff --git a/packs/src/monsters/giant/stone-giant.json b/packs/src/monsters/giant/stone-giant.json index 5ce3998300..31c01f3b1f 100644 --- a/packs/src/monsters/giant/stone-giant.json +++ b/packs/src/monsters/giant/stone-giant.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 7, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -456,7 +461,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -569,7 +579,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SOin81NWijHRvXFK.Tm2NY0eSI6InRcsa" }, { "_id": "W7aeXkpOJ1TwM0dq", @@ -582,7 +593,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -661,7 +677,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SOin81NWijHRvXFK.W7aeXkpOJ1TwM0dq" }, { "_id": "eiNNUlTgJyVFcQkO", @@ -674,7 +691,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -783,7 +805,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SOin81NWijHRvXFK.eiNNUlTgJyVFcQkO" }, { "_id": "HxKKuoyc6AYGLsIX", @@ -796,7 +819,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -875,7 +903,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SOin81NWijHRvXFK.HxKKuoyc6AYGLsIX" }, { "_id": "zqsYu35qYHNNeTWE", @@ -888,7 +917,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -967,7 +1001,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SOin81NWijHRvXFK.zqsYu35qYHNNeTWE" } ], "effects": [], @@ -984,5 +1019,6 @@ "createdTime": 1661787232833, "modifiedTime": 1672596100027, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!SOin81NWijHRvXFK" } diff --git a/packs/src/monsters/giant/storm-giant.json b/packs/src/monsters/giant/storm-giant.json index 332d3b2253..11a1ade7f4 100644 --- a/packs/src/monsters/giant/storm-giant.json +++ b/packs/src/monsters/giant/storm-giant.json @@ -110,7 +110,12 @@ "environment": "Coastal", "cr": 13, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -462,7 +467,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 45, "price": { @@ -561,7 +571,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!68bAMIpe4jvDeR9G.PMXLrGDWGu9amL2X" }, { "_id": "3vDo83oAycRGB85G", @@ -574,7 +585,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -653,7 +669,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!68bAMIpe4jvDeR9G.3vDo83oAycRGB85G" }, { "_id": "iwN0z7f5LF9AAbRJ", @@ -666,7 +683,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -779,7 +801,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!68bAMIpe4jvDeR9G.iwN0z7f5LF9AAbRJ" }, { "_id": "2tzFjiAiXJLEpuCn", @@ -792,7 +815,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -871,7 +899,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!68bAMIpe4jvDeR9G.2tzFjiAiXJLEpuCn" }, { "_id": "k0g8uqoYdJ4LVxcn", @@ -884,7 +913,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -993,7 +1027,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!68bAMIpe4jvDeR9G.k0g8uqoYdJ4LVxcn" }, { "_id": "KUffpBEiNWnVK3W6", @@ -1006,7 +1041,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1085,7 +1125,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!68bAMIpe4jvDeR9G.KUffpBEiNWnVK3W6" }, { "_id": "bRdk2uZ6iTuNGUIL", @@ -1098,7 +1139,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1207,7 +1253,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!68bAMIpe4jvDeR9G.bRdk2uZ6iTuNGUIL" }, { "_id": "ghXTfe7sgCbgf1Q8", @@ -1222,7 +1269,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1313,7 +1365,8 @@ "createdTime": 1661787234192, "modifiedTime": 1661791116062, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!68bAMIpe4jvDeR9G.ghXTfe7sgCbgf1Q8" }, { "_id": "pub0OWVEB71XQx1n", @@ -1328,7 +1381,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -1419,7 +1477,8 @@ "createdTime": 1661787234229, "modifiedTime": 1661791116064, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!68bAMIpe4jvDeR9G.pub0OWVEB71XQx1n" }, { "_id": "MRxldJd6C4bsBo3O", @@ -1434,7 +1493,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1525,7 +1589,8 @@ "createdTime": 1661787234127, "modifiedTime": 1661791116064, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!68bAMIpe4jvDeR9G.MRxldJd6C4bsBo3O" }, { "_id": "Bnn9Nzajixvow9xi", @@ -1540,7 +1605,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1631,7 +1701,8 @@ "createdTime": 1661787234093, "modifiedTime": 1661791116065, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!68bAMIpe4jvDeR9G.Bnn9Nzajixvow9xi" }, { "_id": "ZPd73HtKF3At11jh", @@ -1646,7 +1717,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -1737,7 +1813,8 @@ "createdTime": 1661787234163, "modifiedTime": 1661791116067, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!68bAMIpe4jvDeR9G.ZPd73HtKF3At11jh" }, { "_id": "13uVuBQP6VaiSPvC", @@ -1752,7 +1829,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1843,7 +1925,8 @@ "createdTime": 1661787234054, "modifiedTime": 1661791116068, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!68bAMIpe4jvDeR9G.13uVuBQP6VaiSPvC" } ], "effects": [], @@ -1860,5 +1943,6 @@ "createdTime": 1661787232600, "modifiedTime": 1672596092591, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!68bAMIpe4jvDeR9G" } diff --git a/packs/src/monsters/giant/troll.json b/packs/src/monsters/giant/troll.json index d6650afc33..41f21dcd69 100644 --- a/packs/src/monsters/giant/troll.json +++ b/packs/src/monsters/giant/troll.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -456,7 +461,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -569,7 +579,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZHAFrnCwCz17dmLc.R7DpgLP3aFNmAgOc" }, { "_id": "ahGwFmyt6nItUOAK", @@ -582,7 +593,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -691,7 +707,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZHAFrnCwCz17dmLc.ahGwFmyt6nItUOAK" }, { "_id": "N3vrbUmlL4FEARJ8", @@ -704,7 +721,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -779,7 +801,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZHAFrnCwCz17dmLc.N3vrbUmlL4FEARJ8" }, { "_id": "BA9WmovILanbvacP", @@ -792,7 +815,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -871,7 +899,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZHAFrnCwCz17dmLc.BA9WmovILanbvacP" }, { "_id": "yWYB2iyRA61AjcVJ", @@ -884,7 +913,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -968,7 +1002,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZHAFrnCwCz17dmLc.yWYB2iyRA61AjcVJ" } ], "effects": [], @@ -985,5 +1020,6 @@ "createdTime": 1661787232889, "modifiedTime": 1672596101414, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!ZHAFrnCwCz17dmLc" } diff --git a/packs/src/monsters/humanoid/acolyte.json b/packs/src/monsters/humanoid/acolyte.json index 6c636605ce..c3adb08ec7 100644 --- a/packs/src/monsters/humanoid/acolyte.json +++ b/packs/src/monsters/humanoid/acolyte.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0.25, "spellLevel": 1, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!CHEUjiYrVM9X0vIT.38I6bGoguRRefN6W" }, { "_id": "swpThURVHnaQRjfY", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -659,7 +675,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!CHEUjiYrVM9X0vIT.swpThURVHnaQRjfY" }, { "_id": "Bnn9Nzajixvow9xi", @@ -674,7 +691,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -765,7 +787,8 @@ "createdTime": 1661787234093, "modifiedTime": 1661791116300, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!CHEUjiYrVM9X0vIT.Bnn9Nzajixvow9xi" }, { "_id": "n9pJzTDsAwQxJVRl", @@ -780,7 +803,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -876,7 +904,8 @@ "createdTime": 1661787234221, "modifiedTime": 1661791116301, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!CHEUjiYrVM9X0vIT.n9pJzTDsAwQxJVRl" }, { "_id": "MUO1uYN7JR1hm4dR", @@ -891,7 +920,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -982,7 +1016,8 @@ "createdTime": 1661787234127, "modifiedTime": 1661791116301, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!CHEUjiYrVM9X0vIT.MUO1uYN7JR1hm4dR" }, { "_id": "8dzaICjGy6mTUaUr", @@ -995,7 +1030,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1121,7 +1161,8 @@ "origin": "Item.kZZAZ6kp9YzgPQEe", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!actors.items.effects!CHEUjiYrVM9X0vIT.8dzaICjGy6mTUaUr.8rP3gwmXVTgZqYZE" } ], "folder": null, @@ -1141,7 +1182,8 @@ "createdTime": 1661787234081, "modifiedTime": 1661791116301, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!CHEUjiYrVM9X0vIT.8dzaICjGy6mTUaUr" }, { "_id": "gvdA9nPuWLck4tBl", @@ -1156,7 +1198,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -1247,7 +1294,8 @@ "createdTime": 1661787234193, "modifiedTime": 1661791116302, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!CHEUjiYrVM9X0vIT.gvdA9nPuWLck4tBl" }, { "_id": "uUWb1wZgtMou0TVP", @@ -1262,7 +1310,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1358,7 +1411,8 @@ "createdTime": 1661787234236, "modifiedTime": 1661791116302, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!CHEUjiYrVM9X0vIT.uUWb1wZgtMou0TVP" } ], "effects": [ @@ -1412,7 +1466,8 @@ "origin": "Compendium.dnd5e.monsters.CHEUjiYrVM9X0vIT.Item.8dzaICjGy6mTUaUr", "tint": null, "transfer": false, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!CHEUjiYrVM9X0vIT.8rP3gwmXVTgZqYZE" } ], "folder": null, @@ -1428,5 +1483,6 @@ "createdTime": 1661787232667, "modifiedTime": 1672596094680, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!CHEUjiYrVM9X0vIT" } diff --git a/packs/src/monsters/humanoid/archmage.json b/packs/src/monsters/humanoid/archmage.json index 4c2d51bd2f..f4fa46a712 100644 --- a/packs/src/monsters/humanoid/archmage.json +++ b/packs/src/monsters/humanoid/archmage.json @@ -110,7 +110,12 @@ "environment": "", "cr": 12, "spellLevel": 18, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.gSrKQbka5aLxlcJz" }, { "_id": "Wa6dckSFp3pY8yH5", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.Wa6dckSFp3pY8yH5" }, { "_id": "vgTunE3gLps5Q595", @@ -638,7 +655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -751,7 +773,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.vgTunE3gLps5Q595" }, { "_id": "EOmsUcFQJTfG2oio", @@ -766,7 +789,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -862,7 +890,8 @@ "createdTime": 1661787234100, "modifiedTime": 1661791116187, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.EOmsUcFQJTfG2oio" }, { "_id": "Bnn9Nzajixvow9xi", @@ -877,7 +906,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -968,7 +1002,8 @@ "createdTime": 1661787234093, "modifiedTime": 1661791116188, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.Bnn9Nzajixvow9xi" }, { "_id": "Utk1OQRwYkMkFRD3", @@ -983,7 +1018,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1074,7 +1114,8 @@ "createdTime": 1661787234148, "modifiedTime": 1661791116188, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.Utk1OQRwYkMkFRD3" }, { "_id": "udsLtG0BugXHR2JQ", @@ -1089,7 +1130,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1180,7 +1226,8 @@ "createdTime": 1661787234236, "modifiedTime": 1661791116188, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.udsLtG0BugXHR2JQ" }, { "_id": "XvbiNhNqXXIFisIy", @@ -1195,7 +1242,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1291,7 +1343,8 @@ "createdTime": 1661787234159, "modifiedTime": 1661791116189, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.XvbiNhNqXXIFisIy" }, { "_id": "ghXTfe7sgCbgf1Q8", @@ -1306,7 +1359,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1397,7 +1455,8 @@ "createdTime": 1661787234192, "modifiedTime": 1661791116189, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.ghXTfe7sgCbgf1Q8" }, { "_id": "3OZnNhunvRtPOQmH", @@ -1412,7 +1471,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -1503,7 +1567,8 @@ "createdTime": 1661787234064, "modifiedTime": 1661791116189, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.3OZnNhunvRtPOQmH" }, { "_id": "CKZTpZlxj7hjjo2H", @@ -1516,7 +1581,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1618,7 +1688,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!actors.items.effects!B7lBOr1AahNZs4a6.CKZTpZlxj7hjjo2H.cfwMU7LuOJ619Lny" } ], "folder": null, @@ -1638,7 +1709,8 @@ "createdTime": 1661787234095, "modifiedTime": 1661791116190, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.CKZTpZlxj7hjjo2H" }, { "_id": "41JIhpDyM9Anm7cs", @@ -1653,7 +1725,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1749,7 +1826,8 @@ "createdTime": 1661787234065, "modifiedTime": 1661791116192, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.41JIhpDyM9Anm7cs" }, { "_id": "ppWAAEul0QHtm4er", @@ -1764,7 +1842,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1855,7 +1938,8 @@ "createdTime": 1661787234229, "modifiedTime": 1661791116192, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.ppWAAEul0QHtm4er" }, { "_id": "X4c8xCkmF8U9HUMz", @@ -1868,7 +1952,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1961,7 +2050,8 @@ "createdTime": 1661787234155, "modifiedTime": 1661791116193, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.X4c8xCkmF8U9HUMz" }, { "_id": "wqfAVANuQonNBgnL", @@ -1976,7 +2066,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -2067,7 +2162,8 @@ "createdTime": 1661787234238, "modifiedTime": 1661791116193, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.wqfAVANuQonNBgnL" }, { "_id": "Ek45cBpVXvJdv1Qy", @@ -2082,7 +2178,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -2173,7 +2274,8 @@ "createdTime": 1661787234102, "modifiedTime": 1661791116193, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.Ek45cBpVXvJdv1Qy" }, { "_id": "yfbK8gZqESlaoY5t", @@ -2188,7 +2290,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2279,7 +2386,8 @@ "createdTime": 1661787234243, "modifiedTime": 1661791116194, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.yfbK8gZqESlaoY5t" }, { "_id": "IyikgTEOTv701jgQ", @@ -2294,7 +2402,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2390,7 +2503,8 @@ "createdTime": 1661787234110, "modifiedTime": 1661791116194, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.IyikgTEOTv701jgQ" }, { "_id": "pxpb2eOB6bv4phAf", @@ -2405,7 +2519,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2496,7 +2615,8 @@ "createdTime": 1661787234230, "modifiedTime": 1661791116194, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.pxpb2eOB6bv4phAf" }, { "_id": "avD5XUtkBPQQR97c", @@ -2511,7 +2631,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2625,7 +2750,8 @@ "origin": "Item.OtcTsffCQaOFkr9K", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!actors.items.effects!B7lBOr1AahNZs4a6.avD5XUtkBPQQR97c.lVKx8swB08jm6IFE" }, { "_id": "UUXwEKSPX4nYfDzo", @@ -2653,7 +2779,8 @@ "origin": "Item.OtcTsffCQaOFkr9K", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!actors.items.effects!B7lBOr1AahNZs4a6.avD5XUtkBPQQR97c.UUXwEKSPX4nYfDzo" } ], "folder": null, @@ -2664,7 +2791,8 @@ "createdTime": 1661787234170, "modifiedTime": 1661791116195, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.avD5XUtkBPQQR97c" }, { "_id": "ReMbjfeOKoSj3O79", @@ -2679,7 +2807,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2806,7 +2939,8 @@ "tint": null, "transfer": true, "flags": {}, - "sort": 0 + "sort": 0, + "_key": "!actors.items.effects!B7lBOr1AahNZs4a6.ReMbjfeOKoSj3O79.cSVCA9h5OEo5lfBE" } ], "folder": null, @@ -2817,7 +2951,8 @@ "createdTime": 1661787234137, "modifiedTime": 1661791116195, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.ReMbjfeOKoSj3O79" }, { "_id": "RpKjTlYASrfqUPVA", @@ -2832,7 +2967,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2928,7 +3068,8 @@ "createdTime": 1661787234138, "modifiedTime": 1661791116195, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.RpKjTlYASrfqUPVA" }, { "_id": "fVbCxFRaORalHB20", @@ -2943,7 +3084,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -3034,7 +3180,8 @@ "createdTime": 1661787234189, "modifiedTime": 1661791116198, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.fVbCxFRaORalHB20" }, { "_id": "o9ZCvuD2B1OTcubb", @@ -3049,7 +3196,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3140,7 +3292,8 @@ "createdTime": 1661787234223, "modifiedTime": 1661791116199, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.o9ZCvuD2B1OTcubb" }, { "_id": "WmQpxfjZwF3MGUby", @@ -3155,7 +3308,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3246,7 +3404,8 @@ "createdTime": 1661787234154, "modifiedTime": 1661791116199, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.WmQpxfjZwF3MGUby" }, { "_id": "L4J89JXqbKs6puEV", @@ -3261,7 +3420,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3352,7 +3516,8 @@ "createdTime": 1661787234119, "modifiedTime": 1661791116204, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.L4J89JXqbKs6puEV" }, { "_id": "bllEWfm9xfEKynhv", @@ -3367,7 +3532,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3458,7 +3628,8 @@ "createdTime": 1661787234171, "modifiedTime": 1661791116206, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.bllEWfm9xfEKynhv" }, { "_id": "JYuRBwxpoFhXduvD", @@ -3473,7 +3644,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3564,7 +3740,8 @@ "createdTime": 1661787234114, "modifiedTime": 1661791116206, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.JYuRBwxpoFhXduvD" }, { "_id": "1N8dDMMgZ1h1YJ3B", @@ -3579,7 +3756,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3670,7 +3852,8 @@ "createdTime": 1661787234056, "modifiedTime": 1661791116207, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.1N8dDMMgZ1h1YJ3B" }, { "_id": "A3q2gTNqG6fvNGrv", @@ -3685,7 +3868,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3776,7 +3964,8 @@ "createdTime": 1661787234086, "modifiedTime": 1661791116207, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!B7lBOr1AahNZs4a6.A3q2gTNqG6fvNGrv" } ], "effects": [ @@ -3806,7 +3995,8 @@ "transfer": false, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!B7lBOr1AahNZs4a6.cfwMU7LuOJ619Lny" }, { "_id": "lVKx8swB08jm6IFE", @@ -3834,7 +4024,8 @@ "origin": "Compendium.dnd5e.monsters.B7lBOr1AahNZs4a6.Item.avD5XUtkBPQQR97c", "tint": null, "transfer": false, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!B7lBOr1AahNZs4a6.lVKx8swB08jm6IFE" }, { "_id": "UUXwEKSPX4nYfDzo", @@ -3862,7 +4053,8 @@ "origin": "Compendium.dnd5e.monsters.B7lBOr1AahNZs4a6.Item.avD5XUtkBPQQR97c", "tint": null, "transfer": false, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!B7lBOr1AahNZs4a6.UUXwEKSPX4nYfDzo" }, { "label": "Stoneskin", @@ -3908,7 +4100,8 @@ "tint": null, "transfer": false, "flags": {}, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!B7lBOr1AahNZs4a6.4KtXvy5OXy2qUidh" } ], "folder": null, @@ -3924,5 +4117,6 @@ "createdTime": 1661787232655, "modifiedTime": 1672596094305, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!B7lBOr1AahNZs4a6" } diff --git a/packs/src/monsters/humanoid/assassin.json b/packs/src/monsters/humanoid/assassin.json index f50bd8cc82..fea3ad6609 100644 --- a/packs/src/monsters/humanoid/assassin.json +++ b/packs/src/monsters/humanoid/assassin.json @@ -110,7 +110,12 @@ "environment": "", "cr": 8, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -459,7 +464,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 13, "price": { @@ -558,7 +568,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!EMvcuOpu7ABCmBWi.D4VxUJfO4pVUiCNj" }, { "_id": "Ld00NpZe8Zl4J4Pi", @@ -571,7 +582,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -650,7 +666,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!EMvcuOpu7ABCmBWi.Ld00NpZe8Zl4J4Pi" }, { "_id": "crRphULq6iIdlq88", @@ -663,7 +680,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -742,7 +764,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!EMvcuOpu7ABCmBWi.crRphULq6iIdlq88" }, { "_id": "EcECOhaJIpCtN2o7", @@ -755,7 +778,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -839,7 +867,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!EMvcuOpu7ABCmBWi.EcECOhaJIpCtN2o7" }, { "_id": "zaYTSI1nKtzBnQwf", @@ -852,7 +881,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -931,7 +965,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!EMvcuOpu7ABCmBWi.zaYTSI1nKtzBnQwf" }, { "_id": "Kbg12IJ0YW79vP06", @@ -944,7 +979,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -1057,7 +1097,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!EMvcuOpu7ABCmBWi.Kbg12IJ0YW79vP06" }, { "_id": "rNQK7okIBNZ2zDvD", @@ -1070,7 +1111,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -1183,7 +1229,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!EMvcuOpu7ABCmBWi.rNQK7okIBNZ2zDvD" } ], "effects": [], @@ -1200,5 +1247,6 @@ "createdTime": 1661787232691, "modifiedTime": 1672596095190, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!EMvcuOpu7ABCmBWi" } diff --git a/packs/src/monsters/humanoid/bandit-captain.json b/packs/src/monsters/humanoid/bandit-captain.json index 5f26087511..ecb8a67f12 100644 --- a/packs/src/monsters/humanoid/bandit-captain.json +++ b/packs/src/monsters/humanoid/bandit-captain.json @@ -110,7 +110,12 @@ "environment": "", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -456,7 +461,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 13, "price": { @@ -555,7 +565,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!rb7OJt822wIO52qY.8NY9Oy7LGoZ1f7gW" }, { "_id": "u3rhYD4gsxWEFbMc", @@ -568,7 +579,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -647,7 +663,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!rb7OJt822wIO52qY.u3rhYD4gsxWEFbMc" }, { "_id": "tSPkVJScEndipsFU", @@ -660,7 +677,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -773,7 +795,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!rb7OJt822wIO52qY.tSPkVJScEndipsFU" }, { "_id": "mBUKIzY6aUW5Fnlm", @@ -786,7 +809,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -899,7 +927,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!rb7OJt822wIO52qY.mBUKIzY6aUW5Fnlm" }, { "_id": "mGcPB4SMyYkHFK9N", @@ -912,7 +941,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -991,7 +1025,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!rb7OJt822wIO52qY.mGcPB4SMyYkHFK9N" } ], "effects": [], @@ -1008,5 +1043,6 @@ "createdTime": 1661787233203, "modifiedTime": 1672596107582, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!rb7OJt822wIO52qY" } diff --git a/packs/src/monsters/humanoid/bandit.json b/packs/src/monsters/humanoid/bandit.json index 717ee6a596..c70db1b501 100644 --- a/packs/src/monsters/humanoid/bandit.json +++ b/packs/src/monsters/humanoid/bandit.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0.125, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!n4TEv7inVUkyZviN.4oIyAj7rN5JbTjDZ" }, { "_id": "hSxEhrT9CFdLG40m", @@ -580,7 +591,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -693,7 +709,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!n4TEv7inVUkyZviN.hSxEhrT9CFdLG40m" }, { "_id": "pByEnV0Y7QOI0ndA", @@ -706,7 +723,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -805,7 +827,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!n4TEv7inVUkyZviN.pByEnV0Y7QOI0ndA" } ], "effects": [], @@ -822,5 +845,6 @@ "createdTime": 1661787233149, "modifiedTime": 1672596105878, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!n4TEv7inVUkyZviN" } diff --git a/packs/src/monsters/humanoid/berserker.json b/packs/src/monsters/humanoid/berserker.json index bd52775dc8..6cf98a019f 100644 --- a/packs/src/monsters/humanoid/berserker.json +++ b/packs/src/monsters/humanoid/berserker.json @@ -110,7 +110,12 @@ "environment": "", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -456,7 +461,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 12, "price": { @@ -555,7 +565,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kz1t6xeXVwODpYb2.vdaEgOdpIO2o7GNX" }, { "_id": "Qzj9HKnvRGhYoggC", @@ -568,7 +579,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -647,7 +663,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kz1t6xeXVwODpYb2.Qzj9HKnvRGhYoggC" }, { "_id": "RrHhFZOd6QT75V3W", @@ -660,7 +677,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -773,7 +795,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kz1t6xeXVwODpYb2.RrHhFZOd6QT75V3W" } ], "effects": [], @@ -790,5 +813,6 @@ "createdTime": 1661787233018, "modifiedTime": 1672596104842, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!kz1t6xeXVwODpYb2" } diff --git a/packs/src/monsters/humanoid/bugbear.json b/packs/src/monsters/humanoid/bugbear.json index f3633a0c67..67dd1c6e1b 100644 --- a/packs/src/monsters/humanoid/bugbear.json +++ b/packs/src/monsters/humanoid/bugbear.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -457,7 +462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -570,7 +580,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!QtJairF0h18BRhEM.0ZKRgrkQppv6MYIq" }, { "_id": "CgwJLpd3sHn21cUQ", @@ -583,7 +594,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -667,7 +683,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!QtJairF0h18BRhEM.CgwJLpd3sHn21cUQ" }, { "_id": "BsMLwJ3gDd0jADY3", @@ -680,7 +697,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -759,7 +781,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!QtJairF0h18BRhEM.BsMLwJ3gDd0jADY3" }, { "_id": "SvFPSD4QGfNEvB0c", @@ -772,7 +795,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 12, "price": { @@ -871,7 +899,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!QtJairF0h18BRhEM.SvFPSD4QGfNEvB0c" }, { "_id": "sSs3hSzkKBMNBgTs", @@ -884,7 +913,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -983,7 +1017,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!QtJairF0h18BRhEM.sSs3hSzkKBMNBgTs" }, { "_id": "xwZYlJUYOv2J044p", @@ -996,7 +1031,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1109,7 +1149,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!QtJairF0h18BRhEM.xwZYlJUYOv2J044p" } ], "effects": [], @@ -1126,5 +1167,6 @@ "createdTime": 1661787232818, "modifiedTime": 1672596099578, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!QtJairF0h18BRhEM" } diff --git a/packs/src/monsters/humanoid/commoner.json b/packs/src/monsters/humanoid/commoner.json index f3d3193a69..1db087999b 100644 --- a/packs/src/monsters/humanoid/commoner.json +++ b/packs/src/monsters/humanoid/commoner.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!SqZRuJ8lt2KGJBbq.HwktDnB8qdr0BYGZ" } ], "effects": [], @@ -584,5 +595,6 @@ "createdTime": 1661787232838, "modifiedTime": 1672596100133, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!SqZRuJ8lt2KGJBbq" } diff --git a/packs/src/monsters/humanoid/cult-fanatic.json b/packs/src/monsters/humanoid/cult-fanatic.json index 6d6cc37c21..e64ef527fb 100644 --- a/packs/src/monsters/humanoid/cult-fanatic.json +++ b/packs/src/monsters/humanoid/cult-fanatic.json @@ -110,7 +110,12 @@ "environment": "", "cr": 2, "spellLevel": 4, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -456,7 +461,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -555,7 +565,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!tYfQIxCJT0WaaKmc.vTb2KSllrajm88Ni" }, { "_id": "lSteE7vBmM70Jy3Z", @@ -568,7 +579,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -647,7 +663,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!tYfQIxCJT0WaaKmc.lSteE7vBmM70Jy3Z" }, { "_id": "KRbUbk5AkQOabBhO", @@ -660,7 +677,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -739,7 +761,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!tYfQIxCJT0WaaKmc.KRbUbk5AkQOabBhO" }, { "_id": "WfqCnxOUS8aXxd7O", @@ -752,7 +775,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -831,7 +859,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!tYfQIxCJT0WaaKmc.WfqCnxOUS8aXxd7O" }, { "_id": "zTX7ZTUkqUMSbGII", @@ -844,7 +873,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -957,7 +991,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!tYfQIxCJT0WaaKmc.zTX7ZTUkqUMSbGII" }, { "_id": "Bnn9Nzajixvow9xi", @@ -972,7 +1007,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1063,7 +1103,8 @@ "createdTime": 1661787234093, "modifiedTime": 1661791116930, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!tYfQIxCJT0WaaKmc.Bnn9Nzajixvow9xi" }, { "_id": "n9pJzTDsAwQxJVRl", @@ -1078,7 +1119,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1174,7 +1220,8 @@ "createdTime": 1661787234221, "modifiedTime": 1661791116930, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!tYfQIxCJT0WaaKmc.n9pJzTDsAwQxJVRl" }, { "_id": "MUO1uYN7JR1hm4dR", @@ -1189,7 +1236,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1280,7 +1332,8 @@ "createdTime": 1661787234127, "modifiedTime": 1661791116931, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!tYfQIxCJT0WaaKmc.MUO1uYN7JR1hm4dR" }, { "_id": "arzCrMRgcNiQuh43", @@ -1295,7 +1348,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1386,7 +1444,8 @@ "createdTime": 1661787234169, "modifiedTime": 1661791116931, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!tYfQIxCJT0WaaKmc.arzCrMRgcNiQuh43" }, { "_id": "ksaaTxIbKx2sJfia", @@ -1401,7 +1460,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1497,7 +1561,8 @@ "createdTime": 1661787234216, "modifiedTime": 1661791116932, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!tYfQIxCJT0WaaKmc.ksaaTxIbKx2sJfia" }, { "_id": "jZ6JNykRtdQ90MOo", @@ -1512,7 +1577,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -1603,7 +1673,8 @@ "createdTime": 1661787234212, "modifiedTime": 1661791116932, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!tYfQIxCJT0WaaKmc.jZ6JNykRtdQ90MOo" }, { "_id": "3Lo9boi7P2ro6QV4", @@ -1618,7 +1689,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1709,7 +1785,8 @@ "createdTime": 1661787234063, "modifiedTime": 1661791116932, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!tYfQIxCJT0WaaKmc.3Lo9boi7P2ro6QV4" }, { "_id": "JbxsYXxSOTZbf9I0", @@ -1722,7 +1799,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -1820,7 +1902,8 @@ "createdTime": 1661787234115, "modifiedTime": 1661791116932, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!tYfQIxCJT0WaaKmc.JbxsYXxSOTZbf9I0" } ], "effects": [], @@ -1837,5 +1920,6 @@ "createdTime": 1661787233223, "modifiedTime": 1672596108311, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!tYfQIxCJT0WaaKmc" } diff --git a/packs/src/monsters/humanoid/cultist.json b/packs/src/monsters/humanoid/cultist.json index 0b55a95a83..6668fc5b74 100644 --- a/packs/src/monsters/humanoid/cultist.json +++ b/packs/src/monsters/humanoid/cultist.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0.125, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -553,7 +563,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qkLNA1lKMMJpxuWg.nfPMecUVS2iOgAKJ" }, { "_id": "MyhBa9G8ryUWGm5D", @@ -566,7 +577,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -645,7 +661,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qkLNA1lKMMJpxuWg.MyhBa9G8ryUWGm5D" }, { "_id": "dldXP9XwjVIdIj5U", @@ -658,7 +675,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -771,7 +793,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qkLNA1lKMMJpxuWg.dldXP9XwjVIdIj5U" } ], "effects": [], @@ -788,5 +811,6 @@ "createdTime": 1661787233194, "modifiedTime": 1672596107356, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!qkLNA1lKMMJpxuWg" } diff --git a/packs/src/monsters/humanoid/deep-gnome.json b/packs/src/monsters/humanoid/deep-gnome.json index 475fbfe0f8..0bc7032d08 100644 --- a/packs/src/monsters/humanoid/deep-gnome.json +++ b/packs/src/monsters/humanoid/deep-gnome.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "sm", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 20, "price": { @@ -557,7 +567,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZM1P6LoYSwMiIJN9.mhIdpV6rtYYjOBN5" }, { "_id": "8Yo6JM2NfjkpC8Hz", @@ -570,7 +581,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -649,7 +665,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZM1P6LoYSwMiIJN9.8Yo6JM2NfjkpC8Hz" }, { "_id": "JCSej95QR8svWsYz", @@ -662,7 +679,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -741,7 +763,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZM1P6LoYSwMiIJN9.JCSej95QR8svWsYz" }, { "_id": "AqLTSMp6MlcNK666", @@ -754,7 +777,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -867,7 +895,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZM1P6LoYSwMiIJN9.AqLTSMp6MlcNK666" }, { "_id": "pnfC0DIa1eqXGjku", @@ -880,7 +909,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -959,7 +993,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZM1P6LoYSwMiIJN9.pnfC0DIa1eqXGjku" }, { "_id": "YuhirWYJsQfL6zo5", @@ -972,7 +1007,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.25, "price": { @@ -1081,7 +1121,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ZM1P6LoYSwMiIJN9.YuhirWYJsQfL6zo5" }, { "_id": "aU62xVUBYkAQWIHv", @@ -1096,7 +1137,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1187,7 +1233,8 @@ "createdTime": 1661787234168, "modifiedTime": 1661791116635, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZM1P6LoYSwMiIJN9.aU62xVUBYkAQWIHv" }, { "_id": "zwGsAv6kmwzYGhh3", @@ -1202,7 +1249,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1293,7 +1345,8 @@ "createdTime": 1661787234247, "modifiedTime": 1661791116636, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZM1P6LoYSwMiIJN9.zwGsAv6kmwzYGhh3" }, { "_id": "UDUnlfPsOAbq2RSE", @@ -1308,7 +1361,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1399,7 +1457,8 @@ "createdTime": 1661787234147, "modifiedTime": 1661791116636, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZM1P6LoYSwMiIJN9.UDUnlfPsOAbq2RSE" }, { "_id": "A3q2gTNqG6fvNGrv", @@ -1414,7 +1473,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1505,7 +1569,8 @@ "createdTime": 1661787234086, "modifiedTime": 1661791116636, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!ZM1P6LoYSwMiIJN9.A3q2gTNqG6fvNGrv" } ], "effects": [], @@ -1522,5 +1587,6 @@ "createdTime": 1661787232890, "modifiedTime": 1672596101511, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!ZM1P6LoYSwMiIJN9" } diff --git a/packs/src/monsters/humanoid/drow.json b/packs/src/monsters/humanoid/drow.json index e402b72a4a..2b4b12f66d 100644 --- a/packs/src/monsters/humanoid/drow.json +++ b/packs/src/monsters/humanoid/drow.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -457,7 +462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -536,7 +546,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1vaBSMUfOy6JPJ14.Jwx7Sfs5m3RDWckF" }, { "_id": "A4OySWt5j3QXyAPW", @@ -549,7 +560,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -628,7 +644,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1vaBSMUfOy6JPJ14.A4OySWt5j3QXyAPW" }, { "_id": "Up2YzkDn0uBKQj6K", @@ -641,7 +658,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -720,7 +742,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1vaBSMUfOy6JPJ14.Up2YzkDn0uBKQj6K" }, { "_id": "G2nFsJdp1Q3gshyr", @@ -733,7 +756,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -846,7 +874,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1vaBSMUfOy6JPJ14.G2nFsJdp1Q3gshyr" }, { "_id": "LqnhZjRtRqhLIFTm", @@ -859,7 +888,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -972,7 +1006,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1vaBSMUfOy6JPJ14.LqnhZjRtRqhLIFTm" }, { "_id": "S684g3gtaxOsMxME", @@ -985,7 +1020,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 20, "price": { @@ -1084,7 +1124,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1vaBSMUfOy6JPJ14.S684g3gtaxOsMxME" }, { "_id": "S7VbUetIfVT7B6Eq", @@ -1099,7 +1140,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1190,7 +1236,8 @@ "createdTime": 1661787234139, "modifiedTime": 1661791116009, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!1vaBSMUfOy6JPJ14.S7VbUetIfVT7B6Eq" }, { "_id": "nqBDWkVOfcGZt4YU", @@ -1205,7 +1252,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1296,7 +1348,8 @@ "createdTime": 1661787234222, "modifiedTime": 1661791116010, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!1vaBSMUfOy6JPJ14.nqBDWkVOfcGZt4YU" }, { "_id": "CAxSzHWizrafT033", @@ -1311,7 +1364,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1402,7 +1460,8 @@ "createdTime": 1661787234094, "modifiedTime": 1661791116011, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!1vaBSMUfOy6JPJ14.CAxSzHWizrafT033" } ], "effects": [], @@ -1419,5 +1478,6 @@ "createdTime": 1661787232558, "modifiedTime": 1672596091242, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!1vaBSMUfOy6JPJ14" } diff --git a/packs/src/monsters/humanoid/druid.json b/packs/src/monsters/humanoid/druid.json index 4bfa61743c..752c778c88 100644 --- a/packs/src/monsters/humanoid/druid.json +++ b/packs/src/monsters/humanoid/druid.json @@ -110,7 +110,12 @@ "environment": "", "cr": 2, "spellLevel": 4, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -457,7 +462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -536,7 +546,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!K15Yl8JmB5iPircc.07sdy4qaaW4MaB8W" }, { "_id": "KUP8WEfLxlcY7K2x", @@ -549,7 +560,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -662,7 +678,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!K15Yl8JmB5iPircc.KUP8WEfLxlcY7K2x" }, { "_id": "SbSvZKkJASyk8jKo", @@ -677,7 +694,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -768,7 +790,8 @@ "createdTime": 1661787234141, "modifiedTime": 1661791116365, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!K15Yl8JmB5iPircc.SbSvZKkJASyk8jKo" }, { "_id": "eCPQuQkIabFKTl9u", @@ -783,7 +806,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -879,7 +907,8 @@ "createdTime": 1661787234183, "modifiedTime": 1661791116365, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!K15Yl8JmB5iPircc.eCPQuQkIabFKTl9u" }, { "name": "Entangle", @@ -891,7 +920,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -985,7 +1019,8 @@ "createdTime": 1661787234191, "modifiedTime": 1661791116366, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!K15Yl8JmB5iPircc.gMrWeG8fMDPRFiVe" }, { "_id": "B0pnIcc52O6G8hi8", @@ -1000,7 +1035,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1091,7 +1131,8 @@ "createdTime": 1661787234090, "modifiedTime": 1661791116366, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!K15Yl8JmB5iPircc.B0pnIcc52O6G8hi8" }, { "_id": "aL1F8fvYLtNzUbKu", @@ -1106,7 +1147,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1197,7 +1243,8 @@ "createdTime": 1661787234167, "modifiedTime": 1661791116366, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!K15Yl8JmB5iPircc.aL1F8fvYLtNzUbKu" }, { "_id": "WTbOQBsarsL1LuXJ", @@ -1212,7 +1259,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1308,7 +1360,8 @@ "createdTime": 1661787234152, "modifiedTime": 1661791116367, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!K15Yl8JmB5iPircc.WTbOQBsarsL1LuXJ" }, { "_id": "X8w9EzYLGc4vQ1H2", @@ -1323,7 +1376,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1414,7 +1472,8 @@ "createdTime": 1661787234156, "modifiedTime": 1661791116367, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!K15Yl8JmB5iPircc.X8w9EzYLGc4vQ1H2" }, { "_id": "VzgFzcmocr1X1cp4", @@ -1429,7 +1488,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -1525,7 +1589,8 @@ "createdTime": 1661787234149, "modifiedTime": 1661791116367, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!K15Yl8JmB5iPircc.VzgFzcmocr1X1cp4" }, { "_id": "JPwIEfgUPVebr5AH", @@ -1538,7 +1603,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1646,7 +1716,8 @@ "origin": "Item.VQMKMnQDw5rzL0zp", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!actors.items.effects!K15Yl8JmB5iPircc.JPwIEfgUPVebr5AH.uM6rgctYpcbCVSkn" } ], "folder": null, @@ -1666,7 +1737,8 @@ "createdTime": 1661787234113, "modifiedTime": 1661791116367, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!K15Yl8JmB5iPircc.JPwIEfgUPVebr5AH" } ], "effects": [ @@ -1702,7 +1774,8 @@ "origin": "Compendium.dnd5e.monsters.K15Yl8JmB5iPircc.Item.JPwIEfgUPVebr5AH", "tint": null, "transfer": false, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!K15Yl8JmB5iPircc.uM6rgctYpcbCVSkn" } ], "folder": null, @@ -1718,5 +1791,6 @@ "createdTime": 1661787232744, "modifiedTime": 1672596096691, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!K15Yl8JmB5iPircc" } diff --git a/packs/src/monsters/humanoid/duergar.json b/packs/src/monsters/humanoid/duergar.json index a71ef9c05d..1a5e7f622f 100644 --- a/packs/src/monsters/humanoid/duergar.json +++ b/packs/src/monsters/humanoid/duergar.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -459,7 +464,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 45, "price": { @@ -558,7 +568,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!iGBdQA3IuKsurcUy.QRv2TDbktMG2SBfC" }, { "_id": "sSs3hSzkKBMNBgTs", @@ -571,7 +582,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -670,7 +686,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!iGBdQA3IuKsurcUy.sSs3hSzkKBMNBgTs" }, { "_id": "7ePnUuyCcRkB5GHo", @@ -683,7 +700,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -762,7 +784,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!iGBdQA3IuKsurcUy.7ePnUuyCcRkB5GHo" }, { "_id": "kN6uf2h2Em4ol6Tz", @@ -775,7 +798,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -854,7 +882,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!iGBdQA3IuKsurcUy.kN6uf2h2Em4ol6Tz" }, { "_id": "gvmNtrdfZXCNiAY3", @@ -867,7 +896,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -946,7 +980,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!iGBdQA3IuKsurcUy.gvmNtrdfZXCNiAY3" }, { "_id": "tCtnqPPKQ9NxIDqd", @@ -959,7 +994,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -1072,7 +1112,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!iGBdQA3IuKsurcUy.tCtnqPPKQ9NxIDqd" }, { "_id": "fHe3YshNib2lsJ45", @@ -1085,7 +1126,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -1198,7 +1244,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!iGBdQA3IuKsurcUy.fHe3YshNib2lsJ45" }, { "_id": "lUm5wbaBhfO54dlB", @@ -1211,7 +1258,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1290,7 +1342,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!iGBdQA3IuKsurcUy.lUm5wbaBhfO54dlB" } ], "effects": [], @@ -1307,5 +1360,6 @@ "createdTime": 1661787232999, "modifiedTime": 1672596104279, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!iGBdQA3IuKsurcUy" } diff --git a/packs/src/monsters/humanoid/gladiator.json b/packs/src/monsters/humanoid/gladiator.json index a4c67e629c..76be5dde7a 100644 --- a/packs/src/monsters/humanoid/gladiator.json +++ b/packs/src/monsters/humanoid/gladiator.json @@ -110,7 +110,12 @@ "environment": "", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -456,7 +461,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 13, "price": { @@ -555,7 +565,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!fsPruAIDOg4tVrgb.GO2zHOdb2GBHd2U4" }, { "_id": "sSs3hSzkKBMNBgTs", @@ -568,7 +579,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -667,7 +683,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!fsPruAIDOg4tVrgb.sSs3hSzkKBMNBgTs" }, { "_id": "YbB6EsBwNaEzVlxU", @@ -680,7 +697,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -759,7 +781,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!fsPruAIDOg4tVrgb.YbB6EsBwNaEzVlxU" }, { "_id": "NPTnV9YupSeKJrQ0", @@ -772,7 +795,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -851,7 +879,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!fsPruAIDOg4tVrgb.NPTnV9YupSeKJrQ0" }, { "_id": "QuVUb9i809rjJWcL", @@ -864,7 +893,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -943,7 +977,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!fsPruAIDOg4tVrgb.QuVUb9i809rjJWcL" }, { "_id": "eL15erXXE9EuXWSB", @@ -956,7 +991,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -1069,7 +1109,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!fsPruAIDOg4tVrgb.eL15erXXE9EuXWSB" }, { "_id": "GrUneCbXCYngdpjf", @@ -1082,7 +1123,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1191,7 +1237,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!fsPruAIDOg4tVrgb.GrUneCbXCYngdpjf" }, { "_id": "AwP14Hu6dPdnSbQt", @@ -1204,7 +1251,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -1283,7 +1335,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!fsPruAIDOg4tVrgb.AwP14Hu6dPdnSbQt" } ], "effects": [], @@ -1300,5 +1353,6 @@ "createdTime": 1661787232965, "modifiedTime": 1672596103395, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!fsPruAIDOg4tVrgb" } diff --git a/packs/src/monsters/humanoid/gnoll.json b/packs/src/monsters/humanoid/gnoll.json index c19e112ab5..98a4c291d6 100644 --- a/packs/src/monsters/humanoid/gnoll.json +++ b/packs/src/monsters/humanoid/gnoll.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -456,7 +461,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 12, "price": { @@ -555,7 +565,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!R2GPY9BhRmmwZwkh.WlaPkHNlq3vBfxnk" }, { "_id": "sSs3hSzkKBMNBgTs", @@ -568,7 +579,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -667,7 +683,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!R2GPY9BhRmmwZwkh.sSs3hSzkKBMNBgTs" }, { "_id": "iBhjlawEB5iwUmoS", @@ -680,7 +697,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -759,7 +781,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!R2GPY9BhRmmwZwkh.iBhjlawEB5iwUmoS" }, { "_id": "fVB2xcZ4wVwiqEYf", @@ -772,7 +795,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -885,7 +913,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!R2GPY9BhRmmwZwkh.fVB2xcZ4wVwiqEYf" }, { "_id": "lsZzJMqxUIjbczLM", @@ -898,7 +927,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -1011,7 +1045,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!R2GPY9BhRmmwZwkh.lsZzJMqxUIjbczLM" }, { "_id": "2Squ8wLvm5nSzA8w", @@ -1024,7 +1059,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -1137,7 +1177,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!R2GPY9BhRmmwZwkh.2Squ8wLvm5nSzA8w" } ], "effects": [], @@ -1154,5 +1195,6 @@ "createdTime": 1661787232821, "modifiedTime": 1672596099634, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!R2GPY9BhRmmwZwkh" } diff --git a/packs/src/monsters/humanoid/goblin.json b/packs/src/monsters/humanoid/goblin.json index 256250f7c7..2772bb148e 100644 --- a/packs/src/monsters/humanoid/goblin.json +++ b/packs/src/monsters/humanoid/goblin.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "sm", @@ -457,7 +462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -556,7 +566,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!TjWQOgI3A4UAl7lC.Ti3XQOmTKdgcnpAa" }, { "_id": "sSs3hSzkKBMNBgTs", @@ -569,7 +580,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -668,7 +684,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!TjWQOgI3A4UAl7lC.sSs3hSzkKBMNBgTs" }, { "_id": "SxVatHq02vURYDt3", @@ -681,7 +698,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -760,7 +782,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!TjWQOgI3A4UAl7lC.SxVatHq02vURYDt3" }, { "_id": "S6UTTLu0bEB32HNG", @@ -773,7 +796,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -886,7 +914,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!TjWQOgI3A4UAl7lC.S6UTTLu0bEB32HNG" }, { "_id": "YqS3dsIlpWb2Q2UI", @@ -899,7 +928,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -1012,7 +1046,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!TjWQOgI3A4UAl7lC.YqS3dsIlpWb2Q2UI" } ], "effects": [], @@ -1029,5 +1064,6 @@ "createdTime": 1661787232846, "modifiedTime": 1672596100326, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!TjWQOgI3A4UAl7lC" } diff --git a/packs/src/monsters/humanoid/grimlock.json b/packs/src/monsters/humanoid/grimlock.json index 83e0477221..b87bcd06bb 100644 --- a/packs/src/monsters/humanoid/grimlock.json +++ b/packs/src/monsters/humanoid/grimlock.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -537,7 +547,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GpeQYtlo8oGvGlkM.MqBAJfU738aXBgBE" }, { "_id": "GUsD8GdOLhuqFUih", @@ -550,7 +561,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GpeQYtlo8oGvGlkM.GUsD8GdOLhuqFUih" }, { "_id": "B7KYqupW3iRUpWAU", @@ -638,7 +655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -717,7 +739,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GpeQYtlo8oGvGlkM.B7KYqupW3iRUpWAU" }, { "_id": "aEWZXCiyNusgb3Ro", @@ -730,7 +753,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -843,7 +871,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GpeQYtlo8oGvGlkM.aEWZXCiyNusgb3Ro" } ], "effects": [], @@ -860,5 +889,6 @@ "createdTime": 1661787232716, "modifiedTime": 1672596095914, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!GpeQYtlo8oGvGlkM" } diff --git a/packs/src/monsters/humanoid/guard.json b/packs/src/monsters/humanoid/guard.json index 98a9a36693..ceed34808e 100644 --- a/packs/src/monsters/humanoid/guard.json +++ b/packs/src/monsters/humanoid/guard.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0.125, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 20, "price": { @@ -553,7 +563,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!E9CvDPDg5dFEpVjS.2reHgwNJRFbhmxqA" }, { "_id": "sSs3hSzkKBMNBgTs", @@ -566,7 +577,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -665,7 +681,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!E9CvDPDg5dFEpVjS.sSs3hSzkKBMNBgTs" }, { "_id": "92uVNexE43Z8D18r", @@ -678,7 +695,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -791,7 +813,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!E9CvDPDg5dFEpVjS.92uVNexE43Z8D18r" } ], "effects": [], @@ -808,5 +831,6 @@ "createdTime": 1661787232681, "modifiedTime": 1672596095076, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!E9CvDPDg5dFEpVjS" } diff --git a/packs/src/monsters/humanoid/half-red-dragon-veteran.json b/packs/src/monsters/humanoid/half-red-dragon-veteran.json index bf7aa96001..e6aef919f9 100644 --- a/packs/src/monsters/humanoid/half-red-dragon-veteran.json +++ b/packs/src/monsters/humanoid/half-red-dragon-veteran.json @@ -110,7 +110,12 @@ "environment": "", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -459,7 +464,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 65, "price": { @@ -558,7 +568,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5TmstVMURpVtmNR3.gMtQsYeAPMGoYGrm" }, { "_id": "MTqXmkJOXkp4bFMQ", @@ -571,7 +582,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -650,7 +666,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5TmstVMURpVtmNR3.MTqXmkJOXkp4bFMQ" }, { "_id": "93eWZ75LncoC5U8d", @@ -663,7 +680,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -776,7 +798,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5TmstVMURpVtmNR3.93eWZ75LncoC5U8d" }, { "_id": "pl7hO2z20EnTaPZt", @@ -789,7 +812,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -902,7 +930,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5TmstVMURpVtmNR3.pl7hO2z20EnTaPZt" }, { "_id": "Jt9HuwZdYUCmEH5q", @@ -915,7 +944,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 18, "price": { @@ -1028,7 +1062,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5TmstVMURpVtmNR3.Jt9HuwZdYUCmEH5q" }, { "_id": "68Y4sNHbVetQN3wa", @@ -1041,7 +1076,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1125,7 +1165,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5TmstVMURpVtmNR3.68Y4sNHbVetQN3wa" } ], "effects": [], @@ -1142,5 +1183,6 @@ "createdTime": 1661787232594, "modifiedTime": 1672596092397, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!5TmstVMURpVtmNR3" } diff --git a/packs/src/monsters/humanoid/hobgoblin.json b/packs/src/monsters/humanoid/hobgoblin.json index 1206f4926f..12785f7011 100644 --- a/packs/src/monsters/humanoid/hobgoblin.json +++ b/packs/src/monsters/humanoid/hobgoblin.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -457,7 +462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -541,7 +551,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!6qnT52lZtZblgGw8.Y73kGtiKbGevpBCo" }, { "_id": "is4wHu9FG6SPackl", @@ -554,7 +565,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -667,7 +683,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!6qnT52lZtZblgGw8.is4wHu9FG6SPackl" }, { "_id": "ahUVLSMfFY5mqJ66", @@ -680,7 +697,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -793,7 +815,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!6qnT52lZtZblgGw8.ahUVLSMfFY5mqJ66" }, { "_id": "H7NwPMCFCLtZxIh7", @@ -806,7 +829,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 55, "price": { @@ -905,7 +933,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!6qnT52lZtZblgGw8.H7NwPMCFCLtZxIh7" }, { "_id": "sSs3hSzkKBMNBgTs", @@ -918,7 +947,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -1017,7 +1051,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!6qnT52lZtZblgGw8.sSs3hSzkKBMNBgTs" } ], "effects": [], @@ -1034,5 +1069,6 @@ "createdTime": 1661787232603, "modifiedTime": 1672596092699, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!6qnT52lZtZblgGw8" } diff --git a/packs/src/monsters/humanoid/knight.json b/packs/src/monsters/humanoid/knight.json index f5c76273a1..7615bbae7b 100644 --- a/packs/src/monsters/humanoid/knight.json +++ b/packs/src/monsters/humanoid/knight.json @@ -110,7 +110,12 @@ "environment": "", "cr": 3, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -456,7 +461,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 65, "price": { @@ -555,7 +565,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!D5UqYD1EnTrJaMTO.Y4OikSWAB33cwfR2" }, { "_id": "46b7R0DbKIsxvWcv", @@ -568,7 +579,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -647,7 +663,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!D5UqYD1EnTrJaMTO.46b7R0DbKIsxvWcv" }, { "_id": "iPLa96izrYFiVtaO", @@ -660,7 +677,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -773,7 +795,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!D5UqYD1EnTrJaMTO.iPLa96izrYFiVtaO" }, { "_id": "m68xw5aGQ7awxfYf", @@ -786,7 +809,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 18, "price": { @@ -899,7 +927,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!D5UqYD1EnTrJaMTO.m68xw5aGQ7awxfYf" }, { "_id": "FK0ZF8egty0u713z", @@ -912,7 +941,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -991,7 +1025,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!D5UqYD1EnTrJaMTO.FK0ZF8egty0u713z" }, { "_id": "AxY9pWHDr2M1SPCC", @@ -1004,7 +1039,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -1083,7 +1123,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!D5UqYD1EnTrJaMTO.AxY9pWHDr2M1SPCC" }, { "_id": "Sp9AkcXsLCN09C9v", @@ -1096,7 +1137,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1175,7 +1221,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!D5UqYD1EnTrJaMTO.Sp9AkcXsLCN09C9v" } ], "effects": [], @@ -1192,5 +1239,6 @@ "createdTime": 1661787232674, "modifiedTime": 1672596094867, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!D5UqYD1EnTrJaMTO" } diff --git a/packs/src/monsters/humanoid/kobold.json b/packs/src/monsters/humanoid/kobold.json index 166d6536b1..77c4eb5f55 100644 --- a/packs/src/monsters/humanoid/kobold.json +++ b/packs/src/monsters/humanoid/kobold.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 0.125, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "sm", @@ -457,7 +462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -536,7 +546,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5ngbctIMeEnuC1p1.HlRML24gXEmuamg9" }, { "_id": "pZLDhUyfsObRKMpP", @@ -549,7 +560,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -628,7 +644,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5ngbctIMeEnuC1p1.pZLDhUyfsObRKMpP" }, { "_id": "io78wguVwNy9VfZ4", @@ -641,7 +658,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -754,7 +776,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5ngbctIMeEnuC1p1.io78wguVwNy9VfZ4" }, { "_id": "0yHcZm2TzgOyt3fI", @@ -767,7 +790,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -880,7 +908,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5ngbctIMeEnuC1p1.0yHcZm2TzgOyt3fI" } ], "effects": [], @@ -897,5 +926,6 @@ "createdTime": 1661787232598, "modifiedTime": 1672596092492, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!5ngbctIMeEnuC1p1" } diff --git a/packs/src/monsters/humanoid/lizardfolk.json b/packs/src/monsters/humanoid/lizardfolk.json index ca1e20b871..4c2cc39c40 100644 --- a/packs/src/monsters/humanoid/lizardfolk.json +++ b/packs/src/monsters/humanoid/lizardfolk.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -456,7 +461,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -535,7 +545,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!57DofLgRQx16ARoc.14epJr1iwk3pnPVs" }, { "_id": "s88qLjZemkFRnB8Y", @@ -548,7 +559,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -627,7 +643,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!57DofLgRQx16ARoc.s88qLjZemkFRnB8Y" }, { "_id": "9x43sdgtqX8bOdiy", @@ -640,7 +657,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -753,7 +775,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!57DofLgRQx16ARoc.9x43sdgtqX8bOdiy" }, { "_id": "9T0RdBc0Tvsj6wJW", @@ -766,7 +789,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -875,7 +903,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!57DofLgRQx16ARoc.9T0RdBc0Tvsj6wJW" }, { "_id": "bPnovVAPXO7MdagI", @@ -888,7 +917,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -1001,7 +1035,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!57DofLgRQx16ARoc.bPnovVAPXO7MdagI" }, { "_id": "kZJqCMW6SxV5C0nu", @@ -1014,7 +1049,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -1123,7 +1163,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!57DofLgRQx16ARoc.kZJqCMW6SxV5C0nu" }, { "_id": "sSs3hSzkKBMNBgTs", @@ -1136,7 +1177,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 6, "price": { @@ -1235,7 +1281,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!57DofLgRQx16ARoc.sSs3hSzkKBMNBgTs" } ], "effects": [], @@ -1252,5 +1299,6 @@ "createdTime": 1661787232587, "modifiedTime": 1672596092185, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!57DofLgRQx16ARoc" } diff --git a/packs/src/monsters/humanoid/mage.json b/packs/src/monsters/humanoid/mage.json index c7b3f2b19f..8ca0e24223 100644 --- a/packs/src/monsters/humanoid/mage.json +++ b/packs/src/monsters/humanoid/mage.json @@ -110,7 +110,12 @@ "environment": "", "cr": 6, "spellLevel": 9, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -456,7 +461,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -535,7 +545,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!mQnsXanewsPiV7QE.tbKbwgcprUBciliF" }, { "_id": "LcMdsxbtVEhUDXju", @@ -548,7 +559,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -661,7 +677,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!mQnsXanewsPiV7QE.LcMdsxbtVEhUDXju" }, { "_id": "EOmsUcFQJTfG2oio", @@ -676,7 +693,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -772,7 +794,8 @@ "createdTime": 1661787234100, "modifiedTime": 1661791116808, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!mQnsXanewsPiV7QE.EOmsUcFQJTfG2oio" }, { "_id": "Bnn9Nzajixvow9xi", @@ -787,7 +810,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -878,7 +906,8 @@ "createdTime": 1661787234093, "modifiedTime": 1661791116808, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!mQnsXanewsPiV7QE.Bnn9Nzajixvow9xi" }, { "_id": "Utk1OQRwYkMkFRD3", @@ -893,7 +922,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -984,7 +1018,8 @@ "createdTime": 1661787234148, "modifiedTime": 1661791116809, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!mQnsXanewsPiV7QE.Utk1OQRwYkMkFRD3" }, { "_id": "udsLtG0BugXHR2JQ", @@ -999,7 +1034,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1090,7 +1130,8 @@ "createdTime": 1661787234236, "modifiedTime": 1661791116809, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!mQnsXanewsPiV7QE.udsLtG0BugXHR2JQ" }, { "_id": "ghXTfe7sgCbgf1Q8", @@ -1105,7 +1146,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1196,7 +1242,8 @@ "createdTime": 1661787234192, "modifiedTime": 1661791116809, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!mQnsXanewsPiV7QE.ghXTfe7sgCbgf1Q8" }, { "_id": "CKZTpZlxj7hjjo2H", @@ -1209,7 +1256,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1311,7 +1363,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!actors.items.effects!mQnsXanewsPiV7QE.CKZTpZlxj7hjjo2H.cfwMU7LuOJ619Lny" } ], "folder": null, @@ -1331,7 +1384,8 @@ "createdTime": 1661787234095, "modifiedTime": 1661791116810, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!mQnsXanewsPiV7QE.CKZTpZlxj7hjjo2H" }, { "_id": "41JIhpDyM9Anm7cs", @@ -1346,7 +1400,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1442,7 +1501,8 @@ "createdTime": 1661787234065, "modifiedTime": 1661791116810, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!mQnsXanewsPiV7QE.41JIhpDyM9Anm7cs" }, { "_id": "z1mx84ONwkXKUZd7", @@ -1455,7 +1515,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -1557,7 +1622,8 @@ "origin": "Item.FlLKKv7bQBlIAs11", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!actors.items.effects!mQnsXanewsPiV7QE.z1mx84ONwkXKUZd7.6pbotGIvqQkraPva" } ], "folder": null, @@ -1577,7 +1643,8 @@ "createdTime": 1661787234244, "modifiedTime": 1661791116810, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!mQnsXanewsPiV7QE.z1mx84ONwkXKUZd7" }, { "_id": "wqfAVANuQonNBgnL", @@ -1592,7 +1659,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -1683,7 +1755,8 @@ "createdTime": 1661787234238, "modifiedTime": 1661791116811, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!mQnsXanewsPiV7QE.wqfAVANuQonNBgnL" }, { "_id": "zMAWdyc8UVb37BK4", @@ -1698,7 +1771,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1789,7 +1867,8 @@ "createdTime": 1661787234245, "modifiedTime": 1661791116811, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!mQnsXanewsPiV7QE.zMAWdyc8UVb37BK4" }, { "_id": "Ek45cBpVXvJdv1Qy", @@ -1804,7 +1883,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -1895,7 +1979,8 @@ "createdTime": 1661787234102, "modifiedTime": 1661791116811, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!mQnsXanewsPiV7QE.Ek45cBpVXvJdv1Qy" }, { "_id": "ztgcdrWPshKRpFd0", @@ -1910,7 +1995,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2006,7 +2096,8 @@ "createdTime": 1661787234246, "modifiedTime": 1661791116812, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!mQnsXanewsPiV7QE.ztgcdrWPshKRpFd0" }, { "_id": "yfbK8gZqESlaoY5t", @@ -2021,7 +2112,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2112,7 +2208,8 @@ "createdTime": 1661787234243, "modifiedTime": 1661791116812, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!mQnsXanewsPiV7QE.yfbK8gZqESlaoY5t" }, { "_id": "tEpDmYZNGc9f5OhJ", @@ -2127,7 +2224,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2218,7 +2320,8 @@ "createdTime": 1661787234234, "modifiedTime": 1661791116812, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!mQnsXanewsPiV7QE.tEpDmYZNGc9f5OhJ" }, { "_id": "WN2LWEljYU6QqnRH", @@ -2233,7 +2336,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2333,7 +2441,8 @@ "createdTime": 1661787234152, "modifiedTime": 1661791116813, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!mQnsXanewsPiV7QE.WN2LWEljYU6QqnRH" }, { "_id": "RpKjTlYASrfqUPVA", @@ -2348,7 +2457,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2444,7 +2558,8 @@ "createdTime": 1661787234138, "modifiedTime": 1661791116813, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!mQnsXanewsPiV7QE.RpKjTlYASrfqUPVA" } ], "effects": [ @@ -2474,7 +2589,8 @@ "transfer": false, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!mQnsXanewsPiV7QE.cfwMU7LuOJ619Lny" }, { "_id": "6pbotGIvqQkraPva", @@ -2502,7 +2618,8 @@ "origin": "Compendium.dnd5e.monsters.mQnsXanewsPiV7QE.Item.z1mx84ONwkXKUZd7", "tint": null, "transfer": false, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!mQnsXanewsPiV7QE.6pbotGIvqQkraPva" } ], "folder": null, @@ -2518,5 +2635,6 @@ "createdTime": 1661787233145, "modifiedTime": 1672596105756, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!mQnsXanewsPiV7QE" } diff --git a/packs/src/monsters/humanoid/merfolk.json b/packs/src/monsters/humanoid/merfolk.json index a6cf1a641d..7de207d8f8 100644 --- a/packs/src/monsters/humanoid/merfolk.json +++ b/packs/src/monsters/humanoid/merfolk.json @@ -110,7 +110,12 @@ "environment": "Underwater", "cr": 0.125, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -457,7 +462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -536,7 +546,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KUpbXdn1XmHEeOPk.LNKGvXlnCZFO9bEv" }, { "_id": "sN28gnBGF2TVdd53", @@ -549,7 +560,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -662,7 +678,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KUpbXdn1XmHEeOPk.sN28gnBGF2TVdd53" } ], "effects": [], @@ -679,5 +696,6 @@ "createdTime": 1661787232760, "modifiedTime": 1672596097143, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!KUpbXdn1XmHEeOPk" } diff --git a/packs/src/monsters/humanoid/noble.json b/packs/src/monsters/humanoid/noble.json index 838892b84d..038960a649 100644 --- a/packs/src/monsters/humanoid/noble.json +++ b/packs/src/monsters/humanoid/noble.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0.125, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 20, "price": { @@ -553,7 +563,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GlaCGcgIP6YjBjGc.87olpriernjyGLbC" }, { "_id": "f12lOXuMaI21HDrz", @@ -566,7 +577,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -679,7 +695,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GlaCGcgIP6YjBjGc.f12lOXuMaI21HDrz" }, { "_id": "HhLmdqeivyDnsemN", @@ -692,7 +709,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -771,7 +793,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!GlaCGcgIP6YjBjGc.HhLmdqeivyDnsemN" } ], "effects": [], @@ -788,5 +811,6 @@ "createdTime": 1661787232715, "modifiedTime": 1672596095876, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!GlaCGcgIP6YjBjGc" } diff --git a/packs/src/monsters/humanoid/orc.json b/packs/src/monsters/humanoid/orc.json index 615e4e60c7..3dd7f2ea79 100644 --- a/packs/src/monsters/humanoid/orc.json +++ b/packs/src/monsters/humanoid/orc.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -457,7 +462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 12, "price": { @@ -556,7 +566,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!HB49mCOVBXwWeKWQ.MY9hQkOnh2onjZEh" }, { "_id": "Go8ESMzuWcYaFcqE", @@ -569,7 +580,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -648,7 +664,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!HB49mCOVBXwWeKWQ.Go8ESMzuWcYaFcqE" }, { "_id": "bGmBlXrvTBQgPMBJ", @@ -661,7 +678,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -774,7 +796,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!HB49mCOVBXwWeKWQ.bGmBlXrvTBQgPMBJ" }, { "_id": "SrRZ2hBUcaXZiRab", @@ -787,7 +810,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -900,7 +928,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!HB49mCOVBXwWeKWQ.SrRZ2hBUcaXZiRab" } ], "effects": [], @@ -917,5 +946,6 @@ "createdTime": 1661787232720, "modifiedTime": 1672596095993, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!HB49mCOVBXwWeKWQ" } diff --git a/packs/src/monsters/humanoid/priest.json b/packs/src/monsters/humanoid/priest.json index 620d900c50..5708df9367 100644 --- a/packs/src/monsters/humanoid/priest.json +++ b/packs/src/monsters/humanoid/priest.json @@ -110,7 +110,12 @@ "environment": "", "cr": 2, "spellLevel": 5, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -456,7 +461,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 20, "price": { @@ -555,7 +565,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!PVD5wRdyO7iCJPs1.bndaCEOeIP8RgbU1" }, { "_id": "J12x6xIwx1aCEm1e", @@ -568,7 +579,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -647,7 +663,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!PVD5wRdyO7iCJPs1.J12x6xIwx1aCEm1e" }, { "_id": "9LzZrzdWIZpjFIGV", @@ -660,7 +677,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -744,7 +766,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!PVD5wRdyO7iCJPs1.9LzZrzdWIZpjFIGV" }, { "_id": "B0jROhxuoqvfmz2B", @@ -757,7 +780,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -870,7 +898,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!PVD5wRdyO7iCJPs1.B0jROhxuoqvfmz2B" }, { "_id": "n9pJzTDsAwQxJVRl", @@ -885,7 +914,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -981,7 +1015,8 @@ "createdTime": 1661787234221, "modifiedTime": 1661791116513, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!PVD5wRdyO7iCJPs1.n9pJzTDsAwQxJVRl" }, { "_id": "MUO1uYN7JR1hm4dR", @@ -996,7 +1031,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1087,7 +1127,8 @@ "createdTime": 1661787234127, "modifiedTime": 1661791116513, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!PVD5wRdyO7iCJPs1.MUO1uYN7JR1hm4dR" }, { "_id": "7buEm5KhI5lP8m1z", @@ -1102,7 +1143,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1198,7 +1244,8 @@ "createdTime": 1661787234075, "modifiedTime": 1661791116513, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!PVD5wRdyO7iCJPs1.7buEm5KhI5lP8m1z" }, { "_id": "gvdA9nPuWLck4tBl", @@ -1213,7 +1260,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -1304,7 +1356,8 @@ "createdTime": 1661787234193, "modifiedTime": 1661791116514, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!PVD5wRdyO7iCJPs1.gvdA9nPuWLck4tBl" }, { "_id": "F0GsG0SJzsIOacwV", @@ -1319,7 +1372,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1410,7 +1468,8 @@ "createdTime": 1661787234103, "modifiedTime": 1661791116514, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!PVD5wRdyO7iCJPs1.F0GsG0SJzsIOacwV" }, { "_id": "JbxsYXxSOTZbf9I0", @@ -1423,7 +1482,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -1521,7 +1585,8 @@ "createdTime": 1661787234115, "modifiedTime": 1661791116514, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!PVD5wRdyO7iCJPs1.JbxsYXxSOTZbf9I0" }, { "_id": "15Fa6q1nH27XfbR8", @@ -1536,7 +1601,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1627,7 +1697,8 @@ "createdTime": 1661787234054, "modifiedTime": 1661791116515, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!PVD5wRdyO7iCJPs1.15Fa6q1nH27XfbR8" }, { "_id": "uCud2s4TjMfjiXUb", @@ -1642,7 +1713,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1738,7 +1814,8 @@ "createdTime": 1661787234235, "modifiedTime": 1661791116515, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!PVD5wRdyO7iCJPs1.uCud2s4TjMfjiXUb" }, { "_id": "Bnn9Nzajixvow9xi", @@ -1753,7 +1830,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1844,7 +1926,8 @@ "createdTime": 1661787234093, "modifiedTime": 1661791116515, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!PVD5wRdyO7iCJPs1.Bnn9Nzajixvow9xi" }, { "_id": "uUWb1wZgtMou0TVP", @@ -1859,7 +1942,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1955,7 +2043,8 @@ "createdTime": 1661787234236, "modifiedTime": 1661791116516, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!PVD5wRdyO7iCJPs1.uUWb1wZgtMou0TVP" } ], "effects": [], @@ -1972,5 +2061,6 @@ "createdTime": 1661787232808, "modifiedTime": 1672596099322, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!PVD5wRdyO7iCJPs1" } diff --git a/packs/src/monsters/humanoid/sahuagin.json b/packs/src/monsters/humanoid/sahuagin.json index bb887e2db8..21e88aa978 100644 --- a/packs/src/monsters/humanoid/sahuagin.json +++ b/packs/src/monsters/humanoid/sahuagin.json @@ -110,7 +110,12 @@ "environment": "Underwater", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -456,7 +461,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -569,7 +579,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lyNBFmJdbh4NLRzz.UqpaWsGVgiCMSZEw" }, { "_id": "NSdAR332o65ZE3hC", @@ -582,7 +593,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -695,7 +711,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lyNBFmJdbh4NLRzz.NSdAR332o65ZE3hC" }, { "_id": "uyWDYVSAJuCfayLE", @@ -708,7 +725,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -787,7 +809,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lyNBFmJdbh4NLRzz.uyWDYVSAJuCfayLE" }, { "_id": "VJlDAg21VwBOjbuR", @@ -800,7 +823,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -909,7 +937,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lyNBFmJdbh4NLRzz.VJlDAg21VwBOjbuR" }, { "_id": "lH49mvA2g5C44yM4", @@ -922,7 +951,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1001,7 +1035,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lyNBFmJdbh4NLRzz.lH49mvA2g5C44yM4" }, { "_id": "1aEgtsYuxz12hFn3", @@ -1014,7 +1049,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1093,7 +1133,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lyNBFmJdbh4NLRzz.1aEgtsYuxz12hFn3" }, { "_id": "SQqFFwf2ADQmLaVO", @@ -1106,7 +1147,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1185,7 +1231,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!lyNBFmJdbh4NLRzz.SQqFFwf2ADQmLaVO" } ], "effects": [], @@ -1202,5 +1249,6 @@ "createdTime": 1661787233140, "modifiedTime": 1672596105500, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!lyNBFmJdbh4NLRzz" } diff --git a/packs/src/monsters/humanoid/scout.json b/packs/src/monsters/humanoid/scout.json index 2e6685d9d9..99468f2ce2 100644 --- a/packs/src/monsters/humanoid/scout.json +++ b/packs/src/monsters/humanoid/scout.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -553,7 +563,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!O3ABqI55Ir1du1Xa.qnFVVlRzucX7BNga" }, { "_id": "PQGwUNCJ7EkJAE8V", @@ -566,7 +577,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -641,7 +657,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!O3ABqI55Ir1du1Xa.PQGwUNCJ7EkJAE8V" }, { "_id": "YO57HtdvpuGxJANB", @@ -654,7 +671,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -733,7 +755,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!O3ABqI55Ir1du1Xa.YO57HtdvpuGxJANB" }, { "_id": "YDoOa6D6QDoR2Htu", @@ -746,7 +769,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -859,7 +887,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!O3ABqI55Ir1du1Xa.YDoOa6D6QDoR2Htu" }, { "_id": "E2fYrhLigMeVH09l", @@ -872,7 +901,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -985,7 +1019,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!O3ABqI55Ir1du1Xa.E2fYrhLigMeVH09l" } ], "effects": [], @@ -1002,5 +1037,6 @@ "createdTime": 1661787232797, "modifiedTime": 1672596098933, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!O3ABqI55Ir1du1Xa" } diff --git a/packs/src/monsters/humanoid/spy.json b/packs/src/monsters/humanoid/spy.json index 7bfc52f884..0880772a0b 100644 --- a/packs/src/monsters/humanoid/spy.json +++ b/packs/src/monsters/humanoid/spy.json @@ -110,7 +110,12 @@ "environment": "", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!13K3XK2A3wwxVKLD.93TfWPoMzBoaneMx" }, { "_id": "TEgU7pKAAA0f35Yw", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -630,7 +646,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!13K3XK2A3wwxVKLD.TEgU7pKAAA0f35Yw" }, { "_id": "NAmhPf8w89iV8CsY", @@ -643,7 +660,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -722,7 +744,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!13K3XK2A3wwxVKLD.NAmhPf8w89iV8CsY" }, { "_id": "BhYnUUBoU3ESkl1B", @@ -735,7 +758,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -848,7 +876,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!13K3XK2A3wwxVKLD.BhYnUUBoU3ESkl1B" }, { "_id": "q6pfCQyaPQSw2waZ", @@ -861,7 +890,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -974,7 +1008,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!13K3XK2A3wwxVKLD.q6pfCQyaPQSw2waZ" } ], "effects": [], @@ -991,5 +1026,6 @@ "createdTime": 1661787232550, "modifiedTime": 1672596090930, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!13K3XK2A3wwxVKLD" } diff --git a/packs/src/monsters/humanoid/thug.json b/packs/src/monsters/humanoid/thug.json index 506a29e026..8faee8c14c 100644 --- a/packs/src/monsters/humanoid/thug.json +++ b/packs/src/monsters/humanoid/thug.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -553,7 +563,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Cy3A0rsNMPLZozam.wonRQjOkc9E7RYtd" }, { "_id": "OE8y8otGDFop6Fzt", @@ -566,7 +577,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -645,7 +661,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Cy3A0rsNMPLZozam.OE8y8otGDFop6Fzt" }, { "_id": "cac4FpQc3XabBwTj", @@ -658,7 +675,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -737,7 +759,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Cy3A0rsNMPLZozam.cac4FpQc3XabBwTj" }, { "_id": "9INT7D1zulhfsok7", @@ -750,7 +773,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 18, "price": { @@ -863,7 +891,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Cy3A0rsNMPLZozam.9INT7D1zulhfsok7" }, { "_id": "6gRu9IFFkvxesFfK", @@ -876,7 +905,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 4, "price": { @@ -989,7 +1023,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Cy3A0rsNMPLZozam.6gRu9IFFkvxesFfK" } ], "effects": [], @@ -1006,5 +1041,6 @@ "createdTime": 1661787232672, "modifiedTime": 1672596094822, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!Cy3A0rsNMPLZozam" } diff --git a/packs/src/monsters/humanoid/tribal-warrior.json b/packs/src/monsters/humanoid/tribal-warrior.json index c8b94d95ee..24206345f1 100644 --- a/packs/src/monsters/humanoid/tribal-warrior.json +++ b/packs/src/monsters/humanoid/tribal-warrior.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0.125, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 12, "price": { @@ -553,7 +563,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nREPw9g94Bsb9sIl.hbpux5uhl63ObLBg" }, { "_id": "d0AIrKneA8GKmDE1", @@ -566,7 +577,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -645,7 +661,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nREPw9g94Bsb9sIl.d0AIrKneA8GKmDE1" }, { "_id": "KO6Ez3XWFM4iH4zB", @@ -658,7 +675,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -771,7 +793,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nREPw9g94Bsb9sIl.KO6Ez3XWFM4iH4zB" } ], "effects": [], @@ -788,5 +811,6 @@ "createdTime": 1661787233154, "modifiedTime": 1672596106063, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!nREPw9g94Bsb9sIl" } diff --git a/packs/src/monsters/humanoid/veteran.json b/packs/src/monsters/humanoid/veteran.json index ee003e39d3..1f91afb6c9 100644 --- a/packs/src/monsters/humanoid/veteran.json +++ b/packs/src/monsters/humanoid/veteran.json @@ -110,7 +110,12 @@ "environment": "", "cr": 3, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -456,7 +461,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 60, "price": { @@ -555,7 +565,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!J8xjoG4Dxb8WkHtV.0otc04A190Q8hTBK" }, { "_id": "WaEunPCFG0EddNTt", @@ -568,7 +579,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -681,7 +697,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!J8xjoG4Dxb8WkHtV.WaEunPCFG0EddNTt" }, { "_id": "wziRdUn3HafZKJ8o", @@ -694,7 +711,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -773,7 +795,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!J8xjoG4Dxb8WkHtV.wziRdUn3HafZKJ8o" }, { "_id": "cXf5q5xw30ICGxZg", @@ -786,7 +809,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -899,7 +927,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!J8xjoG4Dxb8WkHtV.cXf5q5xw30ICGxZg" }, { "_id": "6jQ7YUixkwBq2Fh8", @@ -912,7 +941,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1025,7 +1059,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!J8xjoG4Dxb8WkHtV.6jQ7YUixkwBq2Fh8" } ], "effects": [], @@ -1042,5 +1077,6 @@ "createdTime": 1661787232739, "modifiedTime": 1672596096501, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!J8xjoG4Dxb8WkHtV" } diff --git a/packs/src/monsters/humanoid/werebear.json b/packs/src/monsters/humanoid/werebear.json index 820debcb54..0da10ec8b6 100644 --- a/packs/src/monsters/humanoid/werebear.json +++ b/packs/src/monsters/humanoid/werebear.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -463,7 +468,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -542,7 +552,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!oRBnO5OHoOZzlCOr.D8QWBbYLFAT7uIiz" }, { "_id": "rzLcynHQQj04Ue4B", @@ -555,7 +566,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -630,7 +646,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!oRBnO5OHoOZzlCOr.rzLcynHQQj04Ue4B" }, { "_id": "COcc6eoG6ScS4wGz", @@ -643,7 +660,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": null, @@ -722,7 +744,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!oRBnO5OHoOZzlCOr.COcc6eoG6ScS4wGz" }, { "_id": "h9XO0f5Un3EhJqHm", @@ -735,7 +758,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -844,7 +872,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!oRBnO5OHoOZzlCOr.h9XO0f5Un3EhJqHm" }, { "_id": "pEYcOjAF2fovrXRP", @@ -857,7 +886,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -966,7 +1000,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!oRBnO5OHoOZzlCOr.pEYcOjAF2fovrXRP" }, { "_id": "UeXfHUO5RZp72PIs", @@ -979,7 +1014,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -1088,7 +1128,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!oRBnO5OHoOZzlCOr.UeXfHUO5RZp72PIs" } ], "effects": [], @@ -1105,5 +1146,6 @@ "createdTime": 1661787233169, "modifiedTime": 1672596106543, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!oRBnO5OHoOZzlCOr" } diff --git a/packs/src/monsters/humanoid/wereboar.json b/packs/src/monsters/humanoid/wereboar.json index a84fd48b8e..cd4e796714 100644 --- a/packs/src/monsters/humanoid/wereboar.json +++ b/packs/src/monsters/humanoid/wereboar.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 4, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -463,7 +468,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -543,7 +553,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!J9hgSaZODGjrNl9B.TizBVS6hRuBa8JYY" }, { "_id": "599WNlvXk7snLj4O", @@ -556,7 +567,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -631,7 +647,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!J9hgSaZODGjrNl9B.599WNlvXk7snLj4O" }, { "_id": "NwivB5zd15WhthVJ", @@ -644,7 +661,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -723,7 +745,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!J9hgSaZODGjrNl9B.NwivB5zd15WhthVJ" }, { "_id": "zzskoOXzAiMDZfbc", @@ -736,7 +759,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -815,7 +843,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!J9hgSaZODGjrNl9B.zzskoOXzAiMDZfbc" }, { "_id": "3TD2NpdjIDJxeLl9", @@ -828,7 +857,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -937,7 +971,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!J9hgSaZODGjrNl9B.3TD2NpdjIDJxeLl9" }, { "_id": "dtdXnvp5cptFkGPu", @@ -950,7 +985,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 10, "price": { @@ -1059,7 +1099,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!J9hgSaZODGjrNl9B.dtdXnvp5cptFkGPu" } ], "effects": [], @@ -1076,5 +1117,6 @@ "createdTime": 1661787232741, "modifiedTime": 1672596096549, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!J9hgSaZODGjrNl9B" } diff --git a/packs/src/monsters/humanoid/wererat.json b/packs/src/monsters/humanoid/wererat.json index 223e186d26..35be8fcc6f 100644 --- a/packs/src/monsters/humanoid/wererat.json +++ b/packs/src/monsters/humanoid/wererat.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -463,7 +468,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -542,7 +552,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!CrnUJhTbkdZjCZsH.PhdUmTsYUeWSSDNN" }, { "_id": "UwlU9Zhwf94gPX0n", @@ -555,7 +566,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -630,7 +646,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!CrnUJhTbkdZjCZsH.UwlU9Zhwf94gPX0n" }, { "_id": "ykZaywAeuqtWHAqQ", @@ -643,7 +660,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -718,7 +740,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!CrnUJhTbkdZjCZsH.ykZaywAeuqtWHAqQ" }, { "_id": "ldz0yUpzhV9Xlhss", @@ -731,7 +754,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -840,7 +868,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!CrnUJhTbkdZjCZsH.ldz0yUpzhV9Xlhss" }, { "_id": "YJi7nfridP2LjdJs", @@ -853,7 +882,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -962,7 +996,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!CrnUJhTbkdZjCZsH.YJi7nfridP2LjdJs" }, { "_id": "wpyEts6pBAxoD0Gh", @@ -975,7 +1010,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -1084,7 +1124,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!CrnUJhTbkdZjCZsH.wpyEts6pBAxoD0Gh" } ], "effects": [], @@ -1101,5 +1142,6 @@ "createdTime": 1661787232671, "modifiedTime": 1672596094776, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!CrnUJhTbkdZjCZsH" } diff --git a/packs/src/monsters/humanoid/weretiger.json b/packs/src/monsters/humanoid/weretiger.json index e7e9b43964..742cbd4a06 100644 --- a/packs/src/monsters/humanoid/weretiger.json +++ b/packs/src/monsters/humanoid/weretiger.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 4, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -463,7 +468,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -542,7 +552,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zIr3NaNF0mWz5Ahq.EjU9p4Wh1U2wsnFK" }, { "_id": "2iPYXoxM2ZReuhSL", @@ -555,7 +566,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -630,7 +646,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zIr3NaNF0mWz5Ahq.2iPYXoxM2ZReuhSL" }, { "_id": "jW4qHQ761qRLeWM8", @@ -643,7 +660,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -718,7 +740,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zIr3NaNF0mWz5Ahq.jW4qHQ761qRLeWM8" }, { "_id": "SmUCt79LtakgTJoa", @@ -731,7 +754,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -806,7 +834,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zIr3NaNF0mWz5Ahq.SmUCt79LtakgTJoa" }, { "_id": "FOkSL18gU0Sli5ZA", @@ -819,7 +848,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -928,7 +962,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zIr3NaNF0mWz5Ahq.FOkSL18gU0Sli5ZA" }, { "_id": "HPmjVRKpG08bgohb", @@ -941,7 +976,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1050,7 +1090,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zIr3NaNF0mWz5Ahq.HPmjVRKpG08bgohb" }, { "_id": "vtnEGCOptmp2bcqG", @@ -1063,7 +1104,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -1172,7 +1218,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zIr3NaNF0mWz5Ahq.vtnEGCOptmp2bcqG" }, { "_id": "onmNGMiE4AyvYxDQ", @@ -1185,7 +1232,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -1294,7 +1346,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zIr3NaNF0mWz5Ahq.onmNGMiE4AyvYxDQ" } ], "effects": [], @@ -1311,5 +1364,6 @@ "createdTime": 1661787233258, "modifiedTime": 1672596109360, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!zIr3NaNF0mWz5Ahq" } diff --git a/packs/src/monsters/humanoid/werewolf.json b/packs/src/monsters/humanoid/werewolf.json index 2a82625280..91dbe7951f 100644 --- a/packs/src/monsters/humanoid/werewolf.json +++ b/packs/src/monsters/humanoid/werewolf.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 3, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -463,7 +468,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -572,7 +582,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7tRhrxuknTpHpYcA.tWfR8uJNnQxpXgDw" }, { "_id": "abhGXKzA0XGprXED", @@ -585,7 +596,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -660,7 +676,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7tRhrxuknTpHpYcA.abhGXKzA0XGprXED" }, { "_id": "TiKtAuqd6urQ45Ds", @@ -673,7 +690,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -782,7 +804,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7tRhrxuknTpHpYcA.TiKtAuqd6urQ45Ds" }, { "_id": "36H4LGNMMEYS1Irm", @@ -795,7 +818,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -904,7 +932,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7tRhrxuknTpHpYcA.36H4LGNMMEYS1Irm" }, { "_id": "2kHNI1T4gg879fDv", @@ -917,7 +946,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -996,7 +1030,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7tRhrxuknTpHpYcA.2kHNI1T4gg879fDv" }, { "_id": "9v8vBxcPazXyBUmo", @@ -1009,7 +1044,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1084,7 +1124,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7tRhrxuknTpHpYcA.9v8vBxcPazXyBUmo" } ], "effects": [], @@ -1101,5 +1142,6 @@ "createdTime": 1661787232613, "modifiedTime": 1672596093030, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!7tRhrxuknTpHpYcA" } diff --git a/packs/src/monsters/monstrosity/androsphinx.json b/packs/src/monsters/monstrosity/androsphinx.json index 928245fa58..88ce0d282f 100644 --- a/packs/src/monsters/monstrosity/androsphinx.json +++ b/packs/src/monsters/monstrosity/androsphinx.json @@ -110,7 +110,12 @@ "environment": "Desert", "cr": 17, "spellLevel": 12, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -466,7 +471,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -545,7 +555,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.IZgoYn3Baw7MAZCT" }, { "_id": "wmqCsq80pewLPg4c", @@ -558,7 +569,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -637,7 +653,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.wmqCsq80pewLPg4c" }, { "_id": "zXzGfPnSFJbfZ7oW", @@ -650,7 +667,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -729,7 +751,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.zXzGfPnSFJbfZ7oW" }, { "_id": "yotsIj19d5spOVGb", @@ -742,7 +765,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -851,7 +879,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.yotsIj19d5spOVGb" }, { "_id": "gddHh6xWKLMmCT1J", @@ -864,7 +893,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -943,7 +977,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.gddHh6xWKLMmCT1J" }, { "_id": "ez87kySQJgKUPT9L", @@ -956,7 +991,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1035,7 +1075,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.ez87kySQJgKUPT9L" }, { "_id": "sCcGdT18vb7al854", @@ -1048,7 +1089,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "none", "cost": null, @@ -1127,7 +1173,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.sCcGdT18vb7al854" }, { "_id": "hrPPu1rypQZWPHDp", @@ -1140,7 +1187,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "none", "cost": null, @@ -1219,7 +1271,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.hrPPu1rypQZWPHDp" }, { "_id": "guh5qlJFR8iKncKj", @@ -1232,7 +1285,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "none", "cost": null, @@ -1316,7 +1374,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.guh5qlJFR8iKncKj" }, { "_id": "u7KoAMVBDhcaWQAd", @@ -1329,7 +1388,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1408,7 +1472,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.u7KoAMVBDhcaWQAd" }, { "_id": "fZY6aMo87z2iSl9Q", @@ -1421,7 +1486,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1500,7 +1570,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.fZY6aMo87z2iSl9Q" }, { "_id": "ZZdoas8GMbE3AzzZ", @@ -1513,7 +1584,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -1592,7 +1668,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.ZZdoas8GMbE3AzzZ" }, { "_id": "COSA7NBYXiWccqNu", @@ -1605,7 +1682,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 3, @@ -1684,7 +1766,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.COSA7NBYXiWccqNu" }, { "_id": "L4i5v1sND0KLLlb4", @@ -1697,7 +1780,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1776,7 +1864,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.L4i5v1sND0KLLlb4" }, { "_id": "4htzOIEvqgitIIL6", @@ -1789,7 +1878,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1868,7 +1962,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.4htzOIEvqgitIIL6" }, { "_id": "n9pJzTDsAwQxJVRl", @@ -1883,7 +1978,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1979,7 +2079,8 @@ "createdTime": 1661787234221, "modifiedTime": 1661791116849, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.n9pJzTDsAwQxJVRl" }, { "_id": "8zT7njvqbpXs4Cel", @@ -1994,7 +2095,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2085,7 +2191,8 @@ "createdTime": 1661787234083, "modifiedTime": 1661791116850, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.8zT7njvqbpXs4Cel" }, { "_id": "MUO1uYN7JR1hm4dR", @@ -2100,7 +2207,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2191,7 +2303,8 @@ "createdTime": 1661787234127, "modifiedTime": 1661791116850, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.MUO1uYN7JR1hm4dR" }, { "_id": "arzCrMRgcNiQuh43", @@ -2206,7 +2319,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2297,7 +2415,8 @@ "createdTime": 1661787234169, "modifiedTime": 1661791116850, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.arzCrMRgcNiQuh43" }, { "_id": "Mzh95utKDPIrjiH8", @@ -2312,7 +2431,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2403,7 +2527,8 @@ "createdTime": 1661787234128, "modifiedTime": 1661791116851, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.Mzh95utKDPIrjiH8" }, { "_id": "ghXTfe7sgCbgf1Q8", @@ -2418,7 +2543,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2509,7 +2639,8 @@ "createdTime": 1661787234192, "modifiedTime": 1661791116851, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.ghXTfe7sgCbgf1Q8" }, { "_id": "F0GsG0SJzsIOacwV", @@ -2524,7 +2655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2615,7 +2751,8 @@ "createdTime": 1661787234103, "modifiedTime": 1661791116851, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.F0GsG0SJzsIOacwV" }, { "_id": "CylBa7jR8DSbo8Z3", @@ -2630,7 +2767,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2721,7 +2863,8 @@ "createdTime": 1661787234097, "modifiedTime": 1661791116852, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.CylBa7jR8DSbo8Z3" }, { "_id": "15Fa6q1nH27XfbR8", @@ -2736,7 +2879,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2827,7 +2975,8 @@ "createdTime": 1661787234054, "modifiedTime": 1661791116852, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.15Fa6q1nH27XfbR8" }, { "_id": "gopnZvS0c2jD5FP8", @@ -2842,7 +2991,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2933,7 +3087,8 @@ "createdTime": 1661787234193, "modifiedTime": 1661791116852, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.gopnZvS0c2jD5FP8" }, { "_id": "pxpb2eOB6bv4phAf", @@ -2948,7 +3103,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3039,7 +3199,8 @@ "createdTime": 1661787234230, "modifiedTime": 1661791116853, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.pxpb2eOB6bv4phAf" }, { "_id": "da0a1t2FqaTjRZGT", @@ -3054,7 +3215,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3145,7 +3311,8 @@ "createdTime": 1661787234180, "modifiedTime": 1661791116853, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.da0a1t2FqaTjRZGT" }, { "_id": "5e1xTohkzqFqbYH4", @@ -3160,7 +3327,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3260,7 +3432,8 @@ "createdTime": 1661787234070, "modifiedTime": 1661791116853, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.5e1xTohkzqFqbYH4" }, { "_id": "WzvJ7G3cqvIubsLk", @@ -3275,7 +3448,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3366,7 +3544,8 @@ "createdTime": 1661787234154, "modifiedTime": 1661791116853, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.WzvJ7G3cqvIubsLk" }, { "_id": "mgFqi0ev8f7Ut19y", @@ -3381,7 +3560,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -3472,7 +3656,8 @@ "createdTime": 1661787234220, "modifiedTime": 1661791116854, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!nEC1BRwM8Lx9hLXW.mgFqi0ev8f7Ut19y" } ], "effects": [], @@ -3489,5 +3674,6 @@ "createdTime": 1661787233151, "modifiedTime": 1672596105998, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!nEC1BRwM8Lx9hLXW" } diff --git a/packs/src/monsters/monstrosity/ankheg.json b/packs/src/monsters/monstrosity/ankheg.json index a2ffc6d570..4aff48e8ce 100644 --- a/packs/src/monsters/monstrosity/ankheg.json +++ b/packs/src/monsters/monstrosity/ankheg.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -571,7 +581,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Wcsjbl25uiUsyQwn.mGamlcdui038L6gU" }, { "_id": "XZwZexkrBLOzLo1Q", @@ -584,7 +595,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -668,7 +684,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!Wcsjbl25uiUsyQwn.XZwZexkrBLOzLo1Q" } ], "effects": [], @@ -685,5 +702,6 @@ "createdTime": 1661787232872, "modifiedTime": 1672596101002, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!Wcsjbl25uiUsyQwn" } diff --git a/packs/src/monsters/monstrosity/basilisk.json b/packs/src/monsters/monstrosity/basilisk.json index a6ae1dda13..507e492147 100644 --- a/packs/src/monsters/monstrosity/basilisk.json +++ b/packs/src/monsters/monstrosity/basilisk.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 3, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hqj2yXtgwt64v3Lj.bKBPawscKpixPeO0" }, { "_id": "atyoFYgU32nJ9kPK", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -663,7 +679,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hqj2yXtgwt64v3Lj.atyoFYgU32nJ9kPK" } ], "effects": [], @@ -680,5 +697,6 @@ "createdTime": 1661787232996, "modifiedTime": 1672596104180, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!hqj2yXtgwt64v3Lj" } diff --git a/packs/src/monsters/monstrosity/behir.json b/packs/src/monsters/monstrosity/behir.json index 6ded4a59fb..b83959d2dc 100644 --- a/packs/src/monsters/monstrosity/behir.json +++ b/packs/src/monsters/monstrosity/behir.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 11, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -537,7 +547,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!x47ZnpHfYl0ptDM9.LzR8BLFWMmqI6gTl" }, { "_id": "4fNbTxkAFYHxDdJX", @@ -550,7 +561,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -663,7 +679,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!x47ZnpHfYl0ptDM9.4fNbTxkAFYHxDdJX" }, { "_id": "GCUh42hMUnKtxx8j", @@ -676,7 +693,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -789,7 +811,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!x47ZnpHfYl0ptDM9.GCUh42hMUnKtxx8j" }, { "_id": "gjce4R2feN2UH0YE", @@ -802,7 +825,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -886,7 +914,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!x47ZnpHfYl0ptDM9.gjce4R2feN2UH0YE" }, { "_id": "0QJeW80m89X0RLNz", @@ -899,7 +928,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -983,7 +1017,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!x47ZnpHfYl0ptDM9.0QJeW80m89X0RLNz" } ], "effects": [], @@ -1000,5 +1035,6 @@ "createdTime": 1661787233239, "modifiedTime": 1672596108777, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!x47ZnpHfYl0ptDM9" } diff --git a/packs/src/monsters/monstrosity/bulette.json b/packs/src/monsters/monstrosity/bulette.json index cef9d34b29..8275a6a1f2 100644 --- a/packs/src/monsters/monstrosity/bulette.json +++ b/packs/src/monsters/monstrosity/bulette.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1ES45ODWg3pCrkzv.r4KUyv5cYwjHqNl3" }, { "_id": "xZeM7pLE9OPzdhBY", @@ -580,7 +591,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -659,7 +675,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1ES45ODWg3pCrkzv.xZeM7pLE9OPzdhBY" }, { "_id": "Keg9oouX6Vbl9tms", @@ -672,7 +689,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "none", "cost": null, @@ -760,7 +782,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1ES45ODWg3pCrkzv.Keg9oouX6Vbl9tms" } ], "effects": [], @@ -777,5 +800,6 @@ "createdTime": 1661787232552, "modifiedTime": 1672596090980, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!1ES45ODWg3pCrkzv" } diff --git a/packs/src/monsters/monstrosity/centaur.json b/packs/src/monsters/monstrosity/centaur.json index a9ec2eacaf..a574a4b511 100644 --- a/packs/src/monsters/monstrosity/centaur.json +++ b/packs/src/monsters/monstrosity/centaur.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -457,7 +462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 18, "price": { @@ -570,7 +580,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5kZNNWzZ6HrfKuWf.uhqyN44IRWXixgxU" }, { "_id": "ICbiLFrPjwIfA1Nj", @@ -583,7 +594,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -696,7 +712,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5kZNNWzZ6HrfKuWf.ICbiLFrPjwIfA1Nj" }, { "_id": "v7ForWMLPJp1u78X", @@ -709,7 +726,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -822,7 +844,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5kZNNWzZ6HrfKuWf.v7ForWMLPJp1u78X" }, { "_id": "iYlIoEDfSCrggrca", @@ -835,7 +858,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -914,7 +942,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5kZNNWzZ6HrfKuWf.iYlIoEDfSCrggrca" }, { "_id": "4R48w4DH2CqCpmED", @@ -927,7 +956,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1011,7 +1045,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!5kZNNWzZ6HrfKuWf.4R48w4DH2CqCpmED" } ], "effects": [], @@ -1028,5 +1063,6 @@ "createdTime": 1661787232596, "modifiedTime": 1672596092445, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!5kZNNWzZ6HrfKuWf" } diff --git a/packs/src/monsters/monstrosity/chimera.json b/packs/src/monsters/monstrosity/chimera.json index 0159497284..a06526cb95 100644 --- a/packs/src/monsters/monstrosity/chimera.json +++ b/packs/src/monsters/monstrosity/chimera.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 6, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kr6r8bhSehACPfZ8.dDrIfOa408VFGv4a" }, { "_id": "J98n5dL3pMkWGu69", @@ -580,7 +591,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -689,7 +705,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kr6r8bhSehACPfZ8.J98n5dL3pMkWGu69" }, { "_id": "c4fLDKOomwlaFcac", @@ -702,7 +719,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -786,7 +808,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kr6r8bhSehACPfZ8.c4fLDKOomwlaFcac" }, { "_id": "sAkv9mnK6l5nXmcz", @@ -799,7 +822,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -878,7 +906,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kr6r8bhSehACPfZ8.sAkv9mnK6l5nXmcz" }, { "_id": "m5xGw7RgVRGTklJT", @@ -891,7 +920,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1000,7 +1034,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kr6r8bhSehACPfZ8.m5xGw7RgVRGTklJT" } ], "effects": [], @@ -1017,5 +1052,6 @@ "createdTime": 1661787233017, "modifiedTime": 1672596104800, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!kr6r8bhSehACPfZ8" } diff --git a/packs/src/monsters/monstrosity/cockatrice.json b/packs/src/monsters/monstrosity/cockatrice.json index 560ef7171e..2624fb47e2 100644 --- a/packs/src/monsters/monstrosity/cockatrice.json +++ b/packs/src/monsters/monstrosity/cockatrice.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "sm", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -570,7 +580,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!EpYl7qifM5pq6W6B.gpxvIs8yjQ4awt4s" } ], "effects": [], @@ -587,5 +598,6 @@ "createdTime": 1661787232700, "modifiedTime": 1672596095392, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!EpYl7qifM5pq6W6B" } diff --git a/packs/src/monsters/monstrosity/darkmantle.json b/packs/src/monsters/monstrosity/darkmantle.json index 141758f097..c2fa45d235 100644 --- a/packs/src/monsters/monstrosity/darkmantle.json +++ b/packs/src/monsters/monstrosity/darkmantle.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "sm", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!g7FSu2oU4YHPgWNA.FbHtjwNAATMUsN1r" }, { "_id": "k24xxFfPtUCahddE", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!g7FSu2oU4YHPgWNA.k24xxFfPtUCahddE" }, { "_id": "DA34sS4nWGc4OTwm", @@ -638,7 +655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -747,7 +769,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!g7FSu2oU4YHPgWNA.DA34sS4nWGc4OTwm" }, { "_id": "qzSE2ZiVMLKsWF4F", @@ -760,7 +783,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -839,7 +867,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!g7FSu2oU4YHPgWNA.qzSE2ZiVMLKsWF4F" } ], "effects": [], @@ -856,5 +885,6 @@ "createdTime": 1661787232968, "modifiedTime": 1672596103472, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!g7FSu2oU4YHPgWNA" } diff --git a/packs/src/monsters/monstrosity/death-dog.json b/packs/src/monsters/monstrosity/death-dog.json index 3696a74f91..3063ddc1d2 100644 --- a/packs/src/monsters/monstrosity/death-dog.json +++ b/packs/src/monsters/monstrosity/death-dog.json @@ -110,7 +110,12 @@ "environment": "Desert", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!PH78NBdvoaszAb61.TKV9mS1lvqMAyCaB" }, { "_id": "xpakQFJhIVCQz3Si", @@ -580,7 +591,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -659,7 +675,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!PH78NBdvoaszAb61.xpakQFJhIVCQz3Si" }, { "_id": "EHX3CeEnlmzwnnK5", @@ -672,7 +689,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -751,7 +773,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!PH78NBdvoaszAb61.EHX3CeEnlmzwnnK5" } ], "effects": [], @@ -768,5 +791,6 @@ "createdTime": 1661787232805, "modifiedTime": 1672596099187, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!PH78NBdvoaszAb61" } diff --git a/packs/src/monsters/monstrosity/doppelganger.json b/packs/src/monsters/monstrosity/doppelganger.json index d0703418cf..8d99a899cb 100644 --- a/packs/src/monsters/monstrosity/doppelganger.json +++ b/packs/src/monsters/monstrosity/doppelganger.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 3, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -537,7 +547,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!mWbrPhcKOz6oLXMV.Cp2MgsVDDSRiF2aj" }, { "_id": "yfN4gklLV7zqhzxo", @@ -550,7 +561,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -634,7 +650,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!mWbrPhcKOz6oLXMV.yfN4gklLV7zqhzxo" }, { "_id": "Sr7ZTAYd1TQ6Nfto", @@ -647,7 +664,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -726,7 +748,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!mWbrPhcKOz6oLXMV.Sr7ZTAYd1TQ6Nfto" }, { "_id": "scZU8bs551DZRvgC", @@ -739,7 +762,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -848,7 +876,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!mWbrPhcKOz6oLXMV.scZU8bs551DZRvgC" }, { "_id": "YIoB9xCKEcrrPRt9", @@ -861,7 +890,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -940,7 +974,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!mWbrPhcKOz6oLXMV.YIoB9xCKEcrrPRt9" }, { "_id": "cG4WdhcrTZt6rxUi", @@ -953,7 +988,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1032,7 +1072,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!mWbrPhcKOz6oLXMV.cG4WdhcrTZt6rxUi" } ], "effects": [], @@ -1049,5 +1090,6 @@ "createdTime": 1661787233147, "modifiedTime": 1672596105828, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!mWbrPhcKOz6oLXMV" } diff --git a/packs/src/monsters/monstrosity/drider.json b/packs/src/monsters/monstrosity/drider.json index f3aaca29f6..789cc86887 100644 --- a/packs/src/monsters/monstrosity/drider.json +++ b/packs/src/monsters/monstrosity/drider.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 6, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -457,7 +462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -536,7 +546,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1OQbxoZI5BtlB2ME.3Fnspq3GjJ5g41lM" }, { "_id": "uRaC62ut3Hk63e7m", @@ -549,7 +560,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -628,7 +644,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1OQbxoZI5BtlB2ME.uRaC62ut3Hk63e7m" }, { "_id": "3wBoA7GvO2fw1Qnu", @@ -641,7 +658,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -720,7 +742,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1OQbxoZI5BtlB2ME.3wBoA7GvO2fw1Qnu" }, { "_id": "tnQSw6SXTbUKi6vN", @@ -733,7 +756,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -812,7 +840,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1OQbxoZI5BtlB2ME.tnQSw6SXTbUKi6vN" }, { "_id": "4fZJqIbZDoAx8Yix", @@ -825,7 +854,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -904,7 +938,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1OQbxoZI5BtlB2ME.4fZJqIbZDoAx8Yix" }, { "_id": "ThVO3VFsGgg3GLc5", @@ -917,7 +952,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -996,7 +1036,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1OQbxoZI5BtlB2ME.ThVO3VFsGgg3GLc5" }, { "_id": "rUvv8Vnh7XbqbCLd", @@ -1009,7 +1050,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1126,7 +1172,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1OQbxoZI5BtlB2ME.rUvv8Vnh7XbqbCLd" }, { "_id": "xqwxVn28J0zx8Y7H", @@ -1139,7 +1186,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -1252,7 +1304,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1OQbxoZI5BtlB2ME.xqwxVn28J0zx8Y7H" }, { "_id": "3XAtYmmaED1rxaaE", @@ -1265,7 +1318,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -1382,7 +1440,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1OQbxoZI5BtlB2ME.3XAtYmmaED1rxaaE" }, { "_id": "CAxSzHWizrafT033", @@ -1397,7 +1456,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1488,7 +1552,8 @@ "createdTime": 1661787234094, "modifiedTime": 1661791115983, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!1OQbxoZI5BtlB2ME.CAxSzHWizrafT033" }, { "_id": "S7VbUetIfVT7B6Eq", @@ -1503,7 +1568,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1594,7 +1664,8 @@ "createdTime": 1661787234139, "modifiedTime": 1661791115984, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!1OQbxoZI5BtlB2ME.S7VbUetIfVT7B6Eq" }, { "_id": "nqBDWkVOfcGZt4YU", @@ -1609,7 +1680,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1700,7 +1776,8 @@ "createdTime": 1661787234222, "modifiedTime": 1661791115985, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!1OQbxoZI5BtlB2ME.nqBDWkVOfcGZt4YU" } ], "effects": [], @@ -1717,5 +1794,6 @@ "createdTime": 1661787232553, "modifiedTime": 1672596091083, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!1OQbxoZI5BtlB2ME" } diff --git a/packs/src/monsters/monstrosity/ettercap.json b/packs/src/monsters/monstrosity/ettercap.json index 2fb1dd112c..53d425e3f1 100644 --- a/packs/src/monsters/monstrosity/ettercap.json +++ b/packs/src/monsters/monstrosity/ettercap.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aKt7vFAS1J0x3FQm.vTDqx7A0xzxkZCqc" }, { "_id": "u8VMOaHAAGlnnYyt", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aKt7vFAS1J0x3FQm.u8VMOaHAAGlnnYyt" }, { "_id": "6dw8RLKtxKrHd41q", @@ -638,7 +655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -717,7 +739,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aKt7vFAS1J0x3FQm.6dw8RLKtxKrHd41q" }, { "_id": "6eqd5bKL0SgwqRnm", @@ -730,7 +753,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -809,7 +837,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aKt7vFAS1J0x3FQm.6eqd5bKL0SgwqRnm" }, { "_id": "qpUx52QbFUCSPSln", @@ -822,7 +851,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -939,7 +973,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aKt7vFAS1J0x3FQm.qpUx52QbFUCSPSln" }, { "_id": "T8XMTiCIOQP4dYEp", @@ -952,7 +987,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1061,7 +1101,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aKt7vFAS1J0x3FQm.T8XMTiCIOQP4dYEp" }, { "_id": "Sv5UJkCfY00yfFOE", @@ -1074,7 +1115,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1153,7 +1199,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!aKt7vFAS1J0x3FQm.Sv5UJkCfY00yfFOE" } ], "effects": [], @@ -1170,5 +1217,6 @@ "createdTime": 1661787232903, "modifiedTime": 1672596101890, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!aKt7vFAS1J0x3FQm" } diff --git a/packs/src/monsters/monstrosity/gorgon.json b/packs/src/monsters/monstrosity/gorgon.json index aa1670bbde..48d6fb6f33 100644 --- a/packs/src/monsters/monstrosity/gorgon.json +++ b/packs/src/monsters/monstrosity/gorgon.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -456,7 +461,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -535,7 +545,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nZthq6WHLhcdu3te.zpzof99ziVJCU4hI" }, { "_id": "7DSbBzpS1e9lYxZx", @@ -548,7 +559,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -657,7 +673,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nZthq6WHLhcdu3te.7DSbBzpS1e9lYxZx" }, { "_id": "O8oahxePfpHFYohz", @@ -670,7 +687,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -783,7 +805,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nZthq6WHLhcdu3te.O8oahxePfpHFYohz" }, { "_id": "5tEnGK28Rd4nHnwM", @@ -796,7 +819,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -875,7 +903,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nZthq6WHLhcdu3te.5tEnGK28Rd4nHnwM" } ], "effects": [], @@ -892,5 +921,6 @@ "createdTime": 1661787233157, "modifiedTime": 1672596106156, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!nZthq6WHLhcdu3te" } diff --git a/packs/src/monsters/monstrosity/grick.json b/packs/src/monsters/monstrosity/grick.json index cb4d4badb8..ebb7f7a506 100644 --- a/packs/src/monsters/monstrosity/grick.json +++ b/packs/src/monsters/monstrosity/grick.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -460,7 +465,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -539,7 +549,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!tFJX45zj3QDc3Zli.mZf3scqsBLavvot1" }, { "_id": "dw5lQaT8ySNuOVd4", @@ -552,7 +563,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -631,7 +647,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!tFJX45zj3QDc3Zli.dw5lQaT8ySNuOVd4" }, { "_id": "tkVlxJxg4LBVJvuX", @@ -644,7 +661,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -757,7 +779,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!tFJX45zj3QDc3Zli.tkVlxJxg4LBVJvuX" }, { "_id": "AGLjE9RSCjg1vQ6R", @@ -770,7 +793,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -879,7 +907,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!tFJX45zj3QDc3Zli.AGLjE9RSCjg1vQ6R" } ], "effects": [], @@ -896,5 +925,6 @@ "createdTime": 1661787233220, "modifiedTime": 1672596108164, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!tFJX45zj3QDc3Zli" } diff --git a/packs/src/monsters/monstrosity/griffon.json b/packs/src/monsters/monstrosity/griffon.json index 398644c274..e22d883f61 100644 --- a/packs/src/monsters/monstrosity/griffon.json +++ b/packs/src/monsters/monstrosity/griffon.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!h052EIIUmRwJum65.0o0MDYjWjFsJFvQZ" }, { "_id": "wF7eGWgo8AZNTcyg", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -621,7 +637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!h052EIIUmRwJum65.wF7eGWgo8AZNTcyg" }, { "_id": "T2JS1VEL7U2s92Fj", @@ -634,7 +651,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -743,7 +765,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!h052EIIUmRwJum65.T2JS1VEL7U2s92Fj" }, { "_id": "ldVEDIAP2PHxLHsL", @@ -756,7 +779,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -865,7 +893,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!h052EIIUmRwJum65.ldVEDIAP2PHxLHsL" } ], "effects": [], @@ -882,5 +911,6 @@ "createdTime": 1661787232981, "modifiedTime": 1672596103860, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!h052EIIUmRwJum65" } diff --git a/packs/src/monsters/monstrosity/guardian-naga.json b/packs/src/monsters/monstrosity/guardian-naga.json index 44cb1adc10..8d432a12d7 100644 --- a/packs/src/monsters/monstrosity/guardian-naga.json +++ b/packs/src/monsters/monstrosity/guardian-naga.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 10, "spellLevel": 11, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -462,7 +467,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -541,7 +551,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8ExSFCar5Lbhdo7u.GkVxLIsamEXICEeT" }, { "_id": "wtPKdh22QAc93kgt", @@ -554,7 +565,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -633,7 +649,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8ExSFCar5Lbhdo7u.wtPKdh22QAc93kgt" }, { "_id": "hQFQz2LiNGpxcRvw", @@ -646,7 +663,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -759,7 +781,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8ExSFCar5Lbhdo7u.hQFQz2LiNGpxcRvw" }, { "_id": "PtPZ5aBQPEfbbvla", @@ -772,7 +795,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -881,7 +909,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8ExSFCar5Lbhdo7u.PtPZ5aBQPEfbbvla" }, { "_id": "kjmjY0zlE6IEiQVL", @@ -896,7 +925,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -987,7 +1021,8 @@ "createdTime": 1661787234215, "modifiedTime": 1661791116132, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!8ExSFCar5Lbhdo7u.kjmjY0zlE6IEiQVL" }, { "_id": "n9pJzTDsAwQxJVRl", @@ -1002,7 +1037,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1098,7 +1138,8 @@ "createdTime": 1661787234221, "modifiedTime": 1661791116132, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!8ExSFCar5Lbhdo7u.n9pJzTDsAwQxJVRl" }, { "_id": "MUO1uYN7JR1hm4dR", @@ -1113,7 +1154,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1204,7 +1250,8 @@ "createdTime": 1661787234127, "modifiedTime": 1661791116133, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!8ExSFCar5Lbhdo7u.MUO1uYN7JR1hm4dR" }, { "_id": "arzCrMRgcNiQuh43", @@ -1219,7 +1266,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1310,7 +1362,8 @@ "createdTime": 1661787234169, "modifiedTime": 1661791116133, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!8ExSFCar5Lbhdo7u.arzCrMRgcNiQuh43" }, { "_id": "uUWb1wZgtMou0TVP", @@ -1325,7 +1378,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1421,7 +1479,8 @@ "createdTime": 1661787234236, "modifiedTime": 1661791116134, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!8ExSFCar5Lbhdo7u.uUWb1wZgtMou0TVP" }, { "_id": "jZ6JNykRtdQ90MOo", @@ -1436,7 +1495,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -1527,7 +1591,8 @@ "createdTime": 1661787234212, "modifiedTime": 1661791116134, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!8ExSFCar5Lbhdo7u.jZ6JNykRtdQ90MOo" }, { "_id": "3MYDjS6k9IYL0aTj", @@ -1542,7 +1607,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1633,7 +1703,8 @@ "createdTime": 1661787234063, "modifiedTime": 1661791116134, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!8ExSFCar5Lbhdo7u.3MYDjS6k9IYL0aTj" }, { "_id": "3Lo9boi7P2ro6QV4", @@ -1648,7 +1719,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1739,7 +1815,8 @@ "createdTime": 1661787234063, "modifiedTime": 1661791116135, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!8ExSFCar5Lbhdo7u.3Lo9boi7P2ro6QV4" }, { "_id": "pO4zGe5LmFIYqJiL", @@ -1754,7 +1831,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1845,7 +1927,8 @@ "createdTime": 1661787234226, "modifiedTime": 1661791116135, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!8ExSFCar5Lbhdo7u.pO4zGe5LmFIYqJiL" }, { "_id": "cg50KpBkBdPK6vPL", @@ -1860,7 +1943,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -1951,7 +2039,8 @@ "createdTime": 1661787234175, "modifiedTime": 1661791116136, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!8ExSFCar5Lbhdo7u.cg50KpBkBdPK6vPL" }, { "_id": "pxpb2eOB6bv4phAf", @@ -1966,7 +2055,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2057,7 +2151,8 @@ "createdTime": 1661787234230, "modifiedTime": 1661791116136, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!8ExSFCar5Lbhdo7u.pxpb2eOB6bv4phAf" }, { "_id": "da0a1t2FqaTjRZGT", @@ -2072,7 +2167,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2163,7 +2263,8 @@ "createdTime": 1661787234180, "modifiedTime": 1661791116136, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!8ExSFCar5Lbhdo7u.da0a1t2FqaTjRZGT" }, { "_id": "5e1xTohkzqFqbYH4", @@ -2178,7 +2279,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2278,7 +2384,8 @@ "createdTime": 1661787234070, "modifiedTime": 1661791116136, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!8ExSFCar5Lbhdo7u.5e1xTohkzqFqbYH4" }, { "_id": "JQyigMNPiDnGI18b", @@ -2293,7 +2400,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -2389,7 +2501,8 @@ "createdTime": 1661787234114, "modifiedTime": 1661791116137, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!8ExSFCar5Lbhdo7u.JQyigMNPiDnGI18b" }, { "_id": "XzkJpE6XpZfKjODD", @@ -2404,7 +2517,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2495,7 +2613,8 @@ "createdTime": 1661787234160, "modifiedTime": 1661791116137, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!8ExSFCar5Lbhdo7u.XzkJpE6XpZfKjODD" } ], "effects": [], @@ -2512,5 +2631,6 @@ "createdTime": 1661787232621, "modifiedTime": 1672596093283, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!8ExSFCar5Lbhdo7u" } diff --git a/packs/src/monsters/monstrosity/gynosphinx.json b/packs/src/monsters/monstrosity/gynosphinx.json index 5bcbf5eb93..d2f157c0a8 100644 --- a/packs/src/monsters/monstrosity/gynosphinx.json +++ b/packs/src/monsters/monstrosity/gynosphinx.json @@ -110,7 +110,12 @@ "environment": "Desert", "cr": 11, "spellLevel": 9, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -467,7 +472,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -546,7 +556,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.nt4mvfC9IXqg5p7q" }, { "_id": "ZbjUur2xbAx0BCSv", @@ -559,7 +570,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -638,7 +654,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.ZbjUur2xbAx0BCSv" }, { "_id": "kvyuqG5WztblcJXb", @@ -651,7 +668,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -730,7 +752,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.kvyuqG5WztblcJXb" }, { "_id": "hVUH6pBt7hYD84ez", @@ -743,7 +766,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -822,7 +850,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.hVUH6pBt7hYD84ez" }, { "_id": "gVFZXBtgx450yiH7", @@ -835,7 +864,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -944,7 +978,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.gVFZXBtgx450yiH7" }, { "_id": "rH7NbL1u2RarHKKb", @@ -957,7 +992,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1036,7 +1076,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.rH7NbL1u2RarHKKb" }, { "_id": "MlIAHfLIUfQZK5vT", @@ -1049,7 +1090,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1128,7 +1174,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.MlIAHfLIUfQZK5vT" }, { "_id": "Sw2aAeas52cJ4uHZ", @@ -1141,7 +1188,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1220,7 +1272,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.Sw2aAeas52cJ4uHZ" }, { "_id": "7ttJw5cEHPyb5ETl", @@ -1233,7 +1286,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1312,7 +1370,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.7ttJw5cEHPyb5ETl" }, { "_id": "udtRN8dgOiBhUuZh", @@ -1325,7 +1384,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -1404,7 +1468,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.udtRN8dgOiBhUuZh" }, { "_id": "V0O6My4SjXUmirH6", @@ -1417,7 +1482,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 3, @@ -1496,7 +1566,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.V0O6My4SjXUmirH6" }, { "_id": "Utk1OQRwYkMkFRD3", @@ -1511,7 +1582,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1602,7 +1678,8 @@ "createdTime": 1661787234148, "modifiedTime": 1661791116091, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.Utk1OQRwYkMkFRD3" }, { "_id": "oIzA2MEHwxhtQneU", @@ -1617,7 +1694,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1708,7 +1790,8 @@ "createdTime": 1661787234224, "modifiedTime": 1661791116092, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.oIzA2MEHwxhtQneU" }, { "_id": "udsLtG0BugXHR2JQ", @@ -1723,7 +1806,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1814,7 +1902,8 @@ "createdTime": 1661787234236, "modifiedTime": 1661791116092, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.udsLtG0BugXHR2JQ" }, { "_id": "ghXTfe7sgCbgf1Q8", @@ -1829,7 +1918,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1920,7 +2014,8 @@ "createdTime": 1661787234192, "modifiedTime": 1661791116092, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.ghXTfe7sgCbgf1Q8" }, { "_id": "3OZnNhunvRtPOQmH", @@ -1935,7 +2030,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -2026,7 +2126,8 @@ "createdTime": 1661787234064, "modifiedTime": 1661791116093, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.3OZnNhunvRtPOQmH" }, { "_id": "z1mx84ONwkXKUZd7", @@ -2039,7 +2140,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -2141,7 +2247,8 @@ "origin": "Item.FlLKKv7bQBlIAs11", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!actors.items.effects!6wbasdWWqtXeIAyD.z1mx84ONwkXKUZd7.6pbotGIvqQkraPva" } ], "folder": null, @@ -2161,7 +2268,8 @@ "createdTime": 1661787234244, "modifiedTime": 1661791116093, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.z1mx84ONwkXKUZd7" }, { "_id": "15Fa6q1nH27XfbR8", @@ -2176,7 +2284,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2267,7 +2380,8 @@ "createdTime": 1661787234054, "modifiedTime": 1661791116094, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.15Fa6q1nH27XfbR8" }, { "_id": "S7VbUetIfVT7B6Eq", @@ -2282,7 +2396,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2373,7 +2492,8 @@ "createdTime": 1661787234139, "modifiedTime": 1661791116094, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.S7VbUetIfVT7B6Eq" }, { "_id": "SleYkHovQ8NagmeV", @@ -2388,7 +2508,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2479,7 +2604,8 @@ "createdTime": 1661787234143, "modifiedTime": 1661791116095, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.SleYkHovQ8NagmeV" }, { "_id": "zMAWdyc8UVb37BK4", @@ -2494,7 +2620,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2585,7 +2716,8 @@ "createdTime": 1661787234245, "modifiedTime": 1661791116095, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.zMAWdyc8UVb37BK4" }, { "_id": "XZhdgVK3cLoxNCQl", @@ -2600,7 +2732,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2691,7 +2828,8 @@ "createdTime": 1661787234157, "modifiedTime": 1661791116095, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.XZhdgVK3cLoxNCQl" }, { "_id": "gopnZvS0c2jD5FP8", @@ -2706,7 +2844,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2797,7 +2940,8 @@ "createdTime": 1661787234193, "modifiedTime": 1661791116096, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.gopnZvS0c2jD5FP8" }, { "_id": "pxpb2eOB6bv4phAf", @@ -2812,7 +2956,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2903,7 +3052,8 @@ "createdTime": 1661787234230, "modifiedTime": 1661791116096, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.pxpb2eOB6bv4phAf" }, { "_id": "tEpDmYZNGc9f5OhJ", @@ -2918,7 +3068,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3009,7 +3164,8 @@ "createdTime": 1661787234234, "modifiedTime": 1661791116096, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.tEpDmYZNGc9f5OhJ" }, { "_id": "W4Qx5z0id6da0vqg", @@ -3024,7 +3180,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -3115,7 +3276,8 @@ "createdTime": 1661787234150, "modifiedTime": 1661791116097, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!6wbasdWWqtXeIAyD.W4Qx5z0id6da0vqg" } ], "effects": [ @@ -3145,7 +3307,8 @@ "origin": "Compendium.dnd5e.monsters.6wbasdWWqtXeIAyD.Item.z1mx84ONwkXKUZd7", "tint": null, "transfer": false, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!6wbasdWWqtXeIAyD.6pbotGIvqQkraPva" } ], "folder": null, @@ -3161,5 +3324,6 @@ "createdTime": 1661787232605, "modifiedTime": 1672596092813, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!6wbasdWWqtXeIAyD" } diff --git a/packs/src/monsters/monstrosity/harpy.json b/packs/src/monsters/monstrosity/harpy.json index 078f7ee233..3f082bff58 100644 --- a/packs/src/monsters/monstrosity/harpy.json +++ b/packs/src/monsters/monstrosity/harpy.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -456,7 +461,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -535,7 +545,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!CqQ6pXQA5WXZNOm3.9efeESJpU7Zmfcyo" }, { "_id": "WqD5jsrWCeNHoD9O", @@ -548,7 +559,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -657,7 +673,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!CqQ6pXQA5WXZNOm3.WqD5jsrWCeNHoD9O" }, { "_id": "ywVQhULZvd4Jn51c", @@ -670,7 +687,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -783,7 +805,8 @@ "createdTime": null, "modifiedTime": 1670011421660, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!CqQ6pXQA5WXZNOm3.ywVQhULZvd4Jn51c" }, { "_id": "QeobH0xuWk2yWmsb", @@ -796,7 +819,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -875,7 +903,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!CqQ6pXQA5WXZNOm3.QeobH0xuWk2yWmsb" } ], "effects": [], @@ -892,5 +921,6 @@ "createdTime": 1661787232669, "modifiedTime": 1672596094727, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!CqQ6pXQA5WXZNOm3" } diff --git a/packs/src/monsters/monstrosity/hippogriff.json b/packs/src/monsters/monstrosity/hippogriff.json index f636eea603..7d467f2b46 100644 --- a/packs/src/monsters/monstrosity/hippogriff.json +++ b/packs/src/monsters/monstrosity/hippogriff.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!T2PExQE84ZcIbAXz.b4iE9smYUMqyqVi6" }, { "_id": "bUWbRbY7TpLSL1kO", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -621,7 +637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!T2PExQE84ZcIbAXz.bUWbRbY7TpLSL1kO" }, { "_id": "CNurXa30GaCRT8MC", @@ -634,7 +651,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -743,7 +765,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!T2PExQE84ZcIbAXz.CNurXa30GaCRT8MC" }, { "_id": "pJN1LKPv23YgFC8w", @@ -756,7 +779,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -865,7 +893,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!T2PExQE84ZcIbAXz.pJN1LKPv23YgFC8w" } ], "effects": [], @@ -882,5 +911,6 @@ "createdTime": 1661787232843, "modifiedTime": 1672596100248, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!T2PExQE84ZcIbAXz" } diff --git a/packs/src/monsters/monstrosity/hydra.json b/packs/src/monsters/monstrosity/hydra.json index 536c1d30e4..146ce965e9 100644 --- a/packs/src/monsters/monstrosity/hydra.json +++ b/packs/src/monsters/monstrosity/hydra.json @@ -110,7 +110,12 @@ "environment": "Swamp", "cr": 8, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!K4vsSlHqbBAHUDHY.xr59rWl3oCOLdQBQ" }, { "_id": "fsAeJDaI0a6sBeFk", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!K4vsSlHqbBAHUDHY.fsAeJDaI0a6sBeFk" }, { "_id": "bE965DuMt1ReAulm", @@ -638,7 +655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -717,7 +739,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!K4vsSlHqbBAHUDHY.bE965DuMt1ReAulm" }, { "_id": "cLcVpNuZOHIxLfPP", @@ -730,7 +753,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -809,7 +837,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!K4vsSlHqbBAHUDHY.cLcVpNuZOHIxLfPP" }, { "_id": "USl5HDilKxVI4BHh", @@ -822,7 +851,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -901,7 +935,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!K4vsSlHqbBAHUDHY.USl5HDilKxVI4BHh" }, { "_id": "fYE4f0Oa2I0MetId", @@ -914,7 +949,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1027,7 +1067,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!K4vsSlHqbBAHUDHY.fYE4f0Oa2I0MetId" } ], "effects": [], @@ -1044,5 +1085,6 @@ "createdTime": 1661787232746, "modifiedTime": 1672596096742, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!K4vsSlHqbBAHUDHY" } diff --git a/packs/src/monsters/monstrosity/kraken.json b/packs/src/monsters/monstrosity/kraken.json index 638b9a85f2..e28d8fdb6a 100644 --- a/packs/src/monsters/monstrosity/kraken.json +++ b/packs/src/monsters/monstrosity/kraken.json @@ -110,7 +110,12 @@ "environment": "Underwater", "cr": 23, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "grg", @@ -464,7 +469,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -543,7 +553,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kVg37NlPcACAzjCT.lPywASGOeP26s2D9" }, { "_id": "uxrpcslS4BkraMVB", @@ -556,7 +567,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -635,7 +651,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kVg37NlPcACAzjCT.uxrpcslS4BkraMVB" }, { "_id": "1oNtSpRA4XS3L6to", @@ -648,7 +665,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -727,7 +749,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kVg37NlPcACAzjCT.1oNtSpRA4XS3L6to" }, { "_id": "j4xzhdYjtz2migUE", @@ -740,7 +763,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -819,7 +847,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kVg37NlPcACAzjCT.j4xzhdYjtz2migUE" }, { "_id": "r51OovswZTVF8Yna", @@ -832,7 +861,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -945,7 +979,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kVg37NlPcACAzjCT.r51OovswZTVF8Yna" }, { "_id": "lfg28JvVAru30yJ4", @@ -958,7 +993,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1067,7 +1107,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kVg37NlPcACAzjCT.lfg28JvVAru30yJ4" }, { "_id": "bwwyMBn4QwiNd4SM", @@ -1080,7 +1121,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1164,7 +1210,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kVg37NlPcACAzjCT.bwwyMBn4QwiNd4SM" }, { "_id": "wVCkpBj5omvdfaMm", @@ -1177,7 +1224,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1261,7 +1313,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kVg37NlPcACAzjCT.wVCkpBj5omvdfaMm" }, { "_id": "ojhTng7wa5ehcJz3", @@ -1274,7 +1327,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1353,7 +1411,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kVg37NlPcACAzjCT.ojhTng7wa5ehcJz3" }, { "_id": "y6iT81UwIkojo6c5", @@ -1366,7 +1425,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1445,7 +1509,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kVg37NlPcACAzjCT.y6iT81UwIkojo6c5" }, { "_id": "K9y1op1wZOMNsFg0", @@ -1458,7 +1523,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1537,7 +1607,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kVg37NlPcACAzjCT.K9y1op1wZOMNsFg0" }, { "_id": "e2EtrJsAPZ19WuE7", @@ -1550,7 +1621,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1629,7 +1705,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kVg37NlPcACAzjCT.e2EtrJsAPZ19WuE7" }, { "_id": "OKGAJSxcW9xQiwyj", @@ -1642,7 +1719,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -1721,7 +1803,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kVg37NlPcACAzjCT.OKGAJSxcW9xQiwyj" }, { "_id": "K0T5NDyi2n8Yt8Ts", @@ -1734,7 +1817,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 3, @@ -1818,7 +1906,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!kVg37NlPcACAzjCT.K0T5NDyi2n8Yt8Ts" } ], "effects": [], @@ -1835,5 +1924,6 @@ "createdTime": 1661787233015, "modifiedTime": 1672596104751, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!kVg37NlPcACAzjCT" } diff --git a/packs/src/monsters/monstrosity/lamia.json b/packs/src/monsters/monstrosity/lamia.json index 251a8b173c..c9efaf706a 100644 --- a/packs/src/monsters/monstrosity/lamia.json +++ b/packs/src/monsters/monstrosity/lamia.json @@ -110,7 +110,12 @@ "environment": "Desert", "cr": 4, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -457,7 +462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -550,7 +560,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MnoL59nOOfYatAkQ.72qxug7ywesnINin" }, { "_id": "mSRxk4sD2tHfYAUo", @@ -563,7 +574,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -642,7 +658,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MnoL59nOOfYatAkQ.mSRxk4sD2tHfYAUo" }, { "_id": "LjPDX0VIEJRv0boG", @@ -655,7 +672,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -734,7 +756,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MnoL59nOOfYatAkQ.LjPDX0VIEJRv0boG" }, { "_id": "lqr5NeudKmKQfSpZ", @@ -747,7 +770,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -856,7 +884,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MnoL59nOOfYatAkQ.lqr5NeudKmKQfSpZ" }, { "_id": "jMTZfqYRB58CwXyw", @@ -869,7 +898,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -982,7 +1016,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MnoL59nOOfYatAkQ.jMTZfqYRB58CwXyw" }, { "_id": "cd8MN5gJkmUn1RTE", @@ -995,7 +1030,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1074,7 +1114,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MnoL59nOOfYatAkQ.cd8MN5gJkmUn1RTE" }, { "_id": "nslx2nT3p4lNkmdp", @@ -1089,7 +1130,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1180,7 +1226,8 @@ "createdTime": 1661787234222, "modifiedTime": 1661791116466, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!MnoL59nOOfYatAkQ.nslx2nT3p4lNkmdp" }, { "_id": "eS7XnnApoxRxYXPs", @@ -1195,7 +1242,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1286,7 +1338,8 @@ "createdTime": 1661787234185, "modifiedTime": 1661791116466, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!MnoL59nOOfYatAkQ.eS7XnnApoxRxYXPs" }, { "_id": "X4c8xCkmF8U9HUMz", @@ -1299,7 +1352,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1392,7 +1450,8 @@ "createdTime": 1661787234155, "modifiedTime": 1661791116466, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!MnoL59nOOfYatAkQ.X4c8xCkmF8U9HUMz" }, { "_id": "fVbCxFRaORalHB20", @@ -1407,7 +1466,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -1498,7 +1562,8 @@ "createdTime": 1661787234189, "modifiedTime": 1661791116467, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!MnoL59nOOfYatAkQ.fVbCxFRaORalHB20" }, { "_id": "zMAWdyc8UVb37BK4", @@ -1513,7 +1578,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1604,7 +1674,8 @@ "createdTime": 1661787234245, "modifiedTime": 1661791116468, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!MnoL59nOOfYatAkQ.zMAWdyc8UVb37BK4" }, { "_id": "JQyigMNPiDnGI18b", @@ -1619,7 +1690,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -1715,7 +1791,8 @@ "createdTime": 1661787234114, "modifiedTime": 1661791116468, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!MnoL59nOOfYatAkQ.JQyigMNPiDnGI18b" } ], "effects": [], @@ -1732,5 +1809,6 @@ "createdTime": 1661787232786, "modifiedTime": 1672596098671, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!MnoL59nOOfYatAkQ" } diff --git a/packs/src/monsters/monstrosity/manticore.json b/packs/src/monsters/monstrosity/manticore.json index e00be15951..c94ee67a41 100644 --- a/packs/src/monsters/monstrosity/manticore.json +++ b/packs/src/monsters/monstrosity/manticore.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 3, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -456,7 +461,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -535,7 +545,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MAoCGF5VkQwhmgvI.7GyypGVW1RhhbcqC" }, { "_id": "Wr6BSqrXAJZu28sp", @@ -548,7 +559,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -627,7 +643,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MAoCGF5VkQwhmgvI.Wr6BSqrXAJZu28sp" }, { "_id": "thSJXAlyfHGmVWN5", @@ -640,7 +657,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -753,7 +775,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MAoCGF5VkQwhmgvI.thSJXAlyfHGmVWN5" }, { "_id": "4WFf0M2tCPwiLPxG", @@ -766,7 +789,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -875,7 +903,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MAoCGF5VkQwhmgvI.4WFf0M2tCPwiLPxG" }, { "_id": "bYJjJPKhiDOTMlmS", @@ -888,7 +917,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -997,7 +1031,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!MAoCGF5VkQwhmgvI.bYJjJPKhiDOTMlmS" } ], "effects": [], @@ -1014,5 +1049,6 @@ "createdTime": 1661787232776, "modifiedTime": 1672596097666, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!MAoCGF5VkQwhmgvI" } diff --git a/packs/src/monsters/monstrosity/medusa.json b/packs/src/monsters/monstrosity/medusa.json index 3824e41e32..8cd8ff1c26 100644 --- a/packs/src/monsters/monstrosity/medusa.json +++ b/packs/src/monsters/monstrosity/medusa.json @@ -110,7 +110,12 @@ "environment": "Desert", "cr": 6, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -456,7 +461,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "none", "cost": null, @@ -535,7 +545,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!eiifqZwYGi71r2Yl.KmzlUGMXUhY2HubE" }, { "_id": "udfhkp3BOEpgThbR", @@ -548,7 +559,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -627,7 +643,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!eiifqZwYGi71r2Yl.udfhkp3BOEpgThbR" }, { "_id": "1N53jrQmsZuhiREF", @@ -640,7 +657,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -753,7 +775,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!eiifqZwYGi71r2Yl.1N53jrQmsZuhiREF" }, { "_id": "ixrzcEmkn9jaDOZ0", @@ -766,7 +789,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -879,7 +907,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!eiifqZwYGi71r2Yl.ixrzcEmkn9jaDOZ0" }, { "_id": "4U98oe3Qr28BGbzG", @@ -892,7 +921,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -1009,7 +1043,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!eiifqZwYGi71r2Yl.4U98oe3Qr28BGbzG" } ], "effects": [], @@ -1026,5 +1061,6 @@ "createdTime": 1661787232950, "modifiedTime": 1672596103084, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!eiifqZwYGi71r2Yl" } diff --git a/packs/src/monsters/monstrosity/merrow.json b/packs/src/monsters/monstrosity/merrow.json index 619aa67274..b1ccdf8a34 100644 --- a/packs/src/monsters/monstrosity/merrow.json +++ b/packs/src/monsters/monstrosity/merrow.json @@ -110,7 +110,12 @@ "environment": "Underwater", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -457,7 +462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -536,7 +546,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1cwfYaACm5F0l4y3.Kxa2DcVskilkNOH9" }, { "_id": "1CXV3h3U6qnpZ7cU", @@ -549,7 +560,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -628,7 +644,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1cwfYaACm5F0l4y3.1CXV3h3U6qnpZ7cU" }, { "_id": "doFYltsiw2Fgp5gn", @@ -641,7 +658,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -754,7 +776,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1cwfYaACm5F0l4y3.doFYltsiw2Fgp5gn" }, { "_id": "bbB0SMNW3l2SHEz5", @@ -767,7 +790,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -876,7 +904,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1cwfYaACm5F0l4y3.bbB0SMNW3l2SHEz5" }, { "_id": "7XgQY1kwKPuoWX7t", @@ -889,7 +918,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 5, "price": { @@ -998,7 +1032,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!1cwfYaACm5F0l4y3.7XgQY1kwKPuoWX7t" } ], "effects": [], @@ -1015,5 +1050,6 @@ "createdTime": 1661787232556, "modifiedTime": 1672596091138, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!1cwfYaACm5F0l4y3" } diff --git a/packs/src/monsters/monstrosity/mimic.json b/packs/src/monsters/monstrosity/mimic.json index 7c7852c207..275a73380c 100644 --- a/packs/src/monsters/monstrosity/mimic.json +++ b/packs/src/monsters/monstrosity/mimic.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -537,7 +547,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hx240PG5r5qpRet3.DOyBdRdgMxLm9BIh" }, { "_id": "aPL8wE2ARwh9JFeX", @@ -550,7 +561,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hx240PG5r5qpRet3.aPL8wE2ARwh9JFeX" }, { "_id": "7g1LwEync57GwqV0", @@ -638,7 +655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -713,7 +735,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hx240PG5r5qpRet3.7g1LwEync57GwqV0" }, { "_id": "sGiOJWWFPPQ6J5Zm", @@ -726,7 +749,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -805,7 +833,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hx240PG5r5qpRet3.sGiOJWWFPPQ6J5Zm" }, { "_id": "qHJyEXRC7oExTjES", @@ -818,7 +847,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -927,7 +961,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hx240PG5r5qpRet3.qHJyEXRC7oExTjES" }, { "_id": "HgNW3DcqMvGVXO7s", @@ -940,7 +975,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1057,7 +1097,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!hx240PG5r5qpRet3.HgNW3DcqMvGVXO7s" } ], "effects": [], @@ -1074,5 +1115,6 @@ "createdTime": 1661787232997, "modifiedTime": 1672596104223, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!hx240PG5r5qpRet3" } diff --git a/packs/src/monsters/monstrosity/minotaur.json b/packs/src/monsters/monstrosity/minotaur.json index 0cdb3d3d53..4012a48585 100644 --- a/packs/src/monsters/monstrosity/minotaur.json +++ b/packs/src/monsters/monstrosity/minotaur.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 3, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -456,7 +461,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -540,7 +550,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pOPQU4UnR27zA0jf.Z1aFAtAP0JJ02tPV" }, { "_id": "Fybno0bT1qZO1sSj", @@ -553,7 +564,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -632,7 +648,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pOPQU4UnR27zA0jf.Fybno0bT1qZO1sSj" }, { "_id": "i1CyGkejt1lDCHEu", @@ -645,7 +662,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -724,7 +746,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pOPQU4UnR27zA0jf.i1CyGkejt1lDCHEu" }, { "_id": "lZ5YdCcXmEDR6vhb", @@ -737,7 +760,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -850,7 +878,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pOPQU4UnR27zA0jf.lZ5YdCcXmEDR6vhb" }, { "_id": "zTqVT0QztTuMOv0e", @@ -863,7 +892,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -972,7 +1006,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!pOPQU4UnR27zA0jf.zTqVT0QztTuMOv0e" } ], "effects": [], @@ -989,5 +1024,6 @@ "createdTime": 1661787233180, "modifiedTime": 1672596106869, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!pOPQU4UnR27zA0jf" } diff --git a/packs/src/monsters/monstrosity/owlbear.json b/packs/src/monsters/monstrosity/owlbear.json index 2416daf666..f33c615751 100644 --- a/packs/src/monsters/monstrosity/owlbear.json +++ b/packs/src/monsters/monstrosity/owlbear.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 3, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -529,7 +539,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zY3W5MG7FjssENf6.QOTQoJFlLIMWmJsu" }, { "_id": "R7Vx1RxO8OjXpzQd", @@ -542,7 +553,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -621,7 +637,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zY3W5MG7FjssENf6.R7Vx1RxO8OjXpzQd" }, { "_id": "CwKQlVkFc2uJW0HL", @@ -634,7 +651,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -743,7 +765,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zY3W5MG7FjssENf6.CwKQlVkFc2uJW0HL" }, { "_id": "FpbBzMs3wu1NK3Zu", @@ -756,7 +779,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -865,7 +893,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zY3W5MG7FjssENf6.FpbBzMs3wu1NK3Zu" } ], "effects": [], @@ -882,5 +911,6 @@ "createdTime": 1661787233260, "modifiedTime": 1672596109405, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!zY3W5MG7FjssENf6" } diff --git a/packs/src/monsters/monstrosity/phase-spider.json b/packs/src/monsters/monstrosity/phase-spider.json index 3910eba98e..70668d30d1 100644 --- a/packs/src/monsters/monstrosity/phase-spider.json +++ b/packs/src/monsters/monstrosity/phase-spider.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 3, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!llSG0Hi4eGlRlQ4o.LKJEecvimhbb9hhg" }, { "_id": "X78NpT0YZG0rZcaP", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!llSG0Hi4eGlRlQ4o.X78NpT0YZG0rZcaP" }, { "_id": "HZklbue3nXLHIevM", @@ -638,7 +655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -717,7 +739,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!llSG0Hi4eGlRlQ4o.HZklbue3nXLHIevM" }, { "_id": "2HPk5TdUTeEhD2eG", @@ -730,7 +753,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -843,7 +871,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!llSG0Hi4eGlRlQ4o.2HPk5TdUTeEhD2eG" } ], "effects": [], @@ -860,5 +889,6 @@ "createdTime": 1661787233138, "modifiedTime": 1672596105457, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!llSG0Hi4eGlRlQ4o" } diff --git a/packs/src/monsters/monstrosity/purple-worm.json b/packs/src/monsters/monstrosity/purple-worm.json index 8299a7b514..4a002a3f19 100644 --- a/packs/src/monsters/monstrosity/purple-worm.json +++ b/packs/src/monsters/monstrosity/purple-worm.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 15, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "grg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!PtotS52HpHX596cZ.ZgUj67GknsWFnbAR" }, { "_id": "Uo4oxB1xZmJcWVsZ", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!PtotS52HpHX596cZ.Uo4oxB1xZmJcWVsZ" }, { "_id": "dlzFJ5UjbMAfJ6Sb", @@ -638,7 +655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -751,7 +773,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!PtotS52HpHX596cZ.dlzFJ5UjbMAfJ6Sb" }, { "_id": "yOjkK3f9jt2fYu3M", @@ -764,7 +787,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -873,7 +901,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!PtotS52HpHX596cZ.yOjkK3f9jt2fYu3M" } ], "effects": [], @@ -890,5 +919,6 @@ "createdTime": 1661787232812, "modifiedTime": 1672596099414, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!PtotS52HpHX596cZ" } diff --git a/packs/src/monsters/monstrosity/remorhaz.json b/packs/src/monsters/monstrosity/remorhaz.json index 318dfb11e3..1fc55f1360 100644 --- a/packs/src/monsters/monstrosity/remorhaz.json +++ b/packs/src/monsters/monstrosity/remorhaz.json @@ -110,7 +110,12 @@ "environment": "Arctic", "cr": 11, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -457,7 +462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -574,7 +584,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VBzqw2rOUvTuNOPI.Qcgc4zckQ7c1Ky8t" }, { "_id": "usmJdksgWhPnjq94", @@ -587,7 +598,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -671,7 +687,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VBzqw2rOUvTuNOPI.usmJdksgWhPnjq94" }, { "_id": "kT6wF3F49uuWgP3h", @@ -684,7 +701,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -797,7 +819,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VBzqw2rOUvTuNOPI.kT6wF3F49uuWgP3h" } ], "effects": [], @@ -814,5 +837,6 @@ "createdTime": 1661787232860, "modifiedTime": 1672596100663, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!VBzqw2rOUvTuNOPI" } diff --git a/packs/src/monsters/monstrosity/roc.json b/packs/src/monsters/monstrosity/roc.json index 48e9322b74..796d48645a 100644 --- a/packs/src/monsters/monstrosity/roc.json +++ b/packs/src/monsters/monstrosity/roc.json @@ -110,7 +110,12 @@ "environment": "Mountain", "cr": 11, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "grg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -563,7 +573,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!p980augbCIdpK9ZX.PZWkwOa8C0Y2tSCR" }, { "_id": "1Ocl9VqVtWFu97Ua", @@ -576,7 +587,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -651,7 +667,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!p980augbCIdpK9ZX.1Ocl9VqVtWFu97Ua" }, { "_id": "s5X12Eygxcpzd9eM", @@ -664,7 +681,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -743,7 +765,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!p980augbCIdpK9ZX.s5X12Eygxcpzd9eM" }, { "_id": "XMiiDwLIMYWFqxyv", @@ -756,7 +779,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -865,7 +893,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!p980augbCIdpK9ZX.XMiiDwLIMYWFqxyv" } ], "effects": [], @@ -882,5 +911,6 @@ "createdTime": 1661787233172, "modifiedTime": 1672596106630, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!p980augbCIdpK9ZX" } diff --git a/packs/src/monsters/monstrosity/roper.json b/packs/src/monsters/monstrosity/roper.json index a25e354d50..f89c18cd13 100644 --- a/packs/src/monsters/monstrosity/roper.json +++ b/packs/src/monsters/monstrosity/roper.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qZyLwdx7lj5d1wfD.rnluQsu6p0n6s70W" }, { "_id": "hQLj7Zzuva4M9KzH", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qZyLwdx7lj5d1wfD.hQLj7Zzuva4M9KzH" }, { "_id": "JsrlYsn9HM9HAeKH", @@ -638,7 +655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -717,7 +739,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qZyLwdx7lj5d1wfD.JsrlYsn9HM9HAeKH" }, { "_id": "mBRjMwEitGrPDm5I", @@ -730,7 +753,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -843,7 +871,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qZyLwdx7lj5d1wfD.mBRjMwEitGrPDm5I" }, { "_id": "bTiw89tDx64zTqDk", @@ -856,7 +885,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -960,7 +994,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qZyLwdx7lj5d1wfD.bTiw89tDx64zTqDk" }, { "_id": "iGuyFLbKazqPCcXY", @@ -973,7 +1008,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1052,7 +1092,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qZyLwdx7lj5d1wfD.iGuyFLbKazqPCcXY" }, { "_id": "fyF8vQbuvkuLKmKf", @@ -1065,7 +1106,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1144,7 +1190,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qZyLwdx7lj5d1wfD.fyF8vQbuvkuLKmKf" } ], "effects": [], @@ -1161,5 +1208,6 @@ "createdTime": 1661787233191, "modifiedTime": 1672596107276, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!qZyLwdx7lj5d1wfD" } diff --git a/packs/src/monsters/monstrosity/rust-monster.json b/packs/src/monsters/monstrosity/rust-monster.json index 4f9eb075de..ec500648e9 100644 --- a/packs/src/monsters/monstrosity/rust-monster.json +++ b/packs/src/monsters/monstrosity/rust-monster.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -454,7 +459,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -533,7 +543,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!WJsxqbHU28D64lWT.IPdRnqMb4ZjhHAm4" }, { "_id": "dobpPU4kb00zSkQt", @@ -546,7 +557,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -625,7 +641,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!WJsxqbHU28D64lWT.dobpPU4kb00zSkQt" }, { "_id": "ZFTo8KoUDrqeFg7l", @@ -638,7 +655,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -751,7 +773,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!WJsxqbHU28D64lWT.ZFTo8KoUDrqeFg7l" }, { "_id": "yxwZ9AtLMKZ61sTz", @@ -764,7 +787,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -843,7 +871,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!WJsxqbHU28D64lWT.yxwZ9AtLMKZ61sTz" } ], "effects": [], @@ -860,5 +889,6 @@ "createdTime": 1661787232869, "modifiedTime": 1672596100925, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!WJsxqbHU28D64lWT" } diff --git a/packs/src/monsters/monstrosity/spirit-naga.json b/packs/src/monsters/monstrosity/spirit-naga.json index 79f95aa13a..b190830117 100644 --- a/packs/src/monsters/monstrosity/spirit-naga.json +++ b/packs/src/monsters/monstrosity/spirit-naga.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 8, "spellLevel": 10, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -462,7 +467,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -579,7 +589,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!BAT6ld8qJZetpycL.aap2fFb4b7uX3XAO" }, { "_id": "WqOflwn1ubAMkGdQ", @@ -592,7 +603,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -671,7 +687,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!BAT6ld8qJZetpycL.WqOflwn1ubAMkGdQ" }, { "_id": "Fla0ZsaY2HvXWqbR", @@ -684,7 +701,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -763,7 +785,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!BAT6ld8qJZetpycL.Fla0ZsaY2HvXWqbR" }, { "_id": "Utk1OQRwYkMkFRD3", @@ -778,7 +801,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -869,7 +897,8 @@ "createdTime": 1661787234148, "modifiedTime": 1661791116262, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!BAT6ld8qJZetpycL.Utk1OQRwYkMkFRD3" }, { "_id": "oIzA2MEHwxhtQneU", @@ -884,7 +913,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -975,7 +1009,8 @@ "createdTime": 1661787234224, "modifiedTime": 1661791116262, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!BAT6ld8qJZetpycL.oIzA2MEHwxhtQneU" }, { "_id": "ctW81uiX56xZR2c5", @@ -990,7 +1025,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1086,7 +1126,8 @@ "createdTime": 1661787234176, "modifiedTime": 1661791116262, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!BAT6ld8qJZetpycL.ctW81uiX56xZR2c5" }, { "_id": "eS7XnnApoxRxYXPs", @@ -1101,7 +1142,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1192,7 +1238,8 @@ "createdTime": 1661787234185, "modifiedTime": 1661791116263, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!BAT6ld8qJZetpycL.eS7XnnApoxRxYXPs" }, { "_id": "ghXTfe7sgCbgf1Q8", @@ -1207,7 +1254,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1298,7 +1350,8 @@ "createdTime": 1661787234192, "modifiedTime": 1661791116263, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!BAT6ld8qJZetpycL.ghXTfe7sgCbgf1Q8" }, { "_id": "KhwiSi9fwVfUPtku", @@ -1311,7 +1364,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1409,7 +1467,8 @@ "createdTime": 1661787234117, "modifiedTime": 1661791116263, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!BAT6ld8qJZetpycL.KhwiSi9fwVfUPtku" }, { "_id": "ppWAAEul0QHtm4er", @@ -1424,7 +1483,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1515,7 +1579,8 @@ "createdTime": 1661787234229, "modifiedTime": 1661791116266, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!BAT6ld8qJZetpycL.ppWAAEul0QHtm4er" }, { "_id": "3Lo9boi7P2ro6QV4", @@ -1530,7 +1595,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1621,7 +1691,8 @@ "createdTime": 1661787234063, "modifiedTime": 1661791116266, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!BAT6ld8qJZetpycL.3Lo9boi7P2ro6QV4" }, { "_id": "IyikgTEOTv701jgQ", @@ -1636,7 +1707,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1732,7 +1808,8 @@ "createdTime": 1661787234110, "modifiedTime": 1661791116266, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!BAT6ld8qJZetpycL.IyikgTEOTv701jgQ" }, { "_id": "13uVuBQP6VaiSPvC", @@ -1747,7 +1824,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1838,7 +1920,8 @@ "createdTime": 1661787234054, "modifiedTime": 1661791116267, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!BAT6ld8qJZetpycL.13uVuBQP6VaiSPvC" }, { "_id": "pybg5MNc3lkerH4Y", @@ -1853,7 +1936,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1949,7 +2037,8 @@ "createdTime": 1661787234230, "modifiedTime": 1661791116268, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!BAT6ld8qJZetpycL.pybg5MNc3lkerH4Y" }, { "_id": "A4RsPuSvB9wFtz1j", @@ -1964,7 +2053,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2060,7 +2154,8 @@ "createdTime": 1661787234087, "modifiedTime": 1661791116268, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!BAT6ld8qJZetpycL.A4RsPuSvB9wFtz1j" }, { "_id": "91Sw6vOIaO7U8DvM", @@ -2075,7 +2170,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2166,7 +2266,8 @@ "createdTime": 1661787234083, "modifiedTime": 1661791116268, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!BAT6ld8qJZetpycL.91Sw6vOIaO7U8DvM" } ], "effects": [], @@ -2183,5 +2284,6 @@ "createdTime": 1661787232659, "modifiedTime": 1672596094432, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!BAT6ld8qJZetpycL" } diff --git a/packs/src/monsters/monstrosity/tarrasque.json b/packs/src/monsters/monstrosity/tarrasque.json index 0b201790ae..951a242a9c 100644 --- a/packs/src/monsters/monstrosity/tarrasque.json +++ b/packs/src/monsters/monstrosity/tarrasque.json @@ -110,7 +110,12 @@ "environment": "Urban", "cr": 30, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "grg", @@ -467,7 +472,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -546,7 +556,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KCvt4FdOVJbuZ3T0.Lq4Toyg4sjkdU4e2" }, { "_id": "QmAWameRMoj0gDKt", @@ -559,7 +570,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -638,7 +654,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KCvt4FdOVJbuZ3T0.QmAWameRMoj0gDKt" }, { "_id": "tE9TjxIMLnqDisjv", @@ -651,7 +668,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -730,7 +752,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KCvt4FdOVJbuZ3T0.tE9TjxIMLnqDisjv" }, { "_id": "wSqPYa5GWfBsLRbY", @@ -743,7 +766,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -822,7 +850,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KCvt4FdOVJbuZ3T0.wSqPYa5GWfBsLRbY" }, { "_id": "Eb4utmmDfdnqLOZV", @@ -835,7 +864,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -914,7 +948,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KCvt4FdOVJbuZ3T0.Eb4utmmDfdnqLOZV" }, { "_id": "suUr7bJqBqE7xk2F", @@ -927,7 +962,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1040,7 +1080,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KCvt4FdOVJbuZ3T0.suUr7bJqBqE7xk2F" }, { "_id": "7DRko62ztr6FjZLA", @@ -1053,7 +1094,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1162,7 +1208,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KCvt4FdOVJbuZ3T0.7DRko62ztr6FjZLA" }, { "_id": "E1RZdzEY2qnG2jLn", @@ -1175,7 +1222,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1284,7 +1336,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KCvt4FdOVJbuZ3T0.E1RZdzEY2qnG2jLn" }, { "_id": "Lo4LU9FBxez1Nzqm", @@ -1297,7 +1350,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1406,7 +1464,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KCvt4FdOVJbuZ3T0.Lo4LU9FBxez1Nzqm" }, { "_id": "3mtn5D2GoD19WDVW", @@ -1419,7 +1478,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1498,7 +1562,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KCvt4FdOVJbuZ3T0.3mtn5D2GoD19WDVW" }, { "_id": "7ycN6rrAEJQP3ZOs", @@ -1511,7 +1576,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1624,7 +1694,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KCvt4FdOVJbuZ3T0.7ycN6rrAEJQP3ZOs" }, { "_id": "9OZ6Zm76HXyRSKlP", @@ -1637,7 +1708,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1716,7 +1792,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KCvt4FdOVJbuZ3T0.9OZ6Zm76HXyRSKlP" }, { "_id": "sBnQiUt83GYUkKBw", @@ -1729,7 +1806,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1808,7 +1890,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KCvt4FdOVJbuZ3T0.sBnQiUt83GYUkKBw" }, { "_id": "UUapff5kwkff2TJP", @@ -1821,7 +1904,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1900,7 +1988,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KCvt4FdOVJbuZ3T0.UUapff5kwkff2TJP" }, { "_id": "XFNRU61XBt7FvXAM", @@ -1913,7 +2002,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1988,7 +2082,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KCvt4FdOVJbuZ3T0.XFNRU61XBt7FvXAM" }, { "_id": "wYuyOwVFLle1u78H", @@ -2001,7 +2096,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -2076,7 +2176,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KCvt4FdOVJbuZ3T0.wYuyOwVFLle1u78H" }, { "_id": "wqgAyjgICylYksGZ", @@ -2089,7 +2190,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -2168,7 +2274,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!KCvt4FdOVJbuZ3T0.wqgAyjgICylYksGZ" } ], "effects": [], @@ -2185,5 +2292,6 @@ "createdTime": 1661787232752, "modifiedTime": 1672596096922, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!KCvt4FdOVJbuZ3T0" } diff --git a/packs/src/monsters/monstrosity/winter-wolf.json b/packs/src/monsters/monstrosity/winter-wolf.json index afc8cb8ff2..b9753ff5ec 100644 --- a/packs/src/monsters/monstrosity/winter-wolf.json +++ b/packs/src/monsters/monstrosity/winter-wolf.json @@ -110,7 +110,12 @@ "environment": "Arctic", "cr": 3, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -460,7 +465,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -535,7 +545,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!yGTh874etxUckmAf.gbqFx1sEQUYQlDpJ" }, { "_id": "axhIBG9zM7Z9AHxL", @@ -548,7 +559,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -627,7 +643,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!yGTh874etxUckmAf.axhIBG9zM7Z9AHxL" }, { "_id": "pu8fxDuua6ObNqtg", @@ -640,7 +657,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -719,7 +741,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!yGTh874etxUckmAf.pu8fxDuua6ObNqtg" }, { "_id": "5PmQuifZGbPWxAYz", @@ -732,7 +755,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -845,7 +873,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!yGTh874etxUckmAf.5PmQuifZGbPWxAYz" }, { "_id": "Rj3oSInoQMIfHrPc", @@ -858,7 +887,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -942,7 +976,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!yGTh874etxUckmAf.Rj3oSInoQMIfHrPc" } ], "effects": [], @@ -959,5 +994,6 @@ "createdTime": 1661787233247, "modifiedTime": 1672596109040, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!yGTh874etxUckmAf" } diff --git a/packs/src/monsters/monstrosity/worg.json b/packs/src/monsters/monstrosity/worg.json index 18eb51d86d..964c51eade 100644 --- a/packs/src/monsters/monstrosity/worg.json +++ b/packs/src/monsters/monstrosity/worg.json @@ -110,7 +110,12 @@ "environment": "Grassland", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -457,7 +462,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -532,7 +542,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VBkp2rGQKvMcCOus.oWGcJqNGhbIOeRjU" }, { "_id": "UnONIXYgZcE3Jya0", @@ -545,7 +556,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -658,7 +674,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!VBkp2rGQKvMcCOus.UnONIXYgZcE3Jya0" } ], "effects": [], @@ -675,5 +692,6 @@ "createdTime": 1661787232858, "modifiedTime": 1672596100623, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!VBkp2rGQKvMcCOus" } diff --git a/packs/src/monsters/ooze/black-pudding.json b/packs/src/monsters/ooze/black-pudding.json index 12688a6488..711ec7312b 100644 --- a/packs/src/monsters/ooze/black-pudding.json +++ b/packs/src/monsters/ooze/black-pudding.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 4, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -466,7 +471,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -545,7 +555,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!NwQpeeaMxAC3fRft.Na7qo8robmcacNZI" }, { "_id": "wvlDMuDDdk7peoPa", @@ -558,7 +569,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -642,7 +658,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!NwQpeeaMxAC3fRft.wvlDMuDDdk7peoPa" }, { "_id": "06FRVwBFMJYhZ94o", @@ -655,7 +672,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -734,7 +756,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!NwQpeeaMxAC3fRft.06FRVwBFMJYhZ94o" }, { "_id": "v6ZspnPr8G5hApkL", @@ -747,7 +770,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -860,7 +888,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!NwQpeeaMxAC3fRft.v6ZspnPr8G5hApkL" }, { "_id": "VcVWWSlfTBeXWh3T", @@ -873,7 +902,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -952,7 +986,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!NwQpeeaMxAC3fRft.VcVWWSlfTBeXWh3T" } ], "effects": [], @@ -969,5 +1004,6 @@ "createdTime": 1661787232795, "modifiedTime": 1672596098892, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!NwQpeeaMxAC3fRft" } diff --git a/packs/src/monsters/ooze/gelatinous-cube.json b/packs/src/monsters/ooze/gelatinous-cube.json index fb0c22d52d..ad47462848 100644 --- a/packs/src/monsters/ooze/gelatinous-cube.json +++ b/packs/src/monsters/ooze/gelatinous-cube.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -461,7 +466,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -540,7 +550,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3fzQVYQhXxCXRa2o.m8prrQUwqGwX6Jyk" }, { "_id": "ISZmp6ev081hhUxT", @@ -553,7 +564,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -632,7 +648,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3fzQVYQhXxCXRa2o.ISZmp6ev081hhUxT" }, { "_id": "t2KRGzsjV4Wwp0wj", @@ -645,7 +662,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -754,7 +776,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3fzQVYQhXxCXRa2o.t2KRGzsjV4Wwp0wj" }, { "_id": "6PuULfBzy5vpBSFI", @@ -767,7 +790,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -851,7 +879,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!3fzQVYQhXxCXRa2o.6PuULfBzy5vpBSFI" } ], "effects": [], @@ -868,5 +897,6 @@ "createdTime": 1661787232572, "modifiedTime": 1672596091639, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!3fzQVYQhXxCXRa2o" } diff --git a/packs/src/monsters/ooze/gray-ooze.json b/packs/src/monsters/ooze/gray-ooze.json index 6fc37d53d9..de296f3283 100644 --- a/packs/src/monsters/ooze/gray-ooze.json +++ b/packs/src/monsters/ooze/gray-ooze.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -465,7 +470,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -544,7 +554,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!fqbFYtbtkrL53FOC.2iRdkvAfbmxSymuw" }, { "_id": "uSay5J2sf9zXsabi", @@ -557,7 +568,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -636,7 +652,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!fqbFYtbtkrL53FOC.uSay5J2sf9zXsabi" }, { "_id": "NDZ02JVZWMbzRGGJ", @@ -649,7 +666,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -728,7 +750,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!fqbFYtbtkrL53FOC.NDZ02JVZWMbzRGGJ" }, { "_id": "KO4qRywgiEQ3F004", @@ -741,7 +764,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -854,7 +882,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!fqbFYtbtkrL53FOC.KO4qRywgiEQ3F004" } ], "effects": [], @@ -871,5 +900,6 @@ "createdTime": 1661787232963, "modifiedTime": 1672596103352, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!fqbFYtbtkrL53FOC" } diff --git a/packs/src/monsters/ooze/ochre-jelly.json b/packs/src/monsters/ooze/ochre-jelly.json index 981db90145..e02afbb53f 100644 --- a/packs/src/monsters/ooze/ochre-jelly.json +++ b/packs/src/monsters/ooze/ochre-jelly.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -466,7 +471,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -579,7 +589,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xBhG7Dos3tkg9jWz.SYdqeemFOudCYb9E" }, { "_id": "Rrswv9BPB94D3xHQ", @@ -592,7 +603,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -671,7 +687,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xBhG7Dos3tkg9jWz.Rrswv9BPB94D3xHQ" }, { "_id": "aaVwT7vVSywUzWhC", @@ -684,7 +701,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -763,7 +785,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xBhG7Dos3tkg9jWz.aaVwT7vVSywUzWhC" }, { "_id": "2ifhxY5f2Xs4GMxR", @@ -776,7 +799,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -855,7 +883,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xBhG7Dos3tkg9jWz.2ifhxY5f2Xs4GMxR" } ], "effects": [], @@ -872,5 +901,6 @@ "createdTime": 1661787233240, "modifiedTime": 1672596108817, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!xBhG7Dos3tkg9jWz" } diff --git a/packs/src/monsters/plant/awakened-shrub.json b/packs/src/monsters/plant/awakened-shrub.json index 06a397962b..b8064293eb 100644 --- a/packs/src/monsters/plant/awakened-shrub.json +++ b/packs/src/monsters/plant/awakened-shrub.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "sm", @@ -460,7 +465,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -569,7 +579,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gaSTr7DFZJLmgI2J.Vdk7dsybx2iYlKVx" }, { "_id": "cfgn9yboSN7jIsDC", @@ -582,7 +593,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -661,7 +677,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gaSTr7DFZJLmgI2J.cfgn9yboSN7jIsDC" } ], "effects": [], @@ -678,5 +695,6 @@ "createdTime": 1661787232973, "modifiedTime": 1672596103587, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!gaSTr7DFZJLmgI2J" } diff --git a/packs/src/monsters/plant/awakened-tree.json b/packs/src/monsters/plant/awakened-tree.json index c4e721d49b..607edd82e9 100644 --- a/packs/src/monsters/plant/awakened-tree.json +++ b/packs/src/monsters/plant/awakened-tree.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -461,7 +466,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -540,7 +550,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!UR2gWLFHmFwG7ReH.Q90HYHsZp8MD2iv2" }, { "_id": "WEesSpitzLnaCknL", @@ -553,7 +564,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -662,7 +678,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!UR2gWLFHmFwG7ReH.WEesSpitzLnaCknL" } ], "effects": [], @@ -679,5 +696,6 @@ "createdTime": 1661787232853, "modifiedTime": 1672596100508, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!UR2gWLFHmFwG7ReH" } diff --git a/packs/src/monsters/plant/shambling-mound.json b/packs/src/monsters/plant/shambling-mound.json index 12bb22c180..c73256b4bd 100644 --- a/packs/src/monsters/plant/shambling-mound.json +++ b/packs/src/monsters/plant/shambling-mound.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -463,7 +468,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -542,7 +552,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gGeLeV411iQ5Yijs.gyAyLX9CJBbawmr3" }, { "_id": "2aGoBVVEF54VcC9d", @@ -555,7 +566,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -634,7 +650,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gGeLeV411iQ5Yijs.2aGoBVVEF54VcC9d" }, { "_id": "N42BQALoCmeYphD1", @@ -647,7 +664,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -731,7 +753,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gGeLeV411iQ5Yijs.N42BQALoCmeYphD1" }, { "_id": "lOIA9YKQU8xSx7Lj", @@ -744,7 +767,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -853,7 +881,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!gGeLeV411iQ5Yijs.lOIA9YKQU8xSx7Lj" } ], "effects": [], @@ -870,5 +899,6 @@ "createdTime": 1661787232970, "modifiedTime": 1672596103511, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!gGeLeV411iQ5Yijs" } diff --git a/packs/src/monsters/plant/shrieker.json b/packs/src/monsters/plant/shrieker.json index 3425b4fa6b..44cae941cc 100644 --- a/packs/src/monsters/plant/shrieker.json +++ b/packs/src/monsters/plant/shrieker.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -537,7 +547,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!TaK6nQMGqZ0y8gt7.Cvw6LMtbxmSBvVoZ" }, { "_id": "NAyTy2HfzqvHtjRh", @@ -550,7 +561,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -629,7 +645,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!TaK6nQMGqZ0y8gt7.NAyTy2HfzqvHtjRh" } ], "effects": [], @@ -646,5 +663,6 @@ "createdTime": 1661787232845, "modifiedTime": 1672596100285, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!TaK6nQMGqZ0y8gt7" } diff --git a/packs/src/monsters/plant/treant.json b/packs/src/monsters/plant/treant.json index 075b2adff7..d145c64b67 100644 --- a/packs/src/monsters/plant/treant.json +++ b/packs/src/monsters/plant/treant.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 9, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "huge", @@ -464,7 +469,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -543,7 +553,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!NB6wUgVqeOQtsQKu.8uUyRr6Ho7Yvx8pP" }, { "_id": "skQsBSPby8pLZSLI", @@ -556,7 +567,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -635,7 +651,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!NB6wUgVqeOQtsQKu.skQsBSPby8pLZSLI" }, { "_id": "BLz58sp79C2HvinU", @@ -648,7 +665,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -727,7 +749,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!NB6wUgVqeOQtsQKu.BLz58sp79C2HvinU" }, { "_id": "eTROJriR9B5abIZy", @@ -740,7 +763,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -849,7 +877,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!NB6wUgVqeOQtsQKu.eTROJriR9B5abIZy" }, { "_id": "RMsSkfIx97Hnqf37", @@ -862,7 +891,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -941,7 +975,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!NB6wUgVqeOQtsQKu.RMsSkfIx97Hnqf37" }, { "_id": "lisZZTaupqInGEi1", @@ -954,7 +989,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1063,7 +1103,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!NB6wUgVqeOQtsQKu.lisZZTaupqInGEi1" } ], "effects": [], @@ -1080,5 +1121,6 @@ "createdTime": 1661787232789, "modifiedTime": 1672596098767, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!NB6wUgVqeOQtsQKu" } diff --git a/packs/src/monsters/plant/violet-fungus.json b/packs/src/monsters/plant/violet-fungus.json index 27067fe9b6..bd711231d9 100644 --- a/packs/src/monsters/plant/violet-fungus.json +++ b/packs/src/monsters/plant/violet-fungus.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7EmUVycEASn7SFL0.OEx9iy4HDipiYsPt" }, { "_id": "wjDktLNTUnueuX2X", @@ -580,7 +591,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -659,7 +675,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7EmUVycEASn7SFL0.wjDktLNTUnueuX2X" }, { "_id": "fZgfSlczUTtrCNEb", @@ -672,7 +689,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -751,7 +773,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7EmUVycEASn7SFL0.fZgfSlczUTtrCNEb" } ], "effects": [], @@ -768,5 +791,6 @@ "createdTime": 1661787232610, "modifiedTime": 1672596092910, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!7EmUVycEASn7SFL0" } diff --git a/packs/src/monsters/undead/avatar-of-death.json b/packs/src/monsters/undead/avatar-of-death.json index eb659b5576..44f7cf6894 100644 --- a/packs/src/monsters/undead/avatar-of-death.json +++ b/packs/src/monsters/undead/avatar-of-death.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0, "spellLevel": 1, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -460,7 +465,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -544,7 +554,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!XiSWKZzAUxdmFOLL.tXHiE3pxHbBF8bS6" }, { "_id": "1rEzqo8fiLbeFE07", @@ -557,7 +568,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -636,7 +652,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!XiSWKZzAUxdmFOLL.1rEzqo8fiLbeFE07" }, { "_id": "d7ERliHkrcvQAF1X", @@ -649,7 +666,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -737,7 +759,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!XiSWKZzAUxdmFOLL.d7ERliHkrcvQAF1X" } ], "effects": [], @@ -754,5 +777,6 @@ "createdTime": 1661787232878, "modifiedTime": 1672596101187, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!XiSWKZzAUxdmFOLL" } diff --git a/packs/src/monsters/undead/ghast.json b/packs/src/monsters/undead/ghast.json index 45e4f84014..2f6b8a0ade 100644 --- a/packs/src/monsters/undead/ghast.json +++ b/packs/src/monsters/undead/ghast.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -464,7 +469,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "none", "cost": null, @@ -543,7 +553,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!IyIybE5t2adMEVUM.gBiHo206x7uGoySO" }, { "_id": "WjqNhFTYP9w4gGHd", @@ -556,7 +567,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -635,7 +651,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!IyIybE5t2adMEVUM.WjqNhFTYP9w4gGHd" }, { "_id": "nSgLkorv2oln5BIt", @@ -648,7 +665,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -761,7 +783,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!IyIybE5t2adMEVUM.nSgLkorv2oln5BIt" }, { "_id": "ricjyd1SKzeQ5gQE", @@ -774,7 +797,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -883,7 +911,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!IyIybE5t2adMEVUM.ricjyd1SKzeQ5gQE" } ], "effects": [], @@ -900,5 +929,6 @@ "createdTime": 1661787232735, "modifiedTime": 1672596096402, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!IyIybE5t2adMEVUM" } diff --git a/packs/src/monsters/undead/ghost.json b/packs/src/monsters/undead/ghost.json index 1813bc1c6d..b0ce6c382c 100644 --- a/packs/src/monsters/undead/ghost.json +++ b/packs/src/monsters/undead/ghost.json @@ -110,7 +110,12 @@ "environment": "", "cr": 4, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -474,7 +479,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -553,7 +563,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qoFEjfrANBdrCP6m.tjrDz1IWVcjF7PMl" }, { "_id": "SiBsPubItj26pcHa", @@ -566,7 +577,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -645,7 +661,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qoFEjfrANBdrCP6m.SiBsPubItj26pcHa" }, { "_id": "wdOqdYfLb2Nu1Uud", @@ -658,7 +675,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -767,7 +789,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qoFEjfrANBdrCP6m.wdOqdYfLb2Nu1Uud" }, { "_id": "WyxVuCp4iU10bA7m", @@ -780,7 +803,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -859,7 +887,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qoFEjfrANBdrCP6m.WyxVuCp4iU10bA7m" }, { "_id": "lOzkFHeXCdO2FB9X", @@ -872,7 +901,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -951,7 +985,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qoFEjfrANBdrCP6m.lOzkFHeXCdO2FB9X" }, { "_id": "UF0mfYsgI4ay6mzv", @@ -964,7 +999,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1043,7 +1083,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!qoFEjfrANBdrCP6m.UF0mfYsgI4ay6mzv" } ], "effects": [], @@ -1060,5 +1101,6 @@ "createdTime": 1661787233196, "modifiedTime": 1672596107399, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!qoFEjfrANBdrCP6m" } diff --git a/packs/src/monsters/undead/ghoul.json b/packs/src/monsters/undead/ghoul.json index b86e956dd4..2b1f51a070 100644 --- a/packs/src/monsters/undead/ghoul.json +++ b/packs/src/monsters/undead/ghoul.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -462,7 +467,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -575,7 +585,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!OBujQLLPSmlJiZnL.E5cmqIqRIwyTkhgp" }, { "_id": "ArxzPC3rsBztgUvI", @@ -588,7 +599,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -697,7 +713,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!OBujQLLPSmlJiZnL.ArxzPC3rsBztgUvI" } ], "effects": [], @@ -714,5 +731,6 @@ "createdTime": 1661787232798, "modifiedTime": 1672596098975, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!OBujQLLPSmlJiZnL" } diff --git a/packs/src/monsters/undead/lich.json b/packs/src/monsters/undead/lich.json index 0c5f1101d8..a728b6701a 100644 --- a/packs/src/monsters/undead/lich.json +++ b/packs/src/monsters/undead/lich.json @@ -110,7 +110,12 @@ "environment": "", "cr": 21, "spellLevel": 18, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -474,7 +479,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -549,7 +559,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.6PwbK4d0W11LsEkf" }, { "_id": "dJLqLsCek3uxbzuX", @@ -562,7 +573,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -641,7 +657,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.dJLqLsCek3uxbzuX" }, { "_id": "Uox2GEp5GMXOOXOc", @@ -654,7 +671,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -733,7 +755,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.Uox2GEp5GMXOOXOc" }, { "_id": "sXU9KTYnmgi08EQw", @@ -746,7 +769,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 3, @@ -830,7 +858,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.sXU9KTYnmgi08EQw" }, { "_id": "YfFIobyElKqcizgt", @@ -843,7 +872,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -922,7 +956,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.YfFIobyElKqcizgt" }, { "_id": "stk9i3rPK7z99CDf", @@ -935,7 +970,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1014,7 +1054,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.stk9i3rPK7z99CDf" }, { "_id": "UMoMhboTLq75ZJW8", @@ -1027,7 +1068,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1106,7 +1152,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.UMoMhboTLq75ZJW8" }, { "_id": "KDSrdpdFPDKnh80y", @@ -1119,7 +1166,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1232,7 +1284,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.KDSrdpdFPDKnh80y" }, { "_id": "Rry67emsoMMjvQQz", @@ -1245,7 +1298,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1324,7 +1382,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.Rry67emsoMMjvQQz" }, { "_id": "GvT7gczoJ6QCocrA", @@ -1337,7 +1396,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1416,7 +1480,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.GvT7gczoJ6QCocrA" }, { "_id": "TB52r9CGyQ5lewor", @@ -1429,7 +1494,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1508,7 +1578,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.TB52r9CGyQ5lewor" }, { "_id": "XbzBKNTXHSUjzWtt", @@ -1521,7 +1592,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1600,7 +1676,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.XbzBKNTXHSUjzWtt" }, { "_id": "Utk1OQRwYkMkFRD3", @@ -1615,7 +1692,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1706,7 +1788,8 @@ "createdTime": 1661787234148, "modifiedTime": 1661791116704, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.Utk1OQRwYkMkFRD3" }, { "_id": "udsLtG0BugXHR2JQ", @@ -1721,7 +1804,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1812,7 +1900,8 @@ "createdTime": 1661787234236, "modifiedTime": 1661791116705, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.udsLtG0BugXHR2JQ" }, { "_id": "ctW81uiX56xZR2c5", @@ -1827,7 +1916,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1923,7 +2017,8 @@ "createdTime": 1661787234176, "modifiedTime": 1661791116705, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.ctW81uiX56xZR2c5" }, { "_id": "ghXTfe7sgCbgf1Q8", @@ -1938,7 +2033,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2029,7 +2129,8 @@ "createdTime": 1661787234192, "modifiedTime": 1661791116705, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.ghXTfe7sgCbgf1Q8" }, { "_id": "41JIhpDyM9Anm7cs", @@ -2044,7 +2145,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2140,7 +2246,8 @@ "createdTime": 1661787234065, "modifiedTime": 1661791116706, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.41JIhpDyM9Anm7cs" }, { "_id": "z1mx84ONwkXKUZd7", @@ -2153,7 +2260,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -2255,7 +2367,8 @@ "origin": "Item.FlLKKv7bQBlIAs11", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!actors.items.effects!bfh29vIEoGzI240e.z1mx84ONwkXKUZd7.6pbotGIvqQkraPva" } ], "folder": null, @@ -2275,7 +2388,8 @@ "createdTime": 1661787234244, "modifiedTime": 1661791116706, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.z1mx84ONwkXKUZd7" }, { "_id": "WTbOQBsarsL1LuXJ", @@ -2290,7 +2404,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2386,7 +2505,8 @@ "createdTime": 1661787234152, "modifiedTime": 1661791116706, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.WTbOQBsarsL1LuXJ" }, { "_id": "4H6YgYdKgnX6ZQ8M", @@ -2401,7 +2521,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2497,7 +2622,8 @@ "createdTime": 1661787234066, "modifiedTime": 1661791116706, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.4H6YgYdKgnX6ZQ8M" }, { "_id": "ppWAAEul0QHtm4er", @@ -2512,7 +2638,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2603,7 +2734,8 @@ "createdTime": 1661787234229, "modifiedTime": 1661791116707, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.ppWAAEul0QHtm4er" }, { "_id": "1N8dDMMgZ1h1YJ3B", @@ -2618,7 +2750,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2709,7 +2846,8 @@ "createdTime": 1661787234056, "modifiedTime": 1661791116707, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.1N8dDMMgZ1h1YJ3B" }, { "_id": "X4c8xCkmF8U9HUMz", @@ -2722,7 +2860,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2815,7 +2958,8 @@ "createdTime": 1661787234155, "modifiedTime": 1661791116707, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.X4c8xCkmF8U9HUMz" }, { "_id": "oyE5nVppa5mde5gT", @@ -2830,7 +2974,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -2921,7 +3070,8 @@ "createdTime": 1661787234225, "modifiedTime": 1661791116708, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.oyE5nVppa5mde5gT" }, { "_id": "Ek45cBpVXvJdv1Qy", @@ -2936,7 +3086,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -3027,7 +3182,8 @@ "createdTime": 1661787234102, "modifiedTime": 1661791116708, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.Ek45cBpVXvJdv1Qy" }, { "_id": "15Fa6q1nH27XfbR8", @@ -3042,7 +3198,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3133,7 +3294,8 @@ "createdTime": 1661787234054, "modifiedTime": 1661791116708, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.15Fa6q1nH27XfbR8" }, { "_id": "ztgcdrWPshKRpFd0", @@ -3148,7 +3310,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3244,7 +3411,8 @@ "createdTime": 1661787234246, "modifiedTime": 1661791116709, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.ztgcdrWPshKRpFd0" }, { "_id": "pybg5MNc3lkerH4Y", @@ -3259,7 +3427,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3355,7 +3528,8 @@ "createdTime": 1661787234230, "modifiedTime": 1661791116710, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.pybg5MNc3lkerH4Y" }, { "_id": "A4RsPuSvB9wFtz1j", @@ -3370,7 +3544,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3466,7 +3645,8 @@ "createdTime": 1661787234087, "modifiedTime": 1661791116712, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.A4RsPuSvB9wFtz1j" }, { "_id": "LkvI11Uue774QBKZ", @@ -3481,7 +3661,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3577,7 +3762,8 @@ "createdTime": 1661787234121, "modifiedTime": 1661791116713, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.LkvI11Uue774QBKZ" }, { "_id": "fVbCxFRaORalHB20", @@ -3592,7 +3778,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -3683,7 +3874,8 @@ "createdTime": 1661787234189, "modifiedTime": 1661791116714, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.fVbCxFRaORalHB20" }, { "_id": "HBHbOGKNVVprSlwn", @@ -3698,7 +3890,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3794,7 +3991,8 @@ "createdTime": 1661787234106, "modifiedTime": 1661791116714, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.HBHbOGKNVVprSlwn" }, { "_id": "HPvZm8YJO91k6Qdg", @@ -3809,7 +4007,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3905,7 +4108,8 @@ "createdTime": 1661787234107, "modifiedTime": 1661791116714, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.HPvZm8YJO91k6Qdg" }, { "_id": "J6Jpw5XzB5aTeqnz", @@ -3920,7 +4124,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -4011,7 +4220,8 @@ "createdTime": 1661787234111, "modifiedTime": 1661791116715, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.J6Jpw5XzB5aTeqnz" }, { "_id": "eEpy1ONlXumKS1mp", @@ -4026,7 +4236,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -4117,7 +4332,8 @@ "createdTime": 1661787234184, "modifiedTime": 1661791116715, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.eEpy1ONlXumKS1mp" }, { "_id": "dmvaMLFWFtv0qx0S", @@ -4132,7 +4348,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -4223,7 +4444,8 @@ "createdTime": 1661787234182, "modifiedTime": 1661791116715, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.dmvaMLFWFtv0qx0S" }, { "_id": "35j2QIMmIk6aEdxj", @@ -4238,7 +4460,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -4329,7 +4556,8 @@ "createdTime": 1661787234062, "modifiedTime": 1661791116715, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.35j2QIMmIk6aEdxj" }, { "_id": "WmQpxfjZwF3MGUby", @@ -4344,7 +4572,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -4435,7 +4668,8 @@ "createdTime": 1661787234154, "modifiedTime": 1661791116716, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!bfh29vIEoGzI240e.WmQpxfjZwF3MGUby" } ], "effects": [ @@ -4465,7 +4699,8 @@ "origin": "Compendium.dnd5e.monsters.bfh29vIEoGzI240e.Item.z1mx84ONwkXKUZd7", "tint": null, "transfer": false, - "sort": 0 + "sort": 0, + "_key": "!actors.effects!bfh29vIEoGzI240e.6pbotGIvqQkraPva" } ], "folder": null, @@ -4481,5 +4716,6 @@ "createdTime": 1661787232912, "modifiedTime": 1672596102266, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!bfh29vIEoGzI240e" } diff --git a/packs/src/monsters/undead/minotaur-skeleton.json b/packs/src/monsters/undead/minotaur-skeleton.json index 5531ed117f..1ca01b7a33 100644 --- a/packs/src/monsters/undead/minotaur-skeleton.json +++ b/packs/src/monsters/undead/minotaur-skeleton.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -463,7 +468,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -547,7 +557,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xple5bvGj42uGgdd.p7R5kkqAVQFKClRm" }, { "_id": "vJAkNKhTmRrz6Zoq", @@ -560,7 +571,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 7, "price": { @@ -673,7 +689,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xple5bvGj42uGgdd.vJAkNKhTmRrz6Zoq" }, { "_id": "3Fsct4zbAf7l47Lp", @@ -686,7 +703,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -795,7 +817,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!xple5bvGj42uGgdd.3Fsct4zbAf7l47Lp" } ], "effects": [], @@ -812,5 +835,6 @@ "createdTime": 1661787233242, "modifiedTime": 1672596108859, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!xple5bvGj42uGgdd" } diff --git a/packs/src/monsters/undead/mummy-lord.json b/packs/src/monsters/undead/mummy-lord.json index 5f969c6c4c..d087aee218 100644 --- a/packs/src/monsters/undead/mummy-lord.json +++ b/packs/src/monsters/undead/mummy-lord.json @@ -110,7 +110,12 @@ "environment": "Desert", "cr": 15, "spellLevel": 10, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -470,7 +475,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -549,7 +559,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.Os0eEymWpLTVR2Xv" }, { "_id": "3PBv68cIzTlrzcYe", @@ -562,7 +573,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -641,7 +657,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.3PBv68cIzTlrzcYe" }, { "_id": "sjY1jcYS6PdmZYKH", @@ -654,7 +671,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -733,7 +755,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.sjY1jcYS6PdmZYKH" }, { "_id": "JxFTskCIHyVwp7fF", @@ -746,7 +769,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -825,7 +853,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.JxFTskCIHyVwp7fF" }, { "_id": "AEc5FXdpe3M7KHQI", @@ -838,7 +867,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -917,7 +951,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.AEc5FXdpe3M7KHQI" }, { "_id": "FeMPdVmbrjP2L3CO", @@ -930,7 +965,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1009,7 +1049,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.FeMPdVmbrjP2L3CO" }, { "_id": "xZSeAPj02NKne0AK", @@ -1022,7 +1063,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1101,7 +1147,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.xZSeAPj02NKne0AK" }, { "_id": "M6t9H8pMhzQxM9qv", @@ -1114,7 +1161,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1227,7 +1279,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.M6t9H8pMhzQxM9qv" }, { "_id": "yHydHrxw4vlDlyjf", @@ -1240,7 +1293,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1319,7 +1377,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.yHydHrxw4vlDlyjf" }, { "_id": "und47mebgauAcPu4", @@ -1332,7 +1391,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1411,7 +1475,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.und47mebgauAcPu4" }, { "_id": "NMN6cq7RkU8ccxKF", @@ -1424,7 +1489,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1503,7 +1573,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.NMN6cq7RkU8ccxKF" }, { "_id": "IL0u33pW96t5O04m", @@ -1516,7 +1587,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1595,7 +1671,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.IL0u33pW96t5O04m" }, { "_id": "MVq9wNMasHT5Cr1J", @@ -1608,7 +1685,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1683,7 +1765,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.MVq9wNMasHT5Cr1J" }, { "_id": "o7UvUGPaF9cnGcQi", @@ -1696,7 +1779,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -1775,7 +1863,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.o7UvUGPaF9cnGcQi" }, { "_id": "n9pJzTDsAwQxJVRl", @@ -1790,7 +1879,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1886,7 +1980,8 @@ "createdTime": 1661787234221, "modifiedTime": 1661791116566, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.n9pJzTDsAwQxJVRl" }, { "_id": "MUO1uYN7JR1hm4dR", @@ -1901,7 +1996,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1992,7 +2092,8 @@ "createdTime": 1661787234127, "modifiedTime": 1661791116567, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.MUO1uYN7JR1hm4dR" }, { "_id": "arzCrMRgcNiQuh43", @@ -2007,7 +2108,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2098,7 +2204,8 @@ "createdTime": 1661787234169, "modifiedTime": 1661791116567, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.arzCrMRgcNiQuh43" }, { "_id": "7buEm5KhI5lP8m1z", @@ -2113,7 +2220,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2209,7 +2321,8 @@ "createdTime": 1661787234075, "modifiedTime": 1661791116568, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.7buEm5KhI5lP8m1z" }, { "_id": "jZ6JNykRtdQ90MOo", @@ -2224,7 +2337,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -2315,7 +2433,8 @@ "createdTime": 1661787234212, "modifiedTime": 1661791116568, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.jZ6JNykRtdQ90MOo" }, { "_id": "3Lo9boi7P2ro6QV4", @@ -2330,7 +2449,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2421,7 +2545,8 @@ "createdTime": 1661787234063, "modifiedTime": 1661791116568, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.3Lo9boi7P2ro6QV4" }, { "_id": "5VhqFROQYjr1P9lp", @@ -2436,7 +2561,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2527,7 +2657,8 @@ "createdTime": 1661787234069, "modifiedTime": 1661791116568, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.5VhqFROQYjr1P9lp" }, { "_id": "JbxsYXxSOTZbf9I0", @@ -2540,7 +2671,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -2638,7 +2774,8 @@ "createdTime": 1661787234115, "modifiedTime": 1661791116569, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.JbxsYXxSOTZbf9I0" }, { "_id": "oyE5nVppa5mde5gT", @@ -2653,7 +2790,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -2744,7 +2886,8 @@ "createdTime": 1661787234225, "modifiedTime": 1661791116569, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.oyE5nVppa5mde5gT" }, { "_id": "15Fa6q1nH27XfbR8", @@ -2759,7 +2902,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2850,7 +2998,8 @@ "createdTime": 1661787234054, "modifiedTime": 1661791116570, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.15Fa6q1nH27XfbR8" }, { "_id": "XqzXSKNR75ZdYTA9", @@ -2865,7 +3014,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -2956,7 +3110,8 @@ "createdTime": 1661787234159, "modifiedTime": 1661791116570, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.XqzXSKNR75ZdYTA9" }, { "_id": "TgHsuhNasPbhu8MO", @@ -2971,7 +3126,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3067,7 +3227,8 @@ "createdTime": 1661787234145, "modifiedTime": 1661791116571, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.TgHsuhNasPbhu8MO" }, { "_id": "CjIq8Ed7bu3vVwT1", @@ -3082,7 +3243,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3173,7 +3339,8 @@ "createdTime": 1661787234097, "modifiedTime": 1661791116571, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.CjIq8Ed7bu3vVwT1" }, { "_id": "OVikYmSdHliAG2YD", @@ -3188,7 +3355,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3284,7 +3456,8 @@ "createdTime": 1661787234131, "modifiedTime": 1661791116572, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.OVikYmSdHliAG2YD" }, { "_id": "tMH6Ivn4GmE1naMj", @@ -3299,7 +3472,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -3395,7 +3573,8 @@ "createdTime": 1661787234234, "modifiedTime": 1661791116572, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors.items!UFW8M3JHzHkxUEGM.tMH6Ivn4GmE1naMj" } ], "effects": [], @@ -3412,5 +3591,6 @@ "createdTime": 1661787232849, "modifiedTime": 1672596100453, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!UFW8M3JHzHkxUEGM" } diff --git a/packs/src/monsters/undead/mummy.json b/packs/src/monsters/undead/mummy.json index adcf9d4f54..921340bf53 100644 --- a/packs/src/monsters/undead/mummy.json +++ b/packs/src/monsters/undead/mummy.json @@ -110,7 +110,12 @@ "environment": "", "cr": 3, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -467,7 +472,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -546,7 +556,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!t8WYD7ak07X7xpx8.uGJpXeUbei6zXTd1" }, { "_id": "ik1IkSZi4fpiGbB3", @@ -559,7 +570,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -672,7 +688,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!t8WYD7ak07X7xpx8.ik1IkSZi4fpiGbB3" }, { "_id": "8Jju4CVZaIDab6Ju", @@ -685,7 +702,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -764,7 +786,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!t8WYD7ak07X7xpx8.8Jju4CVZaIDab6Ju" } ], "effects": [], @@ -781,5 +804,6 @@ "createdTime": 1661787233218, "modifiedTime": 1672596108118, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!t8WYD7ak07X7xpx8" } diff --git a/packs/src/monsters/undead/ogre-zombie.json b/packs/src/monsters/undead/ogre-zombie.json index 30e1990e62..95d7bfaaff 100644 --- a/packs/src/monsters/undead/ogre-zombie.json +++ b/packs/src/monsters/undead/ogre-zombie.json @@ -110,7 +110,12 @@ "environment": "", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -460,7 +465,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -573,7 +583,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!RenLfmDT2XlbCF4x.Gj35Y1i6Ph90Wn3R" }, { "_id": "NPmV7puA7Yg3esqg", @@ -586,7 +597,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -665,7 +681,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!RenLfmDT2XlbCF4x.NPmV7puA7Yg3esqg" } ], "effects": [], @@ -682,5 +699,6 @@ "createdTime": 1661787232825, "modifiedTime": 1672596099777, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!RenLfmDT2XlbCF4x" } diff --git a/packs/src/monsters/undead/shadow.json b/packs/src/monsters/undead/shadow.json index 4be205a6f1..8897090962 100644 --- a/packs/src/monsters/undead/shadow.json +++ b/packs/src/monsters/undead/shadow.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -479,7 +484,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -558,7 +568,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!QGcQYZbVl4bWzi4E.fo1ZqyGz5iv51Rj1" }, { "_id": "Xa0lRW8VhYHTAQT0", @@ -571,7 +582,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -650,7 +666,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!QGcQYZbVl4bWzi4E.Xa0lRW8VhYHTAQT0" }, { "_id": "BrzbftAD7eqZXWA8", @@ -663,7 +680,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -742,7 +764,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!QGcQYZbVl4bWzi4E.BrzbftAD7eqZXWA8" }, { "_id": "2OUOBIN4TJDoL0sJ", @@ -755,7 +778,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -864,7 +892,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!QGcQYZbVl4bWzi4E.2OUOBIN4TJDoL0sJ" } ], "effects": [], @@ -881,5 +910,6 @@ "createdTime": 1661787232815, "modifiedTime": 1672596099489, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!QGcQYZbVl4bWzi4E" } diff --git a/packs/src/monsters/undead/skeleton.json b/packs/src/monsters/undead/skeleton.json index 9cbac81502..484a36d5c6 100644 --- a/packs/src/monsters/undead/skeleton.json +++ b/packs/src/monsters/undead/skeleton.json @@ -110,7 +110,12 @@ "environment": "Urban", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -461,7 +466,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -574,7 +584,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nU8GN8La8DCt8SDb.hrTC2vP0xMgI8q8y" }, { "_id": "qXbbvudRpBoul3bH", @@ -587,7 +598,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -700,7 +716,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!nU8GN8La8DCt8SDb.qXbbvudRpBoul3bH" } ], "effects": [], @@ -717,5 +734,6 @@ "createdTime": 1661787233156, "modifiedTime": 1672596106108, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!nU8GN8La8DCt8SDb" } diff --git a/packs/src/monsters/undead/specter.json b/packs/src/monsters/undead/specter.json index ed882a2b56..7675c3e268 100644 --- a/packs/src/monsters/undead/specter.json +++ b/packs/src/monsters/undead/specter.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 1, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -478,7 +483,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -562,7 +572,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!PuPo4H4Dcxigf0fY.FpoS5qzlgE3YPZGN" }, { "_id": "pxm7rAqI5ackW8Oy", @@ -575,7 +586,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -684,7 +700,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!PuPo4H4Dcxigf0fY.pxm7rAqI5ackW8Oy" }, { "_id": "1FbU02rRuNLnEDXC", @@ -697,7 +714,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -776,7 +798,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!PuPo4H4Dcxigf0fY.1FbU02rRuNLnEDXC" } ], "effects": [], @@ -793,5 +816,6 @@ "createdTime": 1661787232813, "modifiedTime": 1672596099451, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!PuPo4H4Dcxigf0fY" } diff --git a/packs/src/monsters/undead/vampire-spawn.json b/packs/src/monsters/undead/vampire-spawn.json index d9b4af6497..f731227817 100644 --- a/packs/src/monsters/undead/vampire-spawn.json +++ b/packs/src/monsters/undead/vampire-spawn.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -463,7 +468,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -580,7 +590,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zpaZb7I8alY32vWV.HebvJc2NqYvdR79s" }, { "_id": "DY9MW3aTF5T5zhpo", @@ -593,7 +604,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -702,7 +718,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zpaZb7I8alY32vWV.DY9MW3aTF5T5zhpo" }, { "_id": "Q9tHfkUiN6f1sguc", @@ -715,7 +732,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -794,7 +816,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zpaZb7I8alY32vWV.Q9tHfkUiN6f1sguc" }, { "_id": "wzRyhY2I1U0ytB7D", @@ -807,7 +830,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -891,7 +919,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zpaZb7I8alY32vWV.wzRyhY2I1U0ytB7D" }, { "_id": "FY5L5oISibzOxcRY", @@ -904,7 +933,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -983,7 +1017,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zpaZb7I8alY32vWV.FY5L5oISibzOxcRY" }, { "_id": "lLAigtCvoIuj0TM9", @@ -996,7 +1031,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1075,7 +1115,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!zpaZb7I8alY32vWV.lLAigtCvoIuj0TM9" } ], "effects": [], @@ -1092,5 +1133,6 @@ "createdTime": 1661787233265, "modifiedTime": 1672596109590, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!zpaZb7I8alY32vWV" } diff --git a/packs/src/monsters/undead/vampire.json b/packs/src/monsters/undead/vampire.json index 8113e3bce5..92681c1634 100644 --- a/packs/src/monsters/undead/vampire.json +++ b/packs/src/monsters/undead/vampire.json @@ -110,7 +110,12 @@ "environment": "Urban", "cr": 13, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -461,7 +466,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -540,7 +550,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!DDO9lDCDtNHkfShP.BqG5guVa93LaOAn1" }, { "_id": "JaohF91Eok1kSEIG", @@ -553,7 +564,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -632,7 +648,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!DDO9lDCDtNHkfShP.JaohF91Eok1kSEIG" }, { "_id": "pVlKFunmE2qxO0pe", @@ -645,7 +662,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -724,7 +746,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!DDO9lDCDtNHkfShP.pVlKFunmE2qxO0pe" }, { "_id": "BDnluJG7T7FfBjsQ", @@ -737,7 +760,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -821,7 +849,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!DDO9lDCDtNHkfShP.BDnluJG7T7FfBjsQ" }, { "_id": "jc3NboVcwuEiXOYn", @@ -834,7 +863,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -913,7 +947,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!DDO9lDCDtNHkfShP.jc3NboVcwuEiXOYn" }, { "_id": "RLsKLdfdmHajHSwD", @@ -926,7 +961,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1005,7 +1045,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!DDO9lDCDtNHkfShP.RLsKLdfdmHajHSwD" }, { "_id": "siO3h9XOkgPVi78F", @@ -1018,7 +1059,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1093,7 +1139,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!DDO9lDCDtNHkfShP.siO3h9XOkgPVi78F" }, { "_id": "jYBYvv9EF1UnOvqZ", @@ -1106,7 +1153,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1215,7 +1267,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!DDO9lDCDtNHkfShP.jYBYvv9EF1UnOvqZ" }, { "_id": "uqHuj7Pjf2sjny21", @@ -1228,7 +1281,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1341,7 +1399,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!DDO9lDCDtNHkfShP.uqHuj7Pjf2sjny21" }, { "_id": "RHezeN7HzNf2oKYP", @@ -1354,7 +1413,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1433,7 +1497,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!DDO9lDCDtNHkfShP.RHezeN7HzNf2oKYP" }, { "_id": "c9z4o0fkxq37v8KY", @@ -1446,7 +1511,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1525,7 +1595,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!DDO9lDCDtNHkfShP.c9z4o0fkxq37v8KY" }, { "_id": "rQOFEdWpVwJWS2U4", @@ -1538,7 +1609,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1617,7 +1693,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!DDO9lDCDtNHkfShP.rQOFEdWpVwJWS2U4" }, { "_id": "hNBduaMwPI3vordA", @@ -1630,7 +1707,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1709,7 +1791,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!DDO9lDCDtNHkfShP.hNBduaMwPI3vordA" }, { "_id": "zV0DTNKndsVldLsV", @@ -1722,7 +1805,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -1801,7 +1889,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!DDO9lDCDtNHkfShP.zV0DTNKndsVldLsV" }, { "_id": "o4v4mHxP82HTbIOX", @@ -1814,7 +1903,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1889,7 +1983,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!DDO9lDCDtNHkfShP.o4v4mHxP82HTbIOX" }, { "_id": "rEmbKJQ6mpvnUPOO", @@ -1902,7 +1997,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 1, @@ -1981,7 +2081,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!DDO9lDCDtNHkfShP.rEmbKJQ6mpvnUPOO" }, { "_id": "pW4iNTQphTJ3litv", @@ -1994,7 +2095,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "legendary", "cost": 2, @@ -2073,7 +2179,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!DDO9lDCDtNHkfShP.pW4iNTQphTJ3litv" } ], "effects": [], @@ -2090,5 +2197,6 @@ "createdTime": 1661787232679, "modifiedTime": 1672596095031, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!DDO9lDCDtNHkfShP" } diff --git a/packs/src/monsters/undead/warhorse-skeleton.json b/packs/src/monsters/undead/warhorse-skeleton.json index d68d81225e..26c1970a41 100644 --- a/packs/src/monsters/undead/warhorse-skeleton.json +++ b/packs/src/monsters/undead/warhorse-skeleton.json @@ -110,7 +110,12 @@ "environment": "", "cr": 0.5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "lg", @@ -461,7 +466,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -574,7 +584,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!7KJ5vjnp0FJrdu6T.sIgV1p8nM1z4VZgY" } ], "effects": [], @@ -591,5 +602,6 @@ "createdTime": 1661787232611, "modifiedTime": 1672596092988, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!7KJ5vjnp0FJrdu6T" } diff --git a/packs/src/monsters/undead/wight.json b/packs/src/monsters/undead/wight.json index dbb9389b15..c08607dde7 100644 --- a/packs/src/monsters/undead/wight.json +++ b/packs/src/monsters/undead/wight.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 3, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -467,7 +472,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 13, "price": { @@ -566,7 +576,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!rbyp54px2D0ql4QK.nkPIb1htkHIdbJ97" }, { "_id": "qodTzcDY37TCj4GN", @@ -579,7 +590,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -658,7 +674,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!rbyp54px2D0ql4QK.qodTzcDY37TCj4GN" }, { "_id": "fKIUImfcNk0pU2HN", @@ -671,7 +688,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -750,7 +772,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!rbyp54px2D0ql4QK.fKIUImfcNk0pU2HN" }, { "_id": "PUYwkzEiKopyM6YL", @@ -763,7 +786,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2, "price": { @@ -876,7 +904,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!rbyp54px2D0ql4QK.PUYwkzEiKopyM6YL" }, { "_id": "WZ3XGh48UoyAvBhS", @@ -889,7 +918,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 3, "price": { @@ -1002,7 +1036,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!rbyp54px2D0ql4QK.WZ3XGh48UoyAvBhS" }, { "_id": "NX8cqG6aZMns8wvY", @@ -1015,7 +1050,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -1124,7 +1164,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!rbyp54px2D0ql4QK.NX8cqG6aZMns8wvY" } ], "effects": [], @@ -1141,5 +1182,6 @@ "createdTime": 1661787233205, "modifiedTime": 1672596107628, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!rbyp54px2D0ql4QK" } diff --git a/packs/src/monsters/undead/will-o-wisp.json b/packs/src/monsters/undead/will-o-wisp.json index baf31d4e55..306b22416d 100644 --- a/packs/src/monsters/undead/will-o-wisp.json +++ b/packs/src/monsters/undead/will-o-wisp.json @@ -110,7 +110,12 @@ "environment": "Forest", "cr": 2, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "tiny", @@ -476,7 +481,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -560,7 +570,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8KSVpQZyzius93ko.RAnyTfj3CGaiGK3W" }, { "_id": "4wbSkOyE4ZqKLPQ6", @@ -573,7 +584,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -652,7 +668,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8KSVpQZyzius93ko.4wbSkOyE4ZqKLPQ6" }, { "_id": "MGdIOXhRAQQRrAcO", @@ -665,7 +682,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -749,7 +771,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8KSVpQZyzius93ko.MGdIOXhRAQQRrAcO" }, { "_id": "3Sr6MrVgbTGw66Aa", @@ -762,7 +785,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -841,7 +869,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8KSVpQZyzius93ko.3Sr6MrVgbTGw66Aa" }, { "_id": "np6oHDOwHQFsSn5B", @@ -854,7 +883,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -963,7 +997,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8KSVpQZyzius93ko.np6oHDOwHQFsSn5B" }, { "_id": "vJR81iEOZYNMuAdz", @@ -976,7 +1011,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -1055,7 +1095,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!8KSVpQZyzius93ko.vJR81iEOZYNMuAdz" } ], "effects": [], @@ -1072,5 +1113,6 @@ "createdTime": 1661787232624, "modifiedTime": 1672596093340, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!8KSVpQZyzius93ko" } diff --git a/packs/src/monsters/undead/wraith.json b/packs/src/monsters/undead/wraith.json index c7d5720ca7..d1323d6565 100644 --- a/packs/src/monsters/undead/wraith.json +++ b/packs/src/monsters/undead/wraith.json @@ -110,7 +110,12 @@ "environment": "Underdark", "cr": 5, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -478,7 +483,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -557,7 +567,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ET4PEVEiNJLU4f7c.RADMbiPme1Hrfu8E" }, { "_id": "idILnIUj76QH9v8w", @@ -570,7 +581,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -654,7 +670,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ET4PEVEiNJLU4f7c.idILnIUj76QH9v8w" }, { "_id": "xZPFtf2vCYraWXVe", @@ -667,7 +684,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -776,7 +798,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ET4PEVEiNJLU4f7c.xZPFtf2vCYraWXVe" }, { "_id": "3ERjE4pz2bgxXIPi", @@ -789,7 +812,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -868,7 +896,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!ET4PEVEiNJLU4f7c.3ERjE4pz2bgxXIPi" } ], "effects": [], @@ -885,5 +914,6 @@ "createdTime": 1661787232695, "modifiedTime": 1672596095283, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!ET4PEVEiNJLU4f7c" } diff --git a/packs/src/monsters/undead/zombie.json b/packs/src/monsters/undead/zombie.json index c1f6ff4bdb..3712f68559 100644 --- a/packs/src/monsters/undead/zombie.json +++ b/packs/src/monsters/undead/zombie.json @@ -110,7 +110,12 @@ "environment": "Urban", "cr": 0.25, "spellLevel": 0, - "source": "SRD 5.1" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + } }, "traits": { "size": "med", @@ -458,7 +463,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0, "price": { @@ -567,7 +577,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!NAISFPoNNgUCsEyW.Ed7XgnZu9qRs3qdn" }, { "_id": "RDeCoZRniQBNq0rX", @@ -580,7 +591,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -659,7 +675,8 @@ "createdTime": null, "modifiedTime": null, "lastModifiedBy": null - } + }, + "_key": "!actors.items!NAISFPoNNgUCsEyW.RDeCoZRniQBNq0rX" } ], "effects": [], @@ -676,5 +693,6 @@ "createdTime": 1661787232788, "modifiedTime": 1672596098715, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!actors!NAISFPoNNgUCsEyW" } diff --git a/packs/src/races/artificers-lore.json b/packs/src/races/artificers-lore.json index 2237274622..30f7de3171 100644 --- a/packs/src/races/artificers-lore.json +++ b/packs/src/races/artificers-lore.json @@ -11,7 +11,13 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -22,11 +28,13 @@ "units": "" }, "cover": null, + "crewed": false, "target": { "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -37,7 +45,8 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", @@ -79,10 +88,11 @@ "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", + "systemVersion": "2.3.1", + "coreVersion": "10.303", "createdTime": 1661787234468, - "modifiedTime": 1672336391468, + "modifiedTime": 1699397219198, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!OQA1sHxKnSJq01dL" } diff --git a/packs/src/races/brave.json b/packs/src/races/brave.json index 321f6debdc..f2b5381c79 100644 --- a/packs/src/races/brave.json +++ b/packs/src/races/brave.json @@ -11,7 +11,13 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -22,11 +28,13 @@ "units": "" }, "cover": null, + "crewed": false, "target": { "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -37,7 +45,8 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", @@ -79,10 +88,11 @@ "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", + "systemVersion": "2.3.1", + "coreVersion": "10.303", "createdTime": 1661787234462, - "modifiedTime": 1672336388358, + "modifiedTime": 1699397219116, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7Yoo9hG0hfPSmBoC" } diff --git a/packs/src/races/breath-weapon-black.json b/packs/src/races/breath-weapon-black.json new file mode 100644 index 0000000000..09d4bc1ece --- /dev/null +++ b/packs/src/races/breath-weapon-black.json @@ -0,0 +1,103 @@ +{ + "_id": "NnSZlrsHCFeH3cCq", + "name": "Breath Weapon - Black", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a dexterity saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 acid damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "action", + "cost": 1, + "condition": "" + }, + "duration": { + "value": "", + "units": "inst" + }, + "cover": null, + "crewed": false, + "target": { + "value": 30, + "width": 5, + "units": "ft", + "type": "line", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": 1, + "max": "1", + "per": "sr", + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null + }, + "ability": "str", + "actionType": "save", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [ + [ + "@scale.dragonborn.breath-weapon", + "acid" + ] + ], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "con", + "dc": null, + "scaling": "con" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "Black Dragonborn", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": {}, + "img": "icons/magic/acid/projectile-smoke-glowing.webp", + "effects": [], + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.3.1", + "coreVersion": "10.303", + "createdTime": 1661787234466, + "modifiedTime": 1699397219194, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "sort": 0, + "folder": null, + "_key": "!items!NnSZlrsHCFeH3cCq" +} diff --git a/packs/src/races/breath-weapon-blue.json b/packs/src/races/breath-weapon-blue.json new file mode 100644 index 0000000000..bf0eaf0a3f --- /dev/null +++ b/packs/src/races/breath-weapon-blue.json @@ -0,0 +1,103 @@ +{ + "_id": "KVgvW5yhKcmQUanz", + "name": "Breath Weapon - Blue", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a dexterity saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 lightning damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "action", + "cost": 1, + "condition": "" + }, + "duration": { + "value": "", + "units": "inst" + }, + "cover": null, + "crewed": false, + "target": { + "value": 30, + "width": 5, + "units": "ft", + "type": "line", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": 1, + "max": "1", + "per": "sr", + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null + }, + "ability": "dex", + "actionType": "save", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [ + [ + "@scale.dragonborn.breath-weapon", + "lightning" + ] + ], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "con", + "dc": null, + "scaling": "con" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "Blue Dragonborn", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": {}, + "img": "icons/magic/lightning/bolt-blue.webp", + "effects": [], + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.3.1", + "coreVersion": "10.303", + "createdTime": 1661787234466, + "modifiedTime": 1699397219183, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "sort": 0, + "folder": null, + "_key": "!items!KVgvW5yhKcmQUanz" +} diff --git a/packs/src/races/breath-weapon-brass.json b/packs/src/races/breath-weapon-brass.json new file mode 100644 index 0000000000..6daf1d413d --- /dev/null +++ b/packs/src/races/breath-weapon-brass.json @@ -0,0 +1,103 @@ +{ + "_id": "JrUcwLR2aQC09iUM", + "name": "Breath Weapon - Brass", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a dexterity saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 fire damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "action", + "cost": 1, + "condition": "" + }, + "duration": { + "value": "", + "units": "inst" + }, + "cover": null, + "crewed": false, + "target": { + "value": 30, + "width": 5, + "units": "ft", + "type": "line", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": 1, + "max": "1", + "per": "sr", + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null + }, + "ability": "dex", + "actionType": "save", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [ + [ + "@scale.dragonborn.breath-weapon", + "fire" + ] + ], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "con", + "dc": null, + "scaling": "con" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "Brass Dragonborn", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": {}, + "img": "icons/magic/fire/beam-jet-stream-trails-orange.webp", + "effects": [], + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.3.1", + "coreVersion": "10.303", + "createdTime": 1661787234466, + "modifiedTime": 1699397219165, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "sort": 0, + "folder": null, + "_key": "!items!JrUcwLR2aQC09iUM" +} diff --git a/packs/src/races/breath-weapon-bronze.json b/packs/src/races/breath-weapon-bronze.json new file mode 100644 index 0000000000..48034c08df --- /dev/null +++ b/packs/src/races/breath-weapon-bronze.json @@ -0,0 +1,103 @@ +{ + "_id": "pJzMSk9qYywYy65w", + "name": "Breath Weapon - Bronze", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a dexterity saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 lightning damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "action", + "cost": 1, + "condition": "" + }, + "duration": { + "value": "", + "units": "inst" + }, + "cover": null, + "crewed": false, + "target": { + "value": 30, + "width": 5, + "units": "ft", + "type": "line", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": 1, + "max": "1", + "per": "sr", + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null + }, + "ability": "dex", + "actionType": "save", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [ + [ + "@scale.dragonborn.breath-weapon", + "lightning" + ] + ], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "con", + "dc": null, + "scaling": "con" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "Bronze Dragonborn", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": {}, + "img": "icons/magic/lightning/bolt-blue.webp", + "effects": [], + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.3.1", + "coreVersion": "10.303", + "createdTime": 1661787234466, + "modifiedTime": 1699397219288, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "sort": 0, + "folder": null, + "_key": "!items!pJzMSk9qYywYy65w" +} diff --git a/packs/src/races/breath-weapon-copper.json b/packs/src/races/breath-weapon-copper.json new file mode 100644 index 0000000000..139d98f2dd --- /dev/null +++ b/packs/src/races/breath-weapon-copper.json @@ -0,0 +1,103 @@ +{ + "_id": "bFpLM0N3uTeHLdzu", + "name": "Breath Weapon - Copper", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a dexterity saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 acid damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "action", + "cost": 1, + "condition": "" + }, + "duration": { + "value": "", + "units": "inst" + }, + "cover": null, + "crewed": false, + "target": { + "value": 30, + "width": 5, + "units": "ft", + "type": "line", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": 1, + "max": "1", + "per": "sr", + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null + }, + "ability": "dex", + "actionType": "save", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [ + [ + "@scale.dragonborn.breath-weapon", + "acid" + ] + ], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "con", + "dc": null, + "scaling": "con" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "Copper Dragonborn", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": {}, + "img": "icons/magic/acid/projectile-smoke-glowing.webp", + "effects": [], + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.3.1", + "coreVersion": "10.303", + "createdTime": 1661787234466, + "modifiedTime": 1699397219239, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "sort": 0, + "folder": null, + "_key": "!items!bFpLM0N3uTeHLdzu" +} diff --git a/packs/src/races/breath-weapon-gold.json b/packs/src/races/breath-weapon-gold.json new file mode 100644 index 0000000000..93c3202728 --- /dev/null +++ b/packs/src/races/breath-weapon-gold.json @@ -0,0 +1,103 @@ +{ + "_id": "YPQQBZAuRiSwuBfh", + "name": "Breath Weapon - Gold", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a Dexterity saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 fire damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "action", + "cost": 1, + "condition": "" + }, + "duration": { + "value": "", + "units": "inst" + }, + "cover": null, + "crewed": false, + "target": { + "value": 15, + "width": null, + "units": "ft", + "type": "cone", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": 1, + "max": "1", + "per": "sr", + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null + }, + "ability": "dex", + "actionType": "save", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [ + [ + "@scale.dragonborn.breath-weapon", + "fire" + ] + ], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "con", + "dc": null, + "scaling": "con" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "Gold Dragonborn", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": {}, + "img": "icons/magic/fire/beam-jet-stream-trails-orange.webp", + "effects": [], + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.3.1", + "coreVersion": "10.303", + "createdTime": 1661787234466, + "modifiedTime": 1699397219223, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "sort": 0, + "folder": null, + "_key": "!items!YPQQBZAuRiSwuBfh" +} diff --git a/packs/src/races/breath-weapon-green.json b/packs/src/races/breath-weapon-green.json new file mode 100644 index 0000000000..aa72d04cc0 --- /dev/null +++ b/packs/src/races/breath-weapon-green.json @@ -0,0 +1,103 @@ +{ + "_id": "lXIxndsBaQglHBtO", + "name": "Breath Weapon - Green", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a Constitution saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 poison damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "action", + "cost": 1, + "condition": "" + }, + "duration": { + "value": "", + "units": "inst" + }, + "cover": null, + "crewed": false, + "target": { + "value": 15, + "width": null, + "units": "ft", + "type": "cone", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": 1, + "max": "1", + "per": "sr", + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null + }, + "ability": "con", + "actionType": "save", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [ + [ + "@scale.dragonborn.breath-weapon", + "poison" + ] + ], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "con", + "dc": null, + "scaling": "con" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "Green Dragonborn", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": {}, + "img": "icons/magic/acid/projectile-beams-salvo-green.webp", + "effects": [], + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.3.1", + "coreVersion": "10.303", + "createdTime": 1661787234466, + "modifiedTime": 1699397219268, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "sort": 0, + "folder": null, + "_key": "!items!lXIxndsBaQglHBtO" +} diff --git a/packs/src/races/breath-weapon-red.json b/packs/src/races/breath-weapon-red.json new file mode 100644 index 0000000000..f2e641b505 --- /dev/null +++ b/packs/src/races/breath-weapon-red.json @@ -0,0 +1,103 @@ +{ + "_id": "kB61JPKQrDBbSNU7", + "name": "Breath Weapon - Red", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a Dexterity saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 fire damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "action", + "cost": 1, + "condition": "" + }, + "duration": { + "value": "", + "units": "inst" + }, + "cover": null, + "crewed": false, + "target": { + "value": 15, + "width": null, + "units": "ft", + "type": "cone", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": 1, + "max": "1", + "per": "sr", + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null + }, + "ability": "dex", + "actionType": "save", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [ + [ + "@scale.dragonborn.breath-weapon", + "fire" + ] + ], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "con", + "dc": null, + "scaling": "con" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "Red Dragonborn", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": {}, + "img": "icons/magic/fire/beam-jet-stream-trails-orange.webp", + "effects": [], + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.3.1", + "coreVersion": "10.303", + "createdTime": 1661787234466, + "modifiedTime": 1699397219246, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "sort": 0, + "folder": null, + "_key": "!items!kB61JPKQrDBbSNU7" +} diff --git a/packs/src/races/breath-weapon-silver.json b/packs/src/races/breath-weapon-silver.json new file mode 100644 index 0000000000..acea5dbf98 --- /dev/null +++ b/packs/src/races/breath-weapon-silver.json @@ -0,0 +1,103 @@ +{ + "_id": "pAYTdRGftNr8AitK", + "name": "Breath Weapon - Silver", + "ownership": { + "default": 0 + }, + "type": "feat", + "system": { + "description": { + "value": "You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a Constitution saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 cold damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "action", + "cost": 1, + "condition": "" + }, + "duration": { + "value": "", + "units": "inst" + }, + "cover": null, + "crewed": false, + "target": { + "value": 15, + "width": null, + "units": "ft", + "type": "cone", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": 1, + "max": "1", + "per": "sr", + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null + }, + "ability": "con", + "actionType": "save", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [ + [ + "@scale.dragonborn.breath-weapon", + "cold" + ] + ], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "con", + "dc": null, + "scaling": "con" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "Silver Dragonborn", + "recharge": { + "value": null, + "charged": false + } + }, + "flags": {}, + "img": "icons/magic/water/projectile-icecicle.webp", + "effects": [], + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.3.1", + "coreVersion": "10.303", + "createdTime": 1661787234466, + "modifiedTime": 1699397219281, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "sort": 0, + "folder": null, + "_key": "!items!pAYTdRGftNr8AitK" +} diff --git a/packs/src/races/breath-weapon.json b/packs/src/races/breath-weapon-white.json similarity index 58% rename from packs/src/races/breath-weapon.json rename to packs/src/races/breath-weapon-white.json index ddf243c0f0..4315234631 100644 --- a/packs/src/races/breath-weapon.json +++ b/packs/src/races/breath-weapon-white.json @@ -1,17 +1,23 @@ { "_id": "KL7wx9Q8XNJQir0k", - "name": "Breath Weapon", + "name": "Breath Weapon - White", "ownership": { "default": 0 }, "type": "feat", "system": { "description": { - "value": "You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.Foundry NoteEdit the Details for this feat, so that the damage type, saving throw, and area of effect match those of your Draconic Ancestry.", + "value": "You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a Constitution saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 cold damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -22,11 +28,13 @@ "units": "inst" }, "cover": null, + "crewed": false, "target": { "value": 15, "width": null, "units": "ft", - "type": "cone" + "type": "cone", + "prompt": true }, "range": { "value": null, @@ -37,7 +45,8 @@ "value": 1, "max": "1", "per": "sr", - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", @@ -55,7 +64,7 @@ "damage": { "parts": [ [ - "((ceil((@details.level - 5)/5)) +2)d6", + "@scale.dragonborn.breath-weapon", "cold" ] ], @@ -71,23 +80,24 @@ "value": "race", "subtype": "" }, - "requirements": "Dragonborn", + "requirements": "White Dragonborn", "recharge": { "value": null, "charged": false } }, "flags": {}, - "img": "icons/magic/acid/projectile-smoke-glowing.webp", + "img": "icons/magic/water/projectile-icecicle.webp", "effects": [], - "folder": null, - "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", + "systemVersion": "2.3.1", + "coreVersion": "10.303", "createdTime": 1661787234466, - "modifiedTime": 1672336385274, + "modifiedTime": 1699397219179, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "sort": 0, + "folder": null, + "_key": "!items!KL7wx9Q8XNJQir0k" } diff --git a/packs/src/races/damage-resistance.json b/packs/src/races/damage-resistance.json index 44b414dd3d..10ab0d0c2e 100644 --- a/packs/src/races/damage-resistance.json +++ b/packs/src/races/damage-resistance.json @@ -11,7 +11,13 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -22,11 +28,13 @@ "units": "" }, "cover": null, + "crewed": false, "target": { "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -37,7 +45,8 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", @@ -79,10 +88,11 @@ "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", + "systemVersion": "2.3.1", + "coreVersion": "10.303", "createdTime": 1661787234470, - "modifiedTime": 1672336381975, + "modifiedTime": 1699397219219, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XxCuhIk6hAu6rNB0" } diff --git a/packs/src/races/dragonborn.json b/packs/src/races/dragonborn.json index ad249175fa..42c06e3b16 100644 --- a/packs/src/races/dragonborn.json +++ b/packs/src/races/dragonborn.json @@ -1,84 +1,208 @@ { "_id": "K4DNDcR6vngbp0pf", "name": "Dragonborn", - "ownership": { - "default": 0 - }, - "type": "feat", + "type": "race", + "img": "icons/creatures/eyes/lizard-single-slit-green.webp", "system": { "description": { - "value": "Your draconic heritage manifests in a variety of traits you share with other dragonborn. \nAbility Score Increase. Your Strength score increases by 2, and your Charisma score increases by 1.\nAge. Young dragonborn grow quickly. They walk hours after hatching, attain the size and development of a 10-year-old human child by the age of 3, and reach adulthood by 15. They live to be around 80.\nAlignment. Dragonborn tend to extremes, making a conscious choice for one side or the other in the cosmic war between good and evil. Most dragonborn are good, but those who side with evil can be terrible villains.\nSize. Dragonborn are taller and heavier than humans, standing well over 6 feet tall and averaging almost 250 pounds. Your size is Medium.\nSpeed. Your base walking speed is 30 feet.\nDraconic Ancestry. You have draconic ancestry. Choose one type of dragon from the Draconic Ancestry table. Your breath weapon and damage resistance are determined by the dragon type, as shown in the table.\n\n\n\nDragon\nDamage Type\nBreath Weapon\n\n\n\n\nBlack\nAcid\n5 by 30 ft. line (Dex. save)\n\n\nBlue\nLightning\n5 by 30 ft. line (Dex. save)\n\n\nBrass\nFire\n5 by 30 ft. line (Dex. save)\n\n\nBronze\nLightning\n5 by 30 ft. line (Dex. save)\n\n\nCopper\nAcid\n5 by 30 ft. line (Dex. save)\n\n\nGold\nFire\n15 ft. cone (Dex. save)\n\n\nGreen\nPoison\n15 ft. cone (Con. save)\n\n\nRed\nFire\n15 ft. cone (Dex. save)\n\n\nSilver\nCold\n15 ft. cone (Con. save)\n\n\nWhite\nCold\n15 ft. cone (Con. save)\n\n\n\nBreath Weapon. @Compendium[dnd5e.races.KL7wx9Q8XNJQir0k]{Breath Weapon} You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.\nWhen you use your breath weapon, each creature in the area of the exhalation must make a saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.\nAfter you use your breath weapon, you can't use it again until you complete a short or long rest.\nDamage Resistance. @Compendium[dnd5e.races.XxCuhIk6hAu6rNB0]{Damage Resistance} You have resistance to the damage type associated with your draconic ancestry.\nLanguages. You can speak, read, and write Common and Draconic. Draconic is thought to be one of the oldest languages and is often used in the study of magic. The language sounds harsh to most other creatures and includes numerous hard consonants and sibilants.", + "value": "Your draconic heritage manifests in a variety of traits you share with other dragonborn.Ability Score Increase. Your Strength score increases by 2, and your Charisma score increases by 1.Age. Young dragonborn grow quickly. They walk hours after hatching, attain the size and development of a 10-year-old human child by the age of 3, and reach adulthood by 15. They live to be around 80.Alignment. Dragonborn tend to extremes, making a conscious choice for one side or the other in the cosmic war between good and evil. Most dragonborn are good, but those who side with evil can be terrible villains.Size. Dragonborn are taller and heavier than humans, standing well over 6 feet tall and averaging almost 250 pounds. Your size is Medium.Speed. Your base walking speed is 30 feet.Draconic AncestryDragonDamage TypeBreath WeaponBlackAcid5 by 30 ft. line (Dex. save)BlueLightning5 by 30 ft. line (Dex. save)BrassFire5 by 30 ft. line (Dex. save)BronzeLightning5 by 30 ft. line (Dex. save)CopperAcid5 by 30 ft. line (Dex. save)GoldFire15 ft. cone (Dex. save)GreenPoison15 ft. cone (Con. save)RedFire15 ft. cone (Dex. save)SilverCold15 ft. cone (Con. save)WhiteCold15 ft. cone (Con. save)Draconic Ancestry. You have draconic ancestry. Choose one type of dragon from the Draconic Ancestry table. Your breath weapon and damage resistance are determined by the dragon type, as shown in the table.Breath Weapon. You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.When you use your breath weapon, each creature in the area of the exhalation must make a saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.After you use your breath weapon, you can't use it again until you complete a short or long rest.Damage Resistance. You have resistance to the damage type associated with your draconic ancestry.Languages. You can speak, read, and write Common and Draconic. Draconic is thought to be one of the oldest languages and is often used in the study of magic. The language sounds harsh to most other creatures and includes numerous hard consonants and sibilants.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" }, - "range": { - "value": null, - "long": null, - "units": "" + "identifier": "dragonborn", + "advancement": [ + { + "_id": "QIrBmvSmNOTEJLWn", + "type": "ItemChoice", + "configuration": { + "hint": "You have draconic ancestry. Choose one type of dragon from the list. Your breath weapon and damage resistance are determined by the dragon type.", + "choices": { + "0": 1 + }, + "allowDrops": false, + "type": "feat", + "pool": [ + "Compendium.dnd5e.races.NnSZlrsHCFeH3cCq", + "Compendium.dnd5e.races.KVgvW5yhKcmQUanz", + "Compendium.dnd5e.races.JrUcwLR2aQC09iUM", + "Compendium.dnd5e.races.pJzMSk9qYywYy65w", + "Compendium.dnd5e.races.bFpLM0N3uTeHLdzu", + "Compendium.dnd5e.races.YPQQBZAuRiSwuBfh", + "Compendium.dnd5e.races.lXIxndsBaQglHBtO", + "Compendium.dnd5e.races.kB61JPKQrDBbSNU7", + "Compendium.dnd5e.races.pAYTdRGftNr8AitK", + "Compendium.dnd5e.races.KL7wx9Q8XNJQir0k" + ], + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + }, + "restriction": { + "type": "race", + "subtype": "", + "level": "" + } + }, + "value": {}, + "title": "Draconic Ancestry" + }, + { + "_id": "Z9hvZFkWUNvowbQX", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 0, + "fixed": { + "str": 2, + "dex": 0, + "con": 0, + "int": 0, + "wis": 0, + "cha": 1 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 0, + "title": "" + }, + { + "_id": "rXLC7smebN2zPOBT", + "type": "ScaleValue", + "configuration": { + "identifier": "breath-weapon", + "type": "dice", + "distance": { + "units": "" + }, + "scale": { + "0": { + "number": 2, + "faces": 6 + }, + "6": { + "number": 3, + "faces": 6 + }, + "11": { + "number": 4, + "faces": 6 + }, + "16": { + "number": 5, + "faces": 6 + } + } + }, + "value": {}, + "title": "Breath Weapon" + }, + { + "_id": "9D8XNnmTLWfzN32K", + "type": "Size", + "configuration": { + "hint": "Dragonborn are taller and heavier than humans, standing well over 6 feet tall and averaging almost 250 pounds. Your size is Medium.", + "sizes": [ + "med" + ] + }, + "value": { + "size": "" + }, + "level": 1, + "title": "" + }, + { + "_id": "6WUcKNSLh5WJ3Q24", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:standard:common", + "languages:exotic:draconic" + ], + "choices": [] + }, + "level": 0, + "title": "", + "value": {} + }, + { + "_id": "2f4dkpTYlhOgRgxu", + "type": "Trait", + "configuration": { + "hint": "You have resistance to the damage type associated with your draconic ancestry.", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 1, + "pool": [ + "dr:acid", + "dr:cold", + "dr:fire", + "dr:lightning", + "dr:poison" + ] + } + ] + }, + "level": 0, + "title": "" + } + ], + "movement": { + "burrow": null, + "climb": null, + "fly": null, + "swim": null, + "walk": 30, + "units": "ft", + "hover": false }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" + "senses": { + "darkvision": null, + "blindsight": null, + "tremorsense": null, + "truesight": null, + "units": "ft", + "special": "" }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "requirements": "", - "recharge": { - "value": null, - "charged": false + "type": { + "value": "humanoid", + "subtype": "dragonborn", + "custom": "" } }, - "flags": {}, - "img": "icons/magic/perception/eye-ringed-glow-angry-small-red.webp", "effects": [], - "folder": null, - "sort": 0, + "ownership": { + "default": 0 + }, + "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", - "createdTime": 1661787234466, - "modifiedTime": 1671220977499, + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1677180157568, + "modifiedTime": 1699987919586, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "sort": 0, + "folder": null, + "_key": "!items!K4DNDcR6vngbp0pf" } diff --git a/packs/src/races/dwarf.json b/packs/src/races/dwarf.json deleted file mode 100644 index d3d182bb64..0000000000 --- a/packs/src/races/dwarf.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "6N31WSez2szqQcIQ", - "name": "Dwarf", - "ownership": { - "default": 0 - }, - "type": "feat", - "system": { - "description": { - "value": "Your dwarf character has an assortment of inborn abilities, part and parcel of dwarven nature.\nAbility Score Increase. Your Constitution score increases by 2.\nAge. Dwarves mature at the same rate as humans, but they're considered young until they reach the age of 50. On average, they live about 350 years.\nAlignment. Most dwarves are lawful, believing firmly in the benefits of a well-ordered society. They tend toward good as well, with a strong sense of fair play and a belief that everyone deserves to share in the benefits of a just order.\nSize. Dwarves stand between 4 and 5 feet tall and average about 150 pounds. Your size is Medium.\nSpeed. Your base walking speed is 25 feet. Your speed is not reduced by wearing heavy armor.\nDarkvision. Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.\nDwarven Resilience. @Compendium[dnd5e.races.ufysTkqet2Ctmtyi]{Dwarven Resilience} You have advantage on saving throws against poison, and you have resistance against poison damage.\nDwarven Combat Training. You have proficiency with the battleaxe, handaxe, light hammer, and warhammer.\nTool Proficiency. You gain proficiency with the artisan's tools of your choice: smith's tools, brewer's supplies, or mason's tools.\nStonecunning. @Compendium[dnd5e.races.mQPZDRbUhgYTbXKa]{Stonecunning} Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.\nLanguages. You can speak, read, and write Common and Dwarvish. Dwarvish is full of hard consonants and guttural sounds, and those characteristics spill over into whatever other language a dwarf might speak.", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "requirements": "", - "recharge": { - "value": null, - "charged": false - } - }, - "flags": {}, - "img": "icons/magic/defensive/shield-barrier-glowing-triangle-teal-purple.webp", - "effects": [], - "folder": null, - "sort": 0, - "_stats": { - "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", - "createdTime": 1661787234462, - "modifiedTime": 1671220977299, - "lastModifiedBy": "dnd5ebuilder0000" - } -} diff --git a/packs/src/races/dwarven-resilience.json b/packs/src/races/dwarven-resilience.json index 8302eea54a..b746c300c7 100644 --- a/packs/src/races/dwarven-resilience.json +++ b/packs/src/races/dwarven-resilience.json @@ -11,7 +11,13 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -22,11 +28,13 @@ "units": "" }, "cover": null, + "crewed": false, "target": { "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -37,7 +45,8 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", @@ -101,17 +110,19 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!ufysTkqet2Ctmtyi.hIaIpLxcMZSY3qXi" } ], "folder": null, "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", + "systemVersion": "2.3.1", + "coreVersion": "10.303", "createdTime": 1661787234474, - "modifiedTime": 1672336375921, + "modifiedTime": 1699397219296, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ufysTkqet2Ctmtyi" } diff --git a/packs/src/races/elf.json b/packs/src/races/elf.json deleted file mode 100644 index 11d4d47e28..0000000000 --- a/packs/src/races/elf.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "rAGnsfgw3ZqAme1v", - "name": "Elf", - "ownership": { - "default": 0 - }, - "type": "feat", - "system": { - "description": { - "value": "Your elf character has a variety of natural abilities, the result of thousands of years of elven refinement. \nAbility Score Increase. Your Dexterity score increases by 2.\nAge. Although elves reach physical maturity at about the same age as humans, the elven understanding of adulthood goes beyond physical growth to encompass worldly experience. An elf typically claims adulthood and an adult name around the age of 100 and can live to be 750 years old.\nAlignment. Elves love freedom, variety, and self-expression, so they lean strongly toward the gentler aspects of chaos. They value and protect others' freedom as well as their own, and they are more often good than not.\nSize. Elves range from under 5 to over 6 feet tall and have slender builds. Your size is Medium.\nSpeed. Your base walking speed is 30 feet.\nDarkvision. Accustomed to twilit forests and the night sky, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.\nKeen Senses. You have proficiency in the Perception skill.\nFey Ancestry. @Compendium[dnd5e.races.cnTbpPPeGW7vGjOV]{Fey Ancestry} You have advantage on saving throws against being charmed, and magic can't put you to sleep.\nTrance. Elves don't need to sleep. Instead, they meditate deeply, remaining semiconscious, for 4 hours a day. (The Common word for such meditation is \"trance.\") While meditating, you can dream after a fashion; such dreams are actually mental exercises that have become reflexive through years of practice. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.\nLanguages. You can speak, read, and write Common and Elvish. Elvish is fluid, with subtle intonations and intricate grammar. Elven literature is rich and varied, and their songs and poems are famous among other races. Many bards learn their language so they can add Elvish ballads to their repertoires.", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "requirements": "", - "recharge": { - "value": null, - "charged": false - } - }, - "flags": {}, - "img": "icons/magic/nature/leaf-glow-maple-teal.webp", - "effects": [], - "folder": null, - "sort": 0, - "_stats": { - "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", - "createdTime": 1661787234474, - "modifiedTime": 1671220977660, - "lastModifiedBy": "dnd5ebuilder0000" - } -} diff --git a/packs/src/races/fey-ancestry.json b/packs/src/races/fey-ancestry.json index eb258b6510..17839b01e7 100644 --- a/packs/src/races/fey-ancestry.json +++ b/packs/src/races/fey-ancestry.json @@ -11,7 +11,13 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -22,11 +28,13 @@ "units": "" }, "cover": null, + "crewed": false, "target": { "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -37,7 +45,8 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", @@ -79,10 +88,11 @@ "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", + "systemVersion": "2.3.1", + "coreVersion": "10.303", "createdTime": 1661787234471, - "modifiedTime": 1672336370724, + "modifiedTime": 1699397219242, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!cnTbpPPeGW7vGjOV" } diff --git a/packs/src/races/gnome-cunning.json b/packs/src/races/gnome-cunning.json index 0ca6baf79b..a299562f5b 100644 --- a/packs/src/races/gnome-cunning.json +++ b/packs/src/races/gnome-cunning.json @@ -11,7 +11,13 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -22,11 +28,13 @@ "units": "" }, "cover": null, + "crewed": false, "target": { "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -37,7 +45,8 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", @@ -79,10 +88,11 @@ "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", + "systemVersion": "2.3.1", + "coreVersion": "10.303", "createdTime": 1661787234464, - "modifiedTime": 1672336366382, + "modifiedTime": 1699397219152, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!EHhr9umJ5kxJFCQH" } diff --git a/packs/src/races/gnome.json b/packs/src/races/gnome.json deleted file mode 100644 index 1e11aa9a0e..0000000000 --- a/packs/src/races/gnome.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "kmRnMETG5hB9Bmwu", - "name": "Gnome", - "ownership": { - "default": 0 - }, - "type": "feat", - "system": { - "description": { - "value": "Your gnome character has certain characteristics in common with all other gnomes. \nAbility Score Increase. Your Intelligence score increases by 2.\nAge. Gnomes mature at the same rate humans do, and most are expected to settle down into an adult life by around age 40. They can live 350 to almost 500 years.\nAlignment. Gnomes are most often good. Those who tend toward law are sages, engineers, researchers, scholars, investigators, or inventors. Those who tend toward chaos are minstrels, tricksters, wanderers, or fanciful jewelers. Gnomes are good-‐‑hearted, and even the tricksters among them are more playful than vicious.\nSize. Gnomes are between 3 and 4 feet tall and average about 40 pounds. Your size is Small. Speed. Your base walking speed is 25 feet.\nDarkvision. Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.\nGnome Cunning. @Compendium[dnd5e.races.EHhr9umJ5kxJFCQH]{Gnome Cunning} You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.\nLanguages. You can speak, read, and write Common and Gnomish. The Gnomish language, which uses the Dwarvish script, is renowned for its technical treatises and its catalogs of knowledge about the natural world.", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "requirements": "", - "recharge": { - "value": null, - "charged": false - } - }, - "flags": {}, - "img": "icons/magic/fire/projectile-meteor-salvo-strong-purple-yellow.webp", - "effects": [], - "folder": null, - "sort": 0, - "_stats": { - "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", - "createdTime": 1661787234471, - "modifiedTime": 1671220977585, - "lastModifiedBy": "dnd5ebuilder0000" - } -} diff --git a/packs/src/races/half-elf.json b/packs/src/races/half-elf.json index c4a3866bb5..5cd6ada060 100644 --- a/packs/src/races/half-elf.json +++ b/packs/src/races/half-elf.json @@ -1,84 +1,163 @@ { "_id": "Hye5IZwPOSwV0qRR", "name": "Half-Elf", - "ownership": { - "default": 0 - }, - "type": "feat", + "type": "race", + "img": "icons/magic/nature/leaf-glow-triple-green.webp", "system": { "description": { - "value": "Your half-elf character has some qualities in common with elves and some that are unique to half-elves. \nAbility Score Increase. Your Charisma score increases by 2, and two other ability scores of your choice increase by 1.\nAge. Half-elves mature at the same rate humans do and reach adulthood around the age of 20. They live much longer than humans, however, often exceeding 180 years.\nAlignment. Half-elves share the chaotic bent of their elven heritage. They value both personal freedom and creative expression, demonstrating neither love of leaders nor desire for followers. They chafe at rules, resent others' demands, and sometimes prove unreliable, or at least unpredictable.\nSize. Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.\nSpeed. Your base walking speed is 30 feet.\nDarkvision. Thanks to your elf blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.\nFey Ancestry. @Compendium[dnd5e.races.cnTbpPPeGW7vGjOV]{Fey Ancestry} You have advantage on saving throws against being charmed, and magic can't put you to sleep.\nSkill Versatility. You gain proficiency in two skills of your choice.\nLanguages. You can speak, read, and write Common, Elvish, and one extra language of your choice.", + "value": "Your half‑elf character has some qualities in common with elves and some that are unique to half-elves.Ability Score Increase. Your Charisma score increases by 2, and two other ability scores of your choice increase by 1.Age. Half-elves mature at the same rate humans do and reach adulthood around the age of 20. They live much longer than humans, however, often exceeding 180 years.Alignment. Half-elves share the chaotic bent of their elven heritage. They value both personal freedom and creative expression, demonstrating neither love of leaders nor desire for followers. They chafe at rules, resent others' demands, and sometimes prove unreliable, or at least unpredictable.Size. Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Thanks to your elf blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Fey Ancestry. You have advantage on saving throws against being charmed, and magic can't put you to sleep.Skill Versatility. You gain proficiency in two skills of your choice.Languages. You can speak, read, and write Common, Elvish, and one extra language of your choice.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" }, - "range": { - "value": null, - "long": null, - "units": "" + "identifier": "half-elf", + "advancement": [ + { + "_id": "rXyxzoqxdxlspMi5", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.races.cnTbpPPeGW7vGjOV" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": {}, + "level": 0, + "title": "" + }, + { + "_id": "Z9hvZFkWUNvowbQX", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 2, + "fixed": { + "str": 0, + "dex": 0, + "con": 0, + "int": 0, + "wis": 0, + "cha": 2 + }, + "cap": 1 + }, + "value": { + "type": "asi" + }, + "level": 0, + "title": "" + }, + { + "_id": "r3PSgtQO6Eim49LU", + "type": "Size", + "configuration": { + "hint": "Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.", + "sizes": [ + "med" + ] + }, + "value": { + "size": "" + }, + "level": 1, + "title": "" + }, + { + "_id": "CormRQZ5momyvS2I", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 2, + "pool": [ + "skills:*" + ] + } + ] + }, + "level": 0, + "title": "Skill Versatility", + "value": {} + }, + { + "_id": "U3OO7jLU0nm0Z7zw", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:standard:common", + "languages:standard:elvish" + ], + "choices": [ + { + "count": 1, + "pool": [ + "languages:*" + ] + } + ] + }, + "level": 0, + "title": "", + "value": {} + } + ], + "senses": { + "darkvision": 60, + "blindsight": null, + "tremorsense": null, + "truesight": null, + "units": "ft", + "special": "" }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" + "type": { + "subtype": "elf", + "value": "humanoid", + "custom": "" }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "requirements": "", - "recharge": { - "value": null, - "charged": false + "movement": { + "burrow": null, + "climb": null, + "fly": null, + "swim": null, + "walk": 30, + "units": "ft", + "hover": false } }, - "flags": {}, - "img": "icons/magic/nature/leaf-glow-triple-teal.webp", "effects": [], - "folder": null, - "sort": 0, + "ownership": { + "default": 0 + }, + "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", - "createdTime": 1661787234465, - "modifiedTime": 1671220977496, + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1677181061205, + "modifiedTime": 1699987889302, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "sort": 0, + "folder": null, + "_key": "!items!Hye5IZwPOSwV0qRR" } diff --git a/packs/src/races/half-orc.json b/packs/src/races/half-orc.json index ba59e5cf25..c261632d9e 100644 --- a/packs/src/races/half-orc.json +++ b/packs/src/races/half-orc.json @@ -1,84 +1,152 @@ { "_id": "n5L000DkNBU6h2oJ", "name": "Half-Orc", - "ownership": { - "default": 0 - }, - "type": "feat", + "type": "race", + "img": "icons/commodities/bones/skull-tusked-grey.webp", "system": { "description": { - "value": "Your half-orc character has certain traits deriving from your orc ancestry. \nAbility Score Increase. Your Strength score increases by 2, and your Constitution score increases by 1.\nAge. Half-orcs mature a little faster than humans, reaching adulthood around age 14. They age noticeably faster and rarely live longer than 75 years.\nAlignment. Half-orcs inherit a tendency toward chaos from their orc parents and are not strongly inclined toward good. Half-orcs raised among orcs and willing to live out their lives among them are usually evil.\nSize. Half-orcs are somewhat larger and bulkier than humans, and they range from 5 to well over 6 feet tall. Your size is Medium.\nSpeed. Your base walking speed is 30 feet.\nDarkvision. Thanks to your orc blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.\nMenacing. You gain proficiency in the Intimidation skill.\nRelentless Endurance. @Compendium[dnd5e.races.97c8i9Z28thvZuA8]{Relentless Endurance} When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.\nSavage Attacks. @Compendium[dnd5e.races.0kUsT4sMUOr5FcoX]{Savage Attacks} When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.\nLanguages. You can speak, read, and write Common and Orc. Orc is a harsh, grating language with hard consonants. It has no script of its own but is written in the Dwarvish script.", + "value": "Your half-orc character has certain traits deriving from your orc ancestry.Ability Score Increase. Your Strength score increases by 2, and your Constitution score increases by 1.Age. Half-orcs mature a little faster than humans, reaching adulthood around age 14. They age noticeably faster and rarely live longer than 75 years.Alignment. Half-orcs inherit a tendency toward chaos from their orc parents and are not strongly inclined toward good. Half-orcs raised among orcs and willing to live out their lives among them are usually evil.Size. Half‑orcs are somewhat larger and bulkier than humans, and they range from 5 to well over 6 feet tall. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Thanks to your orc blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Menacing. You gain proficiency in the Intimidation skill.Relentless Endurance. When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.Savage Attacks. When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.Languages. You can speak, read, and write Common and Orc. Orc is a harsh, grating language with hard consonants. It has no script of its own but is written in the Dwarvish script.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" }, - "range": { - "value": null, - "long": null, - "units": "" + "identifier": "half-orc", + "advancement": [ + { + "_id": "Nj1VOKOTjxKU15J8", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.races.97c8i9Z28thvZuA8", + "Compendium.dnd5e.races.0kUsT4sMUOr5FcoX" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": {}, + "level": 0, + "title": "" + }, + { + "_id": "Z9hvZFkWUNvowbQX", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 0, + "fixed": { + "str": 2, + "dex": 0, + "con": 1, + "int": 0, + "wis": 0, + "cha": 0 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 0, + "title": "" + }, + { + "_id": "jdak6D1rjScJSK8i", + "type": "Size", + "configuration": { + "hint": "Half-‐‑orcs are somewhat larger and bulkier than humans, and they range from 5 to well over 6 feet tall. Your size is Medium.", + "sizes": [ + "med" + ] + }, + "value": { + "size": "" + }, + "level": 1, + "title": "" + }, + { + "_id": "aRv9Ec4xJCyrFMpY", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "skills:itm" + ], + "choices": [] + }, + "level": 0, + "title": "Menacing", + "value": {} + }, + { + "_id": "4cI2nhWNr0D1hOnx", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:standard:common", + "languages:standard:orc" + ], + "choices": [] + }, + "level": 0, + "title": "", + "value": {} + } + ], + "type": { + "subtype": "orc", + "value": "humanoid", + "custom": "" }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" + "senses": { + "darkvision": 60, + "blindsight": null, + "tremorsense": null, + "truesight": null, + "units": "ft", + "special": "" }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "requirements": "", - "recharge": { - "value": null, - "charged": false + "movement": { + "burrow": null, + "climb": null, + "fly": null, + "swim": null, + "walk": 30, + "units": "ft", + "hover": false } }, - "flags": {}, - "img": "icons/magic/unholy/orb-smoking-green.webp", "effects": [], - "folder": null, - "sort": 0, + "ownership": { + "default": 0 + }, + "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", - "createdTime": 1661787234473, - "modifiedTime": 1671220977599, + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1677181067463, + "modifiedTime": 1699987880029, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "sort": 0, + "folder": null, + "_key": "!items!n5L000DkNBU6h2oJ" } diff --git a/packs/src/races/halfling-nimbleness.json b/packs/src/races/halfling-nimbleness.json index 3f2a44446b..e5d9fade90 100644 --- a/packs/src/races/halfling-nimbleness.json +++ b/packs/src/races/halfling-nimbleness.json @@ -11,7 +11,13 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -22,11 +28,13 @@ "units": "" }, "cover": null, + "crewed": false, "target": { "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -37,7 +45,8 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", @@ -79,10 +88,11 @@ "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", + "systemVersion": "2.3.1", + "coreVersion": "10.303", "createdTime": 1661787234468, - "modifiedTime": 1672336359296, + "modifiedTime": 1699397219202, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!PqxZgcJzp1VVgP8t" } diff --git a/packs/src/races/halfling.json b/packs/src/races/halfling.json deleted file mode 100644 index f3ef461417..0000000000 --- a/packs/src/races/halfling.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "GH2dNne2bt1NjcJk", - "name": "Halfling", - "ownership": { - "default": 0 - }, - "type": "feat", - "system": { - "description": { - "value": "Your halfling character has a number of traits in common with all other halflings. \nAbility Score Increase. Your Dexterity score increases by 2.\nAge. A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.\nAlignment. Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.\nSize. Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.\nSpeed. Your base walking speed is 25 feet.\nLucky. @Compendium[dnd5e.races.LOMdcNAGWh5xpfm4]{Lucky} When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.\nBrave. @Compendium[dnd5e.races.7Yoo9hG0hfPSmBoC]{Brave} You have advantage on saving throws against being frightened.\nHalfling Nimbleness. @Compendium[dnd5e.races.PqxZgcJzp1VVgP8t]{Halfling Nimbleness} You can move through the space of any creature that is of a size larger than yours.\nLanguages. You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.", - "chat": "", - "unidentified": "" - }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "requirements": "", - "recharge": { - "value": null, - "charged": false - } - }, - "flags": {}, - "img": "icons/magic/lightning/bolt-forked-large-teal.webp", - "effects": [], - "folder": null, - "sort": 0, - "_stats": { - "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", - "createdTime": 1661787234464, - "modifiedTime": 1671220977472, - "lastModifiedBy": "dnd5ebuilder0000" - } -} diff --git a/packs/src/races/hellish-resistance.json b/packs/src/races/hellish-resistance.json index 1c60764cd6..f08132b230 100644 --- a/packs/src/races/hellish-resistance.json +++ b/packs/src/races/hellish-resistance.json @@ -11,7 +11,13 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -22,11 +28,13 @@ "units": "" }, "cover": null, + "crewed": false, "target": { "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -37,7 +45,8 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", @@ -101,17 +110,19 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!q71Pe1F8RRtEJt8Q.0rAhv7npcNmDcQ3B" } ], "folder": null, "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", + "systemVersion": "2.3.1", + "coreVersion": "10.303", "createdTime": 1661787234473, - "modifiedTime": 1672336356633, + "modifiedTime": 1699397219293, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!q71Pe1F8RRtEJt8Q" } diff --git a/packs/src/races/high-elf.json b/packs/src/races/high-elf.json index e472279731..83803bbb4b 100644 --- a/packs/src/races/high-elf.json +++ b/packs/src/races/high-elf.json @@ -1,84 +1,206 @@ { "_id": "A69KxdH1renVPrQV", "name": "High Elf", - "ownership": { - "default": 0 - }, - "type": "feat", + "type": "race", + "img": "icons/commodities/treasure/statue-gold-laurel-wreath.webp", "system": { "description": { - "value": "As a high elf, you have a keen mind and a mastery of at least the basics of magic. In many fantasy gaming worlds, there are two kinds of high elves. One type is haughty and reclusive, believing themselves to be superior to non-elves and even other elves. The other type is more common and more friendly, and often encountered among humans and other races. \nAbility Score Increase. Your Intelligence score increases by 1.\nElf Weapon Training. You have proficiency with the longsword, shortsword, shortbow, and longbow.\nCantrip. You know one cantrip of your choice from the wizard spell list. Intelligence is your spellcasting ability for it.\nExtra Language. You can speak, read, and write one extra language of your choice.", + "value": "Your elf character has a variety of natural abilities, the result of thousands of years of elven refinement.Ability Score Increase. Your Dexterity score increases by 2.Age. Although elves reach physical maturity at about the same age as humans, the elven understanding of adulthood goes beyond physical growth to encompass worldly experience. An elf typically claims adulthood and an adult name around the age of 100 and can live to be 750 years old.Alignment. Elves love freedom, variety, and self-expression, so they lean strongly toward the gentler aspects of chaos. They value and protect others' freedom as well as their own, and they are more often good than not.Size. Elves range from under 5 to over 6 feet tall and have slender builds. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Accustomed to twilit forests and the night sky, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Keen Senses. You have proficiency in the Perception skill.Fey Ancestry. You have advantage on saving throws against being charmed, and magic can't put you to sleep.Trance. Elves don't need to sleep. Instead, they meditate deeply, remaining semiconscious, for 4 hours a day. (The Common word for such meditation is \"trance.\") While meditating, you can dream after a fashion; such dreams are actually mental exercises that have become reflexive through years of practice. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.Languages. You can speak, read, and write Common and Elvish. Elvish is fluid, with subtle intonations and intricate grammar. Elven literature is rich and varied, and their songs and poems are famous among other races. Many bards learn their language so they can add Elvish ballads to their repertoires.High ElfAs a high elf, you have a keen mind and a mastery of at least the basics of magic. In many fantasy gaming worlds, there are two kinds of high elves. One type is haughty and reclusive, believing themselves to be superior to non-elves and even other elves. The other type is more common and more friendly, and often encountered among humans and other races.Ability Score Increase. Your Intelligence score increases by 1.Elf Weapon Training. You have proficiency with the longsword, shortsword, shortbow, and longbow.Cantrip. You know one cantrip of your choice from the wizard spell list. Intelligence is your spellcasting ability for it.Extra Language. You can speak, read, and write one extra language of your choice.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" }, - "range": { - "value": null, - "long": null, - "units": "" + "identifier": "high-elf", + "advancement": [ + { + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.races.cnTbpPPeGW7vGjOV", + "Compendium.dnd5e.races.4v2PiBrAbqDizdSJ" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": {}, + "level": 0, + "title": "Grant Items", + "icon": "systems/dnd5e/icons/svg/item-grant.svg", + "_id": "9SgUOZ9mjqyA8Q2d" + }, + { + "_id": "l1Pw82BvhrSkYiyF", + "type": "ItemChoice", + "configuration": { + "hint": "You know one cantrip of your choice from the wizard spell list. Intelligence is your spellcasting ability for it.", + "choices": { + "0": 1 + }, + "allowDrops": true, + "type": "spell", + "pool": [], + "spell": { + "ability": "int", + "preparation": "innate", + "uses": { + "max": "", + "per": "" + } + }, + "restriction": { + "type": "", + "subtype": "", + "level": "0" + } + }, + "value": {}, + "title": "Cantrip" + }, + { + "_id": "Z9hvZFkWUNvowbQX", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 0, + "fixed": { + "str": 0, + "dex": 2, + "con": 0, + "int": 1, + "wis": 0, + "cha": 0 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 0, + "title": "" + }, + { + "_id": "eqSwyWvm0gYgBzJJ", + "type": "Size", + "configuration": { + "hint": "Elves range from under 5 to over 6 feet tall and have slender builds. Your size is Medium.", + "sizes": [ + "med" + ] + }, + "value": { + "size": "" + }, + "level": 1, + "title": "" + }, + { + "_id": "eAv9eLr0ackU7WO2", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "skills:prc" + ], + "choices": [] + }, + "level": 0, + "title": "Keen Senses", + "value": {} + }, + { + "_id": "vNyszlmxQeXRjYIH", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:standard:common", + "languages:standard:elvish" + ], + "choices": [ + { + "count": 1, + "pool": [ + "languages:*" + ] + } + ] + }, + "level": 0, + "title": "" + }, + { + "_id": "ZwJOJ5Ywagq7rWNI", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim:shortbow", + "weapon:mar:longbow", + "weapon:mar:longsword", + "weapon:mar:shortsword" + ], + "choices": [] + }, + "level": 0, + "title": "Elf Weapon Training", + "value": {} + } + ], + "senses": { + "darkvision": 60, + "blindsight": null, + "tremorsense": null, + "truesight": null, + "units": "ft", + "special": "" }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" + "movement": { + "burrow": null, + "climb": null, + "fly": null, + "swim": null, + "walk": 30, + "units": "ft", + "hover": false }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "requirements": "Elf", - "recharge": { - "value": null, - "charged": false + "type": { + "value": "humanoid", + "subtype": "", + "custom": "" } }, - "flags": {}, - "img": "icons/magic/nature/leaf-glow-maple-green.webp", "effects": [], - "folder": null, - "sort": 0, + "ownership": { + "default": 0 + }, + "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", - "createdTime": 1661787234463, - "modifiedTime": 1671220977452, + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1677179211328, + "modifiedTime": 1699987871524, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "sort": 0, + "folder": null, + "_key": "!items!A69KxdH1renVPrQV" } diff --git a/packs/src/races/hill-dwarf.json b/packs/src/races/hill-dwarf.json index 3ccb253b1e..c67b18c13b 100644 --- a/packs/src/races/hill-dwarf.json +++ b/packs/src/races/hill-dwarf.json @@ -1,84 +1,194 @@ { "_id": "UQiRQUTBcsz8gZU1", "name": "Hill Dwarf", - "ownership": { - "default": 0 - }, - "type": "feat", + "type": "race", + "img": "icons/environment/wilderness/cave-entrance-rocky.webp", "system": { "description": { - "value": "As a hill dwarf, you have keen senses, deep intuition, and remarkable resilience. \nAbility Score Increase. Your Wisdom score increases by 1.\nDwarven Toughness. Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.", + "value": "Your dwarf character has an assortment of inborn abilities, part and parcel of dwarven nature.Ability Score Increase. Your Constitution score increases by 2.Age. Dwarves mature at the same rate as humans, but they're considered young until they reach the age of 50. On average, they live about 350 years.Alignment. Most dwarves are lawful, believing firmly in the benefits of a well-ordered society. They tend toward good as well, with a strong sense of fair play and a belief that everyone deserves to share in the benefits of a just order.Size. Dwarves stand between 4 and 5 feet tall and average about 150 pounds. Your size is Medium.Speed. Your base walking speed is 25 feet. Your speed is not reduced by wearing heavy armor.Darkvision. Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Dwarven Resilience. You have advantage on saving throws against poison, and you have resistance against poison damage.Dwarven Combat Training. You have proficiency with the battleaxe, handaxe, light hammer, and warhammer.Tool Proficiency. You gain proficiency with the artisan's tools of your choice: smith's tools, brewer's supplies, or mason's tools.Stonecunning. Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.Languages. You can speak, read, and write Common and Dwarvish. Dwarvish is full of hard consonants and guttural sounds, and those characteristics spill over into whatever other language a dwarf might speak.Hill DwarfAs a hill dwarf, you have keen senses, deep intuition, and remarkable resilience.Ability Score Increase. Your Wisdom score increases by 1.Dwarven Toughness. Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.Foundry NoteDwarven Toughness should be configured by adding 1 to the \"Per Level\" bonus in HP configuration on your character sheet (accessible using the cog next to your character's hit points).", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" }, - "range": { - "value": null, - "long": null, - "units": "" + "identifier": "hill-dwarf", + "advancement": [ + { + "_id": "tNfLTuoHfvAxg2FC", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.races.ufysTkqet2Ctmtyi", + "Compendium.dnd5e.races.mQPZDRbUhgYTbXKa" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": {}, + "level": 0, + "title": "" + }, + { + "_id": "Z9hvZFkWUNvowbQX", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 0, + "fixed": { + "str": 0, + "dex": 0, + "con": 2, + "int": 0, + "wis": 1, + "cha": 0 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 0, + "title": "" + }, + { + "_id": "kdMPoRp3j1uOHQom", + "type": "Size", + "configuration": { + "hint": "Dwarves stand between 4 and 5 feet tall and average about 150 pounds. Your size is Medium.", + "sizes": [ + "med" + ] + }, + "value": { + "size": "" + }, + "level": 1, + "title": "" + }, + { + "_id": "rmcKuRQ2Laloq1xp", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:standard:common", + "languages:standard:dwarvish" + ], + "choices": [] + }, + "level": 0, + "title": "", + "value": {} + }, + { + "_id": "5zWGcz9uAerx3Dh5", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "dr:poison" + ], + "choices": [] + }, + "level": 0, + "title": "Dwarven Resilience", + "value": {} + }, + { + "_id": "J0UGmCyMy6thWDeU", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "weapon:sim:handaxe", + "weapon:sim:lighthammer", + "weapon:mar:battleaxe", + "weapon:mar:warhammer" + ], + "choices": [] + }, + "level": 0, + "title": "Dwarven Combat Training", + "value": {} + }, + { + "_id": "9CYW7Bj53L9G8Zsw", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 1, + "pool": [ + "tool:art:brewer", + "tool:art:mason", + "tool:art:smith" + ] + } + ] + }, + "level": 0, + "title": "", + "value": {} + } + ], + "senses": { + "darkvision": 60, + "blindsight": null, + "tremorsense": null, + "truesight": null, + "units": "ft", + "special": "" }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" + "movement": { + "walk": 25, + "burrow": null, + "climb": null, + "fly": null, + "swim": null, + "units": "ft", + "hover": false }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "requirements": "Dwarf", - "recharge": { - "value": null, - "charged": false + "type": { + "subtype": "dwarf", + "value": "humanoid", + "custom": "" } }, - "flags": {}, - "img": "icons/magic/defensive/shield-barrier-glowing-triangle-magenta.webp", "effects": [], - "folder": null, - "sort": 0, + "ownership": { + "default": 0 + }, + "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", - "createdTime": 1661787234469, - "modifiedTime": 1671220977548, + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1677179053861, + "modifiedTime": 1699987862731, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "sort": 0, + "folder": null, + "_key": "!items!UQiRQUTBcsz8gZU1" } diff --git a/packs/src/races/human.json b/packs/src/races/human.json index b5a96acb50..de9e3a8afb 100644 --- a/packs/src/races/human.json +++ b/packs/src/races/human.json @@ -1,84 +1,120 @@ { "_id": "ydP3QzCmur55mtY2", "name": "Human", - "ownership": { - "default": 0 - }, - "type": "feat", + "type": "race", + "img": "icons/environment/people/commoner.webp", "system": { "description": { - "value": "It's hard to make generalizations about humans, but your human character has these traits. \nAbility Score Increase. Your ability scores each increase by 1.\nAge. Humans reach adulthood in their late teens and live less than a century.\nAlignment. Humans tend toward no particular alignment. The best and the worst are found among them.\nSize. Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.\nSpeed. Your base walking speed is 30 feet.\nLanguages. You can speak, read, and write Common and one extra language of your choice. Humans typically learn the languages of other peoples they deal with, including obscure dialects. They are fond of sprinkling their speech with words borrowed from other tongues: Orc curses, Elvish musical expressions, Dwarvish military phrases, and so on.", + "value": "It's hard to make generalizations about humans, but your human character has these traits.Ability Score Increase. Your ability scores each increase by 1.Age. Humans reach adulthood in their late teens and live less than a century.Alignment. Humans tend toward no particular alignment. The best and the worst are found among them.Size. Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.Speed. Your base walking speed is 30 feet.Languages. You can speak, read, and write Common and one extra language of your choice. Humans typically learn the languages of other peoples they deal with, including obscure dialects. They are fond of sprinkling their speech with words borrowed from other tongues: Orc curses, Elvish musical expressions, Dwarvish military phrases, and so on.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" }, - "range": { - "value": null, - "long": null, - "units": "" + "identifier": "human", + "advancement": [ + { + "_id": "Z9hvZFkWUNvowbQX", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 0, + "fixed": { + "str": 1, + "dex": 1, + "con": 1, + "int": 1, + "wis": 1, + "cha": 1 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 0, + "title": "" + }, + { + "_id": "dNSrZePZHz2qwVpi", + "type": "Size", + "configuration": { + "hint": "Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.", + "sizes": [ + "med" + ] + }, + "value": { + "size": "" + }, + "level": 1, + "title": "" + }, + { + "_id": "HI6r4Y6KjHND0i53", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:standard:common" + ], + "choices": [ + { + "count": 1, + "pool": [ + "languages:*" + ] + } + ] + }, + "level": 0, + "title": "", + "value": {} + } + ], + "movement": { + "burrow": null, + "climb": null, + "fly": null, + "swim": null, + "walk": 30, + "units": "ft", + "hover": false }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" + "senses": { + "darkvision": null, + "blindsight": null, + "tremorsense": null, + "truesight": null, + "units": "ft", + "special": "" }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "requirements": "", - "recharge": { - "value": null, - "charged": false + "type": { + "value": "humanoid", + "subtype": "human", + "custom": "" } }, - "flags": {}, - "img": "icons/magic/light/explosion-star-large-orange.webp", "effects": [], - "folder": null, - "sort": 0, + "ownership": { + "default": 0 + }, + "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", - "createdTime": 1661787234475, - "modifiedTime": 1671220977692, + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1677180079259, + "modifiedTime": 1699987914586, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "sort": 0, + "folder": null, + "_key": "!items!ydP3QzCmur55mtY2" } diff --git a/packs/src/races/infernal-legacy.json b/packs/src/races/infernal-legacy.json index ce13ef1883..14b5450b02 100644 --- a/packs/src/races/infernal-legacy.json +++ b/packs/src/races/infernal-legacy.json @@ -11,7 +11,13 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -22,11 +28,13 @@ "units": "" }, "cover": null, + "crewed": false, "target": { "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -37,7 +45,8 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", @@ -79,10 +88,11 @@ "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", + "systemVersion": "2.3.1", + "coreVersion": "10.303", "createdTime": 1661787234475, - "modifiedTime": 1672336349587, + "modifiedTime": 1699397219300, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!wJc88B8OP1y1xzMw" } diff --git a/packs/src/races/lightfoot-halfling.json b/packs/src/races/lightfoot-halfling.json index ef155cd2c8..5e7746a0a1 100644 --- a/packs/src/races/lightfoot-halfling.json +++ b/packs/src/races/lightfoot-halfling.json @@ -1,84 +1,138 @@ { "_id": "ZgYBjYYfiUstQD6f", "name": "Lightfoot Halfling", - "ownership": { - "default": 0 - }, - "type": "feat", + "type": "race", + "img": "icons/equipment/feet/shoes-leather-simple-brown.webp", "system": { "description": { - "value": "As a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others. \nLightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life. \nAbility Score Increase. Your Charisma score increases by 1.\nNaturally Stealthy. @Compendium[dnd5e.races.GWPjKFeIthBBeCFJ]{Naturally Stealthy} You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.", + "value": "Your halfling character has a number of traits in common with all other halflings.Ability Score Increase. Your Dexterity score increases by 2.Age. A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.Alignment. Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.Size. Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.Speed. Your base walking speed is 25 feet.Lucky. When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.Brave. You have advantage on saving throws against being frightened.Halfling Nimbleness. You can move through the space of any creature that is of a size larger than yours.Languages. You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.LightfootAs a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others.Lightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life.Ability Score Increase. Your Charisma score increases by 1.Naturally Stealthy. You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" }, - "range": { - "value": null, - "long": null, - "units": "" + "identifier": "lightfoot-halfling", + "advancement": [ + { + "_id": "nInhIgkbzzJTdm8F", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.races.LOMdcNAGWh5xpfm4", + "Compendium.dnd5e.races.7Yoo9hG0hfPSmBoC", + "Compendium.dnd5e.races.PqxZgcJzp1VVgP8t", + "Compendium.dnd5e.races.GWPjKFeIthBBeCFJ" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": {}, + "level": 0, + "title": "" + }, + { + "_id": "Z9hvZFkWUNvowbQX", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 0, + "fixed": { + "str": 0, + "dex": 2, + "con": 0, + "int": 0, + "wis": 0, + "cha": 1 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 0, + "title": "" + }, + { + "_id": "hv2bcANK5jEJZaAb", + "type": "Size", + "configuration": { + "hint": "Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.", + "sizes": [ + "sm" + ] + }, + "value": { + "size": "" + }, + "level": 1, + "title": "" + }, + { + "_id": "nGwMjsfNU6CXHk3A", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:standard:common", + "languages:standard:halfling" + ], + "choices": [] + }, + "level": 0, + "title": "", + "value": {} + } + ], + "movement": { + "walk": 25, + "burrow": null, + "climb": null, + "fly": null, + "swim": null, + "units": "ft", + "hover": false }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" + "type": { + "subtype": "halfling", + "value": "humanoid", + "custom": "" }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "requirements": "Halfling", - "recharge": { - "value": null, - "charged": false + "senses": { + "darkvision": null, + "blindsight": null, + "tremorsense": null, + "truesight": null, + "units": "ft", + "special": "" } }, - "flags": {}, - "img": "icons/magic/lightning/bolt-forked-teal.webp", "effects": [], - "folder": null, - "sort": 0, + "ownership": { + "default": 0 + }, + "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", - "createdTime": 1661787234470, - "modifiedTime": 1671220977572, + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1677178323356, + "modifiedTime": 1699987624582, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "sort": 0, + "folder": null, + "_key": "!items!ZgYBjYYfiUstQD6f" } diff --git a/packs/src/races/lucky.json b/packs/src/races/lucky.json index a8535a2161..cf3d43a5fe 100644 --- a/packs/src/races/lucky.json +++ b/packs/src/races/lucky.json @@ -7,11 +7,17 @@ "type": "feat", "system": { "description": { - "value": "When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.", + "value": "When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.Foundry NoteThis property can be enabled on your character sheet in the Special Traits configuration on the Attributes tab.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -22,11 +28,13 @@ "units": "" }, "cover": null, + "crewed": false, "target": { "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -37,7 +45,8 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", @@ -101,17 +110,19 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!LOMdcNAGWh5xpfm4.3ZXTUDl62zDpvpai" } ], "folder": null, "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", + "systemVersion": "2.3.1", + "coreVersion": "10.303", "createdTime": 1661787234467, - "modifiedTime": 1672336345266, + "modifiedTime": 1699461251311, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LOMdcNAGWh5xpfm4" } diff --git a/packs/src/races/naturally-stealthy.json b/packs/src/races/naturally-stealthy.json index 0b9418c51b..468640ddfd 100644 --- a/packs/src/races/naturally-stealthy.json +++ b/packs/src/races/naturally-stealthy.json @@ -11,7 +11,13 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -22,11 +28,13 @@ "units": "" }, "cover": null, + "crewed": false, "target": { "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -37,7 +45,8 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", @@ -79,10 +88,11 @@ "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", + "systemVersion": "2.3.1", + "coreVersion": "10.303", "createdTime": 1661787234465, - "modifiedTime": 1672336343080, + "modifiedTime": 1699397219156, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!GWPjKFeIthBBeCFJ" } diff --git a/packs/src/races/relentless-endurance.json b/packs/src/races/relentless-endurance.json index f835b81f29..0057f99777 100644 --- a/packs/src/races/relentless-endurance.json +++ b/packs/src/races/relentless-endurance.json @@ -11,7 +11,13 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "special", "cost": null, @@ -22,11 +28,13 @@ "units": "" }, "cover": null, + "crewed": false, "target": { "value": null, "width": null, "units": "", - "type": "self" + "type": "self", + "prompt": true }, "range": { "value": null, @@ -37,7 +45,8 @@ "value": 1, "max": "1", "per": "lr", - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", @@ -84,10 +93,11 @@ "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", + "systemVersion": "2.3.1", + "coreVersion": "10.303", "createdTime": 1661787234463, - "modifiedTime": 1672336340150, + "modifiedTime": 1699397219121, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!97c8i9Z28thvZuA8" } diff --git a/packs/src/races/rock-gnome.json b/packs/src/races/rock-gnome.json index f7db644cb7..0d4bd39eb5 100644 --- a/packs/src/races/rock-gnome.json +++ b/packs/src/races/rock-gnome.json @@ -1,84 +1,137 @@ { "_id": "TZtarkKs6cgGD7z2", "name": "Rock Gnome", - "ownership": { - "default": 0 - }, - "type": "feat", + "type": "race", + "img": "icons/environment/wilderness/terrain-rocks-brown.webp", "system": { "description": { - "value": "As a rock gnome, you have a natural inventiveness and hardiness beyond that of other gnomes.\nAbility Score Increase. Your Constitution score increases by 1.\nArtificer's Lore. @Compendium[dnd5e.races.OQA1sHxKnSJq01dL]{Artificer's Lore} Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.\nTinker. @Compendium[dnd5e.races.koRPOLtj8XAFMwnW]{Tinker} You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time.\nWhen you create a device, choose one of the following options:\nClockwork Toy. This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.\nFire Starter. The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.\nMusic Box. When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.", + "value": "Your gnome character has certain characteristics in common with all other gnomes.Ability Score Increase. Your Intelligence score increases by 2.Age. Gnomes mature at the same rate humans do, and most are expected to settle down into an adult life by around age 40. They can live 350 to almost 500 years.Alignment. Gnomes are most often good. Those who tend toward law are sages, engineers, researchers, scholars, investigators, or inventors. Those who tend toward chaos are minstrels, tricksters, wanderers, or fanciful jewelers. Gnomes are good‑hearted, and even the tricksters among them are more playful than vicious.Size. Gnomes are between 3 and 4 feet tall and average about 40 pounds. Your size is Small.Speed. Your base walking speed is 25 feet.Darkvision. Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Gnome Cunning. You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.Languages. You can speak, read, and write Common and Gnomish. The Gnomish language, which uses the Dwarvish script, is renowned for its technical treatises and its catalogs of knowledge about the natural world.Rock GnomeAs a rock gnome, you have a natural inventiveness and hardiness beyond that of other gnomes.Ability Score Increase. Your Constitution score increases by 1.Artificer's Lore. Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.Tinker. You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time.When you create a device, choose one of the following options:Clockwork Toy. This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.Fire Starter. The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.Music Box. When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" }, - "range": { - "value": null, - "long": null, - "units": "" + "identifier": "rock-gnome", + "advancement": [ + { + "_id": "oHASjkY2yexn8nAv", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.races.EHhr9umJ5kxJFCQH", + "Compendium.dnd5e.races.OQA1sHxKnSJq01dL", + "Compendium.dnd5e.races.koRPOLtj8XAFMwnW" + ], + "optional": false, + "spell": { + "ability": "", + "preparation": "", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": {}, + "level": 0, + "title": "" + }, + { + "_id": "Z9hvZFkWUNvowbQX", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 0, + "fixed": { + "str": 0, + "dex": 0, + "con": 1, + "int": 2, + "wis": 0, + "cha": 0 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 0, + "title": "" + }, + { + "_id": "1qwH1s1GrEC8T8Qp", + "type": "Size", + "configuration": { + "hint": "Gnomes are between 3 and 4 feet tall and average about 40 pounds. Your size is Small.", + "sizes": [ + "sm" + ] + }, + "value": { + "size": "" + }, + "level": 1, + "title": "" + }, + { + "_id": "lQjgBd250F2JZeo2", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:standard:common", + "languages:standard:gnomish" + ], + "choices": [] + }, + "level": 1, + "title": "", + "value": {} + } + ], + "movement": { + "walk": 25, + "burrow": null, + "climb": null, + "fly": null, + "swim": null, + "units": "ft", + "hover": false }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" + "senses": { + "darkvision": 60, + "blindsight": null, + "tremorsense": null, + "truesight": null, + "units": "ft", + "special": "" }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "requirements": "Gnome", - "recharge": { - "value": null, - "charged": false + "type": { + "subtype": "gnome", + "value": "humanoid", + "custom": "" } }, - "flags": {}, - "img": "icons/magic/fire/projectile-meteor-salvo-light-purple.webp", "effects": [], - "folder": null, - "sort": 0, + "ownership": { + "default": 0 + }, + "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", - "createdTime": 1661787234469, - "modifiedTime": 1671220977544, + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1677181053374, + "modifiedTime": 1699987615902, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "sort": 0, + "folder": null, + "_key": "!items!TZtarkKs6cgGD7z2" } diff --git a/packs/src/races/savage-attacks.json b/packs/src/races/savage-attacks.json index bdb42e8e1b..900550e182 100644 --- a/packs/src/races/savage-attacks.json +++ b/packs/src/races/savage-attacks.json @@ -11,7 +11,13 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -22,11 +28,13 @@ "units": "" }, "cover": null, + "crewed": false, "target": { "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -37,7 +45,8 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", @@ -79,10 +88,11 @@ "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", + "systemVersion": "2.3.1", + "coreVersion": "10.303", "createdTime": 1661787234460, - "modifiedTime": 1672336335924, + "modifiedTime": 1699397219108, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!0kUsT4sMUOr5FcoX" } diff --git a/packs/src/races/stonecunning.json b/packs/src/races/stonecunning.json index 9273f05b28..839090e2e2 100644 --- a/packs/src/races/stonecunning.json +++ b/packs/src/races/stonecunning.json @@ -11,7 +11,13 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "", "cost": null, @@ -22,11 +28,13 @@ "units": "" }, "cover": null, + "crewed": false, "target": { "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -37,7 +45,8 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", @@ -79,10 +88,11 @@ "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", + "systemVersion": "2.3.1", + "coreVersion": "10.303", "createdTime": 1661787234472, - "modifiedTime": 1672336332532, + "modifiedTime": 1699397219272, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!mQPZDRbUhgYTbXKa" } diff --git a/packs/src/races/tiefling.json b/packs/src/races/tiefling.json index d2cdfe22cf..601b806687 100644 --- a/packs/src/races/tiefling.json +++ b/packs/src/races/tiefling.json @@ -1,84 +1,215 @@ { "_id": "aHTokZ151W0ASSmo", "name": "Tiefling", - "ownership": { - "default": 0 - }, - "type": "feat", + "type": "race", + "img": "icons/creatures/unholy/demon-female-succubus-orange.webp", "system": { "description": { - "value": "Tieflings share certain racial traits as a result of their infernal descent. \nAbility Score Increase. Your Intelligence score increases by 1, and your Charisma score increases by 2.\nAge. Tieflings mature at the same rate as humans but live a few years longer.\nAlignment. Tieflings might not have an innate tendency toward evil, but many of them end up there. Evil or not, an independent nature inclines many tieflings toward a chaotic alignment.\nSize. Tieflings are about the same size and build as humans. Your size is Medium.\nSpeed. Your base walking speed is 30 feet.\nDarkvision. Thanks to your infernal heritage, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.\nHellish Resistance. @Compendium[dnd5e.races.q71Pe1F8RRtEJt8Q]{Hellish Resistance} You have resistance to fire damage.\nInfernal Legacy. @Compendium[dnd5e.races.wJc88B8OP1y1xzMw]{Infernal Legacy} You know the @Compendium[dnd5e.spells.MUO1uYN7JR1hm4dR]{Thaumaturgy} cantrip. When you reach 3rd level, you can cast the @Compendium[dnd5e.spells.22dPoeXfaaAv4K3h]{Hellish Rebuke} spell as a 2nd‑level spell once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the @Compendium[dnd5e.spells.S7VbUetIfVT7B6Eq]{Darkness} spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.\nLanguages. You can speak, read, and write Common and Infernal.", + "value": "Tieflings share certain racial traits as a result of their infernal descent.Ability Score Increase. Your Intelligence score increases by 1, and your Charisma score increases by 2.Age. Tieflings mature at the same rate as humans but live a few years longer.Alignment. Tieflings might not have an innate tendency toward evil, but many of them end up there. Evil or not, an independent nature inclines many tieflings toward a chaotic alignment.Size. Tieflings are about the same size and build as humans. Your size is Medium.Speed. Your base walking speed is 30 feet.Darkvision. Thanks to your infernal heritage, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.Hellish Resistance. You have resistance to fire damage.Infernal Legacy. You know the thaumaturgy cantrip. When you reach 3rd level, you can cast the hellish rebuke spell as a 2nd-level spell once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the darkness spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.Languages. You can speak, read, and write Common and Infernal.", "chat": "", "unidentified": "" }, - "source": "SRD 5.1", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" }, - "range": { - "value": null, - "long": null, - "units": "" + "identifier": "tiefling", + "advancement": [ + { + "_id": "1TyE6rcEq01VWRZc", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.races.q71Pe1F8RRtEJt8Q", + "Compendium.dnd5e.races.wJc88B8OP1y1xzMw" + ], + "optional": false, + "spell": { + "ability": "cha", + "preparation": "innate", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": {}, + "level": 0, + "title": "" + }, + { + "_id": "d8rqpB59h8lfbnva", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.spells.22dPoeXfaaAv4K3h" + ], + "optional": false, + "spell": { + "ability": "cha", + "preparation": "innate", + "uses": { + "max": "1", + "per": "lr" + } + } + }, + "value": {}, + "level": 3, + "title": "Infernal Legacy" + }, + { + "_id": "p2AP4Rn6S8A8Xu5L", + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.spells.S7VbUetIfVT7B6Eq" + ], + "optional": false, + "spell": { + "ability": "cha", + "preparation": "innate", + "uses": { + "max": "1", + "per": "lr" + } + } + }, + "value": {}, + "level": 5, + "title": "Infernal Legacy" + }, + { + "_id": "Z9hvZFkWUNvowbQX", + "type": "AbilityScoreImprovement", + "configuration": { + "points": 0, + "fixed": { + "str": 0, + "dex": 0, + "con": 0, + "int": 1, + "wis": 0, + "cha": 2 + }, + "cap": 2 + }, + "value": { + "type": "asi" + }, + "level": 0, + "title": "" + }, + { + "_id": "RdFKqK8MykC5CYIB", + "type": "Size", + "configuration": { + "hint": "Tieflings are about the same size and build as humans. Your size is Medium.", + "sizes": [ + "med" + ] + }, + "value": { + "size": "" + }, + "level": 1, + "title": "" + }, + { + "_id": "rE6m74Xp32VuJC5y", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "dr:fire" + ], + "choices": [] + }, + "level": 0, + "title": "Hellish Resistance", + "value": {} + }, + { + "type": "ItemGrant", + "configuration": { + "items": [ + "Compendium.dnd5e.spells.MUO1uYN7JR1hm4dR" + ], + "optional": false, + "spell": { + "ability": "cha", + "preparation": "innate", + "uses": { + "max": "", + "per": "" + } + } + }, + "value": {}, + "level": 0, + "title": "Infernal Legacy", + "_id": "VUUQMvAtL25wj3vD" + }, + { + "_id": "jGeaKhTjGApgqmWw", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "languages:standard:common", + "languages:exotic:infernal" + ], + "choices": [] + }, + "level": 0, + "title": "", + "value": {} + } + ], + "senses": { + "darkvision": 60, + "blindsight": null, + "tremorsense": null, + "truesight": null, + "units": "ft", + "special": "" }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" + "movement": { + "burrow": null, + "climb": null, + "fly": null, + "swim": null, + "walk": 30, + "units": "ft", + "hover": false }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": "", - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "spell" - }, - "requirements": "", - "recharge": { - "value": null, - "charged": false + "type": { + "value": "humanoid", + "subtype": "tiefling", + "custom": "" } }, - "flags": {}, - "img": "icons/magic/air/wind-tornado-cyclone-red-orange.webp", "effects": [], - "folder": null, - "sort": 0, + "ownership": { + "default": 0 + }, + "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", - "createdTime": 1661787234471, - "modifiedTime": 1671220977578, + "systemVersion": "2.4.0", + "coreVersion": "10.303", + "createdTime": 1677181073037, + "modifiedTime": 1699987908467, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "sort": 0, + "folder": null, + "_key": "!items!aHTokZ151W0ASSmo" } diff --git a/packs/src/races/tinker.json b/packs/src/races/tinker.json index bd0462bef1..fbcc0e4684 100644 --- a/packs/src/races/tinker.json +++ b/packs/src/races/tinker.json @@ -11,7 +11,13 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "hour", "cost": 1, @@ -22,11 +28,13 @@ "units": "" }, "cover": null, + "crewed": false, "target": { "value": null, "width": null, "units": "", - "type": "" + "type": "", + "prompt": true }, "range": { "value": null, @@ -37,7 +45,8 @@ "value": null, "max": "", "per": null, - "recovery": "" + "recovery": "", + "prompt": true }, "consume": { "type": "", @@ -101,17 +110,19 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!koRPOLtj8XAFMwnW.CkQlNsLyTZGVbnKM" } ], "folder": null, "sort": 0, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", + "systemVersion": "2.3.1", + "coreVersion": "10.303", "createdTime": 1661787234472, - "modifiedTime": 1672336327620, + "modifiedTime": 1699397219263, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!koRPOLtj8XAFMwnW" } diff --git a/packs/src/races/trance.json b/packs/src/races/trance.json new file mode 100644 index 0000000000..8853ac8c4f --- /dev/null +++ b/packs/src/races/trance.json @@ -0,0 +1,98 @@ +{ + "_id": "4v2PiBrAbqDizdSJ", + "name": "Trance", + "type": "feat", + "img": "icons/magic/perception/third-eye-blue-red.webp", + "system": { + "description": { + "value": "Elves don't need to sleep. Instead, they meditate deeply, remaining semiconscious, for 4 hours a day. (The Common word for such meditation is \"trance.\") While meditating, you can dream after a fashion; such dreams are actually mental exercises that have become reflexive through years of practice. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", + "chat": "", + "unidentified": "" + }, + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "uuid": "", + "license": "CC-BY-4.0" + }, + "activation": { + "type": "", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "crewed": false, + "target": { + "value": null, + "width": null, + "units": "", + "type": "", + "prompt": true + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "", + "prompt": true + }, + "consume": { + "type": "", + "target": null, + "amount": null + }, + "ability": null, + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "spell" + }, + "type": { + "value": "race", + "subtype": "" + }, + "requirements": "Elf", + "recharge": { + "value": null, + "charged": false + } + }, + "effects": [], + "ownership": { + "default": 0 + }, + "flags": {}, + "_stats": { + "systemId": "dnd5e", + "systemVersion": "2.3.1", + "coreVersion": "10.303", + "createdTime": 1677179906781, + "modifiedTime": 1699397219112, + "lastModifiedBy": "dnd5ebuilder0000" + }, + "sort": 0, + "folder": null, + "_key": "!items!4v2PiBrAbqDizdSJ" +} diff --git a/packs/src/rules/appendix-a-conditions.json b/packs/src/rules/appendix-a-conditions.json index af24a932a4..f2881a51dd 100644 --- a/packs/src/rules/appendix-a-conditions.json +++ b/packs/src/rules/appendix-a-conditions.json @@ -25,7 +25,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!w7eitkpD7QQTB6j0.ZOCWbO9IYvBf9WyR" }, { "name": "Blinded", @@ -54,7 +55,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.995mfaI3z7WtY7vK.JournalEntryPage.CHayUiFO5s16gZ3M" } - } + }, + "_key": "!journal.pages!w7eitkpD7QQTB6j0.0b8N4FymGGfbZGpJ" }, { "name": "Charmed", @@ -83,7 +85,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.H8aTFVG3YFAkQ3TK.JournalEntryPage.a99gBGrhI6qtQ3Gl" } - } + }, + "_key": "!journal.pages!w7eitkpD7QQTB6j0.zZaEBrKkr66OWJvD" }, { "name": "Deafened", @@ -112,7 +115,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.XnDPIa0MLWhGvuQg.JournalEntryPage.T9mjFnbli9lhQYJu" } - } + }, + "_key": "!journal.pages!w7eitkpD7QQTB6j0.6G8JSjhn701cBITY" }, { "name": "Frightened", @@ -141,7 +145,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.pAcHCDJBhybiVzMF.JournalEntryPage.2lXFbXWiuVzxDF2J" } - } + }, + "_key": "!journal.pages!w7eitkpD7QQTB6j0.oreoyaFKnvZCrgij" }, { "name": "Grappled", @@ -171,7 +176,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.b4UvTt9P3As79cwm.JournalEntryPage.4PXhaLHw3uTCHxOo" } - } + }, + "_key": "!journal.pages!w7eitkpD7QQTB6j0.gYDAhd02ryUmtwZn" }, { "name": "Incapacitated", @@ -200,7 +206,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.tUYvSkhggFcMpVw5.JournalEntryPage.MZjXT1r79TZCv3y9" } - } + }, + "_key": "!journal.pages!w7eitkpD7QQTB6j0.TpkZgLfxCmSndmpb" }, { "name": "Invisible", @@ -229,7 +236,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.hMWCeXenROGuhF1K.JournalEntryPage.1amK47UFUSOZExnr" } - } + }, + "_key": "!journal.pages!w7eitkpD7QQTB6j0.3UU5GCTVeRDbZy9u" }, { "name": "Paralyzed", @@ -259,7 +267,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.BJaVW22yVYe7dtzq.JournalEntryPage.Tk458O7Zc47gWDca" } - } + }, + "_key": "!journal.pages!w7eitkpD7QQTB6j0.xnSV5hLJIMaTABXP" }, { "name": "Petrified", @@ -289,7 +298,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.1XcKtGnKprqX6fa2.JournalEntryPage.YWDpiEuNkcrkDDM1" } - } + }, + "_key": "!journal.pages!w7eitkpD7QQTB6j0.xaNDaW6NwQTgHSmi" }, { "name": "Poisoned", @@ -318,7 +328,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.prcOUhkWEVppFVbg.JournalEntryPage.g0zVWz4JOpxfhrVc" } - } + }, + "_key": "!journal.pages!w7eitkpD7QQTB6j0.lq3TRI6ZlED8ABMx" }, { "name": "Prone", @@ -347,7 +358,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.ZkXz0qdkNBkKE6tN.JournalEntryPage.7x7N53VT8f09nXdV" } - } + }, + "_key": "!journal.pages!w7eitkpD7QQTB6j0.y0TkcdyoZlOTmAFT" }, { "name": "Restrained", @@ -376,7 +388,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.QRKWz3p6v9Rl1Tzh.JournalEntryPage.5kJsC8NZGki9ZoCR" } - } + }, + "_key": "!journal.pages!w7eitkpD7QQTB6j0.cSVcyZyNe2iG1fIc" }, { "name": "Stunned", @@ -406,7 +419,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.TiD5vnNql12Wh3Pn.JournalEntryPage.33tKgfiX0Mvhamwe" } - } + }, + "_key": "!journal.pages!w7eitkpD7QQTB6j0.ZyZMUwA2rboh4ObS" }, { "name": "Unconscious", @@ -436,7 +450,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.MOk1rkF0DeJlcC4l.JournalEntryPage.A4mgqWMWMjUyeV3M" } - } + }, + "_key": "!journal.pages!w7eitkpD7QQTB6j0.UWw13ISmMxDzmwbd" }, { "name": "Exhaustion", @@ -465,7 +480,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.apBZudO4UA1wj7aC.JournalEntryPage.wmAgBCK09w1k2BXo" } - } + }, + "_key": "!journal.pages!w7eitkpD7QQTB6j0.cspWveykstnu3Zcv" } ], "ownership": { @@ -490,5 +506,6 @@ }, "folder": null, "sort": 0, - "_id": "w7eitkpD7QQTB6j0" + "_id": "w7eitkpD7QQTB6j0", + "_key": "!journal!w7eitkpD7QQTB6j0" } diff --git a/packs/src/rules/appendix-b-gods-and-the-multiverse.json b/packs/src/rules/appendix-b-gods-and-the-multiverse.json index e59f37b0c8..530d8ece8d 100644 --- a/packs/src/rules/appendix-b-gods-and-the-multiverse.json +++ b/packs/src/rules/appendix-b-gods-and-the-multiverse.json @@ -28,7 +28,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.2JNtWRo7wMq08bXn.JournalEntryPage.kcYYD0rkmPVfZDOY" } - } + }, + "_key": "!journal.pages!udVPA9JW5wy5t3G5.2lysbY50fgv1R3v7" }, { "name": "The Planes of Existence", @@ -58,7 +59,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.YnBURsGSxWYiMVxw.JournalEntryPage.mIM5MYxN5kjrtks9" } - } + }, + "_key": "!journal.pages!udVPA9JW5wy5t3G5.RZ8IAnSAPtfL2jvL" } ], "ownership": { @@ -83,5 +85,6 @@ }, "folder": null, "sort": 0, - "_id": "udVPA9JW5wy5t3G5" + "_id": "udVPA9JW5wy5t3G5", + "_key": "!journal!udVPA9JW5wy5t3G5" } diff --git a/packs/src/rules/appendix-c-creatures.json b/packs/src/rules/appendix-c-creatures.json index 400c903fe8..d258bda380 100644 --- a/packs/src/rules/appendix-c-creatures.json +++ b/packs/src/rules/appendix-c-creatures.json @@ -28,7 +28,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.rjStJTCJtoSqua8Z.JournalEntryPage.p32E4S09u5aPFCdN" } - } + }, + "_key": "!journal.pages!H4rlIErtw6z98jYJ.JoLjmTDfWLAqNK7F" }, { "name": "Nonplayer Characters", @@ -57,7 +58,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.wHI1i7HR2l0T3qVV.JournalEntryPage.LkpX09l39zKoFvs7" } - } + }, + "_key": "!journal.pages!H4rlIErtw6z98jYJ.pxfO7ZR2AJhqaktD" } ], "ownership": { @@ -79,5 +81,6 @@ }, "folder": null, "sort": 0, - "_id": "H4rlIErtw6z98jYJ" + "_id": "H4rlIErtw6z98jYJ", + "_key": "!journal!H4rlIErtw6z98jYJ" } diff --git a/packs/src/rules/appendix-d-senses-and-speeds.json b/packs/src/rules/appendix-d-senses-and-speeds.json index 11c50491c7..6ec76f8c13 100644 --- a/packs/src/rules/appendix-d-senses-and-speeds.json +++ b/packs/src/rules/appendix-d-senses-and-speeds.json @@ -28,7 +28,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.oag7MR9Omacmhzb7.JournalEntryPage.9IYGlnEcbvDsesqE" } - } + }, + "_key": "!journal.pages!eVtpEGXjA2tamEIJ.I6ABWHBYwGl55dLY" }, { "name": "Darkvision", @@ -57,7 +58,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.10RNSKCH2hTja3DG.JournalEntryPage.njFKuQXewyxEKhhy" } - } + }, + "_key": "!journal.pages!eVtpEGXjA2tamEIJ.0RBamBThjzeAdMSt" }, { "name": "Tremorsense", @@ -86,7 +88,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.MzNASNCgB0Qi2m8p.JournalEntryPage.h2Abug4QLGjQyLUC" } - } + }, + "_key": "!journal.pages!eVtpEGXjA2tamEIJ.8AIlZ95v54mL531X" }, { "name": "Truesight", @@ -115,7 +118,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.eeQ4uW3yMwnbIYVs.JournalEntryPage.trtVIxHQGLdoQlNU" } - } + }, + "_key": "!journal.pages!eVtpEGXjA2tamEIJ.8iC24otVX4n1yrYw" }, { "name": "Burrow", @@ -144,7 +148,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.treKHmCjr4aQiVyd.JournalEntryPage.xTlI7NaMAsWfKU85" } - } + }, + "_key": "!journal.pages!eVtpEGXjA2tamEIJ.I13SYX1zaCLYmaYF" }, { "name": "Climb", @@ -173,7 +178,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.cvRB5qT2M8wVUGRb.JournalEntryPage.txo9niGHXsuleMgb" } - } + }, + "_key": "!journal.pages!eVtpEGXjA2tamEIJ.eW0LypO5xZZdq4I9" }, { "name": "Fly", @@ -202,7 +208,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.KJHSCRHWW0UuhtoE.JournalEntryPage.lJtdbApn5zHZvyoq" } - } + }, + "_key": "!journal.pages!eVtpEGXjA2tamEIJ.X2CTP455Zpr7Shs9" }, { "name": "Swim", @@ -231,7 +238,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.J9ppEykIQxUIarUj.JournalEntryPage.xRaG4s8Y4Jaz904c" } - } + }, + "_key": "!journal.pages!eVtpEGXjA2tamEIJ.EQWAcrLYsd96MzJH" } ], "ownership": { @@ -256,5 +264,6 @@ }, "folder": null, "sort": 0, - "_id": "eVtpEGXjA2tamEIJ" + "_id": "eVtpEGXjA2tamEIJ", + "_key": "!journal!eVtpEGXjA2tamEIJ" } diff --git a/packs/src/rules/chapter-1-beyond-1st-level.json b/packs/src/rules/chapter-1-beyond-1st-level.json index f4dbe0c977..d3e63c2bb6 100644 --- a/packs/src/rules/chapter-1-beyond-1st-level.json +++ b/packs/src/rules/chapter-1-beyond-1st-level.json @@ -24,7 +24,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!5LoAJLkfIYBAgWTW.RiEi4ID9qFpZKrS7" } ], "ownership": { @@ -46,5 +47,6 @@ }, "folder": null, "sort": 0, - "_id": "5LoAJLkfIYBAgWTW" + "_id": "5LoAJLkfIYBAgWTW", + "_key": "!journal!5LoAJLkfIYBAgWTW" } diff --git a/packs/src/rules/chapter-10-spellcasting.json b/packs/src/rules/chapter-10-spellcasting.json index 3572f13c0b..b6d12b41c2 100644 --- a/packs/src/rules/chapter-10-spellcasting.json +++ b/packs/src/rules/chapter-10-spellcasting.json @@ -24,7 +24,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!QvPDSUsAiEn3hD8s.FX9TS9vmt4dyOoqJ" }, { "name": "What Is a Spell?", @@ -54,7 +55,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.ixN1vVJkzhiaebQK.JournalEntryPage.HEMX6LV0JOBk22IM" } - } + }, + "_key": "!journal.pages!QvPDSUsAiEn3hD8s.evx9TWix4wYU51a5" }, { "name": "Casting a Spell", @@ -84,7 +86,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.JH4AH5qkr4FNCXnQ.JournalEntryPage.4ZbbvtpSTsi89DRz" } - } + }, + "_key": "!journal.pages!QvPDSUsAiEn3hD8s.wre9ECSVuEyJBYhr" }, { "name": "Bard Spells", @@ -113,7 +116,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.IryZdZqi3R8JdTi1.JournalEntryPage.3s1zGPfT91CpLKgC" } - } + }, + "_key": "!journal.pages!QvPDSUsAiEn3hD8s.ziBzRlrpBm1KVV0j" }, { "name": "Cleric Spells", @@ -142,7 +146,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.pp8EcJKHl05DxFPO.JournalEntryPage.42FZuER5aDbNoYmO" } - } + }, + "_key": "!journal.pages!QvPDSUsAiEn3hD8s.cuG9d7J9fQH9InYT" }, { "name": "Druid Spells", @@ -171,7 +176,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.qsjZVCAWStczYC6g.JournalEntryPage.sq9LED0wxdFEfrmP" } - } + }, + "_key": "!journal.pages!QvPDSUsAiEn3hD8s.MWiN7ILEO0Vd3zAZ" }, { "name": "Paladin Spells", @@ -200,7 +206,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.9Gh9e6C8f1b8hMDo.JournalEntryPage.HUaeytxY79zc7aDx" } - } + }, + "_key": "!journal.pages!QvPDSUsAiEn3hD8s.FhucONA0yRZQjMmb" }, { "name": "Ranger Spells", @@ -229,7 +236,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.MPeAbrndRwp12KBS.JournalEntryPage.mHDXoSVyYGdlhyo4" } - } + }, + "_key": "!journal.pages!QvPDSUsAiEn3hD8s.sANq9JMycfSq3A5d" }, { "name": "Sorcerer Spells", @@ -258,7 +266,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.HYaZMaOl1m71xCuZ.JournalEntryPage.mlcjhn6WEG6v0iZo" } - } + }, + "_key": "!journal.pages!QvPDSUsAiEn3hD8s.PVgly1xB2S2I8GLQ" }, { "name": "Warlock Spells", @@ -287,7 +296,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.FP5bLScw7BLxhpBc.JournalEntryPage.3770jitjFLEA9CRC" } - } + }, + "_key": "!journal.pages!QvPDSUsAiEn3hD8s.mx4TsSbBIAaAkhQ7" }, { "name": "Wizard Spells", @@ -316,7 +326,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.EbRDzqsXhoaJ1wOe.JournalEntryPage.cnf2DeqbekRnEBEy" } - } + }, + "_key": "!journal.pages!QvPDSUsAiEn3hD8s.k7Rs5EyXeA0SFTXD" } ], "ownership": { @@ -341,5 +352,6 @@ }, "folder": null, "sort": 0, - "_id": "QvPDSUsAiEn3hD8s" + "_id": "QvPDSUsAiEn3hD8s", + "_key": "!journal!QvPDSUsAiEn3hD8s" } diff --git a/packs/src/rules/chapter-11-dm-tools.json b/packs/src/rules/chapter-11-dm-tools.json index 54e0b287dc..c9960aaafa 100644 --- a/packs/src/rules/chapter-11-dm-tools.json +++ b/packs/src/rules/chapter-11-dm-tools.json @@ -28,7 +28,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.I70MQGSOHJicYgLC.JournalEntryPage.Nh9QM9MAWkQG4Ncb" } - } + }, + "_key": "!journal.pages!t6scHTmpmHBTZGTX.HB2L0RLLfmmzzPsJ" }, { "name": "Diseases", @@ -57,7 +58,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.Zqh1063GdJVTvoGd.JournalEntryPage.VmuvUIHDYJZVAoQq" } - } + }, + "_key": "!journal.pages!t6scHTmpmHBTZGTX.YJkaWnytz5zanzXE" }, { "name": "Madness", @@ -86,7 +88,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.5k4FvK4usg7JXoZo.JournalEntryPage.RsLeAwZa00BHoMiU" } - } + }, + "_key": "!journal.pages!t6scHTmpmHBTZGTX.eWXjNMjX1tZIFEuq" }, { "name": "Objects", @@ -115,7 +118,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.TJvGym7bf4quBEXg.JournalEntryPage.cg8teJj3TwFRVesd" } - } + }, + "_key": "!journal.pages!t6scHTmpmHBTZGTX.3RM2KPMlMrSXngN3" }, { "name": "Poisons", @@ -144,7 +148,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.6HGktrdtUUPc4Ujj.JournalEntryPage.lOc3XPfAnRFvd9d0" } - } + }, + "_key": "!journal.pages!t6scHTmpmHBTZGTX.B8rYvLQ4jMY9GeJA" }, { "name": "Magic Items", @@ -174,7 +179,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.szHg2dwyoTwXEVnx.JournalEntryPage.X6FkBBFrQXmo3XOu" } - } + }, + "_key": "!journal.pages!t6scHTmpmHBTZGTX.YHsuCV4IZZZoyDap" }, { "name": "Monsters", @@ -204,7 +210,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.ZGpcG1YEtKIXPMvI.JournalEntryPage.4zSdzotePGaTgLni" } - } + }, + "_key": "!journal.pages!t6scHTmpmHBTZGTX.JKn9lp15q1zX2ZwX" } ], "ownership": { @@ -229,5 +236,6 @@ }, "folder": null, "sort": 0, - "_id": "t6scHTmpmHBTZGTX" + "_id": "t6scHTmpmHBTZGTX", + "_key": "!journal!t6scHTmpmHBTZGTX" } diff --git a/packs/src/rules/chapter-2-races.json b/packs/src/rules/chapter-2-races.json index 07717f4321..8b779ccdcb 100644 --- a/packs/src/rules/chapter-2-races.json +++ b/packs/src/rules/chapter-2-races.json @@ -25,7 +25,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!m2K2xsTy8w0WFuoJ.qiH6zRDM96meMz8Y" } ], "ownership": { @@ -47,5 +48,6 @@ }, "folder": null, "sort": 0, - "_id": "m2K2xsTy8w0WFuoJ" + "_id": "m2K2xsTy8w0WFuoJ", + "_key": "!journal!m2K2xsTy8w0WFuoJ" } diff --git a/packs/src/rules/chapter-3-classes.json b/packs/src/rules/chapter-3-classes.json index 7a14950f1a..5a765260aa 100644 --- a/packs/src/rules/chapter-3-classes.json +++ b/packs/src/rules/chapter-3-classes.json @@ -24,7 +24,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!gqecphEUnz4ktrQ9.8jxEuy0PV2HNySQC" }, { "name": "Barbarian", @@ -48,7 +49,7 @@ "description": { "value": "", "additionalHitPoints": "", - "additionalTraits": "Armor: Light armor, medium armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, ConstitutionSkills: Choose two from Animal Handling, Athletics, Intimidation, Nature, Perception, and Survival", + "additionalTraits": "", "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a greataxe or (b) any martial melee weapon\n(a) two handaxes or (b) any simple weapon\nAn explorer’s pack and four javelins\n", "subclass": "" }, @@ -61,7 +62,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!gqecphEUnz4ktrQ9.lQ6qPkCfIyjIADY5" }, { "name": "Bard", @@ -85,7 +87,7 @@ "description": { "value": "", "additionalHitPoints": "", - "additionalTraits": "Armor: Light armorWeapons: Simple weapons, hand crossbows, longswords, rapiers, shortswordsTools: Three musical instruments of your choiceSaving Throws: Dexterity, CharismaSkills: Choose any three", + "additionalTraits": "", "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a rapier, (b) a longsword, or (c) any simple weapon\n(a) a diplomat’s pack or (b) an entertainer’s pack\n(a) a lute or (b) any other musical instrument\nLeather armor and a dagger\n", "subclass": "" }, @@ -98,7 +100,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!gqecphEUnz4ktrQ9.WYZMEei2b0HZgWdu" }, { "name": "Cleric", @@ -122,7 +125,7 @@ "description": { "value": "", "additionalHitPoints": "", - "additionalTraits": "Armor: Light armor, medium armor, shieldsWeapons: Simple weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two from History, Insight, Medicine, Persuasion, and Religion", + "additionalTraits": "", "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a mace or (b) a warhammer (if proficient)\n(a) scale mail, (b) leather armor, or (c) chain mail (if proficient)\n(a) a light crossbow and 20 bolts or (b) any simple weapon\n(a) a priest’s pack or (b) an explorer’s pack • A shield and a holy symbol\n", "subclass": "" }, @@ -135,7 +138,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!gqecphEUnz4ktrQ9.7xAozaqWq3Z6YTsf" }, { "name": "Druid", @@ -159,7 +163,7 @@ "description": { "value": "", "additionalHitPoints": "", - "additionalTraits": "Armor: Light armor, medium armor, shields (druids will not wear armor or use shields made of metal)Weapons: Clubs, daggers, darts, javelins, maces, quarterstaffs, scimitars, sickles, slings, spearsTools: Herbalism kitSaving Throws: Intelligence, WisdomSkills: Choose two from Arcana, Animal Handling, Insight, Medicine, Nature, Perception, Religion, and Survival", + "additionalTraits": "", "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a wooden shield or (b) any simple weapon\n(a) a scimitar or (b) any simple melee weapon\nLeather armor, an explorer’s pack, and a druidic focus\n", "subclass": "" }, @@ -172,7 +176,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!gqecphEUnz4ktrQ9.0LfgSuMJmv7bf1JU" }, { "name": "Fighter", @@ -196,7 +201,7 @@ "description": { "value": "", "additionalHitPoints": "", - "additionalTraits": "Armor: All armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, ConstitutionSkills: Choose two skills from Acrobatics, Animal Handling, Athletics, History, Insight, Intimidation, Perception, and Survival", + "additionalTraits": "", "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) chain mail or (b) leather armor, longbow, and 20 arrows\n(a) a martial weapon and a shield or (b) two martial weapons\n(a) a light crossbow and 20 bolts or (b) two handaxes\n(a) a dungeoneer’s pack or (b) an explorer’s pack\n", "subclass": "" }, @@ -209,7 +214,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!gqecphEUnz4ktrQ9.ygdteO7FoWsKqfOD" }, { "name": "Monk", @@ -233,7 +239,7 @@ "description": { "value": "", "additionalHitPoints": "", - "additionalTraits": "Armor: NoneWeapons: Simple weapons, shortswordsTools: Choose one type of artisan’s tools or one musical instrumentSaving Throws: Strength, DexteritySkills: Choose two from Acrobatics, Athletics, History, Insight, Religion, and Stealth", + "additionalTraits": "", "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a shortsword or (b) any simple weapon\n(a) a dungeoneer’s pack or (b) an explorer’s pack • 10 darts\n", "subclass": "Three traditions of monastic pursuit are common in the monasteries scattered across the multiverse. Most monasteries practice one tradition exclusively, but a few honor the three traditions and instruct each monk according to his or her aptitude and interest. All three traditions rely on the same basic techniques, diverging as the student grows more adept. Thus, a monk need choose a tradition only upon reaching 3rd level." }, @@ -246,7 +252,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!gqecphEUnz4ktrQ9.9lcffy0dOmFDaoKr" }, { "name": "Paladin", @@ -270,7 +277,7 @@ "description": { "value": "", "additionalHitPoints": "", - "additionalTraits": "Armor: All armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two from Athletics, Insight, Intimidation, Medicine, Persuasion, and Religion", + "additionalTraits": "", "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a martial weapon and a shield or (b) two martial weapons\n(a) five javelins or (b) any simple melee weapon\n(a) a priest’s pack or (b) an explorer’s pack\nChain mail and a holy symbol\n", "subclass": "Becoming a paladin involves taking vows that commit the paladin to the cause of righteousness, an active path of fighting wickedness. The final oath, taken when he or she reaches 3rd level, is the culmination of all the paladin’s training. Some characters with this class don’t consider themselves true paladins until they have reached 3rd level and made this oath. For others, the actual swearing of the oath is a formality, an official stamp on what has always been true in the paladin’s heart." }, @@ -283,7 +290,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!gqecphEUnz4ktrQ9.doLlxoEonAEiIJM7" }, { "name": "Ranger", @@ -307,7 +315,7 @@ "description": { "value": "", "additionalHitPoints": "", - "additionalTraits": "Armor: Light armor, medium armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, DexteritySkills: Choose three from Animal Handling, Athletics, Insight, Investigation, Nature, Perception, Stealth, and Survival", + "additionalTraits": "", "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) scale mail or (b) leather armor\n(a) two shortswords or (b) two simple melee weapons\n(a) a dungeoneer’s pack or (b) an explorer’s pack\nA longbow and a quiver of 20 arrows\n", "subclass": "A classic expression of the ranger ideal is the Hunter." }, @@ -320,7 +328,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!gqecphEUnz4ktrQ9.nLK08pRtyaLLuB4w" }, { "name": "Rogue", @@ -344,7 +353,7 @@ "description": { "value": "", "additionalHitPoints": "", - "additionalTraits": "Armor: Light armorWeapons: Simple weapons, hand crossbows, longswords, rapiers, shortswordsTools: Thieves’ toolsSaving Throws: Dexterity, IntelligenceSkills: Choose four from Acrobatics, Athletics, Deception, Insight, Intimidation, Investigation, Perception, Performance, Persuasion, Sleight of Hand, and Stealth", + "additionalTraits": "", "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a rapier or (b) a shortsword\n(a) a shortbow and quiver of 20 arrows or (b) a shortsword\n(a) a burglar’s pack, (b) a dungeoneer’s pack, or (c) an explorer’s pack\n(a) Leather armor, two daggers, and thieves’ tools\n", "subclass": "Rogues have many features in common, including their emphasis on perfecting their skills, their precise and deadly approach to combat, and their increasingly quick reflexes. But different rogues steer those talents in varying directions, embodied by the rogue archetypes. Your choice of archetype is a reflection of your focus—not necessarily an indication of your chosen profession, but a description of your preferred techniques." }, @@ -357,7 +366,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!gqecphEUnz4ktrQ9.sgs4mhWwQev8JY03" }, { "name": "Sorcerer", @@ -381,7 +391,7 @@ "description": { "value": "", "additionalHitPoints": "", - "additionalTraits": "Armor: NoneWeapons: Daggers, darts, slings, quarterstaffs, light crossbowsTools: NoneSaving Throws: Constitution, CharismaSkills: Choose two from Arcana, Deception, Insight, Intimidation, Persuasion, and Religion", + "additionalTraits": "", "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a light crossbow and 20 bolts or (b) any simple weapon\n(a) a component pouch or (b) an arcane focus\n(a) a dungeoneer’s pack or (b) an explorer’s pack\nTwo daggers\n", "subclass": "Different sorcerers claim different origins for their innate magic, such as a draconic bloodline." }, @@ -394,7 +404,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!gqecphEUnz4ktrQ9.mh73MffZNiVCVxJV" }, { "name": "Warlock", @@ -418,7 +429,7 @@ "description": { "value": "", "additionalHitPoints": "", - "additionalTraits": "Armor: Light armorWeapons: Simple weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two skills from Arcana, Deception, History, Intimidation, Investigation, Nature, and Religion", + "additionalTraits": "", "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a light crossbow and 20 bolts or (b) any simple weapon\n(a) a component pouch or (b) an arcane focus\n(a) a scholar’s pack or (b) a dungeoneer’s pack\nLeather armor, any simple weapon, and two daggers\n", "subclass": "The beings that serve as patrons for warlocks are mighty inhabitants of other planes of existence—not gods, but almost godlike in their power. Various patrons give their warlocks access to different powers and invocations, and expect significant favors in return.\nSome patrons collect warlocks, doling out mystic knowledge relatively freely or boasting of their ability to bind mortals to their will. Other patrons bestow their power only grudgingly, and might make a pact with only one warlock. Warlocks who serve the same patron might view each other as allies, siblings, or rivals." }, @@ -431,7 +442,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!gqecphEUnz4ktrQ9.nBRkCAhWQOChx5qN" }, { "name": "Wizard", @@ -455,7 +467,7 @@ "description": { "value": "", "additionalHitPoints": "", - "additionalTraits": "Armor: NoneWeapons: Daggers, darts, slings, quarterstaffs, light crossbowsTools: NoneSaving Throws: Intelligence, WisdomSkills: Choose two from Arcana, History, Insight, Investigation, Medicine, and Religion", + "additionalTraits": "", "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:\n\n(a) a quarterstaff or (b) a dagger\n(a) a component pouch or (b) an arcane focus\n(a) a scholar’s pack or (b) an explorer’s pack\nA spellbook\n", "subclass": "The study of wizardry is ancient, stretching back to the earliest mortal discoveries of magic. It is firmly established in fantasy gaming worlds, with various traditions dedicated to its complex study.\nThe most common arcane traditions in the multiverse revolve around the schools of magic. Wizards through the ages have cataloged thousands of spells, grouping them into eight categories called schools. In some places, these traditions are literally schools. In other institutions, the schools are more like academic departments, with rival faculties competing for students and funding. Even wizards who train apprentices in the solitude of their own towers use the division of magic into schools as a learning device, since the spells of each school require mastery of different techniques." }, @@ -468,7 +480,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!gqecphEUnz4ktrQ9.cmkACLWa9Hq1S6Go" } ], "ownership": { @@ -482,13 +495,14 @@ }, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.0.2", - "coreVersion": "10.285", + "systemVersion": "2.3.1", + "coreVersion": "10.303", "createdTime": 1660925148884, - "modifiedTime": 1663018863337, + "modifiedTime": 1698872328096, "lastModifiedBy": "dnd5ebuilder0000" }, "folder": null, "sort": 0, - "_id": "gqecphEUnz4ktrQ9" + "_id": "gqecphEUnz4ktrQ9", + "_key": "!journal!gqecphEUnz4ktrQ9" } diff --git a/packs/src/rules/chapter-4-personality-and-background.json b/packs/src/rules/chapter-4-personality-and-background.json index 5177ef6f5e..98e1ead2b8 100644 --- a/packs/src/rules/chapter-4-personality-and-background.json +++ b/packs/src/rules/chapter-4-personality-and-background.json @@ -28,7 +28,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.Y7UCgFzAGdCPR82z.JournalEntryPage.JKMpnUNV8tsl1dZR" } - } + }, + "_key": "!journal.pages!kWXplnmp5JXCo84x.p1Jaf0GiuDnembBO" }, { "name": "Languages", @@ -57,7 +58,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.YokpQUkuJwUB0wpy.JournalEntryPage.iBa46iYinz4U6SF7" } - } + }, + "_key": "!journal.pages!kWXplnmp5JXCo84x.jcpZgjk77lUW7OkM" }, { "name": "Inspiration", @@ -86,7 +88,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.nH479uePVw8HGkLD.JournalEntryPage.I9LT01lX0cd97gWz" } - } + }, + "_key": "!journal.pages!kWXplnmp5JXCo84x.k7RmdfUGl7aQKU5I" }, { "name": "Backgrounds", @@ -116,7 +119,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.uTHSGujAj4E8zwFx.JournalEntryPage.KBMUir6XnXUI8Jot" } - } + }, + "_key": "!journal.pages!kWXplnmp5JXCo84x.yVqTYrqULTs2JCV8" } ], "ownership": { @@ -141,5 +145,6 @@ }, "folder": null, "sort": 0, - "_id": "kWXplnmp5JXCo84x" + "_id": "kWXplnmp5JXCo84x", + "_key": "!journal!kWXplnmp5JXCo84x" } diff --git a/packs/src/rules/chapter-5-equipment.json b/packs/src/rules/chapter-5-equipment.json index 16dc4ee7eb..31e8f79f99 100644 --- a/packs/src/rules/chapter-5-equipment.json +++ b/packs/src/rules/chapter-5-equipment.json @@ -24,7 +24,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!BYFd9hiJGo9L5aOM.R9nWciuL1bon7BuY" }, { "name": "Selling Treasure", @@ -53,7 +54,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.YUyO7WBD2DSlCBej.JournalEntryPage.x8fyrActMtp61l4h" } - } + }, + "_key": "!journal.pages!BYFd9hiJGo9L5aOM.FcAth0Y91MCUozKO" }, { "name": "Armor", @@ -82,7 +84,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.ln4KF7662eP93keD.JournalEntryPage.7k11LC2CEep9QcWF" } - } + }, + "_key": "!journal.pages!BYFd9hiJGo9L5aOM.PVD47ooQoPqxZqvV" }, { "name": "Weapons", @@ -112,7 +115,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.VbMVnhcLWO4YX1V9.JournalEntryPage.P4vXCq7lWAWx4Tql" } - } + }, + "_key": "!journal.pages!BYFd9hiJGo9L5aOM.AOOs5OrXYgGzwI9d" }, { "name": "Adventuring Gear", @@ -141,7 +145,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.bogWrnJqoNlBd0O8.JournalEntryPage.LNPC0Vr3UKwY5XMu" } - } + }, + "_key": "!journal.pages!BYFd9hiJGo9L5aOM.AjavRU4yPfI9hfaI" }, { "name": "Tools", @@ -170,7 +175,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.soqKcpGwvId8hQ9r.JournalEntryPage.qfjzpgVlfjVuhgzH" } - } + }, + "_key": "!journal.pages!BYFd9hiJGo9L5aOM.Rs0xLMFGbcCkEhuA" }, { "name": "Mounts and Vehicles", @@ -199,7 +205,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.IAlkoC9IZnU1PzrR.JournalEntryPage.vqSBPGLKgMGBxdyT" } - } + }, + "_key": "!journal.pages!BYFd9hiJGo9L5aOM.FayGZfFQU5llJ0LQ" }, { "name": "Trade Goods", @@ -228,7 +235,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.pOHY1F2F9Jf9S76B.JournalEntryPage.r2PdanZ0emj5J79A" } - } + }, + "_key": "!journal.pages!BYFd9hiJGo9L5aOM.qUyioT438hkwApBG" }, { "name": "Expenses", @@ -257,7 +265,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.SlXnxASl7xZ7EjSx.JournalEntryPage.KUfyNfnRY0k8t69b" } - } + }, + "_key": "!journal.pages!BYFd9hiJGo9L5aOM.ixeXj7Eqq5zPDUYo" } ], "ownership": { @@ -282,5 +291,6 @@ }, "folder": null, "sort": 0, - "_id": "BYFd9hiJGo9L5aOM" + "_id": "BYFd9hiJGo9L5aOM", + "_key": "!journal!BYFd9hiJGo9L5aOM" } diff --git a/packs/src/rules/chapter-6-customization-options.json b/packs/src/rules/chapter-6-customization-options.json index 061e712f82..8bb33b935d 100644 --- a/packs/src/rules/chapter-6-customization-options.json +++ b/packs/src/rules/chapter-6-customization-options.json @@ -29,7 +29,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.EUz4asMc70JCswio.JournalEntryPage.L0K9Z56X4Z499peF" } - } + }, + "_key": "!journal.pages!hgHJdp8lTiJ5TpN9.icbKYJ9K1sUzmL5W" }, { "name": "Feats", @@ -58,7 +59,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.F8iHVJAIMCTLClx3.JournalEntryPage.8YDjg99HOpYYbvPQ" } - } + }, + "_key": "!journal.pages!hgHJdp8lTiJ5TpN9.8V1QMgTrcYbGWppo" } ], "ownership": { @@ -83,5 +85,6 @@ }, "folder": null, "sort": 0, - "_id": "hgHJdp8lTiJ5TpN9" + "_id": "hgHJdp8lTiJ5TpN9", + "_key": "!journal!hgHJdp8lTiJ5TpN9" } diff --git a/packs/src/rules/chapter-7-using-ability-scores.json b/packs/src/rules/chapter-7-using-ability-scores.json index 98fc805f1c..48bd935995 100644 --- a/packs/src/rules/chapter-7-using-ability-scores.json +++ b/packs/src/rules/chapter-7-using-ability-scores.json @@ -24,7 +24,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!0AGfrwZRzSG0vNKb.LgFIjR9ASPVL0W8K" }, { "name": "Ability Scores and Modifiers", @@ -53,7 +54,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.nFdBKy0SAgsIhi7T.JournalEntryPage.9Js5Cz8c6ae7Gc0l" } - } + }, + "_key": "!journal.pages!0AGfrwZRzSG0vNKb.yuSwUFIjK31Mr3DI" }, { "name": "Advantage and Disadvantage", @@ -82,7 +84,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.Au49u5X1n0R8Ali4.JournalEntryPage.vJrAG8fr0rFLa05Z" } - } + }, + "_key": "!journal.pages!0AGfrwZRzSG0vNKb.d3eBZOe9PUvZ7dKQ" }, { "name": "Proficiency Bonus", @@ -111,7 +114,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.PaKUefllxSnLDjaI.JournalEntryPage.wg9Uqe8RQdvVp52d" } - } + }, + "_key": "!journal.pages!0AGfrwZRzSG0vNKb.tthOsaZTr7AVKnsW" }, { "name": "Ability Checks", @@ -141,7 +145,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.kMQcMfFY7VGMkKrP.JournalEntryPage.w9s6jiN9aRDIpyx8" } - } + }, + "_key": "!journal.pages!0AGfrwZRzSG0vNKb.OcHhrKKzffcVi03Q" }, { "name": "Using Each Ability", @@ -171,7 +176,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.tK5FwAIu92di2zLZ.JournalEntryPage.E5bOlx1kGWnjsMhU" } - } + }, + "_key": "!journal.pages!0AGfrwZRzSG0vNKb.xt6tSGvU9e0vtXw6" }, { "name": "Saving Throws", @@ -200,7 +206,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.ekSNjjsCSyl2kxEi.JournalEntryPage.ecS9jVRE9CaGyvEX" } - } + }, + "_key": "!journal.pages!0AGfrwZRzSG0vNKb.9M9VztnDl81tTxgz" } ], "ownership": { @@ -225,5 +232,6 @@ }, "folder": null, "sort": 0, - "_id": "0AGfrwZRzSG0vNKb" + "_id": "0AGfrwZRzSG0vNKb", + "_key": "!journal!0AGfrwZRzSG0vNKb" } diff --git a/packs/src/rules/chapter-8-adventuring.json b/packs/src/rules/chapter-8-adventuring.json index ab79314c69..7a9d90a91a 100644 --- a/packs/src/rules/chapter-8-adventuring.json +++ b/packs/src/rules/chapter-8-adventuring.json @@ -28,7 +28,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.gRcWZ56MBxjX2mbO.JournalEntryPage.hc8qQRIchcU9SCAY" } - } + }, + "_key": "!journal.pages!aYmUMcQfSIqYWpKk.nqt4mR004wWbljhw" }, { "name": "Movement", @@ -58,7 +59,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.87bCRbO4gFLQJXX4.JournalEntryPage.gQKxqJ2HYhyg188U" } - } + }, + "_key": "!journal.pages!aYmUMcQfSIqYWpKk.vR9rCM0UXPM9zl43" }, { "name": "The Environment", @@ -88,7 +90,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.mKsmKfuLvJ3GjPzN.JournalEntryPage.VeVttO6IgNSFH8cG" } - } + }, + "_key": "!journal.pages!aYmUMcQfSIqYWpKk.9jyye7TeGlY4FRf3" }, { "name": "Resting", @@ -117,7 +120,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.ei4esVo9XkUXRccq.JournalEntryPage.o09R0QcjGH5Gpzxu" } - } + }, + "_key": "!journal.pages!aYmUMcQfSIqYWpKk.n0gCL50RM2QjHw6F" }, { "name": "Between Adventures", @@ -146,7 +150,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.gPaI6ycBI7MRz2IJ.JournalEntryPage.VfAJSxahfZcj89Bi" } - } + }, + "_key": "!journal.pages!aYmUMcQfSIqYWpKk.WTgThIDXBP3BhTJK" } ], "ownership": { @@ -171,5 +176,6 @@ }, "folder": null, "sort": 0, - "_id": "aYmUMcQfSIqYWpKk" + "_id": "aYmUMcQfSIqYWpKk", + "_key": "!journal!aYmUMcQfSIqYWpKk" } diff --git a/packs/src/rules/chapter-9-combat.json b/packs/src/rules/chapter-9-combat.json index 2ed9569f9f..e0777377f0 100644 --- a/packs/src/rules/chapter-9-combat.json +++ b/packs/src/rules/chapter-9-combat.json @@ -28,7 +28,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.gJwZ7NM3G52dqlz2.JournalEntryPage.bNgSKlfFrRXF0KGy" } - } + }, + "_key": "!journal.pages!6PfYpwxkdQkyS6b7.njF9PueE9rmnn8N8" }, { "name": "Movement and Position", @@ -58,7 +59,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.0CvBVevL3tyiJrHu.JournalEntryPage.kEcpLln7ik9dTe9N" } - } + }, + "_key": "!journal.pages!6PfYpwxkdQkyS6b7.SfmusW5B5jOaR0vd" }, { "name": "Actions in Combat", @@ -88,7 +90,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.Grj7E9vW0bnFAxuQ.JournalEntryPage.Rhw7euD8NpioM5Yk" } - } + }, + "_key": "!journal.pages!6PfYpwxkdQkyS6b7.t0XXMmv014K4vV3p" }, { "name": "Making an Attack", @@ -117,7 +120,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.pJW6Xqjdk8nzrYd3.JournalEntryPage.d1seLEHaFe6fvPAX" } - } + }, + "_key": "!journal.pages!6PfYpwxkdQkyS6b7.twd4zj7m1n9sBaVG" }, { "name": "Cover", @@ -146,7 +150,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.yL4L6QQ7xhMbgWZx.JournalEntryPage.HHZO2KSJUEhjOI89" } - } + }, + "_key": "!journal.pages!6PfYpwxkdQkyS6b7.kYIupxHL0v6kzLMq" }, { "name": "Damage and Healing", @@ -176,7 +181,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.HORLogaZ0ysOpi3J.JournalEntryPage.12rMBNhzxtqne93A" } - } + }, + "_key": "!journal.pages!6PfYpwxkdQkyS6b7.ckTc3L0Byh2WMHsp" }, { "name": "Mounted Combat", @@ -205,7 +211,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.BffmI2fRdtO9sgni.JournalEntryPage.NnfOsvSWd0Bgveg4" } - } + }, + "_key": "!journal.pages!6PfYpwxkdQkyS6b7.4H88x7iJuzshQpgr" }, { "name": "Underwater Combat", @@ -234,7 +241,8 @@ "core": { "sourceId": "Compendium.dnd5e.rules.xclLVni6OuNUrewU.JournalEntryPage.QRnwE0pgvIlutMgl" } - } + }, + "_key": "!journal.pages!6PfYpwxkdQkyS6b7.gOIzjQ6o3HkzkEY8" } ], "ownership": { @@ -259,5 +267,6 @@ }, "folder": null, "sort": 0, - "_id": "6PfYpwxkdQkyS6b7" + "_id": "6PfYpwxkdQkyS6b7", + "_key": "!journal!6PfYpwxkdQkyS6b7" } diff --git a/packs/src/rules/disclaimer.json b/packs/src/rules/disclaimer.json index cb791774df..0267cc4fe0 100644 --- a/packs/src/rules/disclaimer.json +++ b/packs/src/rules/disclaimer.json @@ -25,7 +25,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!xxt7YT2t76JxNTel.9iCIjvYzMdxWPtd1" } ], "ownership": { @@ -42,5 +43,6 @@ }, "folder": null, "sort": 0, - "_id": "xxt7YT2t76JxNTel" + "_id": "xxt7YT2t76JxNTel", + "_key": "!journal!xxt7YT2t76JxNTel" } diff --git a/packs/src/rules/magic-items-a-z.json b/packs/src/rules/magic-items-a-z.json index cf1c5ebf44..6803e57eac 100644 --- a/packs/src/rules/magic-items-a-z.json +++ b/packs/src/rules/magic-items-a-z.json @@ -25,7 +25,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!sfJtvPjEs50Ruzi4.uDAwhaxTV9p57TWK" }, { "name": "B", @@ -51,7 +52,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!sfJtvPjEs50Ruzi4.TyVYTOPeXLHqvG0N" }, { "name": "C", @@ -77,7 +79,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!sfJtvPjEs50Ruzi4.woz7jrGWkpioqcvQ" }, { "name": "D", @@ -103,7 +106,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!sfJtvPjEs50Ruzi4.CabaZgw9cPlv5TOt" }, { "name": "E", @@ -129,7 +133,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!sfJtvPjEs50Ruzi4.K2NysbFnuhTGlaHd" }, { "name": "F", @@ -155,7 +160,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!sfJtvPjEs50Ruzi4.Vs6MP6JjihYfqSB8" }, { "name": "G", @@ -181,7 +187,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!sfJtvPjEs50Ruzi4.vfuGcEbTfLjmqkAM" }, { "name": "H", @@ -207,7 +214,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!sfJtvPjEs50Ruzi4.om6YcPnsMpvmSkQj" }, { "name": "I", @@ -233,7 +241,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!sfJtvPjEs50Ruzi4.gIhCLRlo8YAF3U86" }, { "name": "J", @@ -259,7 +268,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!sfJtvPjEs50Ruzi4.Tz7woWr1hx3Prerz" }, { "name": "L", @@ -285,7 +295,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!sfJtvPjEs50Ruzi4.lOVKZ7EtGyWimsYm" }, { "name": "M", @@ -311,7 +322,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!sfJtvPjEs50Ruzi4.bvdDVfbOkOqgdmcj" }, { "name": "N", @@ -337,7 +349,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!sfJtvPjEs50Ruzi4.6WVjSqxczERrYQzb" }, { "name": "O", @@ -363,7 +376,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!sfJtvPjEs50Ruzi4.DT4Kz0sQrS0Fnb6A" }, { "name": "P", @@ -389,7 +403,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!sfJtvPjEs50Ruzi4.QqDSGiJgfNloLLka" }, { "name": "R", @@ -415,7 +430,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!sfJtvPjEs50Ruzi4.sg7JuiDwLrmK8Ddk" }, { "name": "S", @@ -441,7 +457,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!sfJtvPjEs50Ruzi4.fvyKl5hb2nLEvpA8" }, { "name": "T", @@ -467,7 +484,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!sfJtvPjEs50Ruzi4.EfSG7uc39rBeq4TK" }, { "name": "U", @@ -493,7 +511,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!sfJtvPjEs50Ruzi4.06nEp8Zg7Stzugpy" }, { "name": "V", @@ -519,7 +538,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!sfJtvPjEs50Ruzi4.rACi0b6BleZOqpCl" }, { "name": "W", @@ -545,7 +565,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!sfJtvPjEs50Ruzi4.c5Xm2a3tPNyF1TGU" } ], "ownership": { @@ -562,5 +583,6 @@ }, "folder": null, "sort": 0, - "_id": "sfJtvPjEs50Ruzi4" + "_id": "sfJtvPjEs50Ruzi4", + "_key": "!journal!sfJtvPjEs50Ruzi4" } diff --git a/packs/src/rules/spells-a-z.json b/packs/src/rules/spells-a-z.json index 2e696fb400..6b66fd20d8 100644 --- a/packs/src/rules/spells-a-z.json +++ b/packs/src/rules/spells-a-z.json @@ -25,7 +25,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!plCB5ei1JbVtBseb.fwkSG4DkT0379wjE" }, { "name": "B", @@ -51,7 +52,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!plCB5ei1JbVtBseb.NtvBcsKpLrYEV9Y7" }, { "name": "C", @@ -77,7 +79,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!plCB5ei1JbVtBseb.KU4VD1FIv3OOovn0" }, { "name": "D", @@ -103,7 +106,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!plCB5ei1JbVtBseb.BmCHiD6pLNjIgeTx" }, { "name": "E", @@ -129,7 +133,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!plCB5ei1JbVtBseb.yK94U1uZ8xkuYlHa" }, { "name": "F", @@ -155,7 +160,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!plCB5ei1JbVtBseb.yAxKu1Ffw5nMUHSv" }, { "name": "G", @@ -181,7 +187,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!plCB5ei1JbVtBseb.Gwq0BG0orHTTCmbX" }, { "name": "H", @@ -207,7 +214,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!plCB5ei1JbVtBseb.5pMrBRugiTmOqo8t" }, { "name": "I", @@ -233,7 +241,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!plCB5ei1JbVtBseb.qDa1UPF8OHCCPVM4" }, { "name": "J", @@ -259,7 +268,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!plCB5ei1JbVtBseb.4jyYYINOE5kg9hnA" }, { "name": "K", @@ -285,7 +295,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!plCB5ei1JbVtBseb.rVqb9MusYjBGrk6B" }, { "name": "L", @@ -311,7 +322,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!plCB5ei1JbVtBseb.54V7wpfYdnPtb6WS" }, { "name": "M", @@ -337,7 +349,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!plCB5ei1JbVtBseb.ILRZw1QbK6ixZhac" }, { "name": "N", @@ -363,7 +376,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!plCB5ei1JbVtBseb.4FlMOQZ7aUuergFe" }, { "name": "P", @@ -389,7 +403,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!plCB5ei1JbVtBseb.GaGqOeIqwylIgOsB" }, { "name": "R", @@ -415,7 +430,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!plCB5ei1JbVtBseb.YM7RJylVdSyhAwbI" }, { "name": "S", @@ -441,7 +457,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!plCB5ei1JbVtBseb.yEK0RUmDMxWubBlS" }, { "name": "T", @@ -467,7 +484,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!plCB5ei1JbVtBseb.U91wa2xksFdN49jc" }, { "name": "U", @@ -493,7 +511,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!plCB5ei1JbVtBseb.Vgc0SlCji7PgJXH1" }, { "name": "V", @@ -519,7 +538,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!plCB5ei1JbVtBseb.nk7LKOPdp2p513fO" }, { "name": "W", @@ -545,7 +565,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!plCB5ei1JbVtBseb.OVPruCAPRdXlmy7f" }, { "name": "Z", @@ -571,7 +592,8 @@ "ownership": { "default": -1 }, - "flags": {} + "flags": {}, + "_key": "!journal.pages!plCB5ei1JbVtBseb.X7MUx4s27wFrY6Df" } ], "ownership": { @@ -592,5 +614,6 @@ }, "folder": null, "sort": 0, - "_id": "plCB5ei1JbVtBseb" + "_id": "plCB5ei1JbVtBseb", + "_key": "!journal!plCB5ei1JbVtBseb" } diff --git a/packs/src/spells/cantrip/acid-splash.json b/packs/src/spells/cantrip/acid-splash.json index 7cf2756c8c..790db2ad20 100644 --- a/packs/src/spells/cantrip/acid-splash.json +++ b/packs/src/spells/cantrip/acid-splash.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234112, "modifiedTime": 1671220969097, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!JLTQyqXEaJDrTXyW" } diff --git a/packs/src/spells/cantrip/chill-touch.json b/packs/src/spells/cantrip/chill-touch.json index 4a80737517..ebc900388d 100644 --- a/packs/src/spells/cantrip/chill-touch.json +++ b/packs/src/spells/cantrip/chill-touch.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234237, "modifiedTime": 1671220971381, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!vrN18tbTw7io5MWd" } diff --git a/packs/src/spells/cantrip/dancing-lights.json b/packs/src/spells/cantrip/dancing-lights.json index 0e64280d5f..9d3754a1af 100644 --- a/packs/src/spells/cantrip/dancing-lights.json +++ b/packs/src/spells/cantrip/dancing-lights.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234094, "modifiedTime": 1671220968935, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!CAxSzHWizrafT033" } diff --git a/packs/src/spells/cantrip/druidcraft.json b/packs/src/spells/cantrip/druidcraft.json index bf7d28cd8d..810254fa78 100644 --- a/packs/src/spells/cantrip/druidcraft.json +++ b/packs/src/spells/cantrip/druidcraft.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234141, "modifiedTime": 1671220969986, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!SbSvZKkJASyk8jKo" } diff --git a/packs/src/spells/cantrip/eldritch-blast.json b/packs/src/spells/cantrip/eldritch-blast.json index 93df9df4e3..8b05799e6a 100644 --- a/packs/src/spells/cantrip/eldritch-blast.json +++ b/packs/src/spells/cantrip/eldritch-blast.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234162, "modifiedTime": 1671220970233, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Z9p1vezIn95jw1Yw" } diff --git a/packs/src/spells/cantrip/fire-bolt.json b/packs/src/spells/cantrip/fire-bolt.json index bb55ebca3c..7d930556f8 100644 --- a/packs/src/spells/cantrip/fire-bolt.json +++ b/packs/src/spells/cantrip/fire-bolt.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234100, "modifiedTime": 1671220968971, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!EOmsUcFQJTfG2oio" } diff --git a/packs/src/spells/cantrip/guidance.json b/packs/src/spells/cantrip/guidance.json index 3646018cdf..65f5dc9c70 100644 --- a/packs/src/spells/cantrip/guidance.json +++ b/packs/src/spells/cantrip/guidance.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234132, "modifiedTime": 1671220969889, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!P7mF2MxSuVJwHRRY" } diff --git a/packs/src/spells/cantrip/light.json b/packs/src/spells/cantrip/light.json index d0777362b6..078b6b5fc4 100644 --- a/packs/src/spells/cantrip/light.json +++ b/packs/src/spells/cantrip/light.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234093, "modifiedTime": 1671220968926, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Bnn9Nzajixvow9xi" } diff --git a/packs/src/spells/cantrip/mage-hand.json b/packs/src/spells/cantrip/mage-hand.json index a6788f8b8c..2a704e96bd 100644 --- a/packs/src/spells/cantrip/mage-hand.json +++ b/packs/src/spells/cantrip/mage-hand.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234148, "modifiedTime": 1671220970087, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Utk1OQRwYkMkFRD3" } diff --git a/packs/src/spells/cantrip/mending.json b/packs/src/spells/cantrip/mending.json index f1f8dc0593..847f1ce668 100644 --- a/packs/src/spells/cantrip/mending.json +++ b/packs/src/spells/cantrip/mending.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234215, "modifiedTime": 1671220971126, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!kjmjY0zlE6IEiQVL" } diff --git a/packs/src/spells/cantrip/message.json b/packs/src/spells/cantrip/message.json index 76c826657b..185895711b 100644 --- a/packs/src/spells/cantrip/message.json +++ b/packs/src/spells/cantrip/message.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234210, "modifiedTime": 1671220971080, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!icZokbgV1jIMpNCv" } diff --git a/packs/src/spells/cantrip/minor-illusion.json b/packs/src/spells/cantrip/minor-illusion.json index 43fcecf6d8..2ac685ea84 100644 --- a/packs/src/spells/cantrip/minor-illusion.json +++ b/packs/src/spells/cantrip/minor-illusion.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234224, "modifiedTime": 1671220971236, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!oIzA2MEHwxhtQneU" } diff --git a/packs/src/spells/cantrip/poison-spray.json b/packs/src/spells/cantrip/poison-spray.json index da2ed469a6..4f3548ab6f 100644 --- a/packs/src/spells/cantrip/poison-spray.json +++ b/packs/src/spells/cantrip/poison-spray.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234190, "modifiedTime": 1671220970553, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!g2u9PYfqWQAyg9OI" } diff --git a/packs/src/spells/cantrip/prestidigitation.json b/packs/src/spells/cantrip/prestidigitation.json index 73211bbd86..94323fff01 100644 --- a/packs/src/spells/cantrip/prestidigitation.json +++ b/packs/src/spells/cantrip/prestidigitation.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234236, "modifiedTime": 1671220971378, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!udsLtG0BugXHR2JQ" } diff --git a/packs/src/spells/cantrip/produce-flame.json b/packs/src/spells/cantrip/produce-flame.json index f016dddffc..3916532951 100644 --- a/packs/src/spells/cantrip/produce-flame.json +++ b/packs/src/spells/cantrip/produce-flame.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234183, "modifiedTime": 1671220970489, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eCPQuQkIabFKTl9u" } diff --git a/packs/src/spells/cantrip/ray-of-frost.json b/packs/src/spells/cantrip/ray-of-frost.json index a8fa810a16..0a6cf47db6 100644 --- a/packs/src/spells/cantrip/ray-of-frost.json +++ b/packs/src/spells/cantrip/ray-of-frost.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234176, "modifiedTime": 1671220970399, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ctW81uiX56xZR2c5" } diff --git a/packs/src/spells/cantrip/resistance.json b/packs/src/spells/cantrip/resistance.json index 0374f2da1b..e701b515aa 100644 --- a/packs/src/spells/cantrip/resistance.json +++ b/packs/src/spells/cantrip/resistance.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234181, "modifiedTime": 1671220970474, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dl8YwvMboBqX2OC4" } diff --git a/packs/src/spells/cantrip/sacred-flame.json b/packs/src/spells/cantrip/sacred-flame.json index 614b6bcdf7..43a9ba7871 100644 --- a/packs/src/spells/cantrip/sacred-flame.json +++ b/packs/src/spells/cantrip/sacred-flame.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234221, "modifiedTime": 1671220971196, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!n9pJzTDsAwQxJVRl" } diff --git a/packs/src/spells/cantrip/shillelagh.json b/packs/src/spells/cantrip/shillelagh.json index b43e099df5..69360116ae 100644 --- a/packs/src/spells/cantrip/shillelagh.json +++ b/packs/src/spells/cantrip/shillelagh.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234149, "modifiedTime": 1671220970099, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!VzgFzcmocr1X1cp4" } diff --git a/packs/src/spells/cantrip/shocking-grasp.json b/packs/src/spells/cantrip/shocking-grasp.json index d36a49df2b..cb3b433c2b 100644 --- a/packs/src/spells/cantrip/shocking-grasp.json +++ b/packs/src/spells/cantrip/shocking-grasp.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234159, "modifiedTime": 1671220970201, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XvbiNhNqXXIFisIy" } diff --git a/packs/src/spells/cantrip/spare-the-dying.json b/packs/src/spells/cantrip/spare-the-dying.json index 897ac301c0..b10bd1f3f6 100644 --- a/packs/src/spells/cantrip/spare-the-dying.json +++ b/packs/src/spells/cantrip/spare-the-dying.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234083, "modifiedTime": 1671220968823, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8zT7njvqbpXs4Cel" } diff --git a/packs/src/spells/cantrip/thaumaturgy.json b/packs/src/spells/cantrip/thaumaturgy.json index cde6683f31..f4fe0fa253 100644 --- a/packs/src/spells/cantrip/thaumaturgy.json +++ b/packs/src/spells/cantrip/thaumaturgy.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234127, "modifiedTime": 1671220969805, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MUO1uYN7JR1hm4dR" } diff --git a/packs/src/spells/cantrip/true-strike.json b/packs/src/spells/cantrip/true-strike.json index 94c05810f0..8f428f5889 100644 --- a/packs/src/spells/cantrip/true-strike.json +++ b/packs/src/spells/cantrip/true-strike.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234219, "modifiedTime": 1671220971177, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!mGGlcLdggHwcL7MG" } diff --git a/packs/src/spells/cantrip/vicious-mockery.json b/packs/src/spells/cantrip/vicious-mockery.json index 56d46d8ff0..c1f480eda6 100644 --- a/packs/src/spells/cantrip/vicious-mockery.json +++ b/packs/src/spells/cantrip/vicious-mockery.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234175, "modifiedTime": 1671220970380, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!cdrYKaFi98YWaBMw" } diff --git a/packs/src/spells/level-1/alarm.json b/packs/src/spells/level-1/alarm.json index 672d9e5a39..0a61f9737f 100644 --- a/packs/src/spells/level-1/alarm.json +++ b/packs/src/spells/level-1/alarm.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234077, "modifiedTime": 1671220968762, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7p9IuWrSWFgfyQo2" } diff --git a/packs/src/spells/level-1/animal-friendship.json b/packs/src/spells/level-1/animal-friendship.json index cb5a373a8f..3be16c66ce 100644 --- a/packs/src/spells/level-1/animal-friendship.json +++ b/packs/src/spells/level-1/animal-friendship.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234194, "modifiedTime": 1671220970603, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hDOENzjuj5WpLq7B" } diff --git a/packs/src/spells/level-1/bane.json b/packs/src/spells/level-1/bane.json index f79b029378..8ca1bfe664 100644 --- a/packs/src/spells/level-1/bane.json +++ b/packs/src/spells/level-1/bane.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -140,7 +145,8 @@ "origin": "Item.KkaQm4OQJxc6z3to", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!items.effects!95K2aUhAGV9qXjnf.potjmpJPeUA1U4oe" } ], "folder": null, @@ -151,5 +157,6 @@ "createdTime": 1661787234084, "modifiedTime": 1671220968832, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!95K2aUhAGV9qXjnf" } diff --git a/packs/src/spells/level-1/bless.json b/packs/src/spells/level-1/bless.json index 79d1bffa87..2c884d7af7 100644 --- a/packs/src/spells/level-1/bless.json +++ b/packs/src/spells/level-1/bless.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -135,7 +140,8 @@ "origin": "Item.kZZAZ6kp9YzgPQEe", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!items.effects!8dzaICjGy6mTUaUr.8rP3gwmXVTgZqYZE" } ], "folder": null, @@ -151,5 +157,6 @@ "createdTime": 1661787234081, "modifiedTime": 1671220968815, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8dzaICjGy6mTUaUr" } diff --git a/packs/src/spells/level-1/burning-hands.json b/packs/src/spells/level-1/burning-hands.json index 37c943f0df..25af5d2e5a 100644 --- a/packs/src/spells/level-1/burning-hands.json +++ b/packs/src/spells/level-1/burning-hands.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234069, "modifiedTime": 1671220968648, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!5SuJewoa1CRWaj1F" } diff --git a/packs/src/spells/level-1/charm-person.json b/packs/src/spells/level-1/charm-person.json index 97f8138de3..341d31216b 100644 --- a/packs/src/spells/level-1/charm-person.json +++ b/packs/src/spells/level-1/charm-person.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234185, "modifiedTime": 1671220970507, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eS7XnnApoxRxYXPs" } diff --git a/packs/src/spells/level-1/color-spray.json b/packs/src/spells/level-1/color-spray.json index 14022be3b7..cf8d182ec9 100644 --- a/packs/src/spells/level-1/color-spray.json +++ b/packs/src/spells/level-1/color-spray.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234121, "modifiedTime": 1671220969165, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LWTUqKkUQdMAmOe0" } diff --git a/packs/src/spells/level-1/command.json b/packs/src/spells/level-1/command.json index b851e50407..77bfe66b45 100644 --- a/packs/src/spells/level-1/command.json +++ b/packs/src/spells/level-1/command.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234169, "modifiedTime": 1671220970317, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!arzCrMRgcNiQuh43" } diff --git a/packs/src/spells/level-1/comprehend-languages.json b/packs/src/spells/level-1/comprehend-languages.json index 3b0bb72983..36ecc552f9 100644 --- a/packs/src/spells/level-1/comprehend-languages.json +++ b/packs/src/spells/level-1/comprehend-languages.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234066, "modifiedTime": 1671220968631, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!4dSvfvTy2ZIJ3K4k" } diff --git a/packs/src/spells/level-1/create-or-destroy-water.json b/packs/src/spells/level-1/create-or-destroy-water.json index 2b483bc17a..c4683132be 100644 --- a/packs/src/spells/level-1/create-or-destroy-water.json +++ b/packs/src/spells/level-1/create-or-destroy-water.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234167, "modifiedTime": 1671220970298, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!a3XtAO5n2GrqiAh5" } diff --git a/packs/src/spells/level-1/cure-wounds.json b/packs/src/spells/level-1/cure-wounds.json index 094aa64d84..b8aca0a62c 100644 --- a/packs/src/spells/level-1/cure-wounds.json +++ b/packs/src/spells/level-1/cure-wounds.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234236, "modifiedTime": 1671220971372, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!uUWb1wZgtMou0TVP" } diff --git a/packs/src/spells/level-1/detect-evil-and-good.json b/packs/src/spells/level-1/detect-evil-and-good.json index 51507bff54..04bfb1623a 100644 --- a/packs/src/spells/level-1/detect-evil-and-good.json +++ b/packs/src/spells/level-1/detect-evil-and-good.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234128, "modifiedTime": 1671220969810, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Mzh95utKDPIrjiH8" } diff --git a/packs/src/spells/level-1/detect-magic.json b/packs/src/spells/level-1/detect-magic.json index 2bd4c4d338..e8ec9e6041 100644 --- a/packs/src/spells/level-1/detect-magic.json +++ b/packs/src/spells/level-1/detect-magic.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234192, "modifiedTime": 1671220970585, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ghXTfe7sgCbgf1Q8" } diff --git a/packs/src/spells/level-1/detect-poison-and-disease.json b/packs/src/spells/level-1/detect-poison-and-disease.json index c56ae83854..246b9ace54 100644 --- a/packs/src/spells/level-1/detect-poison-and-disease.json +++ b/packs/src/spells/level-1/detect-poison-and-disease.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234060, "modifiedTime": 1671220968539, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!2skfDtglk1mGrb3l" } diff --git a/packs/src/spells/level-1/disguise-self.json b/packs/src/spells/level-1/disguise-self.json index e0ee8f40a0..8dded355d0 100644 --- a/packs/src/spells/level-1/disguise-self.json +++ b/packs/src/spells/level-1/disguise-self.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234086, "modifiedTime": 1671220968855, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!A3q2gTNqG6fvNGrv" } diff --git a/packs/src/spells/level-1/divine-favor.json b/packs/src/spells/level-1/divine-favor.json index f6813800a7..f6e0c94687 100644 --- a/packs/src/spells/level-1/divine-favor.json +++ b/packs/src/spells/level-1/divine-favor.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234079, "modifiedTime": 1671220968776, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8MICCMeOXT3aJUy9" } diff --git a/packs/src/spells/level-1/entangle.json b/packs/src/spells/level-1/entangle.json index 227acaa200..690d090719 100644 --- a/packs/src/spells/level-1/entangle.json +++ b/packs/src/spells/level-1/entangle.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234191, "modifiedTime": 1671220970568, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gMrWeG8fMDPRFiVe" } diff --git a/packs/src/spells/level-1/expeditious-retreat.json b/packs/src/spells/level-1/expeditious-retreat.json index 0d92aa7cf5..0daeeb6c0d 100644 --- a/packs/src/spells/level-1/expeditious-retreat.json +++ b/packs/src/spells/level-1/expeditious-retreat.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234246, "modifiedTime": 1671220971516, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zPGohqJRir6MyQ3U" } diff --git a/packs/src/spells/level-1/faerie-fire.json b/packs/src/spells/level-1/faerie-fire.json index 21356b1963..63432ca32d 100644 --- a/packs/src/spells/level-1/faerie-fire.json +++ b/packs/src/spells/level-1/faerie-fire.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234222, "modifiedTime": 1671220971200, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nqBDWkVOfcGZt4YU" } diff --git a/packs/src/spells/level-1/false-life.json b/packs/src/spells/level-1/false-life.json index 43f70ad9da..89765fa145 100644 --- a/packs/src/spells/level-1/false-life.json +++ b/packs/src/spells/level-1/false-life.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234075, "modifiedTime": 1671220968751, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7e3QXF10hLNDEdr6" } diff --git a/packs/src/spells/level-1/feather-fall.json b/packs/src/spells/level-1/feather-fall.json index d72bc5e2c4..c87c5f04a1 100644 --- a/packs/src/spells/level-1/feather-fall.json +++ b/packs/src/spells/level-1/feather-fall.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234229, "modifiedTime": 1671220971309, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!pub0OWVEB71XQx1n" } diff --git a/packs/src/spells/level-1/find-familiar.json b/packs/src/spells/level-1/find-familiar.json index fd7245806b..fc5328d12d 100644 --- a/packs/src/spells/level-1/find-familiar.json +++ b/packs/src/spells/level-1/find-familiar.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "hour", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234112, "modifiedTime": 1671220969093, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!JGT5bNqu9REL7Fuz" } diff --git a/packs/src/spells/level-1/floating-disk.json b/packs/src/spells/level-1/floating-disk.json index 03a6773a5f..7b0127c4d1 100644 --- a/packs/src/spells/level-1/floating-disk.json +++ b/packs/src/spells/level-1/floating-disk.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234172, "modifiedTime": 1671220970345, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!bnjXlk13ZRJuf5d0" } diff --git a/packs/src/spells/level-1/fog-cloud.json b/packs/src/spells/level-1/fog-cloud.json index e34d5913a9..13b7489643 100644 --- a/packs/src/spells/level-1/fog-cloud.json +++ b/packs/src/spells/level-1/fog-cloud.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234109, "modifiedTime": 1671220969052, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!IBJmWjzbQGu7M4UX" } diff --git a/packs/src/spells/level-1/goodberry.json b/packs/src/spells/level-1/goodberry.json index d9ed25f680..df0e9345ee 100644 --- a/packs/src/spells/level-1/goodberry.json +++ b/packs/src/spells/level-1/goodberry.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234136, "modifiedTime": 1671220969923, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Qf6CAZkc7ms4ZY3e" } diff --git a/packs/src/spells/level-1/grease.json b/packs/src/spells/level-1/grease.json index 63d01deb22..1b8ae99891 100644 --- a/packs/src/spells/level-1/grease.json +++ b/packs/src/spells/level-1/grease.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234187, "modifiedTime": 1671220970520, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!etgcR9wqmrhyZ0tx" } diff --git a/packs/src/spells/level-1/guiding-bolt.json b/packs/src/spells/level-1/guiding-bolt.json index 4167933860..983aafae44 100644 --- a/packs/src/spells/level-1/guiding-bolt.json +++ b/packs/src/spells/level-1/guiding-bolt.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234075, "modifiedTime": 1671220968745, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7buEm5KhI5lP8m1z" } diff --git a/packs/src/spells/level-1/healing-word.json b/packs/src/spells/level-1/healing-word.json index 5474c9c95f..d6c0cc405c 100644 --- a/packs/src/spells/level-1/healing-word.json +++ b/packs/src/spells/level-1/healing-word.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234223, "modifiedTime": 1671220971212, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!o8Dh7fblk1d16tnO" } diff --git a/packs/src/spells/level-1/hellish-rebuke.json b/packs/src/spells/level-1/hellish-rebuke.json index da2619c7f3..bb95cf81e5 100644 --- a/packs/src/spells/level-1/hellish-rebuke.json +++ b/packs/src/spells/level-1/hellish-rebuke.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234058, "modifiedTime": 1671220968514, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!22dPoeXfaaAv4K3h" } diff --git a/packs/src/spells/level-1/heroism.json b/packs/src/spells/level-1/heroism.json index f3d58bb374..669a910f6f 100644 --- a/packs/src/spells/level-1/heroism.json +++ b/packs/src/spells/level-1/heroism.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234192, "modifiedTime": 1671220970580, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ge3Saet9zPTDyaoL" } diff --git a/packs/src/spells/level-1/hideous-laughter.json b/packs/src/spells/level-1/hideous-laughter.json index 850b0e7e82..99afbc8eb9 100644 --- a/packs/src/spells/level-1/hideous-laughter.json +++ b/packs/src/spells/level-1/hideous-laughter.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234092, "modifiedTime": 1671220968913, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!BQk5Row4NymMnUQl" } diff --git a/packs/src/spells/level-1/hunters-mark.json b/packs/src/spells/level-1/hunters-mark.json index ef5daf9ee1..0ca668c20c 100644 --- a/packs/src/spells/level-1/hunters-mark.json +++ b/packs/src/spells/level-1/hunters-mark.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234053, "modifiedTime": 1671220968318, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!0xmXiPiuYws1OGcX" } diff --git a/packs/src/spells/level-1/identify.json b/packs/src/spells/level-1/identify.json index c7719d0be6..beb8019e61 100644 --- a/packs/src/spells/level-1/identify.json +++ b/packs/src/spells/level-1/identify.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234064, "modifiedTime": 1671220968588, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3OZnNhunvRtPOQmH" } diff --git a/packs/src/spells/level-1/illusory-script.json b/packs/src/spells/level-1/illusory-script.json index 6ed5bee099..6d99bf8bac 100644 --- a/packs/src/spells/level-1/illusory-script.json +++ b/packs/src/spells/level-1/illusory-script.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234078, "modifiedTime": 1671220968772, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!82jM6qD9axLJsTrH" } diff --git a/packs/src/spells/level-1/inflict-wounds.json b/packs/src/spells/level-1/inflict-wounds.json index d418ac2f6b..abe0e69ae7 100644 --- a/packs/src/spells/level-1/inflict-wounds.json +++ b/packs/src/spells/level-1/inflict-wounds.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234216, "modifiedTime": 1671220971144, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ksaaTxIbKx2sJfia" } diff --git a/packs/src/spells/level-1/jump.json b/packs/src/spells/level-1/jump.json index 316b51ddd1..185be9b9a6 100644 --- a/packs/src/spells/level-1/jump.json +++ b/packs/src/spells/level-1/jump.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234165, "modifiedTime": 1671220970288, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ZrTc23tToJ0JpH2h" } diff --git a/packs/src/spells/level-1/longstrider.json b/packs/src/spells/level-1/longstrider.json index 27a2e314a6..955e7ab593 100644 --- a/packs/src/spells/level-1/longstrider.json +++ b/packs/src/spells/level-1/longstrider.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234090, "modifiedTime": 1671220968897, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!B0pnIcc52O6G8hi8" } diff --git a/packs/src/spells/level-1/mage-armor.json b/packs/src/spells/level-1/mage-armor.json index e4b7f4b4fa..670ae3aed5 100644 --- a/packs/src/spells/level-1/mage-armor.json +++ b/packs/src/spells/level-1/mage-armor.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -111,7 +116,8 @@ "transfer": true, "flags": {}, "tint": null, - "sort": 0 + "sort": 0, + "_key": "!items.effects!CKZTpZlxj7hjjo2H.cfwMU7LuOJ619Lny" } ], "folder": null, @@ -127,5 +133,6 @@ "createdTime": 1661787234095, "modifiedTime": 1671220968939, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!CKZTpZlxj7hjjo2H" } diff --git a/packs/src/spells/level-1/magic-missile.json b/packs/src/spells/level-1/magic-missile.json index d42599b833..94461871b9 100644 --- a/packs/src/spells/level-1/magic-missile.json +++ b/packs/src/spells/level-1/magic-missile.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234065, "modifiedTime": 1671220968604, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!41JIhpDyM9Anm7cs" } diff --git a/packs/src/spells/level-1/protection-from-evil-and-good.json b/packs/src/spells/level-1/protection-from-evil-and-good.json index 6f9c85a1e0..89ef6b112f 100644 --- a/packs/src/spells/level-1/protection-from-evil-and-good.json +++ b/packs/src/spells/level-1/protection-from-evil-and-good.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234240, "modifiedTime": 1671220971426, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!xmDBqZhRVrtLP8h2" } diff --git a/packs/src/spells/level-1/purify-food-and-drink.json b/packs/src/spells/level-1/purify-food-and-drink.json index 30a2d226e5..5765cace11 100644 --- a/packs/src/spells/level-1/purify-food-and-drink.json +++ b/packs/src/spells/level-1/purify-food-and-drink.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234118, "modifiedTime": 1671220969145, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Kn7K5PtYUJAKZTTp" } diff --git a/packs/src/spells/level-1/sanctuary.json b/packs/src/spells/level-1/sanctuary.json index c3bd6e6e51..310c3d663b 100644 --- a/packs/src/spells/level-1/sanctuary.json +++ b/packs/src/spells/level-1/sanctuary.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234193, "modifiedTime": 1671220970595, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gvdA9nPuWLck4tBl" } diff --git a/packs/src/spells/level-1/shield-of-faith.json b/packs/src/spells/level-1/shield-of-faith.json index ae6ce7d952..ef38e43bbf 100644 --- a/packs/src/spells/level-1/shield-of-faith.json +++ b/packs/src/spells/level-1/shield-of-faith.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234212, "modifiedTime": 1671220971097, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!jZ6JNykRtdQ90MOo" } diff --git a/packs/src/spells/level-1/shield.json b/packs/src/spells/level-1/shield.json index 28ebf3857d..14bafbcfd0 100644 --- a/packs/src/spells/level-1/shield.json +++ b/packs/src/spells/level-1/shield.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -111,7 +116,8 @@ "origin": "Item.FlLKKv7bQBlIAs11", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!items.effects!z1mx84ONwkXKUZd7.6pbotGIvqQkraPva" } ], "folder": null, @@ -127,5 +133,6 @@ "createdTime": 1661787234244, "modifiedTime": 1671220971502, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!z1mx84ONwkXKUZd7" } diff --git a/packs/src/spells/level-1/silent-image.json b/packs/src/spells/level-1/silent-image.json index 0a776b2bf6..67e861110f 100644 --- a/packs/src/spells/level-1/silent-image.json +++ b/packs/src/spells/level-1/silent-image.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234094, "modifiedTime": 1671220968931, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!BrBZdCCrJRIVg7YX" } diff --git a/packs/src/spells/level-1/sleep.json b/packs/src/spells/level-1/sleep.json index 24ca89acef..f5c4042264 100644 --- a/packs/src/spells/level-1/sleep.json +++ b/packs/src/spells/level-1/sleep.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234117, "modifiedTime": 1671220969141, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!KhwiSi9fwVfUPtku" } diff --git a/packs/src/spells/level-1/speak-with-animals.json b/packs/src/spells/level-1/speak-with-animals.json index 33e2e78640..4ae243d8ed 100644 --- a/packs/src/spells/level-1/speak-with-animals.json +++ b/packs/src/spells/level-1/speak-with-animals.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234167, "modifiedTime": 1671220970302, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!aL1F8fvYLtNzUbKu" } diff --git a/packs/src/spells/level-1/thunderwave.json b/packs/src/spells/level-1/thunderwave.json index 13c888e366..341542e82b 100644 --- a/packs/src/spells/level-1/thunderwave.json +++ b/packs/src/spells/level-1/thunderwave.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234152, "modifiedTime": 1671220970113, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WTbOQBsarsL1LuXJ" } diff --git a/packs/src/spells/level-1/unseen-servant.json b/packs/src/spells/level-1/unseen-servant.json index 432dbf6c07..e01f1f02c7 100644 --- a/packs/src/spells/level-1/unseen-servant.json +++ b/packs/src/spells/level-1/unseen-servant.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234174, "modifiedTime": 1671220970372, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ccduLIvutyNqvkgv" } diff --git a/packs/src/spells/level-2/acid-arrow.json b/packs/src/spells/level-2/acid-arrow.json index 725a9131cd..09181a17a4 100644 --- a/packs/src/spells/level-2/acid-arrow.json +++ b/packs/src/spells/level-2/acid-arrow.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234066, "modifiedTime": 1671220968622, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!4H6YgYdKgnX6ZQ8M" } diff --git a/packs/src/spells/level-2/aid.json b/packs/src/spells/level-2/aid.json index eb5f77620d..302e350b6b 100644 --- a/packs/src/spells/level-2/aid.json +++ b/packs/src/spells/level-2/aid.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234131, "modifiedTime": 1671220969879, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Opwh2PdX4runSBlm" } diff --git a/packs/src/spells/level-2/alter-self.json b/packs/src/spells/level-2/alter-self.json index 75bbbf6cbf..bed3181885 100644 --- a/packs/src/spells/level-2/alter-self.json +++ b/packs/src/spells/level-2/alter-self.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234080, "modifiedTime": 1671220968797, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8RTDOt80u8aBv9qx" } diff --git a/packs/src/spells/level-2/animal-messenger.json b/packs/src/spells/level-2/animal-messenger.json index f7b253fa53..0875276021 100644 --- a/packs/src/spells/level-2/animal-messenger.json +++ b/packs/src/spells/level-2/animal-messenger.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234156, "modifiedTime": 1671220970145, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!X8w9EzYLGc4vQ1H2" } diff --git a/packs/src/spells/level-2/arcane-lock.json b/packs/src/spells/level-2/arcane-lock.json index d008261b34..66d071abdf 100644 --- a/packs/src/spells/level-2/arcane-lock.json +++ b/packs/src/spells/level-2/arcane-lock.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234081, "modifiedTime": 1674761851303, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8cse7rit0oswRPUP" } diff --git a/packs/src/spells/level-2/arcanists-magic-aura.json b/packs/src/spells/level-2/arcanists-magic-aura.json index 420a6efbec..57cef15b39 100644 --- a/packs/src/spells/level-2/arcanists-magic-aura.json +++ b/packs/src/spells/level-2/arcanists-magic-aura.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234138, "modifiedTime": 1671220969942, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!RvEqsD89Zvd5yex4" } diff --git a/packs/src/spells/level-2/augury.json b/packs/src/spells/level-2/augury.json index 932b230e4c..d122d5524a 100644 --- a/packs/src/spells/level-2/augury.json +++ b/packs/src/spells/level-2/augury.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234067, "modifiedTime": 1671220968640, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!4v2H3hHb3Ph9XLNd" } diff --git a/packs/src/spells/level-2/barkskin.json b/packs/src/spells/level-2/barkskin.json index fa865cd271..116619a5a8 100644 --- a/packs/src/spells/level-2/barkskin.json +++ b/packs/src/spells/level-2/barkskin.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -117,7 +122,8 @@ "origin": "Item.VQMKMnQDw5rzL0zp", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!items.effects!JPwIEfgUPVebr5AH.uM6rgctYpcbCVSkn" } ], "folder": null, @@ -133,5 +139,6 @@ "createdTime": 1661787234113, "modifiedTime": 1671220969102, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!JPwIEfgUPVebr5AH" } diff --git a/packs/src/spells/level-2/blindness-deafness.json b/packs/src/spells/level-2/blindness-deafness.json index de04e4031b..012ef0348b 100644 --- a/packs/src/spells/level-2/blindness-deafness.json +++ b/packs/src/spells/level-2/blindness-deafness.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234247, "modifiedTime": 1671220971532, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zwGsAv6kmwzYGhh3" } diff --git a/packs/src/spells/level-2/blur.json b/packs/src/spells/level-2/blur.json index be34ac1494..a03a66f1fd 100644 --- a/packs/src/spells/level-2/blur.json +++ b/packs/src/spells/level-2/blur.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234147, "modifiedTime": 1671220970071, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!UDUnlfPsOAbq2RSE" } diff --git a/packs/src/spells/level-2/branding-smite.json b/packs/src/spells/level-2/branding-smite.json index 65d069eb26..a66f724224 100644 --- a/packs/src/spells/level-2/branding-smite.json +++ b/packs/src/spells/level-2/branding-smite.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234074, "modifiedTime": 1671220968731, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7UwUjJ6owIQkEPrs" } diff --git a/packs/src/spells/level-2/calm-emotions.json b/packs/src/spells/level-2/calm-emotions.json index 38d62e6f79..18aeb29eed 100644 --- a/packs/src/spells/level-2/calm-emotions.json +++ b/packs/src/spells/level-2/calm-emotions.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234063, "modifiedTime": 1671220968584, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3MYDjS6k9IYL0aTj" } diff --git a/packs/src/spells/level-2/continual-flame.json b/packs/src/spells/level-2/continual-flame.json index b1e4345583..d25d17b28a 100644 --- a/packs/src/spells/level-2/continual-flame.json +++ b/packs/src/spells/level-2/continual-flame.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234126, "modifiedTime": 1674761578009, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MK6gpQMeDFo0cP9f" } diff --git a/packs/src/spells/level-2/darkness.json b/packs/src/spells/level-2/darkness.json index fda1d6f718..d3225d7c77 100644 --- a/packs/src/spells/level-2/darkness.json +++ b/packs/src/spells/level-2/darkness.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234139, "modifiedTime": 1671220969947, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!S7VbUetIfVT7B6Eq" } diff --git a/packs/src/spells/level-2/darkvision.json b/packs/src/spells/level-2/darkvision.json index 56bee8c8cc..7864234e40 100644 --- a/packs/src/spells/level-2/darkvision.json +++ b/packs/src/spells/level-2/darkvision.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234195, "modifiedTime": 1671220970608, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hJ6ZiA3fpoY8v9cp" } diff --git a/packs/src/spells/level-2/detect-thoughts.json b/packs/src/spells/level-2/detect-thoughts.json index fba218d01d..9e769ac8f8 100644 --- a/packs/src/spells/level-2/detect-thoughts.json +++ b/packs/src/spells/level-2/detect-thoughts.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234229, "modifiedTime": 1671220971305, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ppWAAEul0QHtm4er" } diff --git a/packs/src/spells/level-2/enhance-ability.json b/packs/src/spells/level-2/enhance-ability.json index b65beecf85..0deb2a3035 100644 --- a/packs/src/spells/level-2/enhance-ability.json +++ b/packs/src/spells/level-2/enhance-ability.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234084, "modifiedTime": 1671220968836, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9eOZDBImVKxbeOyZ" } diff --git a/packs/src/spells/level-2/enlarge-reduce.json b/packs/src/spells/level-2/enlarge-reduce.json index 4f8cf728a2..f6537d0a5b 100644 --- a/packs/src/spells/level-2/enlarge-reduce.json +++ b/packs/src/spells/level-2/enlarge-reduce.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234153, "modifiedTime": 1671220970118, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WahI41a3goVUg0x1" } diff --git a/packs/src/spells/level-2/enthrall.json b/packs/src/spells/level-2/enthrall.json index cb032ddbd8..af5c64a146 100644 --- a/packs/src/spells/level-2/enthrall.json +++ b/packs/src/spells/level-2/enthrall.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234061, "modifiedTime": 1671220968552, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!30ZgXtijJVCxQk5N" } diff --git a/packs/src/spells/level-2/find-steed.json b/packs/src/spells/level-2/find-steed.json index bb4a9f957c..7ecf6506e1 100644 --- a/packs/src/spells/level-2/find-steed.json +++ b/packs/src/spells/level-2/find-steed.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -98,5 +103,6 @@ "createdTime": 1661787234070, "modifiedTime": 1671220968659, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!5eh2HFbS13078Y3H" } diff --git a/packs/src/spells/level-2/find-traps.json b/packs/src/spells/level-2/find-traps.json index 40245b9ccb..e58377fad1 100644 --- a/packs/src/spells/level-2/find-traps.json +++ b/packs/src/spells/level-2/find-traps.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234118, "modifiedTime": 1671220969148, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!KrM3oHVv13RAALrS" } diff --git a/packs/src/spells/level-2/flame-blade.json b/packs/src/spells/level-2/flame-blade.json index 48f6716368..4979863666 100644 --- a/packs/src/spells/level-2/flame-blade.json +++ b/packs/src/spells/level-2/flame-blade.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234089, "modifiedTime": 1671220968875, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Advtckpz1B733bu9" } diff --git a/packs/src/spells/level-2/flaming-sphere.json b/packs/src/spells/level-2/flaming-sphere.json index ba774c891a..659e5087b1 100644 --- a/packs/src/spells/level-2/flaming-sphere.json +++ b/packs/src/spells/level-2/flaming-sphere.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234104, "modifiedTime": 1671220969016, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!FjYE214HTERCRZNm" } diff --git a/packs/src/spells/level-2/gentle-repose.json b/packs/src/spells/level-2/gentle-repose.json index 1a88156309..ea8cede51f 100644 --- a/packs/src/spells/level-2/gentle-repose.json +++ b/packs/src/spells/level-2/gentle-repose.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234221, "modifiedTime": 1671220971191, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!n4JDcFKe5ikzYmAc" } diff --git a/packs/src/spells/level-2/gust-of-wind.json b/packs/src/spells/level-2/gust-of-wind.json index 7f68613255..05130c379c 100644 --- a/packs/src/spells/level-2/gust-of-wind.json +++ b/packs/src/spells/level-2/gust-of-wind.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234103, "modifiedTime": 1671220969012, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!FSMy6VAjDnXY9vWz" } diff --git a/packs/src/spells/level-2/heat-metal.json b/packs/src/spells/level-2/heat-metal.json index 9e20ca4102..523a659019 100644 --- a/packs/src/spells/level-2/heat-metal.json +++ b/packs/src/spells/level-2/heat-metal.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234061, "modifiedTime": 1671220968543, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!2yHXEcrRbadZDr5M" } diff --git a/packs/src/spells/level-2/hold-person.json b/packs/src/spells/level-2/hold-person.json index c726864650..56bda83c64 100644 --- a/packs/src/spells/level-2/hold-person.json +++ b/packs/src/spells/level-2/hold-person.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234063, "modifiedTime": 1671220968566, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3Lo9boi7P2ro6QV4" } diff --git a/packs/src/spells/level-2/invisibility.json b/packs/src/spells/level-2/invisibility.json index 9ccb7eefc8..955c930d3f 100644 --- a/packs/src/spells/level-2/invisibility.json +++ b/packs/src/spells/level-2/invisibility.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234056, "modifiedTime": 1671220968430, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!1N8dDMMgZ1h1YJ3B" } diff --git a/packs/src/spells/level-2/knock.json b/packs/src/spells/level-2/knock.json index ccfe5bfc9d..552469cbdb 100644 --- a/packs/src/spells/level-2/knock.json +++ b/packs/src/spells/level-2/knock.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234057, "modifiedTime": 1671220968471, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!1nhIxh0DsJsntCfj" } diff --git a/packs/src/spells/level-2/lesser-restoration.json b/packs/src/spells/level-2/lesser-restoration.json index 71eda90e27..313b43581d 100644 --- a/packs/src/spells/level-2/lesser-restoration.json +++ b/packs/src/spells/level-2/lesser-restoration.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234103, "modifiedTime": 1671220969005, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!F0GsG0SJzsIOacwV" } diff --git a/packs/src/spells/level-2/levitate.json b/packs/src/spells/level-2/levitate.json index ee90276b36..ec54f3e93e 100644 --- a/packs/src/spells/level-2/levitate.json +++ b/packs/src/spells/level-2/levitate.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234127, "modifiedTime": 1671220969799, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MRxldJd6C4bsBo3O" } diff --git a/packs/src/spells/level-2/locate-animals-or-plants.json b/packs/src/spells/level-2/locate-animals-or-plants.json index 121c7897f9..f3228fd181 100644 --- a/packs/src/spells/level-2/locate-animals-or-plants.json +++ b/packs/src/spells/level-2/locate-animals-or-plants.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234110, "modifiedTime": 1671220969062, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Iv2qqSAT7OkXKPFx" } diff --git a/packs/src/spells/level-2/locate-object.json b/packs/src/spells/level-2/locate-object.json index 9f72384dd4..256136e622 100644 --- a/packs/src/spells/level-2/locate-object.json +++ b/packs/src/spells/level-2/locate-object.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234143, "modifiedTime": 1671220970003, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!SleYkHovQ8NagmeV" } diff --git a/packs/src/spells/level-2/magic-mouth.json b/packs/src/spells/level-2/magic-mouth.json index 715f3d6de2..2779c0880b 100644 --- a/packs/src/spells/level-2/magic-mouth.json +++ b/packs/src/spells/level-2/magic-mouth.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234078, "modifiedTime": 1674761617008, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7v06rdmUakoTk1LQ" } diff --git a/packs/src/spells/level-2/magic-weapon.json b/packs/src/spells/level-2/magic-weapon.json index 1896d5552a..3ceb554094 100644 --- a/packs/src/spells/level-2/magic-weapon.json +++ b/packs/src/spells/level-2/magic-weapon.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234141, "modifiedTime": 1671220969994, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Sgjrf8qqv97CCWM4" } diff --git a/packs/src/spells/level-2/mirror-image.json b/packs/src/spells/level-2/mirror-image.json index cdc3e6b178..159049f3bb 100644 --- a/packs/src/spells/level-2/mirror-image.json +++ b/packs/src/spells/level-2/mirror-image.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234155, "modifiedTime": 1671220970140, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!X4c8xCkmF8U9HUMz" } diff --git a/packs/src/spells/level-2/misty-step.json b/packs/src/spells/level-2/misty-step.json index 92dc90546d..99d86c16e4 100644 --- a/packs/src/spells/level-2/misty-step.json +++ b/packs/src/spells/level-2/misty-step.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234238, "modifiedTime": 1671220971408, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!wqfAVANuQonNBgnL" } diff --git a/packs/src/spells/level-2/moonbeam.json b/packs/src/spells/level-2/moonbeam.json index 1caa558492..da2eafc02b 100644 --- a/packs/src/spells/level-2/moonbeam.json +++ b/packs/src/spells/level-2/moonbeam.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234171, "modifiedTime": 1671220970330, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!bV3yun6MIuFj71Er" } diff --git a/packs/src/spells/level-2/pass-without-trace.json b/packs/src/spells/level-2/pass-without-trace.json index 5b87c8e468..de67ea0916 100644 --- a/packs/src/spells/level-2/pass-without-trace.json +++ b/packs/src/spells/level-2/pass-without-trace.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234227, "modifiedTime": 1671220971291, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!pRMvmknwLf2tdMTj" } diff --git a/packs/src/spells/level-2/prayer-of-healing.json b/packs/src/spells/level-2/prayer-of-healing.json index 41412f6905..76ee37a6b5 100644 --- a/packs/src/spells/level-2/prayer-of-healing.json +++ b/packs/src/spells/level-2/prayer-of-healing.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -103,5 +108,6 @@ "createdTime": 1661787234126, "modifiedTime": 1671220969788, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MOEmz9N0j0QPkKEE" } diff --git a/packs/src/spells/level-2/protection-from-poison.json b/packs/src/spells/level-2/protection-from-poison.json index dd63ba2fb9..1683cfa629 100644 --- a/packs/src/spells/level-2/protection-from-poison.json +++ b/packs/src/spells/level-2/protection-from-poison.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234123, "modifiedTime": 1671220969701, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MAxM77CDUu8dgIRQ" } diff --git a/packs/src/spells/level-2/ray-of-enfeeblement.json b/packs/src/spells/level-2/ray-of-enfeeblement.json index 86942d25a8..3f07ac6fea 100644 --- a/packs/src/spells/level-2/ray-of-enfeeblement.json +++ b/packs/src/spells/level-2/ray-of-enfeeblement.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234130, "modifiedTime": 1671220969845, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ODhLKBxLnvvLOnw1" } diff --git a/packs/src/spells/level-2/rope-trick.json b/packs/src/spells/level-2/rope-trick.json index 97179a86db..1f2e045719 100644 --- a/packs/src/spells/level-2/rope-trick.json +++ b/packs/src/spells/level-2/rope-trick.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234169, "modifiedTime": 1671220970312, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ap4dmtshjEbwU3Ts" } diff --git a/packs/src/spells/level-2/scorching-ray.json b/packs/src/spells/level-2/scorching-ray.json index 1f12905b51..f1d9779d97 100644 --- a/packs/src/spells/level-2/scorching-ray.json +++ b/packs/src/spells/level-2/scorching-ray.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234077, "modifiedTime": 1671220968765, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7u2obDvuvtZBkTfq" } diff --git a/packs/src/spells/level-2/see-invisibility.json b/packs/src/spells/level-2/see-invisibility.json index f70b486558..a6b6a433fb 100644 --- a/packs/src/spells/level-2/see-invisibility.json +++ b/packs/src/spells/level-2/see-invisibility.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234098, "modifiedTime": 1671220968959, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!DQzlB5Y3k791W5bH" } diff --git a/packs/src/spells/level-2/shatter.json b/packs/src/spells/level-2/shatter.json index 49846205da..8b9cb1b263 100644 --- a/packs/src/spells/level-2/shatter.json +++ b/packs/src/spells/level-2/shatter.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234237, "modifiedTime": 1671220971385, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!wJKpSvSTbSkTjqyb" } diff --git a/packs/src/spells/level-2/silence.json b/packs/src/spells/level-2/silence.json index 223c8ced27..41107d476e 100644 --- a/packs/src/spells/level-2/silence.json +++ b/packs/src/spells/level-2/silence.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234069, "modifiedTime": 1671220968651, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!5VhqFROQYjr1P9lp" } diff --git a/packs/src/spells/level-2/spider-climb.json b/packs/src/spells/level-2/spider-climb.json index 3d0f94f818..740b049829 100644 --- a/packs/src/spells/level-2/spider-climb.json +++ b/packs/src/spells/level-2/spider-climb.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234116, "modifiedTime": 1671220969129, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!KJRVzeMQXPj8Gtyx" } diff --git a/packs/src/spells/level-2/spike-growth.json b/packs/src/spells/level-2/spike-growth.json index 7de3c2bf51..fadd3253ee 100644 --- a/packs/src/spells/level-2/spike-growth.json +++ b/packs/src/spells/level-2/spike-growth.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234085, "modifiedTime": 1671220968842, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9gYGkrL6qFTsE6fw" } diff --git a/packs/src/spells/level-2/spiritual-weapon.json b/packs/src/spells/level-2/spiritual-weapon.json index cb42d24734..6c1e8b1a90 100644 --- a/packs/src/spells/level-2/spiritual-weapon.json +++ b/packs/src/spells/level-2/spiritual-weapon.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234115, "modifiedTime": 1671220969123, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!JbxsYXxSOTZbf9I0" } diff --git a/packs/src/spells/level-2/suggestion.json b/packs/src/spells/level-2/suggestion.json index d195b2267b..4b7b6f5eae 100644 --- a/packs/src/spells/level-2/suggestion.json +++ b/packs/src/spells/level-2/suggestion.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234245, "modifiedTime": 1671220971507, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zMAWdyc8UVb37BK4" } diff --git a/packs/src/spells/level-2/warding-bond.json b/packs/src/spells/level-2/warding-bond.json index 3d3e892c22..5551c4a2ef 100644 --- a/packs/src/spells/level-2/warding-bond.json +++ b/packs/src/spells/level-2/warding-bond.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234114, "modifiedTime": 1671220969113, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!JVhKeanAXZH62DrF" } diff --git a/packs/src/spells/level-2/web.json b/packs/src/spells/level-2/web.json index fc78a3c96d..45d3b33628 100644 --- a/packs/src/spells/level-2/web.json +++ b/packs/src/spells/level-2/web.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234147, "modifiedTime": 1671220970079, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!UJJu9c2UvCzVljiP" } diff --git a/packs/src/spells/level-2/zone-of-truth.json b/packs/src/spells/level-2/zone-of-truth.json index 6a33360096..7e8538ad28 100644 --- a/packs/src/spells/level-2/zone-of-truth.json +++ b/packs/src/spells/level-2/zone-of-truth.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234097, "modifiedTime": 1671220968950, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!CylBa7jR8DSbo8Z3" } diff --git a/packs/src/spells/level-3/animate-dead.json b/packs/src/spells/level-3/animate-dead.json index 50d20ca34e..d6b0f9e41f 100644 --- a/packs/src/spells/level-3/animate-dead.json +++ b/packs/src/spells/level-3/animate-dead.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234225, "modifiedTime": 1671220971248, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!oyE5nVppa5mde5gT" } diff --git a/packs/src/spells/level-3/beacon-of-hope.json b/packs/src/spells/level-3/beacon-of-hope.json index 01e954b2d1..f3513bf92d 100644 --- a/packs/src/spells/level-3/beacon-of-hope.json +++ b/packs/src/spells/level-3/beacon-of-hope.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234164, "modifiedTime": 1671220970270, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ZU9d6woBdUP8pIPt" } diff --git a/packs/src/spells/level-3/bestow-curse.json b/packs/src/spells/level-3/bestow-curse.json index 5dccb75a73..1d1b36350b 100644 --- a/packs/src/spells/level-3/bestow-curse.json +++ b/packs/src/spells/level-3/bestow-curse.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234226, "modifiedTime": 1671220971284, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!pO4zGe5LmFIYqJiL" } diff --git a/packs/src/spells/level-3/blink.json b/packs/src/spells/level-3/blink.json index 19a029b779..2644705b1b 100644 --- a/packs/src/spells/level-3/blink.json +++ b/packs/src/spells/level-3/blink.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234105, "modifiedTime": 1671220969026, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!GSvLWcdCZLQkilXT" } diff --git a/packs/src/spells/level-3/call-lightning.json b/packs/src/spells/level-3/call-lightning.json index dc4f9b748d..c6da9e8fe7 100644 --- a/packs/src/spells/level-3/call-lightning.json +++ b/packs/src/spells/level-3/call-lightning.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234186, "modifiedTime": 1671220970511, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ehvmg9U9fcMEhE4z" } diff --git a/packs/src/spells/level-3/clairvoyance.json b/packs/src/spells/level-3/clairvoyance.json index 21a430c099..f6a5f08862 100644 --- a/packs/src/spells/level-3/clairvoyance.json +++ b/packs/src/spells/level-3/clairvoyance.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -98,5 +103,6 @@ "createdTime": 1661787234175, "modifiedTime": 1671220970384, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!cg50KpBkBdPK6vPL" } diff --git a/packs/src/spells/level-3/conjure-animals.json b/packs/src/spells/level-3/conjure-animals.json index e7447505eb..61fc519cb0 100644 --- a/packs/src/spells/level-3/conjure-animals.json +++ b/packs/src/spells/level-3/conjure-animals.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234055, "modifiedTime": 1671220968359, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!1Drt0SHxbEAHxprN" } diff --git a/packs/src/spells/level-3/counterspell.json b/packs/src/spells/level-3/counterspell.json index dcf9f4a76e..7b3177e24b 100644 --- a/packs/src/spells/level-3/counterspell.json +++ b/packs/src/spells/level-3/counterspell.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "reaction", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234102, "modifiedTime": 1671220968994, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Ek45cBpVXvJdv1Qy" } diff --git a/packs/src/spells/level-3/create-food-and-water.json b/packs/src/spells/level-3/create-food-and-water.json index 14173ed812..1abb4fc143 100644 --- a/packs/src/spells/level-3/create-food-and-water.json +++ b/packs/src/spells/level-3/create-food-and-water.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234092, "modifiedTime": 1671220968918, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!BV0mpbHh29IbbIj5" } diff --git a/packs/src/spells/level-3/daylight.json b/packs/src/spells/level-3/daylight.json index 077988609f..32fb79490b 100644 --- a/packs/src/spells/level-3/daylight.json +++ b/packs/src/spells/level-3/daylight.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234091, "modifiedTime": 1671220968908, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!BP3GCwa66IAw1yTG" } diff --git a/packs/src/spells/level-3/dispel-magic.json b/packs/src/spells/level-3/dispel-magic.json index c7d356f147..c97ad4cf08 100644 --- a/packs/src/spells/level-3/dispel-magic.json +++ b/packs/src/spells/level-3/dispel-magic.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234054, "modifiedTime": 1671220968331, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!15Fa6q1nH27XfbR8" } diff --git a/packs/src/spells/level-3/fear.json b/packs/src/spells/level-3/fear.json index 86d7bf2aea..831e8cadb1 100644 --- a/packs/src/spells/level-3/fear.json +++ b/packs/src/spells/level-3/fear.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234157, "modifiedTime": 1671220970168, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XXUDGFELgoskdOD0" } diff --git a/packs/src/spells/level-3/fireball.json b/packs/src/spells/level-3/fireball.json index 72624dfc5e..e6619c6677 100644 --- a/packs/src/spells/level-3/fireball.json +++ b/packs/src/spells/level-3/fireball.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234246, "modifiedTime": 1671220971520, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ztgcdrWPshKRpFd0" } diff --git a/packs/src/spells/level-3/fly.json b/packs/src/spells/level-3/fly.json index 5b46ac2308..c1045aa733 100644 --- a/packs/src/spells/level-3/fly.json +++ b/packs/src/spells/level-3/fly.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234243, "modifiedTime": 1671220971464, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!yfbK8gZqESlaoY5t" } diff --git a/packs/src/spells/level-3/gaseous-form.json b/packs/src/spells/level-3/gaseous-form.json index 8d5c71d524..6a5fbc08d0 100644 --- a/packs/src/spells/level-3/gaseous-form.json +++ b/packs/src/spells/level-3/gaseous-form.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234058, "modifiedTime": 1671220968521, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!2IWiZAJtOGDoKjiz" } diff --git a/packs/src/spells/level-3/glyph-of-warding.json b/packs/src/spells/level-3/glyph-of-warding.json index a1762428ed..058369e99d 100644 --- a/packs/src/spells/level-3/glyph-of-warding.json +++ b/packs/src/spells/level-3/glyph-of-warding.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "hour", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234226, "modifiedTime": 1674761642481, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!pB7XVYwdGNcUG935" } diff --git a/packs/src/spells/level-3/haste.json b/packs/src/spells/level-3/haste.json index cc27db58de..e9e9bf1417 100644 --- a/packs/src/spells/level-3/haste.json +++ b/packs/src/spells/level-3/haste.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234143, "modifiedTime": 1671220970012, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Szvk5FEVQW3uhJi5" } diff --git a/packs/src/spells/level-3/hypnotic-pattern.json b/packs/src/spells/level-3/hypnotic-pattern.json index b2e6cb346a..0272a05eec 100644 --- a/packs/src/spells/level-3/hypnotic-pattern.json +++ b/packs/src/spells/level-3/hypnotic-pattern.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234072, "modifiedTime": 1671220968703, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!6g3WLOZ2u0EbaLAd" } diff --git a/packs/src/spells/level-3/lightning-bolt.json b/packs/src/spells/level-3/lightning-bolt.json index e8a37c4921..00f898bcc8 100644 --- a/packs/src/spells/level-3/lightning-bolt.json +++ b/packs/src/spells/level-3/lightning-bolt.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234110, "modifiedTime": 1671220969066, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!IyikgTEOTv701jgQ" } diff --git a/packs/src/spells/level-3/magic-circle.json b/packs/src/spells/level-3/magic-circle.json index e900d8a9c3..2bededaca0 100644 --- a/packs/src/spells/level-3/magic-circle.json +++ b/packs/src/spells/level-3/magic-circle.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234241, "modifiedTime": 1671220971432, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!y8A4HfTwd93ypdEz" } diff --git a/packs/src/spells/level-3/major-image.json b/packs/src/spells/level-3/major-image.json index 820d1bb6cb..cbe0f02ebc 100644 --- a/packs/src/spells/level-3/major-image.json +++ b/packs/src/spells/level-3/major-image.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234222, "modifiedTime": 1671220971207, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!nslx2nT3p4lNkmdp" } diff --git a/packs/src/spells/level-3/mass-healing-word.json b/packs/src/spells/level-3/mass-healing-word.json index 13c9b583e9..883a3e3d07 100644 --- a/packs/src/spells/level-3/mass-healing-word.json +++ b/packs/src/spells/level-3/mass-healing-word.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234062, "modifiedTime": 1671220968556, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!34ddoYIrnOZ2GFYi" } diff --git a/packs/src/spells/level-3/meld-into-stone.json b/packs/src/spells/level-3/meld-into-stone.json index c15204032d..c260d562da 100644 --- a/packs/src/spells/level-3/meld-into-stone.json +++ b/packs/src/spells/level-3/meld-into-stone.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234071, "modifiedTime": 1671220968669, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!64uo4fHriHLjRUrX" } diff --git a/packs/src/spells/level-3/nondetection.json b/packs/src/spells/level-3/nondetection.json index 48bc339136..d867018911 100644 --- a/packs/src/spells/level-3/nondetection.json +++ b/packs/src/spells/level-3/nondetection.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234168, "modifiedTime": 1671220970308, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!aU62xVUBYkAQWIHv" } diff --git a/packs/src/spells/level-3/phantom-steed.json b/packs/src/spells/level-3/phantom-steed.json index 52952cd9db..fddc24631f 100644 --- a/packs/src/spells/level-3/phantom-steed.json +++ b/packs/src/spells/level-3/phantom-steed.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234238, "modifiedTime": 1671220971403, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!wpx42mtoZ5BmXRs1" } diff --git a/packs/src/spells/level-3/plant-growth.json b/packs/src/spells/level-3/plant-growth.json index 31d61a4612..07f418f192 100644 --- a/packs/src/spells/level-3/plant-growth.json +++ b/packs/src/spells/level-3/plant-growth.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234162, "modifiedTime": 1671220970228, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!YWtwzp6ZnQJMEmVW" } diff --git a/packs/src/spells/level-3/protection-from-energy.json b/packs/src/spells/level-3/protection-from-energy.json index 3c08614bf5..a32ccd1073 100644 --- a/packs/src/spells/level-3/protection-from-energy.json +++ b/packs/src/spells/level-3/protection-from-energy.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234210, "modifiedTime": 1671220971085, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!j8NtLXOOJ3GAKF8I" } diff --git a/packs/src/spells/level-3/remove-curse.json b/packs/src/spells/level-3/remove-curse.json index 5d83b0c8b4..e1d3e4fce9 100644 --- a/packs/src/spells/level-3/remove-curse.json +++ b/packs/src/spells/level-3/remove-curse.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234157, "modifiedTime": 1671220970178, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XZhdgVK3cLoxNCQl" } diff --git a/packs/src/spells/level-3/revivify.json b/packs/src/spells/level-3/revivify.json index b7c3f154f1..f220f35b68 100644 --- a/packs/src/spells/level-3/revivify.json +++ b/packs/src/spells/level-3/revivify.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234122, "modifiedTime": 1671220969191, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LmRHHMtplpxr9fX6" } diff --git a/packs/src/spells/level-3/sending.json b/packs/src/spells/level-3/sending.json index 008dab9a40..be0a957dbe 100644 --- a/packs/src/spells/level-3/sending.json +++ b/packs/src/spells/level-3/sending.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234106, "modifiedTime": 1671220969030, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!GtGjNjPBgUHxGYAD" } diff --git a/packs/src/spells/level-3/sleet-storm.json b/packs/src/spells/level-3/sleet-storm.json index b7bf6f6669..f247f376f8 100644 --- a/packs/src/spells/level-3/sleet-storm.json +++ b/packs/src/spells/level-3/sleet-storm.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234181, "modifiedTime": 1671220970452, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dhqBY4TvVjxVmOZd" } diff --git a/packs/src/spells/level-3/slow.json b/packs/src/spells/level-3/slow.json index 9286e39b3e..2ccdee274b 100644 --- a/packs/src/spells/level-3/slow.json +++ b/packs/src/spells/level-3/slow.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234243, "modifiedTime": 1671220971484, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!yqUDoxk4x0NWG5Bz" } diff --git a/packs/src/spells/level-3/speak-with-dead.json b/packs/src/spells/level-3/speak-with-dead.json index 1e9423e2c0..393d0b3d3f 100644 --- a/packs/src/spells/level-3/speak-with-dead.json +++ b/packs/src/spells/level-3/speak-with-dead.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234108, "modifiedTime": 1671220969048, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!I2LUSF5ogc7Bj62e" } diff --git a/packs/src/spells/level-3/speak-with-plants.json b/packs/src/spells/level-3/speak-with-plants.json index ee01578432..0871e4d345 100644 --- a/packs/src/spells/level-3/speak-with-plants.json +++ b/packs/src/spells/level-3/speak-with-plants.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234060, "modifiedTime": 1671220968535, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!2VXGS206tuChoeXy" } diff --git a/packs/src/spells/level-3/spirit-guardians.json b/packs/src/spells/level-3/spirit-guardians.json index b04345a18f..b95b9f9029 100644 --- a/packs/src/spells/level-3/spirit-guardians.json +++ b/packs/src/spells/level-3/spirit-guardians.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234235, "modifiedTime": 1671220971355, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!uCud2s4TjMfjiXUb" } diff --git a/packs/src/spells/level-3/stinking-cloud.json b/packs/src/spells/level-3/stinking-cloud.json index 6052c5ce76..7b931e1d9d 100644 --- a/packs/src/spells/level-3/stinking-cloud.json +++ b/packs/src/spells/level-3/stinking-cloud.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234146, "modifiedTime": 1671220970050, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!TwlD4PLcltv7Xh7j" } diff --git a/packs/src/spells/level-3/tiny-hut.json b/packs/src/spells/level-3/tiny-hut.json index 52e32638ed..22a93321fc 100644 --- a/packs/src/spells/level-3/tiny-hut.json +++ b/packs/src/spells/level-3/tiny-hut.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234129, "modifiedTime": 1671220969825, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!NXWWWgHtWb7Nv21F" } diff --git a/packs/src/spells/level-3/tongues.json b/packs/src/spells/level-3/tongues.json index b11a3bdfc2..29fb6a72f1 100644 --- a/packs/src/spells/level-3/tongues.json +++ b/packs/src/spells/level-3/tongues.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234193, "modifiedTime": 1671220970589, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gopnZvS0c2jD5FP8" } diff --git a/packs/src/spells/level-3/vampiric-touch.json b/packs/src/spells/level-3/vampiric-touch.json index db73e413a8..921cb1e4cc 100644 --- a/packs/src/spells/level-3/vampiric-touch.json +++ b/packs/src/spells/level-3/vampiric-touch.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234148, "modifiedTime": 1671220970083, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!UfHQhA54M4323gVO" } diff --git a/packs/src/spells/level-3/water-breathing.json b/packs/src/spells/level-3/water-breathing.json index b5b2a45b32..c097f10d62 100644 --- a/packs/src/spells/level-3/water-breathing.json +++ b/packs/src/spells/level-3/water-breathing.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234054, "modifiedTime": 1671220968323, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!13uVuBQP6VaiSPvC" } diff --git a/packs/src/spells/level-3/water-walk.json b/packs/src/spells/level-3/water-walk.json index 40db68d937..dd9b594651 100644 --- a/packs/src/spells/level-3/water-walk.json +++ b/packs/src/spells/level-3/water-walk.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234161, "modifiedTime": 1671220970225, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!YBda6nLKjxdT1LbS" } diff --git a/packs/src/spells/level-3/wind-wall.json b/packs/src/spells/level-3/wind-wall.json index 2a96abe7e0..929419a75c 100644 --- a/packs/src/spells/level-3/wind-wall.json +++ b/packs/src/spells/level-3/wind-wall.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234188, "modifiedTime": 1671220970525, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ew6GA8dJy2spQmFW" } diff --git a/packs/src/spells/level-4/arcane-eye.json b/packs/src/spells/level-4/arcane-eye.json index 0584d1ce01..9ca2a2dd3c 100644 --- a/packs/src/spells/level-4/arcane-eye.json +++ b/packs/src/spells/level-4/arcane-eye.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234109, "modifiedTime": 1671220969058, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ImlCJQwR1VL40Qem" } diff --git a/packs/src/spells/level-4/banishment.json b/packs/src/spells/level-4/banishment.json index 6fb6d1190c..376dd31e43 100644 --- a/packs/src/spells/level-4/banishment.json +++ b/packs/src/spells/level-4/banishment.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234230, "modifiedTime": 1671220971314, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!pxpb2eOB6bv4phAf" } diff --git a/packs/src/spells/level-4/black-tentacles.json b/packs/src/spells/level-4/black-tentacles.json index 20eaf438a3..76c1c7a1a0 100644 --- a/packs/src/spells/level-4/black-tentacles.json +++ b/packs/src/spells/level-4/black-tentacles.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234098, "modifiedTime": 1671220968954, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!DGONTFbk5eORs5qv" } diff --git a/packs/src/spells/level-4/blight.json b/packs/src/spells/level-4/blight.json index d571dd1f68..93baa50ccc 100644 --- a/packs/src/spells/level-4/blight.json +++ b/packs/src/spells/level-4/blight.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234230, "modifiedTime": 1671220971318, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!pybg5MNc3lkerH4Y" } diff --git a/packs/src/spells/level-4/compulsion.json b/packs/src/spells/level-4/compulsion.json index 11cbe14288..e9f2278c7b 100644 --- a/packs/src/spells/level-4/compulsion.json +++ b/packs/src/spells/level-4/compulsion.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234132, "modifiedTime": 1671220969883, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!P6f1PPKPd9BCb742" } diff --git a/packs/src/spells/level-4/confusion.json b/packs/src/spells/level-4/confusion.json index e9ee700fa1..66f416751d 100644 --- a/packs/src/spells/level-4/confusion.json +++ b/packs/src/spells/level-4/confusion.json @@ -9,7 +9,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234085, "modifiedTime": 1671220968846, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9hQXdMSmerkTsHDe" } diff --git a/packs/src/spells/level-4/conjure-minor-elementals.json b/packs/src/spells/level-4/conjure-minor-elementals.json index ad875f72e4..343d66f82e 100644 --- a/packs/src/spells/level-4/conjure-minor-elementals.json +++ b/packs/src/spells/level-4/conjure-minor-elementals.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234117, "modifiedTime": 1671220969137, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!KgEw3sDr39C6g8nY" } diff --git a/packs/src/spells/level-4/conjure-woodland-beings.json b/packs/src/spells/level-4/conjure-woodland-beings.json index 2204c66fcf..820150132f 100644 --- a/packs/src/spells/level-4/conjure-woodland-beings.json +++ b/packs/src/spells/level-4/conjure-woodland-beings.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234178, "modifiedTime": 1671220970427, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dEfSELiY1eO3cpX9" } diff --git a/packs/src/spells/level-4/control-water.json b/packs/src/spells/level-4/control-water.json index 86fc6e23e6..cf0e19fe85 100644 --- a/packs/src/spells/level-4/control-water.json +++ b/packs/src/spells/level-4/control-water.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234076, "modifiedTime": 1671220968756, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7fFHlBk3UNX8gPKL" } diff --git a/packs/src/spells/level-4/death-ward.json b/packs/src/spells/level-4/death-ward.json index f2fd004618..6aad329843 100644 --- a/packs/src/spells/level-4/death-ward.json +++ b/packs/src/spells/level-4/death-ward.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234149, "modifiedTime": 1671220970092, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!VtCXMdyM6mAdIJZb" } diff --git a/packs/src/spells/level-4/dimension-door.json b/packs/src/spells/level-4/dimension-door.json index 183ea4fcc7..47640c2e6c 100644 --- a/packs/src/spells/level-4/dimension-door.json +++ b/packs/src/spells/level-4/dimension-door.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234087, "modifiedTime": 1671220968859, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!A4RsPuSvB9wFtz1j" } diff --git a/packs/src/spells/level-4/divination.json b/packs/src/spells/level-4/divination.json index 8b3f6f4166..f687e75e48 100644 --- a/packs/src/spells/level-4/divination.json +++ b/packs/src/spells/level-4/divination.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234159, "modifiedTime": 1671220970197, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XqzXSKNR75ZdYTA9" } diff --git a/packs/src/spells/level-4/dominate-beast.json b/packs/src/spells/level-4/dominate-beast.json index 9fc71e2198..96d063963a 100644 --- a/packs/src/spells/level-4/dominate-beast.json +++ b/packs/src/spells/level-4/dominate-beast.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234122, "modifiedTime": 1671220969198, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LrPvWHBPmiMQQsKB" } diff --git a/packs/src/spells/level-4/fabricate.json b/packs/src/spells/level-4/fabricate.json index 33ab49f503..42d8125f06 100644 --- a/packs/src/spells/level-4/fabricate.json +++ b/packs/src/spells/level-4/fabricate.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -98,5 +103,6 @@ "createdTime": 1661787234073, "modifiedTime": 1671220968721, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7Fw7Bf1k3xxDVr5L" } diff --git a/packs/src/spells/level-4/faithful-hound.json b/packs/src/spells/level-4/faithful-hound.json index 9a7020e860..786ed3e9f0 100644 --- a/packs/src/spells/level-4/faithful-hound.json +++ b/packs/src/spells/level-4/faithful-hound.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234140, "modifiedTime": 1671220969974, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!SAj03P2WBDiWu7zu" } diff --git a/packs/src/spells/level-4/fire-shield.json b/packs/src/spells/level-4/fire-shield.json index 6a36494532..732d92dbfc 100644 --- a/packs/src/spells/level-4/fire-shield.json +++ b/packs/src/spells/level-4/fire-shield.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -121,7 +126,8 @@ "origin": "Item.OtcTsffCQaOFkr9K", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!items.effects!avD5XUtkBPQQR97c.lVKx8swB08jm6IFE" }, { "_id": "UUXwEKSPX4nYfDzo", @@ -149,7 +155,8 @@ "origin": "Item.OtcTsffCQaOFkr9K", "tint": null, "transfer": true, - "sort": 0 + "sort": 0, + "_key": "!items.effects!avD5XUtkBPQQR97c.UUXwEKSPX4nYfDzo" } ], "folder": null, @@ -160,5 +167,6 @@ "createdTime": 1661787234170, "modifiedTime": 1671220970322, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!avD5XUtkBPQQR97c" } diff --git a/packs/src/spells/level-4/freedom-of-movement.json b/packs/src/spells/level-4/freedom-of-movement.json index 758736601d..c7d5d451bd 100644 --- a/packs/src/spells/level-4/freedom-of-movement.json +++ b/packs/src/spells/level-4/freedom-of-movement.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234180, "modifiedTime": 1671220970446, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!da0a1t2FqaTjRZGT" } diff --git a/packs/src/spells/level-4/giant-insect.json b/packs/src/spells/level-4/giant-insect.json index 8e38ed1c26..25ddcd9a12 100644 --- a/packs/src/spells/level-4/giant-insect.json +++ b/packs/src/spells/level-4/giant-insect.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234177, "modifiedTime": 1671220970408, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!czXrVRx6XYRWsHAi" } diff --git a/packs/src/spells/level-4/greater-invisibility.json b/packs/src/spells/level-4/greater-invisibility.json index 9e021e3602..443aaf2de6 100644 --- a/packs/src/spells/level-4/greater-invisibility.json +++ b/packs/src/spells/level-4/greater-invisibility.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234234, "modifiedTime": 1671220971344, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!tEpDmYZNGc9f5OhJ" } diff --git a/packs/src/spells/level-4/guardian-of-faith.json b/packs/src/spells/level-4/guardian-of-faith.json index 7c6f878091..204120dbf5 100644 --- a/packs/src/spells/level-4/guardian-of-faith.json +++ b/packs/src/spells/level-4/guardian-of-faith.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234145, "modifiedTime": 1671220970041, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!TgHsuhNasPbhu8MO" } diff --git a/packs/src/spells/level-4/hallucinatory-terrain.json b/packs/src/spells/level-4/hallucinatory-terrain.json index aebc611015..f2f9539a64 100644 --- a/packs/src/spells/level-4/hallucinatory-terrain.json +++ b/packs/src/spells/level-4/hallucinatory-terrain.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -98,5 +103,6 @@ "createdTime": 1661787234233, "modifiedTime": 1671220971340, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!sTIkQK7KuQNOyY0C" } diff --git a/packs/src/spells/level-4/ice-storm.json b/packs/src/spells/level-4/ice-storm.json index 6f7dc6c7ab..288805decc 100644 --- a/packs/src/spells/level-4/ice-storm.json +++ b/packs/src/spells/level-4/ice-storm.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -107,5 +112,6 @@ "createdTime": 1661787234152, "modifiedTime": 1671220970107, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WN2LWEljYU6QqnRH" } diff --git a/packs/src/spells/level-4/locate-creature.json b/packs/src/spells/level-4/locate-creature.json index caf8971ede..13875ccf90 100644 --- a/packs/src/spells/level-4/locate-creature.json +++ b/packs/src/spells/level-4/locate-creature.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234191, "modifiedTime": 1671220970576, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!gXtzz9t1DTzJeLr4" } diff --git a/packs/src/spells/level-4/phantasmal-killer.json b/packs/src/spells/level-4/phantasmal-killer.json index 6d409578a5..649d7302cc 100644 --- a/packs/src/spells/level-4/phantasmal-killer.json +++ b/packs/src/spells/level-4/phantasmal-killer.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234093, "modifiedTime": 1671220968922, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!BYNvBJzHcF5VJhXw" } diff --git a/packs/src/spells/level-4/polymorph.json b/packs/src/spells/level-4/polymorph.json index 22d301658e..0d0837625f 100644 --- a/packs/src/spells/level-4/polymorph.json +++ b/packs/src/spells/level-4/polymorph.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234052, "modifiedTime": 1671220968303, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!04nMsTWkIFvkbXlY" } diff --git a/packs/src/spells/level-4/private-sanctum.json b/packs/src/spells/level-4/private-sanctum.json index c1b9c42281..d68bea70f5 100644 --- a/packs/src/spells/level-4/private-sanctum.json +++ b/packs/src/spells/level-4/private-sanctum.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -98,5 +103,6 @@ "createdTime": 1661787234129, "modifiedTime": 1671220969819, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!NJgxf7pmSsBArIG7" } diff --git a/packs/src/spells/level-4/resilient-sphere.json b/packs/src/spells/level-4/resilient-sphere.json index 114d6ee355..8a2410dd1c 100644 --- a/packs/src/spells/level-4/resilient-sphere.json +++ b/packs/src/spells/level-4/resilient-sphere.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234055, "modifiedTime": 1671220968343, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!1ADstb0Xec6HHRcU" } diff --git a/packs/src/spells/level-4/secret-chest.json b/packs/src/spells/level-4/secret-chest.json index ceb909f10a..f09bdf0039 100644 --- a/packs/src/spells/level-4/secret-chest.json +++ b/packs/src/spells/level-4/secret-chest.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234082, "modifiedTime": 1671220968819, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8sgwRh8NUNkn9Vi0" } diff --git a/packs/src/spells/level-4/stone-shape.json b/packs/src/spells/level-4/stone-shape.json index 73201230d9..406eddc343 100644 --- a/packs/src/spells/level-4/stone-shape.json +++ b/packs/src/spells/level-4/stone-shape.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234137, "modifiedTime": 1671220969928, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!QvGcdRUSNRKEQJlK" } diff --git a/packs/src/spells/level-4/stoneskin.json b/packs/src/spells/level-4/stoneskin.json index 7f2901ff46..3261a6a8af 100644 --- a/packs/src/spells/level-4/stoneskin.json +++ b/packs/src/spells/level-4/stoneskin.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -134,7 +139,8 @@ "tint": null, "transfer": true, "flags": {}, - "sort": 0 + "sort": 0, + "_key": "!items.effects!ReMbjfeOKoSj3O79.cSVCA9h5OEo5lfBE" } ], "folder": null, @@ -145,5 +151,6 @@ "createdTime": 1661787234137, "modifiedTime": 1671220969932, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ReMbjfeOKoSj3O79" } diff --git a/packs/src/spells/level-4/wall-of-fire.json b/packs/src/spells/level-4/wall-of-fire.json index d1353f42b6..9a928c35df 100644 --- a/packs/src/spells/level-4/wall-of-fire.json +++ b/packs/src/spells/level-4/wall-of-fire.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234155, "modifiedTime": 1671220970136, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!X3DrXgxjwI2dvkD6" } diff --git a/packs/src/spells/level-5/animate-objects.json b/packs/src/spells/level-5/animate-objects.json index ad3fb70acc..844f689e27 100644 --- a/packs/src/spells/level-5/animate-objects.json +++ b/packs/src/spells/level-5/animate-objects.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234088, "modifiedTime": 1671220968871, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ATo0Eb63TDtnu6iA" } diff --git a/packs/src/spells/level-5/antilife-shell.json b/packs/src/spells/level-5/antilife-shell.json index 2cb300b0ba..812b5eac90 100644 --- a/packs/src/spells/level-5/antilife-shell.json +++ b/packs/src/spells/level-5/antilife-shell.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234237, "modifiedTime": 1671220971397, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!wXzkqpeFP8eWgJzK" } diff --git a/packs/src/spells/level-5/arcane-hand.json b/packs/src/spells/level-5/arcane-hand.json index cd4cc00b3b..34263e720d 100644 --- a/packs/src/spells/level-5/arcane-hand.json +++ b/packs/src/spells/level-5/arcane-hand.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234166, "modifiedTime": 1671220970294, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!a2KJHCIbY5Mi4Dmn" } diff --git a/packs/src/spells/level-5/awaken.json b/packs/src/spells/level-5/awaken.json index fed3ac3b49..e3c1c0f44b 100644 --- a/packs/src/spells/level-5/awaken.json +++ b/packs/src/spells/level-5/awaken.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "hour", "cost": 8, @@ -98,5 +103,6 @@ "createdTime": 1661787234124, "modifiedTime": 1671220969745, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MCEpGpvovcXagwQS" } diff --git a/packs/src/spells/level-5/cloudkill.json b/packs/src/spells/level-5/cloudkill.json index 1d878c2077..c4a1cf4495 100644 --- a/packs/src/spells/level-5/cloudkill.json +++ b/packs/src/spells/level-5/cloudkill.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234121, "modifiedTime": 1671220969172, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LkvI11Uue774QBKZ" } diff --git a/packs/src/spells/level-5/commune-with-nature.json b/packs/src/spells/level-5/commune-with-nature.json index 5eccb559c0..36c3358675 100644 --- a/packs/src/spells/level-5/commune-with-nature.json +++ b/packs/src/spells/level-5/commune-with-nature.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234183, "modifiedTime": 1671220970485, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dp6xny4v8PDoIGjh" } diff --git a/packs/src/spells/level-5/commune.json b/packs/src/spells/level-5/commune.json index 08d25fe507..4d17cf2c9a 100644 --- a/packs/src/spells/level-5/commune.json +++ b/packs/src/spells/level-5/commune.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234177, "modifiedTime": 1671220970412, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!d54VDyFulD9xxY7J" } diff --git a/packs/src/spells/level-5/cone-of-cold.json b/packs/src/spells/level-5/cone-of-cold.json index 0664af097b..c4d65bc300 100644 --- a/packs/src/spells/level-5/cone-of-cold.json +++ b/packs/src/spells/level-5/cone-of-cold.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234138, "modifiedTime": 1671220969937, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!RpKjTlYASrfqUPVA" } diff --git a/packs/src/spells/level-5/conjure-elemental.json b/packs/src/spells/level-5/conjure-elemental.json index 8ac80ea63e..10c7069b3a 100644 --- a/packs/src/spells/level-5/conjure-elemental.json +++ b/packs/src/spells/level-5/conjure-elemental.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234056, "modifiedTime": 1671220968382, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!1LkZvINag7KqBmDR" } diff --git a/packs/src/spells/level-5/contact-other-plane.json b/packs/src/spells/level-5/contact-other-plane.json index 414b389194..d6e962875e 100644 --- a/packs/src/spells/level-5/contact-other-plane.json +++ b/packs/src/spells/level-5/contact-other-plane.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234180, "modifiedTime": 1671220970436, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dSTu1MaPhBqPITwM" } diff --git a/packs/src/spells/level-5/contagion.json b/packs/src/spells/level-5/contagion.json index 331269836c..cf804e9a51 100644 --- a/packs/src/spells/level-5/contagion.json +++ b/packs/src/spells/level-5/contagion.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234097, "modifiedTime": 1671220968946, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!CjIq8Ed7bu3vVwT1" } diff --git a/packs/src/spells/level-5/creation.json b/packs/src/spells/level-5/creation.json index b48cf5d973..512d7d63dc 100644 --- a/packs/src/spells/level-5/creation.json +++ b/packs/src/spells/level-5/creation.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234217, "modifiedTime": 1671220971152, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!lnaGnxMzpYnbw1uU" } diff --git a/packs/src/spells/level-5/dispel-evil-and-good.json b/packs/src/spells/level-5/dispel-evil-and-good.json index fdbe50e248..7601acb8bc 100644 --- a/packs/src/spells/level-5/dispel-evil-and-good.json +++ b/packs/src/spells/level-5/dispel-evil-and-good.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234146, "modifiedTime": 1671220970046, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!TkJ8Wtg1L7TZtspm" } diff --git a/packs/src/spells/level-5/dominate-person.json b/packs/src/spells/level-5/dominate-person.json index 1da3d61435..65934ea9b2 100644 --- a/packs/src/spells/level-5/dominate-person.json +++ b/packs/src/spells/level-5/dominate-person.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234083, "modifiedTime": 1671220968828, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!91Sw6vOIaO7U8DvM" } diff --git a/packs/src/spells/level-5/dream.json b/packs/src/spells/level-5/dream.json index b3ee20f0ef..28fd5082aa 100644 --- a/packs/src/spells/level-5/dream.json +++ b/packs/src/spells/level-5/dream.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234214, "modifiedTime": 1671220971117, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!kSPRpeIx3w3nihrF" } diff --git a/packs/src/spells/level-5/flame-strike.json b/packs/src/spells/level-5/flame-strike.json index f8136fa3f5..e0493eaeb9 100644 --- a/packs/src/spells/level-5/flame-strike.json +++ b/packs/src/spells/level-5/flame-strike.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -107,5 +112,6 @@ "createdTime": 1661787234070, "modifiedTime": 1671220968655, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!5e1xTohkzqFqbYH4" } diff --git a/packs/src/spells/level-5/geas.json b/packs/src/spells/level-5/geas.json index a4d725fade..d2ed71aef4 100644 --- a/packs/src/spells/level-5/geas.json +++ b/packs/src/spells/level-5/geas.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234114, "modifiedTime": 1671220969109, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!JQyigMNPiDnGI18b" } diff --git a/packs/src/spells/level-5/greater-restoration.json b/packs/src/spells/level-5/greater-restoration.json index 5cf1ed5a14..1ec46871de 100644 --- a/packs/src/spells/level-5/greater-restoration.json +++ b/packs/src/spells/level-5/greater-restoration.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234154, "modifiedTime": 1671220970132, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WzvJ7G3cqvIubsLk" } diff --git a/packs/src/spells/level-5/hallow.json b/packs/src/spells/level-5/hallow.json index 0e3d1bb375..bb8ab64b8d 100644 --- a/packs/src/spells/level-5/hallow.json +++ b/packs/src/spells/level-5/hallow.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "hour", "cost": 24, @@ -98,5 +103,6 @@ "createdTime": 1661787234140, "modifiedTime": 1674761585826, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!SLxA9QhrggTz0taU" } diff --git a/packs/src/spells/level-5/hold-monster.json b/packs/src/spells/level-5/hold-monster.json index f78faaa234..8b23a0f0bb 100644 --- a/packs/src/spells/level-5/hold-monster.json +++ b/packs/src/spells/level-5/hold-monster.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234216, "modifiedTime": 1671220971148, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!l9Ju5KE7bbn3WpTm" } diff --git a/packs/src/spells/level-5/insect-plague.json b/packs/src/spells/level-5/insect-plague.json index 3fdb7dc9b1..6973c8e690 100644 --- a/packs/src/spells/level-5/insect-plague.json +++ b/packs/src/spells/level-5/insect-plague.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234131, "modifiedTime": 1671220969868, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!OVikYmSdHliAG2YD" } diff --git a/packs/src/spells/level-5/legend-lore.json b/packs/src/spells/level-5/legend-lore.json index d4fb47febf..02935e5ab7 100644 --- a/packs/src/spells/level-5/legend-lore.json +++ b/packs/src/spells/level-5/legend-lore.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -98,5 +103,6 @@ "createdTime": 1661787234150, "modifiedTime": 1671220970103, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!W4Qx5z0id6da0vqg" } diff --git a/packs/src/spells/level-5/mass-cure-wounds.json b/packs/src/spells/level-5/mass-cure-wounds.json index 299cf426fa..fea808ca58 100644 --- a/packs/src/spells/level-5/mass-cure-wounds.json +++ b/packs/src/spells/level-5/mass-cure-wounds.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234134, "modifiedTime": 1671220969899, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Pyzmm8R7rVsNAPsd" } diff --git a/packs/src/spells/level-5/mislead.json b/packs/src/spells/level-5/mislead.json index 206fc98b01..ba7277718b 100644 --- a/packs/src/spells/level-5/mislead.json +++ b/packs/src/spells/level-5/mislead.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234123, "modifiedTime": 1671220969719, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MBMaQLwoy05qzMJ3" } diff --git a/packs/src/spells/level-5/modify-memory.json b/packs/src/spells/level-5/modify-memory.json index e414ad135e..5682b61848 100644 --- a/packs/src/spells/level-5/modify-memory.json +++ b/packs/src/spells/level-5/modify-memory.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234232, "modifiedTime": 1671220971331, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!r3243JU4AyQJyfX4" } diff --git a/packs/src/spells/level-5/passwall.json b/packs/src/spells/level-5/passwall.json index 87d39104cd..d4d65de530 100644 --- a/packs/src/spells/level-5/passwall.json +++ b/packs/src/spells/level-5/passwall.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234178, "modifiedTime": 1671220970422, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!d9MwcXi7Il3HROXd" } diff --git a/packs/src/spells/level-5/planar-binding.json b/packs/src/spells/level-5/planar-binding.json index d16a213898..9ed74c1eb9 100644 --- a/packs/src/spells/level-5/planar-binding.json +++ b/packs/src/spells/level-5/planar-binding.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "hour", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234065, "modifiedTime": 1671220968610, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!42O2aNBW7vK90gTL" } diff --git a/packs/src/spells/level-5/raise-dead.json b/packs/src/spells/level-5/raise-dead.json index b312fb1e70..d6afb19a39 100644 --- a/packs/src/spells/level-5/raise-dead.json +++ b/packs/src/spells/level-5/raise-dead.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "hour", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234087, "modifiedTime": 1671220968863, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!AGFMPAmuzwWO6Dfz" } diff --git a/packs/src/spells/level-5/reincarnate.json b/packs/src/spells/level-5/reincarnate.json index 1e9be22203..41aa7be70e 100644 --- a/packs/src/spells/level-5/reincarnate.json +++ b/packs/src/spells/level-5/reincarnate.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "hour", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234245, "modifiedTime": 1671220971512, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!zMEo5DKK8uxsuWnq" } diff --git a/packs/src/spells/level-5/scrying.json b/packs/src/spells/level-5/scrying.json index 2a1adb3c66..aae4300d82 100644 --- a/packs/src/spells/level-5/scrying.json +++ b/packs/src/spells/level-5/scrying.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -98,5 +103,6 @@ "createdTime": 1661787234189, "modifiedTime": 1671220970533, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!fVbCxFRaORalHB20" } diff --git a/packs/src/spells/level-5/seeming.json b/packs/src/spells/level-5/seeming.json index 0e99eef69f..8471335ac4 100644 --- a/packs/src/spells/level-5/seeming.json +++ b/packs/src/spells/level-5/seeming.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234219, "modifiedTime": 1671220971181, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!mbFw57uyfLkyiw5k" } diff --git a/packs/src/spells/level-5/telekinesis.json b/packs/src/spells/level-5/telekinesis.json index f342896eb5..0e85b509ab 100644 --- a/packs/src/spells/level-5/telekinesis.json +++ b/packs/src/spells/level-5/telekinesis.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234107, "modifiedTime": 1671220969044, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!HQfd7jJyULIoGxrZ" } diff --git a/packs/src/spells/level-5/telepathic-bond.json b/packs/src/spells/level-5/telepathic-bond.json index d5a3c7a561..70acc974c6 100644 --- a/packs/src/spells/level-5/telepathic-bond.json +++ b/packs/src/spells/level-5/telepathic-bond.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234235, "modifiedTime": 1671220971351, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!uAwtVZkiSTyP6ORB" } diff --git a/packs/src/spells/level-5/teleportation-circle.json b/packs/src/spells/level-5/teleportation-circle.json index 81ce68120c..61230d8f3f 100644 --- a/packs/src/spells/level-5/teleportation-circle.json +++ b/packs/src/spells/level-5/teleportation-circle.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234080, "modifiedTime": 1671220968802, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8aWtP5hcrmcEesBW" } diff --git a/packs/src/spells/level-5/tree-stride.json b/packs/src/spells/level-5/tree-stride.json index e42fda96bd..27bd9ebca8 100644 --- a/packs/src/spells/level-5/tree-stride.json +++ b/packs/src/spells/level-5/tree-stride.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234099, "modifiedTime": 1671220968964, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!DUBgwHPakcLDkB6W" } diff --git a/packs/src/spells/level-5/wall-of-force.json b/packs/src/spells/level-5/wall-of-force.json index 75c593938f..ce041d9342 100644 --- a/packs/src/spells/level-5/wall-of-force.json +++ b/packs/src/spells/level-5/wall-of-force.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234223, "modifiedTime": 1671220971223, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!o9ZCvuD2B1OTcubb" } diff --git a/packs/src/spells/level-5/wall-of-stone.json b/packs/src/spells/level-5/wall-of-stone.json index b87838ca0c..2cc3ae4de4 100644 --- a/packs/src/spells/level-5/wall-of-stone.json +++ b/packs/src/spells/level-5/wall-of-stone.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234130, "modifiedTime": 1671220969833, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!NmoRmM1mhuM3pqnY" } diff --git a/packs/src/spells/level-6/blade-barrier.json b/packs/src/spells/level-6/blade-barrier.json index 217239a711..a20f75af02 100644 --- a/packs/src/spells/level-6/blade-barrier.json +++ b/packs/src/spells/level-6/blade-barrier.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234179, "modifiedTime": 1671220970431, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dLJhxDfeyOsc3zsY" } diff --git a/packs/src/spells/level-6/chain-lightning.json b/packs/src/spells/level-6/chain-lightning.json index fb7cd030f9..dca1c1cba1 100644 --- a/packs/src/spells/level-6/chain-lightning.json +++ b/packs/src/spells/level-6/chain-lightning.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234136, "modifiedTime": 1671220969913, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!QbTxN5dWIbYZ4jLU" } diff --git a/packs/src/spells/level-6/circle-of-death.json b/packs/src/spells/level-6/circle-of-death.json index 9024db3b5c..138da39037 100644 --- a/packs/src/spells/level-6/circle-of-death.json +++ b/packs/src/spells/level-6/circle-of-death.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234116, "modifiedTime": 1671220969133, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!KeunEkg1JYbOCOhV" } diff --git a/packs/src/spells/level-6/conjure-fey.json b/packs/src/spells/level-6/conjure-fey.json index 587e62965a..556c7114e0 100644 --- a/packs/src/spells/level-6/conjure-fey.json +++ b/packs/src/spells/level-6/conjure-fey.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234242, "modifiedTime": 1671220971450, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!yN3XZZujhR4aVvPa" } diff --git a/packs/src/spells/level-6/contingency.json b/packs/src/spells/level-6/contingency.json index 696622d875..41f2c6b76f 100644 --- a/packs/src/spells/level-6/contingency.json +++ b/packs/src/spells/level-6/contingency.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -98,5 +103,6 @@ "createdTime": 1661787234067, "modifiedTime": 1671220968635, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!4smlOvpF5AQHcyg1" } diff --git a/packs/src/spells/level-6/create-undead.json b/packs/src/spells/level-6/create-undead.json index a97f0ca9a8..a3351321d5 100644 --- a/packs/src/spells/level-6/create-undead.json +++ b/packs/src/spells/level-6/create-undead.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234100, "modifiedTime": 1671220968968, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!E4NXux0RHvME1XgP" } diff --git a/packs/src/spells/level-6/disintegrate.json b/packs/src/spells/level-6/disintegrate.json index 3570da7b66..05f74affad 100644 --- a/packs/src/spells/level-6/disintegrate.json +++ b/packs/src/spells/level-6/disintegrate.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234106, "modifiedTime": 1671220969034, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!HBHbOGKNVVprSlwn" } diff --git a/packs/src/spells/level-6/eyebite.json b/packs/src/spells/level-6/eyebite.json index 3b05ed893e..30894b7fcf 100644 --- a/packs/src/spells/level-6/eyebite.json +++ b/packs/src/spells/level-6/eyebite.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234163, "modifiedTime": 1671220970250, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ZRqu3Xh9FmlBCZGy" } diff --git a/packs/src/spells/level-6/find-the-path.json b/packs/src/spells/level-6/find-the-path.json index 98abd96bc0..7bc6a69b74 100644 --- a/packs/src/spells/level-6/find-the-path.json +++ b/packs/src/spells/level-6/find-the-path.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234172, "modifiedTime": 1671220970351, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!cYI4RNNjI5GAmLhy" } diff --git a/packs/src/spells/level-6/flesh-to-stone.json b/packs/src/spells/level-6/flesh-to-stone.json index 9e3f4c088c..e034c0d319 100644 --- a/packs/src/spells/level-6/flesh-to-stone.json +++ b/packs/src/spells/level-6/flesh-to-stone.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234215, "modifiedTime": 1671220971138, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!kozNy29b0X6exFhY" } diff --git a/packs/src/spells/level-6/forbiddance.json b/packs/src/spells/level-6/forbiddance.json index 6c07bd46f1..640c0a21f8 100644 --- a/packs/src/spells/level-6/forbiddance.json +++ b/packs/src/spells/level-6/forbiddance.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -98,5 +103,6 @@ "createdTime": 1661787234071, "modifiedTime": 1671220968662, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!64D1gNZ4hx7SWG2x" } diff --git a/packs/src/spells/level-6/freezing-sphere.json b/packs/src/spells/level-6/freezing-sphere.json index 942dc19b00..0b5b1eee92 100644 --- a/packs/src/spells/level-6/freezing-sphere.json +++ b/packs/src/spells/level-6/freezing-sphere.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234124, "modifiedTime": 1671220969764, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MImfWCzEPRMYD3Xp" } diff --git a/packs/src/spells/level-6/globe-of-invulnerability.json b/packs/src/spells/level-6/globe-of-invulnerability.json index 97ea0733e2..1cff40410c 100644 --- a/packs/src/spells/level-6/globe-of-invulnerability.json +++ b/packs/src/spells/level-6/globe-of-invulnerability.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234154, "modifiedTime": 1671220970128, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WmQpxfjZwF3MGUby" } diff --git a/packs/src/spells/level-6/guards-and-wards.json b/packs/src/spells/level-6/guards-and-wards.json index e6092aef22..f4f95ee8fd 100644 --- a/packs/src/spells/level-6/guards-and-wards.json +++ b/packs/src/spells/level-6/guards-and-wards.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -98,5 +103,6 @@ "createdTime": 1661787234244, "modifiedTime": 1671220971489, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!yw0tYQkOMCgKZ8Ur" } diff --git a/packs/src/spells/level-6/harm.json b/packs/src/spells/level-6/harm.json index a9c55dcee5..996e24b05c 100644 --- a/packs/src/spells/level-6/harm.json +++ b/packs/src/spells/level-6/harm.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234234, "modifiedTime": 1671220971347, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!tMH6Ivn4GmE1naMj" } diff --git a/packs/src/spells/level-6/heal.json b/packs/src/spells/level-6/heal.json index 528649d87b..8019ed9a64 100644 --- a/packs/src/spells/level-6/heal.json +++ b/packs/src/spells/level-6/heal.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234231, "modifiedTime": 1671220971327, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!qcYitWoSMTnKkzM1" } diff --git a/packs/src/spells/level-6/heroes-feast.json b/packs/src/spells/level-6/heroes-feast.json index dc9547f142..9a96bcc7d4 100644 --- a/packs/src/spells/level-6/heroes-feast.json +++ b/packs/src/spells/level-6/heroes-feast.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -98,5 +103,6 @@ "createdTime": 1661787234220, "modifiedTime": 1671220971185, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!mgFqi0ev8f7Ut19y" } diff --git a/packs/src/spells/level-6/instant-summons.json b/packs/src/spells/level-6/instant-summons.json index d7b95b1f9e..561b9af218 100644 --- a/packs/src/spells/level-6/instant-summons.json +++ b/packs/src/spells/level-6/instant-summons.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234142, "modifiedTime": 1674761603476, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!SgrEKiC6dAtvy6Pz" } diff --git a/packs/src/spells/level-6/irresistible-dance.json b/packs/src/spells/level-6/irresistible-dance.json index bdeaa61cfc..fa765c495b 100644 --- a/packs/src/spells/level-6/irresistible-dance.json +++ b/packs/src/spells/level-6/irresistible-dance.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234145, "modifiedTime": 1671220970033, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!TfRzwEgBHHkCc6Ql" } diff --git a/packs/src/spells/level-6/magic-jar.json b/packs/src/spells/level-6/magic-jar.json index ff266815ef..64bec3b20d 100644 --- a/packs/src/spells/level-6/magic-jar.json +++ b/packs/src/spells/level-6/magic-jar.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234186, "modifiedTime": 1674761610507, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ej6wyY4G1gOcb1U6" } diff --git a/packs/src/spells/level-6/mass-suggestion.json b/packs/src/spells/level-6/mass-suggestion.json index 1961ccca76..9a45aef13e 100644 --- a/packs/src/spells/level-6/mass-suggestion.json +++ b/packs/src/spells/level-6/mass-suggestion.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234068, "modifiedTime": 1671220968644, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!5OGFdJw35QXp6mh6" } diff --git a/packs/src/spells/level-6/move-earth.json b/packs/src/spells/level-6/move-earth.json index 46c0197d89..b599ccd52d 100644 --- a/packs/src/spells/level-6/move-earth.json +++ b/packs/src/spells/level-6/move-earth.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234241, "modifiedTime": 1671220971444, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!yI0XWIgI0IGGsR3R" } diff --git a/packs/src/spells/level-6/planar-ally.json b/packs/src/spells/level-6/planar-ally.json index 5d84633c08..fc9c87fffb 100644 --- a/packs/src/spells/level-6/planar-ally.json +++ b/packs/src/spells/level-6/planar-ally.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -98,5 +103,6 @@ "createdTime": 1661787234189, "modifiedTime": 1671220970537, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!fkREcytuZ8sngWtC" } diff --git a/packs/src/spells/level-6/programmed-illusion.json b/packs/src/spells/level-6/programmed-illusion.json index 25adcd3ee7..c5d44f4eda 100644 --- a/packs/src/spells/level-6/programmed-illusion.json +++ b/packs/src/spells/level-6/programmed-illusion.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234170, "modifiedTime": 1674761623008, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!bA2sk9eMKBeY7EPD" } diff --git a/packs/src/spells/level-6/sunbeam.json b/packs/src/spells/level-6/sunbeam.json index 2828c49c65..6ca2b47554 100644 --- a/packs/src/spells/level-6/sunbeam.json +++ b/packs/src/spells/level-6/sunbeam.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234059, "modifiedTime": 1671220968531, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!2RC0EyvBLPH88PZF" } diff --git a/packs/src/spells/level-6/transport-via-plants.json b/packs/src/spells/level-6/transport-via-plants.json index 09e0603238..8f3b12f952 100644 --- a/packs/src/spells/level-6/transport-via-plants.json +++ b/packs/src/spells/level-6/transport-via-plants.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234233, "modifiedTime": 1671220971335, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!s7nXgot5gGZVcMrv" } diff --git a/packs/src/spells/level-6/true-seeing.json b/packs/src/spells/level-6/true-seeing.json index b9a432584c..adb6b6f0a2 100644 --- a/packs/src/spells/level-6/true-seeing.json +++ b/packs/src/spells/level-6/true-seeing.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234160, "modifiedTime": 1671220970206, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XzkJpE6XpZfKjODD" } diff --git a/packs/src/spells/level-6/wall-of-ice.json b/packs/src/spells/level-6/wall-of-ice.json index 825369caec..4b294b6cfb 100644 --- a/packs/src/spells/level-6/wall-of-ice.json +++ b/packs/src/spells/level-6/wall-of-ice.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234190, "modifiedTime": 1671220970542, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!fzZnVKLmBMo2f5up" } diff --git a/packs/src/spells/level-6/wall-of-thorns.json b/packs/src/spells/level-6/wall-of-thorns.json index 728e351199..a6b6252836 100644 --- a/packs/src/spells/level-6/wall-of-thorns.json +++ b/packs/src/spells/level-6/wall-of-thorns.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234088, "modifiedTime": 1671220968867, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!AQsBc94ES7W7s7iG" } diff --git a/packs/src/spells/level-6/wind-walk.json b/packs/src/spells/level-6/wind-walk.json index a676b73fab..ebdee1fe36 100644 --- a/packs/src/spells/level-6/wind-walk.json +++ b/packs/src/spells/level-6/wind-walk.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234079, "modifiedTime": 1671220968793, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8PJAsHmbu6UgDHC0" } diff --git a/packs/src/spells/level-6/word-of-recall.json b/packs/src/spells/level-6/word-of-recall.json index 815c65cf76..5d44c61a1d 100644 --- a/packs/src/spells/level-6/word-of-recall.json +++ b/packs/src/spells/level-6/word-of-recall.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234073, "modifiedTime": 1671220968710, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!76C0FdcxlU8F9Rl2" } diff --git a/packs/src/spells/level-7/arcane-sword.json b/packs/src/spells/level-7/arcane-sword.json index 071cca4edc..11d13c2511 100644 --- a/packs/src/spells/level-7/arcane-sword.json +++ b/packs/src/spells/level-7/arcane-sword.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234120, "modifiedTime": 1671220969161, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!LTDNWoFVJNLjiiNa" } diff --git a/packs/src/spells/level-7/conjure-celestial.json b/packs/src/spells/level-7/conjure-celestial.json index 7c7c40b9b9..06d97d386d 100644 --- a/packs/src/spells/level-7/conjure-celestial.json +++ b/packs/src/spells/level-7/conjure-celestial.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234156, "modifiedTime": 1671220970149, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XT7nzJmVGgv73uaf" } diff --git a/packs/src/spells/level-7/delayed-blast-fireball.json b/packs/src/spells/level-7/delayed-blast-fireball.json index 0e001273e4..4dbcc9d630 100644 --- a/packs/src/spells/level-7/delayed-blast-fireball.json +++ b/packs/src/spells/level-7/delayed-blast-fireball.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234089, "modifiedTime": 1671220968893, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!AoTTjapz1FsGOIZz" } diff --git a/packs/src/spells/level-7/divine-word.json b/packs/src/spells/level-7/divine-word.json index 91426c4f45..fc825b56cc 100644 --- a/packs/src/spells/level-7/divine-word.json +++ b/packs/src/spells/level-7/divine-word.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "bonus", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234144, "modifiedTime": 1671220970020, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!T1vpZLam7LezjToj" } diff --git a/packs/src/spells/level-7/etherealness.json b/packs/src/spells/level-7/etherealness.json index 8da3c91077..972a20d9b6 100644 --- a/packs/src/spells/level-7/etherealness.json +++ b/packs/src/spells/level-7/etherealness.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234133, "modifiedTime": 1671220969894, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!PQuEgKyCdovOvhqN" } diff --git a/packs/src/spells/level-7/finger-of-death.json b/packs/src/spells/level-7/finger-of-death.json index 0dc8a7b070..64b9d7a0b9 100644 --- a/packs/src/spells/level-7/finger-of-death.json +++ b/packs/src/spells/level-7/finger-of-death.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234107, "modifiedTime": 1671220969040, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!HPvZm8YJO91k6Qdg" } diff --git a/packs/src/spells/level-7/fire-storm.json b/packs/src/spells/level-7/fire-storm.json index 17b14e0189..c430cd7f44 100644 --- a/packs/src/spells/level-7/fire-storm.json +++ b/packs/src/spells/level-7/fire-storm.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234111, "modifiedTime": 1671220969069, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!J3uILDYS7MiOfmTJ" } diff --git a/packs/src/spells/level-7/forcecage.json b/packs/src/spells/level-7/forcecage.json index c03beafbad..3fffbf16f4 100644 --- a/packs/src/spells/level-7/forcecage.json +++ b/packs/src/spells/level-7/forcecage.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234161, "modifiedTime": 1671220970220, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Y7uWUO4yqUN0JKl0" } diff --git a/packs/src/spells/level-7/magnificent-mansion.json b/packs/src/spells/level-7/magnificent-mansion.json index 94b3024efc..0da788eb9e 100644 --- a/packs/src/spells/level-7/magnificent-mansion.json +++ b/packs/src/spells/level-7/magnificent-mansion.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234228, "modifiedTime": 1671220971301, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!pn4SnsFDvYDiE6rC" } diff --git a/packs/src/spells/level-7/mirage-arcane.json b/packs/src/spells/level-7/mirage-arcane.json index 8b6dbf540b..81f817ab7b 100644 --- a/packs/src/spells/level-7/mirage-arcane.json +++ b/packs/src/spells/level-7/mirage-arcane.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -98,5 +103,6 @@ "createdTime": 1661787234188, "modifiedTime": 1671220970529, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!f38w5rd9SgdmWc6F" } diff --git a/packs/src/spells/level-7/plane-shift.json b/packs/src/spells/level-7/plane-shift.json index d56fae80a9..7f2870dc71 100644 --- a/packs/src/spells/level-7/plane-shift.json +++ b/packs/src/spells/level-7/plane-shift.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234111, "modifiedTime": 1671220969075, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!J6Jpw5XzB5aTeqnz" } diff --git a/packs/src/spells/level-7/prismatic-spray.json b/packs/src/spells/level-7/prismatic-spray.json index 9379433533..386e2594fc 100644 --- a/packs/src/spells/level-7/prismatic-spray.json +++ b/packs/src/spells/level-7/prismatic-spray.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234184, "modifiedTime": 1671220970498, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eGMhwmuleAM46C6L" } diff --git a/packs/src/spells/level-7/project-image.json b/packs/src/spells/level-7/project-image.json index 679f225017..1a6b6622c3 100644 --- a/packs/src/spells/level-7/project-image.json +++ b/packs/src/spells/level-7/project-image.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234185, "modifiedTime": 1671220970502, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ePhRKHXRE7l1sEoQ" } diff --git a/packs/src/spells/level-7/regenerate.json b/packs/src/spells/level-7/regenerate.json index 025f168f5d..ac79758645 100644 --- a/packs/src/spells/level-7/regenerate.json +++ b/packs/src/spells/level-7/regenerate.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234086, "modifiedTime": 1671220968851, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9kGrFXnLiRg3Xnbo" } diff --git a/packs/src/spells/level-7/resurrection.json b/packs/src/spells/level-7/resurrection.json index 7e71267909..c4829bde1c 100644 --- a/packs/src/spells/level-7/resurrection.json +++ b/packs/src/spells/level-7/resurrection.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "hour", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234213, "modifiedTime": 1671220971105, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!jhhT9PsHy5A7EojO" } diff --git a/packs/src/spells/level-7/reverse-gravity.json b/packs/src/spells/level-7/reverse-gravity.json index 6012c5d8e0..36f708daff 100644 --- a/packs/src/spells/level-7/reverse-gravity.json +++ b/packs/src/spells/level-7/reverse-gravity.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234101, "modifiedTime": 1671220968975, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ERCv7yuRkQ0YjGx6" } diff --git a/packs/src/spells/level-7/sequester.json b/packs/src/spells/level-7/sequester.json index bcf27492f1..cc3f94410f 100644 --- a/packs/src/spells/level-7/sequester.json +++ b/packs/src/spells/level-7/sequester.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234239, "modifiedTime": 1674761629775, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!wvLbtemkH8gyBpdc" } diff --git a/packs/src/spells/level-7/simulacrum.json b/packs/src/spells/level-7/simulacrum.json index 8b5eb99838..83c4c7df3d 100644 --- a/packs/src/spells/level-7/simulacrum.json +++ b/packs/src/spells/level-7/simulacrum.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "hour", "cost": 12, @@ -98,5 +103,6 @@ "createdTime": 1661787234213, "modifiedTime": 1674761636359, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!jccbeBIfLrqEZnDP" } diff --git a/packs/src/spells/level-7/symbol.json b/packs/src/spells/level-7/symbol.json index fb622f35dc..067fb797eb 100644 --- a/packs/src/spells/level-7/symbol.json +++ b/packs/src/spells/level-7/symbol.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234090, "modifiedTime": 1674761650271, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!B2kbmgbA2WQR00kx" } diff --git a/packs/src/spells/level-7/teleport.json b/packs/src/spells/level-7/teleport.json index 7d7e959089..52b158e325 100644 --- a/packs/src/spells/level-7/teleport.json +++ b/packs/src/spells/level-7/teleport.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234119, "modifiedTime": 1671220969156, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!L4J89JXqbKs6puEV" } diff --git a/packs/src/spells/level-8/animal-shapes.json b/packs/src/spells/level-8/animal-shapes.json index eae6ea1550..7431524092 100644 --- a/packs/src/spells/level-8/animal-shapes.json +++ b/packs/src/spells/level-8/animal-shapes.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234225, "modifiedTime": 1671220971243, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ohqAIBg6de989CIo" } diff --git a/packs/src/spells/level-8/antimagic-field.json b/packs/src/spells/level-8/antimagic-field.json index 38f16f4096..beb7dbba17 100644 --- a/packs/src/spells/level-8/antimagic-field.json +++ b/packs/src/spells/level-8/antimagic-field.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234102, "modifiedTime": 1671220969000, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Eon0jzGzQRNluTPQ" } diff --git a/packs/src/spells/level-8/antipathy-sympathy.json b/packs/src/spells/level-8/antipathy-sympathy.json index 3d89bff64f..9603ed8d61 100644 --- a/packs/src/spells/level-8/antipathy-sympathy.json +++ b/packs/src/spells/level-8/antipathy-sympathy.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "hour", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234104, "modifiedTime": 1671220969021, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!GJ2WYm3SQFR0winH" } diff --git a/packs/src/spells/level-8/clone.json b/packs/src/spells/level-8/clone.json index c47d60198e..a22344b4bf 100644 --- a/packs/src/spells/level-8/clone.json +++ b/packs/src/spells/level-8/clone.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "hour", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234194, "modifiedTime": 1671220970599, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!h830iyqParFleNqR" } diff --git a/packs/src/spells/level-8/control-weather.json b/packs/src/spells/level-8/control-weather.json index 199f436f42..812a75d18c 100644 --- a/packs/src/spells/level-8/control-weather.json +++ b/packs/src/spells/level-8/control-weather.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 10, @@ -98,5 +103,6 @@ "createdTime": 1661787234163, "modifiedTime": 1671220970238, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ZPd73HtKF3At11jh" } diff --git a/packs/src/spells/level-8/demiplane.json b/packs/src/spells/level-8/demiplane.json index d014483ba1..7f382ef664 100644 --- a/packs/src/spells/level-8/demiplane.json +++ b/packs/src/spells/level-8/demiplane.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234240, "modifiedTime": 1671220971422, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!xNM9CzQQr2CieM4B" } diff --git a/packs/src/spells/level-8/dominate-monster.json b/packs/src/spells/level-8/dominate-monster.json index 61a22bbb25..3bf513fbf0 100644 --- a/packs/src/spells/level-8/dominate-monster.json +++ b/packs/src/spells/level-8/dominate-monster.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234184, "modifiedTime": 1671220970494, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eEpy1ONlXumKS1mp" } diff --git a/packs/src/spells/level-8/earthquake.json b/packs/src/spells/level-8/earthquake.json index b18186ed38..3999159519 100644 --- a/packs/src/spells/level-8/earthquake.json +++ b/packs/src/spells/level-8/earthquake.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234239, "modifiedTime": 1671220971418, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!x5JNBSyIBBZsjcGT" } diff --git a/packs/src/spells/level-8/feeblemind.json b/packs/src/spells/level-8/feeblemind.json index c490008da3..6eb1a84240 100644 --- a/packs/src/spells/level-8/feeblemind.json +++ b/packs/src/spells/level-8/feeblemind.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234195, "modifiedTime": 1671220971049, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hYCrN82dMJFuJODB" } diff --git a/packs/src/spells/level-8/glibness.json b/packs/src/spells/level-8/glibness.json index dbe25f8ab3..6f7d413052 100644 --- a/packs/src/spells/level-8/glibness.json +++ b/packs/src/spells/level-8/glibness.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234057, "modifiedTime": 1671220968441, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!1RzxKZzkQOoioxPj" } diff --git a/packs/src/spells/level-8/holy-aura.json b/packs/src/spells/level-8/holy-aura.json index 318fbcb382..8a65a3a099 100644 --- a/packs/src/spells/level-8/holy-aura.json +++ b/packs/src/spells/level-8/holy-aura.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234212, "modifiedTime": 1671220971091, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!j8S49Rea8b1640Zi" } diff --git a/packs/src/spells/level-8/incendiary-cloud.json b/packs/src/spells/level-8/incendiary-cloud.json index d27a4feb68..2a42362f11 100644 --- a/packs/src/spells/level-8/incendiary-cloud.json +++ b/packs/src/spells/level-8/incendiary-cloud.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234228, "modifiedTime": 1671220971296, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!pV04y1iXoWiom6bp" } diff --git a/packs/src/spells/level-8/maze.json b/packs/src/spells/level-8/maze.json index 3eee72a29b..3a3459818b 100644 --- a/packs/src/spells/level-8/maze.json +++ b/packs/src/spells/level-8/maze.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234176, "modifiedTime": 1671220970388, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!clwv2PWOcT822hlr" } diff --git a/packs/src/spells/level-8/mind-blank.json b/packs/src/spells/level-8/mind-blank.json index 3c02a9b036..7326c27a0e 100644 --- a/packs/src/spells/level-8/mind-blank.json +++ b/packs/src/spells/level-8/mind-blank.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234171, "modifiedTime": 1671220970334, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!bllEWfm9xfEKynhv" } diff --git a/packs/src/spells/level-8/power-word-stun.json b/packs/src/spells/level-8/power-word-stun.json index 4571e87037..68eac0c8f2 100644 --- a/packs/src/spells/level-8/power-word-stun.json +++ b/packs/src/spells/level-8/power-word-stun.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234062, "modifiedTime": 1671220968561, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!35j2QIMmIk6aEdxj" } diff --git a/packs/src/spells/level-8/sunburst.json b/packs/src/spells/level-8/sunburst.json index eb665507ff..ddaf6c56e0 100644 --- a/packs/src/spells/level-8/sunburst.json +++ b/packs/src/spells/level-8/sunburst.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234209, "modifiedTime": 1671220971061, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!hzK7FQya0BDjSmLE" } diff --git a/packs/src/spells/level-9/astral-projection.json b/packs/src/spells/level-9/astral-projection.json index 03524ca17a..63ba232e28 100644 --- a/packs/src/spells/level-9/astral-projection.json +++ b/packs/src/spells/level-9/astral-projection.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "hour", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234144, "modifiedTime": 1671220970025, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!TIoadMIsUKD4edXi" } diff --git a/packs/src/spells/level-9/foresight.json b/packs/src/spells/level-9/foresight.json index fe5cb65441..894df866df 100644 --- a/packs/src/spells/level-9/foresight.json +++ b/packs/src/spells/level-9/foresight.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234072, "modifiedTime": 1671220968678, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!6HEEhLdJz32TL4Js" } diff --git a/packs/src/spells/level-9/gate.json b/packs/src/spells/level-9/gate.json index e9a9275331..2f7808f4c8 100644 --- a/packs/src/spells/level-9/gate.json +++ b/packs/src/spells/level-9/gate.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234158, "modifiedTime": 1671220970189, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!XbwGq5kDJNvAxNXV" } diff --git a/packs/src/spells/level-9/imprisonment.json b/packs/src/spells/level-9/imprisonment.json index bf032a1ff1..b823c63366 100644 --- a/packs/src/spells/level-9/imprisonment.json +++ b/packs/src/spells/level-9/imprisonment.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "minute", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234164, "modifiedTime": 1674761596278, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ZVnL9L8v1KC9TBF4" } diff --git a/packs/src/spells/level-9/mass-heal.json b/packs/src/spells/level-9/mass-heal.json index b2ffc24739..2b67fc1a72 100644 --- a/packs/src/spells/level-9/mass-heal.json +++ b/packs/src/spells/level-9/mass-heal.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234160, "modifiedTime": 1671220970213, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Y6oItIuhOJZ0i0FC" } diff --git a/packs/src/spells/level-9/meteor-swarm.json b/packs/src/spells/level-9/meteor-swarm.json index d2b9d80f74..9ba80cb0aa 100644 --- a/packs/src/spells/level-9/meteor-swarm.json +++ b/packs/src/spells/level-9/meteor-swarm.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -107,5 +112,6 @@ "createdTime": 1661787234217, "modifiedTime": 1671220971165, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!mF52ldF79Cr7wfQo" } diff --git a/packs/src/spells/level-9/power-word-kill.json b/packs/src/spells/level-9/power-word-kill.json index 656dc06296..8cbbf18094 100644 --- a/packs/src/spells/level-9/power-word-kill.json +++ b/packs/src/spells/level-9/power-word-kill.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234182, "modifiedTime": 1671220970480, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!dmvaMLFWFtv0qx0S" } diff --git a/packs/src/spells/level-9/prismatic-wall.json b/packs/src/spells/level-9/prismatic-wall.json index 4bc6fbe7c0..c4844579a0 100644 --- a/packs/src/spells/level-9/prismatic-wall.json +++ b/packs/src/spells/level-9/prismatic-wall.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234214, "modifiedTime": 1671220971112, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!jmfu8zj4zjjzUbeh" } diff --git a/packs/src/spells/level-9/shapechange.json b/packs/src/spells/level-9/shapechange.json index 481359cbf9..6c94be40fe 100644 --- a/packs/src/spells/level-9/shapechange.json +++ b/packs/src/spells/level-9/shapechange.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234128, "modifiedTime": 1671220969815, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!N2UEFq8X5LRsLcOZ" } diff --git a/packs/src/spells/level-9/storm-of-vengeance.json b/packs/src/spells/level-9/storm-of-vengeance.json index 45eb2be913..a7db6adc5a 100644 --- a/packs/src/spells/level-9/storm-of-vengeance.json +++ b/packs/src/spells/level-9/storm-of-vengeance.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234074, "modifiedTime": 1671220968726, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!7KjExw0kmuqERa7C" } diff --git a/packs/src/spells/level-9/time-stop.json b/packs/src/spells/level-9/time-stop.json index 7b7390f68d..5702ba6e96 100644 --- a/packs/src/spells/level-9/time-stop.json +++ b/packs/src/spells/level-9/time-stop.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234114, "modifiedTime": 1671220969118, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!JYuRBwxpoFhXduvD" } diff --git a/packs/src/spells/level-9/true-polymorph.json b/packs/src/spells/level-9/true-polymorph.json index 4771e3279b..32a1857f79 100644 --- a/packs/src/spells/level-9/true-polymorph.json +++ b/packs/src/spells/level-9/true-polymorph.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234134, "modifiedTime": 1671220969904, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!QbQZKoXOgHWN06aa" } diff --git a/packs/src/spells/level-9/true-resurrection.json b/packs/src/spells/level-9/true-resurrection.json index 2ca2a49ac0..5c7d418e3d 100644 --- a/packs/src/spells/level-9/true-resurrection.json +++ b/packs/src/spells/level-9/true-resurrection.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "hour", "cost": 1, @@ -98,5 +103,6 @@ "createdTime": 1661787234231, "modifiedTime": 1671220971322, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!qLeEXZDbW5y4bmLY" } diff --git a/packs/src/spells/level-9/weird.json b/packs/src/spells/level-9/weird.json index 2d8deefefb..76b63abd41 100644 --- a/packs/src/spells/level-9/weird.json +++ b/packs/src/spells/level-9/weird.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234153, "modifiedTime": 1671220970122, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Wl2vtJ4hCt2tpWfR" } diff --git a/packs/src/spells/level-9/wish.json b/packs/src/spells/level-9/wish.json index a19381cb90..5459fd2517 100644 --- a/packs/src/spells/level-9/wish.json +++ b/packs/src/spells/level-9/wish.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "activation": { "type": "action", "cost": 1, @@ -103,5 +108,6 @@ "createdTime": 1661787234064, "modifiedTime": 1671220968595, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!3okM6Gn63zzEULkz" } diff --git a/packs/src/subclasses/champion.json b/packs/src/subclasses/champion.json index cff2c333be..4791b5fa2b 100644 --- a/packs/src/subclasses/champion.json +++ b/packs/src/subclasses/champion.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "champion", "classIdentifier": "fighter", "advancement": [ @@ -173,5 +178,6 @@ "createdTime": 1661787234296, "modifiedTime": 1674435503196, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!sprHbe7cRg9osTzf" } diff --git a/packs/src/subclasses/circle-of-the-land.json b/packs/src/subclasses/circle-of-the-land.json index 111f280c07..24064acad2 100644 --- a/packs/src/subclasses/circle-of-the-land.json +++ b/packs/src/subclasses/circle-of-the-land.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "circle-of-the-land", "classIdentifier": "druid", "advancement": [ @@ -139,5 +144,6 @@ "createdTime": 1661787234293, "modifiedTime": 1671220973426, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!4Ae2SPZRXEVbVs0M" } diff --git a/packs/src/subclasses/college-of-lore.json b/packs/src/subclasses/college-of-lore.json index 9dc663f805..ce09602cc5 100644 --- a/packs/src/subclasses/college-of-lore.json +++ b/packs/src/subclasses/college-of-lore.json @@ -8,10 +8,35 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "college-of-lore", "classIdentifier": "bard", "advancement": [ + { + "_id": "GgjL1Z4CKIkVLcyz", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [], + "choices": [ + { + "count": 3, + "pool": [ + "skills:*" + ] + } + ] + }, + "level": 3, + "title": "" + }, { "_id": "pxolz5oyrvbez6aj", "type": "ItemGrant", @@ -120,10 +145,11 @@ "_id": "MNvsEc4D2ccX7dQT", "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.2", - "coreVersion": "10.291", + "systemVersion": "2.3.1", + "coreVersion": "10.303", "createdTime": 1661787234294, - "modifiedTime": 1674435535784, + "modifiedTime": 1698856945298, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!MNvsEc4D2ccX7dQT" } diff --git a/packs/src/subclasses/draconic-bloodline.json b/packs/src/subclasses/draconic-bloodline.json index c1676625a3..c532dc52d1 100644 --- a/packs/src/subclasses/draconic-bloodline.json +++ b/packs/src/subclasses/draconic-bloodline.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "draconic-bloodline", "classIdentifier": "sorcerer", "advancement": [ @@ -118,5 +123,6 @@ "createdTime": 1661787234292, "modifiedTime": 1671220973417, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!2nadB2MBSHTQ0kcl" } diff --git a/packs/src/subclasses/hunter.json b/packs/src/subclasses/hunter.json index aea6e23c73..cfc4e64505 100644 --- a/packs/src/subclasses/hunter.json +++ b/packs/src/subclasses/hunter.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "hunter", "classIdentifier": "ranger", "advancement": [ @@ -244,5 +249,6 @@ "createdTime": 1661787234297, "modifiedTime": 1674435665133, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!uqd2q6WjVfcsaaGb" } diff --git a/packs/src/subclasses/life-domain.json b/packs/src/subclasses/life-domain.json index 8adf886911..220d9bc5d9 100644 --- a/packs/src/subclasses/life-domain.json +++ b/packs/src/subclasses/life-domain.json @@ -9,10 +9,30 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "life-domain", "classIdentifier": "cleric", "advancement": [ + { + "_id": "bW7chouU8WIVH0Le", + "type": "Trait", + "configuration": { + "hint": "", + "mode": "default", + "allowReplacements": false, + "grants": [ + "armor:hvy" + ], + "choices": [] + }, + "level": 1, + "title": "" + }, { "_id": "9fyr5t01nhdg0u8n", "type": "ItemGrant", @@ -157,10 +177,11 @@ "flags": {}, "_stats": { "systemId": "dnd5e", - "systemVersion": "2.1.0", - "coreVersion": "10.291", + "systemVersion": "2.3.1", + "coreVersion": "10.303", "createdTime": 1661787234293, - "modifiedTime": 1671220973444, + "modifiedTime": 1698856991022, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!H3RYLGqCiqm8BP3q" } diff --git a/packs/src/subclasses/oath-of-devotion.json b/packs/src/subclasses/oath-of-devotion.json index e4d764ec14..b5aa240fe5 100644 --- a/packs/src/subclasses/oath-of-devotion.json +++ b/packs/src/subclasses/oath-of-devotion.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "oath-of-devotion", "classIdentifier": "paladin", "advancement": [ @@ -118,5 +123,6 @@ "createdTime": 1661787234296, "modifiedTime": 1671220973520, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!sZ86mbX8D5PfYuhl" } diff --git a/packs/src/subclasses/path-of-the-berserker.json b/packs/src/subclasses/path-of-the-berserker.json index b2057a560c..4f7e30a4b5 100644 --- a/packs/src/subclasses/path-of-the-berserker.json +++ b/packs/src/subclasses/path-of-the-berserker.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "path-of-the-berserker", "classIdentifier": "barbarian", "advancement": [ @@ -117,5 +122,6 @@ "createdTime": 1661787234297, "modifiedTime": 1671220973531, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!uGuDQX9Mz3oHNHkU" } diff --git a/packs/src/subclasses/school-of-evocation.json b/packs/src/subclasses/school-of-evocation.json index d37c156e69..cd46f6a1e0 100644 --- a/packs/src/subclasses/school-of-evocation.json +++ b/packs/src/subclasses/school-of-evocation.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "school-of-evocation", "classIdentifier": "wizard", "advancement": [ @@ -118,5 +123,6 @@ "createdTime": 1661787234295, "modifiedTime": 1671220973499, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Ye5f3FReEnuXfi0y" } diff --git a/packs/src/subclasses/the-fiend.json b/packs/src/subclasses/the-fiend.json index ae37a12535..b1766a6ee2 100644 --- a/packs/src/subclasses/the-fiend.json +++ b/packs/src/subclasses/the-fiend.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "the-fiend", "classIdentifier": "warlock", "advancement": [ @@ -117,5 +122,6 @@ "createdTime": 1661787234295, "modifiedTime": 1671220973491, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WPFVBg589uI8iOMH" } diff --git a/packs/src/subclasses/thief.json b/packs/src/subclasses/thief.json index 2775388127..d5717d48d7 100644 --- a/packs/src/subclasses/thief.json +++ b/packs/src/subclasses/thief.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "thief", "classIdentifier": "rogue", "advancement": [ @@ -118,5 +123,6 @@ "createdTime": 1661787234296, "modifiedTime": 1671220973509, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!k8iuefRorWOjb9gR" } diff --git a/packs/src/subclasses/way-of-the-open-hand.json b/packs/src/subclasses/way-of-the-open-hand.json index 1d34a441f8..97afdf5fe3 100644 --- a/packs/src/subclasses/way-of-the-open-hand.json +++ b/packs/src/subclasses/way-of-the-open-hand.json @@ -8,7 +8,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "identifier": "way-of-the-open-hand", "classIdentifier": "monk", "advancement": [ @@ -117,5 +122,6 @@ "createdTime": 1661787234294, "modifiedTime": 1671220973456, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!IvlpKMXX3PmW1NY2" } diff --git a/packs/src/tables/armor-of-resistance.json b/packs/src/tables/armor-of-resistance.json index 64c4fb937b..b7410696a0 100644 --- a/packs/src/tables/armor-of-resistance.json +++ b/packs/src/tables/armor-of-resistance.json @@ -16,7 +16,8 @@ "text": "Acid", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!VRqG3F72ebgNHyVR.PWu1w0Xz2l3ysJEL" }, { "type": 0, @@ -31,7 +32,8 @@ "text": "Cold", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!VRqG3F72ebgNHyVR.UqDDkk2pPl8ie6uh" }, { "type": 0, @@ -46,7 +48,8 @@ "text": "Fire", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!VRqG3F72ebgNHyVR.AmEk8tmLabEJFVyu" }, { "type": 0, @@ -61,7 +64,8 @@ "text": "Force", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!VRqG3F72ebgNHyVR.QUKt9KwrAYP8Jmt6" }, { "type": 0, @@ -76,7 +80,8 @@ "text": "Lightning", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!VRqG3F72ebgNHyVR.d4BJohZD8FK6BvLz" }, { "type": 0, @@ -91,7 +96,8 @@ "text": "Necrotic", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!VRqG3F72ebgNHyVR.appv8wBdOFMmXmPd" }, { "type": 0, @@ -106,7 +112,8 @@ "text": "Poison", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!VRqG3F72ebgNHyVR.qO40Z0TIAcTWzw23" }, { "type": 0, @@ -121,7 +128,8 @@ "text": "Psychic", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!VRqG3F72ebgNHyVR.2zccWak99YSlPwhr" }, { "type": 0, @@ -136,7 +144,8 @@ "text": "Radiant", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!VRqG3F72ebgNHyVR.SCBwLL12ytiik31F" }, { "type": 0, @@ -151,7 +160,8 @@ "text": "Thunder", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!VRqG3F72ebgNHyVR.pWvgoZGlmDODN24r" } ], "formula": "1d10", @@ -167,5 +177,6 @@ "modifiedTime": 1662410376442, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!VRqG3F72ebgNHyVR" } diff --git a/packs/src/tables/bag-of-beans.json b/packs/src/tables/bag-of-beans.json index 7f317fc58a..469d96e566 100644 --- a/packs/src/tables/bag-of-beans.json +++ b/packs/src/tables/bag-of-beans.json @@ -16,7 +16,8 @@ "text": "[[5d4]] toadstools sprout. If a creature eats a toadstool, roll any die. On an odd roll, the eater must succeed on a DC 15 Constitution saving throw or take [[/r 5d6]] poison damage and become poisoned for 1 hour. On an even roll, the eater gains [[/r 5d6]] temporary hit points for 1 hour.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!4ryVFV5LPHPzRKxl.WxO0rXJgtL1EUztI" }, { "type": 0, @@ -31,7 +32,8 @@ "text": "A geyser erupts and spouts water, beer, berry juice, tea, vinegar, wine, or oil (GM's choice) 30 feet into the air for [[1d12]] rounds.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!4ryVFV5LPHPzRKxl.AUkjfy7wjNDebT9g" }, { "type": 0, @@ -46,7 +48,8 @@ "text": "A treant sprouts. There's a 50 percent chance that the treant is chaotic evil and attacks.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!4ryVFV5LPHPzRKxl.ulVFkJMQbMqcaslJ" }, { "type": 0, @@ -61,7 +64,8 @@ "text": "An animate, immobile stone statue in your likeness rises. It makes verbal threats against you. If you leave it and others come near, it describes you as the most heinous of villains and directs the newcomers to find and attack you. If you are on the same plane of existence as the statue, it knows where you are. The statue becomes inanimate after 24 hours.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!4ryVFV5LPHPzRKxl.Gd5V8Ap4jog7RVXX" }, { "type": 0, @@ -76,7 +80,8 @@ "text": "A campfire with blue flames springs forth and burns for 24 hours (or until it is extinguished).", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!4ryVFV5LPHPzRKxl.Kb6ZIQr9vuIMfRQa" }, { "type": 0, @@ -91,7 +96,8 @@ "text": "[[1d6 + 6]] shriekers sprout", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!4ryVFV5LPHPzRKxl.JliA0WDkwhkTvnxi" }, { "type": 0, @@ -106,7 +112,8 @@ "text": "[[1d4 + 8]] bright pink toads crawl forth. Whenever a toad is touched, it transforms into a Large or smaller monster of the GM's choice. The monster remains for 1 minute, then disappears in a puff of bright pink smoke.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!4ryVFV5LPHPzRKxl.S8mzowDnWRsdmUm0" }, { "type": 0, @@ -121,7 +128,8 @@ "text": "A hungry bulette burrows up and attacks.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!4ryVFV5LPHPzRKxl.mWba8ippwHIfxjao" }, { "type": 0, @@ -136,7 +144,8 @@ "text": "A fruit tree grows. It has [[1d10 + 20]] fruit, [[1d8]] of which act as randomly determined magic potions, while one acts as an ingested poison of the GM's choice. The tree vanishes after 1 hour. Picked fruit remains, retaining any magic for 30 days.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!4ryVFV5LPHPzRKxl.LL0cIeIbBuECib4C" }, { "type": 0, @@ -151,7 +160,8 @@ "text": "A nest of [[1d4 + 3]] eggs springs up. Any creature that eats an egg must make a DC 20 Constitution saving throw. On a successful save, a creature permanently increases its lowest ability score by 1, randomly choosing among equally low scores. On a failed save, the creature takes [[/r 10d6]] force damage from an internal magical explosion.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!4ryVFV5LPHPzRKxl.CLTt0XGLK44edKCO" }, { "type": 0, @@ -166,7 +176,8 @@ "text": "A pyramid with a 60-foot‐square base bursts upward. Inside is a sarcophagus containing a mummy lord. The pyramid is treated as the mummy lord's lair, and its sarcophagus contains treasure of the GM's choice.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!4ryVFV5LPHPzRKxl.4S8s41o3hy28ICiZ" }, { "type": 0, @@ -181,7 +192,8 @@ "text": "A giant beanstalk sprouts, growing to a height of the GM's choice. The top leads where the GM chooses, such as to a great view, a cloud giant's castle, or a different plane of existence.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!4ryVFV5LPHPzRKxl.Y4bb5HGNxrMHyZVv" } ], "formula": "1d100", @@ -197,5 +209,6 @@ "modifiedTime": 1662412177307, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!4ryVFV5LPHPzRKxl" } diff --git a/packs/src/tables/bonds-acolyte.json b/packs/src/tables/bonds-acolyte.json index e458e01695..220438a3ad 100644 --- a/packs/src/tables/bonds-acolyte.json +++ b/packs/src/tables/bonds-acolyte.json @@ -15,7 +15,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!DZhd8JkjqlpCP8EB.4fCMSgyEYx75HEnV" }, { "_id": "Myz1yhYGsD8ErL4X", @@ -30,7 +31,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!DZhd8JkjqlpCP8EB.Myz1yhYGsD8ErL4X" }, { "_id": "71f3FxPEoqBgd5zE", @@ -45,7 +47,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!DZhd8JkjqlpCP8EB.71f3FxPEoqBgd5zE" }, { "_id": "nDk0D6C44wpyZruA", @@ -60,7 +63,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!DZhd8JkjqlpCP8EB.nDk0D6C44wpyZruA" }, { "_id": "ikrbmULfwsR1jmD8", @@ -75,7 +79,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!DZhd8JkjqlpCP8EB.ikrbmULfwsR1jmD8" }, { "_id": "LEnhWK6u96oGtQ4T", @@ -90,7 +95,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!DZhd8JkjqlpCP8EB.LEnhWK6u96oGtQ4T" } ], "formula": "1d6", @@ -111,5 +117,6 @@ "createdTime": 1661787234689, "modifiedTime": 1661787234689, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!tables!DZhd8JkjqlpCP8EB" } diff --git a/packs/src/tables/candle-of-invocation.json b/packs/src/tables/candle-of-invocation.json index e8a9324801..1272e6a4c3 100644 --- a/packs/src/tables/candle-of-invocation.json +++ b/packs/src/tables/candle-of-invocation.json @@ -16,7 +16,8 @@ "text": "Chaotic evil", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!C1N8LjO7gOjEWgh4.WAELwGJKWqkzqCYg" }, { "type": 0, @@ -31,7 +32,8 @@ "text": "Chaotic neutral", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!C1N8LjO7gOjEWgh4.tJm6LkviqjvFNh6h" }, { "type": 0, @@ -46,7 +48,8 @@ "text": "Chaotic good", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!C1N8LjO7gOjEWgh4.vznD6IcsFljzxMGq" }, { "type": 0, @@ -61,7 +64,8 @@ "text": "Neutral evil", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!C1N8LjO7gOjEWgh4.FQuYAPt9ZUxDF39V" }, { "type": 0, @@ -76,7 +80,8 @@ "text": "Neutral", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!C1N8LjO7gOjEWgh4.Sz6f4bmoUtaojrwT" }, { "type": 0, @@ -91,7 +96,8 @@ "text": "Neutral good", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!C1N8LjO7gOjEWgh4.MpLgJJf4OQJMq31f" }, { "type": 0, @@ -106,7 +112,8 @@ "text": "Lawful evil", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!C1N8LjO7gOjEWgh4.0lspSFzj3LosOiZZ" }, { "type": 0, @@ -121,7 +128,8 @@ "text": "Lawful neutral", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!C1N8LjO7gOjEWgh4.hwghAWe9Inunzs0F" }, { "type": 0, @@ -136,7 +144,8 @@ "text": "Lawful good", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!C1N8LjO7gOjEWgh4.yzdAtUqgT8PGEb7V" } ], "formula": "1d20", @@ -152,5 +161,6 @@ "modifiedTime": 1662584165925, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!C1N8LjO7gOjEWgh4" } diff --git a/packs/src/tables/carpet-of-flying.json b/packs/src/tables/carpet-of-flying.json index 8e315fce18..c76fda142d 100644 --- a/packs/src/tables/carpet-of-flying.json +++ b/packs/src/tables/carpet-of-flying.json @@ -16,7 +16,8 @@ "text": "Carpet of Flying (3x5)", "img": "icons/equipment/back/cloak-hooded-pink.webp", "documentId": "XwqNHyox5OQQio8q", - "flags": {} + "flags": {}, + "_key": "!tables.results!Z2OG7jt9R8zofxnJ.osZQr5LcSXncPcUY" }, { "type": 2, @@ -31,7 +32,8 @@ "text": "Carpet of Flying (4x6)", "img": "icons/equipment/back/cloak-hooded-pink.webp", "documentId": "DeK9uQvNJj3JzFwe", - "flags": {} + "flags": {}, + "_key": "!tables.results!Z2OG7jt9R8zofxnJ.3TOWgE7uAD22vNqt" }, { "type": 2, @@ -46,7 +48,8 @@ "text": "Carpet of Flying (5x7)", "img": "icons/equipment/back/cloak-hooded-pink.webp", "documentId": "XAr1SR4POx5BAArk", - "flags": {} + "flags": {}, + "_key": "!tables.results!Z2OG7jt9R8zofxnJ.k9CfpC5ed04OPa8u" }, { "type": 2, @@ -61,7 +64,8 @@ "text": "Carpet of Flying (6x9)", "img": "icons/equipment/back/cloak-hooded-pink.webp", "documentId": "TjWk2mpNXjDdfIDM", - "flags": {} + "flags": {}, + "_key": "!tables.results!Z2OG7jt9R8zofxnJ.YHa2MFeIX8PGMKmX" } ], "formula": "1d100", @@ -77,5 +81,6 @@ "modifiedTime": 1662760320747, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!Z2OG7jt9R8zofxnJ" } diff --git a/packs/src/tables/confusion.json b/packs/src/tables/confusion.json index cd1512d296..64f3c68aad 100644 --- a/packs/src/tables/confusion.json +++ b/packs/src/tables/confusion.json @@ -16,7 +16,8 @@ "text": "The creature uses all its movement to move in a random direction. To determine the direction, roll a [[/r d8]] and assign a direction to each die face. The creature doesn't take an action this turn.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!LHEts1oDaDwcehuj.JJjhhU1Br9ThNEWA" }, { "type": 0, @@ -31,7 +32,8 @@ "text": "The creature doesn't move or take actions this turn.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!LHEts1oDaDwcehuj.p1PpjMO47bT41JH7" }, { "type": 0, @@ -46,7 +48,8 @@ "text": "The creature uses its action to make a melee attack against a randomly determined creature within its reach. If there is no creature within its reach, the creature does nothing this turn.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!LHEts1oDaDwcehuj.d8WgsQzLYbVXdtPj" }, { "type": 0, @@ -61,7 +64,8 @@ "text": "The creature can act and move normally.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!LHEts1oDaDwcehuj.f4VYbhVsLT7q72ih" } ], "formula": "1d10", @@ -77,5 +81,6 @@ "modifiedTime": 1662407814327, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!LHEts1oDaDwcehuj" } diff --git a/packs/src/tables/efreeti-bottle.json b/packs/src/tables/efreeti-bottle.json index bc292e6137..65d3ba6dd9 100644 --- a/packs/src/tables/efreeti-bottle.json +++ b/packs/src/tables/efreeti-bottle.json @@ -16,7 +16,8 @@ "text": "The efreeti attacks you. After fighting for 5 rounds, the efreeti disappears, and the bottle loses its magic.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!yZMFNfocj5qyVuOC.IbW9tnuEZDC3Bjpq" }, { "type": 0, @@ -31,7 +32,8 @@ "text": "The efreeti serves you for 1 hour, doing as you command. Then the efreeti returns to the bottle, and a new stopper contains it. The stopper can't be removed for 24 hours. The next two times the bottle is opened, the same effect occurs. If the bottle is opened a fourth time, the efreeti escapes and disappears, and the bottle loses its magic.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!yZMFNfocj5qyVuOC.L0smkZOWXxK2uo2j" }, { "type": 0, @@ -46,7 +48,8 @@ "text": "The efreeti can cast the wish spell three times for you. It disappears when it grants the final wish or after 1 hour, and the bottle loses its magic.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!yZMFNfocj5qyVuOC.ivzals5foQfjXWSo" } ], "formula": "1d100", @@ -62,5 +65,6 @@ "modifiedTime": 1662761239502, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!yZMFNfocj5qyVuOC" } diff --git a/packs/src/tables/feather-token.json b/packs/src/tables/feather-token.json index ae6848c5c0..a07f0d54f8 100644 --- a/packs/src/tables/feather-token.json +++ b/packs/src/tables/feather-token.json @@ -16,7 +16,8 @@ "text": "Feather Token Anchor", "img": "icons/commodities/materials/feather-blue.webp", "documentId": "DnlQkH6Bpwkd5n5Y", - "flags": {} + "flags": {}, + "_key": "!tables.results!OEdr086W61t1DRJo.jsYDDFTOubEvuCtS" }, { "type": 2, @@ -31,7 +32,8 @@ "text": "Feather Token Whip", "img": "icons/commodities/materials/feather-colored-blue.webp", "documentId": "Fgkj11diTJJ7H3JC", - "flags": {} + "flags": {}, + "_key": "!tables.results!OEdr086W61t1DRJo.yMjCpwgQ9iUdVbLU" }, { "type": 2, @@ -46,7 +48,8 @@ "text": "Feather Token Bird", "img": "icons/commodities/materials/feather-yellow.webp", "documentId": "hWqImieUaLo08l9l", - "flags": {} + "flags": {}, + "_key": "!tables.results!OEdr086W61t1DRJo.Vp4nAXa7C7DPlXgl" }, { "type": 2, @@ -61,7 +64,8 @@ "text": "Feather Token Fan", "img": "icons/commodities/materials/feather-colored-red.webp", "documentId": "e98hfROZjztt7ccO", - "flags": {} + "flags": {}, + "_key": "!tables.results!OEdr086W61t1DRJo.X8dN3QxCYSHZ0N4P" }, { "type": 2, @@ -76,7 +80,8 @@ "text": "Feather Token Swan Boat", "img": "icons/commodities/materials/feather-blue-grey.webp", "documentId": "UgnUJhu0tW1tLt7g", - "flags": {} + "flags": {}, + "_key": "!tables.results!OEdr086W61t1DRJo.o6r3K6XPZlTu0YS4" }, { "type": 2, @@ -91,7 +96,8 @@ "text": "Feather Token Tree", "img": "icons/commodities/materials/feather-colored-green.webp", "documentId": "NjTgPn2o0M1TGk93", - "flags": {} + "flags": {}, + "_key": "!tables.results!OEdr086W61t1DRJo.s04A4UK1mru0AasT" } ], "formula": "1d100", @@ -107,5 +113,6 @@ "modifiedTime": 1662761812718, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!OEdr086W61t1DRJo" } diff --git a/packs/src/tables/flaws-acolyte.json b/packs/src/tables/flaws-acolyte.json index 396af1de69..c5510ce307 100644 --- a/packs/src/tables/flaws-acolyte.json +++ b/packs/src/tables/flaws-acolyte.json @@ -15,7 +15,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!COIHGOnoJnmXduad.hqNgtftrPdWlwjkB" }, { "_id": "AGsooh2EWDp2lEsp", @@ -30,7 +31,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!COIHGOnoJnmXduad.AGsooh2EWDp2lEsp" }, { "_id": "AS5r7gvTOLfMIpCs", @@ -45,7 +47,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!COIHGOnoJnmXduad.AS5r7gvTOLfMIpCs" }, { "_id": "7KvHTsznkLADGFYz", @@ -60,7 +63,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!COIHGOnoJnmXduad.7KvHTsznkLADGFYz" }, { "_id": "lGyYBw17AcsiXEiW", @@ -75,7 +79,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!COIHGOnoJnmXduad.lGyYBw17AcsiXEiW" }, { "_id": "qflg9bXyxaRkuBgo", @@ -90,7 +95,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!COIHGOnoJnmXduad.qflg9bXyxaRkuBgo" } ], "formula": "1d6", @@ -111,5 +117,6 @@ "createdTime": 1661787234689, "modifiedTime": 1661787234689, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!tables!COIHGOnoJnmXduad" } diff --git a/packs/src/tables/grey-bag-of-tricks.json b/packs/src/tables/grey-bag-of-tricks.json index bf0b669d17..b3829453e4 100644 --- a/packs/src/tables/grey-bag-of-tricks.json +++ b/packs/src/tables/grey-bag-of-tricks.json @@ -16,7 +16,8 @@ "text": "Weasel", "img": "systems/dnd5e/tokens/beast/Weasel.webp", "documentId": "WOdeacKCYVhgLDuN", - "flags": {} + "flags": {}, + "_key": "!tables.results!VPGP621PW7k03YfB.zK3WHv79k3whB5dD" }, { "type": 2, @@ -31,7 +32,8 @@ "text": "Giant Rat", "img": "systems/dnd5e/tokens/beast/GiantRat.webp", "documentId": "q1YJIeIt6rK8fCKn", - "flags": {} + "flags": {}, + "_key": "!tables.results!VPGP621PW7k03YfB.LqVprn6dUqFAAW3M" }, { "type": 2, @@ -46,7 +48,8 @@ "text": "Badger", "img": "systems/dnd5e/tokens/beast/Badger.webp", "documentId": "oQvORD924obyPdCc", - "flags": {} + "flags": {}, + "_key": "!tables.results!VPGP621PW7k03YfB.VMkWW0P2DNVSdC3x" }, { "type": 2, @@ -61,7 +64,8 @@ "text": "Boar", "img": "systems/dnd5e/tokens/beast/Boar.webp", "documentId": "lZR4lhNmYSf89s4Q", - "flags": {} + "flags": {}, + "_key": "!tables.results!VPGP621PW7k03YfB.jtknIKUrwe6q7BnB" }, { "type": 2, @@ -76,7 +80,8 @@ "text": "Panther", "img": "systems/dnd5e/tokens/beast/Panther.webp", "documentId": "AijNdqMurWxDxUSl", - "flags": {} + "flags": {}, + "_key": "!tables.results!VPGP621PW7k03YfB.Hkb7RfaIvycJyD0g" }, { "type": 2, @@ -91,7 +96,8 @@ "text": "Giant Badger", "img": "systems/dnd5e/tokens/beast/GiantBadger.webp", "documentId": "cJGY1ZywUOo6heNR", - "flags": {} + "flags": {}, + "_key": "!tables.results!VPGP621PW7k03YfB.PoSPaGFtAlPIUqYf" }, { "type": 2, @@ -106,7 +112,8 @@ "text": "Dire Wolf", "img": "systems/dnd5e/tokens/beast/DireWolf.webp", "documentId": "EYiQZ3rFL25fEJY5", - "flags": {} + "flags": {}, + "_key": "!tables.results!VPGP621PW7k03YfB.dawZlC1uojkWsi1y" }, { "type": 2, @@ -121,7 +128,8 @@ "text": "Giant Elk", "img": "systems/dnd5e/tokens/beast/GiantElk.webp", "documentId": "hQt3qIahnB1Odb40", - "flags": {} + "flags": {}, + "_key": "!tables.results!VPGP621PW7k03YfB.RZAsZIES2TNYBrX4" } ], "formula": "1d8", @@ -137,5 +145,6 @@ "modifiedTime": 1662497936137, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!VPGP621PW7k03YfB" } diff --git a/packs/src/tables/horn-of-valhalla.json b/packs/src/tables/horn-of-valhalla.json index 7b231831a8..b4606321fa 100644 --- a/packs/src/tables/horn-of-valhalla.json +++ b/packs/src/tables/horn-of-valhalla.json @@ -16,7 +16,8 @@ "text": "Silver Horn of Valhalla", "img": "icons/tools/instruments/flute-simple-wood.webp", "documentId": "lTfo6OVvAY2iJ4oq", - "flags": {} + "flags": {}, + "_key": "!tables.results!RwerG95cIk2uRpsQ.yf2SqGw0p8zRky64" }, { "type": 2, @@ -31,7 +32,8 @@ "text": "Brass Horn of Valhalla", "img": "icons/tools/instruments/flute-simple-wood.webp", "documentId": "QYJyQCnIQeLiMrmJ", - "flags": {} + "flags": {}, + "_key": "!tables.results!RwerG95cIk2uRpsQ.SYzXgNRPBETdCrVx" }, { "type": 2, @@ -46,7 +48,8 @@ "text": "Bronze Horn of Valhalla", "img": "icons/tools/instruments/flute-simple-wood.webp", "documentId": "sqcerAMszpe3hwyI", - "flags": {} + "flags": {}, + "_key": "!tables.results!RwerG95cIk2uRpsQ.pr5BUIkviD7Q4o9M" }, { "type": 2, @@ -61,7 +64,8 @@ "text": "Iron Horn of Valhalla", "img": "icons/tools/instruments/flute-simple-wood.webp", "documentId": "qVuZznv0MnIjDU70", - "flags": {} + "flags": {}, + "_key": "!tables.results!RwerG95cIk2uRpsQ.if6vpb2dv1ccbukq" } ], "formula": "1d100", @@ -77,5 +81,6 @@ "modifiedTime": 1662762614764, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!RwerG95cIk2uRpsQ" } diff --git a/packs/src/tables/ideals-acolyte.json b/packs/src/tables/ideals-acolyte.json index d675b85b4c..fa852301a5 100644 --- a/packs/src/tables/ideals-acolyte.json +++ b/packs/src/tables/ideals-acolyte.json @@ -15,7 +15,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!W9xqQZy0Ad0CwkN2.WyWLSAsNWUMhFiib" }, { "_id": "tvbTb6AnoLmeP76p", @@ -30,7 +31,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!W9xqQZy0Ad0CwkN2.tvbTb6AnoLmeP76p" }, { "_id": "EYdaisJ90h6GeoAV", @@ -45,7 +47,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!W9xqQZy0Ad0CwkN2.EYdaisJ90h6GeoAV" }, { "_id": "d5jZUvHrdo5RGTke", @@ -60,7 +63,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!W9xqQZy0Ad0CwkN2.d5jZUvHrdo5RGTke" }, { "_id": "AaKKTgr1XV3Un7vO", @@ -75,7 +79,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!W9xqQZy0Ad0CwkN2.AaKKTgr1XV3Un7vO" }, { "_id": "t7Kip0444UZMqOa1", @@ -90,7 +95,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!W9xqQZy0Ad0CwkN2.t7Kip0444UZMqOa1" } ], "formula": "1d6", @@ -111,5 +117,6 @@ "createdTime": 1661787234692, "modifiedTime": 1661787234692, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!tables!W9xqQZy0Ad0CwkN2" } diff --git a/packs/src/tables/indefinite-madness.json b/packs/src/tables/indefinite-madness.json index 4fbeb99b4b..f11e08fff3 100644 --- a/packs/src/tables/indefinite-madness.json +++ b/packs/src/tables/indefinite-madness.json @@ -16,7 +16,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!MAL5r8ZKx7BVsE9R.a7weVuxwPrapMTRu" }, { "_id": "YAvACG7W3U5I8dG4", @@ -31,7 +32,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!MAL5r8ZKx7BVsE9R.YAvACG7W3U5I8dG4" }, { "_id": "aj1Da3ZN4Qfexmrt", @@ -46,7 +48,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!MAL5r8ZKx7BVsE9R.aj1Da3ZN4Qfexmrt" }, { "_id": "iAxfOp1T2fPLcQZC", @@ -61,7 +64,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!MAL5r8ZKx7BVsE9R.iAxfOp1T2fPLcQZC" }, { "_id": "dM2zwwm0Wt9BpNjS", @@ -76,7 +80,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!MAL5r8ZKx7BVsE9R.dM2zwwm0Wt9BpNjS" }, { "_id": "BN91xHqDgJBIbxcN", @@ -91,7 +96,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!MAL5r8ZKx7BVsE9R.BN91xHqDgJBIbxcN" }, { "_id": "5C13RfAcDF8GL2yO", @@ -106,7 +112,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!MAL5r8ZKx7BVsE9R.5C13RfAcDF8GL2yO" }, { "_id": "FIP9xpBtUtEYFz71", @@ -121,7 +128,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!MAL5r8ZKx7BVsE9R.FIP9xpBtUtEYFz71" }, { "_id": "72Ax2IFlTse766bf", @@ -136,7 +144,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!MAL5r8ZKx7BVsE9R.72Ax2IFlTse766bf" }, { "_id": "HiWtyz93C3JavT6e", @@ -151,7 +160,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!MAL5r8ZKx7BVsE9R.HiWtyz93C3JavT6e" }, { "_id": "tttREMw0gGZvoejS", @@ -166,7 +176,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!MAL5r8ZKx7BVsE9R.tttREMw0gGZvoejS" }, { "_id": "hHlWALP9dClSwbVk", @@ -181,7 +192,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!MAL5r8ZKx7BVsE9R.hHlWALP9dClSwbVk" } ], "formula": "d100", @@ -201,5 +213,6 @@ "createdTime": 1661787234692, "modifiedTime": 1661787234692, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!tables!MAL5r8ZKx7BVsE9R" } diff --git a/packs/src/tables/iron-flask.json b/packs/src/tables/iron-flask.json index b3bbd1051c..5b6a69fe79 100644 --- a/packs/src/tables/iron-flask.json +++ b/packs/src/tables/iron-flask.json @@ -16,7 +16,8 @@ "text": "Empty", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!JDtZNDaAirupdm2O.k3JVn2GzWq3WaWTB" }, { "type": 0, @@ -31,7 +32,8 @@ "text": "Demon (type 1)", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!JDtZNDaAirupdm2O.u5RbIKqNfXN28okV" }, { "type": 0, @@ -46,7 +48,8 @@ "text": "Demon (type 2)", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!JDtZNDaAirupdm2O.3LCJABQgziObGeGf" }, { "type": 0, @@ -61,7 +64,8 @@ "text": "Demon (type 3)", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!JDtZNDaAirupdm2O.Mf3qMBSNIzsRkN3v" }, { "type": 0, @@ -76,7 +80,8 @@ "text": "Demon (type 4)", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!JDtZNDaAirupdm2O.ft9r419lK1d20iuz" }, { "type": 0, @@ -91,7 +96,8 @@ "text": "Demon (type 5)", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!JDtZNDaAirupdm2O.Z2mOoUYp7SjLslF6" }, { "type": 0, @@ -106,7 +112,8 @@ "text": "Demon (type 6)", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!JDtZNDaAirupdm2O.cyttP5x1BWwfJ8UL" }, { "type": 2, @@ -121,7 +128,8 @@ "text": "Deva", "img": "systems/dnd5e/tokens/celestial/Deva.webp", "documentId": "m4H3hjamBNMH09S9", - "flags": {} + "flags": {}, + "_key": "!tables.results!JDtZNDaAirupdm2O.nKaq1Rbe9BK9p8DR" }, { "type": 0, @@ -136,7 +144,8 @@ "text": "Devil (greater)", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!JDtZNDaAirupdm2O.26H3dT6zZJqebxPm" }, { "type": 0, @@ -151,7 +160,8 @@ "text": "Devil (lesser)", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!JDtZNDaAirupdm2O.eFk7YbFzQtlnUdBb" }, { "type": 2, @@ -166,7 +176,8 @@ "text": "Djinni", "img": "systems/dnd5e/tokens/elemental/Djinni.webp", "documentId": "5P1VGAZQwOilwZQf", - "flags": {} + "flags": {}, + "_key": "!tables.results!JDtZNDaAirupdm2O.9zfb5F7XqVkVyYVr" }, { "type": 2, @@ -181,7 +192,8 @@ "text": "Efreeti", "img": "systems/dnd5e/tokens/elemental/Efreeti.webp", "documentId": "LTomFUTBrkRi0Pj5", - "flags": {} + "flags": {}, + "_key": "!tables.results!JDtZNDaAirupdm2O.zrIsN6ladRatvlAZ" }, { "type": 0, @@ -196,7 +208,8 @@ "text": "Elemental (any)", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!JDtZNDaAirupdm2O.QroT33926DdQBeyF" }, { "type": 2, @@ -211,7 +224,8 @@ "text": "Invisible Stalker", "img": "icons/svg/mystery-man.svg", "documentId": "oDspGxRQFBhE74L2", - "flags": {} + "flags": {}, + "_key": "!tables.results!JDtZNDaAirupdm2O.yjQe2JQ48L7h8zQ0" }, { "type": 2, @@ -226,7 +240,8 @@ "text": "Night Hag", "img": "systems/dnd5e/tokens/fiend/NightHag.webp", "documentId": "xvh2UOKv1bh03Gih", - "flags": {} + "flags": {}, + "_key": "!tables.results!JDtZNDaAirupdm2O.8TnhHMMB9PtIm9VF" }, { "type": 2, @@ -241,7 +256,8 @@ "text": "Planetar", "img": "systems/dnd5e/tokens/celestial/Planetar.webp", "documentId": "XEByBLeOkDgL3mrr", - "flags": {} + "flags": {}, + "_key": "!tables.results!JDtZNDaAirupdm2O.Wg74NTthpFjHxdNj" }, { "type": 2, @@ -256,7 +272,8 @@ "text": "Salamander", "img": "systems/dnd5e/tokens/elemental/Salamander.webp", "documentId": "yVNPVJIBpQ2Mp3Xa", - "flags": {} + "flags": {}, + "_key": "!tables.results!JDtZNDaAirupdm2O.qey2iKAlN806bAx7" }, { "type": 2, @@ -271,7 +288,8 @@ "text": "Solar", "img": "icons/svg/mystery-man.svg", "documentId": "lOYt73eaJojBDxAV", - "flags": {} + "flags": {}, + "_key": "!tables.results!JDtZNDaAirupdm2O.4nUbeSIBG6MIVDYs" }, { "type": 2, @@ -286,7 +304,8 @@ "text": "Succubus/Incubus", "img": "systems/dnd5e/tokens/fiend/Succubus.webp", "documentId": "VmdyZDjqAc8vdncY", - "flags": {} + "flags": {}, + "_key": "!tables.results!JDtZNDaAirupdm2O.cMsHbb6RlFodREik" }, { "type": 2, @@ -301,7 +320,8 @@ "text": "Xorn", "img": "systems/dnd5e/tokens/elemental/Xorn.webp", "documentId": "2MZNHeOZweXAYbv1", - "flags": {} + "flags": {}, + "_key": "!tables.results!JDtZNDaAirupdm2O.o5O9FiiZr5vZkjdm" } ], "formula": "1d100", @@ -317,5 +337,6 @@ "modifiedTime": 1662764863502, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!JDtZNDaAirupdm2O" } diff --git a/packs/src/tables/long-term-madness.json b/packs/src/tables/long-term-madness.json index ef4d14eb8e..1e1336c100 100644 --- a/packs/src/tables/long-term-madness.json +++ b/packs/src/tables/long-term-madness.json @@ -16,7 +16,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!kJB79nI9rju6VN8J.iES7JuBm9no1cbGO" }, { "_id": "x0u5e2uMZ9fvOWNk", @@ -31,7 +32,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!kJB79nI9rju6VN8J.x0u5e2uMZ9fvOWNk" }, { "_id": "Thnvd6fMkA1EWXkM", @@ -46,7 +48,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!kJB79nI9rju6VN8J.Thnvd6fMkA1EWXkM" }, { "_id": "xkuUVD0CIv0TptZT", @@ -61,7 +64,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!kJB79nI9rju6VN8J.xkuUVD0CIv0TptZT" }, { "_id": "ilypeTF9MXORei9P", @@ -76,7 +80,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!kJB79nI9rju6VN8J.ilypeTF9MXORei9P" }, { "_id": "7uCS6LKd9X0nycDI", @@ -91,7 +96,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!kJB79nI9rju6VN8J.7uCS6LKd9X0nycDI" }, { "_id": "vXuZrjkQtsSBQ2My", @@ -106,7 +112,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!kJB79nI9rju6VN8J.vXuZrjkQtsSBQ2My" }, { "_id": "cKhqs7M3sE7BJHNY", @@ -121,7 +128,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!kJB79nI9rju6VN8J.cKhqs7M3sE7BJHNY" }, { "_id": "OSK3EW1QKJQ7P8PM", @@ -136,7 +144,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!kJB79nI9rju6VN8J.OSK3EW1QKJQ7P8PM" }, { "_id": "XQMeMYKpugM388SF", @@ -151,7 +160,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!kJB79nI9rju6VN8J.XQMeMYKpugM388SF" }, { "_id": "IFcZFnPkHhW8b2QZ", @@ -166,7 +176,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!kJB79nI9rju6VN8J.IFcZFnPkHhW8b2QZ" }, { "_id": "LRa8ovYy0VCpdd7s", @@ -181,7 +192,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!kJB79nI9rju6VN8J.LRa8ovYy0VCpdd7s" } ], "formula": "d100", @@ -201,5 +213,6 @@ "createdTime": 1661787234693, "modifiedTime": 1661787234693, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!tables!kJB79nI9rju6VN8J" } diff --git a/packs/src/tables/manual-of-golems.json b/packs/src/tables/manual-of-golems.json index a2c4318096..11a5448022 100644 --- a/packs/src/tables/manual-of-golems.json +++ b/packs/src/tables/manual-of-golems.json @@ -16,7 +16,8 @@ "text": "Clay Golem", "img": "systems/dnd5e/tokens/construct/ClayGolem.webp", "documentId": "YOqhbf8WsX0jH9Fu", - "flags": {} + "flags": {}, + "_key": "!tables.results!htMPUPPABjI6fwck.IiSjf0idEypz8cx5" }, { "type": 2, @@ -31,7 +32,8 @@ "text": "Flesh Golem", "img": "icons/svg/mystery-man.svg", "documentId": "Hm4o2FgPZsdbXjLq", - "flags": {} + "flags": {}, + "_key": "!tables.results!htMPUPPABjI6fwck.QudkKiSsSl9eUJBu" }, { "type": 2, @@ -46,7 +48,8 @@ "text": "Iron Golem", "img": "systems/dnd5e/tokens/construct/IronGolem.webp", "documentId": "h98AuPfomEPcCibP", - "flags": {} + "flags": {}, + "_key": "!tables.results!htMPUPPABjI6fwck.7uSrcciLe3oXFSui" }, { "type": 2, @@ -61,7 +64,8 @@ "text": "Stone Golem", "img": "systems/dnd5e/tokens/construct/StoneGolem.webp", "documentId": "z3gSIXHHWYaHjfBT", - "flags": {} + "flags": {}, + "_key": "!tables.results!htMPUPPABjI6fwck.sRgHiHl7d3sxL74G" } ], "formula": "1d20", @@ -77,5 +81,6 @@ "modifiedTime": 1662765328758, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!htMPUPPABjI6fwck" } diff --git a/packs/src/tables/necklace-of-prayer-beads.json b/packs/src/tables/necklace-of-prayer-beads.json index 063fe32748..0dc2653b9c 100644 --- a/packs/src/tables/necklace-of-prayer-beads.json +++ b/packs/src/tables/necklace-of-prayer-beads.json @@ -16,7 +16,8 @@ "text": "Bead of Blessing", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!XHTUTUXdyzcPbodw.SdjZb9c0OqKKGAK5" }, { "type": 0, @@ -31,7 +32,8 @@ "text": "Bead of Curing", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!XHTUTUXdyzcPbodw.W7SvVNcfCqLHrvfI" }, { "type": 0, @@ -46,7 +48,8 @@ "text": "Bead of Favor", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!XHTUTUXdyzcPbodw.fTpvVX4tMhYUcPto" }, { "type": 0, @@ -61,7 +64,8 @@ "text": "Bead of Smiting", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!XHTUTUXdyzcPbodw.TUi01QTJM62t7HBX" }, { "type": 0, @@ -76,7 +80,8 @@ "text": "Bead of Summons", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!XHTUTUXdyzcPbodw.7O9jSLol4pqANO0w" }, { "type": 0, @@ -91,7 +96,8 @@ "text": "Bead of Wind walking", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!XHTUTUXdyzcPbodw.U303QJLjIM9Cc4UT" } ], "formula": "1d20", @@ -107,5 +113,6 @@ "modifiedTime": 1662764093092, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!XHTUTUXdyzcPbodw" } diff --git a/packs/src/tables/personality-traits-acolyte.json b/packs/src/tables/personality-traits-acolyte.json index 7ed869151e..ae939e2634 100644 --- a/packs/src/tables/personality-traits-acolyte.json +++ b/packs/src/tables/personality-traits-acolyte.json @@ -15,7 +15,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!HDzErjwy3TseLOZX.cDKHG7CGTZTp6p9H" }, { "_id": "obotHmmCsn6EC6et", @@ -30,7 +31,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!HDzErjwy3TseLOZX.obotHmmCsn6EC6et" }, { "_id": "ed4fuSbKlaJhkPnJ", @@ -45,7 +47,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!HDzErjwy3TseLOZX.ed4fuSbKlaJhkPnJ" }, { "_id": "uW593Ns1x0veCtuU", @@ -60,7 +63,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!HDzErjwy3TseLOZX.uW593Ns1x0veCtuU" }, { "_id": "lCHMGDzFr7N77YVH", @@ -75,7 +79,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!HDzErjwy3TseLOZX.lCHMGDzFr7N77YVH" }, { "_id": "QHjkENRMfvffAfdt", @@ -90,7 +95,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!HDzErjwy3TseLOZX.QHjkENRMfvffAfdt" }, { "_id": "muJ0Jnhypw6VbWIQ", @@ -105,7 +111,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!HDzErjwy3TseLOZX.muJ0Jnhypw6VbWIQ" }, { "_id": "1u946i3phQQ2QzTq", @@ -120,7 +127,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!HDzErjwy3TseLOZX.1u946i3phQQ2QzTq" } ], "formula": "1d8", @@ -141,5 +149,6 @@ "createdTime": 1661787234691, "modifiedTime": 1661787234691, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!tables!HDzErjwy3TseLOZX" } diff --git a/packs/src/tables/potion-of-resistance.json b/packs/src/tables/potion-of-resistance.json index 1d2c3416e1..8fba626757 100644 --- a/packs/src/tables/potion-of-resistance.json +++ b/packs/src/tables/potion-of-resistance.json @@ -16,7 +16,8 @@ "text": "Potion of Acid Resistance", "img": "icons/consumables/potions/bottle-bulb-corked-green.webp", "documentId": "zgZkJAyFAfYmyn11", - "flags": {} + "flags": {}, + "_key": "!tables.results!JzLOE4IxcmxjLLuz.reeQ2y4MWiGpNdxk" }, { "type": 2, @@ -31,7 +32,8 @@ "text": "Potion of Cold Resistance", "img": "icons/consumables/potions/bottle-bulb-corked-labeled-blue.webp", "documentId": "34YKlIJVVWLeBv7R", - "flags": {} + "flags": {}, + "_key": "!tables.results!JzLOE4IxcmxjLLuz.MDRNc2tXzsP8Qylc" }, { "type": 2, @@ -46,7 +48,8 @@ "text": "Potion of Fire Resistance", "img": "icons/consumables/potions/bottle-bulb-corked-glowing-red.webp", "documentId": "Jj4iFQQGvckx8Wsj", - "flags": {} + "flags": {}, + "_key": "!tables.results!JzLOE4IxcmxjLLuz.SecPdaSHw67ASGhd" }, { "type": 2, @@ -61,7 +64,8 @@ "text": "Potion of Force Resistance", "img": "icons/consumables/potions/bottle-bulb-corked-labeled-blue.webp", "documentId": "kKGJjVVlJVoakWgQ", - "flags": {} + "flags": {}, + "_key": "!tables.results!JzLOE4IxcmxjLLuz.QsgW6uOtCQcRejJd" }, { "type": 2, @@ -76,7 +80,8 @@ "text": "Potion of Lightning Resistance", "img": "icons/consumables/potions/bottle-round-corked-yellow.webp", "documentId": "8MPnSrvEeZhPhtTi", - "flags": {} + "flags": {}, + "_key": "!tables.results!JzLOE4IxcmxjLLuz.03ho6s1UiX5GD1nq" }, { "type": 2, @@ -91,7 +96,8 @@ "text": "Potion of Necrotic Resistance", "img": "icons/consumables/potions/bottle-round-corked-pink.webp", "documentId": "xw99pcqPBVwtMOLw", - "flags": {} + "flags": {}, + "_key": "!tables.results!JzLOE4IxcmxjLLuz.7nlsjbsajtikPzoE" }, { "type": 2, @@ -106,7 +112,8 @@ "text": "Potion of Poison Resistance", "img": "icons/consumables/potions/bottle-bulb-corked-green.webp", "documentId": "f5chGcpQCi1HYPQw", - "flags": {} + "flags": {}, + "_key": "!tables.results!JzLOE4IxcmxjLLuz.WrP3nGIZmWe6hKvS" }, { "type": 2, @@ -121,7 +128,8 @@ "text": "Potion of Psychic Resistance", "img": "icons/consumables/potions/bottle-round-corked-pink.webp", "documentId": "c0luemOP0iW8L23R", - "flags": {} + "flags": {}, + "_key": "!tables.results!JzLOE4IxcmxjLLuz.QPJdz2GULdkZaUpd" }, { "type": 2, @@ -136,7 +144,8 @@ "text": "Potion of Radiant Resistance", "img": "icons/consumables/potions/bottle-round-corked-yellow.webp", "documentId": "LBQWNqX6hZOKhQ8a", - "flags": {} + "flags": {}, + "_key": "!tables.results!JzLOE4IxcmxjLLuz.TchdHV0lQf2pi8RV" }, { "type": 2, @@ -151,7 +160,8 @@ "text": "Potion of Thunder Resistance", "img": "icons/consumables/potions/bottle-round-corked-yellow.webp", "documentId": "zBX8LLC2CjC89Dzl", - "flags": {} + "flags": {}, + "_key": "!tables.results!JzLOE4IxcmxjLLuz.I9FQwfaZ4enUvFkH" } ], "formula": "1d10", @@ -167,5 +177,6 @@ "modifiedTime": 1662767954826, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!JzLOE4IxcmxjLLuz" } diff --git a/packs/src/tables/reincarnate.json b/packs/src/tables/reincarnate.json index 3d036c198a..066d4b8fb4 100644 --- a/packs/src/tables/reincarnate.json +++ b/packs/src/tables/reincarnate.json @@ -16,7 +16,8 @@ "text": "Dragonborn", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!eXu1QFMsFtTtoJBZ.Ld8L2fxaT85DRMuY" }, { "type": 0, @@ -31,7 +32,8 @@ "text": "Dwarf, hill", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!eXu1QFMsFtTtoJBZ.PpXTfkQwmQRkPQ8d" }, { "type": 0, @@ -46,7 +48,8 @@ "text": "Dwarf, mountain", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!eXu1QFMsFtTtoJBZ.UuL705fCv7nOxOtL" }, { "type": 0, @@ -61,7 +64,8 @@ "text": "Elf, dark", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!eXu1QFMsFtTtoJBZ.U4HhLYU73mo3Bbfa" }, { "type": 0, @@ -76,7 +80,8 @@ "text": "Elf, high", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!eXu1QFMsFtTtoJBZ.u2O2wIWUxrPtGEiI" }, { "type": 0, @@ -91,7 +96,8 @@ "text": "Elf, wood", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!eXu1QFMsFtTtoJBZ.U6xuiyOi3gm4tLdf" }, { "type": 0, @@ -106,7 +112,8 @@ "text": "Gnome, forest", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!eXu1QFMsFtTtoJBZ.wK6rhiPJMjD4h3my" }, { "type": 0, @@ -121,7 +128,8 @@ "text": "Gnome, rock", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!eXu1QFMsFtTtoJBZ.idg4VgxIGsdOFjzY" }, { "type": 0, @@ -136,7 +144,8 @@ "text": "Half-elf", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!eXu1QFMsFtTtoJBZ.XQRdGlTr3dG24ZMP" }, { "type": 0, @@ -151,7 +160,8 @@ "text": "Half-orc", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!eXu1QFMsFtTtoJBZ.XeiU0TAHRvd30aXE" }, { "type": 0, @@ -166,7 +176,8 @@ "text": "Halfling, lightfoot", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!eXu1QFMsFtTtoJBZ.EvQkNNXDmDgcjUWi" }, { "type": 0, @@ -181,7 +192,8 @@ "text": "Halfling, stout", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!eXu1QFMsFtTtoJBZ.AP3lIMJ3JdZOhOKX" }, { "type": 0, @@ -196,7 +208,8 @@ "text": "Human", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!eXu1QFMsFtTtoJBZ.uDnhR73w2UVWYsRW" }, { "type": 0, @@ -211,7 +224,8 @@ "text": "Tiefling", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!eXu1QFMsFtTtoJBZ.862Tzx7tZdKMsfYM" } ], "formula": "1d100", @@ -227,5 +241,6 @@ "modifiedTime": 1662409711116, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!eXu1QFMsFtTtoJBZ" } diff --git a/packs/src/tables/ring-of-resistance.json b/packs/src/tables/ring-of-resistance.json index deaf029e2d..7db44a71ef 100644 --- a/packs/src/tables/ring-of-resistance.json +++ b/packs/src/tables/ring-of-resistance.json @@ -16,7 +16,8 @@ "text": "Ring of Acid Resistance", "img": "icons/equipment/finger/ring-band-engraved-scrolls-silver.webp", "documentId": "WO8DLfz3G2QZ5njs", - "flags": {} + "flags": {}, + "_key": "!tables.results!MdTxWyYVhTIgtNcG.TtoCWDecZ32NjM9j" }, { "type": 2, @@ -31,7 +32,8 @@ "text": "Ring of Cold Resistance", "img": "icons/equipment/finger/ring-faceted-silver-orange.webp", "documentId": "fvezXwRJ5PqUf5NN", - "flags": {} + "flags": {}, + "_key": "!tables.results!MdTxWyYVhTIgtNcG.tBgNOJLPOTZIo5FT" }, { "type": 2, @@ -46,7 +48,8 @@ "text": "Ring of Fire Resistance", "img": "icons/equipment/finger/ring-cabochon-gold-orange.webp", "documentId": "3X7vdOjnCSpi40yn", - "flags": {} + "flags": {}, + "_key": "!tables.results!MdTxWyYVhTIgtNcG.sqeqHhdqB5PtK9qT" }, { "type": 2, @@ -61,7 +64,8 @@ "text": "Ring of Force Resistance", "img": "icons/equipment/finger/ring-faceted-gold-purple.webp", "documentId": "ScxK8YNU5dWELhlQ", - "flags": {} + "flags": {}, + "_key": "!tables.results!MdTxWyYVhTIgtNcG.SGy7SaxIbTR5rfiX" }, { "type": 2, @@ -76,7 +80,8 @@ "text": "Ring of Lightning Resistance", "img": "icons/equipment/finger/ring-cabochon-gold-orange.webp", "documentId": "XJ8CG4UvLELCmOi2", - "flags": {} + "flags": {}, + "_key": "!tables.results!MdTxWyYVhTIgtNcG.ngvsB3agtiHUCGtz" }, { "type": 2, @@ -91,7 +96,8 @@ "text": "Ring of Necrotic Resistance", "img": "icons/equipment/finger/ring-band-engraved-scrolls-silver.webp", "documentId": "qMGkmzfLHfXd7DiJ", - "flags": {} + "flags": {}, + "_key": "!tables.results!MdTxWyYVhTIgtNcG.lsBDXyl4QaWHgX5E" }, { "type": 2, @@ -106,7 +112,8 @@ "text": "Ring of Poison Resistance", "img": "icons/equipment/finger/ring-faceted-gold-purple.webp", "documentId": "5SorTMl8NKDO9Yge", - "flags": {} + "flags": {}, + "_key": "!tables.results!MdTxWyYVhTIgtNcG.9A1GpyscNXgpuoN1" }, { "type": 2, @@ -121,7 +128,8 @@ "text": "Ring of Psychic Resistance", "img": "icons/equipment/finger/ring-cabochon-notched-gold-green.webp", "documentId": "Q7E6MgPzVkwBeZ6l", - "flags": {} + "flags": {}, + "_key": "!tables.results!MdTxWyYVhTIgtNcG.SsVBvxvbdNMX5A2e" }, { "type": 2, @@ -136,7 +144,8 @@ "text": "Ring of Radiant Resistance", "img": "icons/equipment/finger/ring-inlay-red.webp", "documentId": "IrC5LPbWNxlAQoK7", - "flags": {} + "flags": {}, + "_key": "!tables.results!MdTxWyYVhTIgtNcG.nSEbdBud4io6XjLv" }, { "type": 2, @@ -151,7 +160,8 @@ "text": "Ring of Thunder Resistance", "img": "icons/equipment/finger/ring-faceted-silver-orange.webp", "documentId": "IpBBqr0r7JanyVn0", - "flags": {} + "flags": {}, + "_key": "!tables.results!MdTxWyYVhTIgtNcG.mh9AJPzFwGgEY7tg" } ], "formula": "1d10", @@ -167,5 +177,6 @@ "modifiedTime": 1662768497945, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!MdTxWyYVhTIgtNcG" } diff --git a/packs/src/tables/robe-of-useful-items.json b/packs/src/tables/robe-of-useful-items.json index 8d225c3e5d..04c17caa10 100644 --- a/packs/src/tables/robe-of-useful-items.json +++ b/packs/src/tables/robe-of-useful-items.json @@ -16,7 +16,8 @@ "text": "Bag of 100 gp", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!CTGxcd51szehUGBn.OSKn1nYTdGogvqPV" }, { "type": 0, @@ -31,7 +32,8 @@ "text": "Silver coffer (1 foot long, 6 inches wide and deep) worth 500 gp", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!CTGxcd51szehUGBn.hk5yFM7fP2LQmQjb" }, { "type": 0, @@ -46,7 +48,8 @@ "text": "Iron door (up to 10 feet wide and 10 feet high, barred on one side of your choice), which you can place in an opening you can reach; it conforms to fit the opening, attaching and hinging itself", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!CTGxcd51szehUGBn.YnqZneyfDEJQhdQZ" }, { "type": 0, @@ -61,7 +64,8 @@ "text": "10 gems worth 100 gp each", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!CTGxcd51szehUGBn.Im1fQwlV87faWYDZ" }, { "type": 0, @@ -76,7 +80,8 @@ "text": "Wooden ladder (24 feet long)", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!CTGxcd51szehUGBn.je5Ic9cYvaDqwtoZ" }, { "type": 0, @@ -91,7 +96,8 @@ "text": "A riding horse with saddle bags", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!CTGxcd51szehUGBn.n9sTNVJMhuAXJTkS" }, { "type": 0, @@ -106,7 +112,8 @@ "text": "Pit (a cube 10 feet on a side), which you can place on the ground within 10 feet of you", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!CTGxcd51szehUGBn.rQOCI18WAo22AMkJ" }, { "type": 0, @@ -121,7 +128,8 @@ "text": "4 potions of healing", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!CTGxcd51szehUGBn.c6yqUyZ9HErSMqvL" }, { "type": 0, @@ -136,7 +144,8 @@ "text": "Rowboat (12 feet long)", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!CTGxcd51szehUGBn.7FsfvPYncVNd81sy" }, { "type": 0, @@ -151,7 +160,8 @@ "text": "Spell scroll containing one spell of 1st to 3rd level", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!CTGxcd51szehUGBn.Al2W8Tl2ipg4fON2" }, { "type": 0, @@ -166,7 +176,8 @@ "text": "2 mastiffs", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!CTGxcd51szehUGBn.ukl5u9Yv8rVMviO3" }, { "type": 0, @@ -181,7 +192,8 @@ "text": "Window (2 feet by 4 feet, up to 2 feet deep), which you can place on a vertical surface you can reach", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!CTGxcd51szehUGBn.Ugc05f6EIta394uB" }, { "type": 0, @@ -196,7 +208,8 @@ "text": "Portable ram", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!CTGxcd51szehUGBn.4fugpygUhBV3mB8Q" } ], "formula": "1d100", @@ -212,5 +225,6 @@ "modifiedTime": 1662766078590, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!CTGxcd51szehUGBn" } diff --git a/packs/src/tables/rust-bag-of-tricks.json b/packs/src/tables/rust-bag-of-tricks.json index 8c68823b57..fd9e643648 100644 --- a/packs/src/tables/rust-bag-of-tricks.json +++ b/packs/src/tables/rust-bag-of-tricks.json @@ -16,7 +16,8 @@ "text": "Rat", "img": "systems/dnd5e/tokens/beast/Rat.webp", "documentId": "pozQUPTnLZW8epox", - "flags": {} + "flags": {}, + "_key": "!tables.results!PLHwT9dC6fCZqkeo.WovaOgGxcfHHCXCu" }, { "type": 2, @@ -31,7 +32,8 @@ "text": "Owl", "img": "systems/dnd5e/tokens/beast/Owl.webp", "documentId": "d0prpsGSAorDadec", - "flags": {} + "flags": {}, + "_key": "!tables.results!PLHwT9dC6fCZqkeo.lLLibUhX766v95aa" }, { "type": 2, @@ -46,7 +48,8 @@ "text": "Mastiff", "img": "systems/dnd5e/tokens/beast/Mastiff.webp", "documentId": "YTpL2c3NO4sOn2UA", - "flags": {} + "flags": {}, + "_key": "!tables.results!PLHwT9dC6fCZqkeo.8c41d4R663Slopt6" }, { "type": 2, @@ -61,7 +64,8 @@ "text": "Goat", "img": "systems/dnd5e/tokens/beast/Goat.webp", "documentId": "y8sRU8Ks2lcrGsaf", - "flags": {} + "flags": {}, + "_key": "!tables.results!PLHwT9dC6fCZqkeo.NVkpFhIDdTsGrwrm" }, { "type": 2, @@ -76,7 +80,8 @@ "text": "Giant Goat", "img": "systems/dnd5e/tokens/beast/GiantGoat.webp", "documentId": "rjqk7ToMD8sGr3n4", - "flags": {} + "flags": {}, + "_key": "!tables.results!PLHwT9dC6fCZqkeo.g44x1kM2YztO54L8" }, { "type": 2, @@ -91,7 +96,8 @@ "text": "Giant Boar", "img": "systems/dnd5e/tokens/beast/GiantBoar.webp", "documentId": "SsuCaF2fIEoDdFA3", - "flags": {} + "flags": {}, + "_key": "!tables.results!PLHwT9dC6fCZqkeo.3xTzZJeTzSLLxpwW" }, { "type": 2, @@ -106,7 +112,8 @@ "text": "Lion", "img": "systems/dnd5e/tokens/beast/Lion.webp", "documentId": "hjhERRzafCiFFVLA", - "flags": {} + "flags": {}, + "_key": "!tables.results!PLHwT9dC6fCZqkeo.J6HG6A1Ssb12loTI" }, { "type": 2, @@ -121,7 +128,8 @@ "text": "Brown Bear", "img": "systems/dnd5e/tokens/beast/BrownBear.webp", "documentId": "omcDpBoB69esCXeM", - "flags": {} + "flags": {}, + "_key": "!tables.results!PLHwT9dC6fCZqkeo.ZW7OYeehs2Bf1UJO" } ], "formula": "1d8", @@ -137,5 +145,6 @@ "modifiedTime": 1662498921110, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!PLHwT9dC6fCZqkeo" } diff --git a/packs/src/tables/sentient-magic-items-alignment.json b/packs/src/tables/sentient-magic-items-alignment.json index 57614fb90a..100afdf6ab 100644 --- a/packs/src/tables/sentient-magic-items-alignment.json +++ b/packs/src/tables/sentient-magic-items-alignment.json @@ -16,7 +16,8 @@ "text": "Lawful good", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!NdjHJMSSVWw5fHsL.bUNUmfmbEVBGZhdW" }, { "type": 0, @@ -31,7 +32,8 @@ "text": "Neutral good", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!NdjHJMSSVWw5fHsL.kjVZfuylT17ctDgs" }, { "type": 0, @@ -46,7 +48,8 @@ "text": "Chaotic good", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!NdjHJMSSVWw5fHsL.wDjHL9zlzYjiT9CS" }, { "type": 0, @@ -61,7 +64,8 @@ "text": "Lawful neutral", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!NdjHJMSSVWw5fHsL.DNhEaIbA7LutSCm5" }, { "type": 0, @@ -76,7 +80,8 @@ "text": "Neutral", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!NdjHJMSSVWw5fHsL.5cC3zLo90XNyH3Td" }, { "type": 0, @@ -91,7 +96,8 @@ "text": "Chaotic neutral", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!NdjHJMSSVWw5fHsL.MptR9qFAq2Je31Ax" }, { "type": 0, @@ -106,7 +112,8 @@ "text": "Lawful evil", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!NdjHJMSSVWw5fHsL.3X5lfA6w6U9RBLvy" }, { "type": 0, @@ -121,7 +128,8 @@ "text": "Neutral evil", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!NdjHJMSSVWw5fHsL.pycjgCIx93MAjrJn" }, { "type": 0, @@ -136,7 +144,8 @@ "text": "Chaotic evil", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!NdjHJMSSVWw5fHsL.F8tMOTkFRP5NEOO4" } ], "formula": "1d100", @@ -152,5 +161,6 @@ "modifiedTime": 1662769385785, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!NdjHJMSSVWw5fHsL" } diff --git a/packs/src/tables/sentient-magic-items-communication.json b/packs/src/tables/sentient-magic-items-communication.json index c10fb71cbe..4b0caa877a 100644 --- a/packs/src/tables/sentient-magic-items-communication.json +++ b/packs/src/tables/sentient-magic-items-communication.json @@ -16,7 +16,8 @@ "text": "The item communicates by transmitting emotion to the creature carrying or wielding it.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!BHckoLKDwoL9d5p3.fHUcqEyH5hT8iqVk" }, { "type": 0, @@ -31,7 +32,8 @@ "text": "The item can speak, read, and understand one or more languages.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!BHckoLKDwoL9d5p3.gukhzxpdk9xa4Ewy" }, { "type": 0, @@ -46,7 +48,8 @@ "text": "The item can speak, read, and understand one or more languages. In addition, the item can communicate telepathically with any character that carries or wields it.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!BHckoLKDwoL9d5p3.PneqV9OL9QdLzSZR" } ], "formula": "1d100", @@ -62,5 +65,6 @@ "modifiedTime": 1662769206967, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!BHckoLKDwoL9d5p3" } diff --git a/packs/src/tables/sentient-magic-items-purpose.json b/packs/src/tables/sentient-magic-items-purpose.json index 5d7091bd30..b887c38703 100644 --- a/packs/src/tables/sentient-magic-items-purpose.json +++ b/packs/src/tables/sentient-magic-items-purpose.json @@ -16,7 +16,8 @@ "text": "Aligned: The item seeks to defeat or destroy those of a diametrically opposed alignment. (Such an item is never neutral.)", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!b250eqNa0k8lrE9b.3rpnE2eYC6U3rlHy" }, { "type": 0, @@ -31,7 +32,8 @@ "text": "Bane: The item seeks to defeat or destroy creatures of a particular kind, such as fiends, shapechangers, trolls, or wizards.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!b250eqNa0k8lrE9b.TjT8WM2xOK77N5dC" }, { "type": 0, @@ -46,7 +48,8 @@ "text": "Protector: The item seeks to defend a particular race or kind of creature, such as elves or druids.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!b250eqNa0k8lrE9b.0dCoFLfukaRxqWID" }, { "type": 0, @@ -61,7 +64,8 @@ "text": "Crusader: The item seeks to defeat, weaken, or destroy the servants of a particular deity.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!b250eqNa0k8lrE9b.rV1TpI5eHXqufMT4" }, { "type": 0, @@ -76,7 +80,8 @@ "text": "Templar: The item seeks to defend the servants and interests of a particular deity.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!b250eqNa0k8lrE9b.Tp3PSQsIfNoXdLab" }, { "type": 0, @@ -91,7 +96,8 @@ "text": "Destroyer: The item craves destruction and goads its user to fight arbitrarily.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!b250eqNa0k8lrE9b.gLYNS4kAi6HohqiF" }, { "type": 0, @@ -106,7 +112,8 @@ "text": "Glory Seeker: The item seeks renown as the greatest magic item in the world, by establishing its user as a famous or notorious figure.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!b250eqNa0k8lrE9b.oAiC4NTXfnNJMUs5" }, { "type": 0, @@ -121,7 +128,8 @@ "text": "Lore Seeker: The item craves knowledge or is determined to solve a mystery, learn a secret, or unravel a cryptic prophecy.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!b250eqNa0k8lrE9b.LyqIqUOa5UI0OxWI" }, { "type": 0, @@ -136,7 +144,8 @@ "text": "Destiny Seeker: The item is convinced that it and its wielder have key roles to play in future events.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!b250eqNa0k8lrE9b.O2iFP824YTeJl7dc" }, { "type": 0, @@ -151,7 +160,8 @@ "text": "Creator Seeker: The item seeks its creator and wants to understand why it was created.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!b250eqNa0k8lrE9b.3wZDF2fD9vfqHpNj" } ], "formula": "1d10", @@ -167,5 +177,6 @@ "modifiedTime": 1662769457615, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!b250eqNa0k8lrE9b" } diff --git a/packs/src/tables/sentient-magic-items-senses.json b/packs/src/tables/sentient-magic-items-senses.json index 7c00b92118..819349b562 100644 --- a/packs/src/tables/sentient-magic-items-senses.json +++ b/packs/src/tables/sentient-magic-items-senses.json @@ -16,7 +16,8 @@ "text": "Hearing and normal vision out to 30 feet.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!gfR9uCe42xBCCktd.z5Yf0RYt4Kfhvhfa" }, { "type": 0, @@ -31,7 +32,8 @@ "text": "Hearing and normal vision out to 60 feet.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!gfR9uCe42xBCCktd.Fs0E2WLA6mfi1sUr" }, { "type": 0, @@ -46,7 +48,8 @@ "text": "Hearing and normal vision out to 120 feet.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!gfR9uCe42xBCCktd.rFdT3QtO3NDOz92d" }, { "type": 0, @@ -61,7 +64,8 @@ "text": "Hearing and darkvision out to 120 feet.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!gfR9uCe42xBCCktd.5vXfLp6f7vaFBd2o" } ], "formula": "1d4", @@ -77,5 +81,6 @@ "modifiedTime": 1662769271300, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!gfR9uCe42xBCCktd" } diff --git a/packs/src/tables/short-term-madness.json b/packs/src/tables/short-term-madness.json index 52489cb58e..11eb5a4224 100644 --- a/packs/src/tables/short-term-madness.json +++ b/packs/src/tables/short-term-madness.json @@ -16,7 +16,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!ypk2L9feVwTx0QVj.11gmKaEIaMzlQbPJ" }, { "_id": "bqGX8s0fTVko5baU", @@ -31,7 +32,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!ypk2L9feVwTx0QVj.bqGX8s0fTVko5baU" }, { "_id": "U0Qg1YLAKphU5kth", @@ -46,7 +48,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!ypk2L9feVwTx0QVj.U0Qg1YLAKphU5kth" }, { "_id": "KehWVyHOeh1U5wNW", @@ -61,7 +64,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!ypk2L9feVwTx0QVj.KehWVyHOeh1U5wNW" }, { "_id": "a3yyT0t1NsMgejTu", @@ -76,7 +80,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!ypk2L9feVwTx0QVj.a3yyT0t1NsMgejTu" }, { "_id": "hanppRWYEVb64iUt", @@ -91,7 +96,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!ypk2L9feVwTx0QVj.hanppRWYEVb64iUt" }, { "_id": "FnkRWI5RiPmRoxQs", @@ -106,7 +112,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!ypk2L9feVwTx0QVj.FnkRWI5RiPmRoxQs" }, { "_id": "dswa3ZDK4ZIhw98a", @@ -121,7 +128,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!ypk2L9feVwTx0QVj.dswa3ZDK4ZIhw98a" }, { "_id": "zW1HUUNLqwmOfFgg", @@ -136,7 +144,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!ypk2L9feVwTx0QVj.zW1HUUNLqwmOfFgg" }, { "_id": "0FNn7OzOX4DtlC4x", @@ -151,7 +160,8 @@ "flags": {}, "img": "icons/svg/d20-black.svg", "documentCollection": "", - "documentId": null + "documentId": null, + "_key": "!tables.results!ypk2L9feVwTx0QVj.0FNn7OzOX4DtlC4x" } ], "formula": "d100", @@ -171,5 +181,6 @@ "createdTime": 1661787234694, "modifiedTime": 1661787234694, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!tables!ypk2L9feVwTx0QVj" } diff --git a/packs/src/tables/sphere-of-annihilation.json b/packs/src/tables/sphere-of-annihilation.json index 9128df8310..f85ca11426 100644 --- a/packs/src/tables/sphere-of-annihilation.json +++ b/packs/src/tables/sphere-of-annihilation.json @@ -16,7 +16,8 @@ "text": "The sphere is destroyed.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!hHR0Zw75o9PXYl4c.3KJemhHAcwM89xKv" }, { "type": 0, @@ -31,7 +32,8 @@ "text": "The sphere moves through the portal or into the extradimensional space.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!hHR0Zw75o9PXYl4c.XAU8h93d079sUYAW" }, { "type": 0, @@ -46,7 +48,8 @@ "text": "A spatial rift sends each creature and object within 180 feet of the sphere, including the sphere, to a random plane of existence.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!hHR0Zw75o9PXYl4c.2SQQLAA0ZhwfNyey" } ], "formula": "1d100", @@ -62,5 +65,6 @@ "modifiedTime": 1662766590641, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!hHR0Zw75o9PXYl4c" } diff --git a/packs/src/tables/tan-bag-of-tricks.json b/packs/src/tables/tan-bag-of-tricks.json index 76e44a4e42..4ea7f1c774 100644 --- a/packs/src/tables/tan-bag-of-tricks.json +++ b/packs/src/tables/tan-bag-of-tricks.json @@ -16,7 +16,8 @@ "text": "Jackal", "img": "systems/dnd5e/tokens/beast/Jackal.webp", "documentId": "MZYCPIVoBs918qGZ", - "flags": {} + "flags": {}, + "_key": "!tables.results!5PTePCTxrk2fIrll.gyRjMuaMG9dstA5N" }, { "type": 2, @@ -31,7 +32,8 @@ "text": "Ape", "img": "systems/dnd5e/tokens/beast/Ape.webp", "documentId": "K5cKmPoFkpuOotis", - "flags": {} + "flags": {}, + "_key": "!tables.results!5PTePCTxrk2fIrll.AzjFIjtyw4PdbXxb" }, { "type": 2, @@ -46,7 +48,8 @@ "text": "Baboon", "img": "systems/dnd5e/tokens/beast/Baboon.webp", "documentId": "JW8bXggOMBx1S6tF", - "flags": {} + "flags": {}, + "_key": "!tables.results!5PTePCTxrk2fIrll.rw5fz13gHv4smVis" }, { "type": 2, @@ -61,7 +64,8 @@ "text": "Axe Beak", "img": "systems/dnd5e/tokens/beast/AxeBeak.webp", "documentId": "SXXvwaLBNuzBymp3", - "flags": {} + "flags": {}, + "_key": "!tables.results!5PTePCTxrk2fIrll.D8wPQit1a8G7GfEQ" }, { "type": 2, @@ -76,7 +80,8 @@ "text": "Black Bear", "img": "systems/dnd5e/tokens/beast/BlackBear.webp", "documentId": "D5WjGwKskeUT8HXa", - "flags": {} + "flags": {}, + "_key": "!tables.results!5PTePCTxrk2fIrll.ApddzBElcaPOO3Pl" }, { "type": 2, @@ -91,7 +96,8 @@ "text": "Giant Weasel", "img": "systems/dnd5e/tokens/beast/GiantWeasel.webp", "documentId": "8VXxqeBvN54rPh81", - "flags": {} + "flags": {}, + "_key": "!tables.results!5PTePCTxrk2fIrll.RqwIM4OrzSFB4WnC" }, { "type": 2, @@ -106,7 +112,8 @@ "text": "Giant Hyena", "img": "systems/dnd5e/tokens/beast/GiantHyena.webp", "documentId": "aAqfEHPiVbhMwZ6j", - "flags": {} + "flags": {}, + "_key": "!tables.results!5PTePCTxrk2fIrll.o5YeoXAtmHmEMCNg" }, { "type": 2, @@ -121,7 +128,8 @@ "text": "Tiger", "img": "systems/dnd5e/tokens/beast/Tiger.webp", "documentId": "FayqbnjBMszO6Pat", - "flags": {} + "flags": {}, + "_key": "!tables.results!5PTePCTxrk2fIrll.IlmvAl876Yed56f2" } ], "formula": "1d8", @@ -137,5 +145,6 @@ "modifiedTime": 1662499080008, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!5PTePCTxrk2fIrll" } diff --git a/packs/src/tables/wand-of-wonder.json b/packs/src/tables/wand-of-wonder.json index 4d85bc73a8..ef5f3e3714 100644 --- a/packs/src/tables/wand-of-wonder.json +++ b/packs/src/tables/wand-of-wonder.json @@ -16,7 +16,8 @@ "text": "You cast @Compendium[dnd5e.spells.yqUDoxk4x0NWG5Bz]{Slow}.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!X03rbSjVcNNJNqa8.0nqE0R8b9X1Maa2b" }, { "type": 0, @@ -31,7 +32,8 @@ "text": "You cast @Compendium[dnd5e.spells.nqBDWkVOfcGZt4YU]{Faerie Fire}.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!X03rbSjVcNNJNqa8.mIXkyGjz4jm0SRwr" }, { "type": 0, @@ -46,7 +48,8 @@ "text": "You are @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.ZyZMUwA2rboh4ObS]{Stunned} until the start of your next turn, believing something awesome just happened.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!X03rbSjVcNNJNqa8.GGNQJzAVEiDumXq2" }, { "type": 0, @@ -61,7 +64,8 @@ "text": "You cast @Compendium[dnd5e.spells.FSMy6VAjDnXY9vWz]{Gust of Wind}.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!X03rbSjVcNNJNqa8.KsxTXW59KC0MYSlM" }, { "type": 0, @@ -76,7 +80,8 @@ "text": "You cast @Compendium[dnd5e.spells.ppWAAEul0QHtm4er]{Detect Thoughts} on the target you chose. If you didn't target a creature, you instead take [[1d6]] psychic damage.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!X03rbSjVcNNJNqa8.Um7l3f3kA0fuZeZS" }, { "type": 0, @@ -91,7 +96,8 @@ "text": "You cast @Compendium[dnd5e.spells.TwlD4PLcltv7Xh7j]{Stinking Cloud}.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!X03rbSjVcNNJNqa8.dufnbFapCkEGa00e" }, { "type": 0, @@ -106,7 +112,8 @@ "text": "Heavy rain falls in a 60-foot radius centered on the target. The area becomes lightly obscured. The rain falls until the start of your next turn.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!X03rbSjVcNNJNqa8.M7FLDrBHxiWi1d0j" }, { "type": 0, @@ -121,7 +128,8 @@ "text": "An animal appears in the unoccupied space nearest the target. The animal isn't under your control and acts as it normally would. Roll a [[/r 1d100]] to determine which animal appears. On a 01–25, a @Compendium[dnd5e.monsters.SBCe2BSa6opTS5M4]{Rhinoceros} appears; on a 26–50, an @Compendium[dnd5e.monsters.jLPhaBnMtAbB5dp1]{Elephant} appears; and on a 51–100, a @Compendium[dnd5e.monsters.pozQUPTnLZW8epox]{Rat} appears.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!X03rbSjVcNNJNqa8.h3BKTcgGFbxFds8G" }, { "type": 0, @@ -136,7 +144,8 @@ "text": "You cast @Compendium[dnd5e.spells.IyikgTEOTv701jgQ]{Lightning Bolt}.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!X03rbSjVcNNJNqa8.REUwaFklxmCztnXA" }, { "type": 0, @@ -151,7 +160,8 @@ "text": "A cloud of 600 oversized butterflies fills a 30‐foot radius centered on the target. The area becomes heavily obscured. The butterflies remain for 10 minutes.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!X03rbSjVcNNJNqa8.orp8gTMwM4U3XiwB" }, { "type": 0, @@ -166,7 +176,8 @@ "text": "You enlarge the target as if you had cast @Compendium[dnd5e.spells.WahI41a3goVUg0x1]{Enlarge/Reduce}. If the target can't be affected by that spell, or if you didn't target a creature, you become the target.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!X03rbSjVcNNJNqa8.3GlSY5tjZSDWWkzY" }, { "type": 0, @@ -181,7 +192,8 @@ "text": "You cast @Compendium[dnd5e.spells.S7VbUetIfVT7B6Eq]{Darkness}.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!X03rbSjVcNNJNqa8.Vr2Lg0mN2FTHdzd4" }, { "type": 0, @@ -196,7 +208,8 @@ "text": "Grass grows on the ground in a 60‐foot radius centered on the target. If grass is already there, it grows to ten times its normal size and remains overgrown for 1 minute.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!X03rbSjVcNNJNqa8.DyJ1HqEiVQ5BKN3V" }, { "type": 0, @@ -211,7 +224,8 @@ "text": "An object of the GM's choice disappears into the Ethereal Plane. The object must be neither worn nor carried, within 120 feet of the target, and no larger than 10 feet in any dimension.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!X03rbSjVcNNJNqa8.4XvYA042W3ty8L2C" }, { "type": 0, @@ -226,7 +240,8 @@ "text": "You shrink yourself as if you had cast @Compendium[dnd5e.spells.WahI41a3goVUg0x1]{Enlarge/Reduce} on yourself.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!X03rbSjVcNNJNqa8.tkTADPmN4rhgB7pH" }, { "type": 0, @@ -241,7 +256,8 @@ "text": "You cast @Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball}.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!X03rbSjVcNNJNqa8.YiBndxEOSit5OROQ" }, { "type": 0, @@ -256,7 +272,8 @@ "text": "You cast @Compendium[dnd5e.spells.1N8dDMMgZ1h1YJ3B]{Invisibility} on yourself.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!X03rbSjVcNNJNqa8.dmhB1orGtjw0wmac" }, { "type": 0, @@ -271,7 +288,8 @@ "text": "Leaves grow from the target. If you chose a point in space as the target, leaves sprout from the creature nearest to that point. Unless they are picked off, the leaves turn brown and fall off after 24 hours.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!X03rbSjVcNNJNqa8.aAhn7711Uu2EodVB" }, { "type": 0, @@ -286,7 +304,8 @@ "text": "A stream of [[1d4]] × 10 gems, each worth 1 gp, shoots from the wand's tip in a line 30 feet long and 5 feet wide. Each gem deals 1 bludgeoning damage, and the total damage of the gems is divided equally among all creatures in the line.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!X03rbSjVcNNJNqa8.94OaXgLFHowfdHFo" }, { "type": 0, @@ -301,7 +320,8 @@ "text": "A burst of colorful shimmering light extends from you in a 30‐foot radius. You and each creature in the area that can see must succeed on a DC 15 Constitution saving throw or become @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.0b8N4FymGGfbZGpJ]{Blinded} for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!X03rbSjVcNNJNqa8.BrH4mXjhQZtLJ9qV" }, { "type": 0, @@ -316,7 +336,8 @@ "text": "The target's skin turns bright blue for [[1d10]] days. If you chose a point in space, the creature nearest to that point is affected.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!X03rbSjVcNNJNqa8.sj0TCiSQJnEopySY" }, { "type": 0, @@ -331,7 +352,8 @@ "text": "If you targeted a creature, it must make a DC 15 Constitution saving throw. If you didn't target a creature, you become the target and must make the saving throw. If the saving throw fails by 5 or more, the target is instantly @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.xaNDaW6NwQTgHSmi]{Petrified}. On any other failed save, the target is @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.cSVcyZyNe2iG1fIc]{Restrained} and begins to turn to stone. While restrained in this way, the target must repeat the saving throw at the end of its next turn, becoming @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.xaNDaW6NwQTgHSmi]{Petrified} on a failure or ending the effect on a success. The petrification lasts until the target is freed by the @Compendium[dnd5e.spells.WzvJ7G3cqvIubsLk]{Greater Restoration} spell or similar magic.", "img": "icons/svg/d20-black.svg", "documentId": null, - "flags": {} + "flags": {}, + "_key": "!tables.results!X03rbSjVcNNJNqa8.8SJZdOKTWn0uuS2J" } ], "formula": "1d100", @@ -347,5 +369,6 @@ "modifiedTime": 1662767323823, "lastModifiedBy": "dnd5ebuilder0000" }, - "sort": 0 + "sort": 0, + "_key": "!tables!X03rbSjVcNNJNqa8" } diff --git a/packs/src/tradegoods/canvas.json b/packs/src/tradegoods/canvas.json index e60350f7e5..5ac4fef04e 100644 --- a/packs/src/tradegoods/canvas.json +++ b/packs/src/tradegoods/canvas.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1.2, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234022, "modifiedTime": 1670010072188, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!mFJkwdzb9IpLC3Ip" } diff --git a/packs/src/tradegoods/chicken.json b/packs/src/tradegoods/chicken.json index b2b27ec49e..87ae14d3ec 100644 --- a/packs/src/tradegoods/chicken.json +++ b/packs/src/tradegoods/chicken.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 8, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234021, "modifiedTime": 1670010072181, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!l1YRv9sdhQPaSQop" } diff --git a/packs/src/tradegoods/cinnamon.json b/packs/src/tradegoods/cinnamon.json index 714ae72823..f2bd4f0ef6 100644 --- a/packs/src/tradegoods/cinnamon.json +++ b/packs/src/tradegoods/cinnamon.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234016, "modifiedTime": 1670010072074, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Pn04ySJYcG06Jc4a" } diff --git a/packs/src/tradegoods/cloves.json b/packs/src/tradegoods/cloves.json index 510f17ce59..74cdd3d8c7 100644 --- a/packs/src/tradegoods/cloves.json +++ b/packs/src/tradegoods/cloves.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234022, "modifiedTime": 1670010072212, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!u753EokyA4vjksle" } diff --git a/packs/src/tradegoods/copper.json b/packs/src/tradegoods/copper.json index 47753dab85..39fb4e6912 100644 --- a/packs/src/tradegoods/copper.json +++ b/packs/src/tradegoods/copper.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234020, "modifiedTime": 1670010072168, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!aXWzDW0huOa0WuIO" } diff --git a/packs/src/tradegoods/cotton.json b/packs/src/tradegoods/cotton.json index 3e49d89ed9..c1f031dc4a 100644 --- a/packs/src/tradegoods/cotton.json +++ b/packs/src/tradegoods/cotton.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.5, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234019, "modifiedTime": 1670010072156, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!ZcAgZHJ1hhqbedLF" } diff --git a/packs/src/tradegoods/cow.json b/packs/src/tradegoods/cow.json index 306eb3936d..c8881004f8 100644 --- a/packs/src/tradegoods/cow.json +++ b/packs/src/tradegoods/cow.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1400, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234018, "modifiedTime": 1670010072118, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!W6pJovmnVyjbk0fA" } diff --git a/packs/src/tradegoods/flour.json b/packs/src/tradegoods/flour.json index 5cdeb93c0a..428307c8eb 100644 --- a/packs/src/tradegoods/flour.json +++ b/packs/src/tradegoods/flour.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234013, "modifiedTime": 1670010071997, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!CrcfT5jwcJTPTsfQ" } diff --git a/packs/src/tradegoods/ginger.json b/packs/src/tradegoods/ginger.json index 56c5478885..9086675083 100644 --- a/packs/src/tradegoods/ginger.json +++ b/packs/src/tradegoods/ginger.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234017, "modifiedTime": 1670010072096, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!VcHmykfFBurKzCO6" } diff --git a/packs/src/tradegoods/goat.json b/packs/src/tradegoods/goat.json index 3a7aee5110..f0072de366 100644 --- a/packs/src/tradegoods/goat.json +++ b/packs/src/tradegoods/goat.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 175, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234022, "modifiedTime": 1670010072197, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!pMj0mA1wyEhoO6zP" } diff --git a/packs/src/tradegoods/gold.json b/packs/src/tradegoods/gold.json index 12c54150e4..36c9c437d2 100644 --- a/packs/src/tradegoods/gold.json +++ b/packs/src/tradegoods/gold.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234015, "modifiedTime": 1670010072030, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!HHh7Ihuk8ToxJzQX" } diff --git a/packs/src/tradegoods/iron.json b/packs/src/tradegoods/iron.json index 2a44034276..6c25c14378 100644 --- a/packs/src/tradegoods/iron.json +++ b/packs/src/tradegoods/iron.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234017, "modifiedTime": 1670010072086, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!V3uxNwciT4Ln7S4k" } diff --git a/packs/src/tradegoods/linen.json b/packs/src/tradegoods/linen.json index 2078bc6cde..24fb3d0a4a 100644 --- a/packs/src/tradegoods/linen.json +++ b/packs/src/tradegoods/linen.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.6, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234014, "modifiedTime": 1670010072021, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Gh1JxTlM9aRGNrUH" } diff --git a/packs/src/tradegoods/ox.json b/packs/src/tradegoods/ox.json index 452e6a3b46..dd9f59c983 100644 --- a/packs/src/tradegoods/ox.json +++ b/packs/src/tradegoods/ox.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 2250, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234018, "modifiedTime": 1670010072129, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WCbKUQcahzQQX0pL" } diff --git a/packs/src/tradegoods/pepper.json b/packs/src/tradegoods/pepper.json index 26ace48fc6..37c0a265a6 100644 --- a/packs/src/tradegoods/pepper.json +++ b/packs/src/tradegoods/pepper.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234012, "modifiedTime": 1670010071966, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!8SQ7vyE6gevpfJvn" } diff --git a/packs/src/tradegoods/pig.json b/packs/src/tradegoods/pig.json index a551b99a9a..8d2cd4179b 100644 --- a/packs/src/tradegoods/pig.json +++ b/packs/src/tradegoods/pig.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 260, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234019, "modifiedTime": 1670010072144, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!YJ2pBio6uEg5vhgN" } diff --git a/packs/src/tradegoods/platinum.json b/packs/src/tradegoods/platinum.json index f083d24912..9510895e4a 100644 --- a/packs/src/tradegoods/platinum.json +++ b/packs/src/tradegoods/platinum.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234014, "modifiedTime": 1670010072015, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Eyl9QYZcM9CYIqbA" } diff --git a/packs/src/tradegoods/saffron.json b/packs/src/tradegoods/saffron.json index a7073e2c76..536a922506 100644 --- a/packs/src/tradegoods/saffron.json +++ b/packs/src/tradegoods/saffron.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234015, "modifiedTime": 1670010072051, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!Mrmkw4uaWX6UKpbn" } diff --git a/packs/src/tradegoods/salt.json b/packs/src/tradegoods/salt.json index da6dd27e85..6665f13127 100644 --- a/packs/src/tradegoods/salt.json +++ b/packs/src/tradegoods/salt.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234020, "modifiedTime": 1670010072172, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!eDVTXE3qv28DwvPl" } diff --git a/packs/src/tradegoods/sheep.json b/packs/src/tradegoods/sheep.json index 913185d21f..ed7a856482 100644 --- a/packs/src/tradegoods/sheep.json +++ b/packs/src/tradegoods/sheep.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 225, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234016, "modifiedTime": 1670010072057, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!P29EeDJQrJJXOIuK" } diff --git a/packs/src/tradegoods/silk.json b/packs/src/tradegoods/silk.json index 6e34de4350..f38306a400 100644 --- a/packs/src/tradegoods/silk.json +++ b/packs/src/tradegoods/silk.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 0.2, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234021, "modifiedTime": 1670010072177, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!jad5oFMDv21mPvJP" } diff --git a/packs/src/tradegoods/silver.json b/packs/src/tradegoods/silver.json index c9ab74f1ea..c31de229c8 100644 --- a/packs/src/tradegoods/silver.json +++ b/packs/src/tradegoods/silver.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234013, "modifiedTime": 1670010071984, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!9t5X9HG9ou6YMSdJ" } diff --git a/packs/src/tradegoods/wheat.json b/packs/src/tradegoods/wheat.json index 50feb1c068..8987b1751d 100644 --- a/packs/src/tradegoods/wheat.json +++ b/packs/src/tradegoods/wheat.json @@ -11,7 +11,12 @@ "chat": "", "unidentified": "" }, - "source": "SRD 5.1", + "source": { + "custom": "", + "book": "SRD 5.1", + "page": "", + "license": "CC-BY-4.0" + }, "quantity": 1, "weight": 1, "price": { @@ -35,5 +40,6 @@ "createdTime": 1661787234019, "modifiedTime": 1670010072134, "lastModifiedBy": "dnd5ebuilder0000" - } + }, + "_key": "!items!WdPAGBRUWYaS0TNQ" } diff --git a/packs/subclasses.db b/packs/subclasses.db index 0227b6d63b..8af46e2064 100644 --- a/packs/subclasses.db +++ b/packs/subclasses.db @@ -1,12 +1,12 @@ -{"name":"Draconic Bloodline","type":"subclass","img":"icons/creatures/reptiles/dragon-horned-blue.webp","system":{"description":{"value":"Your innate magic comes from draconic magic that was mingled with your blood or that of your ancestors. Most often, sorcerers with this origin trace their descent back to a mighty sorcerer of ancient times who made a bargain with a dragon or who might even have claimed a dragon parent. Some of these bloodlines are well established in the world, but most are obscure. Any given sorcerer could be the first of a new bloodline, as a result of a pact or some other exceptional circumstance.","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"draconic-bloodline","classIdentifier":"sorcerer","advancement":[{"_id":"bjbipb2oydq3zsuy","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.EZsonMThTNLZq35j","Compendium.dnd5e.classfeatures.MW1ExvBLm8Hg82aA"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features"},{"_id":"cq0cwgss39pkvjox","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.x6eEZ9GUsuOcEa3G"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features"},{"_id":"rfd6o6858pl8k7fl","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.3647zjKSE9zFwOXc"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features"},{"_id":"4xrl7vjblpn8zl5t","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Gsha4bl0apxqspFy"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"2nadB2MBSHTQ0kcl","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234292,"modifiedTime":1671220973417,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Circle of the Land","type":"subclass","img":"icons/environment/wilderness/tree-oak.webp","system":{"description":{"value":"The Circle of the Land is made up of mystics and sages who safeguard ancient knowledge and rites through a vast oral tradition. These druids meet within sacred circles of trees or standing stones to whisper primal secrets in Druidic. The circle's wisest members preside as the chief priests of communities that hold to the Old Faith and serve as advisors to the rulers of those folk. As a member of this circle, your magic is influenced by the land where you were initiated into the circle's mysterious rites.","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"circle-of-the-land","classIdentifier":"druid","advancement":[{"_id":"v3qw412amvkgm7i5","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.lT8GsPOPgRzDC3QJ","Compendium.dnd5e.classfeatures.wKdRtFsvGfMKQHLY"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features"},{"_id":"ejei160vgl8crsxk","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.YiK59gWSlcQ6Mbdz"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features"},{"_id":"hsw1uymkf4814h8s","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.3FB25qKxmkmxcxuC"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features"},{"_id":"vxmvdslbnlhreo62","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.OTvrJSJSUgAwXrWX"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features"},{"_id":"ti7txllqo5o344af","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.EuX1kJNIw1F68yus"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"4Ae2SPZRXEVbVs0M","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234293,"modifiedTime":1671220973426,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"H3RYLGqCiqm8BP3q","name":"Life Domain","type":"subclass","img":"icons/magic/holy/barrier-shield-winged-cross.webp","system":{"description":{"value":"The Life domain focuses on the vibrant positive energy—one of the fundamental forces of the universe—that sustains all life. The gods of life promote vitality and health through healing the sick and wounded, caring for those in need, and driving away the forces of death and undeath. Almost any non-evil deity can claim influence over this domain, particularly agricultural deities (such as Chauntea, Arawai, and Demeter), sun gods (such as Lathander, Pelor, and Re-Horakhty), gods of healing or endurance (such as Ilmater, Mishakal, Apollo, and Diancecht), and gods of home and community (such as Hestia, Hathor, and Boldrei).Life Domain SpellsCleric LevelSpells1st@Compendium[dnd5e.spells.8dzaICjGy6mTUaUr]{Bless}, @Compendium[dnd5e.spells.uUWb1wZgtMou0TVP]{Cure Wounds}3rd@Compendium[dnd5e.spells.F0GsG0SJzsIOacwV]{Lesser Restoration}, @Compendium[dnd5e.spells.JbxsYXxSOTZbf9I0]{Spiritual Weapon}5th@Compendium[dnd5e.spells.ZU9d6woBdUP8pIPt]{Beacon of Hope}, @Compendium[dnd5e.spells.LmRHHMtplpxr9fX6]{Revivify}7th@Compendium[dnd5e.spells.VtCXMdyM6mAdIJZb]{Death Ward}, @Compendium[dnd5e.spells.TgHsuhNasPbhu8MO]{Guardian of Faith}9th@Compendium[dnd5e.spells.Pyzmm8R7rVsNAPsd]{Mass Cure Wounds}, @Compendium[dnd5e.spells.AGFMPAmuzwWO6Dfz]{Raise Dead}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"life-domain","classIdentifier":"cleric","advancement":[{"_id":"9fyr5t01nhdg0u8n","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.68bYIOvx6rIqnlOW","Compendium.dnd5e.classfeatures.jF8AFfEMICIJnAkR"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features"},{"_id":"4qh4ejxpwugva6ma","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.hEymt45rICi4f9eL"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features"},{"_id":"ihquu4r80mxr07qt","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.yv49QN6Bzqs0ecCs"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features"},{"_id":"ayh4gqp9vxjo9yd3","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.T6u5z8ZTX6UftXqE"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":8,"title":"Features"},{"_id":"m4m8xp6cabt71mdq","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.4UOgxzr83vFuUash"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":17,"title":"Features"},{"_id":"RYU9NFMQarGlfW23","type":"ScaleValue","configuration":{"identifier":"divine-strike","type":"dice","distance":{"units":""},"scale":{"8":{"number":1,"faces":8},"14":{"number":2,"faces":8}}},"value":{},"title":"Divine Strike Damage"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234293,"modifiedTime":1671220973444,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Way of the Open Hand","type":"subclass","img":"icons/skills/social/wave-halt-stop.webp","system":{"description":{"value":"Monks of the Way of the Open Hand are the ultimate masters of martial arts combat, whether armed or unarmed. They learn techniques to push and trip their opponents, manipulate ki to heal damage to their bodies, and practice advanced meditation that can protect them from harm.","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"way-of-the-open-hand","classIdentifier":"monk","advancement":[{"_id":"6mobkr8qlx5gk60w","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.iQxLNydNLlCHNKbp"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features"},{"_id":"0bhigjb0qzullpil","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Q7mOdk4b1lgjcptF"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features"},{"_id":"hj02xkoyhx9s29ci","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.rBDZLatuoolT2FUW"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":11,"title":"Features"},{"_id":"htx1d5pqlsn313pb","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.h1gM8SH3BNRtFevE"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":17,"title":"Features"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"IvlpKMXX3PmW1NY2","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234294,"modifiedTime":1671220973456,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"College of Lore","type":"subclass","img":"icons/sundries/books/book-open-brown-black.webp","system":{"description":{"value":"Bards of the College of Lore know something about most things, collecting bits of knowledge from sources as diverse as scholarly tomes and peasant tales. Whether singing folk ballads in taverns or elaborate compositions in royal courts, these bards use their gifts to hold audiences spellbound. When the applause dies down, the audience members might find themselves questioning everything they held to be true, from their faith in the priesthood of the local temple to their loyalty to the king.\nThe loyalty of these bards lies in the pursuit of beauty and truth, not in fealty to a monarch or following the tenets of a deity. A noble who keeps such a bard as a herald or advisor knows that the bard would rather be honest than politic.\nThe college's members gather in libraries and sometimes in actual colleges, complete with classrooms and dormitories, to share their lore with one another. They also meet at festivals or affairs of state, where they can expose corruption, unravel lies, and poke fun at self-important figures of authority.","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"college-of-lore","classIdentifier":"bard","advancement":[{"_id":"pxolz5oyrvbez6aj","type":"ItemGrant","level":3,"title":"Features","configuration":{"items":["Compendium.dnd5e.classfeatures.e9ytGikyLFgwZ5wi","Compendium.dnd5e.classfeatures.5zPmHPQUne7RDfaU"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{}},{"_id":"pfjv7s5yjgoi3i1w","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.myBu3zi5eYvQIcuy"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features"},{"_id":"6seg1bfvuexp0gh9","type":"ItemGrant","level":14,"title":"Features","configuration":{"items":["Compendium.dnd5e.classfeatures.pquwueEMweRhiWaq"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{}},{"_id":"zmBtra2UDx5BYyR7","type":"ItemChoice","configuration":{"hint":"Learn two spells of your choice from any class. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip.","choices":{"6":2},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"","subtype":"","level":"available"}},"value":{},"title":"Additional Magical Secrets"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"MNvsEc4D2ccX7dQT","_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234294,"modifiedTime":1674435535784,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"The Fiend","type":"subclass","img":"icons/creatures/unholy/demon-fire-horned-winged-roar.webp","system":{"description":{"value":"You have made a pact with a fiend from the lower planes of existence, a being whose aims are evil, even if you strive against those aims. Such beings desire the corruption or destruction of all things, ultimately including you. Fiends powerful enough to forge a pact include demon lords such as Demogorgon, Orcus, Fraz'Urb-luu, and Baphomet; archdevils such as Asmodeus, Dispater, Mephistopheles, and Belial; pit fiends and balors that are especially mighty; and ultroloths and other lords of the yugoloths.Expanded Spell ListThe Fiend lets you choose from an expanded list of spells when you learn a warlock spell. The following spells are added to the warlock spell list for you.Fiend Expanded SpellsSpell LevelSpells1st@Compendium[dnd5e.spells.5SuJewoa1CRWaj1F]{Burning Hands}, @Compendium[dnd5e.spells.arzCrMRgcNiQuh43]{Command}2nd@Compendium[dnd5e.spells.zwGsAv6kmwzYGhh3]{Blindness/Deafness}, @Compendium[dnd5e.spells.7u2obDvuvtZBkTfq]{Scorching Ray}3rd@Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball}, @Compendium[dnd5e.spells.TwlD4PLcltv7Xh7j]{Stinking Cloud}4th@Compendium[dnd5e.spells.avD5XUtkBPQQR97c]{Fire Shield}, @Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire}5th@Compendium[dnd5e.spells.5e1xTohkzqFqbYH4]{Flame Strike}, @Compendium[dnd5e.spells.SLxA9QhrggTz0taU]{Hallow}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"the-fiend","classIdentifier":"warlock","advancement":[{"_id":"mwpiq5ybhynszxgq","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Jv0zu4BtUi8bFCqJ"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features"},{"_id":"icxswdpvqj9o89nz","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.OQSb0bO1yDI4aiMx"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features"},{"_id":"5ymsjeikr4pdu6u7","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.9UZ2WjUF2k58CQug"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features"},{"_id":"swdh8yx47ilzgur2","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.aCUmlnHlUPHS0rdu"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"WPFVBg589uI8iOMH","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234295,"modifiedTime":1671220973491,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"School of Evocation","type":"subclass","img":"icons/magic/fire/beam-strike-whip-red.webp","system":{"description":{"value":"You focus your study on magic that creates powerful elemental effects such as bitter cold, searing flame, rolling thunder, crackling lightning, and burning acid. Some evokers find employment in military forces, serving as artillery to blast enemy armies from afar. Others use their spectacular power to protect the weak, while some seek their own gain as bandits, adventurers, or aspiring tyrants.","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"school-of-evocation","classIdentifier":"wizard","advancement":[{"_id":"qgi9q6koa7jabbc5","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.7uzJ2JkmsdRGLra3","Compendium.dnd5e.classfeatures.6VBXkjjBgjSpNElh"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features"},{"_id":"j1twu5y6jafoeupk","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.evEWCpE5MYgr5RRW"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features"},{"_id":"vlybc408acscngpd","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.7O85kj6uDEG5NzUE"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features"},{"_id":"s82u4bepkgu04upt","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.VUtSLeCzFubGXmGx"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"Ye5f3FReEnuXfi0y","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234295,"modifiedTime":1671220973499,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Thief","type":"subclass","img":"icons/equipment/hand/glove-tooled-leather-red.webp","system":{"description":{"value":"You hone your skills in the larcenous arts. Burglars, bandits, cutpurses, and other criminals typically follow this archetype, but so do rogues who prefer to think of themselves as professional treasure seekers, explorers, delvers, and investigators. In addition to improving your agility and stealth, you learn skills useful for delving into ancient ruins, reading unfamiliar languages, and using magic items you normally couldn't employ.","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"thief","classIdentifier":"rogue","advancement":[{"_id":"q1y2nsk2voi9hift","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ga3dt2zrCn2MHK8R","Compendium.dnd5e.classfeatures.FGrbXs6Ku5qxFK5G"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features"},{"_id":"mn1phw6y8csnul2f","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Ei1Oh4UAA2E30jcD"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":9,"title":"Features"},{"_id":"5zutrvrhem8ygscb","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.NqWyHE7Rpw9lyKWu"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":13,"title":"Features"},{"_id":"8r4g78wm6s2k9jwo","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.LhRm1EeUMvp2EWhV"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":17,"title":"Features"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"k8iuefRorWOjb9gR","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234296,"modifiedTime":1671220973509,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Oath of Devotion","type":"subclass","img":"icons/magic/holy/saint-glass-portrait-halo.webp","system":{"description":{"value":"The Oath of Devotion binds a paladin to the loftiest ideals of justice, virtue, and order. Sometimes called cavaliers, white knights, or holy warriors, these paladins meet the ideal of the knight in shining armor, acting with honor in pursuit of justice and the greater good. They hold themselves to the highest standards of conduct, and some, for better or worse, hold the rest of the world to the same standards. Many who swear this oath are devoted to gods of law and good and use their gods' tenets as the measure of their devotion. They hold angels—the perfect servants of good—as their ideals, and incorporate images of angelic wings into their helmets or coats of arms. Tenets of DevotionThough the exact words and strictures of the Oath of Devotion vary, paladins of this oath share these tenets.Honesty. Don't lie or cheat. Let your word be your promise.Courage. Never fear to act, though caution is wise.Compassion. Aid others, protect the weak, and punish those who threaten them. Show mercy to your foes, but temper it with wisdom.Honor. Treat others with fairness, and let your honorable deeds be an example to them. Do as much good as possible while causing the least amount of harm.Duty. Be responsible for your actions and their consequences, protect those entrusted to your care, and obey those who have just authority over you.Oath SpellsYou gain oath spells at the paladin levels listed.Oath of Devotion SpellsPaladin LevelSpells3rd@Compendium[dnd5e.spells.xmDBqZhRVrtLP8h2]{Protection from Evil and Good}, @Compendium[dnd5e.spells.gvdA9nPuWLck4tBl]{Sanctuary}5th@Compendium[dnd5e.spells.F0GsG0SJzsIOacwV]{Lesser Restoration}, @Compendium[dnd5e.spells.CylBa7jR8DSbo8Z3]{Zone of Truth}9th@Compendium[dnd5e.spells.ZU9d6woBdUP8pIPt]{Beacon of Hope}, @Compendium[dnd5e.spells.15Fa6q1nH27XfbR8]{Dispel Magic}13th@Compendium[dnd5e.spells.da0a1t2FqaTjRZGT]{Freedom of Movement}, @Compendium[dnd5e.spells.TgHsuhNasPbhu8MO]{Guardian of Faith}17th@Compendium[dnd5e.spells.d54VDyFulD9xxY7J]{Commune}, @Compendium[dnd5e.spells.5e1xTohkzqFqbYH4]{Flame Strike}","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"oath-of-devotion","classIdentifier":"paladin","advancement":[{"_id":"x139gm4ohldqu68j","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.xNN0JMKqlG4hKVYu","Compendium.dnd5e.classfeatures.ZdwGlsJNtc7pGFCd"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features"},{"_id":"enzzft6q7timpcg1","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.M2DxVsgLeZgXOznT"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":7,"title":"Features"},{"_id":"lnfks5j00ywstged","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ZHJyYrqMYSLub4RY"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":15,"title":"Features"},{"_id":"5a99kkfabklcl06a","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ANE5gjojvhNEagzz"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"sZ86mbX8D5PfYuhl","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234296,"modifiedTime":1671220973520,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Champion","type":"subclass","img":"icons/skills/melee/maneuver-sword-katana-yellow.webp","system":{"description":{"value":"The archetypal Champion focuses on the development of raw physical power honed to deadly perfection. Those who model themselves on this archetype combine rigorous training with physical excellence to deal devastating blows.","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"champion","classIdentifier":"fighter","advancement":[{"_id":"bsdg4f5me0klskxn","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.YgLQV1O849wE5TgM"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features"},{"_id":"22ktkhqczogk0jcg","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.dHu1yzIjD38BvGGd"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":7,"title":"Features"},{"_id":"r84l4q20d5aduwlw","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.kYJsED0rqqqUcgKz"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features"},{"_id":"p4pxgvxtf206xc35","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.aVKH6TLn1AG9hPSA"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":15,"title":"Features"},{"_id":"y6rlhwedv35dcrsq","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ipG5yx1tRNmeJfSH"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features"},{"_id":"DDqfOiw4IQMv4bAi","type":"ItemChoice","configuration":{"hint":"Choose a second option from the Fighting Style class feature.","choices":{"10":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.8YwPFv3UAPjWVDNf","Compendium.dnd5e.classfeatures.zSlV0O2rQMdoq6pB","Compendium.dnd5e.classfeatures.hCop9uJrWhF1QPb4","Compendium.dnd5e.classfeatures.3Nc6u9pyStByuJsm","Compendium.dnd5e.classfeatures.06NVMYf58Z76O85O","Compendium.dnd5e.classfeatures.mHcSjcHJ8oZu3hkb"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"fightingStyle","level":""}},"value":{},"title":"Additional Fighting Style"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"sprHbe7cRg9osTzf","_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234296,"modifiedTime":1674435503196,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Path of the Berserker","type":"subclass","img":"icons/skills/melee/strike-flail-destructive-yellow.webp","system":{"description":{"value":"For some barbarians, rage is a means to an end—that end being violence. The Path of the Berserker is a path of untrammeled fury, slick with blood. As you enter the berserker's rage, you thrill in the chaos of battle, heedless of your own health or well-being.","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"path-of-the-berserker","classIdentifier":"barbarian","advancement":[{"_id":"79o5gdodki55y2s6","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.CkbbAckeCtyHXEnL"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features"},{"_id":"v2wgomyba9p2orht","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.0Jgf8fYY2ExwgQpN"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features"},{"_id":"zstkqtiw4rd9jy03","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.M6VSMzVtKPhh8B0i"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features"},{"_id":"sngpm2xqk3cv1g3g","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.xzD9zlRP6dUxCtCl"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"uGuDQX9Mz3oHNHkU","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234297,"modifiedTime":1671220973531,"lastModifiedBy":"dnd5ebuilder0000"}} -{"name":"Hunter","type":"subclass","img":"icons/skills/ranged/arrow-flying-spiral-blue.webp","system":{"description":{"value":"Emulating the Hunter archetype means accepting your place as a bulwark between civilization and the terrors of the wilderness. As you walk the Hunter's path, you learn specialized techniques for fighting the threats you face, from rampaging ogres and hordes of orcs to towering giants and terrifying dragons.","chat":"","unidentified":""},"source":"SRD 5.1","identifier":"hunter","classIdentifier":"ranger","advancement":[{"_id":"lk5l6vsi3jk52is6","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.wrxIW5sDfmGr3u5s"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features"},{"_id":"gia6u4kb86to8zu2","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.WgQrqjmeyMqDzVt3"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":7,"title":"Features"},{"_id":"nd466kbxtd1mqg97","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.7zlTRRXT1vWSBGjX"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":11,"title":"Features"},{"_id":"7l3aayc87oepree4","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.a0Sq88dgnREcIMfl"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":15,"title":"Features"},{"_id":"Xr04szY7gFqZKBxP","type":"ItemChoice","configuration":{"hint":"","choices":{"3":1},"allowDrops":false,"type":"feat","pool":["Compendium.dnd5e.classfeatures.5gx1O0sxK08awEO9","Compendium.dnd5e.classfeatures.StfmqK1twVfukpa0","Compendium.dnd5e.classfeatures.C6sHdDGmCMo0cYHd"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"huntersPrey","level":""}},"value":{},"title":"Hunter's Prey"},{"_id":"3UE5ZrBP2hCi52mC","type":"ItemChoice","configuration":{"hint":"","choices":{"7":1},"allowDrops":false,"type":"feat","pool":["Compendium.dnd5e.classfeatures.pAQMJU5R9SGUmzHU","Compendium.dnd5e.classfeatures.slelvrm83v9UAKZU","Compendium.dnd5e.classfeatures.zbHu0NvHuII8lR7W"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"defensiveTactic","level":""}},"value":{},"title":"Defensive Tactics"},{"_id":"rKt0QvE4kJO06u9c","type":"ItemChoice","configuration":{"hint":"","choices":{"11":1},"allowDrops":false,"type":"feat","pool":["Compendium.dnd5e.classfeatures.l7W6JB9yWLLLtQKP","Compendium.dnd5e.classfeatures.1DY8w3CXeD7PHDXF"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"multiattack","level":""}},"value":{},"title":"Multiattack"},{"_id":"8Ssyn9fPrW1TgBN5","type":"ItemChoice","configuration":{"hint":"","choices":{"15":1},"allowDrops":false,"type":"feat","pool":["Compendium.dnd5e.classfeatures.laVHAIOKIsUeezWd","Compendium.dnd5e.classfeatures.Xf763cJoDHPPWSGG","Compendium.dnd5e.classfeatures.7pyZjz5vlUWV01qQ"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"","level":""}},"value":{},"title":"Superior Hunter's Defense"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"uqd2q6WjVfcsaaGb","_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234297,"modifiedTime":1674435665133,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Draconic Bloodline","type":"subclass","img":"icons/creatures/reptiles/dragon-horned-blue.webp","system":{"description":{"value":"Your innate magic comes from draconic magic that was mingled with your blood or that of your ancestors. Most often, sorcerers with this origin trace their descent back to a mighty sorcerer of ancient times who made a bargain with a dragon or who might even have claimed a dragon parent. Some of these bloodlines are well established in the world, but most are obscure. Any given sorcerer could be the first of a new bloodline, as a result of a pact or some other exceptional circumstance.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"draconic-bloodline","classIdentifier":"sorcerer","advancement":[{"_id":"bjbipb2oydq3zsuy","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.EZsonMThTNLZq35j","Compendium.dnd5e.classfeatures.MW1ExvBLm8Hg82aA"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features"},{"_id":"cq0cwgss39pkvjox","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.x6eEZ9GUsuOcEa3G"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features"},{"_id":"rfd6o6858pl8k7fl","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.3647zjKSE9zFwOXc"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features"},{"_id":"4xrl7vjblpn8zl5t","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Gsha4bl0apxqspFy"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"2nadB2MBSHTQ0kcl","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234292,"modifiedTime":1671220973417,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Circle of the Land","type":"subclass","img":"icons/environment/wilderness/tree-oak.webp","system":{"description":{"value":"The Circle of the Land is made up of mystics and sages who safeguard ancient knowledge and rites through a vast oral tradition. These druids meet within sacred circles of trees or standing stones to whisper primal secrets in Druidic. The circle's wisest members preside as the chief priests of communities that hold to the Old Faith and serve as advisors to the rulers of those folk. As a member of this circle, your magic is influenced by the land where you were initiated into the circle's mysterious rites.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"circle-of-the-land","classIdentifier":"druid","advancement":[{"_id":"v3qw412amvkgm7i5","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.lT8GsPOPgRzDC3QJ","Compendium.dnd5e.classfeatures.wKdRtFsvGfMKQHLY"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features"},{"_id":"ejei160vgl8crsxk","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.YiK59gWSlcQ6Mbdz"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features"},{"_id":"hsw1uymkf4814h8s","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.3FB25qKxmkmxcxuC"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features"},{"_id":"vxmvdslbnlhreo62","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.OTvrJSJSUgAwXrWX"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features"},{"_id":"ti7txllqo5o344af","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.EuX1kJNIw1F68yus"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"4Ae2SPZRXEVbVs0M","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234293,"modifiedTime":1671220973426,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"H3RYLGqCiqm8BP3q","name":"Life Domain","type":"subclass","img":"icons/magic/holy/barrier-shield-winged-cross.webp","system":{"description":{"value":"The Life domain focuses on the vibrant positive energy—one of the fundamental forces of the universe—that sustains all life. The gods of life promote vitality and health through healing the sick and wounded, caring for those in need, and driving away the forces of death and undeath. Almost any non-evil deity can claim influence over this domain, particularly agricultural deities (such as Chauntea, Arawai, and Demeter), sun gods (such as Lathander, Pelor, and Re-Horakhty), gods of healing or endurance (such as Ilmater, Mishakal, Apollo, and Diancecht), and gods of home and community (such as Hestia, Hathor, and Boldrei).Life Domain SpellsCleric LevelSpells1st@Compendium[dnd5e.spells.8dzaICjGy6mTUaUr]{Bless}, @Compendium[dnd5e.spells.uUWb1wZgtMou0TVP]{Cure Wounds}3rd@Compendium[dnd5e.spells.F0GsG0SJzsIOacwV]{Lesser Restoration}, @Compendium[dnd5e.spells.JbxsYXxSOTZbf9I0]{Spiritual Weapon}5th@Compendium[dnd5e.spells.ZU9d6woBdUP8pIPt]{Beacon of Hope}, @Compendium[dnd5e.spells.LmRHHMtplpxr9fX6]{Revivify}7th@Compendium[dnd5e.spells.VtCXMdyM6mAdIJZb]{Death Ward}, @Compendium[dnd5e.spells.TgHsuhNasPbhu8MO]{Guardian of Faith}9th@Compendium[dnd5e.spells.Pyzmm8R7rVsNAPsd]{Mass Cure Wounds}, @Compendium[dnd5e.spells.AGFMPAmuzwWO6Dfz]{Raise Dead}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"life-domain","classIdentifier":"cleric","advancement":[{"_id":"bW7chouU8WIVH0Le","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":["armor:hvy"],"choices":[]},"level":1,"title":""},{"_id":"9fyr5t01nhdg0u8n","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.68bYIOvx6rIqnlOW","Compendium.dnd5e.classfeatures.jF8AFfEMICIJnAkR"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features"},{"_id":"4qh4ejxpwugva6ma","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.hEymt45rICi4f9eL"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features"},{"_id":"ihquu4r80mxr07qt","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.yv49QN6Bzqs0ecCs"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features"},{"_id":"ayh4gqp9vxjo9yd3","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.T6u5z8ZTX6UftXqE"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":8,"title":"Features"},{"_id":"m4m8xp6cabt71mdq","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.4UOgxzr83vFuUash"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":17,"title":"Features"},{"_id":"RYU9NFMQarGlfW23","type":"ScaleValue","configuration":{"identifier":"divine-strike","type":"dice","distance":{"units":""},"scale":{"8":{"number":1,"faces":8},"14":{"number":2,"faces":8}}},"value":{},"title":"Divine Strike Damage"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234293,"modifiedTime":1698856991022,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Way of the Open Hand","type":"subclass","img":"icons/skills/social/wave-halt-stop.webp","system":{"description":{"value":"Monks of the Way of the Open Hand are the ultimate masters of martial arts combat, whether armed or unarmed. They learn techniques to push and trip their opponents, manipulate ki to heal damage to their bodies, and practice advanced meditation that can protect them from harm.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"way-of-the-open-hand","classIdentifier":"monk","advancement":[{"_id":"6mobkr8qlx5gk60w","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.iQxLNydNLlCHNKbp"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features"},{"_id":"0bhigjb0qzullpil","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Q7mOdk4b1lgjcptF"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features"},{"_id":"hj02xkoyhx9s29ci","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.rBDZLatuoolT2FUW"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":11,"title":"Features"},{"_id":"htx1d5pqlsn313pb","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.h1gM8SH3BNRtFevE"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":17,"title":"Features"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"IvlpKMXX3PmW1NY2","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234294,"modifiedTime":1671220973456,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"College of Lore","type":"subclass","img":"icons/sundries/books/book-open-brown-black.webp","system":{"description":{"value":"Bards of the College of Lore know something about most things, collecting bits of knowledge from sources as diverse as scholarly tomes and peasant tales. Whether singing folk ballads in taverns or elaborate compositions in royal courts, these bards use their gifts to hold audiences spellbound. When the applause dies down, the audience members might find themselves questioning everything they held to be true, from their faith in the priesthood of the local temple to their loyalty to the king.\nThe loyalty of these bards lies in the pursuit of beauty and truth, not in fealty to a monarch or following the tenets of a deity. A noble who keeps such a bard as a herald or advisor knows that the bard would rather be honest than politic.\nThe college's members gather in libraries and sometimes in actual colleges, complete with classrooms and dormitories, to share their lore with one another. They also meet at festivals or affairs of state, where they can expose corruption, unravel lies, and poke fun at self-important figures of authority.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"college-of-lore","classIdentifier":"bard","advancement":[{"_id":"GgjL1Z4CKIkVLcyz","type":"Trait","configuration":{"hint":"","mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":3,"pool":["skills:*"]}]},"level":3,"title":""},{"_id":"pxolz5oyrvbez6aj","type":"ItemGrant","level":3,"title":"Features","configuration":{"items":["Compendium.dnd5e.classfeatures.e9ytGikyLFgwZ5wi","Compendium.dnd5e.classfeatures.5zPmHPQUne7RDfaU"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{}},{"_id":"pfjv7s5yjgoi3i1w","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.myBu3zi5eYvQIcuy"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features"},{"_id":"6seg1bfvuexp0gh9","type":"ItemGrant","level":14,"title":"Features","configuration":{"items":["Compendium.dnd5e.classfeatures.pquwueEMweRhiWaq"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{}},{"_id":"zmBtra2UDx5BYyR7","type":"ItemChoice","configuration":{"hint":"Learn two spells of your choice from any class. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip.","choices":{"6":2},"allowDrops":true,"type":"spell","pool":[],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"","subtype":"","level":"available"}},"value":{},"title":"Additional Magical Secrets"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"MNvsEc4D2ccX7dQT","_stats":{"systemId":"dnd5e","systemVersion":"2.3.1","coreVersion":"10.303","createdTime":1661787234294,"modifiedTime":1698856945298,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"The Fiend","type":"subclass","img":"icons/creatures/unholy/demon-fire-horned-winged-roar.webp","system":{"description":{"value":"You have made a pact with a fiend from the lower planes of existence, a being whose aims are evil, even if you strive against those aims. Such beings desire the corruption or destruction of all things, ultimately including you. Fiends powerful enough to forge a pact include demon lords such as Demogorgon, Orcus, Fraz'Urb-luu, and Baphomet; archdevils such as Asmodeus, Dispater, Mephistopheles, and Belial; pit fiends and balors that are especially mighty; and ultroloths and other lords of the yugoloths.Expanded Spell ListThe Fiend lets you choose from an expanded list of spells when you learn a warlock spell. The following spells are added to the warlock spell list for you.Fiend Expanded SpellsSpell LevelSpells1st@Compendium[dnd5e.spells.5SuJewoa1CRWaj1F]{Burning Hands}, @Compendium[dnd5e.spells.arzCrMRgcNiQuh43]{Command}2nd@Compendium[dnd5e.spells.zwGsAv6kmwzYGhh3]{Blindness/Deafness}, @Compendium[dnd5e.spells.7u2obDvuvtZBkTfq]{Scorching Ray}3rd@Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball}, @Compendium[dnd5e.spells.TwlD4PLcltv7Xh7j]{Stinking Cloud}4th@Compendium[dnd5e.spells.avD5XUtkBPQQR97c]{Fire Shield}, @Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire}5th@Compendium[dnd5e.spells.5e1xTohkzqFqbYH4]{Flame Strike}, @Compendium[dnd5e.spells.SLxA9QhrggTz0taU]{Hallow}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"the-fiend","classIdentifier":"warlock","advancement":[{"_id":"mwpiq5ybhynszxgq","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Jv0zu4BtUi8bFCqJ"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":1,"title":"Features"},{"_id":"icxswdpvqj9o89nz","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.OQSb0bO1yDI4aiMx"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features"},{"_id":"5ymsjeikr4pdu6u7","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.9UZ2WjUF2k58CQug"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features"},{"_id":"swdh8yx47ilzgur2","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.aCUmlnHlUPHS0rdu"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"WPFVBg589uI8iOMH","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234295,"modifiedTime":1671220973491,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"School of Evocation","type":"subclass","img":"icons/magic/fire/beam-strike-whip-red.webp","system":{"description":{"value":"You focus your study on magic that creates powerful elemental effects such as bitter cold, searing flame, rolling thunder, crackling lightning, and burning acid. Some evokers find employment in military forces, serving as artillery to blast enemy armies from afar. Others use their spectacular power to protect the weak, while some seek their own gain as bandits, adventurers, or aspiring tyrants.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"school-of-evocation","classIdentifier":"wizard","advancement":[{"_id":"qgi9q6koa7jabbc5","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.7uzJ2JkmsdRGLra3","Compendium.dnd5e.classfeatures.6VBXkjjBgjSpNElh"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":2,"title":"Features"},{"_id":"j1twu5y6jafoeupk","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.evEWCpE5MYgr5RRW"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features"},{"_id":"vlybc408acscngpd","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.7O85kj6uDEG5NzUE"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features"},{"_id":"s82u4bepkgu04upt","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.VUtSLeCzFubGXmGx"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"Ye5f3FReEnuXfi0y","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234295,"modifiedTime":1671220973499,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Thief","type":"subclass","img":"icons/equipment/hand/glove-tooled-leather-red.webp","system":{"description":{"value":"You hone your skills in the larcenous arts. Burglars, bandits, cutpurses, and other criminals typically follow this archetype, but so do rogues who prefer to think of themselves as professional treasure seekers, explorers, delvers, and investigators. In addition to improving your agility and stealth, you learn skills useful for delving into ancient ruins, reading unfamiliar languages, and using magic items you normally couldn't employ.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"thief","classIdentifier":"rogue","advancement":[{"_id":"q1y2nsk2voi9hift","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ga3dt2zrCn2MHK8R","Compendium.dnd5e.classfeatures.FGrbXs6Ku5qxFK5G"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features"},{"_id":"mn1phw6y8csnul2f","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.Ei1Oh4UAA2E30jcD"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":9,"title":"Features"},{"_id":"5zutrvrhem8ygscb","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.NqWyHE7Rpw9lyKWu"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":13,"title":"Features"},{"_id":"8r4g78wm6s2k9jwo","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.LhRm1EeUMvp2EWhV"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":17,"title":"Features"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"k8iuefRorWOjb9gR","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234296,"modifiedTime":1671220973509,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Oath of Devotion","type":"subclass","img":"icons/magic/holy/saint-glass-portrait-halo.webp","system":{"description":{"value":"The Oath of Devotion binds a paladin to the loftiest ideals of justice, virtue, and order. Sometimes called cavaliers, white knights, or holy warriors, these paladins meet the ideal of the knight in shining armor, acting with honor in pursuit of justice and the greater good. They hold themselves to the highest standards of conduct, and some, for better or worse, hold the rest of the world to the same standards. Many who swear this oath are devoted to gods of law and good and use their gods' tenets as the measure of their devotion. They hold angels—the perfect servants of good—as their ideals, and incorporate images of angelic wings into their helmets or coats of arms. Tenets of DevotionThough the exact words and strictures of the Oath of Devotion vary, paladins of this oath share these tenets.Honesty. Don't lie or cheat. Let your word be your promise.Courage. Never fear to act, though caution is wise.Compassion. Aid others, protect the weak, and punish those who threaten them. Show mercy to your foes, but temper it with wisdom.Honor. Treat others with fairness, and let your honorable deeds be an example to them. Do as much good as possible while causing the least amount of harm.Duty. Be responsible for your actions and their consequences, protect those entrusted to your care, and obey those who have just authority over you.Oath SpellsYou gain oath spells at the paladin levels listed.Oath of Devotion SpellsPaladin LevelSpells3rd@Compendium[dnd5e.spells.xmDBqZhRVrtLP8h2]{Protection from Evil and Good}, @Compendium[dnd5e.spells.gvdA9nPuWLck4tBl]{Sanctuary}5th@Compendium[dnd5e.spells.F0GsG0SJzsIOacwV]{Lesser Restoration}, @Compendium[dnd5e.spells.CylBa7jR8DSbo8Z3]{Zone of Truth}9th@Compendium[dnd5e.spells.ZU9d6woBdUP8pIPt]{Beacon of Hope}, @Compendium[dnd5e.spells.15Fa6q1nH27XfbR8]{Dispel Magic}13th@Compendium[dnd5e.spells.da0a1t2FqaTjRZGT]{Freedom of Movement}, @Compendium[dnd5e.spells.TgHsuhNasPbhu8MO]{Guardian of Faith}17th@Compendium[dnd5e.spells.d54VDyFulD9xxY7J]{Commune}, @Compendium[dnd5e.spells.5e1xTohkzqFqbYH4]{Flame Strike}","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"oath-of-devotion","classIdentifier":"paladin","advancement":[{"_id":"x139gm4ohldqu68j","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.xNN0JMKqlG4hKVYu","Compendium.dnd5e.classfeatures.ZdwGlsJNtc7pGFCd"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features"},{"_id":"enzzft6q7timpcg1","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.M2DxVsgLeZgXOznT"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":7,"title":"Features"},{"_id":"lnfks5j00ywstged","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ZHJyYrqMYSLub4RY"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":15,"title":"Features"},{"_id":"5a99kkfabklcl06a","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ANE5gjojvhNEagzz"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":20,"title":"Features"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"sZ86mbX8D5PfYuhl","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234296,"modifiedTime":1671220973520,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Champion","type":"subclass","img":"icons/skills/melee/maneuver-sword-katana-yellow.webp","system":{"description":{"value":"The archetypal Champion focuses on the development of raw physical power honed to deadly perfection. Those who model themselves on this archetype combine rigorous training with physical excellence to deal devastating blows.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"champion","classIdentifier":"fighter","advancement":[{"_id":"bsdg4f5me0klskxn","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.YgLQV1O849wE5TgM"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features"},{"_id":"22ktkhqczogk0jcg","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.dHu1yzIjD38BvGGd"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":7,"title":"Features"},{"_id":"r84l4q20d5aduwlw","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.kYJsED0rqqqUcgKz"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features"},{"_id":"p4pxgvxtf206xc35","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.aVKH6TLn1AG9hPSA"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":15,"title":"Features"},{"_id":"y6rlhwedv35dcrsq","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.ipG5yx1tRNmeJfSH"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":18,"title":"Features"},{"_id":"DDqfOiw4IQMv4bAi","type":"ItemChoice","configuration":{"hint":"Choose a second option from the Fighting Style class feature.","choices":{"10":1},"allowDrops":true,"type":"feat","pool":["Compendium.dnd5e.classfeatures.8YwPFv3UAPjWVDNf","Compendium.dnd5e.classfeatures.zSlV0O2rQMdoq6pB","Compendium.dnd5e.classfeatures.hCop9uJrWhF1QPb4","Compendium.dnd5e.classfeatures.3Nc6u9pyStByuJsm","Compendium.dnd5e.classfeatures.06NVMYf58Z76O85O","Compendium.dnd5e.classfeatures.mHcSjcHJ8oZu3hkb"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"fightingStyle","level":""}},"value":{},"title":"Additional Fighting Style"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"sprHbe7cRg9osTzf","_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234296,"modifiedTime":1674435503196,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Path of the Berserker","type":"subclass","img":"icons/skills/melee/strike-flail-destructive-yellow.webp","system":{"description":{"value":"For some barbarians, rage is a means to an end—that end being violence. The Path of the Berserker is a path of untrammeled fury, slick with blood. As you enter the berserker's rage, you thrill in the chaos of battle, heedless of your own health or well-being.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"path-of-the-berserker","classIdentifier":"barbarian","advancement":[{"_id":"79o5gdodki55y2s6","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.CkbbAckeCtyHXEnL"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features"},{"_id":"v2wgomyba9p2orht","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.0Jgf8fYY2ExwgQpN"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":6,"title":"Features"},{"_id":"zstkqtiw4rd9jy03","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.M6VSMzVtKPhh8B0i"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":10,"title":"Features"},{"_id":"sngpm2xqk3cv1g3g","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.xzD9zlRP6dUxCtCl"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":14,"title":"Features"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"uGuDQX9Mz3oHNHkU","_stats":{"systemId":"dnd5e","systemVersion":"2.1.0","coreVersion":"10.291","createdTime":1661787234297,"modifiedTime":1671220973531,"lastModifiedBy":"dnd5ebuilder0000"}} +{"name":"Hunter","type":"subclass","img":"icons/skills/ranged/arrow-flying-spiral-blue.webp","system":{"description":{"value":"Emulating the Hunter archetype means accepting your place as a bulwark between civilization and the terrors of the wilderness. As you walk the Hunter's path, you learn specialized techniques for fighting the threats you face, from rampaging ogres and hordes of orcs to towering giants and terrifying dragons.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"identifier":"hunter","classIdentifier":"ranger","advancement":[{"_id":"lk5l6vsi3jk52is6","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.wrxIW5sDfmGr3u5s"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":3,"title":"Features"},{"_id":"gia6u4kb86to8zu2","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.WgQrqjmeyMqDzVt3"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":7,"title":"Features"},{"_id":"nd466kbxtd1mqg97","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.7zlTRRXT1vWSBGjX"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":11,"title":"Features"},{"_id":"7l3aayc87oepree4","type":"ItemGrant","configuration":{"items":["Compendium.dnd5e.classfeatures.a0Sq88dgnREcIMfl"],"optional":false,"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}}},"value":{},"level":15,"title":"Features"},{"_id":"Xr04szY7gFqZKBxP","type":"ItemChoice","configuration":{"hint":"","choices":{"3":1},"allowDrops":false,"type":"feat","pool":["Compendium.dnd5e.classfeatures.5gx1O0sxK08awEO9","Compendium.dnd5e.classfeatures.StfmqK1twVfukpa0","Compendium.dnd5e.classfeatures.C6sHdDGmCMo0cYHd"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"huntersPrey","level":""}},"value":{},"title":"Hunter's Prey"},{"_id":"3UE5ZrBP2hCi52mC","type":"ItemChoice","configuration":{"hint":"","choices":{"7":1},"allowDrops":false,"type":"feat","pool":["Compendium.dnd5e.classfeatures.pAQMJU5R9SGUmzHU","Compendium.dnd5e.classfeatures.slelvrm83v9UAKZU","Compendium.dnd5e.classfeatures.zbHu0NvHuII8lR7W"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"defensiveTactic","level":""}},"value":{},"title":"Defensive Tactics"},{"_id":"rKt0QvE4kJO06u9c","type":"ItemChoice","configuration":{"hint":"","choices":{"11":1},"allowDrops":false,"type":"feat","pool":["Compendium.dnd5e.classfeatures.l7W6JB9yWLLLtQKP","Compendium.dnd5e.classfeatures.1DY8w3CXeD7PHDXF"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"multiattack","level":""}},"value":{},"title":"Multiattack"},{"_id":"8Ssyn9fPrW1TgBN5","type":"ItemChoice","configuration":{"hint":"","choices":{"15":1},"allowDrops":false,"type":"feat","pool":["Compendium.dnd5e.classfeatures.laVHAIOKIsUeezWd","Compendium.dnd5e.classfeatures.Xf763cJoDHPPWSGG","Compendium.dnd5e.classfeatures.7pyZjz5vlUWV01qQ"],"spell":{"ability":"","preparation":"","uses":{"max":"","per":""}},"restriction":{"type":"class","subtype":"","level":""}},"value":{},"title":"Superior Hunter's Defense"}],"spellcasting":{"progression":"none","ability":""}},"effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_id":"uqd2q6WjVfcsaaGb","_stats":{"systemId":"dnd5e","systemVersion":"2.1.2","coreVersion":"10.291","createdTime":1661787234297,"modifiedTime":1674435665133,"lastModifiedBy":"dnd5ebuilder0000"}} diff --git a/packs/tradegoods.db b/packs/tradegoods.db index 061ba1ec8d..e3a382cb1d 100644 --- a/packs/tradegoods.db +++ b/packs/tradegoods.db @@ -1,23 +1,23 @@ -{"_id":"8SQ7vyE6gevpfJvn","name":"Pepper","ownership":{"default":0},"type":"loot","system":{"description":{"value":"Peppercorns are the tiny fruit, or drupe, of the pepper plant, a flowering vine also known as the piper nigrum. Highly prized by chefs for its versaility and can be utilized in a pinch by adventurers when ground down for distractions and shenanigans.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/materials/powder-red-green-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234012,"modifiedTime":1670010071966,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"9t5X9HG9ou6YMSdJ","name":"Silver","ownership":{"default":0},"type":"loot","system":{"description":{"value":"Silver has long been appreciated for its unreactive nature and ease with which it can be shaped into the finest of decorations, adornments, and of course used as coin.\nSilver is rarely found in its native form in nuggets. Normally it is found mixed with other substances like sulfur or chlorine, in ores, or as an alloy with the likes of gold. Surface silver can be found, but is much more commonly mined underground. Silver mining is lucrative and can inspire silver-rushes.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/metal/ingot-stamped-silver.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234013,"modifiedTime":1670010071984,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"CrcfT5jwcJTPTsfQ","name":"Flour","ownership":{"default":0},"type":"loot","system":{"description":{"value":"Grain that has been ground by a miller in the next step along the food chain.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/consumables/food/soup-broth-bowl-wooden-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234013,"modifiedTime":1670010071997,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Eyl9QYZcM9CYIqbA","name":"Platinum","ownership":{"default":0},"type":"loot","system":{"description":{"value":"Far rarer than gold, platinum may either be treated as the pinnacle of wealth, or the vestige of a bygone age that may be met with distrust or envy.\nUnlike gold, platinum is almost exclusively mined underground.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/stone/ore-chunk-grey.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234014,"modifiedTime":1670010072015,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Gh1JxTlM9aRGNrUH","name":"Linen","ownership":{"default":0},"type":"loot","system":{"description":{"value":"A square yard of linen of average quality and weight. Used for all many of items and clothing.\nLonger lasting than cotton, its durability and breathability make it particularly valued in warm climtes.\nDifferent types of linen do exist, with lighter weaves starting at 6 ounces per square yard, and the rest going up to 15 ounces.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.6,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/sundries/flags/banner-worn-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234014,"modifiedTime":1670010072021,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"HHh7Ihuk8ToxJzQX","name":"Gold","ownership":{"default":0},"type":"loot","system":{"description":{"value":"Gold is the king of currency for many civilizations. Usually more common than the likes of platinum, but nowhere near as common as other metals like iron, it occupies a sweet spot in rarity and unreactiveness.\nUnlike silver, gold can be found more easily on the surface. Both surface and underground mining can be extremely profitable. Gold rushes can and have been a source a great happiness and huge tragedy.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/metal/ingot-gold.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234015,"modifiedTime":1670010072030,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Mrmkw4uaWX6UKpbn","name":"Saffron","ownership":{"default":0},"type":"loot","system":{"description":{"value":"Likely to be one of the most highly prized ingredients in the world, saffron is so expensive because it is so labor-intensive to produce. Made from the Crocus sativus, or more commonly the \"saffron crocus\", it takes 80,000 crocus flowers to produce 1 pound of saffron.By weight, it is worth more than gold. Treasured by the most discerning of cooks and apothecaries for its flavoring and purported health benefits.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/materials/powder-red-green-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234015,"modifiedTime":1670010072051,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"P29EeDJQrJJXOIuK","name":"Sheep","ownership":{"default":0},"type":"loot","system":{"description":{"value":"A useful creature for small-area farmers and highland dwellers, though not quite as nimble as goats, they have the valuable ability to be sheared every year, giving people a source of clothing, rugs, and throws for beds and chairs. Their larger size also means they are more valuable for slaughter.\nDepending on the breed, adult sheep can range from 100 pounds all the way up to 350 pounds.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":225,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/bones/hooves-cloven-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234016,"modifiedTime":1670010072057,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"Pn04ySJYcG06Jc4a","name":"Cinnamon","ownership":{"default":0},"type":"loot","system":{"description":{"value":"Taken from the inner bark of the cinnamon tree, a popular if slightly rarer spice, amongst chefs of the world. Adored by children when combined with sugar to make many kinds of treats.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/materials/powder-red-green-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234016,"modifiedTime":1670010072074,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"V3uxNwciT4Ln7S4k","name":"Iron","ownership":{"default":0},"type":"loot","system":{"description":{"value":"Often the workhorse of the metalworker, iron is appreciated for its relative abundence and ease of attainment. Surface iron can be found from fallen meteors and xenoliths, but is much more commonly mined underground. However, care must be given otherwise rust will take its toll.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/metal/ingot-stamped-silver.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234017,"modifiedTime":1670010072086,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"VcHmykfFBurKzCO6","name":"Ginger","ownership":{"default":0},"type":"loot","system":{"description":{"value":"A spice that comes from the fresh or dried root of the ginger plant Zingiber officinale. It belongs to the same family as tumeric and cardamom.\nValued by chefs and sweet-makers, loved by children and those with spicier tastes.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/biological/tentacle-thorned-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234017,"modifiedTime":1670010072096,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"W6pJovmnVyjbk0fA","name":"Cow","ownership":{"default":0},"type":"loot","system":{"description":{"value":"A creature for large-area farmers, cows require large areas of flat grazing meaning they are not as common as other livestock. However, they live longer, and give far more milk. They are also a source for much more durable leather that is less prone to cracking and is resistant to heat and dirt.\nDepending in the gender and breed, adult cows can weigh between 1,000 and 1,800 pounds.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1400,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/consumables/food/short-ribs-cooked-meat-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234018,"modifiedTime":1670010072118,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WCbKUQcahzQQX0pL","name":"Ox","ownership":{"default":0},"type":"loot","system":{"description":{"value":"Essentially a specially trained beef or dairy steer that has reached the age of 5. These heavy-duty beasts of burden can pull or carry up to and over their own body weight. Used for a multitude of tasks like hauling wagons, threshing grain, powering machines that irrigate or grind grain, and even been ridden, oxen are highly prized creatures for workers in a range of fields.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":2250,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/bones/horn-simple-grey.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234018,"modifiedTime":1670010072129,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"WdPAGBRUWYaS0TNQ","name":"Wheat","ownership":{"default":0},"type":"loot","system":{"description":{"value":"A common ingredient for bread, beer, and more; this staple often forms the base of a diet for people where their land is open and relatively flat, the weather temperate, and the area safe enough for farmers to operate.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/consumables/grains/sack-oats-glowing-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234019,"modifiedTime":1670010072134,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"YJ2pBio6uEg5vhgN","name":"Pig","ownership":{"default":0},"type":"loot","system":{"description":{"value":"A creature for medium- or larger area farmers, pigs breed relatively quickly and are sturdy creatures that provide all manner of cooking possibilities for the enterprizing cook, foremost of which is of course bacon. Their skin can also be used as a cheaper leather, but it is less tear-resistant compared to lamb or goat. Pigs are also the source of lard.\nMost pigs weigh between 250 and 270 pounds at slaughter as it gives optimal retail cuts and medium fat covering.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":260,"price":{"value":3,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234019,"modifiedTime":1670010072144,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"ZcAgZHJ1hhqbedLF","name":"Cotton","ownership":{"default":0},"type":"loot","system":{"description":{"value":"A square yard of cotton of average quality and weight. Used for all many of items and clothing.\nFar lighter, more comfortable, and easier to work with than canvas; however, the comparatively more delicate crop means it is accordingly more expensive and potentially harder to come by.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.5,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/sundries/flags/banner-worn-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234019,"modifiedTime":1670010072156,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"aXWzDW0huOa0WuIO","name":"Copper","ownership":{"default":0},"type":"loot","system":{"description":{"value":"Coveted by advanced shipwrights, alchemists, certain jewelers, and chefs alike, copper is commonly surface mined but underground mining exists when surface sources have been depleted or unable to be located.\nAlthough it can be used for armor, it is far better mixed with tin to make the much more superior bronze alloy for military needs.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/metal/ingot-stamped-bronze.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234020,"modifiedTime":1670010072168,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"eDVTXE3qv28DwvPl","name":"Salt","ownership":{"default":0},"type":"loot","system":{"description":{"value":"Prized by chefs and quartermasters alike as a seasoning and preservative for supplies where alcohol or vinegar are undesired.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/consumables/food/bowl-stew-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234020,"modifiedTime":1670010072172,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"jad5oFMDv21mPvJP","name":"Silk","ownership":{"default":0},"type":"loot","system":{"description":{"value":"A square yard of silk of average quality and weight. Used for all many of items and clothing.\nThe finest and most desirable of the common fabrics, silk is also the lightest. Most silks will weigh between 2 and 4 ounces per square yard. The heavier the silk, the higher the quality, more durable, and more opaque in color it is.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":0.2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/equipment/back/cloak-hooded-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234021,"modifiedTime":1670010072177,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"l1YRv9sdhQPaSQop","name":"Chicken","ownership":{"default":0},"type":"loot","system":{"description":{"value":"The source of omelettes and chicken wings, the average adult chicken weighs between 5 and 10 pounds.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":8,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/bones/beak-orange-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234021,"modifiedTime":1670010072181,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"mFJkwdzb9IpLC3Ip","name":"Canvas","ownership":{"default":0},"type":"loot","system":{"description":{"value":"A square yard of canvas of average quality and weight. Used for all many of items and clothing.\nGraded from 1 to 12, the lower the number, the better the quality and the heavier the weight. #1 quality canvas weighs around 1.7 pounds per square yard, while the weaker, lighter #12 can weigh only 0.7 pounds.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1.2,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/sundries/flags/banner-worn-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234022,"modifiedTime":1670010072188,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"pMj0mA1wyEhoO6zP","name":"Goat","ownership":{"default":0},"type":"loot","system":{"description":{"value":"A useful creature for small-area farmers and highland dwellers, goats are effective at keeping meadows from overgrowing while providing milk, cheese, and eventually skins and meat.\nDepending on the breed, adult goats can range from 45 pounds all the way up to 300 pounds.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":175,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/bones/hooves-cloven-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234022,"modifiedTime":1670010072197,"lastModifiedBy":"dnd5ebuilder0000"}} -{"_id":"u753EokyA4vjksle","name":"Cloves","ownership":{"default":0},"type":"loot","system":{"description":{"value":"A strong spice treasured by both chefs and distillers, working well to flavor meat and stews, rich sauces, warm beverages like cider and chai tea, bread, cheeses, and sweet desserts like pies and fruitcakes.\nCloves are the rich, dried, unopened buds of the Syzygium aromaticum, an evergreen tree in the myrtle family.","chat":"","unidentified":""},"source":"SRD 5.1","quantity":1,"weight":1,"price":{"value":3,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/consumables/food/berries-ration-round-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234022,"modifiedTime":1670010072212,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"8SQ7vyE6gevpfJvn","name":"Pepper","ownership":{"default":0},"type":"loot","system":{"description":{"value":"Peppercorns are the tiny fruit, or drupe, of the pepper plant, a flowering vine also known as the piper nigrum. Highly prized by chefs for its versaility and can be utilized in a pinch by adventurers when ground down for distractions and shenanigans.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/materials/powder-red-green-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234012,"modifiedTime":1670010071966,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"9t5X9HG9ou6YMSdJ","name":"Silver","ownership":{"default":0},"type":"loot","system":{"description":{"value":"Silver has long been appreciated for its unreactive nature and ease with which it can be shaped into the finest of decorations, adornments, and of course used as coin.\nSilver is rarely found in its native form in nuggets. Normally it is found mixed with other substances like sulfur or chlorine, in ores, or as an alloy with the likes of gold. Surface silver can be found, but is much more commonly mined underground. Silver mining is lucrative and can inspire silver-rushes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/metal/ingot-stamped-silver.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234013,"modifiedTime":1670010071984,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"CrcfT5jwcJTPTsfQ","name":"Flour","ownership":{"default":0},"type":"loot","system":{"description":{"value":"Grain that has been ground by a miller in the next step along the food chain.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/consumables/food/soup-broth-bowl-wooden-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234013,"modifiedTime":1670010071997,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Eyl9QYZcM9CYIqbA","name":"Platinum","ownership":{"default":0},"type":"loot","system":{"description":{"value":"Far rarer than gold, platinum may either be treated as the pinnacle of wealth, or the vestige of a bygone age that may be met with distrust or envy.\nUnlike gold, platinum is almost exclusively mined underground.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":500,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/stone/ore-chunk-grey.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234014,"modifiedTime":1670010072015,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Gh1JxTlM9aRGNrUH","name":"Linen","ownership":{"default":0},"type":"loot","system":{"description":{"value":"A square yard of linen of average quality and weight. Used for all many of items and clothing.\nLonger lasting than cotton, its durability and breathability make it particularly valued in warm climtes.\nDifferent types of linen do exist, with lighter weaves starting at 6 ounces per square yard, and the rest going up to 15 ounces.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.6,"price":{"value":5,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/sundries/flags/banner-worn-blue.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234014,"modifiedTime":1670010072021,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"HHh7Ihuk8ToxJzQX","name":"Gold","ownership":{"default":0},"type":"loot","system":{"description":{"value":"Gold is the king of currency for many civilizations. Usually more common than the likes of platinum, but nowhere near as common as other metals like iron, it occupies a sweet spot in rarity and unreactiveness.\nUnlike silver, gold can be found more easily on the surface. Both surface and underground mining can be extremely profitable. Gold rushes can and have been a source a great happiness and huge tragedy.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":50,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/metal/ingot-gold.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234015,"modifiedTime":1670010072030,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Mrmkw4uaWX6UKpbn","name":"Saffron","ownership":{"default":0},"type":"loot","system":{"description":{"value":"Likely to be one of the most highly prized ingredients in the world, saffron is so expensive because it is so labor-intensive to produce. Made from the Crocus sativus, or more commonly the \"saffron crocus\", it takes 80,000 crocus flowers to produce 1 pound of saffron.By weight, it is worth more than gold. Treasured by the most discerning of cooks and apothecaries for its flavoring and purported health benefits.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/materials/powder-red-green-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234015,"modifiedTime":1670010072051,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"P29EeDJQrJJXOIuK","name":"Sheep","ownership":{"default":0},"type":"loot","system":{"description":{"value":"A useful creature for small-area farmers and highland dwellers, though not quite as nimble as goats, they have the valuable ability to be sheared every year, giving people a source of clothing, rugs, and throws for beds and chairs. Their larger size also means they are more valuable for slaughter.\nDepending on the breed, adult sheep can range from 100 pounds all the way up to 350 pounds.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":225,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/bones/hooves-cloven-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234016,"modifiedTime":1670010072057,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"Pn04ySJYcG06Jc4a","name":"Cinnamon","ownership":{"default":0},"type":"loot","system":{"description":{"value":"Taken from the inner bark of the cinnamon tree, a popular if slightly rarer spice, amongst chefs of the world. Adored by children when combined with sugar to make many kinds of treats.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":2,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/materials/powder-red-green-yellow.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234016,"modifiedTime":1670010072074,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"V3uxNwciT4Ln7S4k","name":"Iron","ownership":{"default":0},"type":"loot","system":{"description":{"value":"Often the workhorse of the metalworker, iron is appreciated for its relative abundence and ease of attainment. Surface iron can be found from fallen meteors and xenoliths, but is much more commonly mined underground. However, care must be given otherwise rust will take its toll.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/metal/ingot-stamped-silver.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234017,"modifiedTime":1670010072086,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"VcHmykfFBurKzCO6","name":"Ginger","ownership":{"default":0},"type":"loot","system":{"description":{"value":"A spice that comes from the fresh or dried root of the ginger plant Zingiber officinale. It belongs to the same family as tumeric and cardamom.\nValued by chefs and sweet-makers, loved by children and those with spicier tastes.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/biological/tentacle-thorned-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234017,"modifiedTime":1670010072096,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"W6pJovmnVyjbk0fA","name":"Cow","ownership":{"default":0},"type":"loot","system":{"description":{"value":"A creature for large-area farmers, cows require large areas of flat grazing meaning they are not as common as other livestock. However, they live longer, and give far more milk. They are also a source for much more durable leather that is less prone to cracking and is resistant to heat and dirt.\nDepending in the gender and breed, adult cows can weigh between 1,000 and 1,800 pounds.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1400,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/consumables/food/short-ribs-cooked-meat-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234018,"modifiedTime":1670010072118,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WCbKUQcahzQQX0pL","name":"Ox","ownership":{"default":0},"type":"loot","system":{"description":{"value":"Essentially a specially trained beef or dairy steer that has reached the age of 5. These heavy-duty beasts of burden can pull or carry up to and over their own body weight. Used for a multitude of tasks like hauling wagons, threshing grain, powering machines that irrigate or grind grain, and even been ridden, oxen are highly prized creatures for workers in a range of fields.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":2250,"price":{"value":15,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/bones/horn-simple-grey.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234018,"modifiedTime":1670010072129,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"WdPAGBRUWYaS0TNQ","name":"Wheat","ownership":{"default":0},"type":"loot","system":{"description":{"value":"A common ingredient for bread, beer, and more; this staple often forms the base of a diet for people where their land is open and relatively flat, the weather temperate, and the area safe enough for farmers to operate.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":1,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/consumables/grains/sack-oats-glowing-white.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234019,"modifiedTime":1670010072134,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"YJ2pBio6uEg5vhgN","name":"Pig","ownership":{"default":0},"type":"loot","system":{"description":{"value":"A creature for medium- or larger area farmers, pigs breed relatively quickly and are sturdy creatures that provide all manner of cooking possibilities for the enterprizing cook, foremost of which is of course bacon. Their skin can also be used as a cheaper leather, but it is less tear-resistant compared to lamb or goat. Pigs are also the source of lard.\nMost pigs weigh between 250 and 270 pounds at slaughter as it gives optimal retail cuts and medium fat covering.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":260,"price":{"value":3,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/consumables/meat/hock-leg-pink-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234019,"modifiedTime":1670010072144,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"ZcAgZHJ1hhqbedLF","name":"Cotton","ownership":{"default":0},"type":"loot","system":{"description":{"value":"A square yard of cotton of average quality and weight. Used for all many of items and clothing.\nFar lighter, more comfortable, and easier to work with than canvas; however, the comparatively more delicate crop means it is accordingly more expensive and potentially harder to come by.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.5,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/sundries/flags/banner-worn-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234019,"modifiedTime":1670010072156,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"aXWzDW0huOa0WuIO","name":"Copper","ownership":{"default":0},"type":"loot","system":{"description":{"value":"Coveted by advanced shipwrights, alchemists, certain jewelers, and chefs alike, copper is commonly surface mined but underground mining exists when surface sources have been depleted or unable to be located.\nAlthough it can be used for armor, it is far better mixed with tin to make the much more superior bronze alloy for military needs.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/metal/ingot-stamped-bronze.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234020,"modifiedTime":1670010072168,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"eDVTXE3qv28DwvPl","name":"Salt","ownership":{"default":0},"type":"loot","system":{"description":{"value":"Prized by chefs and quartermasters alike as a seasoning and preservative for supplies where alcohol or vinegar are undesired.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":5,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/consumables/food/bowl-stew-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234020,"modifiedTime":1670010072172,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"jad5oFMDv21mPvJP","name":"Silk","ownership":{"default":0},"type":"loot","system":{"description":{"value":"A square yard of silk of average quality and weight. Used for all many of items and clothing.\nThe finest and most desirable of the common fabrics, silk is also the lightest. Most silks will weigh between 2 and 4 ounces per square yard. The heavier the silk, the higher the quality, more durable, and more opaque in color it is.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":0.2,"price":{"value":10,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/equipment/back/cloak-hooded-pink.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234021,"modifiedTime":1670010072177,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"l1YRv9sdhQPaSQop","name":"Chicken","ownership":{"default":0},"type":"loot","system":{"description":{"value":"The source of omelettes and chicken wings, the average adult chicken weighs between 5 and 10 pounds.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":8,"price":{"value":2,"denomination":"cp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/bones/beak-orange-green.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234021,"modifiedTime":1670010072181,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"mFJkwdzb9IpLC3Ip","name":"Canvas","ownership":{"default":0},"type":"loot","system":{"description":{"value":"A square yard of canvas of average quality and weight. Used for all many of items and clothing.\nGraded from 1 to 12, the lower the number, the better the quality and the heavier the weight. #1 quality canvas weighs around 1.7 pounds per square yard, while the weaker, lighter #12 can weigh only 0.7 pounds.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1.2,"price":{"value":1,"denomination":"sp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/sundries/flags/banner-worn-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234022,"modifiedTime":1670010072188,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"pMj0mA1wyEhoO6zP","name":"Goat","ownership":{"default":0},"type":"loot","system":{"description":{"value":"A useful creature for small-area farmers and highland dwellers, goats are effective at keeping meadows from overgrowing while providing milk, cheese, and eventually skins and meat.\nDepending on the breed, adult goats can range from 45 pounds all the way up to 300 pounds.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":175,"price":{"value":1,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/commodities/bones/hooves-cloven-brown.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234022,"modifiedTime":1670010072197,"lastModifiedBy":"dnd5ebuilder0000"}} +{"_id":"u753EokyA4vjksle","name":"Cloves","ownership":{"default":0},"type":"loot","system":{"description":{"value":"A strong spice treasured by both chefs and distillers, working well to flavor meat and stews, rich sauces, warm beverages like cider and chai tea, bread, cheeses, and sweet desserts like pies and fruitcakes.\nCloves are the rich, dried, unopened buds of the Syzygium aromaticum, an evergreen tree in the myrtle family.","chat":"","unidentified":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0"},"quantity":1,"weight":1,"price":{"value":3,"denomination":"gp"},"attunement":0,"equipped":false,"rarity":"","identified":true},"sort":0,"flags":{},"img":"icons/consumables/food/berries-ration-round-red.webp","effects":[],"folder":null,"_stats":{"systemId":"dnd5e","systemVersion":"2.0.3","coreVersion":"10.290","createdTime":1661787234022,"modifiedTime":1670010072212,"lastModifiedBy":"dnd5ebuilder0000"}} diff --git a/system.json b/system.json index 2036968af4..e5b3a70fc0 100644 --- a/system.json +++ b/system.json @@ -2,14 +2,14 @@ "id": "dnd5e", "title": "DnD5e - Fifth Edition System", "description": "A system for playing the fifth edition of the worlds most popular role-playing game in the Foundry Virtual Tabletop environment.", - "version": "2.3.1", + "version": "2.4.0", "compatibility": { "minimum": "10.303", "verified": "11" }, "url": "https://github.com/foundryvtt/dnd5e/", "manifest": "https://raw.githubusercontent.com/foundryvtt/dnd5e/master/system.json", - "download": "https://github.com/foundryvtt/dnd5e/releases/download/release-2.3.1/dnd5e-release-2.3.1.zip", + "download": "https://github.com/foundryvtt/dnd5e/releases/download/release-2.4.0/dnd5e-release-2.4.0.zip", "authors": [ { "name": "Atropos", @@ -107,7 +107,7 @@ }, { "name": "races", - "label": "Racial Features (SRD)", + "label": "Races (SRD)", "system": "dnd5e", "path": "packs/races.db", "type": "Item", @@ -207,7 +207,11 @@ "gridUnits": "ft", "primaryTokenAttribute": "attributes.hp", "flags": { - "needsMigrationVersion": "2.3.0", - "compatibleMigrationVersion": "0.8" + "needsMigrationVersion": "2.4.0", + "compatibleMigrationVersion": "0.8", + "hotReload": { + "extensions": ["css", "hbs", "json"], + "paths": ["dnd5e.css", "templates", "lang"] + } } } diff --git a/template.json b/template.json index 12117d6059..0d4ffd9f21 100644 --- a/template.json +++ b/template.json @@ -76,12 +76,12 @@ "bonus": "" }, "movement": { - "burrow": 0, - "climb": 0, - "fly": 0, - "swim": 0, - "walk": 30, - "units": "ft", + "burrow": null, + "climb": null, + "fly": null, + "swim": null, + "walk": null, + "units": null, "hover": false } }, @@ -127,11 +127,11 @@ "max": 3 }, "senses": { - "darkvision": 0, - "blindsight": 0, - "tremorsense": 0, - "truesight": 0, - "units": "ft", + "darkvision": null, + "blindsight": null, + "tremorsense": null, + "truesight": null, + "units": null, "special": "" }, "spellcasting": "int" @@ -502,7 +502,7 @@ } }, "Item": { - "types": ["weapon", "equipment", "consumable", "tool", "loot", "background", "class", "subclass", "spell", "feat", "backpack"], + "types": ["weapon", "equipment", "consumable", "tool", "loot", "race", "background", "class", "subclass", "spell", "feat", "backpack"], "templates": { "itemDescription": { "description": { @@ -510,7 +510,7 @@ "chat": "", "unidentified": "" }, - "source": "" + "source": {} }, "physicalItem": { "quantity": 1, @@ -618,12 +618,6 @@ "hitDice": "d6", "hitDiceUsed": 0, "advancement": [], - "saves": [], - "skills": { - "number": 2, - "choices": [], - "value": [] - }, "spellcasting": { "progression": "none", "ability": "" @@ -676,6 +670,7 @@ "proficient": null, "bonus": "" }, + "race": {}, "spell": { "templates": ["itemDescription", "activatedEffect", "action"], "level": 1, diff --git a/templates/actors/character-sheet.hbs b/templates/actors/character-sheet.hbs index 6748753a81..2331d642b8 100644 --- a/templates/actors/character-sheet.hbs +++ b/templates/actors/character-sheet.hbs @@ -32,11 +32,16 @@ {{!-- Character Summary --}} - + {{#if system.details.race.name}} + {{system.details.race.name}} + {{else}} + + {{/if}} - {{#if labels.background}} - {{labels.background}} + {{#if system.details.background.name}} + {{system.details.background.name}} {{else}} {{/if}} @@ -247,11 +252,11 @@ - {{ localize "DND5E.Inspiration" }} - - - + + {{ localize "DND5E.Inspiration" }} + + diff --git a/templates/actors/npc-sheet.hbs b/templates/actors/npc-sheet.hbs index 0663dfbc6a..96302f5065 100644 --- a/templates/actors/npc-sheet.hbs +++ b/templates/actors/npc-sheet.hbs @@ -41,8 +41,17 @@ - + {{#if (eq system.details.source.custom system.details.source.label)}} + + {{else}} + {{system.details.source.label}} + {{/if}} + {{#if editable}} + + + + {{/if}} diff --git a/templates/actors/parts/active-effects.hbs b/templates/actors/parts/active-effects.hbs index 74423306f9..897bb67c7e 100644 --- a/templates/actors/parts/active-effects.hbs +++ b/templates/actors/parts/active-effects.hbs @@ -27,7 +27,7 @@ - {{effect.label}} + {{effect.name}} {{effect.sourceName}} {{effect.duration.label}} diff --git a/templates/actors/parts/actor-features.hbs b/templates/actors/parts/actor-features.hbs index 2425e5e404..2428684ff2 100644 --- a/templates/actors/parts/actor-features.hbs +++ b/templates/actors/parts/actor-features.hbs @@ -47,6 +47,7 @@ {{#if item.system.isOriginalClass}} {{/if}} + {{~#if ctx.isStack}} ({{item.system.quantity}}){{/if}} diff --git a/templates/actors/parts/actor-spellbook.hbs b/templates/actors/parts/actor-spellbook.hbs index 735a9e3d0a..c6cbae39b4 100644 --- a/templates/actors/parts/actor-spellbook.hbs +++ b/templates/actors/parts/actor-spellbook.hbs @@ -30,7 +30,7 @@ {{#each spellbook as |section|}} - + {{section.label}} @@ -59,8 +59,7 @@ {{#if section.canCreate}} - + {{localize "DND5E.Add"}} {{/if}} @@ -74,8 +73,10 @@ {{item.name}} - {{#if item.system.uses.per }} - Uses {{item.system.uses.value}} / {{item.system.uses.max}} + {{#if item.hasLimitedUses}} + + {{localize "DND5E.Uses"}} {{#if item.system.uses.value}}{{item.system.uses.value}}{{else}}0{{/if}} / {{item.system.uses.max}} + {{/if}} {{#each item.labels.components.all}} @@ -120,9 +121,9 @@ {{#if filters.spellbook.size}} {{localize "DND5E.FilterNoSpells"}} {{else}} - + - + {{localize "DND5E.SpellAdd"}} diff --git a/templates/actors/parts/actor-traits.hbs b/templates/actors/parts/actor-traits.hbs index 0e953e21aa..e621f456ad 100644 --- a/templates/actors/parts/actor-traits.hbs +++ b/templates/actors/parts/actor-traits.hbs @@ -10,6 +10,22 @@ + {{#if isCharacter}} + + {{localize "DND5E.CreatureType"}} + {{#if system.details.race.id}} + + + + {{/if}} + + {{#if labels.type}} + {{labels.type}} + {{/if}} + + + {{/if}} + {{#unless isVehicle}} {{localize "DND5E.Senses"}} diff --git a/templates/actors/vehicle-sheet.hbs b/templates/actors/vehicle-sheet.hbs index 0fabd74b1f..f9c909423e 100644 --- a/templates/actors/vehicle-sheet.hbs +++ b/templates/actors/vehicle-sheet.hbs @@ -22,7 +22,7 @@ placeholder="{{localize 'DND5E.Dimensions'}}"> - diff --git a/templates/advancement/ability-score-improvement-config.hbs b/templates/advancement/ability-score-improvement-config.hbs index e400be79db..8be19e1724 100644 --- a/templates/advancement/ability-score-improvement-config.hbs +++ b/templates/advancement/ability-score-improvement-config.hbs @@ -1,5 +1,13 @@ {{> "dnd5e.advancement-controls"}} + + {{localize "DND5E.AdvancementAbilityScoreImprovementCap"}} + + + + {{localize "DND5E.AdvancementAbilityScoreImprovementCapHint"}} + {{> "dnd5e.advancement-ability-score-control" points canAdjust=true}} diff --git a/templates/advancement/ability-score-improvement-flow.hbs b/templates/advancement/ability-score-improvement-flow.hbs index 1e30627da5..d781a6d6c6 100644 --- a/templates/advancement/ability-score-improvement-flow.hbs +++ b/templates/advancement/ability-score-improvement-flow.hbs @@ -8,6 +8,7 @@ {{localize "DND5E.AdvancementAbilityScoreImprovementLockedHint"}} {{else}} {{ pointsRemaining }} + {{#if advancement.configuration.cap}}{{pointCap}}{{/if}} {{/if}} {{/unless}} diff --git a/templates/advancement/size-config.hbs b/templates/advancement/size-config.hbs new file mode 100644 index 0000000000..0eb29977cb --- /dev/null +++ b/templates/advancement/size-config.hbs @@ -0,0 +1,10 @@ + + {{> "dnd5e.advancement-controls"}} + + + {{localize "DND5E.AdvancementHint"}} + {{configuration.hint}} + + + {{> "dnd5e.trait-list" choices=sizes prefix="configuration.sizes"}} + diff --git a/templates/advancement/size-flow.hbs b/templates/advancement/size-flow.hbs new file mode 100644 index 0000000000..241a9570bd --- /dev/null +++ b/templates/advancement/size-flow.hbs @@ -0,0 +1,13 @@ + + {{{this.title}}} + + {{hint}} + + {{#if singleSize}} + + {{else}} + + {{selectOptions sizes selected=selectedSize}} + + {{/if}} + diff --git a/templates/advancement/trait-config.hbs b/templates/advancement/trait-config.hbs new file mode 100644 index 0000000000..9802d6e376 --- /dev/null +++ b/templates/advancement/trait-config.hbs @@ -0,0 +1,97 @@ + + + {{> "dnd5e.advancement-controls"}} + + + {{localize "DND5E.AdvancementTraitMode"}} + + + {{selectOptions CONFIG.traitModes selected=configuration.mode labelAttr="label"}} + + + {{localize (lookup (lookup CONFIG.traitModes configuration.mode) "hint")}} + + + + {{localize "DND5E.AdvancementTraitAllowReplacements"}} + + + + {{localize "DND5E.AdvancementTraitAllowReplacementsHint"}} + + + + Hint + {{configuration.hint}} + + + + {{localize "DND5E.AdvancementTraitGrants"}} + {{localize "DND5E.AdvancementTraitGrantsHint"}} + + + + + {{#if grants.selected}} + + {{else}} + + {{/if}} + {{grants.label}} + + + + + + + {{localize "DND5E.AdvancementTraitChoices"}} + {{localize "DND5E.AdvancementTraitChoicesHint"}} + + {{#each choices}} + + + + {{#if this.selected}} + + {{else}} + + {{/if}} + {{this.label}} + + + + + + {{/each}} + + + {{localize "DND5E.AdvancementTraitActionAddChoice"}} + + + + + {{#if choiceOptions}} + + {{#if (ne selectedIndex -1)}} + + {{localize "DND5E.AdvancementTraitCount"}} + + + + + {{/if}} + + + {{localize "DND5E.AdvancementTraitType"}} + + + {{selectOptions validTraitTypes selected=selectedTrait localize=true}} + + + + + {{> "dnd5e.trait-list" choices=choiceOptions prefix="configuration.checked"}} + + {{/if}} + diff --git a/templates/advancement/trait-flow.hbs b/templates/advancement/trait-flow.hbs new file mode 100644 index 0000000000..7f46c5f122 --- /dev/null +++ b/templates/advancement/trait-flow.hbs @@ -0,0 +1,25 @@ + + {{{title}}} + + {{hint}} + + + {{#each slots}} + + {{#if this.key}} + + {{this.label}} + + + {{#if this.showDelete}} + + {{/if}} + {{else if (and this.showSelector @root.available.choices)}} + + {{dnd5e-groupedSelectOptions @root.available.choices blank=@root.available.label}} + + {{/if}} + + {{/each}} + + diff --git a/templates/apps/ability-use.hbs b/templates/apps/ability-use.hbs index 5eb26414d3..c44bda8c65 100644 --- a/templates/apps/ability-use.hbs +++ b/templates/apps/ability-use.hbs @@ -1,59 +1,62 @@ {{title}} {{note}} - {{#each errors}} + {{#each warnings}} {{this}} {{/each}} - {{#if consumeSpellSlot}} + {{#if (eq scaling "resource")}} - {{ localize "DND5E.SpellCastUpcast" }} + {{ localize "DND5E.ConsumeScalingLabel" }} - - {{#select item.system.level}} - {{#each spellLevels as |l|}} - {{l.label}} - {{/each}} - {{/select}} + + {{selectOptions resourceOptions selected=resourceAmount localize=true}} + {{/if}} + {{#if (eq scaling "slot")}} - - {{localize "DND5E.SpellCastConsume"}} - + {{ localize "DND5E.SpellCastUpcast" }} + + + {{#select slotLevel}} + {{#each slotOptions as |l|}} + {{l.label}} + {{/each}} + {{/select}} + + - {{/if}} - {{#if consumeUses}} - {{localize "DND5E.AbilityUseConsume"}} + {{localize "DND5E.SpellCastConsume"}} {{/if}} - {{#if consumeResource}} + {{#if (ne consumeUsage null)}} - {{localize "DND5E.ConsumeResource"}} + {{localize "DND5E.AbilityUseConsume"}} {{/if}} - {{#if consumeRecharge}} + {{#if (ne consumeResource null)}} - {{localize "DND5E.ConsumeRecharge"}} + {{localize "DND5E.ConsumeResource"}} {{/if}} - {{#if createTemplate}} + {{#if (ne createMeasuredTemplate null)}} - {{localize "DND5E.PlaceTemplate"}} + {{localize "DND5E.PlaceTemplate"}} {{/if}} diff --git a/templates/apps/actor-type.hbs b/templates/apps/actor-type.hbs index d493ddab87..02853e51df 100644 --- a/templates/apps/actor-type.hbs +++ b/templates/apps/actor-type.hbs @@ -7,30 +7,34 @@ {{#each types as |type key|}} - + {{type.label}} {{/each}} + {{#if showCustom}} {{custom.label}} - + + {{/if}} {{ localize "DND5E.CreatureTypeSelectorSubtype" }} - + + {{#if showSwarm}} {{ localize "DND5E.CreatureSwarmSize" }} {{selectOptions sizes selected=swarm blank="" localize=true}} + {{/if}} {{ localize "DND5E.TraitSave"}} diff --git a/templates/apps/movement-config.hbs b/templates/apps/movement-config.hbs index e028fa5a12..966312c4cf 100644 --- a/templates/apps/movement-config.hbs +++ b/templates/apps/movement-config.hbs @@ -1,23 +1,23 @@ {{localize "DND5E.MovementConfigHint"}} - {{#each speeds as |label id|}} + {{#each movements as |movement id|}} - {{localize label}} - {{numberInput (lookup @root.movement id) name=(concat "system.attributes.movement." id) placeholder=0 step=0.1 min=0}} + {{localize movement.label}} + {{numberInput movement.value name=(concat @root.keyPath "." id) placeholder=movement.placeholder step=0.1 min=0}} {{/each}} {{#if selectUnits}} {{localize "DND5E.MovementUnits"}} - - {{selectOptions units selected=movement.units}} + + {{selectOptions units selected=movement.units blank=unitsPlaceholder}} {{/if}} {{#if canHover}} {{localize "DND5E.MovementHover"}} - + {{/if}} {{ localize "Submit"}} diff --git a/templates/apps/parts/trait-list.hbs b/templates/apps/parts/trait-list.hbs index c52570d831..8d69f42198 100644 --- a/templates/apps/parts/trait-list.hbs +++ b/templates/apps/parts/trait-list.hbs @@ -1,8 +1,9 @@ {{#each choices as |choice key|}} - + - + {{choice.label}} {{#if choice.children}} diff --git a/templates/apps/senses-config.hbs b/templates/apps/senses-config.hbs index 9f9e7d34f2..8f45e3038c 100644 --- a/templates/apps/senses-config.hbs +++ b/templates/apps/senses-config.hbs @@ -3,18 +3,18 @@ {{#each senses as |sense name|}} {{sense.label}} - + {{numberInput sense.value name=(concat @root.keyPath "." name) placeholder=sense.placeholder step=0.1 min=0}} {{/each}} {{localize "DND5E.MovementUnits"}} - - {{selectOptions movementUnits selected=units}} + + {{selectOptions movementUnits selected=units blank=unitsPlaceholder}} {{localize "DND5E.SenseSpecial"}} - + {{ localize "Submit"}} diff --git a/templates/apps/source-config.hbs b/templates/apps/source-config.hbs new file mode 100644 index 0000000000..8e97c760dd --- /dev/null +++ b/templates/apps/source-config.hbs @@ -0,0 +1,32 @@ + + + {{localize "DND5E.SourceBook"}} + + + {{#each CONFIG.sourceBooks as |label key|}} + {{label}} + {{/each}} + + + + {{localize "DND5E.SourcePage"}} + + + + {{localize "DND5E.SourceCustom"}} + + + + {{localize "DND5E.SourceLicense"}} + + + {{#if sourceUuid}} + + {{localize "DND5E.SourceUUID"}} + + {{{dnd5e-linkForUuid sourceUuid}}} + + + {{/if}} + {{ localize "Submit"}} + diff --git a/templates/apps/trait-selector.hbs b/templates/apps/trait-selector.hbs index 337b24c04a..9ae86a2e08 100644 --- a/templates/apps/trait-selector.hbs +++ b/templates/apps/trait-selector.hbs @@ -4,7 +4,9 @@ {{#if customPath}} {{localize "DND5E.TraitSelectorSpecial"}} - + + + {{/if}} diff --git a/templates/chat/item-card.hbs b/templates/chat/item-card.hbs index 5cf7eb98c8..935ceb9e12 100644 --- a/templates/chat/item-card.hbs +++ b/templates/chat/item-card.hbs @@ -6,7 +6,11 @@ - {{{data.description.value}}} + {{#if data.description.chat}} + {{{data.description.chat}}} + {{else}} + {{{data.description.value}}} + {{/if}} {{#if data.materials.value}} {{ localize "DND5E.RequiredMaterials" }}. {{data.materials.value}} {{/if}} diff --git a/templates/items/background.hbs b/templates/items/background.hbs index 7975a6404b..665feb5607 100644 --- a/templates/items/background.hbs +++ b/templates/items/background.hbs @@ -16,7 +16,7 @@ - + {{> "dnd5e.item-source"}} @@ -33,8 +33,8 @@ {{!-- Description Tab --}} - {{editor descriptionHTML target="system.description.value" button=true editable=editable engine="prosemirror" - collaborate=false}} + {{editor enriched.description target="system.description.value" button=true editable=editable + engine="prosemirror" collaborate=false}} {{!-- Advancement Tab --}} diff --git a/templates/items/backpack.hbs b/templates/items/backpack.hbs index 1d0cb095bd..d6c68c7441 100644 --- a/templates/items/backpack.hbs +++ b/templates/items/backpack.hbs @@ -1,47 +1,47 @@ - {{!-- Item Sheet Header --}} - - + {{!-- Item Sheet Header --}} + + - - - - + + + + - - {{itemType}} - {{itemStatus}} - + + {{itemType}} + {{itemStatus}} + - - - - {{selectOptions config.itemRarity selected=system.rarity blank=""}} - - - - - - - - + + + + {{selectOptions config.itemRarity selected=system.rarity blank=""}} + + + + {{> "dnd5e.item-source"}} + + + + - {{!-- Item Sheet Navigation --}} - - {{ localize "DND5E.Description" }} - {{ localize "DND5E.Details" }} - + {{!-- Item Sheet Navigation --}} + + {{ localize "DND5E.Description" }} + {{ localize "DND5E.Details" }} + - {{!-- Item Sheet Body --}} - + {{!-- Item Sheet Body --}} + - {{!-- Description Tab --}} - {{> "dnd5e.item-description"}} + {{!-- Description Tab --}} + {{> "dnd5e.item-description"}} - {{!-- Details Tab --}} - - {{localize 'DND5E.ItemContainerDetails'}} + {{!-- Details Tab --}} + + {{localize 'DND5E.ItemContainerDetails'}} {{ localize "DND5E.ItemContainerStatus" }} @@ -51,19 +51,19 @@ - - {{localize 'DND5E.ItemContainerCapacity'}} - - {{numberInput system.capacity.value name="system.capacity.value" placeholder="—"}} - - + + {{localize 'DND5E.ItemContainerCapacity'}} + + {{numberInput system.capacity.value name="system.capacity.value" placeholder="—"}} + + - - {{localize 'DND5E.ItemContainerCapacityType'}} - - {{selectOptions config.itemCapacityTypes selected=system.capacity.type}} - - + + {{localize 'DND5E.ItemContainerCapacityType'}} + + {{selectOptions config.itemCapacityTypes selected=system.capacity.type}} + + {{localize "DND5E.Attunement"}} @@ -72,12 +72,13 @@ - - {{localize 'DND5E.ItemContainerProperties'}} - - - {{localize 'DND5E.ItemContainerWeightless'}} - - - + + {{localize 'DND5E.ItemContainerProperties'}} + + + {{localize 'DND5E.ItemContainerWeightless'}} + + + + diff --git a/templates/items/class.hbs b/templates/items/class.hbs index 6814795ad3..a27e94f422 100644 --- a/templates/items/class.hbs +++ b/templates/items/class.hbs @@ -16,7 +16,7 @@ - + {{> "dnd5e.item-source"}} @@ -34,7 +34,7 @@ {{!-- Description Tab --}} - {{editor descriptionHTML target="system.description.value" button=true editable=editable + {{editor enriched.description target="system.description.value" button=true editable=editable engine="prosemirror" collaborate=false}} @@ -78,69 +78,6 @@ {{localize "DND5E.Spellcasting"}} {{> "dnd5e.item-spellcasting"}} - {{!-- Proficiencies --}} - {{localize "DND5E.Proficiency"}} - - - {{ localize "DND5E.ClassSaves" }} - {{#if editable}} - - - - {{/if}} - - - - {{#each system.saves}} - {{lookup (lookup ../config.abilities this) "label"}} - {{/each}} - - - - - {{!-- Level 1 skills --}} - - {{localize "DND5E.ClassSkillsNumber"}} - - {{numberInput system.skills.number name="system.skills.number" placeholder="0"}} - - - - - - {{localize "DND5E.ClassSkillsEligible"}} - {{#if editable}} - - - - {{/if}} - - - - {{#each system.skills.choices}} - {{lookup (lookup ../config.skills this) "label"}} - {{/each}} - - - - - - - {{localize "DND5E.ClassSkillsChosen"}} - {{#if editable}} - - - - {{/if}} - - - - {{#each system.skills.value}} - {{lookup (lookup ../config.skills this) "label"}} - {{/each}} - - - {{!-- Advancement Tab --}} diff --git a/templates/items/consumable.hbs b/templates/items/consumable.hbs index 82a911e358..7b410ae11a 100644 --- a/templates/items/consumable.hbs +++ b/templates/items/consumable.hbs @@ -24,7 +24,7 @@ - + {{> "dnd5e.item-source"}} @@ -89,13 +89,6 @@ {{!-- Item Activation Template --}} {{> "dnd5e.item-activation"}} - {{#if system.activation.type}} - - - {{ localize "DND5E.ItemDestroyEmpty" }} - - - {{/if}} {{ localize "DND5E.ItemConsumableActivation" }} diff --git a/templates/items/equipment.hbs b/templates/items/equipment.hbs index 8952db3952..fb00eef02e 100644 --- a/templates/items/equipment.hbs +++ b/templates/items/equipment.hbs @@ -24,7 +24,7 @@ - + {{> "dnd5e.item-source"}} diff --git a/templates/items/feat.hbs b/templates/items/feat.hbs index 5aa80f4319..c12cd73a9f 100644 --- a/templates/items/feat.hbs +++ b/templates/items/feat.hbs @@ -22,7 +22,7 @@ - + {{> "dnd5e.item-source"}} diff --git a/templates/items/loot.hbs b/templates/items/loot.hbs index 9c6bebb191..81ac744b3c 100644 --- a/templates/items/loot.hbs +++ b/templates/items/loot.hbs @@ -21,14 +21,49 @@ - + {{> "dnd5e.item-source"}} + {{!-- Item Sheet Navigation --}} + + {{ localize "DND5E.Description" }} + {{ localize "DND5E.Details" }} + + {{!-- Item Sheet Body --}} + + {{!-- Description Tab --}} {{> "dnd5e.item-description"}} + + {{!-- Details Tab --}} + + {{ localize "DND5E.ItemLootDetails" }} + + {{!-- Loot Type --}} + + {{ localize "DND5E.ItemLootType" }} + + {{selectOptions config.lootTypes selected=system.type.value labelAttr="label" blank=""}} + + + + {{#if lootSubtypes}} + + + {{localize "DND5E.ItemLootSubtype" + category=(lookup (lookup config.lootTypes system.type.value) "label")}} + + + {{selectOptions lootSubtypes selected=system.type.subtype blank=""}} + + + {{/if}} + + + diff --git a/templates/items/parts/item-activation.hbs b/templates/items/parts/item-activation.hbs index d9e9fbd65e..8cb6769072 100644 --- a/templates/items/parts/item-activation.hbs +++ b/templates/items/parts/item-activation.hbs @@ -2,13 +2,12 @@ {{ localize "DND5E.ItemActivationCost" }} - {{#if system.activation.type}} + {{#if (and system.activation.type (not isCostlessAction))}} {{/if}} - {{selectOptions config.abilityActivationTypes selected=system.activation.type - blank=(localize "DND5E.None")}} + {{selectOptions config.abilityActivationTypes selected=system.activation.type blank=""}} @@ -121,19 +120,21 @@ {{ localize "DND5E.LimitedUses" }} + {{#if system.uses.per}} {{localize "DND5E.of"}} {{localize "DND5E.per"}} + {{/if}} - {{selectOptions config.limitedUsePeriods selected=system.uses.per blank=""}} + {{selectOptions config.limitedUsePeriods selected=system.uses.per blank=(localize "DND5E.None")}} -{{#if (eq system.uses.per "charges")}} +{{#if isFormulaRecharge}} {{localize "DND5E.RecoveryFormula"}} @@ -147,8 +148,8 @@ {{ localize "DND5E.ConsumeTitle" }} {{#if system.consume.type}} - + {{selectOptions abilityConsumptionTargets selected=system.consume.target blank=""}} @@ -158,4 +159,28 @@ + +{{!-- Prompt Configuration --}} + + {{#if (eq item.type "consumable")}} + + {{ localize "DND5E.ItemDestroyEmpty" }} + + {{/if}} + {{#if item.hasAreaTarget}} + + {{ localize "DND5E.TemplatePrompt" }} + + {{/if}} + {{#if system.uses.per}} + + {{ localize "DND5E.LimitedUsesPrompt" }} + + {{/if}} + {{#if (and (eq item.type "spell") system.consume.type)}} + + {{ localize "DND5E.ConsumeScaling" }} + + {{/if}} + {{/if}} diff --git a/templates/items/parts/item-description.hbs b/templates/items/parts/item-description.hbs index a652fa1b46..c8b06ced26 100644 --- a/templates/items/parts/item-description.hbs +++ b/templates/items/parts/item-description.hbs @@ -1,5 +1,9 @@ +{{#if editingDescriptionTarget}} + {{editor enriched.editing target=editingDescriptionTarget button=false editable=editable + engine="prosemirror" collaborate=true}} +{{else}} {{#if isPhysical}} @@ -54,6 +58,45 @@ {{/if}} - {{editor descriptionHTML target="system.description.value" button=true editable=editable engine="prosemirror" - collaborate=false}} + + {{#if (or editable system.description.value)}} + {{#if editable}} + + + {{localize "DND5E.Description"}} + + + + + {{/if}} + {{editor enriched.description target="system.description.value" editable=false engine="prosemirror"}} + {{/if}} + + {{#if (or editable system.description.unidentified)}} + + + {{localize "DND5E.DescriptionUnidentified"}} + {{#if editable}} + + + + {{/if}} + + {{editor enriched.unidentified target="system.description.unidentified" editable=false engine="prosemirror"}} + {{/if}} + + {{#if (or editable system.description.chat)}} + + + {{localize "DND5E.DescriptionChat"}} + {{#if editable}} + + + + {{/if}} + + {{editor enriched.chat target="system.description.chat" editable=false engine="prosemirror"}} + {{/if}} + +{{/if}} diff --git a/templates/items/parts/item-source.hbs b/templates/items/parts/item-source.hbs new file mode 100644 index 0000000000..f1ceea441d --- /dev/null +++ b/templates/items/parts/item-source.hbs @@ -0,0 +1,11 @@ +{{#if (eq system.source.custom system.source.label)}} + +{{else}} + {{system.source.label}} +{{/if}} +{{#if editable}} + + + +{{/if}} diff --git a/templates/items/race.hbs b/templates/items/race.hbs new file mode 100644 index 0000000000..f711449601 --- /dev/null +++ b/templates/items/race.hbs @@ -0,0 +1,76 @@ + + {{!-- Item Sheet Header --}} + + + + + + + + + + {{itemType}} + {{itemStatus}} + + + + + {{> "dnd5e.item-source"}} + + + + + + {{!-- Item Sheet Navigation --}} + + {{localize "DND5E.Description"}} + {{localize "DND5E.AdvancementTitle"}} + + + {{!-- Item Sheet Body --}} + + + {{!-- Description Tab --}} + + + + + {{localize "DND5E.Type"}} + {{#if editable}}{{/if}} + + + {{item.system.typeLabel}} + + + {{localize "DND5E.Movement"}} + {{#if editable}}{{/if}} + + + {{#each item.system.movementLabels}} + {{this}} + {{else}} + {{localize "DND5E.None"}} + {{/each}} + + + {{localize "DND5E.Senses"}} + {{#if editable}}{{/if}} + + + {{#each item.system.sensesLabels}} + {{this}} + {{else}} + {{localize "DND5E.None"}} + {{/each}} + + + + {{editor enriched.description target="system.description.value" button=true editable=editable + engine="prosemirror" collaborate=false}} + + + {{!-- Advancement Tab --}} + {{> "dnd5e.item-advancement"}} + + + diff --git a/templates/items/spell.hbs b/templates/items/spell.hbs index 11e23d7bd9..b45f73ecd6 100644 --- a/templates/items/spell.hbs +++ b/templates/items/spell.hbs @@ -22,7 +22,7 @@ {{labels.school}} - + {{> "dnd5e.item-source"}} diff --git a/templates/items/subclass.hbs b/templates/items/subclass.hbs index 2a6c2ae9b0..1707640ff5 100644 --- a/templates/items/subclass.hbs +++ b/templates/items/subclass.hbs @@ -16,7 +16,7 @@ - + {{> "dnd5e.item-source"}} @@ -34,8 +34,8 @@ {{!-- Description Tab --}} - {{editor descriptionHTML target="system.description.value" button=true editable=editable engine="prosemirror" - collaborate=false}} + {{editor enriched.description target="system.description.value" button=true editable=editable + engine="prosemirror" collaborate=false}} {{!-- Details Tab --}} diff --git a/templates/items/tool.hbs b/templates/items/tool.hbs index daa1c68708..2ee08ee398 100644 --- a/templates/items/tool.hbs +++ b/templates/items/tool.hbs @@ -28,7 +28,7 @@ - + {{> "dnd5e.item-source"}} diff --git a/templates/items/weapon.hbs b/templates/items/weapon.hbs index 6939f11bae..93c2b51ce8 100644 --- a/templates/items/weapon.hbs +++ b/templates/items/weapon.hbs @@ -24,7 +24,7 @@ - + {{> "dnd5e.item-source"}} diff --git a/templates/journal/page-class-edit.hbs b/templates/journal/page-class-edit.hbs index 3b16b716bf..888580f6d8 100644 --- a/templates/journal/page-class-edit.hbs +++ b/templates/journal/page-class-edit.hbs @@ -7,7 +7,7 @@ {{#if document.system.item}} - {{{dnd5e-linkForUuid document.system.item}}} + {{{dnd5e-linkForUuid document.system.item}}} @@ -84,7 +84,7 @@ {{#each subclasses}} - {{{dnd5e-linkForUuid this.document.uuid}}} + {{{dnd5e-linkForUuid this.document.uuid}}} diff --git a/templates/journal/page-class-view.hbs b/templates/journal/page-class-view.hbs index 6c291c3a75..e77f3bcd5e 100644 --- a/templates/journal/page-class-view.hbs +++ b/templates/journal/page-class-view.hbs @@ -27,6 +27,15 @@ {{#if (or advancement.traits enriched.additionalTraits)}} {{localize "JOURNALENTRYPAGE.DND5E.Class.TraitsHeader"}} + {{#if advancement.traits}} + + {{localize "DND5E.Armor"}}: {{advancement.traits.armor}} + {{localize "TYPES.Item.weaponPl"}}: {{advancement.traits.weapons}} + {{localize "TYPES.Item.toolPl"}}: {{advancement.traits.tools}} + {{localize "DND5E.ClassSaves"}}: {{advancement.traits.saves}} + {{localize "DND5E.Skills"}}: {{advancement.traits.skills}} + + {{/if}} {{{enriched.additionalTraits}}} {{/if}} diff --git a/tokens/aberration/AlienBrute.webp b/tokens/aberration/AlienBrute.webp new file mode 100644 index 0000000000..3f835f0683 Binary files /dev/null and b/tokens/aberration/AlienBrute.webp differ diff --git a/tokens/aberration/AlienHound.webp b/tokens/aberration/AlienHound.webp new file mode 100644 index 0000000000..bf5e8cc20b Binary files /dev/null and b/tokens/aberration/AlienHound.webp differ diff --git a/tokens/aberration/Ceremorph.webp b/tokens/aberration/Ceremorph.webp new file mode 100644 index 0000000000..566f834750 Binary files /dev/null and b/tokens/aberration/Ceremorph.webp differ diff --git a/tokens/aberration/LightDevourer.webp b/tokens/aberration/LightDevourer.webp new file mode 100644 index 0000000000..1062418428 Binary files /dev/null and b/tokens/aberration/LightDevourer.webp differ diff --git a/tokens/aberration/Mindwitness.webp b/tokens/aberration/Mindwitness.webp new file mode 100644 index 0000000000..f652ef8b42 Binary files /dev/null and b/tokens/aberration/Mindwitness.webp differ diff --git a/tokens/aberration/Skum.webp b/tokens/aberration/Skum.webp new file mode 100644 index 0000000000..2edbbfa8ed Binary files /dev/null and b/tokens/aberration/Skum.webp differ diff --git a/tokens/aberration/Voidfin.webp b/tokens/aberration/Voidfin.webp new file mode 100644 index 0000000000..52dbf09746 Binary files /dev/null and b/tokens/aberration/Voidfin.webp differ diff --git a/tokens/beast/BlackWidow.webp b/tokens/beast/BlackWidow.webp new file mode 100644 index 0000000000..cef9def8b5 Binary files /dev/null and b/tokens/beast/BlackWidow.webp differ diff --git a/tokens/beast/Moose.webp b/tokens/beast/Moose.webp new file mode 100644 index 0000000000..47c08f47fc Binary files /dev/null and b/tokens/beast/Moose.webp differ diff --git a/tokens/celestial/Hollyphant.webp b/tokens/celestial/Hollyphant.webp new file mode 100644 index 0000000000..389da2da3c Binary files /dev/null and b/tokens/celestial/Hollyphant.webp differ diff --git a/tokens/dragon/CopperDragonAdult.webp b/tokens/dragon/CopperDragonAdult.webp new file mode 100644 index 0000000000..aa3cdcfded Binary files /dev/null and b/tokens/dragon/CopperDragonAdult.webp differ diff --git a/tokens/dragon/RedDragonAncient.webp b/tokens/dragon/RedDragonAncient.webp new file mode 100644 index 0000000000..96096fbf57 Binary files /dev/null and b/tokens/dragon/RedDragonAncient.webp differ diff --git a/tokens/elemental/AirMyrmidon.webp b/tokens/elemental/AirMyrmidon.webp new file mode 100644 index 0000000000..ac5c1bbbad Binary files /dev/null and b/tokens/elemental/AirMyrmidon.webp differ diff --git a/tokens/elemental/Dao.webp b/tokens/elemental/Dao.webp new file mode 100644 index 0000000000..9451704a92 Binary files /dev/null and b/tokens/elemental/Dao.webp differ diff --git a/tokens/elemental/EarthMyrmidon.webp b/tokens/elemental/EarthMyrmidon.webp new file mode 100644 index 0000000000..c45ae86625 Binary files /dev/null and b/tokens/elemental/EarthMyrmidon.webp differ diff --git a/tokens/elemental/FireMyrmidon.webp b/tokens/elemental/FireMyrmidon.webp new file mode 100644 index 0000000000..f2bd695546 Binary files /dev/null and b/tokens/elemental/FireMyrmidon.webp differ diff --git a/tokens/elemental/Marid.webp b/tokens/elemental/Marid.webp new file mode 100644 index 0000000000..9bd403a693 Binary files /dev/null and b/tokens/elemental/Marid.webp differ diff --git a/tokens/elemental/WaterMyrmidon.webp b/tokens/elemental/WaterMyrmidon.webp new file mode 100644 index 0000000000..209b49d158 Binary files /dev/null and b/tokens/elemental/WaterMyrmidon.webp differ diff --git a/tokens/fiend/Barghest.webp b/tokens/fiend/Barghest.webp new file mode 100644 index 0000000000..d4787ac4c8 Binary files /dev/null and b/tokens/fiend/Barghest.webp differ diff --git a/tokens/fiend/LickerHound.webp b/tokens/fiend/LickerHound.webp new file mode 100644 index 0000000000..ef46d754d4 Binary files /dev/null and b/tokens/fiend/LickerHound.webp differ diff --git a/tokens/fiend/StingerJackal.webp b/tokens/fiend/StingerJackal.webp new file mode 100644 index 0000000000..1b6411db55 Binary files /dev/null and b/tokens/fiend/StingerJackal.webp differ diff --git a/tokens/monstrosity/NecroDrider.webp b/tokens/monstrosity/NecroDrider.webp new file mode 100644 index 0000000000..ec941057ab Binary files /dev/null and b/tokens/monstrosity/NecroDrider.webp differ diff --git a/tokens/monstrosity/NecroSpider.webp b/tokens/monstrosity/NecroSpider.webp new file mode 100644 index 0000000000..7fc42178f3 Binary files /dev/null and b/tokens/monstrosity/NecroSpider.webp differ diff --git a/tokens/monstrosity/TarrasqueAlt.webp b/tokens/monstrosity/TarrasqueAlt.webp new file mode 100644 index 0000000000..71ebfa8d8a Binary files /dev/null and b/tokens/monstrosity/TarrasqueAlt.webp differ diff --git a/tokens/plant/FungalBridesmaid.webp b/tokens/plant/FungalBridesmaid.webp new file mode 100644 index 0000000000..e7f1a904eb Binary files /dev/null and b/tokens/plant/FungalBridesmaid.webp differ diff --git a/tokens/plant/LichenDryad.webp b/tokens/plant/LichenDryad.webp new file mode 100644 index 0000000000..438a26b2b8 Binary files /dev/null and b/tokens/plant/LichenDryad.webp differ diff --git a/tokens/plant/MyconidFungal.webp b/tokens/plant/MyconidFungal.webp new file mode 100644 index 0000000000..4070ee56da Binary files /dev/null and b/tokens/plant/MyconidFungal.webp differ diff --git a/tokens/plant/MyconidFunguy.webp b/tokens/plant/MyconidFunguy.webp new file mode 100644 index 0000000000..cdc7ede3f4 Binary files /dev/null and b/tokens/plant/MyconidFunguy.webp differ diff --git a/tokens/plant/MyconidSprout.webp b/tokens/plant/MyconidSprout.webp new file mode 100644 index 0000000000..4998a7b385 Binary files /dev/null and b/tokens/plant/MyconidSprout.webp differ diff --git a/tokens/plant/TwigBlight.webp b/tokens/plant/TwigBlight.webp new file mode 100644 index 0000000000..ef09a60134 Binary files /dev/null and b/tokens/plant/TwigBlight.webp differ diff --git a/tokens/plant/WoodWoad.webp b/tokens/plant/WoodWoad.webp new file mode 100644 index 0000000000..726f377bd6 Binary files /dev/null and b/tokens/plant/WoodWoad.webp differ diff --git a/tokens/undead/LichenLich.webp b/tokens/undead/LichenLich.webp new file mode 100644 index 0000000000..21d209abdb Binary files /dev/null and b/tokens/undead/LichenLich.webp differ diff --git a/utils/css.mjs b/utils/css.mjs deleted file mode 100644 index d3421780ae..0000000000 --- a/utils/css.mjs +++ /dev/null @@ -1,26 +0,0 @@ -import gulp from "gulp"; -import less from "gulp-less"; - - -const LESS_DEST = "./"; -const LESS_SRC = "less/dnd5e.less"; -const LESS_WATCH = ["less/*.less"]; - - -/** - * Compile the LESS sources into a single CSS file. - */ -function compileLESS() { - return gulp.src(LESS_SRC) - .pipe(less()) - .pipe(gulp.dest(LESS_DEST)); -} -export const compile = compileLESS; - - -/** - * Update the CSS if any of the LESS sources are modified. - */ -export function watchUpdates() { - gulp.watch(LESS_WATCH, compile); -} diff --git a/utils/javascript.mjs b/utils/javascript.mjs deleted file mode 100644 index a89e78d2de..0000000000 --- a/utils/javascript.mjs +++ /dev/null @@ -1,62 +0,0 @@ -import eslint from "gulp-eslint7"; -import gulp from "gulp"; -import gulpIf from "gulp-if"; -import mergeStream from "merge-stream"; -import nodeResolve from "@rollup/plugin-node-resolve"; -import { rollup } from "rollup"; -import yargs from "yargs"; - - -/** - * Parsed arguments passed in through the command line. - * @type {object} - */ -const parsedArgs = yargs(process.argv).argv; - -/** - * Paths of javascript files that should be linted. - * @type {string[]} - */ -const LINTING_PATHS = ["./dnd5e.mjs", "./module/"]; - - -/** - * Compile javascript source files into a single output file. - * - * - `gulp buildJS` - Compile all javascript files into into single file & build source maps. - */ -async function compileJavascript() { - const bundle = await rollup({ - input: "./dnd5e.mjs", - plugins: [nodeResolve()] - }); - await bundle.write({ - file: "./dnd5e-compiled.mjs", - format: "es", - sourcemap: true, - sourcemapFile: "dnd5e.mjs" - }); -} -export const compile = compileJavascript; - - -/** - * Lint javascript sources and optionally applies fixes. - * - * - `gulp lint` - Lint all javascript files. - * - `gulp lint --fix` - Lint and apply available fixes automatically. - */ -function lintJavascript() { - const applyFixes = !!parsedArgs.fix; - const tasks = LINTING_PATHS.map(path => { - const src = path.endsWith("/") ? `${path}**/*.mjs` : path; - const dest = path.endsWith("/") ? path : `${path.split("/").slice(0, -1).join("/")}/`; - return gulp - .src(src) - .pipe(eslint({fix: applyFixes})) - .pipe(eslint.format()) - .pipe(gulpIf(file => file.eslint != null && file.eslint.fixed, gulp.dest(dest))); - }); - return mergeStream(tasks); -} -export const lint = lintJavascript; diff --git a/utils/packs.mjs b/utils/packs.mjs index 7b58e52cdc..9432c658db 100644 --- a/utils/packs.mjs +++ b/utils/packs.mjs @@ -1,19 +1,13 @@ -import Datastore from "nedb"; +import Datastore from "nedb-promises"; import fs from "fs"; -import gulp from "gulp"; +import { readdir, readFile, writeFile } from "node:fs/promises"; import logger from "fancy-log"; -import mergeStream from "merge-stream"; import path from "path"; -import through2 from "through2"; import yargs from "yargs"; +import { hideBin } from "yargs/helpers"; +import { compilePack, extractPack } from "@foundryvtt/foundryvtt-cli"; -/** - * Parsed arguments passed in through the command line. - * @type {object} - */ -const parsedArgs = yargs(process.argv).argv; - /** * Folder where the compiled compendium packs should be located relative to the * base 5e system folder. @@ -27,6 +21,51 @@ const PACK_DEST = "packs"; */ const PACK_SRC = "packs/src"; + +const argv = yargs(hideBin(process.argv)) + .command(packageCommand()) + .help().alias("help", "h") + .argv; + + +function packageCommand() { + return { + command: "package [action] [pack] [entry]", + describe: "Manage packages", + builder: yargs => { + yargs.positional("action", { + describe: "The action to perform.", + type: "string", + choices: ["unpack", "pack", "clean"] + }); + yargs.positional("pack", { + describe: "Name of the pack upon which to work.", + type: "string" + }); + yargs.positional("entry", { + describe: "Name of any entry within a pack upon which to work. Only applicable to extract & clean commands.", + type: "string" + }); + yargs.option("nedb", { + describe: "Should the NeDB database be used instead of ClassicLevel?", + type: "boolean" + }); + }, + handler: async argv => { + const { action, pack, entry, ...options } = argv; + switch ( action ) { + case "clean": + return await cleanPacks(pack, entry); + case "pack": + return await compilePacks(pack, options); + case "unpack": + return await extractPacks(pack, entry, options); + } + } + }; +} + + /** * Cache of DBs so they aren't loaded repeatedly when determining IDs. * @type {Object} @@ -91,27 +130,20 @@ function cleanPackEntry(data, { clearSourceId=true }={}) { * @param {string} pack Name of the pack to which this item belongs. * @returns {Promise} Resolves once the ID is determined. */ -function determineId(data, pack) { +async function determineId(data, pack) { const db_path = path.join(PACK_DEST, `${pack}.db`); - if ( !DB_CACHE[db_path] ) { - DB_CACHE[db_path] = new Datastore({ filename: db_path, autoload: true }); - DB_CACHE[db_path].loadDatabase(); - } + if ( !DB_CACHE[db_path] ) DB_CACHE[db_path] = Datastore.create({ filename: db_path, autoload: true }); const db = DB_CACHE[db_path]; - return new Promise((resolve, reject) => { - db.findOne({ name: data.name }, (err, entry) => { - if ( entry ) { - resolve(entry._id); - } else { - resolve(db.createNewId()); - } - }); - }); + try { + return await db.findOne({ name: data.name }); + } catch(err) { + return db.createNewId(); + } } /** - * Removes invisible whitespace characters and normalises single- and double-quotes. + * Removes invisible whitespace characters and normalizes single- and double-quotes. * @param {string} str The string to be cleaned. * @returns {string} The cleaned string. */ @@ -120,38 +152,46 @@ function cleanString(str) { } /** - * Cleans and formats source JSON files, removing unnecessary permissions and flags - * and adding the proper spacing. + * Cleans and formats source JSON files, removing unnecessary permissions and flags and adding the proper spacing. + * @param {string} [packName] Name of pack to clean. If none provided, all packs will be cleaned. + * @param {string} [entryName] Name of a specific entry to clean. * - * - `gulp cleanPacks` - Clean all source JSON files. - * - `gulp cleanPacks --pack classes` - Only clean the source files for the specified compendium. - * - `gulp cleanPacks --pack classes --name Barbarian` - Only clean a single item from the specified compendium. + * - `npm run build:clean` - Clean all source JSON files. + * - `npm run build:clean -- classes` - Only clean the source files for the specified compendium. + * - `npm run build:clean -- classes Barbarian` - Only clean a single item from the specified compendium. */ -function cleanPacks() { - const packName = parsedArgs.pack; - const entryName = parsedArgs.name?.toLowerCase(); +async function cleanPacks(packName, entryName) { + entryName = entryName?.toLowerCase(); const folders = fs.readdirSync(PACK_SRC, { withFileTypes: true }).filter(file => file.isDirectory() && ( !packName || (packName === file.name) ) ); - const packs = folders.map(folder => { - logger.info(`Cleaning pack ${folder.name}`); - return gulp.src(path.join(PACK_SRC, folder.name, "/**/*.json")) - .pipe(through2.obj(async (file, enc, callback) => { - const json = JSON.parse(file.contents.toString()); - const name = json.name.toLowerCase(); - if ( entryName && (entryName !== name) ) return callback(null, file); - cleanPackEntry(json); - if ( !json._id ) json._id = await determineId(json, folder.name); - fs.rmSync(file.path, { force: true }); - fs.writeFileSync(file.path, `${JSON.stringify(json, null, 2)}\n`, { mode: 0o664 }); - callback(null, file); - })); - }); + /** + * Walk through directories to find JSON files. + * @param {string} directoryPath + * @yields {string} + */ + async function* _walkDir(directoryPath) { + const directory = await readdir(directoryPath, { withFileTypes: true }); + for ( const entry of directory ) { + const entryPath = path.join(directoryPath, entry.name); + if ( entry.isDirectory() ) yield* _walkDir(entryPath); + else if ( path.extname(entry.name) === ".json" ) yield entryPath; + } + } - return mergeStream(packs); + for ( const folder of folders ) { + logger.info(`Cleaning pack ${folder.name}`); + for await ( const src of _walkDir(path.join(PACK_SRC, folder.name)) ) { + const json = JSON.parse(await readFile(src, { encoding: "utf8" })); + if ( entryName && (entryName !== json.name.toLowerCase()) ) continue; + cleanPackEntry(json); + if ( !json._id ) json._id = await determineId(json, folder.name); + fs.rmSync(src, { force: true }); + writeFile(src, `${JSON.stringify(json, null, 2)}\n`, { mode: 0o664 }); + } + } } -export const clean = cleanPacks; /* ----------------------------------------- */ @@ -160,38 +200,26 @@ export const clean = cleanPacks; /** * Compile the source JSON files into compendium packs. + * @param {string} [packName] Name of pack to compile. If none provided, all packs will be packed. + * @param {object} [options={}] + * @param {boolean} [options.nedb] Compile into NeDB? * - * - `gulp compilePacks` - Compile all JSON files into their NEDB files. - * - `gulp compilePacks --pack classes` - Only compile the specified pack. + * - `npm run build:db` - Compile all JSON files into their NEDB files. + * - `npm run build:db -- classes` - Only compile the specified pack. */ -function compilePacks() { - const packName = parsedArgs.pack; +async function compilePacks(packName, options={}) { // Determine which source folders to process const folders = fs.readdirSync(PACK_SRC, { withFileTypes: true }).filter(file => file.isDirectory() && ( !packName || (packName === file.name) ) ); - const packs = folders.map(folder => { - const filePath = path.join(PACK_DEST, `${folder.name}.db`); - fs.rmSync(filePath, { force: true }); - const db = fs.createWriteStream(filePath, { flags: "a", mode: 0o664 }); - const data = []; + for ( const folder of folders ) { + const src = path.join(PACK_SRC, folder.name); + const dest = path.join(PACK_DEST, `${folder.name}${options.nedb ? ".db" : ""}`); logger.info(`Compiling pack ${folder.name}`); - return gulp.src(path.join(PACK_SRC, folder.name, "/**/*.json")) - .pipe(through2.obj((file, enc, callback) => { - const json = JSON.parse(file.contents.toString()); - cleanPackEntry(json); - data.push(json); - callback(null, file); - }, callback => { - data.sort((lhs, rhs) => lhs._id > rhs._id ? 1 : -1); - data.forEach(entry => db.write(`${JSON.stringify(entry)}\n`)); - callback(); - })); - }); - return mergeStream(packs); + await compilePack(src, dest, { nedb: options.nedb, recursive: true, log: true, transformEntry: cleanPackEntry }); + } } -export const compile = compilePacks; /* ----------------------------------------- */ @@ -200,43 +228,40 @@ export const compile = compilePacks; /** * Extract the contents of compendium packs to JSON files. + * @param {string} [packName] Name of pack to extract. If none provided, all packs will be unpacked. + * @param {string} [entryName] Name of a specific entry to extract. + * @param {object} [options={}] + * @param {boolean} [options.nedb] Extract from NeDB? * - * - `gulp extractPacks` - Extract all compendium NEDB files into JSON files. - * - `gulp extractPacks --pack classes` - Only extract the contents of the specified compendium. - * - `gulp extractPacks --pack classes --name Barbarian` - Only extract a single item from the specified compendium. + * - `npm build:json - Extract all compendium NEDB files into JSON files. + * - `npm build:json -- classes` - Only extract the contents of the specified compendium. + * - `npm build:json -- classes Barbarian` - Only extract a single item from the specified compendium. */ -function extractPacks() { - const packName = parsedArgs.pack ?? "*"; - const entryName = parsedArgs.name?.toLowerCase(); - const packs = gulp.src(`${PACK_DEST}/**/${packName}.db`) - .pipe(through2.obj((file, enc, callback) => { - const filename = path.parse(file.path).name; - const folder = path.join(PACK_SRC, filename); - if ( !fs.existsSync(folder) ) fs.mkdirSync(folder, { recursive: true, mode: 0o775 }); - - const db = new Datastore({ filename: file.path, autoload: true }); - db.loadDatabase(); - - db.find({}, (err, entries) => { - entries.forEach(entry => { - const name = entry.name.toLowerCase(); - if ( entryName && (entryName !== name) ) return; - cleanPackEntry(entry); - const output = `${JSON.stringify(entry, null, 2)}\n`; - const outputName = name.replace("'", "").replace(/[^a-z0-9]+/gi, " ").trim().replace(/\s+|-{2,}/g, "-"); - const subfolder = path.join(folder, _getSubfolderName(entry, filename)); - if ( !fs.existsSync(subfolder) ) fs.mkdirSync(subfolder, { recursive: true, mode: 0o775 }); - fs.writeFileSync(path.join(subfolder, `${outputName}.json`), output, { mode: 0o664 }); - }); - }); - - logger.info(`Extracting pack ${filename}`); - callback(null, file); - })); - - return mergeStream(packs); +async function extractPacks(packName, entryName, options) { + entryName = entryName?.toLowerCase(); + + // Load system.json. + const system = JSON.parse(fs.readFileSync("./system.json", { encoding: "utf8" })); + + // Determine which source packs to process. + const packs = system.packs.filter(p => !packName || p.name === packName); + + for ( const packInfo of packs ) { + const dest = path.join(PACK_SRC, packInfo.name); + logger.info(`Extracting pack ${packInfo.name}`); + await extractPack(packInfo.path, dest, { + nedb: options.nedb, log: true, documentType: packInfo.type, transformEntry: entry => { + if ( entryName && (entryName !== entry.name.toLowerCase()) ) return false; + cleanPackEntry(entry); + }, transformName: entry => { + const name = entry.name.toLowerCase(); + const outputName = name.replace("'", "").replace(/[^a-z0-9]+/gi, " ").trim().replace(/\s+|-{2,}/g, "-"); + const subfolder = _getSubfolderName(entry, packInfo.name); + return path.join(subfolder, `${outputName}.json`); + } + }); + } } -export const extract = extractPacks; /** @@ -253,7 +278,7 @@ function _getSubfolderName(data, pack) { if ( (data.type === "consumable") && data.system.consumableType ) return data.system.consumableType; return data.type; - // Monsters should be grouped by CR + // Monsters should be grouped by type case "monsters": if ( !data.system?.details?.type?.value ) return ""; return data.system.details.type.value;
${this.configuration.hint}
${Trait.localizedList({ + grants: this.configuration.grants, choices: this.configuration.choices + })}
${game.i18n.localize("DND5E.ScrollRequiresConcentration")}
As an acolyte, you command the respect of those who share your faith, and you can perform the religious ceremonies of your deity. You and your adventuring companions can expect to receive free healing and care at a temple, shrine, or other established presence of your faith, though you must provide any material components needed for spells. Those who share your religion will support you (but only you) at a modest lifestyle.
You might also have ties to a specific temple dedicated to your chosen deity or pantheon, and you have a residence there. This could be the temple where you used to serve, if you remain on good terms with it, or a temple where you have found a new home. While near your temple, you can call upon the priests for assistance, provided the assistance you ask for is not hazardous and you remain in good standing with your temple.
You have spent your life in the service of a temple to a specific god or pantheon of gods. You act as an intermediary between the realm of the holy and the mortal world, performing sacred rites and offering sacrifices in order to conduct worshipers into the presence of the divine. You are not necessarily a cleric—performing sacred rites is not the same thing as channeling divine power.
Choose a god, a pantheon of gods, or some other quasi-divine being from among those listed in @UUID[Compendium.dnd5e.rules.udVPA9JW5wy5t3G5.JournalEntryPage.2lysbY50fgv1R3v7]{Fantasy-Historical Pantheons}, and work with your DM to detail the nature of your religious service. Were you a lesser functionary in a temple, raised from childhood to assist the priests in the sacred rites? Or were you a high priest who suddenly experienced a call to serve your god in a different way? Perhaps you were the leader of a small cult outside of any established temple structure, or even an occult group that served a fiendish master that you now deny.
Skill Proficiencies: Insight, Religion
Languages: Two of your choice
Equipment: A holy symbol (a gift to you when you entered the priesthood), a prayer book or prayer wheel, 5 sticks of incense, @Compendium[dnd5e.items.irtqrzaUCeshmTZp]{vestments}, a set of @Compendium[dnd5e.items.8RXjiddJ6VGyE7vB]{common clothes}, and a pouch containing 15 gp.
Feature: @Compendium[dnd5e.backgrounds.64N1NWh9kC1dI7zN]{Shelter of the Faithful}
Acolytes are shaped by their experience in temples or other religious communities. Their study of the history and tenets of their faith and their relationships to temples, shrines, or hierarchies affect their mannerisms and ideals. Their flaws might be some hidden hypocrisy or heretical idea, or an ideal or bond taken to an extreme.
@Compendium[dnd5e.tables.HDzErjwy3TseLOZX]{Personality Traits}
@Compendium[dnd5e.tables.W9xqQZy0Ad0CwkN2]{Ideals}
@Compendium[dnd5e.tables.DZhd8JkjqlpCP8EB]{Bonds}
@Compendium[dnd5e.tables.COIHGOnoJnmXduad]{Flaws}
As a sorcerer, you gain the following class features.
Hit Dice: 1d6 per sorcerer levelHit Points at 1st Level: 6 + your Constitution modifierHit Points at Higher Levels: 1d6 (or 4) + your Constitution modifier per sorcerer level after 1st
Armor: NoneWeapons: Daggers, darts, slings, quarterstaffs, light crossbowsTools: NoneSaving Throws: Constitution, CharismaSkills: Choose two from Arcana, Deception, Insight, Intimidation, Persuasion, and Religion
You start with the following equipment, in addition to the equipment granted by your background:
Different sorcerers claim different origins for their innate magic, such as a draconic bloodline.
@Compendium[dnd5e.subclasses.2nadB2MBSHTQ0kcl]{Draconic Bloodline}
As a monk, you gain the following class features.
Hit Dice: 1d8 per monk levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per monk level after 1st
Armor: NoneWeapons: Simple weapons, shortswordsTools: Choose one type of artisan's tools or one musical instrumentSaving Throws: Strength, DexteritySkills: Choose two from Acrobatics, Athletics, History, Insight, Religion, and Stealth
@Compendium[dnd5e.classfeatures.7flZKruSSu6dHg6D]{Ki-Empowered Strikes},
Monastic Tradition feature
Three traditions of monastic pursuit are common in the monasteries scattered across the multiverse. Most monasteries practice one tradition exclusively, but a few honor the three traditions and instruct each monk according to his or her aptitude and interest. All three traditions rely on the same basic techniques, diverging as the student grows more adept. Thus, a monk need choose a tradition only upon reaching 3rd level.
@Compendium[dnd5e.subclasses.IvlpKMXX3PmW1NY2]{Way of the Open Hand}
As a warlock, you gain the following class features.
Hit Dice: 1d8 per warlock levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per warlock level after 1st
Armor: Light armorWeapons: Simple weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two skills from Arcana, Deception, History, Intimidation, Investigation, Nature, and Religion
Each Pact Boon option produces a special creature or an object that reflects your patron's nature.
Pact of the Chain. Your familiar is more cunning than a typical familiar. Its default form can be a reflection of your patron, with imps and quasits tied to the Fiend.
Pact of the Blade. If you serve the Fiend, your weapon could be an axe made of black metal and adorned with decorative flames.
Pact of the Tome. Your Book of Shadows could be a weighty tome bound in demon hide studded with iron, holding spells of conjuration and a wealth of forbidden lore about the sinister regions of the cosmos, a gift of the Fiend.
The beings that serve as patrons for warlocks are mighty inhabitants of other planes of existence—not gods, but almost godlike in their power. Various patrons give their warlocks access to different powers and invocations, and expect significant favors in return.
Some patrons collect warlocks, doling out mystic knowledge relatively freely or boasting of their ability to bind mortals to their will. Other patrons bestow their power only grudgingly, and might make a pact with only one warlock. Warlocks who serve the same patron might view each other as allies, siblings, or rivals.
@Compendium[dnd5e.subclasses.WPFVBg589uI8iOMH]{The Fiend}
As a fighter, you gain the following class features.
Hit Dice: 1d10 per fighter levelHit Points at 1st Level: 10 + your Constitution modifierHit Points at Higher Levels: 1d10 (or 6) + your Constitution modifier per fighter level after 1st
Armor: All armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, ConstitutionSkills: Choose two skills from Acrobatics, Animal Handling, Athletics, History, Insight, Intimidation, Perception, and Survival
Different fighters choose different approaches to perfecting their fighting prowess. The martial archetype you choose to emulate reflects your approach.
@Compendium[dnd5e.subclasses.sprHbe7cRg9osTzf]{Champion}
As a bard, you gain the following class features.
Hit Dice: 1d8 per bard levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per bard level after 1st
Armor: Light armorWeapons: Simple weapons, hand crossbows, longswords, rapiers, shortswordsTools: Three musical instruments of your choiceSaving Throws: Dexterity, CharismaSkills: Choose any three
@Compendium[dnd5e.subclasses.MNvsEc4D2ccX7dQT]{College of Lore}
As a ranger, you gain the following class features.
Hit Dice: 1d10 per ranger levelHit Points at 1st Level: 10 + your Constitution modifierHit Points at Higher Levels: 1d10 (or 6) + your Constitution modifier per ranger level after 1st
Armor: Light armor, medium armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, DexteritySkills: Choose three from Animal Handling, Athletics, Insight, Investigation, Nature, Perception, Stealth, and Survival
A classic expression of the ranger ideal is the Hunter.
@Compendium[dnd5e.subclasses.uqd2q6WjVfcsaaGb]{Hunter}
As a paladin, you gain the following class features.
Hit Dice: 1d10 per paladin levelHit Points at 1st Level: 10 + your Constitution modifierHit Points at Higher Levels: 1d10 (or 6) + your Constitution modifier per paladin level after 1st
Armor: All armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two from Athletics, Insight, Intimidation, Medicine, Persuasion, and Religion
Becoming a paladin involves taking vows that commit the paladin to the cause of righteousness, an active path of fighting wickedness. The final oath, taken when he or she reaches 3rd level, is the culmination of all the paladin's training. Some characters with this class don't consider themselves true paladins until they have reached 3rd level and made this oath. For others, the actual swearing of the oath is a formality, an official stamp on what has always been true in the paladin's heart.
@Compendium[dnd5e.subclasses.sZ86mbX8D5PfYuhl]{Oath of Devotion}
A paladin tries to hold to the highest standards of conduct, but even the most virtuous paladin is fallible. Sometimes the right path proves too demanding, sometimes a situation calls for the lesser of two evils, and sometimes the heat of emotion causes a paladin to transgress his or her oath.
A paladin who has broken a vow typically seeks absolution from a cleric who shares his or her faith or from another paladin of the same order. The paladin might spend an allnight vigil in prayer as a sign of penitence, or undertake a fast or similar act of self-denial. After a rite of confession and forgiveness, the paladin starts fresh.
If a paladin willfully violates his or her oath and shows no sign of repentance, the consequences can be more serious. At the GM's discretion, an impenitent paladin might be forced to abandon this class and adopt another.
As a barbarian, you gain the following class features.
Hit Dice: 1d12 per barbarian levelHit Points at 1st Level: 12 + your Constitution modifierHit Points at Higher Levels: 1d12 (or 7) + your Constitution modifier per barbarian level after 1st
Armor: Light armor, medium armor, shieldsWeapons: Simple weapons, martial weaponsTools: NoneSaving Throws: Strength, ConstitutionSkills: Choose two from Animal Handling, Athletics, Intimidation, Nature, Perception, and Survival
@Compendium[dnd5e.subclasses.uGuDQX9Mz3oHNHkU]{Path of the Berserker}
As a cleric, you gain the following class features.
Hit Dice: 1d8 per cleric levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per cleric level after 1st
Armor: Light armor, medium armor, shieldsWeapons: Simple weaponsTools: NoneSaving Throws: Wisdom, CharismaSkills: Choose two from History, Insight, Medicine, Persuasion, and Religion
@Compendium[dnd5e.subclasses.H3RYLGqCiqm8BP3q]{Life Domain}
As a wizard, you gain the following class features.
Hit Dice: 1d6 per wizard levelHit Points at 1st Level: 6 + your Constitution modifierHit Points at Higher Levels: 1d6 (or 4) + your Constitution modifier per wizard level after 1st
Armor: NoneWeapons: Daggers, darts, slings, quarterstaffs, light crossbowsTools: NoneSaving Throws: Intelligence, WisdomSkills: Choose two from Arcana, History, Insight, Investigation, Medicine, and Religion
The spells that you add to your spellbook as you gain levels reflect the arcane research you conduct on your own, as well as intellectual breakthroughs you have had about the nature of the multiverse. You might find other spells during your adventures. You could discover a spell recorded on a scroll in an evil wizard's chest, for example, or in a dusty tome in an ancient library.
Copying a Spell into the Book. When you find a wizard spell of 1st level or higher, you can add it to your spellbook if it is of a spell level you can prepare and if you can spare the time to decipher and copy it.
Copying that spell into your spellbook involves reproducing the basic form of the spell, then deciphering the unique system of notation used by the wizard who wrote it. You must practice the spell until you understand the sounds or gestures required, then transcribe it into your spellbook using your own notation.
For each level of the spell, the process takes 2 hours and costs 50 gp. The cost represents material components you expend as you experiment with the spell to master it, as well as the fine inks you need to record it. Once you have spent this time and money, you can prepare the spell just like your other spells.
Replacing the Book. You can copy a spell from your own spellbook into another book—for example, if you want to make a backup copy of your spellbook. This is just like copying a new spell into your spellbook, but faster and easier, since you understand your own notation and already know how to cast the spell. You need spend only 1 hour and 10 gp for each level of the copied spell.
If you lose your spellbook, you can use the same procedure to transcribe the spells that you have prepared into a new spellbook. Filling out the remainder of your spellbook requires you to find new spells to do so, as normal. For this reason, many wizards keep backup spellbooks in a safe place.
The Book's Appearance. Your spellbook is a unique compilation of spells, with its own decorative flourishes and margin notes. It might be a plain, functional leather volume that you received as a gift from your master, a finely bound gilt-edged tome you found in an ancient library, or even a loose collection of notes scrounged together after you lost your previous spellbook in a mishap.
The study of wizardry is ancient, stretching back to the earliest mortal discoveries of magic. It is firmly established in fantasy gaming worlds, with various traditions dedicated to its complex study.
The most common arcane traditions in the multiverse revolve around the schools of magic. Wizards through the ages have cataloged thousands of spells, grouping them into eight categories called schools. In some places, these traditions are literally schools. In other institutions, the schools are more like academic departments, with rival faculties competing for students and funding. Even wizards who train apprentices in the solitude of their own towers use the division of magic into schools as a learning device, since the spells of each school require mastery of different techniques.
@Compendium[dnd5e.subclasses.Ye5f3FReEnuXfi0y]{School of Evocation}
As a rogue, you have the following class features.
Hit Dice: 1d8 per rogue levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per rogue level after 1st
Armor: Light armorWeapons: Simple weapons, hand crossbows, longswords, rapiers, shortswordsTools: Thieves' toolsSaving Throws: Dexterity, IntelligenceSkills: Choose four from Acrobatics, Athletics, Deception, Insight, Intimidation, Investigation, Perception, Performance, Persuasion, Sleight of Hand, and Stealth
Rogues have many features in common, including their emphasis on perfecting their skills, their precise and deadly approach to combat, and their increasingly quick reflexes. But different rogues steer those talents in varying directions, embodied by the rogue archetypes. Your choice of archetype is a reflection of your focus—not necessarily an indication of your chosen profession, but a description of your preferred techniques.
@Compendium[dnd5e.subclasses.k8iuefRorWOjb9gR]{Thief}
As a druid, you gain the following class features.
Hit Dice: 1d8 per druid levelHit Points at 1st Level: 8 + your Constitution modifierHit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per druid level after 1st
Armor: Light armor, medium armor, shields (druids will not wear armor or use shields made of metal)Weapons: Clubs, daggers, darts, javelins, maces, quarterstaffs, scimitars, sickles, slings, spearsTools: Herbalism kitSaving Throws: Intelligence, WisdomSkills: Choose two from Arcana, Animal Handling, Insight, Medicine, Nature, Perception, Religion, and Survival
A druid holds certain plants to be sacred, particularly alder, ash, birch, elder, hazel, holly, juniper, mistletoe, oak, rowan, willow, and yew. Druids often use such plants as part of a spellcasting focus, incorporating lengths of oak or yew or sprigs of mistletoe.
Similarly, a druid uses such woods to make other objects, such as weapons and shields. Yew is associated with death and rebirth, so weapon handles for scimitars or sickles might be fashioned from it. Ash is associated with life and oak with strength. These woods make excellent hafts or whole weapons, such as clubs or quarterstaffs, as well as shields. Alder is associated with air, and it might be used for thrown weapons, such as darts or javelins.
Druids from regions that lack the plants described here have chosen other plants to take on similar uses. For instance, a druid of a desert region might value the yucca tree and cactus plants.
Some druids venerate the forces of nature themselves, but most druids are devoted to one of the many nature deities worshiped in the multiverse (the lists of gods in @UUID[Compendium.dnd5e.rules.udVPA9JW5wy5t3G5]{Appendix B} include many such deities). The worship of these deities is often considered a more ancient tradition than the faiths of clerics and urbanized peoples.
@Compendium[dnd5e.subclasses.4Ae2SPZRXEVbVs0M]{Circle of the Land}
Starting at 2nd level, your quick thinking and agility allow you to move and act quickly. You can take a bonus action on each of your turns in combat. This action can be used only to take the Dash, Disengage, or Hide action.
When a creature you can see attacks a target other than you that is within 5 feet of you, you can use your reaction to impose disadvantage on the attack roll. You must be wielding a shield.
At 20th level, you can draw on your inner reserve of mystical power while entreating your patron to regain expended spell slots. You can spend 1 minute entreating your patron for aid to regain all your expended spell slots from your Pact Magic feature. Once you regain spell slots with this feature, you must finish a long rest before you can do so again.
Beginning at 6th level, you can't be charmed or frightened while raging. If you are charmed or frightened when you enter your @Compendium[dnd5e.classfeatures.VoR0SUrNX5EJVPIO]{Rage}, the effect is suspended for the duration of the rage.
Starting at 2nd level, your training allows you to harness the mystic energy of ki. Your access to this energy is represented by a number of ki points. Your monk level equals the number of ki points you have, so a 2nd level monk has 2 ki points, a 16th level monk has 16.
You can spend these points to fuel various ki features. You start knowing three such features: @Compendium[dnd5e.classfeatures.5MwNlVZK7m6VolOH]{Flurry of Blows}, @Compendium[dnd5e.classfeatures.TDglPcxIVEzvVSgK]{Patient Defense}, and @Compendium[dnd5e.classfeatures.yrSFIGTaQOH2PFRI]{Step of the Wind}. You learn more ki features as you gain levels in this class.
When you spend a ki point, it is unavailable until you finish a short or long rest, at the end of which you draw all of your expended ki back into yourself. You must spend at least 30 minutes of the rest meditating to regain your ki points.
Some of your ki features require your target to make a saving throw to resist the feature's effects. The saving throw DC is calculated as follows:
Ki save DC = 8 + your proficiency bonus + your Wisdom modifier
Foundry Note
Use this to track all the various uses of ki for the monk.
You can use your action to make a melee attack against any number of creatures within 5 feet of you, with a separate attack roll for each target.
At 3rd level, you choose an archetype that you strive to emulate, such as the Hunter. Your choice grants you features at 3rd level and again at 7th, 11th, and 15th level.
When you cast @Compendium[dnd5e.spells.Z9p1vezIn95jw1Yw]{Eldritch Blast}, add your Charisma modifier to the damage it deals on a hit.
At 14th level, you gain the ability to sprout a pair of dragon wings from your back, gaining a flying speed equal to your current speed. You can create these wings as a bonus action on your turn. They last until you dismiss them as a bonus action on your turn.
You can't manifest your wings while wearing armor unless the armor is made to accommodate them, and clothing not made to accommodate your wings might be destroyed when you manifest them.
At 20th level, you become an unparalleled hunter of your enemies. Once on each of your turns, you can add your Wisdom modifier to the attack roll or the damage roll of an attack you make against one of your favored enemies. You can choose to use this feature before or after the roll, but before any effects of the roll are applied.
Starting at 6th level, moving through nonmagical difficult terrain costs you no extra movement. You can also pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard.
In addition, you have advantage on saving throws against plants that are magically created or manipulated to impede movement, such those created by the @Compendium[dnd5e.spells.gMrWeG8fMDPRFiVe]{Entangle} spell.
When you roll a 1 or 2 on a damage die for an attack you make with a melee weapon that you are wielding with two hands, you can reroll the die and must use the new roll, even if the new roll is a 1 or a 2. The weapon must have the two-handed or versatile property for you to gain this benefit.
Beginning when you reach 5th level, you regain all of your expended uses of @Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiraton} when you finish a short or long rest.
Bardic Inspiration is set to long rest recovery by default. Please edit to short rest upon reaching this level.
Beginning at 18th level, you can use your action to spend 4 ki points to become invisible for 1 minute. During that time, you also have resistance to all damage but force damage.
Additionally, you can spend 8 ki points to cast the @Compendium[dnd5e.spells.TIoadMIsUKD4edXi]{Astral Projection} spell, without needing material components. When you do so, you can't take any other creatures with you.
You can see normally in darkness, both magical and nonmagical, to a distance of 120 feet.
At 1st level, choose two of your skill proficiencies, or one of your skill proficiencies and your proficiency with thieves' tools. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies.
At 6th level, you can choose two more of your proficiencies (in skills or with thieves' tools) to gain this benefit.
The Fiend lets you choose from an expanded list of spells when you learn a warlock spell. The following spells are added to the warlock spell list for you.
Starting at 17th level, when you would normally roll one or more dice to restore hit points with a spell, you instead use the highest number possible for each die. For example, instead of restoring 2d6 hit points to a creature, you restore 12.
Beginning at 1st level, you have significant experience studying, tracking, hunting, and even talking to a certain type of enemy.
Choose a type of favored enemy: aberrations, beasts, celestials, constructs, dragons, elementals, fey, fiends, giants, monstrosities, oozes, plants, or undead. Alternatively, you can select two races of humanoid (such as gnolls and orcs) as favored enemies.
You have advantage on Wisdom (Survival) checks to track your favored enemies, as well as on Intelligence checks to recall information about them.
When you gain this feature, you also learn one language of your choice that is spoken by your favored enemies, if they speak one at all.
You choose one additional favored enemy, as well as an associated language, at 6th and 14th level. As you gain levels, your choices should reflect the types of monsters you have encountered on your adventures.
If you wish, manually edit this entry and make a note of your choices here:
Immediately after you take the Attack action on your turn, you can spend 1 ki point to make two unarmed strikes as a bonus action.
Your tenacity can wear down the most potent foes. When you hit a creature with a weapon attack, the creature takes an extra 1d8 damage if it's below its hit point maximum. You can deal this extra damage only once per turn.
Also at 3rd level, you learn how to use your wit to distract, confuse, and otherwise sap the confidence and competence of others.
When a creature that you can see within 60 feet of you makes an attack roll, an ability check, or a damage roll, you can use your reaction to expend one of your uses of @Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiraton}, rolling a Bardic Inspiration die and subtracting the number rolled from the creature's roll.
You can choose to use this feature after the creature makes its roll, but before the GM determines whether the attack roll or ability check succeeds or fails, or before the creature deals its damage. The creature is immune if it can't hear you or if it's immune to being charmed.
You can cast @Compendium[dnd5e.spells.aL1F8fvYLtNzUbKu]{Speak with Animals} at will, without expending a spell slot.
You can reroll a saving throw that you fail. If you do so, you must use the new roll, and you can't use this feature again until you finish a long rest.
You can use this feature twice between long rests starting at 13th level and three times between long rests starting at 17th level.
You can use your action to touch a willing humanoid and perceive through its senses until the end of your next turn. As long as the creature is on the same plane of existence as you, you can use your action on subsequent turns to maintain this connection, extending the duration until the end of your next turn. While perceiving through the other creature's senses, you benefit from any special senses possessed by that creature, and you are blinded and deafened to your own surroundings.
When you choose this domain at 1st level, you gain proficiency with heavy armor.
Beginning at 2nd level, you can create pockets of relative safety within the effects of your evocation spells. When you cast an evocation spell that affects other creatures that you can see, you can choose a number of them equal to 1 + the spell's level. The chosen creatures automatically succeed on their saving throws against the spell, and they take no damage if they would normally take half damage on a successful save.
Beginning at 14th level, your mastery of ki grants you proficiency in all saving throws. Additionally, whenever you make a saving throw and fail, you can spend 1 ki point to reroll it and take the second result.
Beginning at 10th level, you can add your Intelligence modifier to one damage roll of any wizard evocation spell you cast.
Starting at 6th level, your unarmed strikes count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.
When an attacker that you can see hits you with an attack, you can use your reaction to halve the attack's damage against you.
Beginning when you select this school at 2nd level, the gold and time you must spend to copy an evocation spell into your spellbook is halved.
At 11th level, you gain one of the following features of your choice.
@UUID[Compendium.dnd5e.classfeatures.l7W6JB9yWLLLtQKP]{Volley}
@UUID[Compendium.dnd5e.classfeatures.1DY8w3CXeD7PHDXF]{Whirlwind Attack}
At 3rd level, you choose an archetype that you emulate in the exercise of your rogue abilities, such as Thief. Your archetype choice grants you features at 3rd level and then again at 9th, 13th, and 17th level.
Your oath allows you to channel divine energy to fuel magical effects. Each Channel Divinity option provided by your oath explains how to use it.
When you use your Channel Divinity, you choose which option to use. You must then finish a short or long rest to use your Channel Divinity again.
Some Channel Divinity effects require saving throws. When you use such an effect from this class, the DC equals your paladin spell save DC.
Use this to track all the various uses of Channel Divinity for the paladin.
In your study of occult lore, you have unearthed eldritch invocations, fragments of forbidden knowledge that imbue you with an abiding magical ability.
At 2nd level, you gain two eldritch invocations of your choice. When you gain certain warlock levels, you gain additional invocations of your choice, as shown in the Invocations Known column in the class table.
Additionally, when you gain a level in this class, you can choose one of the invocations you know and replace it with another invocation that you could learn at that level.
If an eldritch invocation has prerequisites, you must meet them to learn it. You can learn the invocation at the same time that you meet its prerequisites. A level prerequisite refers to your level in this class.
You can drag your choices onto your character sheet and it will automatically update.
You gain a +2 bonus to attack rolls you make with ranged weapons
You are particularly familiar with one type of natural environment and are adept at traveling and surviving in such regions. Choose one type of favored terrain: arctic, coast, desert, forest, grassland, mountain, or swamp. When you make an Intelligence or Wisdom check related to your favored terrain, your proficiency bonus is doubled if you are using a skill that you're proficient in.
While traveling for an hour or more in your favored terrain, you gain the following benefits:
You choose additional favored terrain types at 6th and 10th level.
If it would be helpful, manually edit this entry and make a note of your choices here:
You can cast @Compendium[dnd5e.spells.ZrTc23tToJ0JpH2h]{Jump} on yourself at will, without expending a spell slot or material components.
Starting at 10th level, you can choose one damage type when you finish a short or long rest. You gain resistance to that damage type until you choose a different one with this feature. Damage from magical weapons or silver weapons ignores this resistance.
At 3rd level, you gain the ability to twist your spells to suit your needs. You gain two of the following Metamagic options of your choice. You gain another one at 10th and 17th level. You can use only one Metamagic option on a spell when you cast it, unless otherwise noted.
@UUID[Compendium.dnd5e.classfeatures.zElYrOcCFFMhB6Xl]{Careful Spell}
@UUID[Compendium.dnd5e.classfeatures.DZpAa3LzMNBexbmX]{Distant Spell}
@UUID[Compendium.dnd5e.classfeatures.IWpe0Y9uAStHGiH1]{Empowered Spell}
@UUID[Compendium.dnd5e.classfeatures.tQxlKyAx9sgPrbgj]{Extended Spell}
@UUID[Compendium.dnd5e.classfeatures.tNG2qi9zhmXEkecA]{Heightened Spell}
@UUID[Compendium.dnd5e.classfeatures.nViGf6bZ6DQAJhkw]{Quickened Spell}
@UUID[Compendium.dnd5e.classfeatures.fXa0DMhoVLtbBu9l]{Subtle Spell}
@UUID[Compendium.dnd5e.classfeatures.Qb391hakCfmH4w8p]{Twinned Spell}
You can drag your choices from the above onto your character sheet and it will automatically update.
You can use your action to create a pact weapon in your empty hand. You can choose the form that this melee weapon takes each time you create it. You are proficient with it while you wield it. This weapon counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.
Your pact weapon disappears if it is more than 5 feet away from you for 1 minute or more. It also disappears if you use this feature again, if you dismiss the weapon (no action required), or if you die.
You can transform one magic weapon into your pact weapon by performing a special ritual while you hold the weapon. You perform the ritual over the course of 1 hour, which can be done during a short rest. You can then dismiss the weapon, shunting it into an extradimensional space, and it appears whenever you create your pact weapon thereafter. You can't affect an artifact or a sentient weapon in this way. The weapon ceases being your pact weapon if you die, if you perform the 1-hour ritual on a different weapon, or if you use a 1-hour ritual to break your bond to it. The weapon appears at your feet if it is in the extradimensional space when the bond breaks.
When you reach 2nd level, you choose an arcane tradition, shaping your practice of magic through one of eight schools, such as Evocation.
Your choice grants you features at 2nd level and again at 6th, 10th, and 14th level.
At 20th level, as an action, you can emanate an aura of sunlight. For 1 minute, bright light shines from you in a 30-foot radius, and dim light shines 30 feet beyond that. Whenever an enemy creature starts its turn in the bright light, the creature takes 10 radiant damage.
In addition, for the duration, you have advantage on saving throws against spells cast by fiends or undead.
Once you use this feature, you can't use it again until you finish a long rest.
Starting at 8th level, moving through nonmagical difficult terrain costs you no extra movement. You can also pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard.
Once on each of your turns when you make a weapon attack, you can make another attack with the same weapon against a different creature that is within 5 feet of the original target and within range of your weapon.
You can now inscribe magical rituals in your Book of Shadows. Choose two 1st-level spells that have the ritual tag from any class's spell list (the two needn't be from the same list). The spells appear in the book and don't count against the number of spells you know. With your Book of Shadows in hand, you can cast the chosen spells as rituals. You can't cast the spells except as rituals, unless you've learned them by some other means. You can also cast a warlock spell you know as a ritual if it has the ritual tag.
On your adventures, you can add other ritual spells to your Book of Shadows. When you find such a spell, you can add it to the book if the spell's level is equal to or less than half your warlock level (rounded up) and if you can spare the time to transcribe the spell. For each level of the spell, the transcription process takes 2 hours and costs 50 gp for the rare inks needed to inscribe it.
Starting when you choose this path at 3rd level, you can go into a frenzy when you @Compendium[dnd5e.classfeatures.VoR0SUrNX5EJVPIO]{Rage}. If you do so, for the duration of your rage you can make a single melee weapon attack as a bonus action on each of your turns after this one. When your rage ends, you suffer one level of exhaustion (as described in appendix A).
Beginning at 1st level, you know how to strike subtly and exploit a foe's distraction. Once per turn, you can deal an extra 1d6 damage to one creature you hit with an attack if you have advantage on the attack roll. The attack must use a finesse or a ranged weapon.
You don't need advantage on the attack roll if another enemy of the target is within 5 feet of it, that enemy isn't incapacitated, and you don't have disadvantage on the attack roll.
When you cast a spell that has a range of 5 feet or greater, you can spend 1 sorcery point to double the range of the spell.
When you cast a spell that has a range of touch, you can spend 1 sorcery point to make the range of the spell 30 feet.
Starting at 14th level, you can use the Hide action as a bonus action on your turn. Also, you can't be tracked by nonmagical means, unless you choose to leave a trail.
You can cast @Compendium[dnd5e.spells.yqUDoxk4x0NWG5Bz]{Slow} once using a warlock spell slot. You can't do so again until you finish a long rest.
Prerequisite: Strength 13 or higher
You've developed the skills necessary to hold your own in close-quarters grappling.
You gain the following benefits:
The presence of strong evil registers on your senses like a noxious odor, and powerful good rings like heavenly music in your ears. As an action, you can open your awareness to detect such forces. Until the end of your next turn, you know the location of any celestial, fiend, or undead within 60 feet of you that is not behind total cover. You know the type (celestial, fiend, or undead) of any being whose presence you sense, but not its identity (the vampire Count Strahd von Zarovich, for instance). Within the same radius, you also detect the presence of any place or object that has been consecrated or desecrated, as with the @Compendium[dnd5e.spells.SLxA9QhrggTz0taU]{Hallow} spell.
You can use this feature a number of times equal to 1 + your Charisma modifier. When you finish a long rest, you regain all expended uses.
At 1st level, you choose one type of dragon as your ancestor. The damage type associated with each dragon is used by features you gain later.
You can speak, read, and write Draconic. Additionally, whenever you make a Charisma check when interacting with dragons, your proficiency bonus is doubled if it applies to the check.
Starting at 9th level, you have advantage on a Dexterity (Stealth) check if you move no more than half your speed on the same turn.
When you reach 14th level, creatures of the natural world sense your connection to nature and become hesitant to attack you.
When a beast or plant creature attacks you, that creature must make a Wisdom saving throw against your druid spell save DC. On a failed save, the creature must choose a different target, or the attack automatically misses. On a successful save, the creature is immune to this effect for 24 hours.
The creature is aware of this effect before it makes its attack against you.
At 20th level, you regain 4 expended sorcery points whenever you finish a short rest.
By 11th level, you are so suffused with righteous might that all your melee weapon strikes carry divine power with them.
Whenever you hit a creature with a melee weapon, the creature takes an extra 1d8 radiant damage. If you also use your @Compendium[dnd5e.classfeatures.ySMPQ6zNSlvkrl2f]{Divine Smite} with an attack, you add this damage to the extra damage of your Divine Smite.
When you choose this archetype at 3rd level, you gain the ability to climb faster than normal; climbing no longer costs you extra movement.
In addition, when you make a running jump, the distance you cover increases by a number of feet equal to your Dexterity modifier.
Starting at 11th level, your rage can keep you fighting despite grievous wounds.
If you drop to 0 hit points while you're raging and don't die outright, you can make a DC 10 Constitution saving throw. If you succeed, you drop to 1 hit point instead.
Each time you use this feature after the first, the DC increases by 5. When you finish a short or long rest, the DC resets to 10.
At 20th level, when you roll initiative and have no uses of @Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiraton} left, you regain one use.
Beginning at 18th level, you can channel the dread presence of your dragon ancestor, causing those around you to become awestruck or frightened. As an action, you can spend 5 sorcery points to draw on this power and exude an aura of awe or fear (your choice) to a distance of 60 feet. For 1 minute or until you lose your concentration (as if you were casting a concentration spell), each hostile creature that starts its turn in this aura must succeed on a Wisdom saving throw or be charmed (if you chose awe) or frightened (if you chose fear) until the aura ends. A creature that succeeds on this saving throw is immune to your aura for 24 hours.
You adopt a particular style of fighting as your specialty. Choose one of the following options from the appropriate class list. You can't take a Fighting Style option more than once, even if you later get to choose again.
@Compendium[dnd5e.classfeatures.zSlV0O2rQMdoq6pB]{Defense}
@Compendium[dnd5e.classfeatures.hCop9uJrWhF1QPb4]{Dueling}
@Compendium[dnd5e.classfeatures.3Nc6u9pyStByuJsm]{Great Weapon Fighting}
@Compendium[dnd5e.classfeatures.06NVMYf58Z76O85O]{Protection}
At 3rd level, you delve into the advanced techniques of a bard college of your choice, such as the College of Lore. Your choice grants you features at 3rd level and again at 6th and 14th level.
When you roll damage for a spell, you can spend 1 sorcery point to reroll a number of the damage dice up to your Charisma modifier (minimum of one). You must use the new rolls.
You can use Empowered Spell even if you have already used a different Metamagic option during the casting of the spell.
You learn the @Compendium[dnd5e.spells.JGT5bNqu9REL7Fuz]{Find Familiar} spell and can cast it as a ritual. The spell doesn't count against your number of spells known. When you cast the spell, you can choose one of the normal forms for your familiar or one of the following special forms: @Compendium[dnd5e.monsters.dLQiESMsfsXijD5c]{Imp}, pseudodragon, @Compendium[dnd5e.monsters.bwtkdzavdNHISgp4]{Quasit}, or @Compendium[dnd5e.monsters.MUpBNDoJEr09bLaO]{Sprite}.
Additionally, when you take the Attack action, you can forgo one of your own attacks to allow your familiar to make one attack of its own with its reaction.
At 18th level, you have achieved such mastery over certain spells that you can cast them at will. Choose a 1st-level wizard spell and a 2nd-level wizard spell that are in your spellbook. You can cast those spells at their lowest level without expending a spell slot when you have them prepared. If you want to cast either spell at a higher level, you must expend a spell slot as normal.
By spending 8 hours in study, you can exchange one or both of the spells you chose for different spells of the same levels.
Starting at 1st level, when you reduce a hostile creature to 0 hit points, you gain temporary hit points equal to your Charisma modifier + your warlock level (minimum of 1).
Beginning at 4th level, you can use your reaction when you fall to reduce any falling damage you take by an amount equal to five times your monk level.
When you are in an area of dim light or darkness, you can use your action to become invisible until you move or take an action or a reaction.
Your speed increases by 10 feet while you aren't wearing heavy armor.
You can cast @Compendium[dnd5e.spells.P6f1PPKPd9BCb742]{Compulsion} once using a warlock spell slot. You can't do so again until you finish a long rest.
Beginning at 18th level, you are so evasive that attackers rarely gain the upper hand against you. No attack roll has advantage against you while you aren't incapacitated.
Beginning at 9th level, you can roll one additional weapon damage die when determining the extra damage for a critical hit with a melee attack. This increases to two additional dice at 13th level and three additional dice at 17th level.
At 2nd level, you tap into a deep wellspring of magic within yourself. This wellspring is represented by sorcery points, which allow you to create a variety of magical effects.
You have 2 sorcery points, and you gain more as you reach higher levels. Your sorcerer level equals the number of sorcery points you have, so a 4th level sorcerer has 4 sorcery points, a 16th level sorcerer has 16. You can never have more sorcery points than your level dictates. You regain all spent sorcery points when you finish a long rest.
You can use your sorcery points to gain additional spell slots, or sacrifice spell slots to gain additional sorcery points. You learn other ways to use your sorcery points as you reach higher levels.
Creating Spell Slots.You can transform unexpended sorcery points into one spell slot as a bonus action on your turn. The Creating Spell Slots table shows the cost of creating a spell slot of a given level. You can create spell slots no higher in level than 5th.
Any spell slot you create with this feature vanishes when you finish a long rest.
Converting a Spell Slot to Sorcery Points. As a bonus action on your turn, you can expend one spell slot and gain a number of sorcery points equal to the slot's level.
Use this to track all the various uses of sorcery points for the sorcerer.
When you reach 17th level, you have become adept at laying ambushes and quickly escaping danger. You can take two turns during the first round of any combat. You take your first turn at your normal initiative and your second turn at your initiative minus 10. You can't use this feature when you are surprised.
You know Druidic, the secret language of druids. You can speak the language and use it to leave hidden messages. You and others who know this language automatically spot such a message. Others spot the message's presence with a successful DC 15 Wisdom (Perception) check but can't decipher it without magic.
Starting at 7th level, you and friendly creatures within 10 feet of you can't be charmed while you are conscious.
At 18th level, the range of this aura increases to 30 feet.
Beginning at 10th level, you can use your action to frighten someone with your menacing presence.
When you do so, choose one creature that you can see within 30 feet of you. If the creature can see or hear you, it must succeed on a Wisdom saving throw (DC equal to 8 + your proficiency bonus + your Charisma modifier) or be frightened of you until the end of your next turn. On subsequent turns, you can use your action to extend the duration of this effect on the frightened creature until the end of your next turn. This effect ends if the creature ends its turn out of line of sight or more than 60 feet away from you.
If the creature succeeds on its saving throw, you can't use this feature on that creature again for 24 hours.
As magic flows through your body, it causes physical traits of your dragon ancestors to emerge. At 1st level, your hit point maximum increases by 1 and increases by 1 again whenever you gain a level in this class.
Additionally, parts of your skin are covered by a thin sheen of dragon-like scales. When you aren't wearing armor, your AC equals 13 + your Dexterity modifier.
Your patron gives you a grimoire called a Book of Shadows. When you gain this feature, choose three cantrips from any class's spell list (the three needn't be from the same list). While the book is on your person, you can cast those cantrips at will. They don't count against your number of cantrips known. If they don't appear on the warlock spell list, they are nonetheless warlock spells for you.
If you lose your Book of Shadows, you can perform a 1-hour ceremony to receive a replacement from your patron. This ceremony can be performed during a short or long rest, and it destroys the previous book. The book turns to ash when you die.
You can cast @Compendium[dnd5e.spells.A3q2gTNqG6fvNGrv]{Disguise Self} at will, without expending a spell slot.
Starting at 5th level, when an attacker that you can see hits you with an attack, you can use your reaction to halve the attack's damage against you.
Starting at 5th level, when an undead fails its saving throw against your @Compendium[dnd5e.classfeatures.r91UIgwFdHwkXdia]{Turn Undead} feature, the creature is instantly destroyed if its challenge rating is at or below a certain threshold, as shown in the table below.
By 7th level, your instincts are so honed that you have advantage on initiative rolls.
Additionally, if you are surprised at the beginning of combat and aren't incapacitated, you can act normally on your first turn, but only if you enter your rage before doing anything else on that turn.
By 13th level, you have learned enough about the workings of magic that you can improvise the use of items even when they are not intended for you. You ignore all class, race, and level requirements on the use of magic items.
Starting at 6th level, you can call on your patron to alter fate in your favor. When you make an ability check or a saving throw, you can use this feature to add a d10 to your roll. You can do so after seeing the initial roll but before any of the roll's effects occur.
Once you use this feature, you can't use it again until you finish a short or long rest.
When you reach 10th level, you can't be charmed or frightened by elementals or fey, and you are immune to poison and disease.
Your blessed touch can heal wounds. You have a pool of healing power that replenishes when you take a long rest. With that pool, you can restore a total number of hit points equal to your paladin level × 5.
As an action, you can touch a creature and draw power from the pool to restore a number of hit points to that creature, up to the maximum amount remaining in your pool.
Alternatively, you can expend 5 hit points from your pool of healing to cure the target of one disease or neutralize one poison affecting it. You can cure multiple diseases and neutralize multiple poisons with a single use of Lay on Hands, expending hit points separately for each one.
This feature has no effect on undead and constructs.
You can cast @Compendium[dnd5e.spells.l9Ju5KE7bbn3WpTm]{Hold Monster} at will - targeting a celestial, fiend, or elemental - without expending a spell slot or material components. You must finish a long rest before you can use this invocation on the same creature again.
Beginning at 18th level, if your total for a Strength check is less than your Strength score, you can use that score in place of the total.
At 6th level, you gain the ability to heal yourself. As an action, you can regain hit points equal to three times your monk level. You must finish a long rest before you can use this feature again.
At 18th level, you gain preternatural senses that help you fight creatures you can't see. When you attack a creature you can't see, your inability to see it doesn't impose disadvantage on your attack rolls against it.
You are also aware of the location of any invisible creature within 30 feet of you, provided that the creature isn't hidden from you and you aren't blinded or deafened.
You can cast @Compendium[dnd5e.spells.9hQXdMSmerkTsHDe]{Confusion} once using a warlock spell slot. You can't do so again until you finish a long rest.
You can cast @Compendium[dnd5e.spells.MRxldJd6C4bsBo3O]{Levitate} on yourself at will, without expending a spell slot or material components.
When you cast a spell that targets only one creature and doesn't have a range of self, you can spend a number of sorcery points equal to the spell's level to target a second creature in range with the same spell (1 sorcery point if the spell is a cantrip).
To be eligible, a spell must be incapable of targeting more than one creature at the spell's current level. For example, @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile} and @Compendium[dnd5e.spells.7u2obDvuvtZBkTfq]{Scorching Ray} aren't eligible, but @Compendium[dnd5e.spells.ctW81uiX56xZR2c5]{Ray of Frost} is.
You can cast @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} once using a warlock spell slot. You can't do so again until you finish a long rest.
At 3rd level, your otherworldly patron bestows a gift upon you for your loyal service. You gain one of the following features of your choice.
@UUID[Compendium.dnd5e.classfeatures.9dSSa68mIPoX2ezA]{Pact of the Blade}
@UUID[Compendium.dnd5e.classfeatures.Ic1CSjvbWKudVUv9]{Pact of the Chain}
@UUID[Compendium.dnd5e.classfeatures.MYM908WLZ1lVvA1u]{Pact of the Tome}
Starting at 2nd level, you can throw aside all concern for defense to attack with fierce desperation.
When you make your first attack on your turn, you can decide to attack recklessly. Doing so gives you advantage on melee weapon attack rolls using Strength during this turn, but attack rolls against you have advantage until your next turn.
At 6th level, you gain the ability to use musical notes or words of power to disrupt mind-influencing effects. As an action, you can start a performance that lasts until the end of your next turn. During that time, you and any friendly creatures within 30 feet of you have advantage on saving throws against being frightened or charmed. A creature must be able to hear you to gain this benefit. The performance ends early if you are incapacitated or silenced or if you voluntarily end it (no action required).
While you are not wearing any armor, your Armor Class equals 10 + your Dexterity modifier + your Constitution modifier. You can use a shield and still gain this benefit.
When a Large or larger creature within 5 feet of you hits or misses you with an attack, you can use your reaction to attack that creature immediately after its attack, provided that you can see the creature.
At 8th level, you gain the ability to infuse your weapon strikes with divine energy.
Once on each of your turns when you hit a creature with a weapon attack, you can cause the attack to deal an extra 1d8 radiant damage to the target. When you reach 14th level, the extra damage increases to 2d8.
You can spend 1 ki point to take the Dodge action as a bonus action on your turn.
At 3rd level, you choose a path that shapes the nature of your rage, such as the Path of the Berserker. Your choice grants you features at 3rd level and again at 6th, 10th, and 14th levels.
Beginning at 14th level, you can use your action to end one spell on yourself or on one willing creature that you touch.
You can use this feature a number of times equal to your Charisma modifier (a minimum of once). You regain expended uses when you finish a long rest.
Beginning at 1st Level, while you are wearing no armor and not wielding a Shield, your AC equals 10 + your Dexterity modifier + your Wisdom modifier.
By 15th level, you have acquired greater mental strength. You gain proficiency in Wisdom saving throws.
Starting at 14th level, you can increase the power of your simpler spells. When you cast a wizard spell of 1st through 5th level that deals damage, you can deal maximum damage with that spell.
The first time you do so, you suffer no adverse effect. If you use this feature again before you finish a long rest, you take 2d12 necrotic damage for each level of the spell, immediately after you cast it. Each time you use this feature again before finishing a long rest, the necrotic damage per spell level increases by 1d12. This damage ignores resistance and immunity.
Limited use is to track the first, safe instance of Overchanneling. The damage formula is set to the base default of 2d12. The Versatile roll is set to 1d12 to add any additional damage.
In battle, you fight with primal ferocity. On your turn, you can enter a rage as a bonus action. While raging, you gain the following benefits if you aren't wearing heavy armor:
You have advantage on Strength checks and Strength saving throws.
When you make a melee weapon attack using Strength, you gain a bonus to the damage roll that increases as you gain levels as a barbarian, as shown in the Rage Damage column of the Barbarian table.
You have resistance to bludgeoning, piercing, and slashing damage.
If you are able to cast spells, you can't cast them or concentrate on them while raging.
Your rage lasts for 1 minute. It ends early if you are knocked unconscious or if your turn ends and you haven't attacked a hostile creature since your last turn or taken damage since then. You can also end your rage on your turn as a bonus action.
Once you have raged the number of times shown for your barbarian level in the Rages column of the Barbarian table, you must finish a long rest before you can rage again.
At 7th level, you gain on of the following features of your choice.
@Compendium[dnd5e.classfeatures.pAQMJU5R9SGUmzHU]{Escape the Horde}
@Compendium[dnd5e.classfeatures.slelvrm83v9UAKZU]{Multiattack Defense}
@Compendium[dnd5e.classfeatures.zbHu0NvHuII8lR7W]{Steel Will}
You can cast @Compendium[dnd5e.spells.04nMsTWkIFvkbXlY]{Polymorph} once using a warlock spell slot. You can't do so again until you finish a long rest.
When a hostile creature misses you with a melee attack, you can use your reaction to force that creature to repeat the same attack against another creature (other than itself) of your choice.
Starting at 13th level, you learn to touch the ki of other minds so that you understand all spoken languages. Moreover, any creature that can understand a language can understand what you say.
You can attack twice, instead of once, whenever you take the Attack action on your turn.
By 11th level, you have refined your chosen skills until they approach perfection. Whenever you make an ability check that lets you add your proficiency bonus, you can treat a d20 roll of 9 or lower as a 10.
Your weapon attacks score a critical hit on a roll of 19 or 20.
Your mystical connection to the land infuses you with the ability to cast certain spells. At 3rd, 5th, 7th, and 9th level you gain access to circle spells connected to the land where you became a druid. Choose that land—arctic, coast, desert, forest, grassland, mountain, or swamp—and consult the associated list of spells.
Once you gain access to a circle spell, you always have it prepared, and it doesn't count against the number of spells you can prepare each day. If you gain access to a spell that doesn't appear on the druid spell list, the spell is nonetheless a druid spell for you.
At 2nd level, you gain the ability to channel divine energy directly from your deity, using that energy to fuel magical effects. You start with two such effects: Turn Undead and an effect determined by your domain. Some domains grant you additional effects as you advance in levels, as noted in the domain description.
When you use your Channel Divinity, you choose which effect to create. You must then finish a short or long rest to use your Channel Divinity again. Some Channel Divinity effects require saving throws. When you use such an effect from this class, the DC equals your cleric spell save DC.
Beginning at 6th level, you can use your Channel Divinity twice between rests, and beginning at 18th level, you can use it three times between rests. When you finish a short or long rest, you regain your expended uses.
Use this to track all the various uses of Channel Divinity for the cleric.
Beginning at 15th level, you are always under the effects of a @Compendium[dnd5e.spells.xmDBqZhRVrtLP8h2]{Protection from Evil and Good} spell.
As an action, you present your holy symbol and speak a prayer censuring fiends and undead, using your Channel Divinity. Each fiend or undead that can see or hear you within 30 feet of you must make a Wisdom saving throw. If the creature fails its saving throw, it is turned for 1 minute or until it takes damage.
A turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action.
Starting at 7th level, you can use your action to end one effect on yourself that is causing you to be charmed or frightened.
At 15th level, you gain one of the following features of your choice.
@Compendium[dnd5e.classfeatures.laVHAIOKIsUeezWd]{Evasion}
@Compendium[dnd5e.classfeatures.Xf763cJoDHPPWSGG]{Stand Against the Tide}
@Compendium[dnd5e.classfeatures.7pyZjz5vlUWV01qQ]{Uncanny Dodge}
At 7th level, your instinctive agility lets you dodge out of the way of certain area effects, such as a blue dragon's lightning breath or a fireball spell. When you are subjected to an effect that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.
Starting at 14th level, when you hit a creature with an attack, you can use this feature to instantly transport the target through the lower planes. The creature disappears and hurtles through a nightmare landscape.
At the end of your next turn, the target returns to the space it previously occupied, or the nearest unoccupied space. If the target is not a fiend, it takes 10d10 psychic damage as it reels from its horrific experience.
At 3rd level, choose two of your skill proficiencies. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies. At 10th level, you can choose another two skill proficiencies to gain this benefit.
Your weapon attacks score a critical hit on a roll of 18–20.
You can cast @Compendium[dnd5e.spells.CKZTpZlxj7hjjo2H]{Mage Armor} on yourself at will, without expending a spell slot or material components.
By 10th level, you have plundered magical knowledge from a wide spectrum of disciplines.
Choose two spells from any class, including this one. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip.
The chosen spells count as bard spells for you and are included in the number in the Spells Known column of the Bard table.
You learn two additional spells from any class at 14th level and again at 18th level.
At 3rd level, you choose an archetype that you strive to emulate in your combat styles and techniques, such as Champion. The archetype you choose grants you features at 3rd level and again at 7th, 10th, 15th, and 18th level.
You can cast @Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic} at will, without expending a spell slot.
At 10th level, your mastery of the ki flowing through you makes you immune to disease and poison.
Starting at 18th level, the primal magic that you wield causes you to age more slowly. For every 10 years that pass, your body ages only 1 year.
Starting at 6th level, whenever you or a friendly creature within 10 feet of you must make a saving throw, the creature gains a bonus to the saving throw equal to your Charisma modifier (with a minimum bonus of +1). You must be conscious to grant this bonus.
Choose a sorcerous origin, which describes the source of your innate magical power, such as Draconic Bloodline.
Your choice grants you features when you choose it at 1st level and again at 6th, 14th, and 18th level.
You can add half your proficiency bonus (round up) to any Strength, Dexterity, or Constitution check you make that doesn't already use your proficiency bonus.
In addition, when you make a running long jump, the distance you can cover increases by a number of feet equal to your Strength modifier.
You can cast @Compendium[dnd5e.spells.pO4zGe5LmFIYqJiL]{Bestow Curse} once using a warlock spell slot. You can't do so again until you finish a long rest.
By 3rd level, the divine magic flowing through you makes you immune to disease.
You have learned to regain some of your magical energy by studying your spellbook. Once per day when you finish a short rest, you can choose expended spell slots to recover. The spell slots can have a combined level that is equal to or less than half your wizard level (rounded up), and none of the slots can be 6th level or higher.
For example, if you're a 4th-level wizard, you can recover up to two levels worth of spell slots. You can recover either a 2nd-level spell slot or two 1st-level spell slots.
When you join the College of Lore at 3rd level, you gain proficiency with three skills of your choice.
You gain proficiency in the Deception and Persuasion skills.
Beginning at 10th level, you can call on your deity to intervene on your behalf when your need is great.
Imploring your deity's aid requires you to use your action. Describe the assistance you seek, and roll percentile dice. If you roll a number equal to or lower than your cleric level, your deity intervenes. The GM chooses the nature of the intervention; the effect of any cleric spell or cleric domain spell would be appropriate.
If your deity intervenes, you can't use this feature again for 7 days. Otherwise, you can use it again after you finish a long rest.
At 20th level, your call for intervention succeeds automatically, no roll required.
Starting at 6th level, your damaging cantrips affect even creatures that avoid the brunt of the effect. When a creature succeeds on a saving throw against your cantrip, the creature takes half the cantrip's damage (if any) but suffers no additional effect from the cantrip.
Starting at 2nd level, you can add half your proficiency bonus, rounded down, to any ability check you make that doesn't already include your proficiency bonus.
When you cast a spell, you can spend 1 sorcery point to cast it without any somatic or verbal components.
@Compendium[dnd5e.classfeatures.8YwPFv3UAPjWVDNf]{Archery}
@Compendium[dnd5e.classfeatures.mHcSjcHJ8oZu3hkb]{Two Weapon Fighting}
Starting at 14th level, if you are able to hear, you are aware of the location of any hidden or invisible creature within 10 feet of you.
At 15th level, your ki sustains you so that you suffer none of the frailty of old age, and you can't be aged magically. You can still die of old age, however. In addition, you no longer need food or water.
You can cast @Compendium[dnd5e.spells.I2LUSF5ogc7Bj62e]{Speak with Dead} at will, without expending a spell slot.
Starting at 3rd level, you can use the bonus action granted by your @Compendium[dnd5e.classfeatures.01pcLg6PRu5zGrsb]{Cunning Action} to make a Dexterity (Sleight of Hand) check, use your thieves' tools to disarm a trap or open a lock, or take the Use an Object action.
As a student of arcane magic, you have a spellbook containing spells that show the first glimmerings of your true power.
At 1st level, you know three cantrips of your choice from the wizard spell list. You learn additional wizard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Wizard table.
At 1st level, you have a spellbook containing six 1stlevel wizard spells of your choice. Your spellbook is the repository of the wizard spells you know, except your cantrips, which are fixed in your mind.
The Wizard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.
You prepare the list of wizard spells that are available for you to cast. To do so, choose a number of wizard spells from your spellbook equal to your Intelligence modifier + your wizard level (minimum of one spell). The spells must be of a level for which you have spell slots.
For example, if you're a 3rd-level wizard, you have four 1st-level and two 2nd-level spell slots. With an Intelligence of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination, chosen from your spellbook. If you prepare the 1st-level spell magic missile, you can cast it using a 1st-level or a 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.
You can change your list of prepared spells when you finish a long rest. Preparing a new list of wizard spells requires time spent studying your spellbook and memorizing the incantations and gestures you must make to cast the spell: at least 1 minute per spell level for each spell on your list.
Intelligence is your spellcasting ability for your wizard spells, since you learn your spells through dedicated study and memorization. You use your Intelligence whenever a spell refers to your spellcasting ability. In addition, you use your Intelligence modifier when setting the saving throw DC for a wizard spell you cast and when making an attack roll with one.
Spell save DC = 8 + your proficiency bonus + your Intelligence modifier
Spell attack modifier = your proficiency bonus + your Intelligence modifier
You can cast a wizard spell as a ritual if that spell has the ritual tag and you have the spell in your spellbook. You don't need to have the spell prepared.
You can use an arcane focus as a spellcasting focus for your wizard spells.
Each time you gain a wizard level, you can add two wizard spells of your choice to your spellbook for free. Each of these spells must be of a level for which you have spell slots, as shown on the Wizard table. On your adventures, you might find other spells that you can add to your spellbook (see the \"Your Spellbook\" sidebar).
At 17th level, you gain the ability to set up lethal vibrations in someone's body. When you hit a creature with an unarmed strike, you can spend 3 ki points to start these imperceptible vibrations, which last for a number of days equal to your monk level. The vibrations are harmless unless you use your action to end them. To do so, you and the target must be on the same plane of existence. When you use this action, the creature must make a Constitution saving throw. If it fails, it is reduced to 0 hit points. If it succeeds, it takes 10d10 necrotic damage.
You can have only one creature under the effect of this feature at a time. You can choose to end the vibrations harmlessly without using an action.
When you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon.
Starting at 2nd level, you can use your Channel Divinity to heal the badly injured.
As an action, you present your holy symbol and evoke healing energy that can restore a number of hit points equal to five times your cleric level.
Choose any creatures within 30 feet of you, and divide those hit points among them. This feature can restore a creature to no more than half of its hit point maximum. You can't use this feature on an undead or a construct.
Beginning at 2nd level, you can use soothing music or oration to help revitalize your wounded allies during a short rest.
If you or any friendly creatures who can hear your performance regain hit points at the end of the short rest by spending one or more Hit Dice, each of those creatures regains an extra 1d6 hit points.
The extra hit points increase when you reach certain levels in this class: to 1d8 at 9th level, to 1d10 at 13th level, and to 1d12 at 17th level.
You can inspire others through stirring words or music. To do so, you use a bonus action on your turn to choose one creature other than yourself within 60 feet of you who can hear you. That creature gains one Bardic Inspiration die, a d6. Once within the next 10 minutes, the creature can roll the die and add the number rolled to one ability check, attack roll, or saving throw it makes. The creature can wait until after it rolls the d20 before deciding to use the Bardic Inspiration die, but must decide before the GM says whether the roll succeeds or fails. Once the Bardic Inspiration die is rolled, it is lost. A creature can have only one Bardic Inspiration die at a time.
You can use this feature a number of times equal to your Charisma modifier (a minimum of once).
You regain any expended uses when you finish a long rest.
Your Bardic Inspiration die changes when you reach certain levels in this class. The die becomes a d8 at 5th level, a d10 at 10th level, and a d12 at 15th level.
Recovery is set to long rest (for levels before @Compendium[dnd5e.classfeatures.3VDZGs5Ug3hIE322]{Font of Inspiration} is gained). Please manually adjust as required.
Drawing on the divine essence of nature itself, you can cast spells to shape that essence to your will.
At 1st level, you know two cantrips of your choice from the druid spell list. You learn additional druid cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Druid table.
The Druid table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these druid spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.
You prepare the list of druid spells that are available for you to cast, choosing from the druid spell list. When you do so, choose a number of druid spells equal to your Wisdom modifier + your druid level (minimum of one spell). The spells must be of a level for which you have spell slots.
For example, if you are a 3rd-level druid, you have four 1st-level and two 2nd-level spell slots. With a Wisdom of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.
You can also change your list of prepared spells when you finish a long rest. Preparing a new list of druid spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.
Wisdom is your spellcasting ability for your druid spells, since your magic draws upon your devotion and attunement to nature. You use your Wisdom whenever a spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a druid spell you cast and when making an attack roll with one.
Spell save DC = 8 + your proficiency bonus + your Wisdom modifier
Spell attack modifier = your proficiency bonus + your Wisdom modifier
You can cast a druid spell as a ritual if that spell has the ritual tag and you have the spell prepared.
You can use a druidic focus (see @UUID[Compendium.dnd5e.rules.BYFd9hiJGo9L5aOM.JournalEntryPage.AjavRU4yPfI9hfaI]{Adventuring Gear}) as a spellcasting focus for your druid spells.
Starting when you choose this tradition at 3rd level, you can manipulate your enemy's ki when you harness your own.
Whenever you hit a creature with one of the attacks granted by your @Compendium[dnd5e.classfeatures.5MwNlVZK7m6VolOH]{Flurry of Blows}, you can impose one of the following effects on that target:
You can cast @Compendium[dnd5e.spells.7e3QXF10hLNDEdr6]{False Life} on yourself at will as a 1st-level spell, without expending a spell slot or material components.
By 2nd level, you have learned to draw on divine magic through meditation and prayer to cast spells as a cleric does.
The Paladin table shows how many spell slots you have to cast your spells. To cast one of your paladin spells of 1st level or higher, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.
You prepare the list of paladin spells that are available for you to cast, choosing from the paladin spell list. When you do so, choose a number of paladin spells equal to your Charisma modifier + half your paladin level, rounded down (minimum of one spell). The spells must be of a level for which you have spell slots.
For example, if you are a 5th-level paladin, you have four 1st-level and two 2nd-level spell slots. With a Charisma of 14, your list of prepared spells can include four spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or a 2ndlevel slot. Casting the spell doesn't remove it from your list of prepared spells.
You can change your list of prepared spells when you finish a long rest. Preparing a new list of paladin spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.
Charisma is your spellcasting ability for your paladin spells, since their power derives from the strength of your convictions. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a paladin spell you cast and when making an attack roll with one.
Spell save DC = 8 + your proficiency bonus + your Charisma modifier
Spell attack modifier = your proficiency bonus + your Charisma modifier
You can use a holy symbol as a spellcasting focus for your paladin spells.
At 20th level, you can use your @Compendium[dnd5e.classfeatures.swK0r5TOIxredxWS]{Wild Shape} an unlimited number of times.
Additionally, you can ignore the verbal and somatic components of your druid spells, as well as any material components that lack a cost and aren't consumed by a spell.
You gain this benefit in both your normal shape and your beast shape from Wild Shape.
You attain the pinnacle of resilience in battle.
At the start of each of your turns, you regain hit points equal to 5 + your Constitution modifier if you have no more than half of your hit points left.
You don't gain this benefit if you have 0 hit points.
Starting at 1st level, your healing spells are more effective.
Whenever you use a spell of 1st level or higher to restore hit points to a creature, the creature regains additional hit points equal to 2 + the spell's level.
At 1st level, you have struck a bargain with an otherworldly being, such as the Fiend. Your choice grants you features at 1st level and again at 6th, 10th, and 14th level.
At 20th level, you embody the power of the wilds. Your Strength and Constitution scores increase by 4. Your maximum for those scores is now 24.
You can cast @Compendium[dnd5e.spells.BrBZdCCrJRIVg7YX]{Silent Image} at will, without expending a spell slot or material components.
You can communicate telepathically with your familiar and perceive through your familiar's senses as long as you are on the same plane of existence. Additionally, while perceiving through your familiar's senses, you can also speak through your familiar in your own voice, even if your familiar is normally incapable of speech.
Choose a second fighting style class feature from the following:
The choice must be different to the one made at level 1.
You can drag your choice from the above onto your character sheet and it will automatically update.
Beginning at 3rd level, you can use your action and expend one ranger spell slot to focus your awareness on the region around you. For 1 minute per level of the spell slot you expend, you can sense whether the following types of creatures are present within 1 mile of you (or within up to 6 miles if you are in your favored terrain): aberrations, celestials, dragons, elementals, fey, fiends, and undead. This feature doesn't reveal the creatures' location or number.
At 1st level, your practice of martial arts gives you mastery of combat styles that use and monk weapons, which are shortswords and any simple melee weapons that don't have the two-handed or heavy property. You gain the following benefits while you are unarmed or wielding only monk weapons and you aren't wearing armor or wielding a shield:
You can use Dexterity instead of Strength for the attack and damage rolls of your unarmed strikes and monk weapons.
You can roll a d4 in place of the normal damage of your unarmed strike or monk weapon. This die changes as you gain monk levels, as shown in the Martial Arts column of the Monk table.
When you use the Attack action with an unarmed strike or a monk weapon on your turn, you can make one unarmed strike as a bonus action. For example, if you take the Attack action and attack with a quarterstaff, you can also make an unarmed strike as a bonus action, assuming you haven't already taken a bonus action this turn.
Certain monasteries use specialized forms of the monk weapons. For example, you might use a club that is two lengths of wood connected by a short chain (called a nunchaku) or a sickle with a shorter, straighter blade (called a kama). Whatever name you use for a monk weapon, you can use the game statistics provided for the weapon.
You can use your action to make a ranged attack against any number of creatures within 10 feet of a point you can see within your weapon's range. You must have ammunition for each target, as normal, and you make a separate attack roll for each target.
Beginning at 15th level, your @Compendium[dnd5e.classfeatures.VoR0SUrNX5EJVPIO]{Rage} is so fierce that it ends early only if you fall unconscious or if you choose to end it.
You can read all writing.
When you choose this circle at 2nd level, you learn one additional druid cantrip of your choice.
When you are subjected to an effect, such as a red dragon's fiery breath or a lightning bolt spell, that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.
You can cast @Compendium[dnd5e.spells.8RTDOt80u8aBv9qx]{Alter Self} at will, without expending a spell slot.
When you engage in two-weapon fighting, you can add your ability modifier to the damage of the second attack.
At 20th level, when you roll for initiative and have no ki points remaining, you regain 4 ki points.
At 6th level, you learn two spells of your choice from any class. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip. The chosen spells count as bard spells for you but don't count against the number of bard spells you know.
Starting at 3rd level, you can use your reaction to deflect or catch the missile when you are hit by a ranged weapon attack. When you do so, the damage you take from the attack is reduced by 1d10 + your Dexterity modifier + your monk level.
If you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in one hand and you have at least one hand free. If you catch a missile in this way, you can spend 1 @Compendium[dnd5e.classfeatures.10b6z2W1txNkrGP7]{Ki} point to make a ranged attack with the weapon or piece of ammunition you just caught, as part of the same reaction. You make this attack with proficiency, regardless of your weapon proficiencies, and the missile counts as a monk weapon for the attack, which has a normal range of 20 feet and a long range of 60 feet.
The reduce damage roll is calculated by the Other Formula.
You have a limited well of stamina that you can draw on to protect yourself from harm. On your turn, you can use a bonus action to regain hit points equal to 1d10 + your fighter level.
Once you use this feature, you must finish a short or long rest before you can use it again.
When you reach 20th level, you gain mastery over two powerful spells and can cast them with little effort. Choose two 3rd-level wizard spells in your spellbook as your signature spells. You always have these spells prepared, they don't count against the number of spells you have prepared, and you can cast each of them once at 3rd level without expending a spell slot. When you do so, you can't do so again until you finish a short or long rest.
If you want to cast either spell at a higher level, you must expend a spell slot as normal.
When you cast a spell that has a casting time of 1 action, you can spend 2 sorcery points to change the casting time to 1 bonus action for this casting.
Starting at 10th level, you and friendly creatures within 10 feet of you can't be frightened while you are conscious.
During your rogue training you learned thieves' cant, a secret mix of dialect, jargon, and code that allows you to hide messages in seemingly normal conversation. Only another creature that knows thieves' cant understands such messages. It takes four times longer to convey such a message than it does to speak the same idea plainly.
In addition, you understand a set of secret signs and symbols used to convey short, simple messages, such as whether an area is dangerous or the territory of a thieves' guild, whether loot is nearby, or whether the people in an area are easy marks or will provide a safe house for thieves on the run.
When you reach 3rd level, you swear the oath that binds you as a paladin forever. Up to this time you have been in a preparatory stage, committed to the path but not yet sworn to it. Now you choose an oath, such as the Oath of Devotion.
Your choice grants you features at 3rd level and again at 7th, 15th, and 20th level. Those features include oath spells and the Channel Divinity feature.
Each oath has a list of associated spells. You gain access to these spells at the levels specified in the oath description. Once you gain access to an oath spell, you always have it prepared. Oath spells don't count against the number of spells you can prepare each day.
If you gain an oath spell that doesn't appear on the paladin spell list, the spell is nonetheless a paladin spell for you.
See @Compendium[dnd5e.classfeatures.8M7uOPhbTxoxxJSo]{Channel Divinity}.
An event in your past, or in the life of a parent or ancestor, left an indelible mark on you, infusing you with arcane magic. This font of magic, whatever its origin, fuels your spells.
At 1st level, you know four cantrips of your choice from the sorcerer spell list. You learn additional sorcerer cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Sorcerer table.
The Sorcerer table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these sorcerer spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.
For example, if you know the 1st-level spell burning hands and have a 1st-level and a 2nd-level spell slot available, you can cast burning hands using either slot.
You know two 1st-level spells of your choice from the sorcerer spell list.
The Spells Known column of the Sorcerer table shows when you learn more sorcerer spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.
Additionally, when you gain a level in this class, you can choose one of the sorcerer spells you know and replace it with another spell from the sorcerer spell list, which also must be of a level for which you have spell slots.
Charisma is your spellcasting ability for your sorcerer spells, since the power of your magic relies on your ability to project your will into the world. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a sorcerer spell you cast and when making an attack roll with one.
You can use an arcane focus as a spellcasting focus for your sorcerer spells.
Opportunity attacks against you are made with disadvantage.
You can attack with your pact weapon twice, instead of once, whenever you take the Attack action on your turn.
Starting at 14th level, when you make an ability check, you can expend one use of @Compendium[dnd5e.classfeatures.hpLNiGq7y67d2EHA]{Bardic Inspiraton}.
Roll a Bardic Inspiration die and add the number rolled to your ability check.
You can choose to do so after you roll the die for the ability check, but before the GM tells you whether you succeed or fail.
Starting at 5th level, you can interfere with the flow of ki in an opponent's body. When you hit another creature with a melee weapon attack, you can spend 1 ki point to attempt a stunning strike. The target must succeed on a Constitution saving throw or be stunned until the end of your next turn.
The number of attacks increases to three when you reach 11th level in this class and to four when you reach 20th level in this class.
When you cast @Compendium[dnd5e.spells.Z9p1vezIn95jw1Yw]{Eldritch Blast}, its range is 300 feet.
Starting at 10th level, you can spend 1 minute creating camouflage for yourself. You must have access to fresh mud, dirt, plants, soot, and other naturally occurring materials with which to create your camouflage.
Once you are camouflaged in this way, you can try to hide by pressing yourself up against a solid surface, such as a tree or wall, that is at least as tall and wide as you are. You gain a +10 bonus to Dexterity (Stealth) checks as long as you remain there without moving or taking actions. Once you move or take an action or a reaction, you must camouflage yourself again to gain this benefit.
As an action, you present your holy symbol and speak a prayer censuring the undead.
Each undead that can see or hear you within 30 feet of you must make a Wisdom saving throw. If the creature fails its saving throw, it is turned for 1 minute or until it takes any damage.
A turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions.
For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action.
Beginning at 11th level, you can enter a special meditation that surrounds you with an aura of peace. At the end of a long rest, you gain the effect of a @Compendium[dnd5e.spells.gvdA9nPuWLck4tBl]{Sanctuary} spell that lasts until the start of your next long rest (the spell can end early as normal). The saving throw DC for the spell equals 8 + your Wisdom modifier + your proficiency bonus.
At 20th level, you have an uncanny knack for succeeding when you need to. If your attack misses a target within range, you can turn the miss into a hit. Alternatively, if you fail an ability check, you can treat the d20 roll as a 20.
When you hit a creature with @Compendium[dnd5e.spells.Z9p1vezIn95jw1Yw]{Eldritch Blast}, you can push the creature up to 10 feet away from you in a straight line.
You can cast @Compendium[dnd5e.spells.95K2aUhAGV9qXjnf]{Bane} once using a warlock spell slot. You can't do so again until you finish a long rest.
When you reach 3rd level, you commit yourself to a monastic tradition, such as the Way of the Open Hand. Your tradition grants you features at 3rd level and again at 6th, 11th, and 17th level.
When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.
When you reach 4th level, and again at 6th, 8th, 12th, 14th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.
When a creature hits you with an attack, you gain a +4 bonus to AC against all subsequent attacks made by that creature for the rest of the turn.
You can see the true form of any shapechanger or creature concealed by illusion or transmutation magic while the creature is within 30 feet of you and within line of sight.
Starting at 2nd level, you can use your action to magically assume the shape of a beast that you have seen before. You can use this feature twice. You regain expended uses when you finish a short or long rest.
Your druid level determines the beasts you can transform into, as shown in the Beast Shapes table. At 2nd level, for example, you can transform into any beast that has a challenge rating of 1/4 or lower that doesn't have a flying or swimming speed.
You can stay in a beast shape for a number of hours equal to half your druid level (rounded down). You then revert to your normal form unless you expend another use of this feature. You can revert to your normal form earlier by using a bonus action on your turn. You automatically revert if you fall unconscious, drop to 0 hit points, or die.
While you are transformed, the following rules apply:
Your game statistics are replaced by the statistics of the beast, but you retain your alignment, personality, and Intelligence, Wisdom, and Charisma scores. You also retain all of your skill and saving throw proficiencies, in addition to gaining those of the creature. If the creature has the same proficiency as you and the bonus in its stat block is higher than yours, use the creature's bonus instead of yours. If the creature has any legendary or lair actions, you can't use them.
When you transform, you assume the beast's hit points and Hit Dice. When you revert to your normal form, you return to the number of hit points you had before you transformed. However, if you revert as a result of dropping to 0 hit points, any excess damage carries over to your normal form. For example, if you take 10 damage in animal form and have only 1 hit point left, you revert and take 9 damage. As long as the excess damage doesn't reduce your normal form to 0 hit points, you aren't knocked unconscious.
You can't cast spells, and your ability to speak or take any action that requires hands is limited to the capabilities of your beast form. Transforming doesn't break your concentration on a spell you've already cast, however, or prevent you from taking actions that are part of a spell, such as call lightning, that you've already cast.
You retain the benefit of any features from your class, race, or other source and can use them if the new form is physically capable of doing so. However, you can't use any of your special senses, such as darkvision, unless your new form also has that sense.
You choose whether your equipment falls to the ground in your space, merges into your new form, or is worn by it. Worn equipment functions as normal, but the GM decides whether it is practical for the new form to wear a piece of equipment, based on the creature's shape and size. Your equipment doesn't change size or shape to match the new form, and any equipment that the new form can't wear must either fall to the ground or merge with it. Equipment that merges with the form has no effect until you leave the form.
When you cast a spell that forces a creature to make a saving throw to resist its effects, you can spend 3 sorcery points to give one target of the spell disadvantage on its first saving throw made against the spell.
When you cast a spell that has a duration of 1 minute or longer, you can spend 1 sorcery point to double its duration, to a maximum duration of 24 hours.
You have learned to untangle and reshape the fabric of reality in harmony with your wishes and music. Your spells are part of your vast repertoire, magic that you can tune to different situations.
You know two cantrips of your choice from the bard spell list. You learn additional bard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Bard table.
The Bard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.
For example, if you know the 1st-level spell cure wounds and have a 1st-level and a 2nd-level spell slot available, you can cast cure wounds using either slot.
You know four 1st-level spells of your choice from the bard spell list.
The Spells Known column of the Bard table shows when you learn more bard spells of your choice. Each of these spells must be of a level for which you have spell slots, as shown on the table. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.
Additionally, when you gain a level in this class, you can choose one of the bard spells you know and replace it with another spell from the bard spell list, which also must be of a level for which you have spell slots.
Charisma is your spellcasting ability for your bard spells. Your magic comes from the heart and soul you pour into the performance of your music or oration. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a bard spell you cast and when making an attack roll with one.
You can cast any bard spell you know as a ritual if that spell has the ritual tag.
You can use a musical instrument (see @UUID[Compendium.dnd5e.rules.BYFd9hiJGo9L5aOM.JournalEntryPage.AjavRU4yPfI9hfaI]{Adventuring Gear})) as a spellcasting focus for your bard spells.
At 2nd level, you choose to identify with a circle of druids, such as the Circle of the Land.
By the time you reach 2nd level, you have learned to use the magical essence of nature to cast spells, much as a druid does.
The Ranger table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.
For example, if you know the 1st-level spell animal friendship and have a 1st-level and a 2nd-level spell slot available, you can cast animal friendship using either slot.
You know two 1st-level spells of your choice from the ranger spell list.
The Spells Known column of the Ranger table shows when you learn more ranger spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 5th level in this class, you can learn one new spell of 1st or 2nd level.
Additionally, when you gain a level in this class, you can choose one of the ranger spells you know and replace it with another spell from the ranger spell list, which also must be of a level for which you have spell slots.
Wisdom is your spellcasting ability for your ranger spells, since your magic draws on your attunement to nature. You use your Wisdom whenever a spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a ranger spell you cast and when making an attack roll with one.
As a conduit for divine power, you can cast cleric spells.
At 1st level, you know three cantrips of your choice from the cleric spell list. You learn additional cleric cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Cleric table.
The Cleric table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.
You prepare the list of cleric spells that are available for you to cast, choosing from the cleric spell list. When you do so, choose a number of cleric spells equal to your Wisdom modifier + your cleric level (minimum of one spell). The spells must be of a level for which you have spell slots.
For example, if you are a 3rd-level cleric, you have four 1st-level and two 2nd-level spell slots. With a Wisdom of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.
You can change your list of prepared spells when you finish a long rest. Preparing a new list of cleric spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.
Wisdom is your spellcasting ability for your cleric spells. The power of your spells comes from your devotion to your deity. You use your Wisdom whenever a cleric spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a cleric spell you cast and when making an attack roll with one.
Spell save DC= 8 + your proficiency bonus + your Wisdom modifier
You can cast a cleric spell as a ritual if that spell has the ritual tag and you have the spell prepared.
You can use a holy symbol (see @UUID[Compendium.dnd5e.rules.BYFd9hiJGo9L5aOM.JournalEntryPage.AjavRU4yPfI9hfaI]{Adventuring Gear}) as a spellcasting focus for your cleric spells.
When you reach 4th level, and again at 8th, 10th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.
At 2nd level, you gain an uncanny sense of when things nearby aren't as they should be, giving you an edge when you dodge away from danger.
You have advantage on Dexterity saving throws against effects that you can see, such as traps and spells. To gain this benefit, you can't be blinded, deafened, or incapacitated.
Starting at 2nd level, you can regain some of your magical energy by sitting in meditation and communing with nature.
During a short rest, you choose expended spell slots to recover. The spell slots can have a combined level that is equal to or less than half your druid level (rounded up), and none of the slots can be 6th level or higher. You can't use this feature again until you finish a long rest.
For example, when you are a 4th-level druid, you can recover up to two levels worth of spell slots. You can recover either a 2nd-level slot or two 1st-level slots.
At 3rd level, you gain one of the following features of your choice.
@Compendium[dnd5e.classfeatures.5gx1O0sxK08awEO9]{Colossus Slayer}
@Compendium[dnd5e.classfeatures.StfmqK1twVfukpa0]{Giant Killer}
@Compendium[dnd5e.classfeatures.C6sHdDGmCMo0cYHd]{Horde Breaker}
Choose one domain related to your deity, such as Life. Your choice grants you domain spells and other features when you choose it at 1st level. It also grants you additional ways to use Channel Divinity when you gain that feature at 2nd level, and additional benefits at 6th, 8th, and 17th levels.
Each domain has a list of spells—its domain spells—that you gain at the cleric levels noted in the domain description. Once you gain a domain spell, you always have it prepared, and it doesn't count against the number of spells you can prepare each day.
If you have a domain spell that doesn't appear on the cleric spell list, the spell is nonetheless a cleric spell for you.
Your arcane research and the magic bestowed on you by your patron have given you facility with spells.
You know two cantrips of your choice from the warlock spell list. You learn additional warlock cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Warlock table.
The Warlock table shows how many spell slots you have. The table also shows what the level of those slots is; all of your spell slots are the same level. To cast one of your warlock spells of 1st level or higher, you must expend a spell slot. You regain all expended spell slots when you finish a short or long rest.
For example, when you are 5th level, you have two 3rd-level spell slots. To cast the 1st-level spell thunderwave, you must spend one of those slots, and you cast it as a 3rd-level spell.
At 1st level, you know two 1st-level spells of your choice from the warlock spell list.
The Spells Known column of the Warlock table shows when you learn more warlock spells of your choice of 1st level and higher. A spell you choose must be of a level no higher than what's shown in the table's Slot Level column for your level. When you reach 6th level, for example, you learn a new warlock spell, which can be 1st, 2nd, or 3rd level.
Additionally, when you gain a level in this class, you can choose one of the warlock spells you know and replace it with another spell from the warlock spell list, which also must be of a level for which you have spell slots.
Charisma is your spellcasting ability for your warlock spells, so you use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a warlock spell you cast and when making an attack roll with one.
You can use an arcane focus as a spellcasting focus for your warlock spells.
Starting at 6th level, when you cast a spell that deals damage of the type associated with your draconic ancestry, you can add your Charisma modifier to one damage roll of that spell. At the same time, you can spend 1 sorcery point to gain resistance to that damage type for 1 hour.
Starting at 2nd level, you can push yourself beyond your normal limits for a moment. On your turn, you can take one additional action on top of your regular action and a possible Bonus Action.
Once you use this feature, you must finish a short or long rest before you can use it again. Starting at 17th level, you can use it twice before a rest, but only once on the same turn.
As an action, you can imbue one weapon that you are holding with positive energy, using your Channel Divinity.
For 1 minute, you add your Charisma modifier to attack rolls made with that weapon (with a minimum bonus of +1). The weapon also emits bright light in a 20-foot radius and dim light 20 feet beyond that. If the weapon is not already magical, it becomes magical for the duration.
You can end this effect on your turn as part of any other action. If you are no longer holding or carrying this weapon, or if you fall unconscious, this effect ends.
Beginning at 18th level, you can cast many of your druid spells in any shape you assume using @Compendium[dnd5e.classfeatures.swK0r5TOIxredxWS]{Wild Shape}. You can perform the somatic and verbal components of a druid spell while in a beast shape, but you aren't able to provide material components.
Starting at 14th level, when you take damage from a creature that is within 5 feet of you, you can use your reaction to make a melee weapon attack against that creature.
Starting at 2nd level, when you hit a creature with a melee weapon attack, you can expend one spell slot to deal radiant damage to the target, in addition to the weapon's damage.
The extra damage is 2d8 for a 1st-level spell slot, plus 1d8 for each spell level higher than 1st, to a maximum of 5d8. The damage increases by 1d8 if the target is an undead or a fiend.
You can spend 1 ki point to take the Disengage or Dash action as a bonus action on your turn, and your jump distance is doubled for the turn.
Beginning at 6th level, the healing spells you cast on others heal you as well.
When you cast a spell of 1st level or higher that restores hit points to a creature other than you, you regain hit points equal to 2 + the spell's level.
The healing formula is set to 2. Please add the additional from the spell level manually.
At 11th level, your patron bestows upon you a magical secret called an arcanum. Choose one 6th-level spell from the warlock spell list as this arcanum.
You can cast your arcanum spell once without expending a spell slot. You must finish a long rest before you can do so again.
At higher levels, you gain more warlock spells of your choice that can be cast in this way: one 7th-level spell at 13th level, one 8th-level spell at 15th level, and one 9th-level spell at 17th level. You regain all uses of your Mystic Arcanum when you finish a long rest.
Starting at 2nd level, your speed increases by 10 feet while you are not wearing armor or wielding a shield. This bonus increases when you reach certain monk levels, as shown in the Monk table.
At 9th level, you gain the ability to move along vertical surfaces and across liquids on your turn without falling during the move.
When you cast a spell that forces other creatures to make a saving throw, you can protect some of those creatures from the spell's full force. To do so, you spend 1 sorcery point and choose a number of those creatures up to your Charisma modifier (minimum of one creature). A chosen creature automatically succeeds on its saving throw against the spell.
While you are wearing armor, you gain a +1 bonus to AC
When you hit a creature with your pact weapon, the creature takes extra necrotic damage equal to your Charisma modifier (minimum 1).
You can cast @Compendium[dnd5e.spells.ImlCJQwR1VL40Qem]{Arcane Eye} at will, without expending a spell slot.
You have advantage on saving throws against being frightened.
A devoted student of his local monastery, Perrin has been tasked with bringing balance to the surrounding lands.
A medium sized blade with a firm crossguard and a leather-wrapped handle. A versatile weapon which makes up in versatility what it lacks in reach.
A small thrown implement crafted with a short wooden shaft and crossed feathres with a sharp wooden or metal tip. Darts can be thrown with sufficient force to puncture the skin.
A tiny box or other container holding a fragment of a precious relic, saint, or other historical figure that dedicated their life to walk the path of a true believer. A deity imbues the bearer of this artifact with the ability to call forth their power and in doing so spread the faith once more.
Spellcasting Focus. A cleric or paladin can use a holy symbol as a spellcasting focus. To use the symbol in this way, the caster must hold it in hand, wear it visibly, or bear it on a shield.
Clothes worn by most commoners.
Simple or ostentacious wear, often used by priests and other religious figures for use in rituals and ceremonies.
A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.
A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.
Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.
A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.
A book containing prayers and incantations dedicated to a specific power for the faithful to follow.
When blocks of incense cannot be used or a cheaper alternative is required, people often use these to perfume the air, whether for pleasurable or religious purposes.
Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.
A tool with heavy metal head mounted ar the right angles at the end of a handle, used for job such as breaking things and driving in nails.
A metal spike that is drive into a seam in a climbing surface with a climbing hammer. It can also be used like iron spikes to block doors in a pinch.
A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.
This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.
Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.
When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.
Foundry Note: Enable this feature in the Special Traits section of the character sheet.
You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.
You can move through the space of any creature that is of a size larger than yours.
As a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others.
Lightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life.
Ability Score Increase. Your Charisma score increases by 1.
Naturally Stealthy. @Compendium[dnd5e.races.GWPjKFeIthBBeCFJ]{Naturally Stealthy} You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.
Your halfling character has a number of traits in common with all other halflings.
Ability Score Increase. Your Dexterity score increases by 2.
Age. A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.
Alignment. Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.
Size. Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.
Speed. Your base walking speed is 25 feet.
Lucky. @Compendium[dnd5e.races.LOMdcNAGWh5xpfm4]{Lucky} When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.
Brave. @Compendium[dnd5e.races.7Yoo9hG0hfPSmBoC]{Brave} You have advantage on saving throws against being frightened.
Halfling Nimbleness. @Compendium[dnd5e.races.PqxZgcJzp1VVgP8t]{Halfling Nimbleness} You can move through the space of any creature that is of a size larger than yours.
Languages. You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.
Randal worked his way through the ranks of his hometown's guard, ultimately growing restless with city life and wandering off in search of adventure.
A horn, used to sound the alarm and call upon reinforcements in times of need.
Standard ammunition used for bows of all varieties. These mundane arrows are made of smooth wooden shafts with goose feather fletching and hammer metal bodkins.
A thick shaft of laminated wood is bowed by a taut string capable of launching deadly arrows at long distances.
A lengthy stright blade designed for slashing foes, the longsword is a highly versatile weapon that may also be wielded with two hands for more punishing strikes.
This one-handed axe is light and balanced for throwing while remaining useful in hand combat.
Made of interlocking metal rings, chain mail includes a layer of quilted fabric worn underneath the mail to prevent chafing and to cushion the impact of blows. The suit includes gauntlets.
A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.
A quiver can hold up to 20 arrows.
Roll of cloth used by traveller to sleep in.
This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.
It’s hard to make generalizations about humans, but your human character has these traits.
Ability Score Increase. Your ability scores each increase by 1.
Age. Humans reach adulthood in their late teens and live less than a century.
Alignment. Humans tend toward no particular alignment. The best and the worst are found among them.
Size. Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.
Speed. Your base walking speed is 30 feet.
Languages. You can speak, read, and write Common and one extra language of your choice. Humans typically learn the languages of other peoples they deal with, including obscure dialects. They are fond of sprinkling their speech with words borrowed from other tongues: Orc curses, Elvish musical expressions, Dwarvish military phrases, and so on.
Always interested in tinkering, Zanna set out for adventure in order to find more spells for her spellbook, and perhaps one day create some of her own.
A component pouch is a small, watertight leather belt pouch that has compartments to hold all the material components and other special items you need to cast your spells, except for those components that have a specific cost (as indicated in a spell's description).
A thick shaft of wood wrapped with a sturdy grip makes a highly functional weapon in addition to a stout walking stick.
Simple or ceremonial wear, often used by priests and other religious figures.
A small bottle of ink for writing upon parchment.
A deviced used in combination with ink to write or draw on a sheet of paper.
A single sheet of heavier parchment paper.
A book containing historical accounts, information pertaining to a particular field of lore, myth, or legend.
Essential for wizards, a spellbook is a leather-bound tome with 100 blank vellum pages suitable for recording spells.
A blunt knife used by the scholarly to open letters and correspondence.
Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.
You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.
You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time. When you create a device, choose one of the following options:
Clockwork Toy: This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.
Fire Starter: The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.
Music Box: When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.
Your gnome character has certain characteristics in common with all other gnomes.
Ability Score Increase. Your Intelligence score increases by 2.
Age. Gnomes mature at the same rate humans do, and most are expected to settle down into an adult life by around age 40. They can live 350 to almost 500 years.
Alignment. Gnomes are most often good. Those who tend toward law are sages, engineers, researchers, scholars, investigators, or inventors. Those who tend toward chaos are minstrels, tricksters, wanderers, or fanciful jewelers. Gnomes are good-‐‑hearted, and even the tricksters among them are more playful than vicious.
Size. Gnomes are between 3 and 4 feet tall and average about 40 pounds. Your size is Small. Speed. Your base walking speed is 25 feet.
Darkvision. Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.
Gnome Cunning. @Compendium[dnd5e.races.EHhr9umJ5kxJFCQH]{Gnome Cunning} You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.
Languages. You can speak, read, and write Common and Gnomish. The Gnomish language, which uses the Dwarvish script, is renowned for its technical treatises and its catalogs of knowledge about the natural world.
As a rock gnome, you have a natural inventiveness and hardiness beyond that of other gnomes.
Ability Score Increase. Your Constitution score increases by 1.
Artificer's Lore. @Compendium[dnd5e.races.OQA1sHxKnSJq01dL]{Artificer's Lore} Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.
Tinker. @Compendium[dnd5e.races.koRPOLtj8XAFMwnW]{Tinker} You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time.
When you create a device, choose one of the following options:
Clockwork Toy. This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.
Fire Starter. The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.
Music Box. When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.
You hurl a mote of fire at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried.
This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).
You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action.
If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.
A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again.
You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it.
The hand can't attack, activate magic items, or carry more than 10 pounds.
You set an alarm against unwanted intrusion. Choose a door, a window, or an area within range that is no larger than a 20-foot cube. Until the spell ends, an alarm alerts you whenever a Tiny or larger creature touches or enters the warded area. When you cast the spell, you can designate creatures that won't set off the alarm. You also choose whether the alarm is mental or audible.
A mental alarm alerts you with a ping in your mind if you are within 1 mile of the warded area. This ping awakens you if you are sleeping.
An audible alarm produces the sound of a hand bell for 10 seconds within 60 feet.
An invisible barrier of magical force appears and protects you. Until the start of your next turn, you have a +5 bonus to AC, including against the triggering attack, and you take no damage from magic missile.
Your familiar acts independently of you, but it always obeys your commands. In combat, it rolls its own initiative and acts on its own turn. A familiar can't attack, but it can take other actions as normal.
When the familiar drops to 0 hit points, it disappears, leaving behind no physical form. It reappears after you cast this spell again.
While your familiar is within 100 feet of you, you can communicate with it telepathically. Additionally, as an action, you can see through your familiar's eyes and hear what it hears until the start of your next turn, gaining the benefits of any special senses that the familiar has. During this time, you are deaf and blind with regard to your own senses.
As an action, you can temporarily dismiss your familiar. It disappears into a pocket dimension where it awaits your summons. Alternatively, you can dismiss it forever. As an action while it is temporarily dismissed, you can cause it to reappear in any unoccupied space within 30 feet of you.
You can't have more than one familiar at a time. If you cast this spell while you already have a familiar, you instead cause it to adopt a new form. Choose one of the forms from the above list. Your familiar transforms into the chosen creature.
Finally, when you cast a spell with a range of touch, your familiar can deliver the spell as if it had cast the spell. Your familiar must be within 100 feet of you, and it must use its reaction to deliver the spell when you cast it. If the spell requires an attack roll, you use your action modifier for the roll.
You touch a willing creature who isn't wearing armor, and a protective magical force surrounds it until the spell ends. The target's base AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor or if you dismiss the spell as an action.
This spell sends creatures into a magical slumber. Roll 5d8; the total is how many hit points of creatures this spell can affect. Creatures within 20 feet of a point you choose within range are affected in ascending order of their current hit points (ignoring unconscious creatures).
Starting with the creature that has the lowest current hit points, each creature affected by this spell falls unconscious until the spell ends, the sleeper takes damage, or someone uses an action to shake or slap the sleeper awake. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.
Undead and creatures immune to being charmed aren't affected by this spell.
Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d8 for each slot level above 1st.
You create three glowing darts of magical force. Each dart hits a creature of your choice that you can see within range. A dart deals 1d4 + 1 force damage to its target. The darts all strike simultaneously, and you can direct them to hit one creature or several.
Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the spell creates one more dart for each slot level above 1st.
Roaming the land brigning justice to all, Krusk has just one goal: the destruction of evil wherever it lies.
An amulet depicting a symbol representing a deity through which a true believer can call forth their power and in doing so spread the faith.
This light and flexible spear is designed for throwing, but is versatile enough to be used in melee combat as well.
A love letter sent by an admirer.
These special tools include the items needed to pursue a craft or trade in smithing.
Proficiency with a set of artisan's tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan's tools requires a separate proficiency.
When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.
When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.
Your half-orc character has certain traits deriving from your orc ancestry.
Ability Score Increase. Your Strength score increases by 2, and your Constitution score increases by 1.
Age. Half-orcs mature a little faster than humans, reaching adulthood around age 14. They age noticeably faster and rarely live longer than 75 years.
Alignment. Half-orcs inherit a tendency toward chaos from their orc parents and are not strongly inclined toward good. Half-orcs raised among orcs and willing to live out their lives among them are usually evil.
Size. Half-orcs are somewhat larger and bulkier than humans, and they range from 5 to well over 6 feet tall. Your size is Medium.
Darkvision. Thanks to your orc blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.
Menacing. You gain proficiency in the Intimidation skill.
Relentless Endurance. @Compendium[dnd5e.races.97c8i9Z28thvZuA8]{Relentless Endurance} When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.
Savage Attacks. @Compendium[dnd5e.races.0kUsT4sMUOr5FcoX]{Savage Attacks} When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.
Languages. You can speak, read, and write Common and Orc. Orc is a harsh, grating language with hard consonants. It has no script of its own but is written in the Dwarvish script.
Sefris's pickpocketing as a child grew into small burglaries and eventually complex heists, using the dark bond with his fiend to aid his exploits. He'll work for anyone who can throw some coin his way.
A short metal blade mounted to a small hilt and crossguard. The dagger makes an effective side armament for hardened warriors or a hidden blade for assassins and thieves.
A small crossbow with a wooden haft and a tense cord which is capable of firing a single bolt which can puncture even heavy armor at close range.
The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.
This ammunition is used for all varieties of crossbow and is typically a short metal shaft with a narrow piercing tip.
This set of tools includes a small file, a set of lock picks, a small mirror mounted on a metal handle, a set of narrow-bladed scissors, and a pair of pliers. Proficiency with these tools lets you add your proficiency bonus to any ability checks you make to disarm traps or open locks.
You have advantage on saving throws against being charmed, and magic can't put you to sleep.
Your half-elf character has some qualities in common with elves and some that are unique to half-elves.
Ability Score Increase. Your Charisma score increases by 2, and two other ability scores of your choice increase by 1.
Age. Half-elves mature at the same rate humans do and reach adulthood around the age of 20. They live much longer than humans, however, often exceeding 180 years.
Alignment. Half-elves share the chaotic bent of their elven heritage. They value both personal freedom and creative expression, demonstrating neither love of leaders nor desire for followers. They chafe at rules, resent others' demands, and sometimes prove unreliable, or at least unpredictable.
Size. Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.
Darkvision. Thanks to your elf blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.
Fey Ancestry. @Compendium[dnd5e.races.cnTbpPPeGW7vGjOV]{Fey Ancestry} You have advantage on saving throws against being charmed, and magic can't put you to sleep.
Skill Versatility. You gain proficiency in two skills of your choice.
Languages. You can speak, read, and write Common, Elvish, and one extra language of your choice.
You have made a pact with a fiend from the lower planes of existence, a being whose aims are evil, even if you strive against those aims. Such beings desire the corruption or destruction of all things, ultimately including you. Fiends powerful enough to forge a pact include demon lords such as Demogorgon, Orcus, Fraz'Urb-luu, and Baphomet; archdevils such as Asmodeus, Dispater, Mephistopheles, and Belial; pit fiends and balors that are especially mighty; and ultroloths and other lords of the yugoloths.
A beam of crackling energy streaks toward a creature within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 force damage.
The spell creates more than one beam when you reach higher levels: two beams at 5th level, three beams at 11th level, and four beams at 17th level. You can direct the beams at the same target or at different ones. Make a separate attack roll for each beam.
You create a ghostly, skeletal hand in the space of a creature within range. Make a ranged spell attack against the creature to assail it with the chill of the grave. On a hit, the target takes 1d8 Necrotic damage, and it can't regain hit points until the start of your next turn. Until then, the hand clings to the target.
If you hit an undead target, it also has disadvantage on attack rolls against you until the end of your next turn.
This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).
As you hold your hands with thumbs touching and fingers spread, a thin sheet of flames shoots forth from your outstretched fingertips. Each creature in a 15-foot cone must make a Dexterity saving throw. A creature takes 3d6 fire damage on a failed save, or half as much damage on a successful one.
The fire ignites any flammable objects in the area that aren't being worn or carried.
At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.
You speak a one-word command to a creature you can see within range. The target must succeed on a Wisdom saving throw or follow the command on its next turn. The spell has no effect if the target is undead, if it doesn't understand your language, or if your command is directly harmful to it.
Some typical commands and their effects follow. You might issue a command other than one described here. If you do so, the DM determines how the target behaves. If the target can't follow your command, the spell ends.
Approach. The target moves toward you by the shortest and most direct route, ending its turn if it moves within 5 feet of you.
Drop. The target drops whatever it is holding and then ends its turn.
Flee. The target spends its turn moving away from you by the fastest available means.
Grovel. The target falls prone and then ends its turn.
Halt. The target doesn't move and takes no actions. A flying creature stays aloft, provided that it is able to do so. If it must move to stay aloft, it flies the minimum distance needed to remain in the air.
Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.
Aoth lived among animals for so long that he now has difficulty speaking Common. His natural habitat in danger, he decided to join an adventuring group to return balance to his land.
A small bell for you to ring.
A sheet of blanket to keep you warm at night.
This cylindrical leather case can hold up to ten rolled-up sheets of paper or five rolled-up sheets of parchment.
This kit contains a variety of instruments such as clippers, mortar and pestle, and pouches and vials used by herbalists to create remedies and potions. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to identify or apply herbs. Also, proficiency with this kit is required to create antitoxin and potions of healing.
A stout knob of wood forms a simple, but effective, cudgel. These weapons are used to bludgeon foes, bruising flesh and breaking bones.
Whispering to the spirits of Nature, you create one of the following Effects within range:
The wood of a club or quarterstaff you are holding is imbued with nature's power. For the duration, you can use your spellcasting ability instead of Strength for the attack and damage rolls of melee attacks using that weapon, and the weapon's damage die becomes a d8. The weapon also becomes magical, if it isn't already. The spell ends if you cast it again or if you let go of the weapon.
This spell lets you convince a beast that you mean it no harm. Choose a beast that you can see within range. It must see and hear you. If the beast's Intelligence is 4 or higher, the spell fails. Otherwise, the beast must succeed on a Wisdom saving throw or be charmed by you for the spell's duration. If you or one of your companions harms the target, the spell ends.
At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional beast for each slot level above 1st.
You attempt to charm a humanoid you can see within range. It must make a Wisdom saving throw, and does so with advantage if you or your companions are fighting it. If it fails the saving throw, it is charmed by you until the spell ends or until you or your companions do anything harmful to it. The charmed creature regards you as a friendly acquaintance. When the spell ends, the creature knows it was charmed by you.
At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.
You either create or destroy water.
Create Water. You create up to 10 gallons of clean water within range in an open container. Alternatively, the water falls as rain in a 30-foot cube within range.
Destroy Water. You destroy up to 10 gallons of water in an open container within range. Alternatively, you destroy fog in a 30-foot cube within range.
Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you create or destroy 10 additional gallons of water, or the size of the cube increases by 5 feet, for each slot level above 1st.
A creature you touch regains a number of hit points equal to 1d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.
Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d8 for each slot level above 1st.
For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any.
The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.
For the duration, you can sense the presence and location of poisons, poisonous creatures, and diseases within 30 feet of you. You also identify the kind of poison, poisonous creature, or disease in each case.
Grasping weeds and vines sprout from the ground in a 20-foot square starting from a point within range. For the Duration, these Plants turn the ground in the area into difficult terrain.
A creature in the area when you cast the spell must succeed on a Strength saving throw or be Restrained by the entangling Plants until the spell ends. A creature restrained by the plants can use its action to make a Strength check against your spell save DC. On a success, it frees itself.
When the spell ends, the conjured Plants wilt away.
Each object in a 20-foot cube within range is outlined in blue, green, or violet light (your choice). Any creature in the area when the spell is cast is also outlined in light if it fails a Dexterity saving throw. For the duration, objects and affected creatures shed dim light in a 10-foot radius.
Any attack roll against an affected creature or object has advantage if the attacker can see it, and the affected creature or object can't benefit from being invisible.
You create a 20-foot-radius Sphere of fog centered on a point within range. The sphere spreads around corners, and its area is heavily obscured. It lasts for the Duration or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.
At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the radius of the fog increases by 20 feet for each slot level above 1st.
Up to ten berries appear in your hand and are infused with magic for the duration. A creature can use its action to eat one berry. Eating a berry restores 1 hit point, and the berry provides enough nourishment to sustain a creature for one day.
The berries lose their potency if they have not been consumed within 24 hours of the casting of this spell.
A creature of your choice that you can see within range regains hit points equal to 1d4 + your spellcasting ability modifier. This spell has no effect on undead or constructs.
Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d4 for each slot level above 1st.
You touch a creature. The creature's jump distance is tripled until the spell ends.
You touch a creature. The target's speed increases by 10 feet until the spell ends.
All nonmagical food and drink within a 5-foot-radius sphere centered on a point of your choice within range is purified and rendered free of poison and disease.
You gain the ability to comprehend and verbally communicate with beasts for the duration. The knowledge and awareness of many beasts is limited by their intelligence, but at minimum, beasts can give you information about nearby locations and monsters, including whatever they can perceive or have perceived within the past day. You might be able to persuade a beast to perform a small favor for you, at the DM's discretion.
A wave of thunderous force sweeps out from you. Each creature in a 15-foot cube originating from you must make a Constitution saving throw. On a failed save, a creature takes 2d8 thunder damage and is pushed 10 feet away from you. On a successful save, the creature takes half as much damage and isn't pushed.
In addition, unsecured objects that are completely within the area of effect are automatically pushed 10 feet away from you by the spell's effect, and the spell emits a thunderous boom audible out to 300 feet.
Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.
Once a well-respected bureaucrat at the dwarven halls, Riswynn dabbled in intruigue, picked up a few tricks, and ran intro trouble with some nobles. She looks to make a name for herself and regain her social status.
Set of clothes designed specifically to be expensive and show it.
A thin tensile metal blade, light in weight but long in reach designed for quick darting attacks to target weak points in enemy defenses with lightning swiftness.
This two handed bow is somewhat smaller than the traditional longbow variant, making it well suited for rapid attacks while on the move or mounted from horseback.
You have advantage on saving throws against poison, and you have resistance against poison damage.
Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.
As a hill dwarf, you have keen senses, deep intuition, and remarkable resilience.
Ability Score Increase. Your Wisdom score increases by 1.
Dwarven Toughness. Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.
Your dwarf character has an assortment of inborn abilities, part and parcel of dwarven nature.
Ability Score Increase. Your Constitution score increases by 2.
Age. Dwarves mature at the same rate as humans, but they're considered young until they reach the age of 50. On average, they live about 350 years.
Alignment. Most dwarves are lawful, believing firmly in the benefits of a well-ordered society. They tend toward good as well, with a strong sense of fair play and a belief that everyone deserves to share in the benefits of a just order.
Size. Dwarves stand between 4 and 5 feet tall and average about 150 pounds. Your size is Medium.
Speed. Your base walking speed is 25 feet. Your speed is not reduced by wearing heavy armor.
Dwarven Resilience. @Compendium[dnd5e.races.ufysTkqet2Ctmtyi]{Dwarven Resilience} You have advantage on saving throws against poison, and you have resistance against poison damage.
Dwarven Combat Training. You have proficiency with the battleaxe, handaxe, light hammer, and warhammer.
Tool Proficiency. You gain proficiency with the artisan's tools of your choice: smith's tools, brewer's supplies, or mason's tools.
Stonecunning. @Compendium[dnd5e.races.mQPZDRbUhgYTbXKa]{Stonecunning} Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.
Languages. You can speak, read, and write Common and Dwarvish. Dwarvish is full of hard consonants and guttural sounds, and those characteristics spill over into whatever other language a dwarf might speak.
Quillathe cleanses monsters from her woods as a hobby, but now a new force menaces her land and she must band with adventurers to defeat it.
Your elf character has a variety of natural abilities, the result of thousands of years of elven refinement.
Age. Although elves reach physical maturity at about the same age as humans, the elven understanding of adulthood goes beyond physical growth to encompass worldly experience. An elf typically claims adulthood and an adult name around the age of 100 and can live to be 750 years old.
Alignment. Elves love freedom, variety, and self-expression, so they lean strongly toward the gentler aspects of chaos. They value and protect others' freedom as well as their own, and they are more often good than not.
Size. Elves range from under 5 to over 6 feet tall and have slender builds. Your size is Medium.
Darkvision. Accustomed to twilit forests and the night sky, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.
Keen Senses. You have proficiency in the Perception skill.
Trance. Elves don't need to sleep. Instead, they meditate deeply, remaining semiconscious, for 4 hours a day. (The Common word for such meditation is \"trance.\") While meditating, you can dream after a fashion; such dreams are actually mental exercises that have become reflexive through years of practice. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.
Languages. You can speak, read, and write Common and Elvish. Elvish is fluid, with subtle intonations and intricate grammar. Elven literature is rich and varied, and their songs and poems are famous among other races. Many bards learn their language so they can add Elvish ballads to their repertoires.
As a high elf, you have a keen mind and a mastery of at least the basics of magic. In many fantasy gaming worlds, there are two kinds of high elves. One type is haughty and reclusive, believing themselves to be superior to non-elves and even other elves. The other type is more common and more friendly, and often encountered among humans and other races.
Ability Score Increase. Your Intelligence score increases by 1.
Elf Weapon Training. You have proficiency with the longsword, shortsword, shortbow, and longbow.
Cantrip. You know one cantrip of your choice from the wizard spell list. Intelligence is your spellcasting ability for it.
Extra Language. You can speak, read, and write one extra language of your choice.
This spell is a minor magical trick that novice spellcasters use for practice. You create one of the following magical effects within range:
If you cast this spell multiple times, you can have up to three of its non-instantaneous effects active at a time, and you can dismiss such an effect as an action.
Merric was once a vigilante, due to her innate sense of street justice. Though her small size may not seem like much in combat, she more than makes up for it with her violent outbursts of anger.
This enormous axe features two twin crescent blades mounted on either side of a tall spiked shaft. Designed to be wielded with two hands and cleave foes in twain.
A devout follower of her deity and of her society's customs, Akra feels somewhat out of place adventuring in foreign lands. But she feels bound to do everything in her power to bring peace to the region.
This talisman serves as a spellcasting focus, helping the practitioner to channel arcane, primal, or divine energies.
Spellcasting Focus. An arcane focus is a special item designed to channel the power of arcane spells. A sorcerer, warlock, or wizard can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.
This armor consists of a coat and leggings (and perhaps a separate skirt) of leather covered with overlapping pieces of metal, much like the scales of a fish. The suit includes gauntlets.
A heavy bludgeoning weapon mounted to the end of a metal club. The head features spikes and blades designed to puncture armor and shatter the bones below.
You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.
When you use your breath weapon, each creature in the area of the exhalation must make a saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.
After you use your breath weapon, you can't use it again until you complete a short or long rest.
Foundry Note: Edit the Details for this feat, so that the damage type, saving throw, and area of effect match those of your Draconic Ancestry.
You have resistance to the damage type associated with your draconic ancestry.
Your draconic heritage manifests in a variety of traits you share with other dragonborn.
Ability Score Increase. Your Strength score increases by 2, and your Charisma score increases by 1.
Age. Young dragonborn grow quickly. They walk hours after hatching, attain the size and development of a 10-year-old human child by the age of 3, and reach adulthood by 15. They live to be around 80.
Alignment. Dragonborn tend to extremes, making a conscious choice for one side or the other in the cosmic war between good and evil. Most dragonborn are good, but those who side with evil can be terrible villains.
Size. Dragonborn are taller and heavier than humans, standing well over 6 feet tall and averaging almost 250 pounds. Your size is Medium.
Draconic Ancestry. You have draconic ancestry. Choose one type of dragon from the Draconic Ancestry table. Your breath weapon and damage resistance are determined by the dragon type, as shown in the table.
Breath Weapon. @Compendium[dnd5e.races.KL7wx9Q8XNJQir0k]{Breath Weapon} You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.
Damage Resistance. @Compendium[dnd5e.races.XxCuhIk6hAu6rNB0]{Damage Resistance} You have resistance to the damage type associated with your draconic ancestry.
Languages. You can speak, read, and write Common and Draconic. Draconic is thought to be one of the oldest languages and is often used in the study of magic. The language sounds harsh to most other creatures and includes numerous hard consonants and sibilants.
The Life domain focuses on the vibrant positive energy—one of the fundamental forces of the universe—that sustains all life. The gods of life promote vitality and health through healing the sick and wounded, caring for those in need, and driving away the forces of death and undeath. Almost any non-evil deity can claim influence over this domain, particularly agricultural deities (such as Chauntea, Arawai, and Demeter), sun gods (such as Lathander, Pelor, and Re-Horakhty), gods of healing or endurance (such as Ilmater, Mishakal, Apollo, and Diancecht), and gods of home and community (such as Hestia, Hathor, and Boldrei).
You touch one willing creature. Once before the spell ends, the target can roll a d4 and add the number rolled to one ability check of its choice. It can roll the die before or after making the ability check. The spell then ends.
Flame-like radiance descends on a creature that you can see within range. The target must succeed on a Dexterity saving throw or take 1d8 radiant damage. The target gains no benefit from cover for this saving throw.
The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).
You create one of the following magical effects within range:
If you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.
You bless up to three creatures of your choice within range. Whenever a target makes an attack roll or a saving throw before the spell ends, the target can roll 1d4 and add the number rolled to the attack roll or saving throw.
Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.
You ward a creature within range against attack. Until the spell ends, any creature who targets the warded creature with an attack or a harmful spell must first make a Wisdom saving throw. On a failed save, the creature must choose a new target or lose the attack or spell. This spell doesn't protect the warded creature from area effects, such as the explosion of a Fireball.
If the warded creature makes an attack or casts a spell that affects an enemy creature, this spell ends.
Up to three creatures of your choice that you can see within range must make Charisma saving throws. Whenever a target that fails this saving throw makes an attack roll or a saving throw before the spell ends, the target must roll a d4 and subtract the number rolled from the attack roll or saving throw.
For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated.
A flash of light streaks toward a creature of your choice within range. Make a ranged spell attack against the target. On a hit, the target takes 4d6 radiant damage, and the next attack roll made against this target before the end of your next turn has advantage, thanks to the mystical dim light glittering on the target until then.
Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.
Make a melee spell Attack against a creature you can reach. On a hit, the target takes 3d10 necrotic damage.
At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d10 for each slot level above 1st.
Until the spell ends, one willing creature you touch is protected against certain types of creatures: aberrations, celestials, elementals, fey, fiends, and undead.
The protection grants several benefits. Creatures of those types have disadvantage on attack rolls against the target. The target also can't be charmed, frightened, or possessed by them. If the target is already charmed, frightened, or possessed by such a creature, the target has advantage on any new saving throw against the relevant effect.
A shimmering field appears and surrounds a creature of your choice within range, granting it a +2 bonus to AC for the duration.
Morthos's investigation into her complex draconic-infernal ancestry led her to an academic life, but it soon became apparent that the fools in charge were keeping many secrets from her.
This spherical talisman serves as a spellcasting focus, helping the practitioner to channel arcane, primal, or divine energies.
You have resistance to fire damage.
You know the @Compendium[dnd5e.spells.MUO1uYN7JR1hm4dR]{Thaumaturgy} cantrip.
When you reach 3rd level, you can cast the @Compendium[dnd5e.spells.22dPoeXfaaAv4K3h]{Hellish Rebuke} spell as a 2nd-level spell once with this trait and regain the ability to do so when you finish a long rest.
When you reach 5th level, you can cast the @Compendium[dnd5e.spells.S7VbUetIfVT7B6Eq]{Darkness} spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.
Tieflings share certain racial traits as a result of their infernal descent.
Ability Score Increase. Your Intelligence score increases by 1, and your Charisma score increases by 2.
Age. Tieflings mature at the same rate as humans but live a few years longer.
Alignment. Tieflings might not have an innate tendency toward evil, but many of them end up there. Evil or not, an independent nature inclines many tieflings toward a chaotic alignment.
Size. Tieflings are about the same size and build as humans. Your size is Medium.
Darkvision. Thanks to your infernal heritage, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.
Hellish Resistance. @Compendium[dnd5e.races.q71Pe1F8RRtEJt8Q]{Hellish Resistance} You have resistance to fire damage.
Infernal Legacy. @Compendium[dnd5e.races.wJc88B8OP1y1xzMw]{Infernal Legacy} You know the @Compendium[dnd5e.spells.MUO1uYN7JR1hm4dR]{Thaumaturgy} cantrip. When you reach 3rd level, you can cast the @Compendium[dnd5e.spells.22dPoeXfaaAv4K3h]{Hellish Rebuke} spell as a 2nd‑level spell once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the @Compendium[dnd5e.spells.S7VbUetIfVT7B6Eq]{Darkness} spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.
Languages. You can speak, read, and write Common and Infernal.
Your innate magic comes from draconic magic that was mingled with your blood or that of your ancestors. Most often, sorcerers with this origin trace their descent back to a mighty sorcerer of ancient times who made a bargain with a dragon or who might even have claimed a dragon parent. Some of these bloodlines are well established in the world, but most are obscure. Any given sorcerer could be the first of a new bloodline, as a result of a pact or some other exceptional circumstance.
This spell repairs a single break or tear in an object you touch, such as a broken chain link, two halves of a broken key, a torn cloak, or a leaking wineskin. As long as the break or tear is no larger than 1 foot in any dimension, you mend it, leaving no trace of the former damage.
This spell can physically repair a magic item or construct, but the spell can't restore magic to such an object.
You create a sound or an image of an object within range that lasts for the duration. The illusion also ends if you dismiss it as an action or cast this spell again.
If you create a sound, its volume can range from a whisper to a scream. It can be your voice, someone else's voice, a lion's roar, a beating of drums, or any other sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends.
If you create an image of an object—such as a chair, muddy footprints, or a small chest—it must be no larger than a 5-foot cube. The image can't create sound, light, smell, or any other sensory effect. Physical interaction with the image reveals it to be an illusion, because things can pass through it.
If a creature uses its action to examine the sound or image, the creature can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the illusion becomes faint to the creature.
You point your finger toward a creature within range and whisper a message. The target (and only the target) hears the message and can reply in a whisper that only you can hear.
You can cast this spell through solid Objects if you are familiar with the target and know it is beyond the barrier. Magical silence, 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood blocks the spell. The spell doesn't have to follow a straight line and can travel freely around corners or through openings.
You make yourself—including your clothing, armor, weapons, and other belongings on your person—look different until the spell ends or until you use your action to dismiss it. You can seem 1 foot shorter or taller and can appear thin, fat, or in between. You can't change your body type, so you must adopt a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you.
The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to your outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel your head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair.
To discern that you are disguised, a creature can use its action to inspect your appearance and must succeed on an Intelligence (Investigation) check against your spell save DC.
Beiro was a famed entertainer at his local tavern, when he one day ran out of stories to tell. To solve this, he set out to make his own stories, so as to one day tell them again at his tavern.
A lute to evoke awe, wonder, or fear in your audience.
If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.
A chest holds 12 cubic feet or 300 pounds of gear.
This pouch of cosmetics, hair dye, and small props lets you create disguises that change your physical appearance. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a visual disguise.
A complete costume usually used by performers and artists in all manner of entertainment halls or for those that simply refuse to get out of character.
Oil usually comes in a clay flask that holds 1 pint. As an action, you can splash the oil in this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact. Make a ranged attack against a target creature or object, treating the oil as an improvised weapon.
On a hit, the target is covered in oil. If the target takes any fire damage before the oil dries (after 1 minute), the target takes an additional 5 fire damage from the burning oil. You can also pour a flask of oil on the ground to cover a 5-foot-square area, provided that the surface is level.
If lit, the oil burns for 2 rounds and deals 5 fire damage to any creature that enters the area or ends its turn in the area. A creature can take this damage only once per turn.
A lamp casts bright light in a 15-foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil
A drum, of any variety, to evoke awe, wonder, or fear in your audience.
A single sheet of paper.
A vial of aromatic perfume.
Used to clean and wash.
A wax material of a seal which, after melting, hardens quickly forming a bond that is difficult to separate without noticeable tampering.
A willing creature you touch is imbued with bravery. Until the spell ends, the creature is immune to being Frightened and gains Temporary Hit Points equal to your Spellcasting ability modifier at the start of each of its turns. When the spell ends, the target loses any remaining temporary hit points from this spell.
At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.
A creature of your choice that you can see within range perceives everything as hilariously funny and falls into fits of laughter if this spell affects it. The target must succeed on a Wisdom saving throw or fall prone, becoming Incapacitated and unable to stand up for the Duration. A creature with an Intelligence score of 4 or less isn't affected.
At the end of each of its turns, and each time it takes damage, the target can make another Wisdom saving throw. The target has advantage on the saving throw if it's triggered by damage. On a success, the spell ends.
Alignment. Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.
Lucky. When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.
Brave. You have advantage on saving throws against being frightened.
Halfling Nimbleness. You can move through the space of any creature that is of a size larger than yours.
Naturally Stealthy. You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.
This property can be enabled on your character sheet in the Special Traits configuration on the Attributes tab.
It's hard to make generalizations about humans, but your human character has these traits.
Alignment. Gnomes are most often good. Those who tend toward law are sages, engineers, researchers, scholars, investigators, or inventors. Those who tend toward chaos are minstrels, tricksters, wanderers, or fanciful jewelers. Gnomes are good‑hearted, and even the tricksters among them are more playful than vicious.
Size. Gnomes are between 3 and 4 feet tall and average about 40 pounds. Your size is Small.
Gnome Cunning. You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.
Artificer's Lore. Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.
Tinker. You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time.
Alignment. Half-orcs inherit a tendency toward chaos from their orc parents and are not strongly inclined toward good. Half-orcs raised among orcs and willing to live out their lives among them are usually evil.
Size. Half‑orcs are somewhat larger and bulkier than humans, and they range from 5 to well over 6 feet tall. Your size is Medium.
Relentless Endurance. When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.
Savage Attacks. When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.
Enable this feature in the Special Traits section of the character sheet.
Your half‑elf character has some qualities in common with elves and some that are unique to half-elves.
Fey Ancestry. You have advantage on saving throws against being charmed, and magic can't put you to sleep.
Alignment. Most dwarves are lawful, believing firmly in the benefits of a well-ordered society. They tend toward good as well, with a strong sense of fair play and a belief that everyone deserves to share in the benefits of a just order.
Dwarven Resilience. You have advantage on saving throws against poison, and you have resistance against poison damage.
Stonecunning. Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.
Dwarven Toughness should be configured by adding 1 to the \"Per Level\" bonus in HP configuration on your character sheet (accessible using the cog next to your character's hit points).
Alignment. Elves love freedom, variety, and self-expression, so they lean strongly toward the gentler aspects of chaos. They value and protect others' freedom as well as their own, and they are more often good than not.
As a high elf, you have a keen mind and a mastery of at least the basics of magic. In many fantasy gaming worlds, there are two kinds of high elves. One type is haughty and reclusive, believing themselves to be superior to non-elves and even other elves. The other type is more common and more friendly, and often encountered among humans and other races.
Elves don't need to sleep. Instead, they meditate deeply, remaining semiconscious, for 4 hours a day. (The Common word for such meditation is \"trance.\") While meditating, you can dream after a fashion; such dreams are actually mental exercises that have become reflexive through years of practice. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.
Breath Weapon. You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.
Damage Resistance. You have resistance to the damage type associated with your draconic ancestry.
When you use your breath weapon, each creature in the area of the exhalation must make a Constitution saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 cold damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.
Hellish Resistance. You have resistance to fire damage.
Infernal Legacy. You know the thaumaturgy cantrip. When you reach 3rd level, you can cast the hellish rebuke spell as a 2nd-level spell once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the darkness spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.
This armor has been embellished with powerful runes, crafted in sorcerous fires, blessed by a powerful being, or some other event has seen it bequeathed with enhanced protection for the wearer.
You have a bonus to AC while wearing this armor.
(Requires attunement)
When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.
In freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.
When you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.
Whether through demonic blessing, celestial bequeathment, crazed experiment, or skillful craft, this weapon has been enhanced to bring more bloodshed by the bearer.
You have a bonus to attack and damage rolls made with this magic weapon.
Wondrous item, (requires attunement)
An Ioun Stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.
When you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.
A stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.
Stone of Strength. Your Strength score increases by 2, to a maximum of 20, while this pale blue rhomboid orbits your head.
For 1 hour, a candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet.
A pitcher holds 1 gallon of liquid.
These special tools include the items needed to pursue a craft or trade in tinkering.
A tool with a heavy metal head mounted at the end of its handle, used for jobs such as breaking things and driving in nails.
This armor is reinforced with adamantine, one of the hardest substances in existence.
While you're wearing it, any critical hit against you becomes a normal hit.
This wand has 3 charges. While holding it, you can expend 1 charge as an action to cast the @Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic} spell from it. The wand regains 1d3 expended charges daily at dawn.
While wearing this ring, you can turn invisible as an action. Anything you are wearing or carrying is invisible with you. You remain invisible until the ring is removed, until you attack or cast a spell, or until you use a bonus action to become visible again.
This potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type.
When you drink this potion, your Strength score changes to 29 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score.
When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.
Ages past, elves and humans waged a terrible war against evil dragons. When the world seemed doomed, powerful wizards came together and worked their greatest magic, forging five Orbs of Dragonkind (or Dragon Orbs) to help them defeat the dragons. One orb was taken to each of the five wizard towers, and there they were used to speed the war toward a victorious end. The wizards used the orbs to lure dragons to them, then destroyed the dragons with powerful magic.
As the wizard towers fell in later ages, the orbs were destroyed or faded into legend, and only three are thought to survive. Their magic has been warped and twisted over the centuries, so although their primary purpose of calling dragons still functions, they also allow some measure of control over dragons.
Each orb contains the essence of an evil dragon, a presence that resents any attempt to coax magic from it. Those lacking in force of personality might find themselves enslaved to an orb.
An orb is an etched crystal globe about 10 inches in diameter. When used, it grows to about 20 inches in diameter, and mist swirls inside it.
While attuned to an orb, you can use an action to peer into the orb's depths and speak its command word. You must then make a DC 15 Charisma check. On a successful check, you control the orb for as long as you remain attuned to it. On a failed check, you become charmed by the orb for as long as you remain attuned to it.
While you are charmed by the orb, you can't voluntarily end your attunement to it, and the orb casts @Compendium[dnd5e.spells.zMAWdyc8UVb37BK4]{Suggestion} on you at will (save DC 18), urging you to work toward the evil ends it desires. The dragon essence within the orb might want many things: the annihilation of a particular people, freedom from the orb, to spread suffering in the world, to advance the worship of Tiamat, or something else the GM decides.
Call Dragons. While you control the orb, you can use an action to cause the artifact to issue a telepathic call that extends in all directions for 40 miles. Evil dragons in range feel compelled to come to the orb as soon as possible by the most direct route. Dragon deities such as Tiamat are unaffected by this call. Dragons drawn to the orb might be hostile toward you for compelling them against their will. Once you have used this property, it can't be used again for 1 hour.
Destroying an Orb. An Orb of Dragonkind appears fragile but is impervious to most damage, including the attacks and breath weapons of dragons. A @Compendium[dnd5e.spells.HBHbOGKNVVprSlwn]{Disintegrate} spell or one good hit from a +3 magic weapon is sufficient to destroy an orb, however.
This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile} spell from it. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.
The wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.
This item is a complete set of chess pieces and board. The board can also be used for variations of draughts and checkers.
If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.
While this polished agate is on your person, you gain a +1 bonus to ability checks and saving throws.
Wondrous item
This 60-foot length of silk rope weighs 3 pounds and can hold up to 3,000 pounds. If you hold one end of the rope and use an action to speak the command word, the rope animates. As a bonus action, you can command the other end to move toward a destination you choose. That end moves 10 feet on your turn when you first command it and 10 feet on each of your turns until reaching its destination, up to its maximum length away, or until you tell it to stop. You can also tell the rope to fasten itself securely to an object or to unfasten itself, to knot or unknot itself, or to coil itself for carrying.
If you tell the rope to knot, large knots appear at 1- foot intervals along the rope. While knotted, the rope shortens to a 50-foot length and grants advantage on checks made to climb it.
The rope has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the rope drops to 0 hit points, it is destroyed.
This book contains memory and logic exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Intelligence score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.
You gain a +2 bonus to attack and damage rolls made with this magic weapon.
The sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.
The 9 charges reflect a fully charged blade. Please adjust accordingly as required.
This 2-foot-diameter black sphere is a hole in the multiverse, hovering in space and stabilized by a magical field surrounding it.
The sphere obliterates all matter it passes through and all matter that passes through it. Artifacts are the exception. Unless an artifact is susceptible to damage from a Sphere of Annihilation, it passes through the sphere unscathed. Anything else that touches the sphere but isn't wholly engulfed and obliterated by it takes 4d10 force damage.
The sphere is stationary until someone controls it. If you are within 60 feet of an uncontrolled sphere, you can use an action to make a DC 25 Intelligence (Arcana) check. On a success, the sphere levitates in one direction of your choice, up to a number of feet equal to 5 × your Intelligence modifier (minimum 5 feet). On a failure, the sphere moves 10 feet toward you. A creature whose space the sphere enters must succeed on a DC 13 Dexterity saving throw or be touched by it, taking 4d10 force damage.
If you attempt to control a sphere that is under another creature's control, you make an Intelligence (Arcana) check contested by the other creature's Intelligence (Arcana) check. The winner of the contest gains control of the sphere and can levitate it as normal.
If the sphere comes into contact with a planar portal, such as that created by the @Compendium[dnd5e.spells.XbwGq5kDJNvAxNXV]{Gate} spell, or an extradimensional space, such as that within a portable hole, the GM determines randomly what happens, using the @Compendium[dnd5e.tables.hHR0Zw75o9PXYl4c]{Sphere of Annihilation} table.
A brutal curved spike mounted on the back of a sturdy haft - designed for puncturing armor with deadly force.
This robe has cloth patches of various shapes and colors covering it. While wearing the robe, you can use an action to detach one of the patches, causing it to become the object or creature it represents. Once the last patch is removed, the robe becomes an ordinary garment.
The robe has the following patches:
In addition, the robe has [[/r 4d4]] other patches. The GM chooses the patches or determines them randomly from the @Compendium[dnd5e.tables.CTGxcd51szehUGBn]{Robe of Useful Items} table.
It is recommended to delete items here as necessary to track patches left.
The price guide has been calculated at 5 x item for the maximum number of items possible. Please adjust as necessary to reflect the number of patches and the DM's world economy.
These iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they allow the creature to move normally while floating 4 inches above the ground. This effect means the creature can cross or stand above non-solid or unstable surfaces, such as water or lava. The creature leaves no tracks and ignores difficult terrain. In addition, the creature can move at normal speed for up to 12 hours a day without suffering exhaustion from a forced march.
While wearing this ring, you have resistance to cold damage. In addition, you and everything you wear and carry are unharmed by temperatures as low as −50 degrees Fahrenheit.
This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. When you fail a Dexterity saving throw while wearing it, you can use your reaction to expend 1 of its charges to succeed on that saving throw instead.
The potion is a plain indescriminate color and smells slightly foul.
When you drink this potion, you gain resistance to Cold type damage for 1 hour.
For other potions of resistance, roll on the @Compendium[dnd5e.tables.JzLOE4IxcmxjLLuz]{Potion of Resistance} table.
This necklace has 1d6 + 3 beads hanging from it. You can use an action to detach a bead and throw it up to 60 feet away. When it reaches the end of its trajectory, the bead detonates as a 3rd-level @UUID[Compendium.dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball} spell (save DC 15).
You can hurl multiple beads, or even the whole necklace, as one action. When you do so, increase the level of the fireball by 1 for each bead beyond the first.
The 9 charges represent the maximum number of beads possible to find; please adjust as required. The Other Formula button can be used to roll the additional damage for extra beads thrown.
Additionally, here is a price guide depending on the number of beads still remaining. These prices are a guide only and should be adjusted accordingly to reflect the Dungeon Master's world:
You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.
When you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.
Your Strength score is 19 while you wear these gauntlets. They have no effect on you if your Strength is already 19 or higher.
This ring has been inlaid with a garnet stone that seems to glow when it catches the light.
You have resistance to fire damage while wearing this ring.
For other rings of resistance, roll on the @Compendium[dnd5e.tables.MdTxWyYVhTIgtNcG]{Ring of Resistance} table
As an action, you can spill these 1,000 tiny metal balls from their pouch to cover a level area 10 feet square. A creature moving across the covered area must succeed on a DC 10 Dexterity saving throw or fall prone. A creature moving through the area at half speed doesn't need to make the saving throw.
A flexible lash of leather affixed to a wooden handle which is capable of flinging rocks or metal bullets with deadly velocity.
Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.
A blanket to keep you warm at night.
A figurine of wondrous power is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.
The creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.
The creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.
Ivory Goats. These ivory statuettes of goats are always created in sets of three. Each goat looks unique and functions differently from the others.
The Goat of Travail becomes a @Compendium[dnd5e.monsters.rjqk7ToMD8sGr3n4]{Giant Goat} for up to 3 hours. Once it has been used, it can't be used again until 30 days have passed.
Wondrous item, (requires attunement by a spellcaster)
While this pearl is on your person, you can use an action to speak its command word and regain one expended spell slot. If the expended slot was of 4th level or higher, the new slot is 3rd level. Once you use the pearl, it can't be used again until the next dawn.
When you make an Intelligence (Arcana) check to control a Sphere of Annihilation while you are holding this talisman, you double your proficiency bonus on the check. In addition, when you start your turn with control over a Sphere of Annihilation, you can use an action to levitate it 10 feet plus a number of additional feet equal to 10 × your Intelligence modifier.
A type of seat that is fastened to a mount's back, designed to support the rider and affix part of the mount's tack such as stirrups.An exotic saddle is required for riding any aquatic or flying mount.
This sturdy hammer is small enough to be nimbly wielded or used in combination with another weapon.
When you drink this potion, your Strength score changes to 23 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score.
(Requires attunement by a spellcaster)
This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the @Compendium[dnd5e.spells.UJJu9c2UvCzVljiP]{Web} spell (save DC 15) from it.
The crystal ball is about 6 inches in diameter. While touching it, you can cast the @Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying} spell (save DC 17) with it.
While Scrying with the Crystal Ball, you can communicate telepathically with creatures you can see within 30 feet of the spell's sensor. You can also use an action to cast the @Compendium[dnd5e.spells.zMAWdyc8UVb37BK4]{Suggestion} spell (save DC 17) through the sensor on one of those creatures. You don't need to concentrate on this Suggestion to maintain it during its duration, but it ends if Scrying ends.
Once used, the Suggestion power of the Crystal Ball can't be used again until the next dawn.
This wand has 7 charges. While holding it, you can use an action and expend 1 charge to speak its command word. For the next minute, you know the direction of the nearest creature hostile to you within 60 feet, but not its distance from you. The wand can sense the presence of hostile creatures that are ethereal, invisible, disguised, or hidden, as well as those in plain sight. The effect ends if you stop holding the wand.
This ring has been inlaid with an amethyst stone that glitters when it catches the light.
You have resistance to poison damage while wearing this ring.
It is soft white porous sedimentary acarbonate rock, a form of limestone composed of the mineral calcite. Can be used to draw shapes.
The potion's red liquid glimmers when agitated.
You regain 8d4+8 hit points when you drink this potion.
You gain a +1 bonus to AC while you wear this armor. You are considered proficient with this armor even if you lack proficiency with medium armor.
This potion's rose-hued, effervescent liquid contains one easy-to-miss bubble shaped like a heart.
The next time you see a creature within 10 minutes after drinking this philter, you become charmed by that creature for 1 hour. If the creature is of a species and gender you are normally attracted to, you regard it as your true love while you are charmed.
This black or dark blue robe is embroidered with small white or silver stars. You gain a +1 bonus to saving throws while you wear it.
Six stars, located on the robe's upper front portion, are particularly large. While wearing this robe, you can use an action to pull off one of the stars and use it to cast @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile} as a 5th-level spell.
Daily at dusk, 1d6 removed stars reappear on the robe.
While you wear the robe, you can use an action to enter the Astral Plane along with everything you are wearing and carrying. You remain there until you use an action to return to the plane you were on. You reappear in the last space you occupied, or if that space is occupied, the nearest unoccupied space.
You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.VRqG3F72ebgNHyVR]{Armor of Resistance} table.\n
This heavy two-handed mace crushes metal and bone with thunderous force.
Stone of Sustenance. You don't need to eat or drink while this clear spindle orbits your head.
A Bolt of Slaying is a magic weapon meant to slay a particular kind of creature. Some are more focused than others; for example, there are both Bolts of Dragon Slaying and Bolts of Blue Dragon Slaying. If a creature belonging to the type, race, or group associated with a bolt of slaying takes damage from the bolt, the creature must make a DC 17 Constitution saving throw, taking an extra 6d10 piercing damage on a failed save, or half as much extra damage on a successful one.
Once a Bolt of Slaying deals its extra damage to a creature, it becomes a nonmagical bolt.
This cube is 3 inches across and radiates palpable magical energy. The six sides of the cube are each keyed to a different plane of existence, one of which is the Material Plane. The other sides are linked to planes determined by the GM.
You can use an action to press one side of the cube to cast the @Compendium[dnd5e.spells.XbwGq5kDJNvAxNXV]{Gate} spell with it, opening a portal to the plane keyed to that side. Alternatively, if you use an action to press one side twice, you can cast the @Compendium[dnd5e.spells.J6Jpw5XzB5aTeqnz]{Plane Shift} spell (save DC 17) with the cube and transport the targets to the plane keyed to that side.
The cube has 3 charges. Each use of the cube expends 1 charge. The cube regains 1d3 expended charges daily at dawn.
You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.
While the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.
After the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.
While holding this rod, you can use your reaction to absorb a spell that is targeting only you and not with an area of effect. The absorbed spell's effect is canceled, and the spell's energy not the spell itself - is stored in the rod. The energy has the same level as the spell when it was cast. The rod can absorb and store up to 50 levels of energy over the course of its existence. Once the rod absorbs 50 levels of energy, it can't absorb more. If you are targeted by a spell that the rod can't store, the rod has no effect on that spell.
When you become attuned to the rod, you know how many levels of energy the rod has absorbed over the course of its existence, and how many levels of spell energy it currently has stored.
If you are a spellcaster holding the rod, you can convert energy stored in it into spell slots to cast spells you have prepared or know. You can create spell slots only of a level equal to or lower than your own spell slots, up to a maximum of 5th level. You use the stored levels in place of your slots, but otherwise cast the spell as normal. For example, you can use 3 levels stored in the rod as a 3rd-level spell slot.
A newly found rod has 1d10 levels of spell energy stored in it already. A rod that can no longer absorb spell energy and has no energy remaining becomes nonmagical.
The rod currently has the maximum 10 charges for a newly found rod. Adjust as required.
This kit is a leather pouch containing bandages, salves, and splints. The kit has ten uses. As an action, you can expend one use of the kit to stabilize a creature that has 0 hit points, without needing to make a Wisdom (Medicine) check.
Stone of Greater Absorption. While this marbled lavender and green ellipsoid orbits your head, you can use your reaction to cancel a spell of 8th level or lower cast by a creature you can see and targeting only you.
Once the stone has canceled 50 levels of spells, it burns out and turns dull gray, losing its magic. If you are targeted by a spell whose level is higher than the number of spell levels the stone has left, the stone can't cancel it.
While lit, this hooded lantern burns for 6 hours on 1 pint of oil, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. Invisible creatures and objects are visible as long as they are in the lantern's bright light. You can use an action to lower the hood, reducing the light to dim light in a 5-foot radius.
A barrel can hold 40 gallons of liquid or 4 cubic feet of solids.
You gain a +1 bonus to attack and damage rolls made with this magic weapon.
You can use an action to cause thick, black poison to coat the blade. The poison remains for 1 minute or until an attack using this weapon hits a creature. That creature must succeed on a DC 15 Constitution saving throw or take 2d10 poison damage and become poisoned for 1 minute. The dagger can't be used this way again until the next dawn.
This wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.
Spells. While holding the wand, you can use an action to expend some of its charges to cast one of the following spells (save DC 17): @Compendium[dnd5e.spells.l9Ju5KE7bbn3WpTm]{Hold Monster} (5 charges) or @Compendium[dnd5e.spells.3Lo9boi7P2ro6QV4]{Hold Person} (2 charges).
Assisted Escape. While holding the wand, you can use your reaction to expend 1 charge and gain advantage on a saving throw you make to avoid being paralyzed or restrained, or you can expend 1 charge and gain advantage on any check you make to escape a grapple.
This backpack has a central pouch and two side pouches, each of which is an extradimensional space. Each side pouch can hold up to 20 pounds of material, not exceeding a volume of 2 cubic feet. The large central pouch can hold up to 8 cubic feet or 80 pounds of material. The backpack always weighs 5 pounds, regardless of its contents.
Placing an object in the haversack follows the normal rules for interacting with objects. Retrieving an item from the haversack requires you to use an action. When you reach into the haversack for a specific item, the item is always magically on top.
The haversack has a few limitations. If it is overloaded, or if a sharp object pierces it or tears it, the haversack ruptures and is destroyed. If the haversack is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. If the haversack is turned inside out, its contents spill forth, unharmed, and the haversack must be put right before it can be used again. If a breathing creature is placed within the haversack, the creature can survive for up to 10 minutes, after which time it begins to suffocate.
Placing the haversack inside an extradimensional space created by a bag of holding, portable hole, 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 can't be reopened.
You gain a +2 bonus to attack and damage rolls made with this magic weapon. In addition, you can make one attack with it as a bonus action on each of your turns.
Usually used in conjunction with blocks of incense to perfume the air.
The Goat of Terror becomes a @Compendium[dnd5e.monsters.rjqk7ToMD8sGr3n4]{Giant Goat} for up to 3 hours. The goat can't attack, but you can remove its horns and use them as weapons. One horn becomes a @Compendium[dnd5e.items.l88FXiodYofrJT8a]{Lance +1}, and the other becomes a @Compendium[dnd5e.items.bcv7J9culilK68zp]{Longsword +2}. Removing a horn requires an action, and the weapons disappear and the horns return when the goat reverts to figurine form.
In addition, the goat radiates a 30-foot-radius aura of terror while you are riding it. Any creature hostile to you that starts its turn in the aura must succeed on a DC 15 Wisdom saving throw or be frightened of the goat for 1 minute, or until the goat reverts to figurine form. The frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once it successfully saves against the effect, a creature is immune to the goat's aura for the next 24 hours.
Once the figurine has been used, it can't be used again until 15 days have passed.
When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.
When you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.
In addition, you can speak the sword's command word to cause the blade to shed bright light in a 10-foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.
When you drink this potion, you gain resistance to Lightning type damage for 1 hour.
These special tools include the items needed to pursue a craft or trade in carpentry.
While wearing this ring, you have advantage on saving throws against any spell that targets only you (not in an area of effect). In addition, if you roll a 20 for the save and the spell is 7th level or lower, the spell has no effect on you and instead targets the caster, using the slot level, spell save DC, attack bonus, and spellcasting ability of the caster.
These crystal lenses fit over the eyes. They have 3 charges. While wearing them, you can expend 1 charge as an action to cast the @Compendium[dnd5e.spells.eS7XnnApoxRxYXPs]{Charm Person} spell (save DC 13) on a humanoid within 30 feet of you, provided that you and the target can see each other. The lenses regain all expended charges daily at dawn.
A component of a horse's tack that is worn on its head and connected to the reins. It consists of several adjustable leather straps, connecting metal rings, and a mouthpiece called the 'bit' or 'mullen', made of rope, bone, horn, or other hard substance such as bronze, steel, nickel, or wood.
As an action, you can spread a single bag of caltrops to cover a 5-foot-square area. Any creature that enters the area must succeed on a DC 15 Dexterity saving throw or stop moving and take 1 piercing damage. Until the creature regains at least 1 hit point, its walking speed is reduced by 10 feet. A creature moving through the area at half speed doesn't need to make the saving throw.
When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.
A tool with a large, flat, often metal head, attached to a long handle.
A spell scroll bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can read the scroll and cast its spell without providing any material components. Otherwise, the scroll is unintelligible. Casting the spell by reading the scroll requires the spell's normal casting time. Once the spell is cast, the words on the scroll fade, and it crumbles to dust. If the casting is interrupted, the scroll is not lost.
If the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 11 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.
The level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity.
Save DC: 13Attack Bonus: +5.
A wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 11 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.
This ordinary bag, made from gray cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, fuzzy object. The bag weighs 1/2 pound.
You can use an action to pull the fuzzy object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling on the @Compendium[dnd5e.tables.VPGP621PW7k03YfB]{Grey Bag of Tricks} table.
The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature.
Once three fuzzy objects have been pulled from the bag, the bag can't be used again until the next dawn.
While wearing this circlet, you can use an action to cast the @Compendium[dnd5e.spells.7u2obDvuvtZBkTfq]{Scorching Ray} spell with it. When you make the spell's attacks, you do so with an attack bonus of +5. The circlet can't be used this way again until the next dawn.
This ring stores spells cast into it, holding them until the attuned wearer uses them. The ring can store up to 5 levels worth of spells at a time. When found, it contains 1d6 − 1 levels of stored spells chosen by the GM.
Any creature can cast a spell of 1st through 5th level into the ring by touching the ring as the spell is cast. The spell has no effect, other than to be stored in the ring. If the ring can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.
While wearing this ring, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the ring is no longer stored in it, freeing up space.
Found in a small container, this powder resembles very fine sand. It appears to be dust of disappearance, and an @Compendium[dnd5e.spells.3OZnNhunvRtPOQmH]{Identify} spell reveals it to be such. There is enough of it for one use.
When you use an action to throw a handful of the dust into the air, you and each creature that needs to breathe within 30 feet of you must succeed on a DC 15 Constitution saving throw or become unable to breathe, while sneezing uncontrollably. A creature affected in this way is incapacitated and suffocating. As long as it is conscious, a creature can repeat the saving throw at the end of each of its turns, ending the effect on it on a success. The @Compendium[dnd5e.spells.F0GsG0SJzsIOacwV]{Lesser Restoration} spell can also end the effect on a creature.
Stone of Insight. Your Wisdom score increases by 2, to a maximum of 20, while this incandescent blue sphere orbits your head.
While holding this rod, you can use an action to activate it. The rod then instantly transports you and up to 199 other willing creatures you can see to a paradise that exists in an extraplanar space. You choose the form that the paradise takes. It could be a tranquil garden, lovely glade, cheery tavern, immense palace, tropical island, fantastic carnival, or whatever else you can imagine. Regardless of its nature, the paradise contains enough water and food to sustain its visitors. Everything else that can be interacted with inside the extraplanar space can exist only there. For example, a flower picked from a garden in the paradise disappears if it is taken outside the extraplanar space.
For each hour spent in the paradise, a visitor regains hit points as if it had spent 1 Hit Die. Also, creatures don't age while in the paradise, although time passes normally. Visitors can remain in the paradise for up to 200 days divided by the number of creatures present (round down).
When the time runs out or you use an action to end it, all visitors reappear in the location they occupied when you activated the rod, or an unoccupied space nearest that location. The rod can't be used again until ten days have passed.
Onyx Dog. This onyx statuette of a dog can become a @Compendium[dnd5e.monsters.YTpL2c3NO4sOn2UA]{Mastiff} for up to 6 hours. The mastiff has an Intelligence of 8 and can speak Common. It also has darkvision out to a range of 60 feet and can see invisible creatures and objects within that range. Once it has been used, it can't be used again until 7 days have passed.
You can use an action to place this 1-inch metal cube on the ground and speak its command word. The cube rapidly grows into a fortress that remains until you use an action to speak the command word that dismisses it, which works only if the fortress is empty.
The fortress is a square tower, 20 feet on a side and 30 feet high, with arrow slits on all sides and a battlement atop it. Its interior is divided into two floors, with a ladder running along one wall to connect them. The ladder ends at a trapdoor leading to the roof. When activated, the tower has a small door on the side facing you. The door opens only at your command, which you can speak as a bonus action. It is immune to the @Compendium[dnd5e.spells.1nhIxh0DsJsntCfj]{Knock} spell and similar magic, such as that of a @Compendium[dnd5e.items.vZdLYfHlLcZqQ8zc]{Chime of Opening}.
Each creature in the area where the fortress appears must make a DC 15 Dexterity saving throw, taking 10d10 bludgeoning damage on a failed save, or half as much damage on a successful one. In either case, the creature is pushed to an unoccupied space outside but next to the fortress. Objects in the area that aren't being worn or carried take this damage and are pushed automatically.
The tower is made of adamantine, and its magic prevents it from being tipped over. The roof, the door, and the walls each have 100 hit points, immunity to damage from nonmagical weapons excluding siege weapons, and resistance to all other damage. Only a @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell can repair the fortress (this use of the spell counts as replicating a spell of 8th level or lower). Each casting of Wish causes the roof, the door, or one wall to regain 50 hit points.
You are immune to contracting any disease while you wear this pendant. If you are already infected with a disease, the effects of the disease are suppressed you while you wear the pendant.
A crescent hooked blade mounted atop a short haft, light enough to be wielded in one hand for treshing crops or foes.
The Crystal Ball is about 6 inches in diameter. While touching it, you can cast the @Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying} spell (save DC 17) with it.
While Scrying with the Crystal Ball, you have Truesight with a radius of 120 feet centered on the spell's sensor.
While wearing this cloak, you have advantage on Dexterity (Stealth) checks. In an area of dim light or darkness, you can grip the edges of the cloak with both hands and use it to fly at a speed of 40 feet. If you ever fail to grip the cloak's edges while flying in this way, or if you are no longer in dim light or darkness, you lose this flying speed.
While wearing the cloak in an area of dim light or darkness, you can use your action to cast @Compendium[dnd5e.spells.04nMsTWkIFvkbXlY]{Polymorph} on yourself, transforming into a bat. While you are in the form of the bat, you retain your Intelligence, Wisdom, and Charisma scores.
The cloak can't be used this way again until the next dawn.
While wearing this ring, you regain 1d6 hit points every 10 minutes, provided that you have at least 1 hit point. If you lose a body part, the ring causes the missing part to regrow and return to full functionality after 1d6 + 1 days if you have at least 1 hit point the whole time.
Foundry note: you can use the Other Formula to calculate the days needed to regrow a body part if required.
A hardened pebble of stone, bone, or metal which can be flung at high velocity using a sling. It has been imbued with magic.
You have a bonus to attack and damage rolls made with this piece of magic ammunition. Once it hits a target, the ammunition is no longer magical.
A gnarled or polished staff of wood, bone, or more exotic materials like crystal. Such implements are frequently used by spellcasters to hone their arcane focus.
This book contains health and diet tips, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Constitution score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.
These crystal lenses fit over the eyes. While wearing them, you can see much better than normal out to a range of 1 foot. You have advantage on Intelligence (Investigation) checks that rely on sight while searching an area or studying an object within that range.
This clear, gelatinous oil sparkles with tiny, ultrathin silver shards.
The oil can coat one slashing or piercing weapon or up to 5 pieces of slashing or piercing ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item is magical and has a +3 bonus to attack and damage rolls.
Its cloudy green fluid smells of the sea and has a jellyfish-like bubble floating in it.
You can breathe underwater for 1 hour after drinking this potion.
Bronze Griffon. This bronze statuette is of a griffon rampant. It can become a @Compendium[dnd5e.monsters.h052EIIUmRwJum65]{Griffon} for up to 6 hours. Once it has been used, it can't be used again until 5 days have passed.
A sack can hold up to 1 cubic foot or 30 pounds of gear.
Special. You have disadvantage when you use a lance to attack a target within 5 feet of you. Also, a lance requires two hands to wield when you aren't mounted.
You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.
The potion's dense, purple liquid has an ovoid cloud of pink floating in it.
When you drink this potion, you gain the effect of the @Compendium[dnd5e.spells.ppWAAEul0QHtm4er]{Detect Thoughts} spell (save DC 13).
Smoke leaks from the lead-stoppered mouth of this brass bottle, which weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke pours out in a 60-foot radius from the bottle. The cloud's area is heavily obscured. Each minute the bottle remains open and within the cloud, the radius increases by 10 feet until it reaches its maximum radius of 120 feet.
The cloud persists as long as the bottle is open. Closing the bottle requires you to speak its command word as an action. Once the bottle is closed, the cloud disperses after 10 minutes. A moderate wind (11 to 20 miles per hour) can also disperse the smoke after 1 minute, and a strong wind (21 or more miles per hour) can do so after 1 round.
A grimoire given to you by your patron. Choose three cantrips from any class's spell list (the three needn't be from the same list). While the book is on your person, you can cast those cantrips at will. They don't count against your number of cantrips known. If they don't appear on the warlock spell list, they are nonetheless warlock spells for you.
This helm has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the @Compendium[dnd5e.spells.L4J89JXqbKs6puEV]{Teleport} spell from it. The helm regains 1d3 expended charges daily at dawn.
If the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 14 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.
Save DC: 15Attack Bonus: +7.
A wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 14 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.
A spear-tipped metal shaft accompanied by a crescent blade, the halberd is a strong defensive weapon which allows a warrior to fend off foes using the reach of the shaft to attack from safe distance.
While wearing these bracers, you gain a +2 bonus to AC if you are wearing no armor and using no shield.
While you wear this pendant, you stabilize whenever you are dying at the start of your turn. In addition, whenever you roll a Hit Die to regain hit points, double the number of hit points it restores.
You can speak the carpet's command word as an action to make the carpet hover and fly. It moves according to your spoken directions, provided that you are within 30 feet of it.
This carpet is 4 ft. x 6 ft. and has a speed of 60 feet carrying up to 400 lb, or half that speed when carrying up to 800 lb.
Four sizes of carpet of flying exist. The GM chooses the size of a given carpet or determines it randomly from the @Compendium[dnd5e.tables.Z2OG7jt9R8zofxnJ]{Carpet of Flying} table.
This tiny object looks like a feather. Different types of feather tokens exist, each with a different single-use effect. The GM chooses the kind of token or determines it randomly from the @Compendium[dnd5e.tables.OEdr086W61t1DRJo]{Feather Token} table.
Anchor. You can use an action to touch the token to a boat or ship. For the next 24 hours, the vessel can't be moved by any means. Touching the token to the vessel again ends the effect. When the effect ends, the token disappears.
This rod has a flanged head and the following properties.
Alertness. While holding the rod, you have advantage on Wisdom (Perception) checks and on rolls for initiative.
Spells. While holding the rod, you can use an action to cast one of the following spells from it: @Compendium[dnd5e.spells.Mzh95utKDPIrjiH8]{Detect Evil and Good}, @Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic}, @Compendium[dnd5e.spells.2skfDtglk1mGrb3l]{Detect Poison and Disease}, or @Compendium[dnd5e.spells.DQzlB5Y3k791W5bH]{See Invisibility}.
Protective Aura. As an action, you can plant the haft end of the rod in the ground, whereupon the rod's head sheds bright light in a 60-foot radius and dim light for an additional 60 feet. While in that bright light, you and any creature that is friendly to you gain a +1 bonus to AC and saving throws and can sense the location of any invisible hostile creature that is also in the bright light.
The rod's head stops glowing and the effect ends after 10 minutes, or when a creature uses an action to pull the rod from the ground.. This property can't be used again until the next dawn.
This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the @Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball} spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.
This ordinary bag, made from rust-colored cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, fuzzy object. The bag weighs 1/2 pound.
You can use an action to pull the fuzzy object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling on the @Compendium[dnd5e.tables.PLHwT9dC6fCZqkeo]{Rust Bag of Tricks} table.
You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.
Luck. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.
Wish. The sword has 1d4 – 1 charges. While holding it, you can use an action to expend 1 charge and cast the @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.
This rusty iron sphere measures 3 inches in diameter and weighs 1 pound. You can use an action to speak the command word and throw the sphere at a Huge or smaller creature you can see within 60 feet of you. As the sphere moves through the air, it opens into a tangle of metal bands.
Make a ranged attack roll with an attack bonus equal to your Dexterity modifier plus your proficiency bonus. On a hit, the target is restrained until you take a bonus action to speak the command word again to release it. Doing so, or missing with the attack, causes the bands to contract and become a sphere once more.
A creature, including the one restrained, can use an action to make a DC 20 Strength check to break the iron bands. On a success, the item is destroyed, and the restrained creature is freed. If the check fails, any further attempts made by that creature automatically fail until 24 hours have elapsed.
Once the bands are used, they can't be used again until the next dawn.
Command. While holding the wand, you can use an action to expend 1 charge and command another creature to flee or grovel, as with the @Compendium[dnd5e.spells.arzCrMRgcNiQuh43]{Command} spell (save DC 15).
Cone of Fear. While holding the wand, you can use an action to expend 2 charges, causing the wand's tip to emit a 60-foot cone of amber light. Each creature in the cone must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. While it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.
While wearing this helm, you can use an action to cast the @Compendium[dnd5e.spells.ppWAAEul0QHtm4er]{Detect Thoughts} spell (save DC 13) from it. As long as you maintain concentration on the spell, you can use a bonus action to send a telepathic message to a creature you are focused on. It can reply using a bonus action to do so while your focus on it continues.While focusing on a creature with Detect Thoughts, you can use an action to cast the @Compendium[dnd5e.spells.zMAWdyc8UVb37BK4]{Suggestion} spell (save DC 13) from the helm on that creature. Once used, the Suggestion property can't be used again until the next dawn.
While wearing this belt, your Strength score changes to 21. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.
This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 of its charges to cast one of the following spells:
A lyre to evoke awe, wonder, or fear in your audience.
A heavy metal hammer capable of being wielded with a single hand with a shield or in two hands to deliver crushing concussive blows.
When you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.
A multi-pronged spear designed to impale a target in multiple locations, pinning them in place. Often used in combination with a net to entrap and harass foes.
This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. It also has the following additional properties. When one of these properties is used, it can't be used again until the next dawn.
Lightning. When you hit with a melee attack using the staff, you can cause the target to take an extra 2d6 lightning damage.
Thunder. When you hit with a melee attack using the staff, you can cause the staff to emit a crack of thunder, audible out to 300 feet. The target you hit must succeed on a DC 17 Constitution saving throw or become stunned until the end of your next turn.
Lightning Strike. You can use an action to cause a bolt of lightning to leap from the staff's tip in a line that is 5 feet wide and 120 feet long. Each creature in that line must make a DC 17 Dexterity saving throw, taking 9d6 lightning damage on a failed save, or half as much damage on a successful one.
Thunderclap. You can use an action to cause the staff to issue a deafening thunderclap, audible out to 600 feet. Each creature within 60 feet of you (not including you) must make a DC 17 Constitution saving throw. On a failed save, a creature takes 2d6 thunder damage and becomes deafened for 1 minute. On a successful save, a creature takes half damage and isn't deafened.
Thunder and Lightning. You can use an action to use the Lightning Strike and Thunderclap properties at the same time. Doing so doesn't expend the daily use of those properties, only the use of this one.
Inside this heavy cloth bag are [[/r 3d4]] dry beans. The bag weighs 1/2 pound plus 1/4 pound for each bean it contains.
If you dump the bag's contents out on the ground, they explode in a 10-foot radius, extending from the beans. Each creature in the area, including you, must make a DC 15 Dexterity saving throw, taking [[/r 5d4]] fire damage on a failed save, or half as much damage on a successful one. The fire ignites flammable objects in the area that aren't being worn or carried.
If you remove a bean from the bag, plant it in dirt or sand, and then water it, the bean produces an effect 1 minute later from the ground where it was planted. The GM can choose an effect from the @Compendium[dnd5e.tables.4ryVFV5LPHPzRKxl]{Bag of Beans} table, determine it randomly, or create an effect.
(Requires attunement by a paladin)
You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.
While you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.
A gnarled or naturely smooth staff of wood drawn out from a living tree, those who heed nature's call can use this to harness the incredible power of nature.
Spellcasting Focus. A druidic focus is a special item designed to channel the power of spells from the druid's spell list. A druid can use such an item as a spellcasting focus, using it in place of any material component which does not list a cost.
This curved blade is wide near the wrapped handle but arcs and tapers towards a gleaming tip.
This sticky black unguent is thick and heavy in the container, but it flows quickly when poured.
The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of a @Compendium[dnd5e.spells.da0a1t2FqaTjRZGT]{Freedom of Movement} spell for 8 hours.
Alternatively, the oil can be poured on the ground as an action, where it covers a 10‑foot square, duplicating the effect of the @Compendium[dnd5e.spells.etgcR9wqmrhyZ0tx]{Grease} spell in that area for 8 hours.
A creature that drinks this vial of liquid gains advantage on saving throws against poison for 1 hour. It confers no benefit to undead or constructs.
(Requires attunement by a bard, cleric, druid, sorcerer, warlock, or wizard)
While holding this staff, you can use an action to expend 1 of its 10 charges to cast @UUID[Compendium.dnd5e.spells.eS7XnnApoxRxYXPs]{Charm Person}, @UUID[Compendium.dnd5e.spells.arzCrMRgcNiQuh43]{Command}, or @UUID[Compendium.dnd5e.spells.4dSvfvTy2ZIJ3K4k]{Comprehend Languages} from it using your spell save DC. The staff can also be used as a magic quarterstaff.
If you are holding the staff and fail a saving throw against an enchantment spell that targets only you, you can turn your failed save into a successful one. You can't use this property of the staff again until the next dawn. If you succeed on a save against an enchantment spell that targets only you, with or without the staff's intervention, you can use your reaction to expend 1 charge from the staff and turn the spell back on its caster as if you had cast the spell.
The staff regains 1d8 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.
Whip. You can use an action to throw the token to a point within 10 feet of you. The token disappears, and a floating whip takes its place. You can then use a bonus action to make a melee spell attack against a creature within 10 feet of the whip, with an attack bonus of +9. On a hit, the target takes 1d6 + 5 force damage.
As a bonus action on your turn, you can direct the whip to fly up to 20 feet and repeat the attack against a creature within 10 feet of it. The whip disappears after 1 hour, when you use an action to dismiss it, or when you are incapacitated or die.
A large crossbow mounted on a sturdy block of wood which is loaded using a hand crank and fires thick steel bolts with deadly acceleration that punches through armor and flesh.
While wearing this cloak, you can use an action to speak its command word. This turns the cloak into a pair of bat wings or bird wings on your back for 1 hour or until you repeat the command word as an action. The wings give you a flying speed of 60 feet. When they disappear, you can't use them again for 1d12 hours.
A mighty two-handed blade is over four feet long an almost five inches wide. This weapon requires extensive martial training but those proficient in its use are formidable warriors.
This sticky, adhesive fluid ignites when exposed to air. As an action, you can throw this flask up to 20 feet, shattering it on impact. Make a ranged attack against a creature or object, treating the alchemist's fire as an improvised weapon. On a hit, the target takes 1d4 fire damage at the start of each of its turns. A creature can end this damage by using its action to make a DC 10 Dexterity check to extinguish the flames.
A shawm to evoke awe, wonder, or fear in your audience.
A set of panpipes to evoke awe, wonder, or fear in your audience.
It is a device used to measure the psaage of time. It comprises two glass bulbs connected vertically by a narrow neck that allows a regulated trickle of sand from the upper bulb to the lower one.
Marble Elephant. This marble statuette is about 4 inches high and long. It can become an @Compendium[dnd5e.monsters.jLPhaBnMtAbB5dp1]{Elephant} for up to 24 hours. Once it has been used, it can't be used again until 7 days have passed.
This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cause a thin blue ray to streak from the tip toward a creature you can see within 60 feet of you. The target must succeed on a DC 15 Constitution saving throw or be paralyzed for 1 minute. At the end of each of the target's turns, it can repeat the saving throw, ending the effect on itself on a success.
These special tools include the items needed to pursue a craft or trade in cookery.
A punch, kick, head-butt, or similar forceful blow (none of which count as weapons). On a hit, an unarmed strike deals bludgeoning damage equal to 1 + your Strength modifier. You are proficient with your unarmed strikes.
Padded armor consists of quilted layers of cloth and batting. Padded armor offers a comparable level of protection as stiffened leather but is somewhat less encumbering to the wearer.
This emerald contains a mote of elemental energy. When you use an action to break the gem, a @Compendium[dnd5e.monsters.namJz755U1EhvEJa]{Water Elemental} is summoned as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell, and the gem's magic is lost.
While you wear these boots, you can use an action to cast the @Compendium[dnd5e.spells.MRxldJd6C4bsBo3O]{Levitate} spell on yourself at will.
The red in the potion's liquid continuously contracts to a tiny bead and then expands to color the clear liquid around it. Shaking the bottle fails to interrupt this process.
When you drink this potion, you gain the \"reduce\" effect of the @Compendium[dnd5e.spells.WahI41a3goVUg0x1]{Enlarge/Reduce} spell for 1d4 hours (no concentration required).
A bottle holds 1½ pints of liquid.
A mirror made of steel.
This ring is linked to the Elemental Plane of Water.
While wearing this ring, you have advantage on attack rolls against @Compendium[dnd5e.monsters.namJz755U1EhvEJa]{Water Elemental}s, and they have disadvantage on attack rolls against you. In addition, you have access to properties based on the linked plane.
The ring has 5 charges. It regains 1d4 + 1 expended charges daily at dawn. Spells cast from the ring have a save DC of 17.
Ring of Water Elemental Command. You can expend 2 of the ring's charges to cast @Compendium[dnd5e.spells.eEpy1ONlXumKS1mp]{Dominate Monster} on a Water Elemental. In addition, you can stand on and walk across liquid surfaces as if they were solid ground. You can also speak and understand Aquan.
If you help slay a Water Elemental while attuned to the ring, you gain access to the following additional properties:
A stout crescent blade mounted on a thick shaft wrapped in a sturdy grip. This axe is large enough to be wielded with two hands and is adorned with spikes upon the back-side of the blade and the top of the shaft.
This yellow diamond contains a mote of elemental energy. When you use an action to break the gem, an @Compendium[dnd5e.monsters.sApYLZj9PTZ40wJr]{Earth Elemental} is summoned as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell, and the gem's magic is lost.
Ammunition used for bows of all varieties. It has been imbued with magic.
You gain a +3 bonus to attack and damage rolls made with this magic weapon.
The first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.
The sword's bonus to attack and damage rolls have been included; please remember to manually subtract should the user transfer any of the bonus to their AC.
This ring has been inlaid with a spinel stone that gleams when it catches the light.
You have resistance to thunder damage while wearing this ring.
This ring has been inlaid with a topaz stone that shimmers when it catches the light.
You have resistance to radiant damage while wearing this ring.
The typical Crystal Ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the @Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying} spell (save DC 17) with it.
While holding this wand, you gain a bonus to spell attack rolls of +3. In addition, you ignore half cover when making a spell attack.
This rope is 30 feet long and weighs 3 pounds. If you hold one end of the rope and use an action to speak its command word, the other end darts forward to entangle a creature you can see within 20 feet of you. The target must succeed on a DC 15 Dexterity saving throw or become restrained.
You regain 10d4+20 hit points when you drink this potion.
This robe has 3 charges, and it regains 1d3 expended charges daily at dawn. While you wear it, you can use an action and expend 1 charge to cause the garment to display a shifting pattern of dazzling hues until the end of your next turn. During this time, the robe sheds bright light in a 30-foot radius and dim light for an additional 30 feet. Creatures that can see you have disadvantage on attack rolls against you. In addition, any creature in the bright light that can see you when the robe's power is activated must succeed on a DC 15 Wisdom saving throw or become stunned until the effect ends.
When you drink this potion, you gain resistance to Fire type damage for 1 hour.
Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.
Once per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.
While you wear this cloak with its hood up, Wisdom (Perception) checks made to see you have disadvantage, and you have advantage on Dexterity (Stealth) checks made to hide, as the cloak's color shifts to camouflage you. Pulling the hood up or down requires an action.
A chain has 10 hit points. It can be burst with a successful DC 20 Strength check.
When you fall while wearing this ring, you descend 60 feet per round and take no damage from falling.
A lightweight crossbow designed to be held in one hand or strapped to one's wrist to fire light bolts.
A single-handed delicate implement of wood, bone, crystal, or other exotic materials which is commonly used as a focus to assist with arcane spellcasting.
Standard feed suitable for a mount or other animal, often consisting of grains or hay.
While you wear these boots, your steps make no sound, regardless of the surface you are moving across. You also have advantage on Dexterity (Stealth) checks that rely on moving silently.
You regain 4d4+4 hit points when you drink this potion.
This ring is linked to the Elemental Plane of Fire.
While wearing this ring, you have advantage on attack rolls against @Compendium[dnd5e.monsters.8SMQl75HLjhuSeau]{Fire Elemental}s, and they have disadvantage on attack rolls against you. In addition, you have access to properties based on the linked plane.
Ring of Fire Elemental Command. You can expend 2 of the ring's charges to cast @Compendium[dnd5e.spells.eEpy1ONlXumKS1mp]{Dominate Monster} on a Fire Elemental. In addition, you have resistance to fire damage. You can also speak and understand Ignan.
If you help slay a Fire Elemental while attuned to the ring, you gain access to the following additional properties:
When you drink this potion, you gain resistance to Radiant type damage for 1 hour.
While wearing this ring, you can stand on and move across any liquid surface as if it were solid ground.
This javelin is a magic weapon. When you hurl it and speak its command word, it transforms into a bolt of lightning, forming a line 5 feet wide that extends out from you to a target within 120 feet. Each creature in the line excluding you and the target must make a DC 13 Dexterity saving throw, taking 4d6 lightning damage on a failed save, and half as much damage on a successful one. The lightning bolt turns back into a javelin when it reaches the target. Make a ranged weapon attack against the target. On a hit, the target takes damage from the javelin plus 4d6 lightning damage.
The javelin's property can't be used again until the next dawn. In the meantime, the javelin can still be used as a magic weapon.
This ordinary bag, made from tan cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, fuzzy object. The bag weighs 1/2 pound.
You can use an action to pull the fuzzy object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling on the @Compendium[dnd5e.tables.5PTePCTxrk2fIrll]{Tan Bag of Tricks} table.
When you use your action to set it, this trap forms a saw-toothed steel ring that snaps shut when a creature steps on a pressure plate in the center. The trap is affixed by a heavy chain to an immobile object, such as a tree or a spike driven into the ground. A creature that steps on the plate must succeed on a DC 13 Dexterity saving throw or take 1d4 piercing damage and stop moving. Thereafter, until the creature breaks free of the trap, its movement is limited by the length of the chain (typically 3 feet long). A creature can use its action to make a DC 13 Strength check, freeing itself or another creature within its reach on a success. Each failed check deals 1 piercing damage to the trapped creature.
While you wear this cloak, it projects an illusion that makes you appear to be standing in a place near your actual location, causing any creature to have disadvantage on attack rolls against you. If you take damage, the property ceases to function until the start of your next turn.
This property is suppressed while you are incapacitated, restrained, or otherwise unable to move.
While holding this shield, you have resistance to damage from ranged weapon attacks.
Curse. This shield is cursed. Attuning to it curses you until you are targeted by the @Compendium[dnd5e.spells.XZhdgVK3cLoxNCQl]{Remove Curse} spell or similar magic. Removing the shield fails to end the curse on you. Whenever a ranged weapon attack is made against a target within 10 feet of you, the curse causes you to become the target instead.
Obsidian Steed. This polished obsidian horse can become a @Compendium[dnd5e.monsters.5SgVGhQBswgWRwsF]{Nightmare} for up to 24 hours. The nightmare fights only to defend itself. Once it has been used, it can't be used again until 5 days have passed.
If you have a good alignment, the figurine has a 10 percent chance each time you use it to ignore your orders, including a command to revert to figurine form. If you mount the nightmare while it is ignoring your orders, you and the nightmare are instantly transported to a random location on the plane of Hades, where the nightmare reverts to figurine form.
An iron pot holds 1 gallon of liquid.
This tube holds milky liquid with a strong alcohol smell. You can use an action to pour the contents of the tube onto a surface within reach. The liquid instantly dissolves up to 1 square foot of adhesive it touches, including Sovereign Glue.
While you wear these boots, you can use a bonus action and click the boots' heels together. If you do, the boots double your walking speed, and any creature that makes an opportunity attack against you has disadvantage on the attack roll. If you click your heels together again, you end the effect.
When the boots' property has been used for a total of 10 minutes, the magic ceases to function until you finish a long rest.
When you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.
Each of the quiver's three compartments connects to an extradimensional space that allows the quiver to hold numerous items while never weighing more than 2 pounds.
The shortest compartment can hold up to sixty arrows, bolts, or similar objects. The midsize compartment holds up to eighteen javelins or similar objects. The longest compartment holds up to six long objects, such as bows, quarterstaffs, or spears.
You can draw any item the quiver contains as if doing so from a regular quiver or scabbard.
(Requires attunement by a cleric, druid, or warlock)
You can use an action to speak this staff's command word and throw the staff on the ground within 10 feet of you. The staff becomes a @Compendium[dnd5e.monsters.NpvwE1feOHyEqAbP]{Giant Constrictor Snake} under your control and acts on its own initiative count. By using a bonus action to speak the command word again, you return the staff to its normal form in a space formerly occupied by the snake.
On your turn, you can mentally command the snake if it is within 60 feet of you and you aren't incapacitated. You decide what action the snake takes and where it moves during its next turn, or you can issue it a general command, such as to attack your enemies or guard a location.
If the snake is reduced to 0 hit points, it dies and reverts to its staff form. The staff then shatters and is destroyed. If the snake reverts to staff form before losing all its hit points, it regains all of them.
Golden Lions. These gold statuettes of lions are always created in pairs. You can use one figurine or both simultaneously. Each can become a @Compendium[dnd5e.monsters.hjhERRzafCiFFVLA]{Lion} for up to 1 hour. Once a lion has been used, it can't be used again until 7 days have passed.
A Bullet of Slaying is a magic weapon meant to slay a particular kind of creature. Some are more focused than others; for example, there are both Bullets of Dragon Slaying and Bullets of Blue Dragon Slaying. If a creature belonging to the type, race, or group associated with a Bullet of Slaying takes damage from the bullet, the creature must make a DC 17 Constitution saving throw, taking an extra 6d10 bludgeoning damage on a failed save, or half as much extra damage on a successful one.
Once a Bullet of Slaying deals its extra damage to a creature, it becomes a nonmagical bullet.
A type of seat that is fastened to a mount's back, designed to support the rider and affix part of the mount's tack such as stirrups. This type of saddle is suitable for riding mounts.
While holding this shield, you can speak its command word as a bonus action to cause it to animate. The shield leaps into the air and hovers in your space to protect you as if you were wielding it, leaving your hands free. The shield remains animated for 1 minute, until you use a bonus action to end this effect, or until you are incapacitated or die, at which point the shield falls to the ground or into your hand if you have one free.
Stone of Absorption. While this pale lavender ellipsoid orbits your head, you can use your reaction to cancel a spell of 4th level or lower cast by a creature you can see and targeting only you.
Once the stone has canceled 20 levels of spells, it burns out and turns dull gray, losing its magic. If you are targeted by a spell whose level is higher than the number of spell levels the stone has left, the stone can't cancel it.
While wearing this belt, your Strength score changes to 27. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.
An aid for the faithful, this cylinder can be turned on a spindle made of metal, wood, bone, stone, leather, or coarse cotton as the user follows mantra or cantation carved or inlaid upon it.
While holding this shield, you have a bonus to AC of +1. This bonus is in addition to the shield's normal bonus to AC.
Tree. You must be outdoors to use this token. You can use an action to touch it to an unoccupied space on the ground. The token disappears, and in its place a nonmagical oak tree springs into existence. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius.
A dulcimer to evoke awe, wonder, or fear in your audience.
If the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 19 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.
Save DC: 19Attack Bonus: +11.
A wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 19 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.
A gleaming steel point mouted atop a stout wooden haft, the spear may be wielded in one hand or two and can puncture through the heaviest armor with deadly force.
While holding this wand, you gain a bonus to spell attack rolls of +1. In addition, you ignore half cover when making a spell attack.
While wearing this belt, your Strength score changes to 23. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.
The Belt of Stone Giant Strength and the Belt of Frost Giant Strength look different, but they have the same effect.
While a fire burns in this brazier, you can use an action to speak the brazier's command word and summon a @Compendium[dnd5e.monsters.8SMQl75HLjhuSeau]{Fire Elemental}, as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell. The brazier can't be used this way again until the next dawn.
The brazier weighs 5 pounds.
Plate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body.
An intricately carved or shaped rod of bone, stone, metal, or more exotic materials. Such rods are used by spellcasters to focus their attention and arcane energy.
While wearing this plate armor, you gain a +2 bonus to AC. In addition, if an effect moves you against your will along the ground, you can use your reaction to reduce the distance you are moved by up to 10 feet.
Wondrous item, (requires attunement by a creature of evil alignment)
This item symbolizes unrepentant evil. A creature that is neither good nor evil in alignment takes 6d6 necrotic damage upon touching the talisman. A good creature takes 8d6 necrotic damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.
If you are an evil cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.
The talisman has 6 charges. If you are wearing or holding it, you can use an action to expend 1 charge from the talisman and choose one creature you can see on the ground within 120 feet of you. If the target is of good alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman dissolves into foul-smelling slime and is destroyed.
A totem incorporating feathers, fur, bones, and teeth from an animal sacred to the user. Those who heed nature's call are able to harness this to call forth the incredible power of nature.
A type of seat that is fastened to a mount's back, designed to support the rider and affix part of the mount's tack such as stirrups.A military saddle braces the rider, helping you keep your seat on an active mount in battle. It gives you advantage on any check you make to remain mounted.
While wearing these gloves, climbing and swimming don't cost you extra movement, and you gain a +5 bonus to Strength (Athletics) checks made to climb or swim.
These special tools include the items needed to pursue a craft or trade in leatherworking.
This lens allows a closer look at small objects. It is also useful as a substitute for flint and steel when starting fires. Lighting a fire with a magnifying glass requires light as bright as sunlight to focus, tinder to ignite, and about 5 minutes for the fire to ignite. A magnifying glass grants advantage on any ability check made to appraise or inspect an item that is small or highly detailed.
A simple and portable canvas shelter, a tent sleeps two.
Stone of Agility. Your Dexterity score increases by 2, to a maximum of 20, while this deep red sphere orbits your head.
This book contains coordination and balance exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Dexterity score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.
This ring has been inlaid with a jade stone that gleams when it catches the light.
You have resistance to psychic damage while wearing this ring.
A tensile lash made of leather, cord, or chain which can lash out at nearby enemies, dealing lacerations and harrying them from a distance.
A larger variant of the simple club, a hefty wooden shaft with an enormous knot of wood upon the end deals crippling bludgeoning damage to unfortunate foes.
You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a @Compendium[dnd5e.monsters.kz1t6xeXVwODpYb2]{Berserker}. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.
Four types of Horn of Valhalla are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly from the @Compendium[dnd5e.tables.RwerG95cIk2uRpsQ]{Horn of Valhalla} table.
Brass Horn of Valhalla.This brass horn summons [[/r 3d4 + 3]] berserkers when blown and requires proficiency with all simple weapons to be used.
If you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.
You gain a +1 bonus to AC and saving throws while wearing this ring.
These furred boots are snug and feel quite warm. While you wear them, you gain the following benefits:
A book might contain poetry, historical accounts, information pertaining to a particular field of lore, diagrams and notes on gnomish contraptions, or just about anything else that can be represented using text or pictures. A book of spells is a spellbook.
A spike of 10 inches long made of iron. Can be improvised to block doors. Usually sold in bundles of 10.
A shining steel tip to puncture the hardiest of foe's defences, driven in by the force of a galloping steed. Although best suited for mounted combat, the lance can be brought to lethal effect on foot in the right hands.
This armor consists of a fitted metal chest piece worn with supple leather. Although it leaves the legs and arms relatively unprotected, this armor provides good protection for the wearer's vital organs while leaving the wearer relatively unencumbered.
This ring has been inlaid with a sapphire stone that sparkles when it catches the light.
You have resistance to force damage while wearing this ring.
This small black sphere measures 3/4 of an inch in diameter and weighs an ounce. Typically, 1d4 + 4 Beads of Force are found together.
You can use an action to throw the bead up to 60 feet. The bead explodes on impact and is destroyed. Each creature within a 10-foot radius of where the bead landed must succeed on a DC 15 Dexterity saving throw or take 5d4 force damage. A sphere of transparent force then encloses the area for 1 minute. Any creature that failed the save and is completely within the area is trapped inside this sphere. Creatures that succeeded on the save, or are partially within the area, are pushed away from the center of the sphere until they are no longer inside it. Only breathable air can pass through the sphere's wall. No attack or other effect can.
An enclosed creature can use its action to push against the sphere's wall, moving the sphere up to half the creature's walking speed. The sphere can be picked up, and its magic causes it to weigh only 1 pound, regardless of the weight of creatures inside.
A set of clothes worn by travellers.
Whetstone is a sharpening stone. It is used to sharpen the edges of steel tools and implements through grinding and honing.
As an action, you can splash the contents of this vial onto a creature within 5 feet of you or throw the vial up to 20 feet, shattering it on impact. In either case, make a ranged attack against a creature or object, treating the acid as an improvised weapon. On a hit, the target takes 2d6 acid damage.
While wearing this armor, you gain a +1 bonus to AC. You can also use a bonus action to speak the armor's command word and cause the armor to assume the appearance of a normal set of clothing or some other kind of armor. You decide what it looks like, including color, style, and accessories, but the armor retains its normal bulk and weight. The illusory appearance lasts until you use this property again or remove the armor.
These special tools include the items needed to pursue a craft or trade in alchemy.
Made from tough but flexible leather, studded leather is reinforced with close-set rivets or spikes.
If the stone is touching the ground, you can use an action to speak the stone's command word and summon an @Compendium[dnd5e.monsters.sApYLZj9PTZ40wJr]{Earth Elemental}, as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell. The stone can't be used this way again until the next dawn.
The stone weighs 5 pounds.
This carpet is 6 ft. x 9 ft. and has a speed of 30 feet carrying up to 800 lb, or half that speed when carrying up to 1600 lb.
A set of containers that typically come as a pair, connected by a leather strap and affixed to the saddle of a mount.
The Crystal Ball is about 6 inches in diameter. While touching it, you can cast the @Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying}spell (save DC 17) with it.
You can use an action to cast the @Compendium[dnd5e.spells.ppWAAEul0QHtm4er]{Detect Thoughts} spell (save DC 17) while you are Scrying with the Crystal Ball, targeting creatures you can see within 30 feet of the spell's sensor. You don't need to concentrate on this Detect Thoughts to maintain it during its duration, but it ends if Scrying ends.
These crystal lenses fit over the eyes. While wearing them, you have advantage on Wisdom (Perception) checks that rely on sight. In conditions of clear visibility, you can make out details of even extremely distant creatures and objects as small as 2 feet across.
This robe is adorned with eyelike patterns. While you wear the robe, you gain the following benefits:
The eyes on the robe can't be closed or averted. Although you can close or avert your own eyes, you are never considered to be doing so while wearing this robe.
A @Compendium[dnd5e.spells.Bnn9Nzajixvow9xi]{Light} spell cast on the robe or a @Compendium[dnd5e.spells.BP3GCwa66IAw1yTG]{Daylight} spell cast within 5 feet of the robe causes you to be blinded for 1 minute. At the end of each of your turns, you can make a Constitution saving throw (DC 11 for light or DC 15 for daylight), ending the blindness on a success.
This staff can be wielded as a magic quarterstaff that grants a +3 bonus to attack and damage rolls made with it.
The staff has 10 charges. When you hit with a melee attack using it, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 force damage. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.
The Other Formula button has been configured to roll 1d6. Use to calculate any additional force damage.
Swan Boat. You can use an action to touch the token to a body of water at least 60 feet in diameter. The token disappears, and a 50-foot-long, 20-foot- wide boat shaped like a swan takes its place. The boat is self-propelled and moves across water at a speed of 6 miles per hour. You can use an action while on the boat to command it to move or to turn up to 90 degrees. The boat can carry up to thirty-two Medium or smaller creatures. A Large creature counts as four Medium creatures, while a Huge creature counts as nine. The boat remains for 24 hours and then disappears. You can dismiss the boat as an action.
A bullseye lantern casts bright light in a 60-foot cone and dim light for an additional 60 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil.
A set of chain-linked spiked balls lashed to a stout wooden shaft. The flail deals devastating damage when whirled in a deadly arc.
This tome contains information and incantations necessary to make a particular type of golem. The GM chooses the type or determines it randomly from the @Compendium[dnd5e.tables.htMPUPPABjI6fwck]{Manual of Golems} table. Refer to the table below for a detailed description on each golem. To decipher and use the manual, you must be a spellcaster with at least two 5th-level spell slots. A creature that can't use a Manual of Golems and attempts to read it takes 6d6 psychic damage.
To create a golem, you must spend the time shown on the table, working without interruption with the manual at hand and resting no more than 8 hours per day. You must also pay the specified cost to purchase supplies.
Once you finish creating the golem, the book is consumed in eldritch flames. The golem becomes animate when the ashes of the manual are sprinkled on it. It is under your control, and it understands and obeys your spoken commands.
The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges, and if a secret door or trap is within 30 feet of you, the wand pulses and points at the one nearest to you. The wand regains 1d3 expended charges daily at dawn.
A viciously spiked metal orb mounted upon the end of a stout haft makes for a deadly weapon which can puncture armor and flesh alike.
This glass jar, 3 inches in diameter, contains 1d4 + 1 doses of a thick mixture that smells faintly of aloe. The jar and its contents weigh 1/2 pound.
As an action, one dose of the ointment can be swallowed or applied to the skin. The creature that receives it regains 2d8 + 2 hit points, ceases to be poisoned, and is cured of any disease.
The 5 charges reflect the maximum number of doses possible. Similarly, the guide price of 600 gp is calculated at 120 gp per dose. Adjust both as required.
This fine garment is made of black silk interwoven with faint silvery threads. While wearing it, you gain the following benefits:
Objects viewed through a spyglass are magnified to twice their size.
(Requires attunement by a bard, cleric, or druid)
This staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability modifier: @Compendium[dnd5e.spells.uUWb1wZgtMou0TVP]{Cure Wounds} (1 charge per spell level, up to 4th), @Compendium[dnd5e.spells.F0GsG0SJzsIOacwV]{Lesser Restoration} (2 charges), or @Compendium[dnd5e.spells.Pyzmm8R7rVsNAPsd]{Mass Cure Wounds} (5 charges).
The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff vanishes in a flash of light, lost forever.
This ring has been inlaid with a pearl that shimmers when it catches the light.
You have resistance to acid damage while wearing this ring.
As an action, you can splash the contents of this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact. In either case, make a ranged Attack against a target creature, treating the holy water as an Improvised Weapon. If the target is a fiend or Undead, it takes 2d6 radiant damage. A Cleric or Paladin may create holy water by performing a Special ritual. The ritual takes 1 hour to perform, uses 25 gp worth of powdered silver, and requires the caster to expend a 1st-level spell slot.
While holding this shield, you have a bonus to AC of +3. This bonus is in addition to the shield's normal bonus to AC.
This box contains a set of parchment cards. A full deck has 34 cards. A deck found as treasure is usually missing 1d20 − 1 cards.The magic of the deck functions only if cards are drawn at random (you can use an altered deck of playing cards to simulate the deck). You can use an action to draw a card at random from the deck and throw it to the ground at a point within 30 feet of you.
An illusion of one or more creatures forms over the thrown card and remains until dispelled. An illusory creature appears real, of the appropriate size, and behaves as if it were a real creature except that it can do no harm. While you are within 120 feet of the illusory creature and can see it, you can use an action to move it magically anywhere within 30 feet of its card. Any physical interaction with the illusory creature reveals it to be an illusion, because objects pass through it. Someone who uses an action to visually inspect the creature identifies it as illusory with a successful DC 15 Intelligence (Investigation) check. The creature then appears translucent.
The illusion lasts until its card is moved or the illusion is dispelled. When the illusion ends, the image on its card disappears, and that card can't be used again.
This book contains intuition and insight exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Wisdom score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.
A basket holds 2 cubic feet or 40 pounds of gear.
It is a hand tool with a hard head atached perpendiocular to the handle.
This carpet is 5 ft. x 7 ft. and has a speed of 40 feet carrying up to 600 lb, or half that speed when carrying up to 1200 lb.
Serpentine Owl. This serpentine statuette of an owl can become a @Compendium[dnd5e.monsters.VVXly3ue0i3YgGrB]{Giant Owl} for up to 8 hours. Once it has been used, it can't be used again until 2 days have passed. The owl can telepathically communicate with you at any range if you and it are on the same plane of existence.
While wearing these dark lenses, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing the goggles increases its range by 60 feet.
This ring has been inlaid with a citrine stone that glints when it catches the light.
You have resistance to lightning damage while wearing this ring.
This ammunition is used for all varieties of crossbow and is typically a short metal shaft with a narrow piercing tip. It has been imbued with magic.
This ring is linked to the Elemental Plane of Air.
While wearing this ring, you have advantage on attack rolls against @Compendium[dnd5e.monsters.banHjKDMCegbUwYE]{Air Elemental}s, and they have disadvantage on attack rolls against you. In addition, you have access to properties based on the linked plane.
Ring of Air Elemental Command. You can expend 2 of the ring's charges to cast @Compendium[dnd5e.spells.eEpy1ONlXumKS1mp]{Dominate Monster} on an Air Elemental. In addition, when you fall, you descend 60 feet per round and take no damage from falling. You can also speak and understand Auran.
If you help slay an Air Elemental while attuned to the ring, you gain access to the following additional properties:
Beads of this cloudy gray oil form on the outside of its container and quickly evaporate.
The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of the @Compendium[dnd5e.spells.PQuEgKyCdovOvhqN]{Etherealness} spell for 1 hour.
If the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 12 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.
A wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 12 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.
This carpet is 3 ft. x 5 ft. and has a speed of 80 feet carrying up to 200 lb, or half that speed when carrying up to 400 lb.
These special tools include the items needed to pursue a craft or trade in brewing.
This bag superficially resembles a Bag of Holding but is a feeding orifice for a gigantic extradimensional creature. Turning the bag inside out closes the orifice.
The extradimensional creature attached to the bag can sense whatever is placed inside the bag. Animal or vegetable matter placed wholly in the bag is devoured and lost forever. When part of a living creature is placed in the bag, as happens when someone reaches inside it, there is a 50 percent chance that the creature is pulled inside the bag. A creature inside the bag can use its action to try to escape with a successful DC 15 Strength check.
Another creature can use its action to reach into the bag to pull a creature out, doing so with a successful DC 20 Strength check (provided it isn't pulled inside the bag first).
Any creature that starts its turn inside the bag is devoured, its body destroyed.
Inanimate objects can be stored in the bag, which can hold a cubic foot of such material. However, once each day, the bag swallows any objects inside it and spits them out into another plane of existence. The GM determines the time and plane.
If the bag is pierced or torn, it is destroyed, and anything contained within it is transported to a random location on the Astral Plane.
This set of instruments is used for navigation at sea. Proficiency with navigator's tools lets you chart a ship's course and follow navigation charts. In addition, these tools allow you to add your proficiency bonus to any ability check you make to avoid getting lost at sea.
Stone of Intellect. Your Intelligence score increases by 2, to a maximum of 20, while this marbled scarlet and blue sphere orbits your head.
These special tools include the items needed to pursue a craft or trade in jewelry.
While you wear these boots, you have a flying speed equal to your walking speed. You can use the boots to fly for up to 4 hours, all at once or in several shorter flights, each one using a minimum of 1 minute from the duration. If you are flying when the duration expires, you descend at a rate of 30 feet per round until you land.
The boots regain 2 hours of flying capability for every 12 hours they aren't in use.
While wearing this armor, you have resistance to one of the following damage types: bludgeoning, piercing, or slashing. The GM chooses the type or determines it randomly.
Curse. This armor is cursed, a fact that is revealed only when an identify spell is cast on the armor or you attune to it. Attuning to the armor curses you until you are targeted by the remove curse spell or similar magic; removing the armor fails to end the curse. While cursed, you have vulnerability to two of the three damage types associated with the armor (not the one to which it grants resistance).
This item encompasses a wide range of playing card types, both unmarked and marked.
While wearing these bracers, you have proficiency with the longbow and shortbow, and you gain a +2 bonus to damage rolls on ranged attacks made with such weapons.
While wearing this brooch, you have resistance to force damage, and you have immunity to damage from the @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile} spell.
This ring is linked to the Elemental Plane of Earth.
While wearing this ring, you have advantage on attack rolls against @Compendium[dnd5e.monsters.sApYLZj9PTZ40wJr]{Earth Elemental}s, and they have disadvantage on attack rolls against you. In addition, you have access to properties based on the linked plane.
Ring of Earth Elemental Command. You can expend 2 of the ring's charges to cast @Compendium[dnd5e.spells.eEpy1ONlXumKS1mp]{Dominate Monster} on an Earth Elemental. In addition, you can move in difficult terrain that is composed of rubble, rocks, or dirt as if it were normal terrain. You can also speak and understand Terran.
If you help slay an Earth Elemental while attuned to the ring, you gain access to the following additional properties:
While you wear these light shoes, you can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free. You have a climbing speed equal to your walking speed. However, the slippers don't allow you to move this way on a slippery surface, such as one covered by ice or oil.
This slender taper is dedicated to a deity and shares that deity's alignment. The candle's alignment can be detected with the Detect Evil and Good spell. The GM chooses the god and associated alignment or determines the alignment randomly from the @Compendium[dnd5e.tables.C1N8LjO7gOjEWgh4]{Candle of Invocation} table.
The candle's magic is activated when the candle is lit, which requires an action. After burning for 4 hours, the candle is destroyed. You can snuff it out early for use at a later time. Deduct the time it burned in increments of 1 minute from the candle's total burn time.
While lit, the candle sheds dim light in a 30-foot radius. Any creature within that light whose alignment matches that of the candle makes attack rolls, saving throws, and ability checks with advantage. In addition, a cleric or druid in the light whose alignment matches the candle's can cast 1st- level spells he or she has prepared without expending spell slots, though the spell's effect is as if cast with a 1st-level slot.
Alternatively, when you light the candle for the first time, you can cast the @Compendium[dnd5e.spells.XbwGq5kDJNvAxNXV]{Gate}spell with it. Doing so destroys the candle.
Your Intelligence score is 19 while you wear this headband. It has no effect on you if your Intelligence is already 19 or higher.
(ingested)
A creature subjected to this poison must succeed on a DC 11 Constitution saving throw or become @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.lq3TRI6ZlED8ABMx]{Poisoned} for 1 hour. The @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.lq3TRI6ZlED8ABMx]{Poisoned} creature can't knowingly speak a lie, as if under the effect of a @Compendium[dnd5e.spells.CylBa7jR8DSbo8Z3]{Zone of Truth} spell.
You have a swimming speed of 40 feet while wearing this ring.
This bag has an interior space considerably larger than its outside dimensions, roughly 2 feet in diameter at the mouth and 4 feet deep. The bag can hold up to 500 pounds, not exceeding a volume of 64 cubic feet. The bag weighs 15 pounds, regardless of its contents. Retrieving an item from the bag requires an action.
If the bag is overloaded, pierced, or torn, it ruptures and is destroyed, and its contents are scattered in the Astral Plane. If the bag is turned inside out, its contents spill forth, unharmed, but the bag must be put right before it can be used again.
Breathing creatures inside the bag can survive up to a number of minutes equal to 10 divided by the number of creatures (minimum 1 minute), after which time they begin to suffocate.
Placing a Bag of Holding inside an extradimensional space created by a Handy Haversack, Portable Hole, 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 to a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.
These thickly woven fibers are reinforced for use in combat to entrap and entangle even the most dangerous foes, rendering them vulnerable for assault with other weaponry.
Special. A Large or smaller creature hit by a net is restrained until it is freed. A net has no effect on creatures that are formless, or creatures that are Huge or larger. A creature can use its action to make a DC 10 Strength check, freeing itself or another creature within its reach on a success. Dealing 5 slashing damage to the net (AC 10) also frees the creature without harming it, ending the effect and destroying the net. When you use an action, bonus action, or reaction to attack with a net, you can make only one attack regardless of the number of attacks you can normally make.
The potion is separated into brown, silver, and gray layers resembling bands of stone. Shaking the bottle fails to mix the colors.
When you drink this potion, you gain a climbing speed equal to your walking speed for 1 hour. During this time, you have advantage on Strength (Athletics) checks you make to climb.
If the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 18 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.
Save DC: 18Attack Bonus: +10.
A wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 18 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.
An arrow of slaying is a magic weapon meant to slay a particular kind of creature. Some are more focused than others; for example, there are both arrows of dragon slaying and arrows of blue dragon slaying. If a creature belonging to the type, race, or group associated with an arrow of slaying takes damage from the arrow, the creature must make a DC 17 Constitution saving throw, taking an extra 6d10 piercing damage on a failed save, or half as much extra damage on a successful one.Once an arrow of slaying deals its extra damage to a creature, it becomes a nonmagical arrow.
A horn, of any variety, to evoke awe, wonder, or fear in your audience.
These special tools include the items needed to pursue a craft or trade in weaving.
This magic weapon has 3 charges. While holding it, you can use an action and expend 1 charge to release a wave of terror. Each creature of your choice in a 30-foot radius extending from you must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute.
While it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.
The mace regains 1d3 expended charges daily at dawn.
An eyeball bobs in this yellowish liquid but vanishes when the potion is opened.
When you drink this potion, you gain the effect of the @Compendium[dnd5e.spells.cg50KpBkBdPK6vPL]{Clairvoyance} spell.
When you drink this potion, your Strength score changes to 25 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score.
This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the @Compendium[dnd5e.spells.IyikgTEOTv701jgQ]{Lightning Bolt} spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.
A viol to evoke awe, wonder, or fear in your audience.
This staff has 10 charges and regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a swarm of insects consumes and destroys the staff, then disperses.
Spells. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC: @Compendium[dnd5e.spells.czXrVRx6XYRWsHAi]{Giant Insect} (4 charges) or @Compendium[dnd5e.spells.OVikYmSdHliAG2YD]{Insect Plague} (5 charges).
Insect Cloud. While holding the staff, you can use an action and expend 1 charge to cause a swarm of harmless flying insects to spread out in a 30-foot radius from you. The insects remain for 10 minutes, making the area heavily obscured for creatures other than you. The swarm moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the swarm and ends the effect.
While wearing this belt, your Strength score changes to 25. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.
This potion's container seems to hold fog that moves and pours like water.
When you drink this potion, you gain the effect of the @Compendium[dnd5e.spells.2IWiZAJtOGDoKjiz]{Gaseous Form} spell for 1 hour (no concentration required) or until you end the effect as a bonus action.
When you drink this potion, you gain resistance to Psychic type damage for 1 hour.
This small box contains a variety of papers and parchments, pens and inks, seals and sealing wax, gold and silver leaf, and other supplies necessary to create convincing forgeries of physical documents. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a physical forgery of a document.
Found in a small packet, this powder resembles very fine sand. There is enough of it for one use.
When you use an action to throw the dust into the air, you and each creature and object within 10 feet of you become invisible for 2d4 minutes. The duration is the same for all subjects, and the dust is consumed when its magic takes effect.
If a creature affected by the dust attacks or casts a spell, the invisibility ends for that creature.
This armor is made of narrow vertical strips of metal riveted to a backing of leather that is worn over cloth padding. Flexible chain mail protects the joints.
(Requires attunement by a druid)
This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you have a +2 bonus to spell attack rolls.
The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses its properties and becomes a nonmagical quarterstaff.
Spells. You can use an action to expend 1 or more of the staff's charges to cast one of the following spells from it, using your spell save DC: @Compendium[dnd5e.spells.hDOENzjuj5WpLq7B]{Animal Friendship} (1 charge), @Compendium[dnd5e.spells.MCEpGpvovcXagwQS]{Awaken} (5 charges), @Compendium[dnd5e.spells.JPwIEfgUPVebr5AH]{Barkskin} (2 charges), @Compendium[dnd5e.spells.Iv2qqSAT7OkXKPFx]{Locate Animals or Plants} (2 charges), speak with animals (1 charge), @Compendium[dnd5e.spells.2VXGS206tuChoeXy]{Speak with Plants} (3 charges), or @Compendium[dnd5e.spells.AQsBc94ES7W7s7iG]{Wall of Thorns} (6 charges).
You can also use an action to cast the @Compendium[dnd5e.spells.pRMvmknwLf2tdMTj]{Pass without Trace} spell from the staff without using any charges.
Tree Form. You can use an action to plant one end of the staff in fertile earth and expend 1 charge to transform the staff into a healthy tree. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius. The tree appears ordinary but radiates a faint aura of transmutation magic if targeted by @Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic}. While touching the tree and using another action to speak its command word, you return the staff to its normal form. Any creature in the tree falls when it reverts to a staff.
These special tools include the items needed to pursue a craft or trade in painting.
The potion's yellow fluid is streaked with black and swirls on its own.
When you drink this potion, you gain the effect of the @Compendium[dnd5e.spells.Szvk5FEVQW3uhJi5]{Haste} spell for 1 minute (no concentration required).
This rod has a flanged head, and it functions as a magic mace that grants a +3 bonus to attack and damage rolls made with it. The rod has properties associated with six different buttons that are set in a row along the haft. It has three other properties as well, detailed below.
Six Buttons. You can press one of the rod's six buttons as a bonus action. A button's effect lasts until you push a different button or until you push the same button again, which causes the rod to revert to its normal form.
If you press button 1, the rod becomes a flame tongue, as a fiery blade sprouts from the end opposite the rod's flanged head.
If you press button 2, the rod's flanged head folds down and two crescent-shaped blades spring out, transforming the rod into a magic battleaxe that grants a +3 bonus to attack and damage rolls made with it.
If you press button 3, the rod's flanged head folds down, a spear point springs from the rod's tip, and the rod's handle lengthens into a 6-foot haft, transforming the rod into a magic spear that grants a +3 bonus to attack and damage rolls made with it.
If you press button 4, the rod transforms into a climbing pole up to 50 feet long, as you specify. In surfaces as hard as granite, a spike at the bottom and three hooks at the top anchor the pole. Horizontal bars 3 inches long fold out from the sides, 1 foot apart, forming a ladder. The pole can bear up to 4,000 pounds. More weight or lack of solid anchoring causes the rod to revert to its normal form.
If you press button 5, the rod transforms into a handheld battering ram and grants its user a +10 bonus to Strength checks made to break through doors, barricades, and other barriers.
If you press button 6, the rod assumes or remains in its normal form and indicates magnetic north. (Nothing happens if this function of the rod is used in a location that has no magnetic north.) The rod also gives you knowledge of your approximate depth beneath the ground or your height above it.
Drain Life. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Constitution saving throw. On a failure, the target takes an extra 4d6 necrotic damage, and you regain a number of hit points equal to half that necrotic damage. This property can't be used again until the next dawn.
Paralyze. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Strength saving throw. On a failure, the target is paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on a success. This property can't be used again until the next dawn.
Terrify. While holding the rod, you can use an action to force each creature you can see within 30 feet of you to make a DC 17 Wisdom saving throw. On a failure, a target is frightened of you for 1 minute. A frightened target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. This property can't be used again until the next dawn.
While wearing this ring, you are immune to magic that allows other creatures to read your thoughts, determine whether you are lying, know your alignment, or know your creature type. Creatures can telepathically communicate with you only if you allow it.
You can use an action to cause the ring to become invisible until you use another action to make it visible, until you remove the ring, or until you die.
If you die while wearing the ring, your soul enters it, unless it already houses a soul. You can remain in the ring or depart for the afterlife. As long as your soul is in the ring, you can telepathically communicate with any creature wearing it. A wearer can't prevent this telepathic communication.
Plate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body. This particular armor has been inscribed with certain magical runes or other means to imbue power upon it.
While you're wearing this armor, you can speak its command word as an action to gain the effect of the @Compendium[dnd5e.spells.PQuEgKyCdovOvhqN]{Etherealness} spell, which last for 10 minutes or until you remove the armor or use an action to speak the command word again. This property of the armor can't be used again until the next dawn.
While wearing this hat, you can use an action to cast the @Compendium[dnd5e.spells.A3q2gTNqG6fvNGrv]{Disguise Self} spell from it at will. The spell ends if the hat is removed.
This red corundum contains a mote of elemental energy. When you use an action to break the gem, a @Compendium[dnd5e.monsters.8SMQl75HLjhuSeau]{Fire Elemental} is summoned as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell, and the gem's magic is lost.
You gain a +1 bonus to attack and damage rolls made with this magic weapon. In addition, while you are attuned to this weapon, your hit point maximum increases by 1 for each level you have attained.
Curse. This axe is cursed, and becoming attuned to it extends the curse to you. As long as you remain cursed, you are unwilling to part with the axe, keeping it within reach at all times. You also have disadvantage on attack rolls with weapons other than this one, unless no foe is within 60 feet of you that you can see or hear.
Whenever a hostile creature damages you while the axe is in your possession, you must succeed on a DC 15 Wisdom saving throw or go berserk. While berserk, you must use your action each round to attack the creature nearest to you with the axe. If you can make extra attacks as part of the Attack action, you use those extra attacks, moving to attack the next nearest creature after you fell your current target.
If you have multiple possible targets, you attack one at random. You are berserk until you start your turn with no creatures within 60 feet of you that you can see or hear.
Typically found in [[/r 1d4]] pots inside a fine wooden box with a brush (weighing 1 pound in total), these pigments allow you to create three-dimensional objects by painting them in two dimensions. The paint flows from the brush to form the desired object as you concentrate on its image.
Each pot of paint is sufficient to cover 1,000 square feet of a surface, which lets you create inanimate objects or terrain features—such as a door, a pit, flowers, trees, cells, rooms, or weapons—that are up to 10,000 cubic feet. It takes 10 minutes to cover 100 square feet.
When you complete the painting, the object or terrain feature depicted becomes a real, nonmagical object. Thus, painting a door on a wall creates an actual door that can be opened to whatever is beyond. Painting a pit on a floor creates a real pit, and its depth counts against the total area of objects you create.
Nothing created by the pigments can have a value greater than 25 gp. If you paint an object of greater value (such as a diamond or a pile of gold), the object looks authentic, but close inspection reveals it is made from paste, bone, or some other worthless material.
If you paint a form of energy such as fire or lightning, the energy appears but dissipates as soon as you complete the painting, doing no harm to anything.
Fan. If you are on a boat or ship, you can use an action to toss the token up to 10 feet in the air. The token disappears, and a giant flapping fan takes its place. The fan floats and creates a wind strong enough to fill the sails of one ship, increasing its speed by 5 miles per hour for 8 hours. You can dismiss the fan as an action.
Frequently used by the rich and religious alike to scent the air for purposes of pleasure or ritual.
This wooden case can hold up to twenty crossbow bolts.
A crescent blade is mounted on the end of a tall metal shaft. This polearm provies the ability to attack with deadly efficiency from greater range than typical melee weapons.
(Requires attunement by a sorcerer, warlock, or wizard)
This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you gain a +2 bonus to Armor Class, saving throws, and spell attack rolls.
The staff has 20 charges for the following properties. The staff regains 2d8 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its +2 bonus to attack and damage rolls but loses all other properties. On a 20, the staff regains 1d8 + 2 charges.
Power Strike. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 1d6 force damage to the target.
Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spell attack bonus: @Compendium[dnd5e.spells.RpKjTlYASrfqUPVA]{Cone of Cold} (5 charges), @Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball} (5th-level version, 5 charges), @Compendium[dnd5e.spells.WmQpxfjZwF3MGUby]{Globe of Invulnerability} (6 charges), @Compendium[dnd5e.spells.l9Ju5KE7bbn3WpTm]{Hold Monster} (5 charges), @Compendium[dnd5e.spells.MRxldJd6C4bsBo3O]{Levitate} (2 charges), @Compendium[dnd5e.spells.IyikgTEOTv701jgQ]{Lightning Bolt} (5th-level version, 5 charges), @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile} (1 charge), @Compendium[dnd5e.spells.ODhLKBxLnvvLOnw1]{Ray of Enfeeblement} (1 charge), or @Compendium[dnd5e.spells.o9ZCvuD2B1OTcubb]{Wall of Force} (5 charges).
Retributive Strike. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.
You have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.
This small packet contains 1d6 + 4 pinches of dust. You can use an action to sprinkle a pinch of it over water. The dust turns a cube of water 15 feet on a side into one marble-sized pellet, which floats or rests near where the dust was sprinkled. The pellet's weight is negligible.
Someone can use an action to smash the pellet against a hard surface, causing the pellet to shatter and release the water the dust absorbed. Doing so ends that pellet's magic.
An elemental composed mostly of water that is exposed to a pinch of the dust must make a DC 13 Constitution saving throw, taking 10d6 necrotic damage on a failed save, or half as much damage on a successful one.
This flat iron rod has a button on one end. You can use an action to press the button, which causes the rod to become magically fixed in place. Until you or another creature uses an action to push the button again, the rod doesn't move, even if it is defying gravity. The rod can hold up to 8,000 pounds of weight. More weight causes the rod to deactivate and fall. A creature can use an action to make a DC 30 Strength check, moving the fixed rod up to 10 feet on a success.
A ladder 10-foot long, as sturdy or rickety as the hand that crafted or bodged it together.
This potion's clear liquid floats at the top of its container and has cloudy white impurities drifting in it.
When you drink this potion, you gain a flying speed equal to your walking speed for 1 hour and can hover. If you're in the air when the potion wears off, you fall unless you have some other means of staying aloft.
You can use the poison in this vial to coat one slashing or piercing weapon or up to three pieces of ammunition. Applying the poison takes an action. A creature hit by the poisoned weapon or ammunition must make a DC 10 Constitution saving throw or take 1d4 poison damage. Once applied, the poison retains potency for 1 minute before drying.
The abacus, also called a counting frame, is a calculating tool.
A type of seat that is fastened to a mount's back, designed to support the rider and affix part of the mount's tack such as stirrups. This type of saddle is suitable for pack mounts.
While wearing this plate armor, you gain a +1 bonus to AC, and you can understand and speak Abyssal. In addition, the armor's clawed gauntlets turn unarmed strikes with your hands into magic weapons that deal slashing damage, with a +1 bonus to attack rolls and damage rolls and a damage die of 1d8.
Curse. Once you don this cursed armor, you can't doff it unless you are targeted by the @Compendium[dnd5e.spells.XZhdgVK3cLoxNCQl]{Remove Curse} spell or similar magic. While wearing the armor, you have disadvantage on attack rolls against demons and on saving throws against their spells and special abilities.
(Requires attunement outdoors at night)
While wearing this ring in dim light or darkness, you can cast @Compendium[dnd5e.spells.CAxSzHWizrafT033]{Dancing Lights} and @Compendium[dnd5e.spells.Bnn9Nzajixvow9xi]{Light} from the ring at will. Casting either spell from the ring requires an action.
The ring has 6 charges for the following other properties. The ring regains 1d6 expended charges daily at dawn.
Faerie Fire. You can expend 1 charge as an action to cast @Compendium[dnd5e.spells.nqBDWkVOfcGZt4YU]{Faerie Fire} from the ring.
Ball Lightning. You can expend 2 charges as an action to create one to four 3-foot-diameter spheres of lightning. The more spheres you create, the less powerful each sphere is individually.
Each sphere appears in an unoccupied space you can see within 120 feet of you. The spheres last as long as you concentrate (as if concentrating on a spell), up to 1 minute. Each sphere sheds dim light in a 30-foot radius.
As a bonus action, you can move each sphere up to 30 feet, but no farther than 120 feet away from you. When a creature other than you comes within 5 feet of a sphere, the sphere discharges lightning at that creature and disappears. That creature must make a DC 15 Dexterity saving throw. On a failed save, the creature takes lightning damage based on the number of spheres you created.
Shooting Stars. You can expend 1 to 3 charges as an action. For every charge you expend, you launch a glowing mote of light from the ring at a point you can see within 60 feet of you. Each creature within a 15-foot cube originating from that point is showered in sparks and must make a DC 15 Dexterity saving throw, taking 5d4 fire damage on a failed save, or half as much damage on a successful one.
You have resistance to nonmagical damage while you wear this armor. Additionally, you can use an action to make yourself immune to nonmagical damage for 10 minutes or until you are no longer wearing the armor. Once this special action is used, it can't be used again until the next dawn.
While wearing this ring, you can use an action to expend 1 of its 3 charges to cast the @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell from it. The ring becomes nonmagical when you use the last charge.
When you drink this potion, you gain resistance to Poison type damage for 1 hour.
These special tools include the items needed to pursue a craft or trade in cartography.
This painted brass bottle weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke flows out of the bottle. At the end of your turn, the smoke disappears with a flash of harmless fire, and an @Compendium[dnd5e.monsters.LTomFUTBrkRi0Pj5]{Efreeti} appears in an unoccupied space within 30 feet of you.
The first time the bottle is opened, the GM rolls to determine what happens from the @Compendium[dnd5e.tables.yZMFNfocj5qyVuOC]{Efreeti Bottle} table.
This ring has been inlaid with a tourmaline stone that gleams when it catches the light.
You have resistance to cold damage while wearing this ring.
A box with a money slot and detachable base mainly used by priests and the like to collect alms.
This ammunition is designed to be fired through a blowgun using the force of the wielders lungs. These needles are frequently tipped with deadly or crippling venoms.
The red in the potion's liquid continuously expands from a tiny bead to color the clear liquid around it and then contracts. Shaking the bottle fails to interrupt this process.
When you drink this potion, you gain the \"enlarge\" effect of the @Compendium[dnd5e.spells.WahI41a3goVUg0x1]{Enlarge/Reduce} spell for 1d4 hours (no concentration required).
This cape smells faintly of brimstone. While wearing it, you can use it to cast the @Compendium[dnd5e.spells.A4RsPuSvB9wFtz1j]{Dimension Door} spell as an action. This property of the cape can't be used again until the next dawn.
When you disappear, you leave behind a cloud of smoke, and you appear in a similar cloud of smoke at your destination. The smoke lightly obscures the space you left and the space you appear in, and it dissipates at the end of your next turn. A light or stronger wind disperses the smoke.
Stone of Awareness. You can't be surprised while this dark blue rhomboid orbits your head.
Stone of Leadership. Your Charisma score increases by 2, to a maximum of 20, while this marbled pink and green sphere orbits your head.
This wooden broom, which weighs 3 pounds, functions like a mundane broom until you stand astride it and speak its command word. It then hovers beneath you and can be ridden in the air. It has a flying speed of 50 feet. It can carry up to 400 pounds, but its flying speed becomes 30 feet while carrying over 200 pounds. The broom stops hovering when you land.
You can send the broom to travel alone to a destination within 1 mile of you if you speak the command word, name the location, and are familiar with that place. The broom comes back to you when you speak another command word, provided that the broom is still within 1 mile of you.
While wearing this cloak with its hood up, you can breathe underwater, and you have a swimming speed of 60 feet.
Pulling the hood up or down requires an action.
You have a bonus to attack rolls made with this magic weapon.
These special tools include the items needed to pursue a craft or trade in pottery.
These special tools include the items needed to pursue a craft or trade in cobblery.
This kit includes a wooden rod, silken line, corkwood bobbers, steel hooks, lead sinkers, velvet lures, and narrow netting.
While you wear these boots, your walking speed becomes 30 feet, unless your walking speed is higher, and your speed isn't reduced if you are encumbered or wearing heavy armor. In addition, you can jump three times the normal distance, though you can't jump farther than your remaining movement would allow.
Bird. You can use an action to toss the token 5 feet into the air. The token disappears and an enormous, multicolored bird takes its place. The bird has the statistics of a @Compendium[dnd5e.monsters.p980augbCIdpK9ZX]{Roc}, but it obeys your simple commands and can't attack. It can carry up to 500 pounds while flying at its maximum speed (16 miles an hour for a maximum of 144 miles per day, with a one-hour rest for every 3 hours of flying), or 1,000 pounds at half that speed. The bird disappears after flying its maximum distance for a day or if it drops to 0 hit points. You can dismiss the bird as an action.
The 144 charges represent the 144 miles the bird can travel when being able to travel at maximum speed to enable accurate distance-tracking as required.
While wearing this ring, you can speak its command word as an action to summon a particular @Compendium[dnd5e.monsters.5P1VGAZQwOilwZQf]{Djinni} from the Elemental Plane of Air. The djinni appears in an unoccupied space you choose within 120 feet of you. It remains as long as you concentrate (as if concentrating on a spell), to a maximum of 1 hour, or until it drops to 0 hit points. It then returns to its home plane.
While summoned, the djinni is friendly to you and your companions. It obeys any commands you give it, no matter what language you use. If you fail to command it, the djinni defends itself against attackers but takes no other actions.
After the djinni departs, it can't be summoned again for 24 hours, and the ring becomes nonmagical if the djinni dies.
When this 4-foot-tall mirror is viewed indirectly, its surface shows faint images of creatures. The mirror weighs 50 pounds, and it has AC 11, 10 hit points, and vulnerability to bludgeoning damage. It shatters and is destroyed when reduced to 0 hit points.
If the mirror is hanging on a vertical surface and you are within 5 feet of it, you can use an action to speak its command word and activate it. It remains activated until you use an action to speak the command word again.
Any creature other than you that sees its reflection in the activated mirror while within 30 feet of it must succeed on a DC 15 Charisma saving throw or be trapped, along with anything it is wearing or carrying, in one of the mirror's twelve extradimensional cells. This saving throw is made with advantage if the creature knows the mirror's nature, and constructs succeed on the saving throw automatically.
An extradimensional cell is an infinite expanse filled with thick fog that reduces visibility to 10 feet. Creatures trapped in the mirror's cells don't age, and they don't need to eat, drink, or sleep. A creature trapped within a cell can escape using magic that permits planar travel. Otherwise, the creature is confined to the cell until freed.
If the mirror traps a creature but its twelve extradimensional cells are already occupied, the mirror frees one trapped creature at random to accommodate the new prisoner. A freed creature appears in an unoccupied space within sight of the mirror but facing away from it. If the mirror is shattered, all creatures it contains are freed and appear in unoccupied spaces near it.
While within 5 feet of the mirror, you can use an action to speak the name of one creature trapped in it or call out a particular cell by number. The creature named or contained in the named cell appears as an image on the mirror's surface. You and the creature can then communicate normally.
In a similar way, you can use an action to speak a second command word and free one creature trapped in the mirror. The freed creature appears, along with its possessions, in the unoccupied space nearest to the mirror and facing away from it.
If the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 13 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.
A wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 13 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.
While wearing this ring, you can cast the @Compendium[dnd5e.spells.HQfd7jJyULIoGxrZ]{Telekinesis} spell at will, but you can target only objects that aren't being worn or carried.
While you wear this ring, difficult terrain doesn't cost you extra movement. In addition, magic can neither reduce your speed nor cause you to be paralyzed or restrained.
While wearing this ring, you can use an action to speak its command word. When you do so, you can see into and through solid matter for 1 minute. This vision has a radius of 30 feet. To you, solid objects within that radius appear transparent and don't prevent light from passing through them. The vision can penetrate 1 foot of stone, 1 inch of common metal, or up to 3 feet of wood or dirt. Thicker substances block the vision, as does a thin sheet of lead.
Whenever you use the ring again before taking a long rest, you must succeed on a DC 15 Constitution saving throw or gain one level of exhaustion.
Wondrous item, (requires attunement by a creature of good alignment)
This talisman is a mighty symbol of goodness. A creature that is neither good nor evil in alignment takes 6d6 radiant damage upon touching the talisman. An evil creature takes 8d6 radiant damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.
If you are a good cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.
The talisman has 7 charges. If you are wearing or holding it, you can use an action to expend 1 charge from it and choose one creature you can see on the ground within 120 feet of you. If the target is of evil alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman disperses into motes of golden light and is destroyed.
This item encompasses a wide range of dice, both straight and weighted.
The Goat of Traveling can become a Large goat with the same statistics as a @Compendium[dnd5e.monsters.rz8UTUnFT87BsAFR]{Riding Horse}. It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can't be used again until 7 days have passed, when it regains all its charges.
A small bag of sand used by the scholarly to dry freshly inked letters and correspondence quickly and safely for quick dispatch.
Stone of Fortitude. Your Constitution score increases by 2, to a maximum of 20, while this pink rhomboid orbits your head.
Wondrous item (requires attunement)
Your Constitution score is 19 while you wear this amulet. It has no effect on you if your Constitution is already 19 or higher without it.
A poisoner's kit includes the vials, chemicals, and other equipment necessary for the creation of poisons. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to craft or use poisons.
While wearing this belt, you gain the following benefits:
In addition, while attuned to the belt, you have a 50 percent chance each day at dawn of growing a full beard if you're capable of growing one, or a visibly thicker beard if you already have one.If you aren't a dwarf, you gain the following additional benefits while wearing the belt:
This gem has 3 charges. As an action, you can speak the gem's command word and expend 1 charge. For the next 10 minutes, you have truesight out to 120 feet when you peer through the gem.
The gem regains 1d3 expended charges daily at dawn.
These special tools include the items needed to pursue a craft or trade in calligraphy.
A set of pulleys with a cable threaded through them and a hook to attach to objects, a block and tackle allows you to hoist up to four times the weight you can normally lift.
Stone of Reserve. This vibrant purple prism stores spells cast into it, holding them until you use them. The stone can store up to 3 levels worth of spells at a time. When found, it contains 1d4 − 1 levels of stored spells chosen by the GM.
Any creature can cast a spell of 1st through 3rd level into the stone by touching it as the spell is cast. The spell has no effect, other than to be stored in the stone. If the stone can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.
While this stone orbits your head, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the stone is no longer stored in it, freeing up space.
While holding this wand, you gain a bonus to spell attack rolls of +2. In addition, you ignore half cover when making a spell attack.
When you drink this potion, you gain resistance to Force type damage for 1 hour.
A ring with specific design to denote membership and rank within a house or organization.
This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the @Compendium[dnd5e.spells.04nMsTWkIFvkbXlY]{Polymorph} spell (save DC 15) from it.
While holding this shield, you have advantage on saving throws against spells and other magical effects, and spell attacks have disadvantage against you.
(Requires attunement by a dwarf)
You gain a +3 bonus to attack and damage rolls made with this magic weapon. It has the thrown property with a normal range of 20 feet and a long range of 60 feet. When you hit with a ranged attack using this weapon, it deals an extra 1d8 damage or, if the target is a giant, 2d8 damage. Immediately after the attack, the weapon flies back to your hand.
To apply the additional damage to a giant, please use the Other Formula one more time.
This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While you hold it, you gain a +2 bonus to spell attack rolls.
The staff has 50 charges for the following properties. It regains 4d6 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 20, the staff regains 1d12 + 1 charges.
Spell Absorption. While holding the staff, you have advantage on saving throws against spells. In addition, you can use your reaction when another creature casts a spell that targets only you. If you do, the staff absorbs the magic of the spell, canceling its effect and gaining a number of charges equal to the absorbed spell's level. However, if doing so brings the staff's total number of charges above 50, the staff explodes as if you activated its Retributive Strike (see below).
Spells. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} (7 charges), @Compendium[dnd5e.spells.15Fa6q1nH27XfbR8]{Dispel Magic} (3 charges), @Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball} (7th-level version, 7 charges), @Compendium[dnd5e.spells.FjYE214HTERCRZNm]{Flaming Sphere} (2 charges), @Compendium[dnd5e.spells.WN2LWEljYU6QqnRH]{Ice Storm} (4 charges), @Compendium[dnd5e.spells.1N8dDMMgZ1h1YJ3B]{Invisibility} (2 charges), @Compendium[dnd5e.spells.1nhIxh0DsJsntCfj]{Knock} (2 charges), @Compendium[dnd5e.spells.IyikgTEOTv701jgQ]{Lightning Bolt} (7th-level version, 7 charges), @Compendium[dnd5e.spells.d9MwcXi7Il3HROXd]{Passwall} (5 charges), @Compendium[dnd5e.spells.J6Jpw5XzB5aTeqnz]{Plane Shift} (7 charges), @Compendium[dnd5e.spells.HQfd7jJyULIoGxrZ]{Telekinesis} (5 charges), @Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire} (4 charges), or @Compendium[dnd5e.spells.UJJu9c2UvCzVljiP]{Web} (2 charges).
You can also use an action to cast one of the following spells from the staff without using any charges: @Compendium[dnd5e.spells.8cse7rit0oswRPUP]{Arcane Lock}, @Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic}, @Compendium[dnd5e.spells.WahI41a3goVUg0x1]{Enlarge/Reduce}, @Compendium[dnd5e.spells.Bnn9Nzajixvow9xi]{Light}, @Compendium[dnd5e.spells.Utk1OQRwYkMkFRD3]{Mage Hand}, or @Compendium[dnd5e.spells.xmDBqZhRVrtLP8h2]{Protection from Evil and Good}.
When you drink this potion, your Strength score changes to 27 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score.
A flask holds 1 pint of liquid.
This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges and choose a target within 120 feet of you. The target can be a creature, an object, or a point in space. Roll on the @Compendium[dnd5e.tables.X03rbSjVcNNJNqa8]{Wand of Wonder} table to discover what happens.
If the effect causes you to cast a spell from the wand, the spell's save DC is 15. If the spell normally has a range expressed in feet, its range becomes 120 feet if it isn't already. If an effect covers an area, you must center the spell on and include the target. If an effect has multiple possible subjects, the GM randomly determines which ones are affected.
The wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into dust and is destroyed.
Silver Horn of Valhalla.This silver horn summons [[/r 3d4 + 3]] berserkers when blown and has no other requirements.
A symbol engraved or carefully inlaid on a shield or some other device representing a deity through which a true believer can call forth their power and in doing so spread the faith.
(Requires attunement by a druid, sorcerer, warlock, or wizard)
You have resistance to fire damage while you hold this staff.
The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: @Compendium[dnd5e.spells.5SuJewoa1CRWaj1F]{Burning Hands} (1 charge), @Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball} (3 charges), or @Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire} (4 charges).
The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff blackens, crumbles into cinders, and is destroyed.
This iron bottle has a brass stopper. You can use an action to speak the flask's command word, targeting a creature that you can see within 60 feet of you. If the target is native to a plane of existence other than the one you're on, the target must succeed on a DC 17 Wisdom saving throw or be trapped in the flask. If the target has been trapped by the flask before, it has advantage on the saving throw. Once trapped, a creature remains in the flask until released. The flask can hold only one creature at a time. A creature trapped in the flask doesn't need to breathe, eat, or drink and doesn't age.
You can use an action to remove the flask's stopper and release the creature the flask contains. The creature is friendly to you and your companions for 1 hour and obeys your commands for that duration. If you give no commands or give it a command that is likely to result in its death, it defends itself but otherwise takes no actions. At the end of the duration, the creature acts in accordance with its normal disposition and alignment.
An @Compendium[dnd5e.spells.3OZnNhunvRtPOQmH]{Identify} spell reveals that a creature is inside the flask, but the only way to determine the type of creature is to open the flask. A newly discovered bottle might already contain a creature chosen by the GM or determined randomly from the @Compendium[dnd5e.tables.JDtZNDaAirupdm2O]{Iron Flask} table.\n
You gain a +1 bonus to AC and saving throws while you wear this cloak.
When you hit a fiend or an undead with this magic weapon, that creature takes an extra 2d6 radiant damage. If the target has 25 hit points or fewer after taking this damage, it must succeed on a DC 15 Wisdom saving throw or be destroyed. On a successful save, the creature becomes frightened of you until the end of your next turn.
While you hold this weapon, it sheds bright light in a 20-foot radius and dim light for an additional 20 feet.
When you nock an arrow on this bow, it whispers in Elvish, \"Swift defeat to my enemies.\" When you use this weapon to make a ranged attack, you can, as a command phrase, say, \"Swift death to you who have wronged me.\" The target of your attack becomes your sworn enemy until it dies or until dawn seven days later. You can have only one such sworn enemy at a time. When your sworn enemy dies, you can choose a new one after the next dawn.
When you make a ranged attack roll with this weapon against your sworn enemy, you have advantage on the roll. In addition, your target gains no benefit from cover, other than total cover, and you suffer no disadvantage due to long range. If the attack hits, your sworn enemy takes an extra 3d6 piercing damage.
While your sworn enemy lives, you have disadvantage on attack rolls with all other weapons.
A bucket holds 3 gallons of liquid or ½ cubic foot of solids.
While holding this fan, you can use an action to cast the @Compendium[dnd5e.spells.FSMy6VAjDnXY9vWz]{Gust of Wind} spell (save DC 13) from it. Once used, the fan shouldn't be used again until the next dawn. Each time it is used again before then, it has a cumulative 20 percent chance of not working and tearing into useless, nonmagical tatters.
A vial can hold up to 4 ounces of liquid.
When you drink this potion, your Strength score changes to 21 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score.
Wondrous item, (requires attunement by a sorcerer, warlock, or wizard)
This elegant garment is made from exquisite cloth of white, gray, or black and adorned with silvery runes. The robe's color corresponds to the alignment for which the item was created. A white robe was made for good, gray for neutral, and black for evil. You can't attune to a robe of the archmagi that doesn't correspond to your alignment. You gain these benefits while wearing the robe:
If the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 17 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.
A wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 17 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.
This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.
These iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they increase the creature's walking speed by 30 feet.
Silver Raven. This silver statuette of a raven can become a @Compendium[dnd5e.monsters.LPdX5YLlwci0NDZx]{Raven} for up to 12 hours. Once it has been used, it can't be used again until 2 days have passed. While in raven form, the figurine allows you to cast the @Compendium[dnd5e.spells.X8w9EzYLGc4vQ1H2]{Animal Messenger} spell on it at will.
Agitating this muddy liquid brings little bits into view: a fish scale, hummingbird tongue, a cat claw, or a squirrel hair.
When you drink this potion, you can cast the @Compendium[dnd5e.spells.hDOENzjuj5WpLq7B]{Animal Friendship} spell (save DC 13) for 1 hour at will.
Stone of Mastery. Your proficiency bonus increases by 1 while this pale green prism orbits your head.
This armor is leather armor with heavy rings sewn into it. The rings help reinforce the armor against blows from swords and axes. Ring mail is inferior to chain mail, and it's usually worn only by those who can't afford better armor.
You must be proficient with wind instruments to use these pipes. While you are attuned to the pipes, ordinary rats and giant rats are indifferent toward you and will not attack you unless you threaten or harm them.
The pipes have 3 charges. If you play the pipes as an action, you can use a bonus action to expend 1 to 3 charges, calling forth one @Compendium[dnd5e.monsters.8ihbbjkaOFTPbI73]{Swarm of Rats} with each expended charge, provided that enough rats are within half a mile of you to be called in this fashion (as determined by the GM). If there aren't enough rats to form a swarm, the charge is wasted. Called swarms move toward the music by the shortest available route but aren't under your control otherwise. The pipes regain 1d3 expended charges daily at dawn.
Whenever a swarm of rats that isn't under another creature's control comes within 30 feet of you while you are playing the pipes, you can make a Charisma check contested by the swarm's Wisdom check. If you lose the contest, the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours. If you win the contest, the swarm is swayed by the pipes' music and becomes friendly to you and your companions for as long as you continue to play the pipes each round as an action. A friendly swarm obeys your commands. If you issue no commands to a friendly swarm, it defends itself but otherwise takes no actions. If a friendly swarm starts its turn and can't hear the pipes' music, your control over that swarm ends, and the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours.
This trident is a magic weapon. It has 3 charges. While you carry it, you can use an action and expend 1 charge to cast @Compendium[dnd5e.spells.LrPvWHBPmiMQQsKB]{Dominate Beast} (save DC 15) from it on a beast that has an innate swimming speed. The trident regains 1d3 expended charges daily at dawn.
This book contains guidelines for influencing and charming others, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Charisma score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.
You must be proficient with wind instruments to use these pipes. They have 3 charges. You can use an action to play them and expend 1 charge to create an eerie, spellbinding tune. Each creature within 30 feet of you that hears you play must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. If you wish, all creatures in the area that aren't hostile toward you automatically succeed on the saving throw. A creature that fails the saving throw can repeat it at the end of each of its turns, ending the effect on itself on a success. A creature that succeeds on its saving throw is immune to the effect of these pipes for 24 hours.
The pipes regain 1d3 expended charges daily at dawn.
Usually found in a box or pouch, this deck contains a number of cards made of ivory or vellum. Most (75 percent) of these decks have only thirteen cards, but the rest have twenty-two.
Before you draw a card, you must declare how many cards you intend to draw and then draw them randomly (you can use an altered deck of playing cards to simulate the deck). Any cards drawn in excess of this number have no effect. Otherwise, as soon as you draw a card from the deck, its magic takes effect. You must draw each card no more than 1 hour after the previous draw. If you fail to draw the chosen number, the remaining number of cards fly from the deck on their own and take effect all at once.
Once a card is drawn, it fades from existence. Unless the card is the Fool or the Jester, the card reappears in the deck, making it possible to draw the same card twice.
*Found only in a deck with twenty-two cards
Balance. Your mind suffers a wrenching alteration, causing your alignment to change. Lawful becomes chaotic, good becomes evil, and vice versa. If you are true neutral or unaligned, this card has no effect on you.
Comet. If you single-handedly defeat the next hostile monster or group of monsters you encounter, you gain experience points enough to gain one level. Otherwise, this card has no effect.
Donjon. You disappear and become entombed in a state of suspended animation in an extradimensional sphere. Everything you were wearing and carrying stays behind in the space you occupied when you disappeared. You remain imprisoned until you are found and removed from the sphere. You can't be located by any divination magic, but a @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} can reveal the location of your prison. You draw no more cards.
Euryale. The card's medusa-like visage curses you. You take a −2 penalty on saving throws while cursed in this way. Only a god or the magic of The Fates card can end this curse.
The Fates. Reality's fabric unravels and spins anew, allowing you to avoid or erase one event as if it never happened. You can use the card's magic as soon as you draw the card or at any other time before you die.
Flames. A powerful devil becomes your enemy. The devil seeks your ruin and plagues your life, savoring your suffering before attempting to slay you. This enmity lasts until either you or the devil dies.
Fool. You lose 10,000 XP, discard this card, and draw from the deck again, counting both draws as one of your declared draws. If losing that much XP would cause you to lose a level, you instead lose an amount that leaves you with just enough XP to keep your level.
Gem. Twenty-five pieces of jewelry worth 2,000 gp each or fifty gems worth 1,000 gp each appear at your feet.
Idiot. Permanently reduce your Intelligence by 1d4 + 1 (to a minimum score of 1). You can draw one additional card beyond your declared draws.
Jester. You gain 10,000 XP, or you can draw two additional cards beyond your declared draws.
Key. A rare or rarer magic weapon with which you are proficient appears in your hands. The GM chooses the weapon.
Knight. You gain the service of a 4th-level fighter who appears in a space you choose within 30 feet of you. The fighter is of the same race as you and serves you loyally until death, believing the fates have drawn him or her to you. You control this character.
Moon. You are granted the ability to cast the @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell 1d3 times.
Rogue. A nonplayer character of the GM's choice becomes hostile toward you. The identity of your new enemy isn't known until the NPC or someone else reveals it. Nothing less than a @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell or divine intervention can end the NPC's hostility toward you.
Ruin. All forms of wealth that you carry or own, other than magic items, are lost to you. Portable property vanishes. Businesses, buildings, and land you own are lost in a way that alters reality the least. Any documentation that proves you should own something lost to this card also disappears.
Skull. You summon an avatar of death - a ghostly humanoid skeleton clad in a tattered black robe and carrying a spectral scythe. It appears in a space of the GM's choice within 10 feet of you and attacks you, warning all others that you must win the battle alone. The avatar fights until you die or it drops to 0 hit points, whereupon it disappears. If anyone tries to help you, the helper summons its own avatar of death. A creature slain by an avatar of death can't be restored to life.
Medium undead, neutral evil
Armor Class 20Hit Points half the hit point maximum of its summonerSpeed 60 ft., fly 60 ft. (hover)
Damage Immunities necrotic, poisonCondition Immunities charmed, frightened, paralyzed, petrified, poisoned, unconsciousSenses darkvision 60 ft., truesight 60 ft., passive Perception 13Languages all languages known to its summonerChallenge -- (0 XP)
Incorporeal Movement. The avatar can move through other creatures and objects as if they were difficult terrain. It takes 5 (1d10) force damage if it ends its turn inside an object.Turning Immunity. The avatar is immune to features that turn undead.
Reaping Scythe. The avatar sweeps its spectral scythe through a creature within 5 feet of it, dealing 7 (1d8 + 3) slashing damage plus 4 (1d8) necrotic damage.
Star. Increase one of your ability scores by 2. The score can exceed 20 but can't exceed 24.
Sun. You gain 50,000 XP, and a wondrous item (which the GM determines randomly) appears in your hands.
Talons. Every magic item you wear or carry disintegrates. Artifacts in your possession aren't destroyed but do vanish.
Throne. You gain proficiency in the Persuasion skill, and you double your proficiency bonus on checks made with that skill. In addition, you gain rightful ownership of a small keep somewhere in the world. However, the keep is currently in the hands of monsters, which you must clear out before you can claim the keep as yours.
Vizier. At any time you choose within one year of drawing this card, you can ask a question in meditation and mentally receive a truthful answer to that question. Besides information, the answer helps you solve a puzzling problem or other dilemma. In other words, the knowledge comes with wisdom on how to apply it.
The Void. This black card spells disaster. Your soul is drawn from your body and contained in an object in a place of the GM's choice. One or more powerful beings guard the place. While your soul is trapped in this way, your body is incapacitated. A @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell can't restore your soul, but the spell reveals the location of the object that holds it. You draw no more cards.
This delicate silver chain has a brilliant-cut black gem pendant. While you wear it, poisons have no effect on you. You are immune to the poisoned condition and have immunity to poison damage.
These gloves seem to almost meld into your hands when you don them. When a ranged weapon attack hits you while you're wearing them, you can use your reaction to reduce the damage by 1d10 + your Dexterity modifier, provided that you have a free hand. If you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in that hand.
You have advantage on saving throws against spells while you wear this cloak.
A primitive, but deadly, weapon favored by tribes and guerrila fighters. The darts fired from this gun can puncture and deliver lethal doses of venom.
Made of interlocking metal rings, a chain shirt is worn between layers of clothing or leather. This armor offers modest protection to the wearer's upper body and allows the sound of the rings rubbing against one another to be muffled by outer layers.
This concoction looks, smells, and tastes like a potion of healing or other beneficial potion.
However, it is actually poison masked by illusion magic. An identify spell reveals its true nature.
If you drink it, you take 3d6 poison damage, and you must succeed on a DC 13 Constitution saving throw or be poisoned. At the start of each of your turns while you are poisoned in this way, you take 3d6 poison damage. At the end of each of your turns, you can repeat the saving throw. On a successful save, the poison damage you take on your subsequent turns decreases by 1d6. The poison ends when the damage decreases to 0.
To apply the reduced damage from a successful Constitution save, please use the Other Formula (set at 1d6) as required.
This ring has been inlaid with a jet stone that seems to swallow any light that it catches.
You have resistance to necrotic damage while wearing this ring.
Iron Horn of Valhalla.This iron horn summons [[/r 5d4 + 5]] berserkers when blown and requires proficiency with all martial weapons to be used.
A tool resembling a spade with a broad blade and typically upturned sides, used for moving coals, earth, snow or other material.
This stoppered flask sloshes when shaken, as if it contains water. The decanter weighs 2 pounds.
You can use an action to remove the stopper and speak one of three command words, whereupon an amount of fresh water or salt water (your choice) pours out of the flask. The water stops pouring out at the start of your next turn. Choose from the following options:
• \"Stream\" produces 1 gallon of water.
• \"Fountain\" produces 5 gallons of water.
• \"Geyser\" produces 30 gallons of water that gushes forth in a geyser 30 feet long and 1 foot wide. As a Bonus Action while holding the decanter, you can aim the geyser at a creature you can see within 30 feet of you. The target must succeed on a DC 13 Strength saving throw or take 1d4 bludgeoning damage and fall prone. Instead of a creature, you can target an object that isn't being worn or carried and that weighs no more than 200 pounds. The object is either knocked over or pushed up to 15 feet away from you.
This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 to 3 of its charges to attack one creature you can see within 60 feet of you. The ring produces a spectral ram's head and makes its attack roll with a +7 bonus. On a hit, for each charge you spend, the target takes 2d10 force damage and is pushed 5 feet away from you.
Alternatively, you can expend 1 to 3 of the ring's charges as an action to try to break an object you can see within 60 feet of you that isn't being worn or carried. The ring makes a Strength check with a +5 bonus for each charge you spend.
The Other Formula is set to calculate 1d20 + 5 for one charge expended to make the Strength check. Please +5 per any extra charge as required.
If the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 10 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.
While this bowl is filled with water, you can use an action to speak the bowl's command word and summon a @Compendium[dnd5e.monsters.namJz755U1EhvEJa]{Water Elemental}, as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell. The bowl can't be used this way again until the next dawn.
The bowl is about 1 foot in diameter and half as deep. It weighs 3 pounds and holds about 3 gallons.
These special tools include the items needed to pursue a craft or trade in glassblowing.
This potion's container looks empty but feels as though it holds liquid.
When you drink it, you become invisible for 1 hour. Anything you wear or carry is invisible with you. The effect ends early if you attack or cast a spell.
While wearing this helm, you can use an action to cast the @Compendium[dnd5e.spells.4dSvfvTy2ZIJ3K4k]{Comprehend Languages} spell from it at will.
This dazzling helm is set with 1d10 diamonds, 2d10 rubies, 3d10 fire opals, and 4d10 opals. Any gem pried from the helm crumbles to dust. When all the gems are removed or destroyed, the helm loses its magic.
You gain the following benefits while wearing it:
Roll a d20 if you are wearing the helm and take fire damage as a result of failing a saving throw against a spell. On a roll of 1, the helm emits beams of light from its remaining gems. Each creature within 60 feet of the helm other than you must succeed on a DC 17 Dexterity saving throw or be struck by a beam, taking radiant damage equal to the number of gems in the helm. The helm and its gems are then destroyed.
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 can't 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 what's in it, the hole weighs next to nothing.
If the hole is folded up, a creature within the hole's 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 can't be reopened.
Ebony Fly. This ebony statuette is carved in the likeness of a horsefly. It can become a @Compendium[dnd5e.monsters.rLl22hYeAH3ljhdI]{Giant Fly} for up to 12 hours and can be ridden as a mount. Once it has been used, it can't be used again until 2 days have passed.
This cube is about an inch across. Each face has a distinct marking on it that can be pressed. The cube starts with 36 charges, and it regains 1d20 expended charges daily at dawn.
You can use an action to press one of the cube's faces, expending a number of charges based on the chosen face, as shown in the Cube of Force Faces table. Each face has a different effect. If the cube has insufficient charges remaining, nothing happens. Otherwise, a barrier of invisible force springs into existence, forming a cube 15 feet on a side. The barrier is centered on you, moves with you, and lasts for 1 minute, until you use an action to press the cube's sixth face, or the cube runs out of charges. You can change the barrier's effect by pressing a different face of the cube and expending the requisite number of charges, resetting the duration.
If your movement causes the barrier to come into contact with a solid object that can't pass through the cube, you can't move any closer to that object as long as the barrier remains.
The cube loses charges when the barrier is targeted by certain spells or comes into contact with certain spell or magic item effects, as shown in the table below.
While incense is burning in this censer, you can use an action to speak the censer's command word and summon an @Compendium[dnd5e.monsters.banHjKDMCegbUwYE]{Air Elemental}, as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell. The censer can't be used this way again until the next dawn.
This 6-inch-wide, 1-foot-high vessel resembles a chalice with a decorated lid. It weighs 1 pound.
These special tools include the items needed to pursue a craft or trade in masonry.
The medallion has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the @Compendium[dnd5e.spells.ppWAAEul0QHtm4er]{Detect Thoughts} spell (save DC 13) from it. The medallion regains 1d3 expended charges daily at dawn.
Bronze Horn of Valhalla.This bronze horn summons [[/r 4d4 + 4]] berserkers when blown and requires proficiency with all medium armor to be used.
You can use a portable ram to break down doors. When doing so, you gain a +4 bonus on the Strength check. One other character can help you use the ram, giving you advantage on this check.
Stone of Regeneration. You regain 15 hit points at the end of each hour this pearly white spindle orbits your head, provided that you have at least 1 hit point.
This wand or scepter has been carved from yew or another special wood and inscribed with powerful runes to invoke the power of nature by those who heed its call.
You can use an action to speak the horn's command word and then blow the horn, which emits a thunderous blast in a 30-foot cone that is audible 600 feet away. Each creature in the cone must make a DC 15 Constitution saving throw. On a failed save, a creature takes 5d6 thunder damage and is deafened for 1 minute. On a successful save, a creature takes half as much damage and isn't deafened. Creatures and objects made of glass or crystal have disadvantage on the saving throw and take 10d6 thunder damage instead of 5d6.
Each use of the horn's magic has a 20 percent chance of causing the horn to explode. The explosion deals 10d6 fire damage to the blower and destroys the horn.
A sturdy blade mounted upon the end of a long metal haft. Designed as a defensive weapon with considerable reach to both fend off and menace foes.
If the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 16 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.
Save DC: 17Attack Bonus: +9.
A wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 16 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.
Dragon Scale Mail is made of the scales of one kind of dragon. Sometimes dragons collect their cast-off scales and gift them to humanoids. Other times, hunters carefully skin and preserve the hide of a dead dragon. In either case, dragon scale mail is highly valued.
While wearing this armor, you gain a +1 bonus to AC, you have advantage on saving throws against the Frightful Presence and Breath Weapons of dragons, and you have resistance to one damage type that is determined by the kind of dragon that provided the scales (see the table).
Additionally, you can focus your senses as an action to magically discern the distance and direction to the closest dragon within 30 miles of you that is of the same type as the armor. This special action can't be used again until the next dawn.
These metal restraints can bind a Small or Medium creature. Escaping the manacles requires a successful DC 20 Dexterity check. Breaking them requires a successful DC 20 Strength check. Each set of manacles comes with one key. Without the key, a creature proficient with thieves' tools can pick the manacles' lock with a successful DC 15 Dexterity check. Manacles have 15 hit points.
A device with iron claws, can be used with rope for dragging or grasping.
This prism has 50 charges. While you are holding it, you can use an action to speak one of three command words to cause one of the following effects:
When all of the gem's charges are expended, the gem becomes a nonmagical jewel worth 50 gp.
A hooded lantern casts bright light in a 30-foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil. As an action, you can lower the hood, reducing the light to dim light in a 5-foot radius.
A ten-foot long pole of sturdy wood.
This object appears as a wooden box that measures 12 inches long, 6 inches wide, and 6 inches deep. It weighs 4 pounds and floats. It can be opened to store items inside. This item also has three command words, each requiring you to use an action to speak it.
One command word causes the box to unfold into a boat 10 feet long, 4 feet wide, and 2 feet deep. The boat has one pair of oars, an anchor, a mast, and a lateen sail. The boat can hold up to four Medium creatures comfortably.
The second command word causes the box to unfold into a ship 24 feet long, 8 feet wide, and 6 feet deep. The ship has a deck, rowing seats, five sets of oars, a steering oar, an anchor, a deck cabin, and a mast with a square sail. The ship can hold fifteen Medium creatures comfortably.
When the box becomes a vessel, its weight becomes that of a normal vessel its size, and anything that was stored in the box remains in the boat.
The third command word causes the folding boat to fold back into a box, provided that no creatures are aboard. Any objects in the vessel that can't fit inside the box remain outside the box as it folds. Any objects in the vessel that can fit inside the box do so.
This staff has 3 charges and regains 1d3 expended charges daily at dawn.
The staff can be wielded as a magic quarterstaff. On a hit, it deals damage as a normal quarterstaff, and you can expend 1 charge to deal an extra 2d10 necrotic damage to the target. In addition, the target must succeed on a DC 15 Constitution saving throw or have disadvantage for 1 hour on any ability check or saving throw that uses Strength or Constitution.
The Other Formula button has been configured to roll the staff's necrotic damage if required.
You gain a +2 bonus to AC against ranged attacks while you wield this shield. This bonus is in addition to the shield's normal bonus to AC. In addition, whenever an attacker makes a ranged attack against a target within 5 feet of you, you can use your reaction to become the target of the attack instead.
This crystaline talisman serves as a spellcasting focus, helping the practitioner to channel arcane, primal, or divine energies.
A climber's kit includes special pitons, boot tips, gloves, and a harness. You can use the climber's kit as an action to anchor yourself; when you do, you can't fall more than 25 feet from the point where you anchored yourself, and you can't climb more than 25 feet away from that point without undoing the anchor.
It is a form of drinkware consisting of a large, roughly cynlindrical, drinking cup with a single handle.
Stone of Protection. You gain a +1 bonus to AC while this dusty rose prism orbits your head.
A scale includes a small balance, pans, and a suitable assortment of weights up to 2 pounds. With it, you can measure the exact weight of small objects, such as raw precious metals or trade goods, to help determine their worth.
This hollow metal tube measures about 1 foot long and weighs 1 pound. You can strike it as an action, pointing it at an object within 120 feet of you that can be opened, such as a door, lid, or lock. The chime issues a clear tone, and one lock or latch on the object opens unless the sound can't reach the object. If no locks or latches remain, the object itself opens.
The chime can be used ten times. After the tenth time, it cracks and becomes useless.
You can use an action to present the rod and command obedience from each creature of your choice that you can see within 120 feet of you. Each target must succeed on a DC 15 Wisdom saving throw or be charmed by you for 8 hours. While charmed in this way, the creature regards you as its trusted leader. If harmed by you or your companions, or commanded to do something contrary to its nature, a target ceases to be charmed in this way. The rod can't be used again until the next dawn.
A placeholder for the non-SRD items introduced on pg. 159, with the d100 table on 160-161.
Half plate consists of shaped metal plates that cover most of the wearer's body. It does not include leg protection beyond simple greaves that are attached with leather straps.
You gain a +1 bonus to attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use the mace to attack a construct.
When you roll a 20 on an attack roll made with this weapon, the target takes an extra 2d6 bludgeoning damage, or 4d6 bludgeoning damage if it's a construct. If a construct has 25 hit points or fewer after taking this damage, it is destroyed.
The bonus to attack and damage rolls has been set at the +1. In the instances of hitting a construct, please remember to +2 to both of these results. Additionally, on a hit of 20 against a construct, please use the Other Formula one more time.
While wearing this belt, your Strength score changes to 29. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.
You gain a +1 bonus to attack and damage rolls made with this magic weapon (maul).
Giant's Bane (requires attunement)
You must be wearing a Belt of Giant Strength (any variety) and Gauntlets of Ogre Power to attune to this weapon. The attunement ends if you take off either of those items. While you are attuned to this weapon and holding it, your Strength score increases by 4 and can exceed 20, but not 30.
When you roll a 20 on an attack roll made with this weapon against a giant, the giant must succeed on a DC 17 Constitution saving throw or die.
The hammer also has 5 charges. While attuned to it, you can expend 1 charge and make a ranged weapon attack with the hammer, hurling it as if it had the thrown property with a normal range of 20 feet and a long range of 60 feet. If the attack hits, the hammer unleashes a thunderclap audible out to 300 feet. The target and every creature within 30 feet of it must succeed on a DC 17 Constitution saving throw or be stunned until the end of your next turn. The hammer regains 1d4 + 1 expended charges daily at dawn.
You can use an action to place these shackles on an incapacitated creature. The shackles adjust to fit a creature of Small to Large size. In addition to serving as mundane manacles, the shackles prevent a creature bound by them from using any method of extradimensional movement, including teleportation or travel to a different plane of existence. They don't prevent the creature from passing through an interdimensional portal.
You and any creature you designate when you use the shackles can use an action to remove them. Once every 30 days, the bound creature can make a DC 30 Strength (Athletics) check. On a success, the creature breaks free and destroys the shackles.
This blue potion bubbles and steams as if boiling.
For 1 hour after drinking it, you gain 10 temporary hit points that last for 1 hour. For the same duration, you are under the effect of the @Compendium[dnd5e.spells.8dzaICjGy6mTUaUr]{Bless} spell (no concentration required)
The Other Formula button can be used to roll the bonus 1d4 received from Bless.
If the spell is on your class's spell list but of a higher level than you can normally cast, you must make a DC 15 ability check using your spellcasting ability to determine whether you cast it successfully. On a failed check, the spell disappears from the scroll with no other effect.
A wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on a DC 15 Intelligence (Arcana) check. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.
Wondrous item, (requires attunement by a cleric, druid, or paladin)
This necklace has 1d4 + 2 magic beads made from aquamarine, black pearl, or topaz. It also has many nonmagical beads made from stones such as amber, bloodstone, citrine, coral, jade, pearl, or quartz. If a magic bead is removed from the necklace, that bead loses its magic.
Six types of magic beads exist. The GM decides the type of each bead on the necklace or determines it randomly. A necklace can have more than one bead of the same type. To use one, you must be wearing the necklace. Each bead contains a spell that you can cast from it as a bonus action (using your spell save DC if a save is necessary). Once a magic bead's spell is cast, that bead can't be used again until the next dawn.
Use the @Compendium[dnd5e.tables.XHTUTUXdyzcPbodw]{Necklace of Prayer Beads} table and refer to the table below for detailed descriptions on each bead
The 6 charges reflect the maximum number of beads able to be found; please adjust as required.
Additionally, the guide price is a guide only and should be adjusted accordingly to reflect the Dungeon Master's world.
While wearing this necklace, you can breathe normally in any environment, and you have advantage on saving throws made against harmful gases and vapors (such as @Compendium[dnd5e.spells.LkvI11Uue774QBKZ]{Cloudkill} and @Compendium[dnd5e.spells.TwlD4PLcltv7Xh7j]{Stinking Cloud} effects, inhaled poisons, and the breath weapons of some dragons).
While wearing this ring, you can cast the @Compendium[dnd5e.spells.ZrTc23tToJ0JpH2h]{Jump} spell from it as a bonus action at will, but can target only yourself when you do so.
A hardy sprig of mistletoe, holly, or some other sacred leaf, picked from a tree whose roots are sunken deep into a ley line. Those who heed nature's call are able to harness this connection to call forth the incredible power of nature.
You have resistance to cold damage while you hold this staff.
The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: @Compendium[dnd5e.spells.RpKjTlYASrfqUPVA]{Cone of Cold} (5 charges), @Compendium[dnd5e.spells.IBJmWjzbQGu7M4UX]{Fog Cloud} (1 charge), @Compendium[dnd5e.spells.WN2LWEljYU6QqnRH]{Ice Storm} (4 charges), or @Compendium[dnd5e.spells.fzZnVKLmBMo2f5up]{Wall of Ice} (4 charges).
The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff turns to water and is destroyed.
These special tools include the items needed to pursue a craft or trade in woodcarving.
If you hold this beetle-shaped medallion in your hand for 1 round, an inscription appears on its surface revealing its magical nature. It provides two benefits while it is on your person:
You can use an action to unfold and place the Well of Many Worlds on a solid surface, whereupon it creates a two-way portal to another world or plane of existence. Each time the item opens a portal, the GM decides where it leads. You can use an action to close an open portal by taking hold of the edges of the cloth and folding it up. Once a Well of Many Worlds has opened a portal, it can't do so again for 1d8 hours.
When you drink this potion, you gain resistance to Necrotic type damage for 1 hour.
A key is provided with the lock. Without the key, a creature proficient with thieves' tools can pick this lock with a successful DC 15 Dexterity check. Your DM may decide that better locks are available for higher prices.
While holding this shield, you have a bonus to AC of +2. This bonus is in addition to the shield's normal bonus to AC.
This item appears to be a longsword hilt. While grasping the hilt, you can use a bonus action to cause a blade of pure radiance to spring into existence, or make the blade disappear. While the blade exists, this magic longsword has the finesse property. If you are proficient with shortswords or longswords, you are proficient with the Sun Blade.
You gain a +2 bonus to attack and damage rolls made with this weapon, which deals radiant damage instead of slashing damage. When you hit an undead with it, that target takes an extra 1d8 radiant damage.
The sword's luminous blade emits bright light in a 15-foot radius and dim light for an additional 15 feet. The light is sunlight. While the blade persists, you can use an action to expand or reduce its radius of bright and dim light by 5 feet each, to a maximum of 30 feet each or a minimum of 10 feet each.
This book describes fitness exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Strength score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.
You regain 2d4+2 hit points when you drink this potion.
A set of bagpipes to evoke awe, wonder, or fear in your audience.
A whistle can produce specific noise. It can be heard half a mile away.
A hardened pebble of stone, bone, or metal which can be flung at high velocity using a sling.
It will usually be impossible to buy one sling bullet because they are worth less than a copper piece (5 bullets = 1 cp).
When you drink this potion, you gain resistance to Thunder type damage for 1 hour.
This blue sapphire contains a mote of elemental energy. When you use an action to break the gem, an @Compendium[dnd5e.monsters.banHjKDMCegbUwYE]{Air Elemental}is summoned as if you had cast the @Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental} spell, and the gem's magic is lost.
This viscous, milky-white substance can form a permanent adhesive bond between any two objects. It must be stored in a jar or flask that has been coated inside with oil of slipperiness. When found, a container contains 1d6 + 1 ounces.
One ounce of the glue can cover a 1-foot square surface. The glue takes 1 minute to set. Once it has done so, the bond it creates can be broken only by the application of universal solvent or oil of etherealness, or with a @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} spell.
The 7 charges reflect the maximum amount a character can find. Please adjust as required.
When you drink this potion, you gain resistance to Acidic type damage for 1 hour.
The {type} can move through a space as narrow as 1 inch wide without squeezing. A creature that touches the {type} or hits it with a melee attack while within 5 ft. of it takes 5 (1d10) fire damage.
In addition, the {type} can enter a hostile creature's space and stop there. The first time it enters a creature's space on a turn, that creature takes 5 (1d10) fire damage and catches fire; until someone takes an action to douse the fire, the creature takes 5 (1d10) fire damage at the start of each of its turns.
A creature that touches the {type} or hits it with a melee attack while within 5 ft. of it takes fire damage. In addition, the {type} can enter a hostile creature's space and stop there. The first time it enters a creature's space on a turn, that creature takes fire damage and catches fire; until someone takes an action to douse the fire, the creature takes fire damage at the start of each of its turns.
The {creature} spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact.
Each creature within 5 feet of the flash must succeed on a DC 13 Dexterity saving throw or be blinded until the end of the {creature}'s next turn.
The {creature} spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact. Each creature within 5 feet of the flash must make a Dexterity saving throw.
The {creature} has advantage on Intelligence, Wisdom, and Charisma saving throws against magic.
While attached to a creature, the {creature} takes only half the damage dealt to it (rounded down) and that creature takes the other half.
Any nonmagical weapon made of metal that hits the {type} corrodes. After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls.
If its penalty drops to -5, the weapon is destroyed. Nonmagical ammunition made of metal that hits the {type} is destroyed after dealing damage. The {type} can eat through 2-inch-thick, nonmagical metal in 1 round.
The {type} corrodes metal.
The {creature} has advantage on saving throws against being Frightened.
A 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the {creature} can see within 120 feet of it. The whirlwind lasts as long as the {creature} maintains concentration (as if concentrating on a spell).
Any creature but the {creature} that enters the whirlwind must succeed on a DC 18 Strength saving throw or be restrained by it. The {creature} can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. The whirlwind ends if the {creature} loses sight of it.
A creature can use its action to free a creature restrained by the whirlwind, including itself, by succeeding on a DC 18 Strength check. If the check succeeds, the creature is no longer restrained and moves to the nearest space outside the whirlwind.
A 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the {creature} can see within 120 feet of it. Any creature but the {creature} that enters the whirlwind must make a Strength saving throw or be restrained by it. The {creature} can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. A creature can use its action to free a creature restrained by the whirlwind, including itself, by succeeding on a Strength check. If the check succeeds, the creature is no longer restrained and moves to the nearest space outside the whirlwind.
The {creature} can perfectly recall any path it has traveled.
While in bright light, the {creature} has disadvantage on attack rolls and Wisdom (Perception) checks that rely on sight.
As a bonus action, the {creature} can magically shift from the Material Plane to the Ethereal Plane, or vice versa.
The {creature} can move through a space as narrow as 1 inch wide without squeezing.
The {creature} can burrow through solid rock at half its burrow speed and leaves a 10-foot-diameter tunnel in its wake.
**Sleep Breath.** The {type} exhales sleep gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.
The {type} exhales sleep gas in a 90-foot cone. Each creature in that area must make a Constitution saving throw.
The {creature} can breathe air and water.
The {creature} can't be frightened while it can see an allied creature within 30 feet of it.
The {creature} exhales scalding steam in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 52 (15d6) fire damage on a failed save, or half as much damage on a successful one.
Being underwater doesn't grant resistance against this damage.
The {creature} exhales scalding steam in a 60-foot cone. Each creature in that area must make a Constitution saving throw.
At the start of its turn, the {creature} can gain advantage on all melee weapon attack rolls during that turn, but attack rolls against it have advantage until the start of its next turn.
The {creature} can communicate with beasts and plants as if they shared a language.
If the {creature} surprises a creature and hits it with an attack during the first round of combat, the target takes an extra 7 (2d6) damage from the attack.
The {creature} emits magical, divine energy. Each creature of its choice in a 10-foot radius must make a Dexterity saving throw.
For every 5 ft. the {type} moves in water, or for every gallon of water splashed on it, it takes 1 cold damage.
The {creature} makes one bite attack or uses its Swallow.
The {creature} corrodes a nonmagical ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it.
If the object is being worn or carried by a creature, the creature can make a DC 11 Dexterity saving throw to avoid the {creature}'s touch.If the object touched is either metal armor or a metal shield being worn or carried, its takes a permanent and cumulative -1 penalty to the AC it offers. Armor reduced to an AC of 10 or a shield that drops to a +0 bonus is destroyed. If the object touched is a held metal weapon, it rusts as described in the Rust Metal trait.
The {creature} corrodes a ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it.
Up to four chains the {type} can see within 60 feet of it magically sprout razor-edged barbs and animate under the {type}'s control, provided that the chains aren't being worn or carried.
Each animated chain is an object with AC 20, 20 hit points, resistance to piercing damage, and immunity to psychic and thunder damage. When the {type} uses Multiattack on its turn, it can use each animated chain to make one additional chain attack. An animated chain can grapple one creature of its own but can't make attacks while grappling. An animated chain reverts to its inanimate state if reduced to 0 hit points or if the {type} is incapacitated or dies.
The {creature} casts a spell from its list of prepared spells, using a spell slot as normal.
As a bonus action, the {creature} can move up to its speed toward a hostile creature that it can see.
The {creature} doesn't provoke opportunity attacks when it flies out of an enemy's reach.
The {creature} can't use its blindsight while deafened and unable to smell.
The {creature} targets one creature it can see within 30 feet of it. If the target can see it, the target must succeed on a Constitution saving throw or be blinded.
If the {creature} takes 7 damage or less that would reduce it to 0 hit points, it is reduced to 1 hit point instead. Recharges on a short or long rest.
If the {creature} takes damage that would reduce it to 0 hit points, it is reduced to 1 hit point instead.
The {creature} adheres to anything that touches it. A Huge or smaller creature adhered to the {creature} is also grappled by it escape DC 13. Ability checks made to escape this grapple have disadvantage.
The {creature} adheres to anything that touches it. A Huge or smaller creature adhered to the {creature} is also grappled by it. Make an escape check, with disadvantage.
The {creature} creates a shimmering, magical field around itself or another creature it can see within 60 feet of it. The target gains a +2 bonus to AC until the end of the {creature}'s next turn.
The {creature} makes one unarmed strike.
The {creature} deals an extra 13 (4d6) damage when it hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 ft. of an ally of the {creature} that isn't incapacitated and the {creature} doesn't have disadvantage on the attack roll.
The {type} can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing.
The {creature} is immune to features that turn undead.
The {creature} regains 10 hit points at the start of its turn if it has at least 1 hit point.
The {creature} regains 10 hit points at the start of its turn.
The {creature} has advantage on melee attack rolls against any creature that doesn't have all its hit points.
The {creature} targets one or more creatures it can see within 10 ft. of it. Each target must make a DC 17 Wisdom saving throw against this magic.
On a failed save, a target can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the target can take either an action or a bonus action on its turn, not both. These effects last for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The {creature} targets one or more creatures it can see within 10 ft. of it. Each target must make a Wisdom saving throw against this magic. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
**Paralyzing Breath.** The {type} exhales paralyzing gas in a 60-foot cone. Each creature in that area must succeed on a DC 20 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The {type} exhales paralyzing gas in a 60-foot cone. Each creature in that area must make a Constitution saving throw.
When the {creature} reduces a creature to 0 hit points with a melee attack on its turn, the {creature} can take a bonus action to move up to half its speed and make a bite attack.
If a rock or similar object is hurled at the {type}, the {type} can, with a successful DC 10 Dexterity saving throw, catch the missile and take no bludgeoning damage from it.
If a rock or similar object is hurled at the {type}, the {type} can catch the missile and take no bludgeoning damage from it.
The {creature} takes up its entire space. Other creatures can enter the space, but a creature that does so is subjected to the {creature}'s Engulf and has disadvantage on the saving throw. Creatures inside the {creature} can be seen but have total cover.
A creature within 5 feet of the {creature} can take an action to pull a creature or object out of the {creature}. Doing so requires a successful DC 12 Strength check, and the creature making the attempt takes 10 (3d6) acid damage. The {creature} can hold only one Large creature or up to four Medium or smaller creatures inside it at a time.
The {creature} takes up its entire space. Other creatures can enter the space, but a creature that does so is subjected to the {creature}'s Engulf and has disadvantage on the saving throw. Creatures inside the cube can be seen but have total cover. A creature within 5 feet of the {creature} can take an action to pull a creature or object out of the {creature}. Doing so requires a successful Strength check.
The {creature} makes one claw attack.
The {creature} is given a quarry by its summoner. The {creature} knows the direction and distance to its quarry as long as the two of them are on the same plane of existence. The {creature} also knows the location of its summoner.
The stalker knows the direction and distance to its quarry as long as the two of them are on the same plane of existence.
In the first round of a combat, the {creature} has advantage on attack rolls against any creature it has surprised.
Each non-{type} creature within 20 feet of the {creature} must make a DC 18 Constitution saving throw against this magic, taking 21 (6d6) necrotic damage on a failed save, or half as much damage on a successful one.
Each non-{type} creature within 20 feet of the {creature} must make a Constitution saving throw against this magic.
The {creature} moves up to its speed. While doing so, it can enter Large or smaller creatures' spaces. Whenever the {creature} enters a creature's space, the creature must make a DC 12 Dexterity saving throw.On a successful save, the creature can choose to be pushed 5 feet back or to the side of the {creature}. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.
On a failed save, the {creature} enters the creature's space, and the creature takes 10 (3d6) acid damage and is engulfed. The engulfed creature can't breathe, is restrained, and takes 21 (6d6) acid damage at the start of each of the {creature}'s turns. When the {creature} moves, the engulfed creature moves with it. An engulfed creature can try to escape by taking an action to make a DC 12 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the {creature}.
Whenever the {creature} enters a creature's space, the creature must make a Dexterity saving throw. On a successful save, the creature can choose to be pushed 5 feet back or to the side of the {creature}. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.
When the {creature} dies, it explodes, and each creature within 30 feet of it must make a DC 20 Dexterity saving throw, taking 70 (20d6) fire damage on a failed save, or half as much damage on a successful one.
The explosion ignites flammable objects in that area that aren't being worn or carried, and it destroys the {creature}'s weapons.
When the {creature} dies, it explodes, and each creature within 30 feet of it must make a Dexterity saving throw. The explosion ignites flammable objects in that area that aren't being worn or carried, and it destroys the {creature}'s weapons.
The {creature} can pinpoint, by scent, the location of precious metals and stones, such as coins and gems, within 60 ft. of it.
The {creature} makes a number of attacks in one action. These attacks can be of the same type or a mixed variety of its attack actions.
The {creature} has the following flaws:
Forbiddance. The {creature} can't enter a residence without an invitation from one of the occupants.
Harmed by Running Water. The {creature} takes 20 acid damage if it ends its turn in running water.
Stake to the Heart. If a piercing weapon made of wood is driven into the {creature}'s heart while the {creature} is incapacitated in its resting place, the {creature} is paralyzed until the stake is removed.
Sunlight Hypersensitivity. The {creature} takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks.
While in sunlight, the {creature} has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.
The {creature} sheds bright light in a 10-foot radius and dim light for an additional 10 ft.
The {creature} is immune to any effect that would sense its emotions or read its thoughts, as well as any divination spell that it refuses. Wisdom (Insight) checks made to ascertain the {creature}'s intentions or sincerity have disadvantage.
The {creature} magically turns invisible until she attacks or casts a spell, or until her concentration ends (as if concentrating on a spell). While invisible, she leaves no physical evidence of her passage, so she can be tracked only by magic. Any equipment she wears or carries is invisible with her.
The {creature} magically turns invisible. Any equipment she wears or carries is invisible with her.
The {creature} can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.
The {creature} moves up to half its speed.
Any nonmagical weapon made of metal that hits the {creature} corrodes. After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls. If its penalty drops to -5, the weapon is destroyed. Non magical ammunition made of metal that hits the {creature} is destroyed after dealing damage.
Any nonmagical weapon made of metal that hits the {creature} corrodes. After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls.
The {creature} targets one creature it can see within 60 ft. of it. If the target can see the {creature}, it must succeed on a DC 11 Wisdom saving throw against this magic or become frightened until the end of the {creature}'s next turn.
If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies (but not mummy lords) for the next 24 hours.
The {creature} targets one creature it can see within 60 ft. of it. If the target can see the {creature}, it must make a Wisdom saving throw against this magic.
While underwater, the {creature} is surrounded by transformative mucus. A creature that touches the {creature} or that hits it with a melee attack while within 5 ft. of it must make a DC 14 Constitution saving throw. On a failure, the creature is diseased for 1d4 hours. The diseased creature can breathe only underwater.
While underwater, the {creature} is surrounded by transformative mucus. A creature that touches the {creature} or that hits it with a melee attack while within 5 ft. of it must make a Constitution saving throw.
The {creature} has advantage on saving throws against spells and other magical effects.
The {creature} sings a magical melody. Every humanoid and giant within 300 ft. of the {creature} that can hear the song must succeed on a DC 11 Wisdom saving throw or be charmed until the song ends. The {creature} must take a bonus action on its subsequent turns to continue singing. It can stop singing at any time. The song ends if the {creature} is incapacitated.
While charmed by the {creature}, a target is incapacitated and ignores the songs of other harpies. If the charmed target is more than 5 feet away from the {creature}, the target must move on its turn toward the {creature} by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage from a source other than the {creature}, the target can repeat the saving throw. A charmed target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.
A target that successfully saves is immune to this {creature}'s song for the next 24 hours.
The {creature} sings a magical melody. Every humanoid and giant within 300 ft. of the {creature} that can hear the song must make a Wisdom saving throw. A creature can also repeat the saving throw at the end of each of its turns.
**Weakening Breath.** The {type} exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 21 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The {type} exhales gas in a 60-foot cone. Each creature in that area must make a Strength saving throw.
The {creature} pulls each creature grappled by it up to 25 ft. straight toward it.
During its first turn, the {creature} has advantage on attack rolls against any creature that hasn't taken a turn. Any hit the {creature} scores against a surprised creature is a critical hit.
If the {type} fails a saving throw, it can choose to succeed instead.
On each of its turns, the {creature} can use a bonus action to take the dash, disengage, or hide action.
The {type} exhales poisonous gas in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 56 (16d6) poison damage on a failed save, or half as much damage on a successful one.
The {type} exhales poisonous gas in a 60-foot cone. Each creature in that area must make a Constitution saving throw.
The {creature} senses magic within 120 feet of it at will. This trait otherwise works like the detect magic spell but isn't itself magical.
**Slowing Breath.** The {type} exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.
The {type} exhales gas in a 60-foot cone. Each creature in that area must make a Constitution saving throw.
If it dies, the {creature} returns to life in 1d6 days and regains all its hit points.
Only a wish spell can prevent this trait from functioning.
The {creature} has advantage on Wisdom (Perception) checks that rely on sight, hearing, or smell.
The {type} magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the {type}'s choice).
In a new form, the {type} retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.
The {creature} is incapacitated while in the area of an antimagic field.
If targeted by dispel magic, the {creature} must succeed on a Constitution saving throw against the caster's spell save DC or fall unconscious for 1 minute.
Whenever the {creature} is subjected to lightning damage, it takes no damage and instead regains a number of hit points equal to the lightning damage dealt.
(NOTE: THIS SHOULD BE USED ONLY IF THE CREATURE HAS MORE THAN ONE TYPE OF BREATH WEAPON, AND CONTAINS THE CHARGES FOR THOSE BREATH WEAPONS. EACH BREATH WEAPON ITSELF SHOULD ALSO BE ADDED.)
The {type} uses one of the following breath weapons.
**Fire Breath.** The {type} exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 45 (13d6) fire damage on a failed save, or half as much damage on a successful one.
The {type} breathes in!
The ground in a 10-foot radius around the {creature} is doughlike difficult terrain.
Each creature that starts its turn in that area must succeed on a DC 10 Strength saving throw or have its speed reduced to 0 until the start of its next turn.
The ground in a 10-foot radius around the {creature} is doughlike difficult terrain. make a Strength saving throw.
The {creature} magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter.
When the wall appears, each creature in its space is pushed out of it by the shortest route. The creature chooses which side of the wall to end up on, unless the creature is incapacitated. The creature then makes a DC 17 Dexterity saving throw, taking 35 (10d6) cold damage on a failed save, or half as much damage on a successful one.
The wall lasts for 1 minute or until the {creature} is incapacitated or dies. The wall can be damaged and breached; each 10-foot section has AC 5, 30 hit points, vulnerability to fire damage, and immunity to acid, cold, necrotic, poison, and psychic damage. If a section is destroyed, it leaves behind a sheet of frigid air in the space the wall occupied. Whenever a creature finishes moving through the frigid air on a turn, willingly or otherwise, the creature must make a DC 17 Constitution saving throw, taking 17 (5d6) cold damage on a failed save, or half as much damage on a successful one. The frigid air dissipates when the rest of the wall vanishes.
The {creature} magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter. When the wall appears, each creature in its space is pushed out of it by the shortest route. The creature chooses which side of the wall to end up on, unless the creature is incapacitated. The creature then makes a Dexterity saving throw.
The wall can be damaged and breached. If a section is destroyed, it leaves behind a sheet of frigid air in the space the wall occupied. Whenever a creature finishes moving through the frigid air on a turn, willingly or otherwise, the creature must make a Constitution saving throw.
The {creature} makes one tail attack.
The {creature} swipes its tail against its prey!
The mere presence of a legendary creature can have strange and wondrous effects on its environment. Regional effects end abruptly or dissipate over time when the legendary creature dies.
At the start of each of the {creature}'s turns, each creature within 5 feet of it takes 10 (3d6) fire damage, and flammable objects in the aura that aren't being worn or carried ignite.
A creature that touches the {creature} or hits it with a melee attack while within 5 feet of it takes 10 (3d6) fire damage.
At the start of each of the {creature}'s turns, each creature within 5 feet of it takes fire damage, and flammable objects in the aura that aren't being worn or carried ignite. A creature that touches the {creature} or hits it with a melee attack while within 5 feet of it takes fire damage.
The {creature} magically unleashes negative energy. Creatures within 60 feet of the {creature}, including ones behind barriers and around corners, can't regain hit points until the end of the {creature}'s next turn.
The {creature} can move through other creatures and objects as if they were difficult terrain.
It takes 5 (1d10) force damage if it ends its turn inside an object.
The {type} exhales lightning in a 90-foot line that is 5 ft. wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.
The {type} exhales lightning in a 90-foot line that is 5 ft. wide. Each creature in that line must make a Dexterity saving throw.
The {creature} can have up to six tendrils at a time. Each tendril can be attacked (AC 20; 10 hit points; immunity to poison and psychic damage).
Destroying a tendril deals no damage to the {creature}, which can extrude a replacement tendril on its next turn. A tendril can also be broken if a creature takes an action and succeeds on a DC 15 Strength check against it.
The {creature} can have up to six tendrils at a time. Each tendril can be attacked. A tendril can also be broken if a creature takes an action and succeeds on a Strength check against it.
The {creature} has advantage on saving throws against being charmed, and magic can't put the {creature} to sleep.
The {creature} has advantage on Dexterity (Stealth) checks made while underwater.
The {creature} can't be affected or detected by spells of 6th level or lower unless it wishes to be. It has advantage on saving throws against all other spells and magical effects.
The {creature} is immune to any spell or effect that would alter its form.
Any creature hostile to the {creature} that starts its turn within 20 feet of the {creature} must make a DC 21 Wisdom saving throw, unless the {creature} is incapacitated. On a failed save, the creature is frightened until the start of its next turn. If a creature's saving throw is successful, the creature is immune to the {creature}'s Fear Aura for the next 24 hours.
Any creature hostile to the {creature} that starts its turn within 20 feet of the {creature} must make a Wisdom saving throw.
If the {creature} moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a DC 13 Strength saving throw or be knocked prone.
If the target is prone, the {creature} can make one bite attack against it as a bonus action.
If the {creature} moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must make a Strength saving throw.
One humanoid that the {creature} can see within 5 ft. of it must succeed on a DC 13 Charisma saving throw or be possessed by the {creature}; the {creature} then disappears, and the target is incapacitated and loses control of its body. The {creature} now controls the body but doesn't deprive the target of awareness.
The {creature} can't be targeted by any attack, spell, or other effect, except ones that turn {type}, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being charmed and frightened. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.The possession lasts until the body drops to 0 hit points, the {creature} ends it as a bonus action, or the {creature} is turned or forced out by an effect like the dispel evil and good spell. When the possession ends, the {creature} reappears in an unoccupied space within 5 ft. of the body. The target is immune to this {creature}'s Possession for 24 hours after succeeding on the saving throw or after the possession ends.
One humanoid that the {creature} can see within 5 ft. of it must make a Charisma saving throw.
The {creature} and up to three willing creatures within 5 feet of it magically enter the Ethereal Plane from the Material Plane, or vice versa.
The {creature} makes a Wisdom (Perception) check.
When a {creature} that is Medium or larger is subjected to lightning or slashing damage, it splits into two new {creature}s if it has at least 10 Hit Points. Each new {creature} has Hit Points equal to half the original {creature}'s, rounded down. New {creature}s are one size smaller than the original pudding.
The {creature} splits into two new {creature}s. New {creature}s are one size smaller than the original {creature}.
One creature charmed by the {creature} takes 10 (3d6) psychic damage, and the {creature} regains hit points equal to the damage the creature takes.
When bright light or a creature is within 30 feet of the {creature}, it emits a shriek audible within 300 feet of it. The {creature} continues to shriek until the disturbance moves out of range and for 1d4 of the {creature}'s turns afterward
When bright light or a creature is within 30 feet of the {creature}, it emits a shriek audible within 300 feet of it.
Any creature that starts its turn within 5 ft. of the {creature} must succeed on a DC 10 Constitution saving throw or be poisoned until the start of its next turn. On a successful saving throw, the creature is immune to the {creature}'s Stench for 24 hours.
Any creature that starts its turn within 5 ft. of the {creature} must succeed on a Constitution saving throw.
The {creature} releases its greatsword to hover magically in an unoccupied space within 5 ft. of it. If the {creature} can see the sword, the {creature} can mentally command it as a bonus action to fly up to 50 ft. and either make one attack against a target or return to the {creature}'s hands.
If the hovering sword is targeted by any effect, the {creature} is considered to be holding it. The hovering sword falls if the {creature} dies.
The {creature} releases its greatsword to hover magically in an unoccupied space within 5 ft. of it. If the hovering sword is targeted by any effect, the {creature} is considered to be holding it.
With a 10-foot running start, the {creature} can long jump up to 25 ft.
If a legendary creature has lair actions, it can use them to harness the ambient magic in its lair. On initiative count 20 (losing all initiative ties), it can use one of its lair action options. It can't do so while incapacitated or otherwise unable to take actions. If surprised, it can't use one until after its first turn in the combat.
If a legendary creature has lair actions, it can use them to harness the ambient magic in its lair.
Any time the {creature} is targeted by a magic missile spell, a line spell, or a spell that requires a ranged attack roll, roll a d6. On a 1 to 5, the {creature} is unaffected.
On a 6, the {creature} is unaffected, and the effect is reflected back at the caster as though it originated from the {creature}, turning the caster into the target.
The {creature} is unaffected, and the effect is reflected back at the caster as though it originated from the {creature}, turning the caster into the target.
The {creature} magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.
The {creature} can take the Disengage or Hide action as a bonus action on each of its turns.
The {creature} emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different, as detailed below. Each creature within 500 feet of the {creature} and able to hear the roar must make a saving throw.
**First Roar.** Each creature that fails a DC 18 Wisdom saving throw is frightened for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
**Second Roar.** Each creature that fails a DC 18 Wisdom saving throw is deafened and frightened for 1 minute. A frightened creature is paralyzed and can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
**Third Roar.** Each creature makes a DC 18 Constitution saving throw. On a failed save, a creature takes 44 (8d10) thunder damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone.
The {creature} emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different. Each creature within 500 feet of the {creature} and able to hear the roar must make a saving throw.
At the start of each of its turns, the {creature} deals 5 (1d10) piercing damage to any creature grappling it.
Whenever the {creature} starts its turn with 60 hit points or fewer, roll a d6. On a 6, the {creature} goes berserk. On each of its turns while berserk, the {creature} attacks the nearest creature it can see.
If no creature is near enough to move to and attack, the {creature} attacks an object, with preference for an object smaller than itself. Once the {creature} goes berserk, it continues to do so until it is destroyed or regains all its hit points.
The {creature} goes berserk. On each of its turns while berserk, the {creature} attacks the nearest creature it can see. If no creature is near enough to move to and attack, the {creature} attacks an object, with preference for an object smaller than itself.
The {creature} slams creatures grappled by it into each other or a solid surface. Each creature must succeed on a DC 14 Constitution saving throw or take 10 (2d6 + 3) bludgeoning damage and be stunned until the end of the {creature}'s next turn.
On a successful save, the target takes half the bludgeoning damage and isn't stunned.
The {creature} slams creatures grappled by it into each other or a solid surface. Each creature must make a Constitution saving throw.
The {creature} targets one humanoid or beast that she can see within 30 feet of her. If the target can see the {creature}, it must succeed on a DC 14 Wisdom saving throw or be magically charmed.
The charmed creature regards the {creature} as a trusted friend to be heeded and protected. Although the target isn't under the {creature}'s control, it takes the {creature}'s requests or actions in the most favorable way it can.Each time the {creature} or its allies do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the {creature} dies, is on a different plane of existence from the target, or ends the effect as a bonus action. If a target's saving throw is successful, the target is immune to the {creature}'s Fey Charm for the next 24 hours. The {creature} can have no more than one humanoid and up to three beasts charmed at a time.
The {creature} targets one humanoid or beast that she can see within 30 feet of her. If the target can see the {creature}, it must make a Wisdom saving throw. Each time the {creature} or its allies do anything harmful to the target, it can repeat the saving throw.
The {creature} targets a humanoid within 10 feet of it that has been dead for no longer than 1 minute and died violently.
The target's spirit rises as a specter in the space of its corpse or in the nearest unoccupied space. The specter is under the {creature}'s control. The {creature} can have no more than seven specters under its control at one time.
The target's spirit rises as a specter in the space of its corpse or in the nearest unoccupied space.
The {creature} is immune to scrying and to any effect that would sense its emotions, read its thoughts, or detect its location.
Each creature that fails a DC 18 Wisdom saving throw is frightened for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
When one of the {creature}'s heads is asleep, its other head is awake.
Whenever the {creature} is subjected to acid damage, it takes no damage and instead regains a number of hit points equal to the acid damage dealt.
Whenever the {creature} is subjected to fire damage, it takes no damage and instead regains a number of hit points equal to the fire damage dealt.
The {creature} can magically command any shark within 120 feet of it, using a limited telepathy.
Magical darkness doesn't impede the {creature}'s Darkvision.
As a bonus action, the {creature} can set itself ablaze or extinguish its flames. While ablaze, the {creature} sheds bright light in a 10-foot radius and dim light for an additional 10 ft.
The {creature} has advantage on an attack roll against a creature if at least one of the {creature}'s allies is within 5 ft. of the creature and the ally isn't incapacitated.
If damage reduces the {creature} to 0 hit points, it must make a Constitution saving throw with a DC of 5+the damage taken, unless the damage is radiant or from a critical hit. On a success, the {creature} drops to 1 hit point instead.
If damage reduces the {creature} to 0 hit points, it must make a Constitution saving throw.
While on the Ethereal Plane, the {creature} magically touches a sleeping humanoid on the Material Plane. A protection from evil and good spell cast on the target prevents this contact, as does a magic circle.
As long as the contact persists, the target has dreadful visions. If these visions last for at least 1 hour, the target gains no benefit from its rest, and its hit point maximum is reduced by 5 (1d10). If this effect reduces the target's hit point maximum to 0, the target dies, and if the target was evil, its soul is trapped in the hag's soul bag. The reduction to the target's hit point maximum lasts until removed by the greater restoration spell or similar magic.
While on the Ethereal Plane, the {creature} magically touches a sleeping humanoid on the Material Plane. As long as the contact persists, the target has dreadful visions.
The {creature} can use its action to polymorph into a Small or Medium humanoid it has seen, or back into its true form.
Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies.
The {creature} can't wear or carry anything.
Each creature within 60 feet of the {creature} that can hear its moan and that isn't an {type} must succeed on a DC 13 Wisdom saving throw or become frightened until the end of the {creature}'s next turn.
If a creature's saving throw is successful, the creature is immune to the {creature}'s moan for the next 24 hours.
Each creature within 60 feet of the {creature} that can hear its moan and that isn't an {type} must make a Wisdom saving throw.
The {creature} has advantage on saving throws against poison, spells, and illusions, as well as to resist being charmed or paralyzed.
If the {creature} dies, its body disintegrates into a warm breeze, leaving behind only equipment the {creature} was wearing or carrying.
Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.
The {creature} attacks with its Bite.
The {creature} can see 60 ft. into the Ethereal Plane when it is on the Material Plane, and vice versa.
If the {creature} moves at least 20 ft. straight toward a target and then hits it with a tusk attack on the same turn, the target takes an extra 3 (1d6) slashing damage.
If the target is a creature, it must succeed on a DC 11 Strength saving throw or be knocked prone.
If the {creature} moves at least 20 ft. straight toward a target and then hits it with a tusk attack on the same turn, the target takes extra slashing damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.
Each creature makes a DC 18 Constitution saving throw. On a failed save, a creature takes 44 (8d10) thunder damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone.
The {creature} magically transforms into a whirlwind of sand, moves up to 60 feet, and reverts to its normal form. While in whirlwind form, the {creature} is immune to all damage, and it can't be grappled, petrified, knocked prone, restrained, or stunned. Equipment worn or carried by the {creature} remain in its possession.
The {creature} has advantage on saving throws against being charmed or frightened.
A {creature} that dies in the Nine Hells sometimes comes back to comes back to life with all its hit points in 1d10 days unless it is killed by a good-aligned creature with a bless spell cast on that creature or its remains are sprinkled with holy water.
A {creature} that dies in the Nine Hells sometimes comes back to life.
A 10-foot radius of disgusting green gas extends out from the {creature}. The gas spreads around corners, and its area is lightly obscured. It lasts for 1 minute or until a strong wind disperses it.
Any creature that starts its turn in that area must succeed on a DC 11 Constitution saving throw or be poisoned until the start of its next turn. While poisoned in this way, the target can take either an action or a bonus action on its turn, not both, and can't take reactions. 1 use per day.
A 10-foot radius of disgusting green gas extends out from the {creature}. The gas spreads around corners, and its area is lightly obscured. Any creature that starts its turn in that area must make a Constitution saving throw.
The {creature} utters a blasphemous word. Each non-{type} creature within 10 feet of the {creature} that can hear the magical utterance must succeed on a DC 16 Constitution saving throw or be stunned until the end of the {creature}'s next turn.
The {creature} utters a blasphemous word. Each non-{type} creature within 10 feet of the {creature} that can hear the magical utterance must make a Constitution saving throw.
The {type} can move across and climb icy surfaces without needing to make an ability check. Additionally, difficult terrain composed of ice or snow doesn't cost it extra movement.
Any humanoid that starts its turn within 30 feet of the {creature} and can see the {creature}'s true form must make a DC 11 Wisdom saving throw. On a failed save, the creature is frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, with disadvantage if the hag is within line of sight, ending the effect on itself on a success.
If a creature's saving throw is successful or the effect ends for it, the creature is immune to the {creature}'s Horrific Appearance for the next 24 hours. Unless the target is surprised or the revelation of the hag's true form is sudden, the target can avert its eyes and avoid making the initial saving throw. Until the start of its next turn, a creature that averts its eyes has disadvantage on attack rolls against the {creature}.
Any humanoid that starts its turn within 30 feet of the {creature} and can see the {creature}'s true form must make a Wisdom saving throw.
The {creature} exhales a 15-foot cone of cold air. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 5 (2d4) cold damage on a failed save, or half as much damage on a successful one.
The {creature} exhales a 15-foot cone of cold air. Each creature in that area must make a Dexterity saving throw.
Recharge 5-6.
Until the end of its next turn, the {creature} magically gains a +2 bonus to its AC, has advantage on Dexterity saving throws, and can use an attack as a bonus action.
The {creature} emits a horrific screech. Each creature within 20 feet of it that can hear it and that isn't a {type} must succeed on a DC 14 Constitution saving throw or be stunned until the end of the {creature}'s next turn .
The {creature} emits a horrific screech. Each creature within 20 feet of it that can hear it and that isn't a {type} must make a Constitution saving throw.
The {creature} makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is also swallowed, and the grapple ends. While swallowed, the target is blinded and restrained, it has total cover against attacks and other effects outside the {creature}, and it takes 21 (6d6) acid damage at the start of each of the {creature}'s turns. A {creature} can have only one creature swallowed at a time.
If the {creature} takes 30 damage or more on a single turn from the swallowed creature, the {creature} must succeed on a DC 14 Constitution saving throw at the end of that turn or regurgitate the creature, which falls prone in a space within 10 ft. of the {creature}. If the {creature} dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 15 ft. of movement, exiting prone.
The {creature} attacks with its Swallow.
Blinding dust and sand swirls magically around the {creature}. Each creature within 5 feet of the {creature} must succeed on a DC 16 Constitution saving throw or be blinded until the end of the creature's next turn.
Blinding dust and sand swirls magically around the {creature}. Each creature within 5 feet of the {creature} must make a Constitution saving throw.
If the {creature} jumps at least 15 ft. as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures.
Each of those creatures must succeed on a DC 16 Strength or Dexterity saving throw (target's choice) or be knocked prone and take 14 (3d6 + 4) bludgeoning damage plus 14 (3d6 + 4) slashing damage. On a successful save, the creature takes only half the damage, isn't knocked prone, and is pushed 5 ft. out of the {creature}'s space into an unoccupied space of the creature's choice. If no unoccupied space is within range, the creature instead falls prone in the {creature}'s space.
If the {creature} jumps at least 15 ft. as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures. Each of those creatures must make a Strength or Dexterity saving throw (target's choice) or be knocked prone.
The {type} exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.
The {creature} can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating.
A 20-foot-radius cloud of ink extends all around the {creature} if it is underwater. The area is heavily obscured for 1 minute, although a significant current can disperse the ink. After releasing the ink, the {creature} can use the Dash action as a bonus action. Recharges after a Short or Long Rest.
A 20-foot-radius cloud of ink extends all around the {creature} if it is underwater.
The {creature} can breathe only underwater.
The {type} deals double damage to objects and structures.
A creature that touches the {creature} or hits it with a melee attack while within 5 feet of it takes 4 (1d8) acid damage. Any nonmagical weapon made of metal or wood that hits the {creature} corrodes.
After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls. If its penalty drops to -5, the weapon is destroyed. Nonmagical ammunition made of metal or wood that hits the {creature} is destroyed after dealing damage. The {creature} can eat through 2-inch-thick, nonmagical wood or metal in 1 round.
A creature that touches the {creature} or hits it with a melee attack while within 5 feet of it takes acid damage. Any nonmagical weapon made of metal or wood that hits the pudding corrodes.
For 1 minute, the {creature} can utter a special command or warning whenever a nonhostile creature that it can see within 30 ft. of it makes an attack roll or a saving throw. The creature can add a d4 to its roll provided it can hear and understand the {creature}. A creature can benefit from only one Leadership die at a time. This effect ends if the {creature} is incapacitated.
The {creature} fixes its gaze on one creature it can see within 10 feet of it. The target must succeed on a DC 18 Wisdom saving throw against this magic or become grappled for 1 minute. The grappled target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to the {creature}'s gaze for the next 24 hours.
The {creature} fixes its gaze on one creature it can see within 10 feet of it. The target must make a Wisdom saving throw.
Even when the {creature} is in plain sight, it takes a successful DC 15 Wisdom (Perception) check to spot a {creature} that has neither moved nor attacked. A creature that tries to enter the {creature}'s space while unaware of the {creature} is surprised by the {creature}.
Even when the {creature} is in plain sight, it takes a successful Wisdom (Perception) check to spot a {creature} that has neither moved nor attacked. A creature that tries to enter the {creature}'s space while unaware of the cube is surprised by the {creature}.
The {creature}'s weapon attacks are magical. When the {creature} hits with any weapon, the weapon deals an extra 4d8 radiant damage (included in the attack).
The {creature}'s weapon attacks are magical. When the {creature} hits with any weapon, the weapon deals extra radiant damage (included in the attack).
The {creature} makes one tentacle attack or uses its Fling.
The {creature} magically turns invisible until it attacks, casts a spell, or uses its Enlarge, or until its concentration is broken, up to 1 hour (as if concentrating on a spell).
The {creature} magically turns invisible. Any equipment the {creature} wears or carries is invisible with it.
The {creature} babbles incoherently while it can see any creature and isn't incapacitated. Each creature that starts its turn within 20 feet of the mouther and can hear the gibbering must succeed on a DC 10 Wisdom saving throw. On a failure, the creature can't take reactions until the start of its next turn and rolls a d8 to determine what it does during its turn.
On a 1 to 4, the {creature} does nothing. On a 5 or 6, the creature takes no action or bonus action and uses all its movement to move in a randomly determined direction. On a 7 or 8, the creature makes a melee attack against a randomly determined creature within its reach or does nothing if it can't make such an attack.
The {creature} babbles incoherently while it can see any creature. Each creature that starts its turn within 20 feet of the {creature} and can hear the gibbering must succeed on a Wisdom saving throw.
The {creature} magically calls 2d4 swarms of bats or rats, provided that the sun isn't up. While outdoors, the {creature} can call 3d6 wolves instead.
The called creatures arrive in 1d4 rounds, acting as allies of the {creature} and obeying its spoken commands. The beasts remain for 1 hour, until the {creature} dies, or until the {creature} dismisses them as a bonus action.
The {creature} magically calls swarms of bats or rats. While outdoors, the {creature} can call wolves instead.
The {creature} has five heads. While it has more than one head, the {creature} has advantage on saving throws against being blinded, charmed, deafened, frightened, stunned, and knocked unconscious.
Whenever the {creature} takes 25 or more damage in a single turn, one of its heads dies. If all its heads die, the {creature} dies.
At the end of its turn, it grows two heads for each of its heads that died since its last turn, unless it has taken fire damage since its last turn. The {creature} regains 10 hit points for each head regrown in this way.
The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny {creature}. The swarm can't regain hit points or gain temporary hit points.
While the {creature} is on the same plane of existence as its master, it can magically convey what it senses to its master, and the two can communicate telepathically.
The {creature} uses its Paralyzing Touch.
The {creature}'s long jump is up to 30 ft. and its high jump is up to 15 ft., with or without a running start.
The {creature} ignores difficult terrain, and magical effects can't reduce its speed or cause it to be restrained. It can spend 5 feet of movement to escape from nonmagical restraints or being grappled.
The {creature} ignores difficult terrain, and magical effects can't reduce its speed or cause it to be restrained.
The {creature} is a 1st-level spellcaster. Its spellcasting ability is Wisdom (spell save DC 12, +4 to hit with spell attacks). The {creature} has following cleric spells prepared:
Cantrips (at will): light, sacred flame, thaumaturgy
1st level (3 slots): bless, cure wounds, sanctuary
The {creature} is a spellcaster. Its spellcasting ability is Wisdom.
Once on her turn, the {creature} can use 10 feet of her movement to step magically into one living tree within her reach and emerge from a second living tree within 60 feet of the first tree, appearing in an unoccupied space within 5 feet of the second tree. Both trees must be Large or bigger.
The {creature} magically creates three bolts of lightning, each of which can strike a target the {creature} can see within 120 feet of it.
A target must make a DC 23 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.
The {creature} magically creates three bolts of lightning, each of which can strike a target the {creature} can see within 120 feet of it. A target must make a Dexterity saving throw.
The {creature} has advantage on Wisdom (Perception) checks and on saving throws against being blinded, charmed, deafened, frightened, stunned, and knocked unconscious.
The {creature} targets one creature it can see within 30 ft. of it. The target must succeed on a DC 14 Wisdom saving throw or be magically charmed by the {creature} until the {creature} dies or until it is on a different plane of existence from the target.
The charmed target is under the {creature}'s control and can't take reactions, and the {creature} and the target can communicate telepathically with each other over any distance.Whenever the charmed target takes damage, the target can repeat the saving throw. On a success, the effect ends. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the {creature}.
The target must make a Wisdom saving throw. Whenever the target takes damage, the target can repeat the saving throw. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the {creature}.
The {creature} can pinpoint, by scent, the location of ferrous metal within 30 feet of it.
The {creature} magically regains 11 (2d8+2) hit points.
One creature of the {creature}'s choice within 20 ft. of it must succeed on a DC 10 Wisdom saving throw or be frightened for 1 minute.
The target can repeat the saving throw at the end of each of its turns, with disadvantage if the {creature} is within line of sight, ending the effect on itself on a success.
One creature of the {creature}'s choice within 20 ft. of it must make a Wisdom saving throw. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the {creature} is within line of sight, ending the effect on itself on a success.
When it drops to 0 hit points outside its resting place, the {creature} transforms into a cloud of mist (as in the Shapechanger trait) instead of falling unconscious, provided that it isn't in sunlight or running water. If it can't transform, it is destroyed.
While it has 0 hit points in mist form, it can't revert to its {creature} form, and it must reach its resting place within 2 hours or be destroyed. Once in its resting place, it reverts to its {creature} form. It is then paralyzed until it regains at least 1 hit point. After spending 1 hour in its resting place with 0 hit points, it regains 1 hit point.
A slain {creature} transforms into a cloud of mist (as in the Shapechanger trait) instead of falling unconscious.
The {type}'s innate spellcasting ability is Charisma. It can innately cast the following spells, requiring no material components:
At will: detect magic, fog cloud, light
3/day each: feather fall, fly, misty step, telekinesis
1/day each: control weather, gaseous form
The {creature} magically emits scintillating, multicolored light. Each creature within 15 feet of the {creature} that can see the light must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute.
A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the {creature}'s Horror Nimbus for the next 24 hours.
One Large or smaller object held or creature grappled by the {creature} is thrown up to 60 feet in a random direction and knocked prone.
If a thrown target strikes a solid surface, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 18 Dexterity saving throw or take the same damage and be knocked prone.
One Large or smaller object held or creature grappled by the {creature} is thrown up to 60 feet in a random direction and knocked prone. If the target is thrown at another creature, that creature must make a Dexterity saving throw or take the same damage and be knocked prone.
When the {creature} hits with a metal melee weapon, it deals an extra 3 (1d6) fire damage (included in the attack).
When the {creature} hits with a metal melee weapon, it deals extra fire damage (included in the attack).
Ranged Weapon Attack: +4 to hit, range 30/60 ft., one Large or smaller creature. Hit: The creature is restrained by webbing.
As an action, the restrained creature can make a DC 11 Strength check, escaping from the webbing on a success. The effect ends if the webbing is destroyed. The webbing has AC 10, 5 hit points, is vulnerable to fire damage and immune to bludgeoning damage.
The creature is restrained by webbing. As an action, the restrained creature can make a Strength check, escaping from the webbing on a success.
The {creature} touches a creature and magically knows the creature's current emotional state.
If the target fails a DC 10 Charisma saving throw, the {creature} also knows the creature's alignment. Celestials, fiends, and undead automatically fail the saving throw.
The {creature} touches a creature. target must make a Charisma saving throw.
If a creature communicates telepathically with the {creature}, the {creature} learns the creature's greatest desires if the {creature} can see the creature.
A creature that touches the {creature} or hits it with a melee attack while within 5 feet of it takes 5 (1d10) fire damage.
**Cold Breath.** The {type} exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 20 Constitution saving throw, taking 58 (13d8) cold damage on a failed save, or half as much damage on a successful one.
The {type} exhales an icy blast in a 60-foot cone. Each creature in that area must make a Constitution saving throw.
The {creature} sheds bright light in a 5- to 20-foot radius and dim light for an additional number of ft. equal to the chosen radius. The {creature} can alter the radius as a bonus action.
The {creature} has twenty-four tail spikes. Used spikes regrow when the {creature} finishes a long rest.
A 15-foot-radius cloud of toxic spores extends out from the {creature}. The spores spread around corners. Each creature in that area must succeed on a DC 14 Constitution saving throw or become poisoned.
While poisoned in this way, a target takes 5 (1d10) poison damage at the start of each of its turns. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Emptying a vial of holy water on the target also ends the effect on it.
A 15-foot-radius cloud of toxic spores extends out from the {creature}. The spores spread around corners. Each creature in that area must make a Constitution saving throw. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The {creature} kisses a creature charmed by it or a willing creature. The target must make a DC 15 Constitution saving throw against this magic, taking 32 (5d10 + 5) psychic damage on a failed save, or half as much damage on a successful one.
The target's hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.
The target must make a Constitution saving throw against this magic.
The {creature} has advantage on Dexterity (Stealth) checks made to hide in rocky terrain.
The {creature} magically animates one or two trees it can see within 60 feet of it. These trees have the same statistics as a {creature}, except they have Intelligence and Charisma scores of 1, they can't speak, and they have only the Slam action option.
An animated tree acts as an ally of the {creature}. The tree remains animate for 1 day or until it dies; until the {creature} dies or is more than 120 feet from the tree; or until the {creature} takes a bonus action to turn it back into an inanimate tree. The tree then takes root if possible.
The {creature} magically animates one or two trees it can see within 60 feet of it.
For 1 minute, the {creature} magically increases in size, along with anything it is wearing or carrying. While enlarged, the {creature} is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the {creature} lacks the room to become Large, it attains the maximum size possible in the space available.
A 15-foot radius of magical darkness extends out from the {creature}, moves with it, and spreads around corners. The darkness lasts as long as the {creature} maintains concentration, up to 10 minutes (as if concentrating on a spell).
Darkvision can't penetrate this darkness, and no natural light can illuminate it. If any of the darkness overlaps with an area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled.
A 15-foot radius of magical darkness extends out from the {creature}, moves with it, and spreads around corners. Darkvision can't penetrate this darkness, and no natural light can illuminate it.
The {creature} has advantage on Dexterity (Stealth) checks made to hide in snowy terrain.
The {creature} has advantage on attack rolls against any creature grappled by it.
A spellcaster who wears the {creature}'s amulet can cause the {creature} to store one spell of 4th level or lower. To do so, the wearer must cast the spell on the {creature}. The spell has no effect but is stored within the {creature}. When commanded to do so by the wearer or when a situation arises that was predefined by the spellcaster, the {creature} casts the stored spell with any parameters set by the original caster, requiring no components. When the spell is cast or a new spell is stored, any previously stored spell is lost.
The {creature} spits acid in a line that is 30 ft. long and 5 ft. wide, provided that it has no creature grappled.
Each creature in that line must make a DC 13 Dexterity saving throw, taking 10 (3d6) acid damage on a failed save, or half as much damage on a successful one.
The {creature} spits acid in a line that is 30 ft. long and 5 ft. wide. Each creature in that line must make a Dexterity saving throw.
The {creature} adds 2 to its AC against one melee attack that would hit it. To do so, the {creature} must see the attacker and be wielding a melee weapon.
While in contact with a web, the {creature} knows the exact location of any other creature in contact with the same web.
While the {creature} remains motionless, it is indistinguishable from a normal suit of armor.
Each non-{type} creature within 60 ft. of the {creature} that can see it must succeed on a DC 13 Wisdom saving throw or be frightened for 1 minute. If the save fails by 5 or more, the target also ages 1d4 x 10 years.
A frightened target can repeat the saving throw at the end of each of its turns, ending the frightened condition on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this {creature}'s Horrifying Visage for the next 24 hours. The aging effect can be reversed with a greater restoration spell, but only within 24 hours of it occurring.
Each non-{type} creature within 60 ft. of the {creature} that can see it must succeed make a Wisdom saving throw. A target can repeat the saving throw at the end of each of its turns, ending the condition on itself on a success.
The {creature} knows if it hears a lie.
As a bonus action, the {creature} can expend a spell slot to cause its melee weapon attacks to magically deal an extra 10 (3d6) radiant damage to a target on a hit.
This benefit lasts until the end of the turn. If the {creature} expends a spell slot of 2nd level or higher, the extra damage increases by 1d6 for each level above 1st.
As a bonus action, the {creature} can expend a spell slot to cause its melee weapon attacks to magically deal an extra radiant damage to a target on a hit.
Each creature that fails a DC 18 Wisdom saving throw is deafened and frightened for 1 minute. A frightened creature is paralyzed and can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The {creature} can take one reaction on every turn in combat.
The {creature} can hold its breath for 15 minutes.
If the {type} takes cold damage, it partially freezes; its speed is reduced by 20 ft. until the end of its next turn.
If the {type} takes cold damage, it partially freezes.
The {creature} is considered to be a Large animal for the purpose of determining its carrying capacity.
For each head the {creature} has beyond one, it gets an extra reaction that can be used only for opportunity attacks.
The {creature} has advantage on Strength and Dexterity saving throws made against effects that would knock it prone.
One creature grappled by the {creature} must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute.
Until this poison ends, the target is paralyzed. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
One creature grappled by the {creature} must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
While in dim light or darkness, the {creature} can take the Hide action as a bonus action.
The {creature} can take the Hide action as a bonus action.
The {creature}'s weapon attacks are magical.
Each creature of the {type}'s choice that is within 120 feet of the {type} and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute.
A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the {type}'s Frightful Presence for the next 24 hours.
Each creature of the {type}'s choice that is within 120 feet of the {type} and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.
When the {creature} dies, it explodes in a burst of dust. Each creature within 5 ft. of it must then succeed on a DC 10 Constitution saving throw or be blinded for 1 minute. A blinded creature can repeat the saving throw on each of its turns, ending the effect on itself on a success.
When the {creature} dies, it explodes in a burst of dust. Each creature within 5 ft. of it must make a Constitution saving throw.
The {creature} targets one frightened creature she can see within 30 ft. of her. If the target can see the {creature}, it must succeed on a DC 11 Wisdom saving throw against this magic or drop to 0 hit points.
The {creature} targets one frightened creature she can see within 30 ft. of her. If the target can see the {creature}, it must make a Wisdom saving throw against this magic.
Each creature in the {type}'s space must make a DC 13 Strength saving throw. On a failure, a target takes 15 (3d8 + 2) bludgeoning damage and is flung up 20 feet away from the {type} in a random direction and knocked prone.
If a thrown target strikes an object, such as a wall or floor, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 13 Dexterity saving throw or take the same damage and be knocked prone. If the saving throw is successful, the target takes half the bludgeoning damage and isn't flung away or knocked prone.
Each creature in the {type}'s space must make a Strength saving throw. On a failure, a target is flung up 20 feet away from the {type} in a random direction and knocked prone. If the target is thrown at another creature, that creature must make a Dexterity saving throw or take the same damage and be knocked prone.
The {creature} sweeps its spectral scythe through a creature within 5 feet of it, dealing 7 (1d8 + 3) slashing damage plus 4 (1d8) necrotic damage.
The {creature} sweeps its spectral scythe through a creature within 5 feet of it.
The {creature} and any ghouls within 30 ft. of it have advantage on saving throws against effects that turn undead.
A melee weapon deals one extra die of its damage when the {creature} hits with it (included in the attack).
Melee Spell Attack:+5 to hit, reach 5 ft., one creature. Hit: The target is magically cursed for 1 hour. Until the curse ends, the target has disadvantage on Wisdom saving throws and all ability checks.
The target has disadvantage on Wisdom saving throws and all ability checks.
As a bonus action, the {creature} can target one creature it can see within 5 ft. of it that has 0 hit points and is still alive.
The target must succeed on a DC 10 Constitution saving throw against this magic or die. If the target dies, the {creature} regains 10 (3d6) hit points.
The {creature} can target one creature it can see within 5 ft. The target must succeed on a Constitution saving throw.
The {creature} touches another creature. The target magically regains 20 (4d8 + 2) hit points and is freed from any curse, disease, poison, blindness, or deafness.
The {creature} has advantage on saving throws against any effects that turn undead.
The {creature} enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane.
The {creature} can't use its blindsight while deafened.
The {creature} makes one attack with its hooves.
The {creature} covers herself and anything she is wearing or carrying with a magical illusion that makes her look like another creature of her general size and humanoid shape. The illusion ends if the {creature} takes a bonus action to end it or if she dies.
The changes wrought by this effect fail to hold up to physical inspection. For example, the {creature} could appear to have smooth skin, but someone touching her would feel her rough flesh. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 20 Intelligence (Investigation) check to discern that the {creature} is disguised.
Each creature in the {type}'s space must make a DC 15 Strength saving throw. On a failure, a target takes 13 (2d8 + 4) bludgeoning damage. If it is Large or smaller, it is also grappled (escape DC 14). Until this grapple ends, the target is restrained and unable to breathe unless it can breathe water.
If the saving throw is successful, the target is pushed out of the {type}'s space.The {type} can grapple one Large creature or up to two Medium or smaller creatures at one time. At the start of each of the {type}'s turns, each target grappled by it takes 13 (2d8 + 4) bludgeoning damage. A creature within 5 feet of the {type} can pull a creature or object out of it by taking an action to make a DC 14 Strength check and succeeding.
Each creature in the {type}'s space must make a Strength saving throw. If it is Large or smaller, it is also grappled. Until this grapple ends, the target is restrained and unable to breathe unless it can breathe water. A creature within 5 feet of the {type} can pull a creature or object out of it by taking an action to make a Strength check and succeeding.
The {creature} magically creates three illusory duplicates of itself if it isn't in bright light. The duplicates move with it and mimic its actions, shifting position so as to make it impossible to track which {creature} is the real one. If the {creature} is ever in an area of bright light, the duplicates disappear.
Whenever any creature targets the {creature} with an attack or a harmful spell while a duplicate remains, that creature rolls randomly to determine whether it targets the {creature} or one of the duplicates. A creature is unaffected by this magical effect if it can't see or if it relies on senses other than sight.
A duplicate has the {creature}'s AC and uses its saving throws. If an attack hits a duplicate, or if a duplicate fails a saving throw against an effect that deals damage, the duplicate disappears.
The {creature} exhales a 15-foot cone of blinding dust.
Each creature in that area must succeed on a DC 10 Dexterity saving throw or be blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The {creature} exhales a 15-foot cone of blinding dust. Each creature in that area must make a Dexterity saving throw. A creature can repeat the saving throw at the end of each of its turns.
The {creature} can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The {creature} regains spent legendary actions at the start of its turn.
The {creature} can take 3 legendary actions.
The {creature} is magically bound to an amulet. As long as the {creature} and its amulet are on the same plane of existence, the amulet's wearer can telepathically call the {creature} to travel to it, and the {creature} knows the distance and direction to the amulet.
If the {creature} is within 60 feet of the amulet's wearer, half of any damage the wearer takes (rounded up) is transferred to the {creature}.
The {creature} is magically bound to an amulet.
While in sunlight, the {creature} has disadvantage on attack rolls, ability checks, and saving throws.
When a creature the {type} can see starts its turn within 30 feet of the {type}, the {type} can create the illusion that it looks like one of the creature's departed loved ones or bitter enemies. If the creature can see the {type}, it must succeed on a DC 14 Wisdom saving throw or be Frightened until the end of its turn.
The {type} can create the illusion that it looks like one of the creature's departed loved ones or bitter enemies. Make a Wisdom saving throw.
The {creature}'s weapon attacks are magical and deal an extra 13 (3d8) poison damage on a hit (included in the attacks).
The {creature}'s weapon attacks are magical and deal extra poison damage on a hit (included in the attacks).
If the {creature} takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn.
If the {creature} takes fire damage, it has disadvantage on some rolls.
The {creature} magically reads the surface thoughts of one creature within 60 ft. of it. The effect can penetrate barriers, but 3 ft. of wood or dirt, 2 ft. of stone, 2 inches of metal, or a thin sheet of lead blocks it.
While the target is in range, the {creature} can continue reading its thoughts, as long as the {creature}'s concentration isn't broken (as if concentrating on a spell). While reading the target's mind, the {creature} has advantage on Wisdom (Insight) and Charisma (Deception, Intimidation, and Persuasion) checks against the target.
The {creature} magically reads the surface thoughts of one creature within 60 ft. of it.
If a creature starts its turn within 30 ft. of the {creature} and the two of them can see each other, the {creature} can force the creature to make a DC 12 Constitution saving throw if the {creature} isn't incapacitated. On a failed save, the creature magically begins to turn to stone and is restrained. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is petrified until freed by the greater restoration spell or other magic.
A creature that isn't surprised can avert its eyes to avoid the saving throw at the start of its turn. If it does so, it can't see the {creature} until the start of its next turn, when it can avert its eyes again. If it looks at the {creature} in the meantime, it must immediately make the save. If the {creature} sees its reflection within 30 ft. of it in bright light, it mistakes itself for a rival and targets itself with its gaze.
The {creature} can force the creature to make a Constitution saving throw. It must repeat the saving throw at the end of its next turn. A creature that isn't surprised can avert its eyes to avoid the saving throw at the start of its turn. If it does so, it can't see the {creature} until the start of its next turn, when it can avert its eyes again. If it looks at the {creature} in the meantime, it must immediately make the save.
The {creature} can grant resistance to fire damage to anyone riding it.
If the {creature} is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, the {creature} instead takes no damage if it succeeds on the saving throw, and only half damage if it fails.
The {creature} exhales petrifying gas in a 30-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw.
On a failed save, a target begins to turn to stone and is restrained. The restrained target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is petrified until freed by the greater restoration spell or other magic.
The {creature} exhales petrifying gas in a 30-foot cone. Each creature in that area must make a Constitution saving throw.
The {creature} can magically transmit simple messages and images to any creature within 120 ft. of it that can understand a language. This form of telepathy doesn't allow the receiving creature to telepathically respond.
After 1 minute, the diseased creature's skin becomes translucent and slimy, the creature can't regain hit points unless it is underwater, and the disease can be removed only by heal or another disease-curing spell of 6th level or higher. When the creature is outside a body of water, it takes 6 (1d12) acid damage every 10 minutes unless moisture is applied to the skin before 10 minutes have passed.
You feel a surging pain rushing through your body!
If the {creature} moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a DC 12 Strength saving throw or be knocked prone. If the target is prone, the {creature} can make one stomp attack against it as a bonus action.
If the {creature} moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a Strength saving throw.
When a creature makes an Attack against the wearer of the {creature}'s Amulet, the {creature} grants a +2 bonus to the wearer's AC if the {creature} is within 5 feet of the wearer.
One humanoid the {creature} can see within 30 feet of it must make a Wisdom saving throw or be magically charmed for 1 day. The charmed target obeys the {creature}'s verbal or telepathic commands.
If the target suffers any harm or receives a suicidal command, it can repeat the saving throw, ending the effect on a success. If the target successfully saves against the effect, or if the effect on it ends, the target is immune to this {creature}'s Charm for the next 24 hours. The {creature} can have only one target charmed at a time. If it charms another, the effect on the previous target ends.
One humanoid the {creature} can see within 30 feet of it must make a Wisdom saving throw.
The {type} can burrow through nonmagical, unworked earth and stone. While doing so, the {type} doesn't disturb the material it moves through.
The {creature} ignores movement restrictions caused by webbing.
**Repulsion Breath.** The {type} exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 19 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the {type}.
The {type} exhales repulsion energy in a 30-foot cone. Each creature in that area must make a Strength saving throw.
The {creature} has advantage on Wisdom (Perception) checks and on saving throws against being blinded, charmed, deafened, frightened, stunned, or knocked unconscious.
The {creature} can mimic animal sounds and humanoid voices. A creature that hears the sounds can tell they are imitations with a successful DC 14 Wisdom (Insight) check.
The {creature} can mimic animal sounds and humanoid voices. A creature that hears the sounds can tell they are imitations with a successful Wisdom (Insight) check.
Once per turn, the {creature} can deal an extra 7 (2d6) damage to a creature it hits with a weapon attack if that creature is within 5 ft. of an ally of the {creature} that isn't incapacitated.
Once per turn, the {creature} can deal extra damage to a creature it hits with a weapon attack if that creature is within 5 ft. of an ally of the {creature} that isn't incapacitated.
The {type} exhales acid in a 60-foot line that is 5 feet wide.
Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.
The {type} exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.
While the gargoyle remains motion less, it is indistinguishable from an inanimate statue.
The gargoyle makes two attacks: one with its bite and one with its claws.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.
The Gargoyle attacks with its Bite.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.
The Gargoyle attacks with its Claws.
On each of its turns, the spy can use a bonus action to take the dash, disengage, or hide action.
The spy deals an extra 7 (2d6) damage when it hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 ft. of an ally of the spy that isn't incapacitated and the spy doesn't have disadvantage on the attack roll.
The spy makes two melee attacks.
The Spy attacks with their Shortsword.
Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.
The Spy attacks with their Hand Crossbow.
Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 30 (4d12 + 4) piercing damage.
The Bulette attacks with its Bite.
The bulette's long jump is up to 30 ft. and its high jump is up to 15 ft., with or without a running start.
If the bulette jumps at least 15 ft. as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures.
Each of those creatures must succeed on a DC 16 Strength or Dexterity saving throw (target's choice) or be knocked prone and take 14 (3d6 + 4) bludgeoning damage plus 14 (3d6 + 4) slashing damage. On a successful save, the creature takes only half the damage, isn't knocked prone, and is pushed 5 ft. out of the bulette's space into an unoccupied space of the creature's choice. If no unoccupied space is within range, the creature instead falls prone in the bulette's space.
If the bulette jumps at least 15 ft. as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures. Each of those creatures must make a Strength or Dexterity saving throw (target's choice) or be knocked prone.
The drider has advantage on saving throws against being charmed, and magic can't put the drider to sleep.
The drider's innate spellcasting ability is Wisdom (spell save DC 13). The drider can innately cast the following spells, requiring no material components:
At will: dancing lights
1/day each: darkness, faerie fire
The drider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.
While in sunlight, the drider has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.
The drider ignores movement restrictions caused by webbing.
The drider makes three attacks, either with its longsword or its longbow. It can replace one of those attacks with a bite attack.
Melee Weapon Attack:+6 to hit,, 5 ft., one creature. Hit: 2 (1d4) piercing damage plus 9 (2d8) poison damage.
The Drider attacks with its Bite.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.
The Drider attacks with its Longsword.
Ranged Weapon Attack: +6 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) poison damage.
The Drider attacks with its Longbow.
You create up to four torch-sized lights within range, making them appear as torches, lanterns, or glowing orbs that hover in the air for the duration. You can also combine the four lights into one glowing vaguely humanoid form of Medium size. Whichever form you choose, each light sheds dim light in a 10-foot radius.
As a bonus action on your turn, you can move the lights up to 60 feet to a new spot within range. A light must be within 20 feet of another light created by this spell, and a light winks out if it exceeds the spell's range.
Magical darkness spreads from a point you choose within range to fill a 15-foot-radius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and nonmagical light can't illuminate it.
If the point you choose is on an object you are holding or one that isn't being worn or carried, the darkness emanates from the object and moves with it. Completely covering the source of the darkness with an opaque object, such as a bowl or a helm, blocks the darkness.
If any of this spell's area overlaps with an area of light created by a spell of 2nd level or lower, the spell that created the light is dispelled.
The merrow can breathe air and water.
The merrow makes two attacks: one with its bite and one with its claws or harpoon.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.
The Merrow attacks with its Bite.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 9 (2d4 + 4) slashing damage.
The Merrow attacks with its Claws.
Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage.
If the target is a Huge or smaller creature, it must succeed on a Strength contest against the merrow or be pulled up to 20 feet toward the merrow.
The Merrow attacks with its Harpoon. If the target is a Huge or smaller creature, it must make a Strength contest against the merrow or be pulled up to 20 feet toward the merrow.
The drow has advantage on saving throws against being charmed, and magic can't put the drow to sleep.
The drow's spellcasting ability is Charisma (spell save DC 11). It can innately cast the following spells, requiring no material components:
While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.
The Drow attacks with its Shortsword.
The target must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the target is also unconscious while poisoned in this way. The target wakes up if it takes damage or if another creature takes an action to shake it awake.
The Drow attacks with its Hand Crossbow. The target must make a Constitution saving throw.
Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 12 (2d6 + 5) piercing damage plus 10 (3d6) cold damage.
The Ice Devil attacks with its Bite.
Magical darkness doesn't impede the devil's darkvision.
The devil has advantage on saving throws against spells and other magical effects.
The devil magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter.
The wall lasts for 1 minute or until the devil is incapacitated or dies. The wall can be damaged and breached; each 10-foot section has AC 5, 30 hit points, vulnerability to fire damage, and immunity to acid, cold, necrotic, poison, and psychic damage. If a section is destroyed, it leaves behind a sheet of frigid air in the space the wall occupied. Whenever a creature finishes moving through the frigid air on a turn, willingly or otherwise, the creature must make a DC 17 Constitution saving throw, taking 17 (5d6) cold damage on a failed save, or half as much damage on a successful one. The frigid air dissipates when the rest of the wall vanishes.
The devil magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter.When the wall appears, each creature in its space is pushed out of it by the shortest route. The creature chooses which side of the wall to end up on, unless the creature is incapacitated. The creature then makes a Dexterity saving throw.
Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage plus 10 (3d6) cold damage.
The Ice Devil attacks with its Tail.
Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 10 (2d4 + 5) slashing damage plus 10 (3d6) cold damage.
The Ice Devil attacks with its Claws.
The devil makes three attacks: one with its bite, one with its claws, and one with its tail.
The spider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.
Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 1 piercing damage.
The target must succeed on a DC 9 Constitution saving throw or take 2 (1d4) poison damage.
The Spider attacks with its Bite. The target must make a Constitution saving throw.
While in contact with a web, the spider knows the exact location of any other creature in contact with the same web.
The spider ignores movement restrictions caused by webbing.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 13 (3d6 + 3) piercing damage.
The Xorn attacks with its Bite.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.
The Xorn attacks with its Claw.
The xorn can burrow through nonmagical, unworked earth and stone. While doing so, the xorn doesn't disturb the material it moves through.
The xorn makes three claw attacks and one bite attack.
The xorn has advantage on Dexterity (Stealth) checks made to hide in rocky terrain.
The xorn can pinpoint, by scent, the location of precious metals and stones, such as coins and gems, within 60 ft. of it.
The dragon can breathe air and water.
If the dragon fails a saving throw, it can choose to succeed instead.
The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.
Melee Weapon Attack:+16 to hit,, 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage.
The Ancient Bronze Dragon attacks with its Bite.
Melee Weapon Attack:+16 to hit,, 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.
The Ancient Bronze Dragon attacks with its Claw.
Melee Weapon Attack:+16 to hit,, 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.
The Ancient Bronze Dragon attacks with its Tail.
Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute.
A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.
Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a Wisdom saving throw. A creature can repeat the saving throw at the end of each of its turns.
The dragon uses one of the following breath weapons.
**Lightning Breath.** The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.
**Repulsion Breath.** The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 23 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.
The dragon breathes in!
The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a Dexterity saving throw.
The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must make a Strength saving throw.
The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).
In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.
The dragon can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The dragon regains spent legendary actions at the start of its turn.
The dragon can take 3 legendary actions.
The dragon makes a tail attack.
The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 24 Dexterity saving throw or take 16 ([[/r 2d6+9]]) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.
The dragon makes a Wisdom (Perception) check.
The dragon watches its surrounding...
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 1 bludgeoning damage.
The target is grappled (escape DC 10). Until this grapple ends, the octopus can't use its tentacles on another target.
The Octopus attacks with its Tentacles. The target is grappled . Until this grapple ends, the octopus can't use its tentacles on another target.
While out of water, the octopus can hold its breath for 30 minutes.
The octopus has advantage on Dexterity (Stealth) checks made while underwater.
The octopus can breathe only underwater.
A 5-foot-radius cloud of ink extends all around the octopus if it is underwater. The area is heavily obscured for 1 minute, although a significant current can disperse the ink. After releasing the ink, the octopus can use the Dash action as a bonus action.
A 5-foot-radius cloud of ink extends all around the octopus if it is underwater.
The crocodile can hold its breath for 30 minutes.
The crocodile makes two attacks: one with its bite and one with its tail.
Melee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 21 (3d10 + 5) piercing damage.
The target is grappled (escape DC 16). Until this grapple ends, the target is restrained, and the crocodile can't bite another target.
The Giant Crocodile attacks with its Bite. If successful, the target is grappled. Until this grapple ends, the target is restrained, and the crocodile can't bite another target.
Melee Weapon Attack:+8 to hit,, 10 ft., one target not grappled by the crocodile. Hit: 14 (2d8 + 5) bludgeoning damage.
If the target is a creature, it must succeed on a DC 16 Strength saving throw or be knocked prone.
The Giant Crocodile attacks with its Tail. If the target is a creature, it must make a Strength saving throw.
The cube takes up its entire space. Other creatures can enter the space, but a creature that does so is subjected to the cube's Engulf and has disadvantage on the saving throw. Creatures inside the cube can be seen but have total cover.
A creature within 5 feet of the cube can take an action to pull a creature or object out of the cube. Doing so requires a successful DC 12 Strength check, and the creature making the attempt takes 10 (3d6) acid damage. The cube can hold only one Large creature or up to four Medium or smaller creatures inside it at a time.
The cube takes up its entire space. Other creatures can enter the space, but a creature that does so is subjected to the cube's Engulf and has disadvantage on the saving throw. Creatures inside the cube can be seen but have total cover. A creature within 5 feet of the cube can take an action to pull a creature or object out of the cube. Doing so requires a successful Strength check.
Even when the cube is in plain sight, it takes a successful DC 15 Wisdom (Perception) check to spot a cube that has neither moved nor attacked. A creature that tries to enter the cube's space while unaware of the cube is surprised by the cube.
Even when the cube is in plain sight, it takes a successful Wisdom (Perception) check to spot a cube that has neither moved nor attacked. A creature that tries to enter the cube's space while unaware of the cube is surprised by the cube.
Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 10 (3d6) acid damage.
The Gelatinous Cube attacks with its Pseudopod.
The cube moves up to its speed. While doing so, it can enter Large or smaller creatures' spaces. Whenever the cube enters a creature's space, the creature must make a DC 12 Dexterity saving throw.On a successful save, the creature can choose to be pushed 5 feet back or to the side of the cube. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.
On a failed save, the cube enters the creature's space, and the creature takes 10 (3d6) acid damage and is engulfed. The engulfed creature can't breathe, is restrained, and takes 21 (6d6) acid damage at the start of each of the cube's turns. When the cube moves, the engulfed creature moves with it.An engulfed creature can try to escape by taking an action to make a DC 12 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the cube.
Whenever the cube enters a creature's space, the creature must make a Dexterity saving throw. On a successful save, the creature can choose to be pushed 5 feet back or to the side of the cube. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.
The erinyes's weapon attacks are magical and deal an extra 13 (3d8) poison damage on a hit (included in the attacks).
The erinyes's weapon attacks are magical and deal extra poison damage on a hit (included in the attacks).
Melee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage, or 9 (1d10 + 4) slashing damage if used with two hands, plus 13 (3d8) poison damage.
The Erinyes attacks with its Longsword.
The erinyes adds 4 to its AC against one melee Attack that would hit it. To do so, the erinyes must see the attacker and be wielding a melee weapon.
The erinyes adds 4 to its AC against one melee Attack that would hit it.
The erinyes has advantage on saving throws against spells and other magical effects.
Ranged Weapon Attack: +7 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 13 (3d8) poison damage.
The target must succeed on a DC 14 Constitution saving throw or be poisoned. The poison lasts until it is removed by the lesser restoration spell or similar magic.
The Erinyes attacks with its Longbow. The target must make a Constitution saving throw.
The erinyes makes three attacks.
Melee Weapon Attack:+11 to hit,, 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) cold damage.
The Adult White Dragon attacks with its Bite.
Melee Weapon Attack:+11 to hit,, 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.
The Adult White Dragon attacks with its Claw.
The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.
The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a Constitution saving throw.
Each creature of the dragon's choice that is within 120 ft. of the dragon and aware of it must succeed on a DC 14 Wisdom saving throw or become frightened for 1 minute.
The dragon can move across and climb icy surfaces without needing to make an ability check. Additionally, difficult terrain composed of ice or snow doesn't cost it extra movement.
Melee Weapon Attack:+11 to hit,, 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.
The Adult White Dragon attacks with its Tail.
The dragon slams its long tail against its foe!
The giant makes two greatsword attacks.
Melee Weapon Attack:+11 to hit,, 10 ft., one target. Hit: 28 (6d6 + 7) slashing damage.
The Fire Giant attacks with its Greatsword.
Ranged Weapon Attack: +11 to hit, range 60/240 ft., one target. Hit: 29 (4d10 + 7) bludgeoning damage.
The Fire Giant attacks with its Rock.
Melee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 2 (1d4) piercing damage.
The Deer attacks with its Bite.
Melee Weapon Attack:+6 to hit,, 10 ft., one target. Hit: 14 (3d6 + 4) piercing damage.
The Plesiosaurus attacks with its Bite.
The plesiosaurus can hold its breath for 1 hour.
The vulture has advantage on Wisdom (Perception) checks that rely on sight or smell.
The vulture has advantage on an attack roll against a creature if at least one of the vulture's allies is within 5 ft. of the creature and the ally isn't incapacitated.
The vulture makes two attacks: one with its beak and one with its talons.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (2d4 + 2) piercing damage.
The Giant Vulture attacks with its Beak.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage.
The Giant Vulture attacks with its Talons.
Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 5 (1d6 + 2) piercing damage.
The target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but poisoned for 1 hour, even after regaining hit points, and is paralyzed while poisoned in this way.
The Giant Wasp attacks with its Sting. The target must make a Constitution saving throw.
The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points.
Melee Weapon Attack:+3 to hit,, 0 ft., one target in the swarm's space. Hit: 10 (4d4) piercing damage, or 5 (2d4) piercing damage if the swarm has half of its hit points or fewer.
The Swarm of Spiders attacks with a flurry of Bites.
The swarm can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.
While in contact with a web, the swarm knows the exact location of any other creature in contact with the same web.
The swarm ignores movement restrictions caused by webbing.
If the elk moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 7 (2d6) damage.
If the target is a creature, it must succeed on a DC 13 Strength saving throw or be knocked prone.
If the elk moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) bludgeoning damage.
The Elk attacks with its Ram.
Melee Weapon Attack:+5 to hit,, 5 ft., one prone creature. Hit: 8 (2d4 + 3) bludgeoning damage.
The Elk attacks with its Hooves.
The lizardfolk can hold its breath for 15 minutes.
The lizardfolk makes two melee attacks, each one with a different weapon.
The Lizardfolk attacks with its Bite.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.
The Lizardfolk attacks with its Heavy Club.
Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.
The Lizardfolk attacks with its Javelin.
The Lizardfolk attacks with its Spiked Shield.
If the djinni dies, its body disintegrates into a warm breeze, leaving behind only equipment the djinni was wearing or carrying.
The djinni's innate spellcasting ability is Charisma (spell save DC 17, +9 to hit with spell attacks). It can innately cast the following spells, requiring no material components:
At will: detect evil and good, detect magic, thunderwave
3/day each: create food and water (can create wine instead of water), tongues, wind walk
1/day each: conjure elemental (air elemental only), creation, gaseous form, invisibility, major image, plane shift
The djinni makes three scimitar attacks.
Melee Weapon Attack:+9 to hit,, 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage plus 3 (1d6) lightning or thunder damage (djinni's choice).
The Djinni attacks with its Scimitar.
A 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the djinni can see within 120 feet of it. The whirlwind lasts as long as the djinni maintains concentration (as if concentrating on a spell).
Any creature but the djinni that enters the whirlwind must succeed on a DC 18 Strength saving throw or be restrained by it. The djinni can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. The whirlwind ends if the djinni loses sight of it.
A 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the djinni can see within 120 feet of it. Any creature but the djinni that enters the whirlwind must make a Strength saving throw or be restrained by it. The djinni can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. A creature can use its action to free a creature restrained by the whirlwind, including itself, by succeeding on a Strength check. If the check succeeds, the creature is no longer restrained and moves to the nearest space outside the whirlwind.
You call forth an air elemental servant. Choose an area of air that fills a 10-foot cube within range. An elemental of challenge rating 5 or lower appropriate to the area you chose appears in an unoccupied space within 10 feet of it. For example, a fire elemental emerges from a bonfire, and an earth elemental rises up from the ground. The elemental disappears when it drops to 0 hit points or when the spell ends.
The elemental is friendly to you and your companions for the duration. Roll initiative for the elemental, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the elemental, it defends itself from hostile creatures but otherwise takes no actions.
If your concentration is broken, the elemental doesn't disappear. Instead, you lose control of the elemental, it becomes hostile toward you and your companions, and it might attack. An uncontrolled elemental can't be dismissed by you, and it disappears 1 hour after you summoned it.
Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the challenge rating increases by 1 for each slot level above 5th.
You create 45 pounds of food and 30 gallons of water on the ground or in containers within range, enough to sustain up to fifteen humanoids or five steeds for 24 hours. The food is bland but nourishing, and spoils if uneaten after 24 hours. The water is clean and doesn't go bad.
This spell grants the creature you touch the ability to understand any spoken language it hears. Moreover, when the target speaks, any creature that knows at least one language and can hear the target understands what it says.
You and up to ten willing creatures you can see within range assume a gaseous form for the Duration, appearing as wisps of cloud. While in this cloud form, a creature has a flying speed of 300 feet and has resistance to damage from nonmagical weapons. The only Actions a creature can take in this form are the Dash action or to revert to its normal form. Reverting takes 1 minute, during which time a creature is Incapacitated and can't move. Until the spell ends, a creature can revert to cloud form, which also requires the 1-minute transformation.
If a creature is in cloud form and flying when the effect ends, the creature descends 60 feet per round for 1 minute until it lands, which it does safely. If it can't land after 1 minute, the creature falls the remaining distance.
You pull wisps of shadow material from the Shadowfell to create a nonliving object of vegetable matter within 'range': soft goods, rope, wood, or something similar. You can also use this spell to create mineral objects such as stone, crystal, or metal. The object created must be no larger than a 5-foot cube, and the object must be of a form and material that you have seen before.
The duration depends on the object's material. If the object is composed of multiple materials, use the shortest duration.
Using any material created by this spell as another spell's material component causes that spell to fail.
Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the cube increases by 5 feet for each slot level above 5th.
You transform a willing creature you touch, along with everything it's wearing and carrying, into a misty cloud for the duration. The spell ends if the creature drops to 0 hit points. An incorporeal creature isn't affected.
While in this form, the target's only method of movement is a flying speed of 10 feet. The target can enter and occupy the space of another creature. The target has resistance to nonmagical damage, and it has advantage on Strength, Dexterity, and Constitution saving throws. The target can pass through small holes, narrow openings, and even mere cracks, though it treats liquids as though they were solid surfaces. The target can't fall and remains hovering in the air even when stunned or otherwise incapacitated.
While in the form of a misty cloud, the target can't talk or manipulate objects, and any objects it was carrying or holding can't be dropped, used, or otherwise interacted with. The target can't attack or cast spells.
A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.
At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.
You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 20-foot cube. The image appears at a spot that you can see within range and lasts for the duration. It seems completely real, including sounds, smells, and temperature appropriate to the thing depicted. You can't create sufficient heat or cold to cause damage, a sound loud enough to deal thunder damage or deafen a creature, or a smell that might sicken a creature (like a troglodyte's stench).
As long as you are within range of the illusion, you can use your action to cause the image to move to any other spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking. Similarly, you can cause the illusion to make different sounds at different times, even making it carry on a conversation, for example.
Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and its other sensory qualities become faint to the creature.
At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the spell lasts until dispelled, without requiring your concentration.
You and up to eight willing creatures who link hands in a circle are transported to a different plane of existence. You can specify a target destination in general terms, such as the City of Brass on the Elemental Plane of Fire or the palace of Dispater on the second level of the Nine Hells, and you appear in or near that destination. If you are trying to reach the City of Brass, for example, you might arrive in its Street of Steel, before its Gate of Ashes, or looking at the city from across the Sea of Fire, at the DM's discretion.
Alternatively, if you know the sigil sequence of a teleportation circle on another plane of existence, this spell can take you to that circle. If the teleportation circle is too small to hold all the creatures you transported, they appear in the closest unoccupied spaces next to the circle.
You can use this spell to banish an unwilling creature to another plane. Choose a creature within your reach and make a melee spell attack against it. On a hit, the creature must make a Charisma saving throw. If the creature fails this save, it is transported to a random location on the plane of existence you specify. A creature so transported must find its own way back to your current plane of existence.
The nightmare can grant resistance to fire damage to anyone riding it.
The nightmare sheds bright light in a 10-foot radius and dim light for an additional 10 feet.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage plus 7 (2d6) fire damage.
The Nightmare attacks with its Hooves.
The nightmare and up to three willing creatures within 5 feet of it magically enter the Ethereal Plane from the Material Plane, or vice versa.
The veteran makes two longsword attacks. If it has a shortsword drawn, it can also make a shortsword attack.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.
The Half-Red Dragon Veteran attacks with its Longsword.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.
The Half-Red Dragon Veteran attacks with its Shortsword.
Ranged Weapon Attack: +3 to hit, range 100/400 ft., one target. Hit: 6 (1d10 + 1) piercing damage.
The Half-Red Dragon Veteran attacks with its Heavy Crossbow.
The veteran exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.
The veteran exhales fire in a 15-foot cone. Each creature in that area must make a Dexterity saving throw.
Melee Weapon Attack:+6 to hit,, 10 ft., one target. Hit: 9 (1d10 + 4) piercing damage.
The Centaur attacks with its Pike.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.
The Centaur attacks with its Hooves.
Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.
The Centaur attacks with its Longbow.
The centaur makes two attacks: one with its pike and one with its hooves or two with its longbow.
If the centaur moves at least 30 ft. straight toward a target and then hits it with a pike attack on the same turn, the target takes an extra 10 (3d6) piercing damage.
If the centaur moves at least 30 ft. straight toward a target and then hits it with a pike attack on the same turn, the target takes extra piercing damage.
While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.
The kobold has advantage on an attack roll against a creature if at least one of the kobold's allies is within 5 ft. of the creature and the ally isn't incapacitated.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.
The Kobold attacks with its Dagger.
Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 4 (1d4 + 2) bludgeoning damage.
The Kobold attacks with its Sling.
The giant can breathe air and water.
Melee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 30 (6d6 + 9) slashing damage.
The Storm Giant attacks with its Greatsword.
The giant's innate spellcasting ability is Charisma (spell save DC 17). It can innately cast the following spells, requiring no material components:
At will: detect magic, feather fall, levitate, light
3/day each: control weather, water breathing
The giant hurls a magical lightning bolt at a point it can see within 500 feet of it.
Each creature within 10 feet of that point must make a DC 17 Dexterity saving throw, taking 54 (12d8) lightning damage on a failed save, or half as much damage on a successful one.
The Storm Giant attacks with its Lightning Strike. Each creature within 10 feet of that point must make a Dexterity saving throw.
Ranged Weapon Attack: +14 to hit, range 60/240 ft., one target. Hit: 35 (4d12 + 9) bludgeoning damage.
The Storm Giant attacks with its Rock.
Choose up to five falling creatures within range. A falling creature's rate of descent slows to 60 feet per round until the spell ends. If the creature lands before the spell ends, it takes no falling damage and can land on its feet, and the spell ends for that creature.
One creature or object of your choice that you can see within range rises vertically, up to 20 feet, and remains suspended there for the duration. The spell can levitate a target that weighs up to 500 pounds. An unwilling creature that succeeds on a Constitution saving throw is unaffected.
The target can move only by pushing or pulling against a fixed object or surface within reach (such as a wall or a ceiling), which allows it to move as if it were climbing. You can change the target's altitude by up to 20 feet in either direction on your turn. If you are the target, you can move up or down as part of your move. Otherwise, you can use your action to move the target, which must remain within the spell's range.
When the spell ends, the target floats gently to the ground if it is still aloft.
You take control of the weather within 5 miles of you for the duration. You must be outdoors to cast this spell. Moving to a place where you don't have a clear path to the sky ends the spell early.
When you cast the spell, you change the current weather conditions, which are determined by the DM based on the climate and season. You can change precipitation, temperature, and wind. It takes 1d4 x 10 minutes for the new conditions to take effect. Once they do so, you can change the conditions again. When the spell ends, the weather gradually returns to normal.
When you change the weather conditions, find a current condition on the following tables and change its stage by one, up or down. When changing the wind, you can change its direction.
Conditions
Temperature
Wind
This spell grants up to ten willing creatures you can see within range the ability to breathe underwater until the spell ends. Affected creatures also retain their normal mode of respiration.
The vrock has advantage on saving throws against spells and other magical effects.
The vrock makes two attacks: one with its beak and one with its talons.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.
The Vrock attacks with its Beak.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.
The Vrock attacks with its Talons.
A 15-foot-radius cloud of toxic spores extends out from the vrock. The spores spread around corners. Each creature in that area must succeed on a DC 14 Constitution saving throw or become poisoned.
A 15-foot-radius cloud of toxic spores extends out from the vrock. The spores spread around corners. Each creature in that area must make a Constitution saving throw. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The vrock emits a horrific screech. Each creature within 20 feet of it that can hear it and that isn't a demon must succeed on a DC 14 Constitution saving throw or be stunned until the end of the vrock's next turn .
The vrock emits a horrific screech. Each creature within 20 feet of it that can hear it and that isn't a demon must make a Constitution saving throw.
Once per turn, the hobgoblin can deal an extra 7 (2d6) damage to a creature it hits with a weapon attack if that creature is within 5 ft. of an ally of the hobgoblin that isn't incapacitated.
Once per turn, the hobgoblin can deal extra damage to a creature it hits with a weapon attack if that creature is within 5 ft. of an ally of the hobgoblin that isn't incapacitated.
Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage, or 6 (1d10 + 1) slashing damage if used with two hands.
The Hobgoblin attacks with its Longsword.
Ranged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.
The Hobgoblin attacks with its Longbow.
The sphinx is immune to any effect that would sense its emotions or read its thoughts, as well as any divination spell that it refuses. Wisdom (Insight) checks made to ascertain the sphinx's intentions or sincerity have disadvantage.
The sphinx's weapon attacks are magical.
The sphinx is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save DC 16, +8 to hit with spell attacks). It requires no material components to cast its spells. The sphinx has the following wizard spells prepared:
Cantrips (at will): mage hand, minor illusion, prestidigitation
1st level (4 slots): detect magic, identify, shield
2nd level (3 slots): darkness, locate object, suggestion
3rd level (3 slots): dispel magic, remove curse, tongues
4th level (3 slots): banishment, greater invisibility
5th level (1 slot): legend lore
The sphinx is a spellcaster. Its spellcasting ability is Intelligence.
The sphinx makes two claw attacks.
Melee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.
The Gynosphinx attacks with its Claw.
The sphinx can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The sphinx regains spent legendary actions at the start of its turn.
The sphinx can take 3 legendary actions.
The sphinx makes one claw attack.
The sphinx magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.
The sphinx casts a spell from its list of prepared spells, using a spell slot as normal.
You choose one object that you must touch throughout the casting of the spell. If it is a magic item or some other magic-imbued object, you learn its properties and how to use them, whether it requires attunement to use, and how many charges it has, if any. You learn whether any spells are affecting the item and what they are. If the item was created by a spell, you learn which spell created it.
If you instead touch a creature throughout the casting, you learn what spells, if any, are currently affecting it.
Choose one creature, object, or magical effect within range. Any spell of 3rd level or lower on the target ends. For each spell of 4th level or higher on the target, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a successful check, the spell ends.
Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you automatically end the effects of a spell on the target if the spell's level is equal to or less than the level of the spell slot you used.
Describe or name an object that is familiar to you. You sense the direction to the object's location, as long as that object is within 1,000 feet of you. If the object is in motion, you know the direction of its movement.
The spell can locate a specific object known to you, as long as you have seen it up close—within 30 feet—at least once. Alternatively, the spell can locate the nearest object of a particular kind, such as a certain kind of apparel, jewelry, furniture, tool, or weapon.
This spell can't locate an object if any thickness of lead, even a thin sheet, blocks a direct path between you and the object.
You suggest a course of activity (limited to a sentence or two) and magically influence a creature you can see within range that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act ends the spell.
The target must make a Wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do.
You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a knight give her warhorse to the first beggar she meets. If the condition isn't met before the spell expires, the activity isn't performed.
If you or any of your companions damage the target, the spell ends.
At your touch, all curses affecting one creature or object end. If the object is a cursed magic item, its curse remains, but the spell breaks its owner's Attunement to the object so it can be removed or discarded.
You attempt to send one creature that you can see within range to another plane of existence. The target must succeed on a Charisma saving throw or be banished.
If the target is native to the plane of existence you're on, you banish the target to a harmless demiplane. While there, the target is incapacitated. The target remains there until the spell ends, at which point the target reappears in the space it left or in the nearest unoccupied space if that space is occupied.
If the target is native to a different plane of existence than the one you're on, the target is banished with a faint popping noise, returning to its home plane. If the spell ends before 1 minute has passed, the target reappears in the space it left or in the nearest unoccupied space if that space is occupied. Otherwise, the target doesn't return.
At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.
You or a creature you touch becomes Invisible until the spell ends. Anything the target is wearing or carrying is Invisible as long as it is on the target's person.
Name or describe a person, place, or object. The spell brings to your mind a brief summary of the significant lore about the thing you named. The lore might consist of current tales, forgotten stories, or even secret lore that has never been widely known. If the thing you named isn't of legendary importance, you gain no information. The more information you already have about the thing, the more precise and detailed the information you receive is.
The information you learn is accurate but might be couched in figurative language. For example, if you have a mysterious magic axe on hand, the spell might yield this information: \"Woe to the evildoer whose hand touches the axe, for even the haft slices the hand of the evil ones. Only a true Child of Stone, lover and beloved of Moradin, may awaken the true powers of the axe, and only with the sacred word Rudnogg on the lips.\"
The wyvern makes two attacks: one with its bite and one with its stinger. While flying, it can use its claws in place of one other attack.
Melee Weapon Attack:+7 to hit,, 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage.
The Wyvern attacks with its Bite.
Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.
The Wyvern attacks with its Claws.
The target must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.
The Wyvern attacks with its Stinger. The target must make a Constitution saving throw.
Melee Weapon Attack:+2 to hit,, 10 ft., one creature. Hit: 4 (1d8) necrotic damage.
The Violet Fungus attacks with its Rotting Touch.
The fungus makes 1d4 Rotting Touch attacks.
While the violet fungus remains motionless, it is indistinguishable from an ordinary fungus.
The Warhorse Skeleton attacks with its Hooves.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage.
If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with werewolf lycanthropy.
The Werewolf attacks with its Bite. If the target is a humanoid, it must make a Constitution saving throw.
The werewolf makes two attacks: one with its bite and one with its claws or spear.
Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one creature. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.
The Werewolf attacks with its Spear.
Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 7 (2d4 + 2) slashing damage.
The Werewolf attacks with its Claws.
The werewolf can use its action to polymorph into a wolf-humanoid hybrid or into a wolf, or back into its true form, which is humanoid.
Its statistics, other than its AC, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies.
The werewolf can use its action to polymorph, or return to its true form.
The werewolf has advantage on Wisdom (Perception) checks that rely on hearing or smell.
Melee Weapon Attack: +11 to hit, reach,.0 ft., one target. Hit: 17 (2d10 + 6) piercing damage.
The Adult Brass Dragon attacks with its Bite.
**Fire Breath.** The dragon exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 45 (13d6) fire damage on a failed save, or half as much damage on a successful one.
The dragon exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.
The Adult Brass Dragon attacks with its Claw.
Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute.
The Adult Brass Dragon attacks with its Tail.
The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 19 Dexterity saving throw or take 13 (2d6+6) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.
The dragon beats its wings!
**Sleep Breath.** The dragon exhales sleep gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.
The dragon exhales sleep gas in a 90-foot cone. Each creature in that area must make a Constitution saving throw.
Melee Weapon Attack:+7 to hit,, 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 7 (2d6) poison damage.
The Young Green Dragon attacks with its Bite.
Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.
The Young Green Dragon attacks with its Claw.
The dragon makes three attacks: one with its bite and two with its claws.
The dragon exhales poisonous gas in a 30-foot cone. Each creature in that area must make a DC 14 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.
The dragon exhales poisonous gas in a 30-foot cone. Each creature in that area must make a Constitution saving throw.
If it dies, the naga returns to life in 1d6 days and regains all its hit points.
The naga is an 11th-level spellcaster. Its spellcasting ability is Wisdom (spell save DC 16, +8 to hit with spell attacks), and it needs only verbal components to cast its spells. It has the following cleric spells prepared:
Cantrips (at will): mending, sacred flame, thaumaturgy
1st level (4 slots): command, cure wounds, shield of faith
2nd level (3 slots): calm emotions, hold person
3rd level (3 slots): bestow curse, clairvoyance
4th level (3 slots): banishment, freedom of movement
5th level (2 slots): flame strike, geas
6th level (1 slot): true seeing
The naga is an spellcaster. Its spellcasting ability is Wisdom.
Melee Weapon Attack:+8 to hit,, 10 ft., one creature. Hit: 8 (1d8 + 4) piercing damage.
The target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.
The Guardian Naga attacks with its Bite. The target must make a Constitution saving throw.
Ranged Weapon Attack: +8 to hit, range 15/30 ft., one creature. Hit:
The Guardian Naga attacks with its Spit Poison. The target must make a Constitution saving throw.
You attempt to suppress strong emotions in a group of people. Each humanoid in a 20-foot-radius sphere centered on a point you choose within range must make a Charisma saving throw; a creature can choose to fail this saving throw if it wishes. If a creature fails its saving throw, choose one of the following two effects. You can suppress any effect causing a target to be charmed or frightened. When this spell ends, any suppressed effect resumes, provided that its duration has not expired in the meantime.
Alternatively, you can make a target indifferent about creatures of your choice that it is hostile toward. This indifference ends if the target is attacked or harmed by a spell or if it witnesses any of its friends being harmed. When the spell ends, the creature becomes hostile again, unless the DM rules otherwise.
Choose a humanoid that you can see within range. The target must succeed on a Wisdom saving throw or be paralyzed for the duration. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target.
Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you can target one additional humanoid for each slot level above 2nd. The humanoids must be within 30 feet of each other when you target them.
You touch a creature, and that creature must succeed on a Wisdom saving throw or become cursed for the duration of the spell. When you cast this spell, choose the nature of the curse from the following options:
A remove curse spell ends this effect. At the DM's option, you may choose an alternative curse effect, but it should be no more powerful than those described above. The DM has final say on such a curse's effect.
At Higher Levels. If you cast this spell using a spell slot of 4th level or higher, the duration is concentration, up to 10 minutes. If you use a spell slot of 5th level or higher, the duration is 8 hours. If you use a spell slot of 7th level or higher, the duration is 24 hours. If you use a 9th level spell slot, the spell lasts until it is dispelled. Using a spell slot of 5th level or higher grants a duration that doesn't require concentration.
You create an invisible sensor within range in a location familiar to you (a place you have visited or seen before) or in an obvious location that is unfamiliar to you (such as behind a door, around a corner, or in a grove of trees). The sensor remains in place for the duration, and it can't be attacked or otherwise interacted with.
When you cast the spell, you choose seeing or hearing. You can use the chosen sense through the sensor as if you were in its space. As your action, you can switch between seeing and hearing.
A creature that can see the sensor (such as a creature benefiting from see invisibility or truesight) sees a luminous, intangible orb about the size of your fist.
You touch a willing creature. For the Duration, the target's Movement is unaffected by difficult terrain, and Spells and other magical Effects can neither reduce the target's speed nor cause the target to be Paralyzed or Restrained.
The target can also spend 5 feet of Movement to automatically escape from nonmagical restraints, such as Manacles or a creature that has it Grappled. Finally, being Underwater imposes no penalties on the target's movement or attacks.
A vertical column of divine fire roars down from the heavens in a location you specify. Each creature in a 10-foot-radius, 40-foot-high Cylinder centered on a point within range must make a Dexterity saving throw. A creature takes 4d6 fire damage and 4d6 radiant damage on a failed save, or half as much damage on a successful one.
At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the fire damage or the radiant damage (your choice) increases by 1d6 for each slot level above 5th.
You place a magical command on a creature that you can see within range, forcing it to carry out some service or refrain from some action or course of activity as you decide. If the creature can understand you, it must succeed on a Wisdom saving throw or become Charmed by you for the Duration. While the creature is charmed by you, it takes 5d10 psychic damage each time it acts in a manner directly counter to your instructions, but no more than once each day. A creature that can't understand you is unaffected by the spell.
You can issue any command you choose, short of an activity that would result in certain death. Should you issue a suicidal command, the spell ends.
You can end the spell early by using an action to dismiss it. A Remove Curse, Greater Restoration, or wish spell also ends it.
At Higher Levels. When you cast this spell using a spell slot of 7th or 8th level, the Duration is 1 year. When you cast this spell using a spell slot of 9th level, the spell lasts until it is ended by one of the Spells mentioned above.
This spell gives the willing creature you touch the ability to see things as they actually are. For the duration, the creature has truesight, notices secret doors hidden by magic, and can see into the Ethereal Plane, all out to a range of 120 feet.
As a bonus action, the will-o'-wisp can target one creature it can see within 5 ft. of it that has 0 hit points and is still alive.
The target must succeed on a DC 10 Constitution saving throw against this magic or die. If the target dies, the will-o'-wisp regains 10 (3d6) hit points.
The will-o'-wisp can target one creature it can see within 5 ft. The target must succeed on a Constitution saving throw.
The will-o'-wisp can't wear or carry anything.
The will-o'-wisp can move through other creatures and objects as if they were difficult terrain.
The will-o'-wisp sheds bright light in a 5- to 20-foot radius and dim light for an additional number of ft. equal to the chosen radius. The will-o'-wisp can alter the radius as a bonus action.
Melee Spell Attack:+4 to hit,, 5 ft., one creature. Hit: 9 (2d8) lightning damage.
The Will-o'-Wisp attacks with its Shock.
The will-o'-wisp and its light magically become invisible until it attacks or uses its Consume Life, or until its concentration ends (as if concentrating on a spell).
The will-o'-wisp and its light magically become invisible.
When the magmin dies, it explodes in a burst of fire and magma.
Each creature within 10 ft. of it must make a DC 11 Dexterity saving throw, taking 7 (2d6) fire damage on a failed save, or half as much damage on a successful one. Flammable objects that aren't being worn or carried in that area are ignited.
When the magmin dies, it explodes in a burst of fire and magma. Each creature within 10 ft. of it must make a Dexterity saving throw. Flammable objects that aren't being worn or carried in that area are ignited.
As a bonus action, the magmin can set itself ablaze or extinguish its flames. While ablaze, the magmin sheds bright light in a 10-foot radius and dim light for an additional 10 ft.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (2d6) fire damage.
The Magmin attacks with its Touch. If the target is a creature or a flammable object, it ignites. Until a target takes an action to douse the fire, the target takes 3 (1d6) fire damage at the end of each of its turns.
The ape makes two fist attacks.
Melee Weapon Attack:+9 to hit,, 10 ft., one target. Hit: 22 (3d10 + 6) bludgeoning damage.
The Giant Ape attacks with its Fist.
Ranged Weapon Attack: +9 to hit, range 50/100 ft., one target. Hit: 30 (7d6 + 6) bludgeoning damage.
The Giant Ape attacks with its Rock.
Melee Weapon Attack:+0 to hit,, 5 ft., one target. Hit: 1 bludgeoning damage.
The Crab attacks with its Claw.
The crab can breathe air and water.
The elemental can move through a space as narrow as 1 inch wide without squeezing. A creature that touches the elemental or hits it with a melee attack while within 5 ft. of it takes 5 (1d10) fire damage.
In addition, the elemental can enter a hostile creature's space and stop there. The first time it enters a creature's space on a turn, that creature takes 5 (1d10) fire damage and catches fire; until someone takes an action to douse the fire, the creature takes 5 (1d10) fire damage at the start of each of its turns.
A creature that touches the elemental or hits it with a melee attack while within 5 ft. of it takes fire damage. In addition, the elemental can enter a hostile creature's space and stop there. The first time it enters a creature's space on a turn, that creature takes fire damage and catches fire; until someone takes an action to douse the fire, the creature takes fire damage at the start of each of its turns.
The elemental sheds bright light in a 30-foot radius and dim light in an additional 30 ft..
For every 5 ft. the elemental moves in water, or for every gallon of water splashed on it, it takes 1 cold damage.
The elemental makes two touch attacks.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) fire damage.
If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 5 (1d10) fire damage at the start of each of its turns.
The Fire Elemental attacks with its Touch. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes fire damage at the start of each of its turns.
The weasel has advantage on Wisdom (Perception) checks that rely on hearing or smell.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage.
The Giant Weasel attacks with its Bite.
Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 7 (1d10 + 2) piercing damage.
The target is grappled (escape DC 12). Until this grapple ends, the target is restrained, and the crocodile can't bite another target.
The Crocodile attacks with its Bite. If successful, the target is grappled. Until this grapple ends, the target is restrained, and the crocodile can't bite another target.
The crocodile can hold its breath for 15 minutes.
The swarm has advantage on Wisdom (Perception) checks that rely on smell.
The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny rat. The swarm can't regain hit points or gain temporary hit points.
Melee Weapon Attack:+2 to hit,, 0 ft., one target in the swarm's space. Hit: 7 (2d6) piercing damage, or 3 (1d6) piercing damage if the swarm has half of its hit points or fewer.
The Swarm of Rats attacks with a flurry of Bites.
The ground in a 10-foot radius around the mouther is doughlike difficult terrain.
The ground in a 10-foot radius around the mouther is doughlike difficult terrain. make a Strength saving throw.
The mouther babbles incoherently while it can see any creature and isn't incapacitated. Each creature that starts its turn within 20 feet of the mouther and can hear the gibbering must succeed on a DC 10 Wisdom saving throw. On a failure, the creature can't take reactions until the start of its next turn and rolls a d8 to determine what it does during its turn.
On a 1 to 4, the creature does nothing. On a 5 or 6, the creature takes no action or bonus action and uses all its movement to move in a randomly determined direction. On a 7 or 8, the creature makes a melee attack against a randomly determined creature within its reach or does nothing if it can't make such an attack.
The mouther babbles incoherently while it can see any creature. Each creature that starts its turn within 20 feet of the mouther and can hear the gibbering must succeed on a Wisdom saving throw.
The gibbering mouther makes one bite attack and, if it can, uses its Blinding Spittle.
Melee Weapon Attack:+2 to hit,, 5 ft., one creature. Hit: 17 (5d6) piercing damage.
If the target is Medium or smaller, it must succeed on a DC 10 Strength saving throw or be knocked prone. If the target is killed by this damage, it is absorbed into the mouther.
The Gibbering Mouther attacks with its Bites. If the target is Medium or smaller, it must make a Strength saving throw or be knocked prone.
The mouther spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact.
Each creature within 5 feet of the flash must succeed on a DC 13 Dexterity saving throw or be blinded until the end of the mouther's next turn.
The mouther spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact. Each creature within 5 feet of the flash must make a Dexterity saving throw.
The satyr has advantage on saving throws against spells and other magical effects.
Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 6 (2d4 + 1) bludgeoning damage.
The Satyr attacks with its Ram.
The eagle has advantage on Wisdom (Perception) checks that rely on sight.
The eagle makes two attacks: one with its beak and one with its talons.
The Giant Eagle attacks with its Beak.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.
The Giant Eagle attacks with its Talons.
The giant makes two greatclub attacks.
Melee Weapon Attack:+8 to hit,, 10 ft., one target. Hit: 18 (3d8 + 5) bludgeoning damage.
The Hill Giant attacks with its Greatclub.
Ranged Weapon Attack: +8 to hit, range 60/240 ft., one target. Hit: 21 (3d10 + 5) bludgeoning damage.
The Hill Giant attacks with its Rock.
Magical darkness doesn't impede the devil's Darkvision.
The devil can't be frightened while it can see an allied creature within 30 feet of it.
Melee Weapon Attack:+5 to hit,, 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage.
The target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. While poisoned in this way, the target can't regain hit points. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The Bearded Devil attacks with its Beard. The target must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
Melee Weapon Attack:+5 to hit,, 10 ft., one target. Hit: 8 (1d10 + 3) slashing damage.
If the target is a creature other than an undead or a construct, it must succeed on a DC 12 Constitution saving throw or lose 5 (1d10) hit points at the start of each of its turns due to an infernal wound.
Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 5 (1d10). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.
The Bearded Devil attacks with its Glaive. If the target is a creature other than an undead or a construct, it must make a Constitution saving throw. Any creature can take an action to stanch the wound with a successful Wisdom (Medicine) check.
The devil makes two attacks: one with its beard and one with its glaive.
The hawk has advantage on Wisdom (Perception) checks that rely on sight.
The hawk has advantage on an attack roll against a creature if at least one of the hawk's allies is within 5 ft. of the creature and the ally isn't incapacitated.
The Blood Hawk attacks with its Beak.
Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage.
The target is grappled (escape DC 11). The crab has two claws, each of which can grapple only one target.
The Giant Crab attacks with its Claw. The target is grappled.
The panther has advantage on Wisdom (Perception) checks that rely on smell.
If the panther moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a DC 12 Strength saving throw or be knocked prone.
If the target is prone, the panther can make one bite attack against it as a bonus action.
If the panther moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must make a Strength saving throw.
The Panther attacks with its Bite.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 4 (1d4 + 2) slashing damage.
The Panther attacks with its Claw.
Melee Weapon Attack:+8 to hit,, 10 ft., one target. Hit: 8 (1d8 + 4) slashing damage.
The Bone Devil attacks with its Claw.
Melee Weapon Attack:+8 to hit,, 10 ft., one target. Hit: 13 (2d8 + 4) piercing damage plus 17 (5d6) poison damage.
The target must succeed on a DC 14 Constitution saving throw or become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success .
The Bone Devil attacks with its Sting. the target must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success .
The devil makes three attacks: two with its claws and one with its sting.
The giant has advantage on Wisdom (Perception) checks that rely on smell.
The giant's innate spellcasting ability is Charisma. It can innately cast the following spells, requiring no material components:
The giant makes two morningstar attacks.
Melee Weapon Attack:+12 to hit,, 10 ft., one target. Hit: 21 (3d8 + 8) piercing damage.
The Cloud Giant attacks with its Morningstar.
Ranged Weapon Attack: +12 to hit, range 60/240 ft., one target. Hit: 30 (4d10 + 8) bludgeoning damage.
The Cloud Giant attacks with its Rock.
You touch a willing creature. The target gains a flying speed of 60 feet for the Duration. When the spell ends, the target falls if it is still aloft, unless it can stop the fall.
At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.
Briefly surrounded by silvery mist, you teleport up to 30 feet to an unoccupied space that you can see.
You gain the ability to move or manipulate creatures or objects by thought. When you cast the spell, and as your action each round for the Duration, you can exert your will on one creature or object that you can see within range, causing the appropriate effect below. You can affect the same target round after round, or choose a new one at any time. If you switch targets, the prior target is no longer affected by the spell.
Creature. You can try to move a Huge or smaller creature. Make an ability check with your spellcasting ability contested by the creature's Strength check. If you win the contest, you move the creature up to 30 feet in any direction, including upward but not beyond the range of this spell. Until the end of your next turn, the creature is Restrained in your telekinetic grip. A creature lifted upward is suspended in mid-air.
On subsequent rounds, you can use your action to attempt to maintain your telekinetic grip on the creature by repeating the contest.
Object. You can try to move an object that weighs up to 1,000 pounds. If the object isn't being worn or carried, you automatically move it up to 30 feet in any direction, but not beyond the range of this spell.
If the object is worn or carried by a creature, you must make an ability check with your Spellcasting ability contested by that creature's Strength check. If you succeed, you pull the object away from that creature and can move it up to 30 feet in any direction but not beyond the range of this spell.
You can exert fine control on Objects with your telekinetic grip, such as manipulating a simple tool, opening a door or a container, stowing or retrieving an item from an open container, or pouring the contents from a vial.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.
The Copper Dragon Wyrmling attacks with its Bite.
**Acid Breath.** The dragon exhales acid in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 18 (4d8) acid damage on a failed save, or half as much damage on a successful one.
**Slowing Breath.** The dragon exhales gas in a 1 5-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.
The dragon exhales acid in an 20-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.
**Slowing Breath.** The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.
The dragon exhales gas in a 15-foot cone. Each creature in that area must make a Constitution saving throw.
The archmage is an 18th-level spellcaster. Its spellcasting ability is Intelligence (spell save DC 17, +9 to hit with spell attacks). The archmage can cast disguise self and invisibility at will and has the following wizard spells prepared:
• Cantrips (at will): fire bolt, light, mage hand, prestidigitation, shocking grasp
• 1st level (4 slots): detect magic, identify, mage armor*, magic missile
• 2nd level (3 slots): detect thoughts, mirror image, misty step
• 3rd level (3 slots): counterspell,fly, lightning bolt
• 4th level (3 slots): banishment, fire shield, stoneskin*
• 5th level (3 slots): cone of cold, scrying, wall of force
• 6th level (1 slot): globe of invulnerability
• 7th level (1 slot): teleport
• 8th level (1 slot): mind blank*
• 9th level (1 slot): time stop*
*-The archmage casts these spells on itself before combat.
The archmage is an spellcaster. Its spellcasting ability is Intelligence.
The archmage has advantage on saving throws against spells and other magical effects.
Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 4 (1d4 + 2) piercing damage.
The Archmage attacks with their Dagger.
Lightning springs from your hand to deliver a shock to a creature you try to touch. Make a melee spell attack against the target. You have advantage on the attack roll if the target is wearing armor made of metal. On a hit, the target takes 1d8 lightning damage, and it can't take reactions until the start of its next turn.
For the duration, you can read the thoughts of certain creatures. When you cast the spell and as your action on each turn until the spell ends, you can focus your mind on any one creature that you can see within 30 feet of you. If the creature you choose has an Intelligence of 3 or lower or doesn't speak any language, the creature is unaffected.
You initially learn the surface thoughts of the creature—what is most on its mind in that moment. As an action, you can either shift your attention to another creature's thoughts or attempt to probe deeper into the same creature's mind. If you probe deeper, the target must make a Wisdom saving throw. If it fails, you gain insight into its reasoning (if any), its emotional state, and something that looms large in its mind (such as something it worries over, loves, or hates). If it succeeds, the spell ends. Either way, the target knows that you are probing into its mind, and unless you shift your attention to another creature's thoughts, the creature can use its action on its turn to make an Intelligence check contested by your Intelligence check; if it succeeds, the spell ends.
Questions verbally directed at the target creature naturally shape the course of its thoughts, so this spell is particularly effective as part of an interrogation.
You can also use this spell to detect the presence of thinking creatures you can't see. When you cast the spell or as your action during the duration, you can search for thoughts within 30 feet of you. The spell can penetrate barriers, but 2 feet of rock, 2 inches of any metal other than lead, or a thin sheet of lead blocks you. You can't detect a creature with an Intelligence of 3 or lower or one that doesn't speak any language.
Once you detect the presence of a creature in this way, you can read its thoughts for the rest of the duration as described above, even if you can't see it, but it must still be within range.
Three illusory duplicates of yourself appear in your space. Until the spell ends, the duplicates move with you and mimic your actions, shifting position so it's impossible to track which image is real. You can use your action to dismiss the illusory duplicates.
Each time a creature targets you with an attack during the spell's duration, roll a [[/r 1d20 # Mirror Image Check]] to determine whether the attack instead targets one of your duplicates.
If you have three duplicates, you must roll a 6 or higher to change the attack's target to a duplicate. With two duplicates, you must roll an 8 or higher. With one duplicate, you must roll an 11 or higher.
A duplicate's AC equals 10 + your Dexterity modifier. If an attack hits a duplicate, the duplicate is destroyed. A duplicate can be destroyed only by an attack that hits it. It ignores all other damage and effects. The spell ends when all three duplicates are destroyed.
A creature is unaffected by this spell if it can't see, if it relies on senses other than sight, such as blindsight, or if it can perceive illusions as false, as with truesight.
You attempt to interrupt a creature in the process of casting a spell. If the creature is casting a spell of 3rd level or lower, its spell fails and has no effect. If it is casting a spell of 4th level or higher, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a success, the creature's spell fails and has no effect.
Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the interrupted spell has no effect if its level is less than or equal to the level of the spell slot you used.
A stroke of lightning forming a line 100 feet long and 5 feet wide blasts out from you in a direction you choose. Each creature in the line must make a Dexterity saving throw. A creature takes 8d6 lightning damage on a failed save, or half as much damage on a successful one.
The lightning ignites flammable objects in the area that aren't being worn or carried.
At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.
Thin and wispy flames wreathe your body for the Duration, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. You can end the spell early by using an action to dismiss it.
The flames provide you with a warm shield or a chill shield, as you choose. The warm shield grants you Resistance to cold damage, and the chill shield grants you resistance to fire damage.
In addition, whenever a creature within 5 feet of you hits you with a melee Attack, the shield erupts with flame. The attacker takes 2d8 fire damage from a warm shield, or 2d8 cold damage from a cold shield.
This spell turns the flesh of a willing creature you touch as hard as stone. Until the spell ends, the target has resistance to nonmagical bludgeoning, piercing, and slashing damage.
A blast of cold air erupts from your hands. Each creature in a 60-foot cone must make a Constitution saving throw. A creature takes 8d8 cold damage on a failed save, or half as much damage on a successful one.
A creature killed by this spell becomes a frozen statue until it thaws.
Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th.
You can see and hear a particular creature you choose that is on the same plane of existence as you. The target must make a Wisdom saving throw, which is modified by how well you know the target and the sort of physical connection you have to it. If a target knows you're casting this spell, it can fail the saving throw voluntarily if it wants to be observed.
On a successful save, the target isn't affected, and you can't use this spell against it again for 24 hours.
On a failed save, the spell creates an Invisible sensor within 10 feet of the target. You can see and hear through the sensor as if you were there. The sensor moves with the target, remaining within 10 feet of it for the Duration. A creature that can see Invisile Objects sees the sensor as a luminous orb about the size of your fist.
Instead of targeting a creature, you can choose a location you have seen before as the target of this spell. When you do, the sensor appears at that location and doesn't move.
An invisible wall of force springs into existence at a point you choose within range. The wall appears in any orientation you choose, as a horizontal or vertical barrier or at an angle. It can be free floating or resting on a solid surface. You can form it into a hemispherical dome or a sphere with a radius of up to 10 feet, or you can shape a flat surface made up of ten 10-foot-by-10-foot panels. Each panel must be contiguous with another panel. In any form, the wall is 1/4 inch thick. It lasts for the Duration. If the wall cuts through a creature's space when it appears, the creature is pushed to one side of the wall (your choice which side).
Nothing can physically pass through the wall. It is immune to all damage and can't be dispelled by Dispel Magic. A Disintegrate spell destroys the wall instantly, however. The wall also extends into the Ethereal Plane, blocking ethereal travel through the wall.
An immobile, faintly shimmering barrier springs into existence in a 10-foot radius around you and remains for the Duration.
Any spell of 5th level or lower cast from outside the barrier can't affect creatures or Objects within it, even if the spell is cast using a higher level spell slot. Such a spell can target creatures and Objects within the barrier, but the spell has no effect on them. Similarly, the area within the barrier is excluded from the areas affected by such Spells.
At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the barrier blocks Spells of one level higher for each slot level above 6th.
This spell instantly transports you and up to eight willing creatures of your choice that you can see within range, or a single object that you can see within range, to a destination you select. If you target an object, it must be able to fit entirely inside a 10-foot cube, and it can't be held or carried by an unwilling creature.
The destination you choose must be known to you, and it must be on the same plane of existence as you. Your familiarity with the destination determines whether you arrive there successfully. The DM rolls d100 and consults the table.
Familiarity. \"Permanent circle\" means a permanent Teleportation Circle whose sigil sequence you know. \"Associated object\" means that you possess an object taken from the desired destination within the last six months, such as a book from a wizard's library, bed linen from a royal suite, or a chunk of marble from a lich's Secret tomb.
\"Very familiar\" is a place you have been very often, a place you have carefully studied, or a place you can see when you cast the spell. \"Seen casually\" is someplace you have seen more than once but with which you aren't very familiar. \"Viewed once\" is a place you have seen once, possibly using magic. \"Description\" is a place whose location and appearance you know through someone else's description, perhaps from a map.
\"False destination\" is a place that doesn't exist. Perhaps you tried to scry an enemy's sanctum but instead viewed an illusion, or you are attempting to teleport to a familiar location that no longer exists.
On Target. You and your group (or the target object) appear where you want to.
Off Target. You and your group (or the target object) appear a random distance away from the destination in a random direction. Distance off target is 1d10 × 1d10 percent of the distance that was to be traveled. For example, if you tried to travel 120 miles, landed off target, and rolled a 5 and 3 on the two d10s, then you would be off target by 15 percent, or 18 miles. The DM determines the direction off target randomly by rolling a d8 and designating 1 as north, 2 as northeast, 3 as east, and so on around the points of the compass. If you were teleporting to a coastal city and wound up 18 miles out at sea, you could be in trouble.
Similar Area. You and your group (or the target object) wind up in a different area that's visually or thematically similar to the target area. If you are heading for your home laboratory, for example, you might wind up in another wizard's laboratory or in an alchemical supply shop that has many of the same tools and implements as your laboratory. Generally, you appear in the closest similar place, but since the spell has no range limit, you could conceivably wind up anywhere on the plane.
Mishap. The spell's unpredictable magic results in a difficult journey. Each teleporting creature (or the target object) takes 3d10 force damage, and the DM rerolls on the table to see where you wind up (multiple mishaps can occur, dealing damage each time).
Until the spell ends, one willing creature you touch is immune to psychic damage, any effect that would sense its emotions or read its thoughts, Divination Spells, and the Charmed condition. The spell even foils Wish spells and Spells or Effects of similar power used to affect the target's mind or to gain information about the target.
You briefly stop the flow of time for everyone but yourself. No time passes for other creatures, while you take 1d4 + 1 turns in a row, during which you can use Actions and move as normal.
This spell ends if one of the Actions you use during this period, or any Effects that you create during this period, affects a creature other than you or an object being worn or carried by someone other than you. In addition, the spell ends if you move to a place more than 1,000 feet from the location where you cast it.
Melee Weapon Attack:+7 to hit,, 10 ft., one creature. Hit: 7 (1d6 + 4) piercing damage.
The target must make a DC 13 Constitution saving throw, taking 31 (7d8) poison damage on a failed save, or half as much damage on a successful one.
The Spirit Naga attacks with its Bite. The target must make a Constitution saving throw.
If it dies, the naga returns to life in 1d6 days and regains all its hit points. Only a wish spell can prevent this trait from functioning.
The naga is a 10th-level spellcaster. Its spellcasting ability is Intelligence (spell save DC 14, +6 to hit with spell attacks), and it needs only verbal components to cast its spells. It has the following wizard spells prepared:
• Cantrips (at will): mage hand, minor illusion, ray of frost
• 1st level (4 slots): charm person, detect magic, sleep
• 2nd level (3 slots): detect thoughts, hold person
• 3rd level (3 slots): lightning bolt, water breathing
• 4th level (3 slots): blight, dimension door
• 5th level (2 slots): dominate person
The naga is a spellcaster. Its spellcasting ability is Intelligence and it needs only verbal components to cast its spells.
A frigid beam of blue-white light streaks toward a creature within range. Make a ranged spell attack against the target. On a hit, it takes 1d8 cold damage, and its speed is reduced by 10 feet until the start of your next turn.
Necromantic energy washes over a creature of your choice that you can see within range, draining moisture and vitality from it. The target must make a Constitution saving throw. The target takes 8d8 necrotic damage on a failed save, or half as much damage on a successful one. This spell has no effect on undead or constructs.
If you target a plant creature or a magical plant, it makes the saving throw with disadvantage, and the spell deals maximum damage to it.
If you target a nonmagical plant that isn't a creature, such as a tree or shrub, it doesn't make a saving throw, it simply withers and dies.
At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.
You teleport yourself from your current location to any other spot within range. You arrive at exactly the spot desired. It can be a place you can see, one you can visualize, or one you can describe by stating distance and direction, such as \"200 feet straight downward\" or \"upward to the northwest at a 45-degree angle, 300 feet.\"
You can bring along objects as long as their weight doesn't exceed what you can carry. You can also bring one willing creature of your size or smaller who is carrying gear up to its carrying capacity. The creature must be within 5 feet of you when you cast this spell.
If you would arrive in a place already occupied by an object or a creature, you and any creature traveling with you each take 4d6 force damage, and the spell fails to teleport you.
You attempt to beguile a humanoid that you can see within range. It must succeed on a Wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw.
While the target is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability.
You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time you can also cause the creature to use a reaction, but this requires you to use your own reaction as well.
Each time the target takes damage, it makes a new Wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.
At Higher Levels. When you cast this spell using a 6th-level spell slot, the duration is concentration, up to 10 minutes. When you use a 7th-level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 8th level or higher, the duration is concentration, up to 8 hours.
When the mephit dies, it explodes in a burst of dust. Each creature within 5 ft. of it must then succeed on a DC 10 Constitution saving throw or be blinded for 1 minute. A blinded creature can repeat the saving throw on each of its turns, ending the effect on itself on a success.
When the mephit dies, it explodes in a burst of dust. Each creature within 5 ft. of it must make a Constitution saving throw.
The mephit can innately cast sleep, requiring no material components. Its innate spellcasting ability is Charisma.
Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 4 (1d4 + 2) slashing damage.
The Dust Mephit attacks with its Claws.
The mephit exhales a 15-foot cone of blinding dust.
The mephit exhales a 15-foot cone of blinding dust. Each creature in that area must make a Dexterity saving throw. A creature can repeat the saving throw at the end of each of its turns.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 9 (2d4 + 4) bludgeoning damage.
The Draft Horse attacks with its Hooves.
Ranged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.
The Frost Giant attacks with its Rock.
Melee Weapon Attack:+9 to hit,, 10 ft., one target. Hit: 25 (3d12 + 6) slashing damage.
The Frost Giant attacks with its Greataxe.
The giant makes two greataxe attacks.
The acolyte is a 1st-level spellcaster. Its spellcasting ability is Wisdom (spell save DC 12, +4 to hit with spell attacks). The acolyte has following cleric spells prepared:• Cantrips (at will): light, sacred flame, thaumaturgy• 1st level (3 slots): bless, cure wounds, sanctuary
The acolyte is a spellcaster. Its spellcasting ability is Wisdom.
Melee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 2 (1d4) bludgeoning damage.
The Acolyte attacks with their Club.
The harpy makes two attacks: one with its claws and one with its club.
Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 6 (2d4 + 1) slashing damage.
The Harpy attacks with its Claws.
Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 3 (1d4 + 1) bludgeoning damage.
The Harpy attacks with its Club.
The harpy sings a magical melody. Every humanoid and giant within 300 ft. of the harpy that can hear the song must succeed on a DC 11 Wisdom saving throw or be charmed until the song ends. The harpy must take a bonus action on its subsequent turns to continue singing. It can stop singing at any time. The song ends if the harpy is incapacitated.
While charmed by the harpy, a target is incapacitated and ignores the songs of other harpies. If the charmed target is more than 5 feet away from the harpy, the target must move on its turn toward the harpy by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage from a source other than the harpy, the target can repeat the saving throw. A charmed target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.
A target that successfully saves is immune to this harpy's song for the next 24 hours.
The harpy sings a magical melody. Every humanoid and giant within 300 ft. of the harpy that can hear the song must make a Wisdom saving throw. A creature can also repeat the saving throw at the end of each of its turns.
The wererat can use its action to polymorph into a rat-humanoid hybrid or into a giant rat, or back into its true form, which is humanoid.
The wererat can use its action to polymorph, or return to its true form.
The wererat has advantage on Wisdom (Perception) checks that rely on smell.
The wererat makes two attacks, only one of which can be a bite.
If the target is a humanoid, it must succeed on a DC 11 Constitution saving throw or be cursed with wererat lycanthropy.
The Wererat attacks with its Bite. If the target is a humanoid, it must make a Constitution saving throw.
The Wererat attacks with its Hand Crossbow.
The Wererat attacks with its Shortsword.
The thug has advantage on an attack roll against a creature if at least one of the thug's allies is within 5 ft. of the creature and the ally isn't incapacitated.
The thug makes two melee attacks.
Ranged Weapon Attack: +2 to hit, range 100/400 ft., one target. Hit: 5 (1d10) piercing damage.
The Thug attacks with their Heavy Crossbow.
Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 5 (1d6 + 2) bludgeoning damage.
The Thug attacks with their Mace.
The knight makes two melee attacks.
The Knight attacks with its Greatsword.
The Knight attacks with its Heavy Crossbow.
For 1 minute, the knight can utter a special command or warning whenever a nonhostile creature that it can see within 30 ft. of it makes an attack roll or a saving throw. The creature can add a d4 to its roll provided it can hear and understand the knight. A creature can benefit from only one Leadership die at a time. This effect ends if the knight is incapacitated.
The knight adds 2 to its AC against one melee Attack that would hit it. To do so, the knight must see the attacker and be wielding a melee weapon.
The knight adds 2 to its AC against one melee Attack that would hit it.
The knight has advantage on saving throws against being frightened.
The bear has advantage on Wisdom (Perception) checks that rely on smell.
The bear makes two attacks: one with its bite and one with its claws.
Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.
The Black Bear attacks with its Bite.
Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage.
The Black Bear attacks with its Claws.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 1 piercing damage.
The target must make a DC 10 Constitution saving throw, taking 5 (2d4) poison damage on a failed save, or half as much damage on a successful one.
The Poisonous Snake attacks with its Bite. The target must make a Constitution saving throw.
If the vampire isn't in sun light or running water, it can use its action to polymorph into a Tiny bat or a Medium cloud of mist, or back into its true form.
While in bat form, the vampire can't speak, its walking speed is 5 feet, and it has a flying speed of 30 feet. Its statistics, other than its size and speed, are unchanged. Anything it is wearing transforms with it, but nothing it is carrying does. It reverts to its true form if it dies. While in mist form, the vampire can't take any actions, speak, or manipulate objects. It is weightless, has a flying speed of 20 feet, can hover, and can enter a hostile creature's space and stop there. In addition, if air can pass through a space, the mist can do so without squeezing, and it can't pass through water. It has advantage on Strength, Dexterity, and Constitution saving throws, and it is immune to all nonmagical damage, except the damage it takes from sunlight.
The vampire can use its action to polymorph or return to its true form.
If the vampire fails a saving throw, it can choose to succeed instead.
When it drops to 0 hit points outside its resting place, the vampire transforms into a cloud of mist (as in the Shapechanger trait) instead of falling unconscious, provided that it isn't in sunlight or running water. If it can't transform, it is destroyed.
While it has 0 hit points in mist form, it can't revert to its vampire form, and it must reach its resting place within 2 hours or be destroyed. Once in its resting place, it reverts to its vampire form. It is then paralyzed until it regains at least 1 hit point. After spending 1 hour in its resting place with 0 hit points, it regains 1 hit point.
A slain vampire transforms into a cloud of mist (as in the Shapechanger trait) instead of falling unconscious.
The vampire regains 20 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or running water. If the vampire takes radiant damage or damage from holy water, this trait doesn't function at the start of the vampire's next turn.
The vampire regains 20 hit points at the start of its turn.
The vampire can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.
The vampire has the following flaws:
Forbiddance. The vampire can't enter a residence without an invitation from one of the occupants.
Harmed by Running Water. The vampire takes 20 acid damage if it ends its turn in running water.
Stake to the Heart. If a piercing weapon made of wood is driven into the vampire's heart while the vampire is incapacitated in its resting place, the vampire is paralyzed until the stake is removed.
Sunlight Hypersensitivity. The vampire takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks.
The vampire makes two attacks, only one of which can be a bite attack.
Melee Weapon Attack:+9 to hit,, 5 ft., one creature. Hit: 8 (1d8 + 4) bludgeoning damage.
Instead of dealing damage, the vampire can grapple the target (escape DC 18).
The Vampire attacks with its Unarmed Strike.
Melee Weapon Attack:+9 to hit,, 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 7 (1d6 + 4) piercing damage plus 10 (3d6) necrotic damage.
The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. A humanoid slain in this way and then buried in the ground rises the following night as a vampire spawn under the vampire's control.
The Vampire attacks with its Bite.
The vampire targets one humanoid it can see within 30 ft. of it. If the target can see the vampire, the target must succeed on a DC 17 Wisdom saving throw against this magic or be charmed by the vampire. The charmed target regards the vampire as a trusted friend to be heeded and protected. Although the target isn't under the vampire's control, it takes the vampire's requests or actions in the most favorable way it can, and it is a willing target for the vampire's bite attack.
Each time the vampire or the vampire's companions do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the vampire is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect.
The vampire targets one humanoid it can see within 30 ft. of it. If the target can see the vampire, the target must make a Wisdom saving throw against this magic.
The vampire magically calls 2d4 swarms of bats or rats, provided that the sun isn't up. While outdoors, the vampire can call 3d6 wolves instead.
The called creatures arrive in 1d4 rounds, acting as allies of the vampire and obeying its spoken commands. The beasts remain for 1 hour, until the vampire dies, or until the vampire dismisses them as a bonus action.
The vampire magically calls swarms of bats or rats. While outdoors, the vampire can call wolves instead.
The vampire can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The vampire regains spent legendary actions at the start of its turn.
The vampire can take 3 legendary actions.
The vampire moves up to its speed without provoking opportunity attacks.
The vampire makes one unarmed strike.
The vampire makes a bite attack.
Melee or Ranged Weapon Attack: +3 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 4 (1d6 + 1) piercing damage or 5 (1d8 + 1) piercing damage if used with two hands to make a melee attack.
The Guard attacks with its Spear.
The Eagle attacks with its Talons.
The Pegasus attacks with its Hooves.
During its first turn, the assassin has advantage on attack rolls against any creature that hasn't taken a turn. Any hit the assassin scores against a surprised creature is a critical hit.
If the assassin is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, the assassin instead takes no damage if it succeeds on the saving throw, and only half damage if it fails.
The assassin deals an extra 13 (4d6) damage when it hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 ft. of an ally of the assassin that isn't incapacitated and the assassin doesn't have disadvantage on the attack roll.
The assassin makes two shortsword attacks.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.
The Assassin attacks with their Shortsword. The target must make a Constitution saving throw.
Ranged Weapon Attack: +6 to hit, range 80/320 ft., one target. Hit: 7 (1d8 + 3) piercing damage.
The Assassin attacks with its Light Crossbow. The target must make a Constitution saving throw.
When the mephit dies, it explodes in a burst of jagged ice.
Each creature within 5 ft. of it must make a DC 10 Dexterity saving throw, taking 4 (1d8) slashing damage on a failed save, or half as much damage on a successful one.
When the mephit dies, it explodes in a burst of jagged ice. Each creature within 5 ft. of it must make a Dexterity saving throw.
While the mephit remains motionless, it is indistinguishable from an ordinary shard of ice.
The mephit can innately cast fog cloud, requiring no material components. Its innate spellcasting ability is Charisma.
Melee Weapon Attack:+3 to hit,, 5 ft., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) cold damage.
The Ice Mephit attacks with its Claws.
The mephit exhales a 15-foot cone of cold air. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 5 (2d4) cold damage on a failed save, or half as much damage on a successful one.
The mephit exhales a 15-foot cone of cold air. Each creature in that area must make a Dexterity saving throw.
The wraith targets a humanoid within 10 feet of it that has been dead for no longer than 1 minute and died violently.
The target's spirit rises as a specter in the space of its corpse or in the nearest unoccupied space. The specter is under the wraith's control. The wraith can have no more than seven specters under its control at one time.
The wraith can move through other creatures and objects as if they were difficult terrain.
Melee Weapon Attack:+6 to hit,, 5 ft., one creature. Hit: 21 (4d8 + 3) necrotic damage.
The target must succeed on a DC 14 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.
The Wraith attacks with its Life Drain. The target must make a Constitution saving throw.
While in sunlight, the wraith has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.
The wolf has advantage on Wisdom (Perception) checks that rely on hearing or smell.
The wolf has advantage on an attack roll against a creature if at least one of the wolf's allies is within 5 ft. of the creature and the ally isn't incapacitated.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.
The Dire Wolf attacks with its Bite. If the target is a creature, it must make a Strength saving throw or be knocked prone.
The frog can breathe air and water.
The frog's long jump is up to 10 ft. and its high jump is up to 5 ft., with or without a running start.
Melee Weapon Attack:+3 to hit,, 5 ft., one creature. Hit: 3 (1d4 + 1) piercing damage.
The target must succeed on a DC 11 Constitution saving throw against being magically petrified. On a failed save, the creature begins to turn to stone and is restrained. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is petrified for 24 hours.
The Cockatrice attacks with its Bite. The target must make a Constitution saving throw. On a failed save, it must repeat the saving throw at the end of its next turn.
The sword is incapacitated while in the area of an antimagic field.
If targeted by dispel magic, the sword must succeed on a Constitution saving throw against the caster's spell save DC or fall unconscious for 1 minute.
While the sword remains motionless and isn't flying, it is indistinguishable from a normal sword.
Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage.
The Flying Sword attacks!
The shark has advantage on an attack roll against a creature if at least one of the shark's allies is within 5 ft. of the creature and the ally isn't incapacitated.
The shark can breathe only underwater.
The Reef Shark attacks with its Bite.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 2 (1d4) bludgeoning damage.
The Camel attacks with its Bite.
The sea horse can breathe only underwater.
The tiger has advantage on Wisdom (Perception) checks that rely on smell.
If the tiger moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a DC 13 Strength saving throw or be knocked prone.
If the tiger moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must make a Strength saving throw.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.
The Tiger attacks with its Bite.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage.
The Tiger attacks with its Claw.
Melee Weapon Attack:+7 to hit,, 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.
The Young Brass Dragon attacks with its Bite.
**Fire Breath.** The dragon exhales fire in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 42 (12d6) fire damage on a failed save, or half as much damage on a successful one.
**Sleep Breath.** The dragon exhales sleep gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw or fall unconscious for 5 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.
The dragon exhales fire in a 40-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.
The dragon exhales sleep gas in a 30-foot cone. Each creature in that area must make a Constitution saving throw.
The Young Brass Dragon attacks with its Claw.
If the unicorn moves at least 20 ft. straight toward a target and then hits it with a horn attack on the same turn, the target takes an extra 9 (2d8) piercing damage.
If the target is a creature, it must succeed on a DC 15 Strength saving throw or be knocked prone.
If the unicorn moves at least 20 ft. straight toward a target and then hits it with a horn attack on the same turn, the target takes extra piercing damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.
The unicorn's innate spellcasting ability is Charisma (spell save DC 14). The unicorn can innately cast the following spells, requiring no components:
At will: detect evil and good, druidcraft, pass without trace
1/day each: calm emotions, dispel evil and good, entangle
The unicorn has advantage on saving throws against spells and other magical effects.
The unicorn's weapon attacks are magical.
The unicorn makes two attacks: one with its hooves and one with its horn.
Melee Weapon Attack: +7 to hit, reach 5 ft ., one target. Hit: 11 (2d6 + 4) bludgeoning damage.
The Unicorn attacks with its Hooves.
Melee Weapon Attack: +7 to hit, reach 5 ft ., one target. Hit: 8 (1d8 + 4) piercing damage.
The Unicorn attacks with its Horn.
The unicorn touches another creature with its horn. The target magically regains 11 (2d8 + 2) hit points. In addition, the touch removes all diseases and neutralizes all poisons afflicting the target.
The unicorn magically teleports itself and up to three willing creatures it can see within 5 ft. of it, along with any equipment they are wearing or carrying, to a location the unicorn is familiar with, up to 1 mile away.
The unicorn can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The unicorn regains spent legendary actions at the start of its turn.
The unicorn can take 3 legendary actions.
The unicorn makes one attack with its hooves.
The unicorn creates a shimmering, magical field around itself or another creature it can see within 60 feet of it. The target gains a +2 bonus to AC until the end of the unicorn's next turn.
The unicorn magically regains 11 (2d8+2) hit points.
A veil of shadows and Silence radiates from you, masking you and your companions from detection. For the Duration, each creature you choose within 30 feet of you (including you) has a +10 bonus to Dexterity (Stealth) checks and can't be tracked except by magical means. A creature that receives this bonus leaves behind no tracks or other traces of its passage.
Shimmering energy surrounds and protects you from fey, Undead, and creatures originating from Beyond the Material Plane. For the Duration, Celestials, Elementals, fey, Fiends, and undead have disadvantage on Attack rolls against you.
You can end the spell early by using either of the following special functions.
Break Enchantment. As your action, you touch a creature you can reach that is Charmed, Frightened, or possessed by a Celestial, an elemental, a fey, a fiend, or an Undead. The creature you touch is no longer charmed, frightened, or possessed by such creatures.
Dismissal. As your action, make a melee spell Attack against a Celestial, an elemental, a fey, a fiend, or an Undead you can reach. On a hit, you attempt to drive the creature back to its home plane. The creature must succeed on a Charisma saving throw or be sent back to its home plane (if it isn't there already). If they aren't on their home plane, undead are sent to the Shadowfell, and fey are sent to the Feywild.
Melee Weapon Attack:+11 to hit,, 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 7 (2d6) poison damage.
The Adult Green Dragon attacks with its Bite.
The Adult Green Dragon attacks with its Claw.
The Adult Green Dragon attacks with its Tail.
A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours .
The dragon exhales poisonous gas in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 56 (16d6) poison damage on a failed save, or half as much damage on a successful one.
The dragon exhales poisonous gas in a 60-foot cone. Each creature in that area must make a Constitution saving throw.
The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 19 Dexterity saving throw or take 15 (2d6+6) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.
Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 5 (1d8 + 1) piercing damage.
The Noble attacks with its Rapier.
The noble adds 2 to its AC against one melee Attack that would hit it. To do so, the noble must see the attacker and be wielding a melee weapon.
The noble adds 2 to its AC against one melee Attack that would hit it.
The grimlock can't use its blindsight while deafened and unable to smell.
The grimlock has advantage on Wisdom (Perception) checks that rely on hearing or smell.
The grimlock has advantage on Dexterity (Stealth) checks made to hide in rocky terrain.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 5 (1d4 + 3) bludgeoning damage plus 2 (1d4) piercing damage.
The Grimlock attacks with its Spiked Bone Club.
The scorpion makes three attacks: two with its claws and one with its sting.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 6 (1d8 + 2) bludgeoning damage.
The target is grappled (escape DC 12). The scorpion has two claws, each of which can grapple only one target.
The Giant Scorpion attacks with its Claw. The target is grappled.
The target must make a DC 12 Constitution saving throw, taking 22 (4d10) poison damage on a failed save, or half as much damage on a successful one.
The Giant Scorpion attacks with its Sting. The target must make a Constitution saving throw.
As a bonus action, the orc can move up to its speed toward a hostile creature that it can see.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 9 (1d12 + 3) slashing damage.
The Orc attacks with its Greataxe.
Melee or Ranged Weapon Attack: +5 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 6 (1d6 + 3) piercing damage.
The Orc attacks with its Javelin.
Melee Weapon Attack:+6 to hit,, 5 ft., one creature. Hit: 10 (2d6 + 3) piercing damage, and if the target is Large or smaller, the cloaker attaches to it.
If the cloaker has advantage against the target, the cloaker attaches to the target's head, and the target is blinded and unable to breathe while the cloaker is attached. While attached, the cloaker can make this attack only against the target and has advantage on the attack roll. The cloaker can detach itself by spending 5 feet of its movement. A creature, including the target, can take its action to detach the cloaker by succeeding on a DC 16 Strength check.
The Cloaker attacks with its Bite. A creature, including the target, can take its action to detach the cloaker by succeeding on a Strength check.
While attached to a creature, the cloaker takes only half the damage dealt to it (rounded down) and that creature takes the other half.
While the cloaker remains motionless without its underside exposed, it is indistinguishable from a dark leather cloak.
While in bright light, the cloaker has disadvantage on attack rolls and Wisdom (Perception) checks that rely on sight.
The cloaker makes two attacks: one with its bite and one with its tail.
Melee Weapon Attack:+6 to hit,, 10 ft., one creature. Hit: 7 (1d8 + 3) slashing damage.
The Cloaker attacks with its Tail.
Each creature within 60 feet of the cloaker that can hear its moan and that isn't an aberration must succeed on a DC 13 Wisdom saving throw or become frightened until the end of the cloaker's next turn.
If a creature's saving throw is successful, the creature is immune to the cloaker's moan for the next 24 hours.
Each creature within 60 feet of the cloaker that can hear its moan and that isn't an aberration must make a Wisdom saving throw.
The cloaker magically creates three illusory duplicates of itself if it isn't in bright light. The duplicates move with it and mimic its actions, shifting position so as to make it impossible to track which cloaker is the real one. If the cloaker is ever in an area of bright light, the duplicates disappear.
Whenever any creature targets the cloaker with an attack or a harmful spell while a duplicate remains, that creature rolls randomly to determine whether it targets the cloaker or one of the duplicates. A creature is unaffected by this magical effect if it can't see or if it relies on senses other than sight.
A duplicate has the cloaker's AC and uses its saving throws. If an attack hits a duplicate, or if a duplicate fails a saving throw against an effect that deals damage, the duplicate disappears.
Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 33 (4d12 + 7) piercing damage.
If the target is a Medium or smaller creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the tyrannosaurus can't bite another target.
The Tyrannosaurus Rex attacks with its Bite. If the target is a Medium or smaller creature, it is grappled. Until this grapple ends, the target is restrained, and the tyrannosaurus can't bite another target.
The tyrannosaurus makes two attacks: one with its bite and one with its tail. It can't make both attacks against the same target.
Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.
The Tyrannosaurus Rex attacks with its Tail.
Whenever the golem starts its turn with 40 hit points or fewer, roll a d6. On a 6, the golem goes berserk. On each of its turns while berserk, the golem attacks the nearest creature it can see.
If no creature is near enough to move to and attack, the golem attacks an object, with preference for an object smaller than itself. Once the golem goes berserk, it continues to do so until it is destroyed or regains all its hit points. The golem's creator, if within 60 feet of the berserk golem, can try to calm it by speaking firmly and persuasively. The golem must be able to hear its creator, who must take an action to make a DC 15 Charisma (Persuasion) check. If the check succeeds, the golem ceases being berserk. If it takes damage while still at 40 hit points or fewer, the golem might go berserk again.
The golem goes berserk. On each of its turns while berserk, the golem attacks the nearest creature it can see. If no creature is near enough to move to and attack, the golem attacks an object, with preference for an object smaller than itself.
If the golem takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn.
If the golem takes fire damage, it has disadvantage on some rolls.
The golem is immune to any spell or effect that would alter its form.
Whenever the golem is subjected to lightning damage, it takes no damage and instead regains a number of hit points equal to the lightning damage dealt.
The golem has advantage on saving throws against spells and other magical effects.
The golem's weapon attacks are magical.
The golem makes two slam attacks.
Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.
The Flesh Golem attacks with its Slam.
Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage.
The target must succeed on a DC 11 Constitution saving throw or take 10 (3d6) poison damage. If the poison damage reduces the target to 0 hit points, the target is stable but poisoned for 1 hour, even after regaining hit points, and is paralyzed while poisoned in this way.
The Giant Centipede attacks with its Bite. The target must succeed on a DC 11 Constitution saving throw or take poison damage. If the poison damage reduces the target to 0 hit points, the target is stable but poisoned for 1 hour, even after regaining hit points, and is paralyzed while poisoned in this way.
Melee Weapon Attack:+0 to hit,, 5 ft., one target. Hit: 1 piercing damage.
The Lizard attacks with its Bite.
The dragon exhales acid in a 15-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 22 (5d8) acid damage on a failed save, or half as much damage on a successful one.
Each creature in that line must make a DC 11 Dexterity saving throw, taking 22 (5d8) acid damage on a failed save, or half as much damage on a successful one.
The dragon exhales acid in a 15-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) acid damage.
The Black Dragon Wyrmling attacks with its Bite.
A creature that touches the azer or hits it with a melee attack while within 5 feet of it takes 5 (1d10) fire damage.
When the azer hits with a metal melee weapon, it deals an extra 3 (1d6) fire damage (included in the attack).
When the azer hits with a metal melee weapon, it deals extra fire damage (included in the attack).
The azer sheds bright light in a 10-foot radius and dim light for an additional 10 ft.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage, or 8 (1d10 + 3) bludgeoning damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.
The toad can breathe air and water.
The toad's long jump is up to 20 ft. and its high jump is up to 10 ft., with or without a running start.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 5 (1d10) poison damage.
The target is grappled (escape DC 13). Until this grapple ends, the target is restrained, and the toad can't bite another target.
The Giant Toad attacks with its Bite. The target is grappled. Until this grapple ends, the target is restrained, and the toad can't bite another target.
The toad makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is swallowed, and the grapple ends.
The swallowed target is blinded and restrained, it has total cover against attacks and other effects outside the toad, and it takes 10 (3d6) acid damage at the start of each of the toad's turns. The toad can have only one target swallowed at a time. If the toad dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 5 ft. of movement, exiting prone.
The Giant Toad attacks with its Swallow.
Any creature that starts its turn within 5 ft. of the ghast must succeed on a DC 10 Constitution saving throw or be poisoned until the start of its next turn. On a successful saving throw, the creature is immune to the ghast's Stench for 24 hours.
Any creature that starts its turn within 5 ft. of the ghast must succeed on a Constitution saving throw.
The ghast and any ghouls within 30 ft. of it have advantage on saving throws against effects that turn undead.
Melee Weapon Attack:+3 to hit,, 5 ft., one creature. Hit: 12 (2d8 + 3) piercing damage.
The Ghast attacks with its Bite.
If the target is a creature other than an undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The Ghast attacks with its Claws. If the target is a creature other than an undead, it must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.
The Silver Dragon Wyrmling attacks with its Bite.
**Cold Breath.** The dragon exhales an icy blast in a 15-foot cone. Each creature in that area must make a DC 13 Constitution saving throw, taking 18 (4d8) cold damage on a failed save, or half as much damage on a successful one.
**Paralyzing Breath.** The dragon exhales paralyzing gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The dragon exhales an icy blast in a 15-foot cone. Each creature in that area must make a Constitution saving throw
The dragon exhales paralyzing gas in a 15-foot cone. Each creature in that area make a Constitution saving throw.
The Veteran attacks with their Longsword.
The Veteran attacks with its Shortsword.
The Veteran attacks with its Heavy Crossbow.
If the wereboar moves at least 15 feet straight toward a target and then hits it with its tusks on the same turn, the target takes an extra 7 (2d6) slashing damage.
If the wereboar moves at least 15 feet straight toward a target and then hits it with its tusks on the same turn, the target takes extra slashing damage. If the target is a creature, it must make aStrength saving throw or be knocked prone.
The wereboar makes two attacks, only one of which can be with its tusks.
If the wereboar takes 14 damage or less that would reduce it to 0 hit points, it is reduced to 1 hit point instead.
If the wereboar takes damage that would reduce it to 0 hit points, it is reduced to 1 hit point instead.
The wereboar can use its action to polymorph into a boar-humanoid hybrid or into a boar, or back into its true form, which is humanoid.
The wereboar can use its action to polymorph, or return to its true form.
If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with wereboar lycanthropy.
The Wereboar attacks with its Tusks. If the target is a humanoid, it must make a Constitution saving throw.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.
The Wereboar attacks with its Maul.
The baboon has advantage on an attack roll against a creature if at least one of the baboon's allies is within 5 ft. of the creature and the ally isn't incapacitated.
Melee Weapon Attack:+1 to hit,, 5 ft., one target. Hit: 1 (1d4 - 1) piercing damage.
The Baboon attacks with its Bite.
The druid is a 4th-level spellcaster. Its spellcasting ability is Wisdom (spell save DC 12, +4 to hit with spell attacks).
It has the following druid spells prepared:
Cantrips (at will): druidcraft, produce flame, shillelagh
1st level (4 slots): entangle, longstrider, speak with animals, thunderwave
2nd level (3 slots): animal messenger, barkskin
The druid is a spellcaster. Its spellcasting ability is Wisdom.
Melee Weapon Attack: +2 to hit (+4 to hit with shillelagh), reach 5 ft., one target. Hit: 3 (1d6) bludgeoning damage, or 6 (1d8 + 2) bludgeoning damage with shillelagh or if wielded with two hands.
The Druid attacks with its Quarterstaff.
A flickering flame appears in your hand. The flame remains there for the Duration and harms neither you nor your Equipment. The flame sheds bright light in a 10-foot radius and dim light for an additional 10 feet. The spell ends if you dismiss it as an action or if you cast it again.
You can also Attack with the flame, although doing so ends the spell. When you cast this spell, or as an action on a later turn, you can hurl the flame at a creature within 30 feet of you. Make a ranged spell Attack. On a hit, the target takes 1d8 fire damage.
By means of this spell, you use an animal to deliver a message. Choose a Tiny beast you can see within range, such as a squirrel, a blue jay, or a bat. You specify a location, which you must have visited, and a recipient who matches a general description, such as \"a man or woman dressed in the uniform of the town guard\" or \"a red-haired dwarf wearing a pointed hat.\" You also speak a message of up to twenty-five words. The target beast travels for the duration of the spell toward the specified location, covering about 50 miles per 24 hours for a flying messenger, or 25 miles for other animals.
When the messenger arrives, it delivers your message to the creature that you described, replicating the sound of your voice. The messenger speaks only to a creature matching the description you gave. If the messenger doesn't reach its destination before the spell ends, the message is lost, and the beast makes its way back to where you cast this spell.
At Higher Levels. If you cast this spell using a spell slot of 3rd level or higher, the duration of the spell increases by 48 hours for each slot level above 2nd.
You touch a willing creature. Until the spell ends, the target's skin has a rough, bark-like appearance, and the target's AC can't be less than 16, regardless of what kind of armor it is wearing.
The hydra can hold its breath for 1 hour.
The hydra has five heads. While it has more than one head, the hydra has advantage on saving throws against being blinded, charmed, deafened, frightened, stunned, and knocked unconscious.
Whenever the hydra takes 25 or more damage in a single turn, one of its heads dies. If all its heads die, the hydra dies.
At the end of its turn, it grows two heads for each of its heads that died since its last turn, unless it has taken fire damage since its last turn. The hydra regains 10 hit points for each head regrown in this way.
For each head the hydra has beyond one, it gets an extra reaction that can be used only for opportunity attacks.
While the hydra sleeps, at least one of its heads is awake.
The hydra makes as many bite attacks as it has heads.
Melee Weapon Attack:+8 to hit,, 10 ft., one target. Hit: 10 (1d10 + 5) piercing damage.
The Hydra attacks with its Bite.
The Ape attacks with its Fist.
Ranged Weapon Attack: +5 to hit, range 25/50 ft., one target. Hit: 6 (1d6 + 3) bludgeoning damage.
The Ape attacks with its Rock.
A creature reduced to 0 hit points by a swarm of centipedes is stable but poisoned for 1 hour, even after regaining hit points, and paralyzed while poisoned in this way.
The Swarm of Centipedes attacks with a flurry of Bites.
If the tarrasque fails a saving throw, it can choose to succeed instead.
The tarrasque has advantage on saving throws against spells and other magical effects.
Any time the tarrasque is targeted by a magic missile spell, a line spell, or a spell that requires a ranged attack roll, roll a d6. On a 1 to 5, the tarrasque is unaffected.
On a 6, the tarrasque is unaffected, and the effect is reflected back at the caster as though it originated from the tarrasque, turning the caster into the target.
The tarrasque is unaffected, and the effect is reflected back at the caster as though it originated from the tarrasque, turning the caster into the target.
The tarrasque deals double damage to objects and structures.
The tarrasque can use its Frightful Presence. It then makes five attacks: one with its bite, two with its claws, one with its horns, and one with its tail. It can use its Swallow instead of its bite.
Melee Weapon Attack:+19 to hit,, 10 ft., one target. Hit: 36 (4d12 + 10) piercing damage.
If the target is a creature, it is grappled (escape DC 20). Until this grapple ends, the target is restrained, and the tarrasque can't bite another target.
The Tarrasque attacks with its Bite. If the target is a creature, it is grappled. Until this grapple ends, the target is restrained, and the tarrasque can't bite another target.
Melee Weapon Attack:+19 to hit,, 15 ft., one target. Hit: 28 (4d8 + 10) slashing damage.
The Tarrasque attacks with its Claw.
Melee Weapon Attack:+19 to hit,, 10 ft., one target. Hit: 32 (4d10 + 10) piercing damage.
The Tarrasque attacks with its Horns.
Melee Weapon Attack:+19 to hit,, 20 ft., one target. Hit: 24 (4d6 + 10) bludgeoning damage.
If the target is a creature, it must succeed on a DC 20 Strength saving throw or be knocked prone.
The Tarrasque attacks with its Tail. If the target is a creature, it must make a Strength saving throw or be knocked prone.
Each creature of the tarrasque's choice within 120 feet of it and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute.
A creature can repeat the saving throw at the end of each of its turns, with disadvantage if the tarrasque is within line of sight, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the tarrasque's Frightful Presence for the next 24 hours.
Each creature of the tarrasque's choice within 120 feet of it and aware of it must succeed on a Wisdom saving throw.
The tarrasque makes one bite attack against a Large or smaller creature it is grappling. If the attack hits, the target takes the bite's damage, the target is swallowed, and the grapple ends.
While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the tarrasque, and it takes 56 (16d6) acid damage at the start of each of the tarrasque's turns.If the tarrasque takes 60 damage or more on a single turn from a creature inside it, the tarrasque must succeed on a DC 20 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the tarrasque. If the tarrasque dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 30 feet of movement, exiting prone.
The Tarrasque attacks with its Swallow.
The tarrasque can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The tarrasque regains spent legendary actions at the start of its turn.
The tarrasque can take 3 legendary actions.
The tarrasque makes one claw attack or tail attack.
The tarrasque moves up to half its speed.
The tarrasque makes one bite attack or uses its Swallow.
The dragon exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 11 Constitution saving throw, taking 21 (6d6) poison damage on a failed save, or half as much damage on a successful one.
The dragon exhales poisonous gas in a 15-foot cone. Each creature in that area must make a Constitution saving throw.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 3 (1d6) poison damage.
The Green Dragon Wyrmling attacks with its Bite.
The ettin has advantage on Wisdom (Perception) checks and on saving throws against being blinded, charmed, deafened, frightened, stunned, and knocked unconscious.
When one of the ettin's heads is asleep, its other head is awake.
The ettin makes two attacks: one with its battleaxe and one with its morningstar.
Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.
The Ettin attacks with its Battleaxe.
Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 14 (2d8 + 5) piercing damage.
The Ettin attacks with its Morningstar.
The dryad's innate spellcasting ability is Charisma (spell save DC 14). The dryad can innately cast the following spells, requiring no material components:
At will: druidcraft
3/day each: entangle, goodberry
1/day each: barkskin, pass without trace, shillelagh
The dryad has advantage on saving throws against spells and other magical effects.
The dryad can communicate with beasts and plants as if they shared a language.
Once on her turn, the dryad can use 10 feet of her movement to step magically into one living tree within her reach and emerge from a second living tree within 60 feet of the first tree, appearing in an unoccupied space within 5 feet of the second tree. Both trees must be Large or bigger.
Melee Weapon Attack: +2 to hit (+6 to hit with shillelagh), reach 5 ft., one target. Hit: 2 (1d4) bludgeoning damage, or 8 (1d8 + 4) bludgeoning damage with shillelagh.
The Dryad attacks with its Club.
The dryad targets one humanoid or beast that she can see within 30 feet of her. If the target can see the dryad, it must succeed on a DC 14 Wisdom saving throw or be magically charmed.
The charmed creature regards the dryad as a trusted friend to be heeded and protected. Although the target isn't under the dryad's control, it takes the dryad's requests or actions in the most favorable way it can.Each time the dryad or its allies do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the dryad dies, is on a different plane of existence from the target, or ends the effect as a bonus action. If a target's saving throw is successful, the target is immune to the dryad's Fey Charm for the next 24 hours.The dryad can have no more than one humanoid and up to three beasts charmed at a time.
The dryad targets one humanoid or beast that she can see within 30 feet of her. If the target can see the dryad, it must make a Wisdom saving throw. Each time the dryad or its allies do anything harmful to the target, it can repeat the saving throw.
The merfolk can breathe air and water.
Melee or Ranged Weapon Attack: +2 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 3 (1d6) piercing damage, or 4 (1d8) piercing damage if used with two hands to make a melee attack.
The Merfolk attacks with its Spear.
The swarm has advantage on melee attack rolls against any creature that doesn't have all its hit points.
The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny quipper. The swarm can't regain hit points or gain temporary hit points.
The swarm can breathe only underwater.
Melee Weapon Attack:+5 to hit,, 0 ft., one creature in the swarm's space. Hit: 14 (4d6) piercing damage, or 7 (2d6) piercing damage if the swarm has half of its hit points or fewer.
The Swarm of Quippers attacks with a flurry of Bites.
Melee Weapon Attack:+8 to hit,, 10 ft., one target. Hit: 11 (2d6 + 4) slashing damage.
The target is grappled (escape DC 14) if the devil isn't already grappling a creature. Until this grapple ends, the target is restrained and takes 7 (2d6) piercing damage at the start of each of its turns.
The Chain Devil attacks with its Chain. The target is grappled if the devil isn't already grappling a creature. Until this grapple ends, the target is restrained.
When a creature the devil can see starts its turn within 30 feet of the devil, the devil can create the illusion that it looks like one of the creature's departed loved ones or bitter enemies. If the creature can see the devil, it must succeed on a DC 14 Wisdom saving throw or be Frightened until the end of its turn.
The devil can create the illusion that it looks like one of the creature's departed loved ones or bitter enemies. make a Wisdom saving throw.
The creature has advantage on saving throws against spells and other magical effects.
The devil makes two attacks with its chains.
Up to four chains the devil can see within 60 feet of it magically sprout razor-edged barbs and animate under the devil's control, provided that the chains aren't being worn or carried.
Each animated chain is an object with AC 20, 20 hit points, resistance to piercing damage, and immunity to psychic and thunder damage. When the devil uses Multiattack on its turn, it can use each animated chain to make one additional chain attack. An animated chain can grapple one creature of its own but can't make attacks while grappling. An animated chain reverts to its inanimate state if reduced to 0 hit points or if the devil is incapacitated or dies.
Melee Weapon Attack:+7 to hit,, 10 ft., one target. Hit: 15 (2d10 + 4) slashing damage, or 9 (1d10 + 4) slashing damage in Small or Medium form.
The Oni attacks with its Glaive.
Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage.
The Oni attacks with its Claw.
The oni's innate spellcasting ability is Charisma (spell save DC 13). The oni can innately cast the following spells, requiring no material components:
At will: darkness, invisibility
1/day each: charm person, cone of cold, gaseous form, sleep
The oni makes two attacks, either with its claws or its glaive.
The oni regains 10 hit points at the start of its turn if it has at least 1 hit point.
The oni regains 10 hit points at the start of its turn.
the oni's weapon attacks are magical.
The oni magically polymorphs into a Small or Medium humanoid, into a Large giant, or back into its true form. Other than its size, its statistics are the same in each form. The only equipment that is transformed is its glaive, which shrinks so that it can be wielded in humanoid form. If the oni dies, it reverts to its true form, and its glaive reverts to its normal size.
The raven can mimic simple sounds it has heard, such as a person whispering, a baby crying, or an animal chittering. A creature that hears the sounds can tell they are imitations with a successful Wisdom (Insight) check.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 1 piercing damage.
The Raven attacks with its Beak.
If the efreeti dies, its body disintegrates in a flash of fire and puff of smoke, leaving behind only equipment the djinni was wearing or carrying.
The efreeti's innate spell casting ability is Charisma (spell save DC 15, +7 to hit with spell attacks). It can innately cast the following spells, requiring no material components:
At will: detect magic
3/day: enlarge/reduce, tongues
1/day each: conjure elemental (fire elemental only), gaseous form, invisibility, major image, plane shift, wall of fire
You call forth an elemental servant. Choose an area of air, earth, fire, or water that fills a 10-foot cube within range. An elemental of challenge rating 5 or lower appropriate to the area you chose appears in an unoccupied space within 10 feet of it. For example, a fire elemental emerges from a bonfire, and an earth elemental rises up from the ground. The elemental disappears when it drops to 0 hit points or when the spell ends.
The efreeti makes two scimitar attacks or uses its Hurl Flame twice.
Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage plus 7 (2d6) fire damage.
The Efreeti attacks with its Scimitar.
Ranged Spell Attack:+7 to hit,, 120 ft., one target. Hit: 17 (5d6) fire damage.
The Efreeti attacks with its Hurl Flame.
You cause a creature or an object you can see within range to grow larger or smaller for the Duration. Choose either a creature or an object that is neither worn nor carried. If the target is unwilling, it can make a Constitution saving throw. On a success, the spell has no effect.
If the target is a creature, everything it is wearing and carrying changes size with it. Any item dropped by an affected creature returns to normal size at once.
Enlarge. The target's size doubles in all dimensions, and its weight is multiplied by eight. This growth increases its size by one category—from Medium to Large, for example. If there isn't enough room for the target to double its size, the creature or object attains the maximum possible size in the space available. Until the spell ends, the target also has advantage on Strength Checks and Strength Saving Throws. The target's Weapons also grow to match its new size. While these Weapons are enlarged, the target's attacks with them deal 1d4 extra damage.
Reduce. The target's size is halved in all dimensions, and its weight is reduced to one-eighth of normal. This reduction decreases its size by one category—from Medium to Small, for example. Until the spell ends, the target also has disadvantage on Strength Checks and Strength Saving Throws. The target's Weapons also shrink to match its new size. While these Weapons are reduced, the target's attacks with them deal 1d4 less damage (this can't reduce the damage below 1).
You create a wall of fire on a solid surface within range. You can make the wall up to 60 feet long, 20 feet high, and 1 foot thick, or a ringed wall up to 20 feet in diameter, 20 feet high, and 1 foot thick. The wall is opaque and lasts for the duration.
When the wall appears, each creature within its area must make a Dexterity saving throw. On a failed save, a creature takes 5d8 fire damage, or half as much damage on a successful save.
One side of the wall, selected by you when you cast this spell, deals 5d8 fire damage to each creature that ends its turn within 10 feet of that side or inside the wall. A creature takes the same damage when it enters the wall for the first time on a turn or ends its turn there. The other side of the wall deals no damage.
Melee Weapon Attack:+11 to hit,, 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) acid damage.
The Adult Black Dragon attacks with its Bite.
The Adult Black Dragon attacks with its Claw.
The Adult Black Dragon attacks with its Tail.
The dragon exhales acid in a 60-foot line that is 5 feet wide.
The dragon exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.
Melee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8+7) bludgeoning damage.
Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 15 (2d8 + 6) piercing damage.
The Horned Devil attacks with its Fork.
Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 10 (1d8 + 6) piercing damage.
If the target is a creature other than an undead or a construct, it must succeed on a DC 17 Constitution saving throw or lose 10 (3d6) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 10 (3d6). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.
The Horned Devil attacks with its Tail. If the target is a creature other than an undead or a construct, it must make a Constitution saving throw.
The devil makes three melee attacks: two with its fork and one with its tail. It can use Hurl Flame in place of any melee attack.
Ranged Spell Attack:+7 to hit,, 150 ft., one target. Hit: 14 (4d6) fire damage.
If the target is a flammable object that isn't being worn or carried, it also catches fire.
The Horned Devil attacks with its Hurl Flame. If the target is a flammable object that isn't being worn or carried, it also catches fire.
The manticore has twenty-four tail spikes. Used spikes regrow when the manticore finishes a long rest.
The manticore makes three attacks: one with its bite and two with its claws or three with its tail spikes.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage.
The Manticore attacks with its Bite.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.
The Manticore attacks with its Claw.
Ranged Weapon Attack: +5 to hit, range 100/200 ft., one target. Hit: 7 (1d8 + 3) piercing damage.
The Manticore attacks with its Tail Spike.
Melee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.
The Adult Gold Dragon attacks with its Bite.
Melee Weapon Attack:+14 to hit,, 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.
The Adult Gold Dragon attacks with its Claw.
Melee Weapon Attack:+14 to hit,, 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.
The Adult Gold Dragon attacks with its Tail.
Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute.
**Fire Breath.** The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 66 (12d10) fire damage on a failed save, or half as much damage on a successful one.
**Weakening Breath.** The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 21 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The dragon exhales fire in a 60-foot cone. Each creature in that area must make a Dexterity saving throw.
The dragon exhales gas in a 60-foot cone. Each creature in that area must make a Strength saving throw.
The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 22 Dexterity saving throw or take 15 (2d6+8) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.
Ranged Weapon Attack: +6 to hit, range 40/160 ft., one target. Hit: 1 piercing damage.
The Sprite attacks with its Shortbow.
Melee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 1 slashing damage.
The Sprite attacks with its Longsword.
The sprite magically turns invisible until it attacks or casts a spell, or until its concentration ends (as if concentrating on a spell). Any equipment the sprite wears or carries is invisible with it.
The sprite magically turns invisible. Any equipment the sprite wears or carries is invisible with it.
The sprite touches a creature and magically knows the creature's current emotional state.
If the target fails a DC 10 Charisma saving throw, the sprite also knows the creature's alignment. Celestials, fiends, and undead automatically fail the saving throw.
The sprite touches a creature. target must make a Charisma saving throw.
The shark has advantage on melee attack rolls against any creature that doesn't have all its hit points.
Melee Weapon Attack:+9 to hit,, 5 ft., one target. Hit: 22 (3d10 + 6) piercing damage.
The Giant Shark attacks with its Bite.
The jackal has advantage on Wisdom (Perception) checks that rely on hearing or smell.
The jackal has advantage on an attack roll against a creature if at least one of the jackal's allies is within 5 ft. of the creature and the ally isn't incapacitated.
The Jackal attacks with its Bite.
If the mammoth moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a DC 18 Strength saving throw or be knocked prone. If the target is prone, the mammoth can make one stomp attack against it as a bonus action.
If the mammoth moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a Strength saving throw.
Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 25 (4d8 + 7) piercing damage.
The Mammoth attacks with its Gore.
Melee Weapon Attack:+10 to hit,, 5 ft., one prone creature. Hit: 29 (4d10 + 7) bludgeoning damage.
The Mammoth attacks with its Stomp.
The lamia's innate spellcasting ability is Charisma (spell save DC 13). It can innately cast the following spells, requiring no material components:
At will: disguise self (any humanoid form), major image
3/day each: charm person, mirror image, scrying, suggestion
1/day: geas
The lamia makes two attacks: one with its claws and one with its dagger or Intoxicating Touch.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.
The Lamia attacks with its Claws.
The Lamia attacks with its Dagger.
Melee Spell Attack:+5 to hit,, 5 ft., one creature. Hit: The target is magically cursed for 1 hour. Until the curse ends, the target has disadvantage on Wisdom saving throws and all ability checks.
The Zombie attacks with its Slam.
If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5+the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead.
If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw.
The treant magically animates one or two trees it can see within 60 feet of it. These trees have the same statistics as a treant, except they have Intelligence and Charisma scores of 1, they can't speak, and they have only the Slam action option.
An animated tree acts as an ally of the treant. The tree remains animate for 1 day or until it dies; until the treant dies or is more than 120 feet from the tree; or until the treant takes a bonus action to turn it back into an inanimate tree. The tree then takes root if possible.
The treant magically animates one or two trees it can see within 60 feet of it.
While the treant remains motionless, it is indistinguishable from a normal tree.
The treant makes two slam attacks.
Ranged Weapon Attack: +10 to hit, range 60/180 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.
The Treant attacks with its Rock.
The treant deals double damage to objects and structures.
Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 16 (3d6 + 6) bludgeoning damage.
The Treant attacks with its Slam.
Melee Weapon Attack:+8 to hit,, 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage.
The Young Bronze Dragon attacks with its Bite.
**Lightning Breath.** The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 15 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.
**Repulsion Breath.** The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 15 Strength saving throw. On a failed save, the creature is pushed 40 feet away from the dragon.
*Lightning Breath.** The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 15 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.
The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.
Melee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.
The Young Bronze Dragon attacks with its Claw.
Melee Weapon Attack:+6 to hit,, 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage.
The Giant Constrictor Snake attacks with its Bite.
Melee Weapon Attack:+6 to hit,, 5 ft., one creature. Hit: 13 (2d8 + 4) bludgeoning damage.
The target is grappled (escape DC 16). Until this grapple ends, the creature is restrained, and the snake can't constrict another target.
The Giant Constrictor Snake attacks with its Constrict. The target is grappled. Until this grapple ends, the creature is restrained, and the snake can't constrict another target.
The pudding can move through a space as narrow as 1 inch wide without squeezing.
A creature that touches the pudding or hits it with a melee attack while within 5 feet of it takes 4 (1d8) acid damage. Any nonmagical weapon made of metal or wood that hits the pudding corrodes.
After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls. If its penalty drops to -5, the weapon is destroyed. Nonmagical ammunition made of metal or wood that hits the pudding is destroyed after dealing damage. The pudding can eat through 2-inch-thick, nonmagical wood or metal in 1 round.
A creature that touches the pudding or hits it with a melee attack while within 5 feet of it takes acid damage. Any nonmagical weapon made of metal or wood that hits the pudding corrodes.
The pudding can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 6 (1d6 + 3) bludgeoning damage plus 18 (4d8) acid damage.
In addition, nonmagical armor worn by the target is partly dissolved and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.
The Black Pudding attacks with its Pseudopod. In addition, nonmagical armor worn by the target is partly dissolved and takes a permanent and cumulative -1 penalty to the AC it offers.
When a pudding that is Medium or larger is subjected to lightning or slashing damage, it splits into two new puddings if it has at least 10 Hit Points. Each new pudding has Hit Points equal to half the original pudding's, rounded down. New puddings are one size smaller than the original pudding.
The pudding splits into two new puddings. New puddings are one size smaller than the original pudding.
The scout has advantage on Wisdom (Perception) checks that rely on hearing or sight.
The scout makes two melee attacks or two ranged attacks.
The Scout attacks with their Shortsword.
Ranged Weapon Attack: +4 to hit, ranged 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.
The Scout attacks with their Longbow.
Melee Weapon Attack:+2 to hit,, 5 ft., one creature. Hit: 9 (2d6 + 2) piercing damage.
The Ghoul attacks with its Bite.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage.
If the target is a creature other than an elf or undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The Ghoul attacks with its Claws. If the target is a creature other than an elf or undead, it must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The glabrezu's spellcasting ability is Intelligence (spell save DC 16). The glabrezu can innately cast the following spells, requiring no material components:
At will: darkness, detect magic, dispel magic
1/day each: confusion, fly, power word stun
The glabrezu has advantage on saving throws against spells and other magical effects.
The glabrezu makes four attacks: two with its pincers and two with its fists. Alternatively, it makes two attacks with its pincers and casts one spell.
Melee Weapon Attack:+9 to hit,, 10 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage.
If the target is a Medium or smaller creature, it is grappled (escape DC 15). The glabrezu has two pincers, each of which can grapple only one target.
The Glabrezu attacks with its Pincer. If the target is a Medium or smaller creature, it is grappled.
Melee Weapon Attack:+9 to hit,, 5 ft., one target. Hit: 7 (2d4 + 2) bludgeoning damage.
The Glabrezu attacks with its Fist.
This spell assaults and twists creatures' minds, spawning delusions and provoking uncontrolled action. Each creature in a 10-foot-radius sphere centered on a point you choose within range must succeed on a Wisdom saving throw when you cast this spell or be affected by it.
An affected target can't take reactions and must roll [[/r 1d10]] at the start of each of its turns to determine its behavior for that turn.
At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the radius of the sphere increases by 5 feet for each slot level above 4th.
You speak a word of power that can overwhelm the mind of one creature you can see within range, leaving it dumbfounded. If the target has 150 Hit Points or fewer, it is Stunned. Otherwise, the spell has no effect.
The stunned target must make a Constitution saving throw at the end of each of its turns. On a successful save, this stunning effect ends.
The hag can breathe air and water.
Any humanoid that starts its turn within 30 feet of the hag and can see the hag's true form must make a DC 11 Wisdom saving throw. On a failed save, the creature is frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, with disadvantage if the hag is within line of sight, ending the effect on itself on a success.
If a creature's saving throw is successful or the effect ends for it, the creature is immune to the hag's Horrific Appearance for the next 24 hours. Unless the target is surprised or the revelation of the hag's true form is sudden, the target can avert its eyes and avoid making the initial saving throw. Until the start of its next turn, a creature that averts its eyes has disadvantage on attack rolls against the hag.
Any humanoid that starts its turn within 30 feet of the hag and can see the hag's true form must make a Wisdom saving throw.
The Sea Hag attacks with its Claws.
The hag targets one frightened creature she can see within 30 ft. of her. If the target can see the hag, it must succeed on a DC 11 Wisdom saving throw against this magic or drop to 0 hit points.
The hag targets one frightened creature she can see within 30 ft. of her. If the target can see the hag, it must make a Wisdom saving throw against this magic.
The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like an ugly creature of her general size and humanoid shape. The effect ends if the hag takes a bonus action to end it or if she dies.
The changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have no claws, but someone touching her hand might feel the claws. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 16 Intelligence (Investigation) check to discern that the hag is disguised.
Melee Weapon Attack:+6 to hit,, 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.
The target is grappled (escape DC 14) if it is a Large or smaller creature and the chuul doesn't have two other creatures grappled.
The Chuul attacks with its Pincer. The target is grappled if it is a Large or smaller creature.
One creature grappled by the chuul must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute.
One creature grappled by the chuul must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The chuul can breathe air and water.
The chuul makes two pincer attacks. If the chuul is grappling a creature, the chuul can also use its tentacles once.
The chuul senses magic within 120 feet of it at will. This trait otherwise works like the detect magic spell but isn't itself magical.
If the target is a creature, it must succeed on a DC 12 Constitution saving throw against disease or become poisoned until the disease is cured. Every 24 hours that elapse, the creature must repeat the saving throw, reducing its hit point maximum by 5 (1d10) on a failure. This reduction lasts until the disease is cured. The creature dies if the disease reduces its hit point maximum to 0.
The Death Dog attacks with its Bite. If the target is a creature, it must make a Constitution saving throw. Every 24 hours that elapse, the creature must repeat the saving throw.
The dog has advantage on Wisdom (Perception) checks and on saving throws against being blinded, charmed, deafened, frightened, stunned, or knocked unconscious.
The dog makes two bite attacks.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (2d4 + 2) bludgeoning damage.
The Pony attacks with its Hooves.
The priest is a 5th-level spellcaster. Its spellcasting ability is Wisdom (spell save DC 13, +5 to hit with spell attacks). The priest has the following cleric spells prepared:
1st level (4 slots): cure wounds, guiding bolt, sanctuary
2nd level (3 slots): lesser restoration, spiritual weapon
3rd level (2 slots): dispel magic, spirit guardians
As a bonus action, the priest can expend a spell slot to cause its melee weapon attacks to magically deal an extra 10 (3d6) radiant damage to a target on a hit.
This benefit lasts until the end of the turn. If the priest expends a spell slot of 2nd level or higher, the extra damage increases by 1d6 for each level above 1st.
As a bonus action, the priest can expend a spell slot to cause its melee weapon attacks to magically deal an extra radiant damage to a target on a hit.
Melee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 3 (1d6) bludgeoning damage.
The Priest attacks with its Mace.
You touch a creature and can end either one disease or one condition afflicting it. The condition can be blinded, deafened, paralyzed, or poisoned.
You create a floating, spectral weapon within range that lasts for the duration or until you cast this spell again. When you cast the spell, you can make a melee spell attack against a creature within 5 feet of the weapon. On a hit, the target takes force damage equal to 1d8 + your spellcasting ability modifier.
As a bonus action on your turn, you can move the weapon up to 20 feet and repeat the attack against a creature within 5 feet of it.
The weapon can take whatever form you choose. Clerics of deities who are associated with a particular weapon (as St. Cuthbert is known for his mace and Thor for his hammer) make this spell's effect resemble that weapon.
Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for every two slot levels above the 2nd.
You call forth spirits to protect you. They flit around you to a distance of 15 feet for the duration. If you are good or neutral, their spectral form appears angelic or fey (your choice). If you are evil, they appear fiendish.
When you cast this spell, you can designate any number of creatures you can see to be unaffected by it. An affected creature's speed is halved in the area, and when the creature enters the area for the first time on a turn or starts its turn there, it must make a Wisdom saving throw. On a failed save, the creature takes 3d8 radiant damage (if you are good or neutral) or 3d8 necrotic damage (if you are evil). On a successful save, the creature takes half as much damage.
At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.
Melee Weapon Attack:+4 to hit,, 0 ft., one creature in the swarm's space. Hit: 5 (2d4) piercing damage, or 2 (1d4) piercing damage if the swarm has half of its hit points or fewer.
The Swarm of Bats attacks with a flurry of Bites.
The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny bat. The swarm can't regain hit points or gain temporary hit points.
The swarm has advantage on Wisdom (Perception) checks that rely on hearing.
The swarm can't use its blindsight while deafened.
The worm can burrow through solid rock at half its burrow speed and leaves a 10-foot-diameter tunnel in its wake.
The worm makes two attacks: one with its bite and one with its stinger.
Melee Weapon Attack:+9 to hit,, 10 ft., one target. Hit: 22 (3d8 + 9) piercing damage.
If the target is a Large or smaller creature, it must succeed on a DC 19 Dexterity saving throw or be swallowed by the worm. A swallowed creature is blinded and restrained, it has total cover against attacks and other effects outside the worm, and it takes 21 (6d6) acid damage at the start of each of the worm's turns.If the worm takes 30 damage or more on a single turn from a creature inside it, the worm must succeed on a DC 21 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the worm. If the worm dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 20 feet of movement, exiting prone.
The Purple Worm attacks with its Bite. If the target is a Large or smaller creature, it must make a Dexterity saving throw.
Melee Weapon Attack:+9 to hit,, 10 ft., one creature. Hit: 19 (3d6 + 9) piercing damage.
The target must make a DC 19 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.
The Purple Worm attacks with its Tail Stinger. The target must make a Constitution saving throw.
The specter can move through other creatures and objects as if they were difficult terrain.
Melee Spell Attack:+4 to hit,, 5 ft., one creature. Hit: 10 (3d6) necrotic damage.
The target must succeed on a DC 10 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the creature finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.
The Specter attacks with its Life Drain.The target must make a Constitution saving throw.
While in sunlight, the specter has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.
The shadow can move through a space as narrow as 1 inch wide without squeezing.
While in dim light or darkness, the shadow can take the Hide action as a bonus action.
The shadow can take the Hide action as a bonus action.
While in sunlight, the shadow has disadvantage on attack rolls, ability checks, and saving throws.
Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 9 (2d6 + 2) necrotic damage.
The target's Strength score is reduced by 1d4. The target dies if this reduces its Strength to 0. Otherwise, the reduction lasts until the target finishes a short or long rest.If a non-evil humanoid dies from this attack, a new shadow rises from the corpse 1d4 hours later.
The Shadow attacks with its Strength Drain.
Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.
The Young Gold Dragon attacks with its Bite.
**Fire Breath.** The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 55 (10d10) fire damage on a failed save, or half as much damage on a successful one.
**Weakening Breath.** The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.
The Young Gold Dragon attacks with its Claw.
The dragon exhales fire in a 30-foot cone. Each creature in that area must make a Dexterity saving throw.
The dragon exhales gas in a 30-foot cone. Each creature in that area must make a Strength saving throw.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 11 (2d8 + 2) piercing damage.
NOTE: the stats of this weapon have changed reflecting it being wielded by a creature with the \"Brute\" feature.
The Bugbear attacks with its Morningstar.
If the bugbear surprises a creature and hits it with an attack during the first round of combat, the target takes an extra 7 (2d6) damage from the attack.
A melee weapon deals one extra die of its damage when the bugbear hits with it (included in the attack).
Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 9 (2d6 + 2) piercing damage in melee or 5 (1d6 + 2) piercing damage at range.
The Bugbear attacks with its Javelin.
When the gnoll reduces a creature to 0 hit points with a melee attack on its turn, the gnoll can take a bonus action to move up to half its speed and make a bite attack.
The Gnoll attacks with its Bite.
Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.
The Gnoll attacks with its Spear.
The Gnoll attacks with its Longbow.
Any creature hostile to the pit fiend that starts its turn within 20 feet of the pit fiend must make a DC 21 Wisdom saving throw, unless the pit fiend is incapacitated. On a failed save, the creature is frightened until the start of its next turn. If a creature's saving throw is successful, the creature is immune to the pit fiend's Fear Aura for the next 24 hours.
Any creature hostile to the pit fiend that starts its turn within 20 feet of the pit fiend must make a Wisdom saving throw.
The pit fiend has advantage on saving throws against spells and other magical effects.
The pit fiend's weapon attacks are magical.
The pit fiend's spellcasting ability is Charisma (spell save DC 21). The pit fiend can innately cast the following spells, requiring no material components:
At will: detect magic, fireball
3/day each: hold monster, wall of fire
The pit fiend makes four attacks: one with its bite, one with its claw, one with its mace, and one with its tail.
Melee Weapon Attack:+14 to hit,, 5 ft., one target. Hit: 22 (4d6 + 8) piercing damage.
The target must succeed on a DC 21 Constitution saving throw or become poisoned. While poisoned in this way, the target can't regain hit points, and it takes 21 (6d6) poison damage at the start of each of its turns. The poisoned target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The Pit Fiend attacks with its Bite. The target must succeed on a DC 21 Constitution saving throw or become poisoned. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
Melee Weapon Attack: +14 to hit, reach 10 ft. , one target. Hit: 17 (2d8 + 8) slashing damage.
The Pit Fiend attacks with its Claw.
Melee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 15 (2d6 + 8) bludgeoning damage plus 21 (6d6) fire damage.
The Pit Fiend attacks with its Mace.
Melee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 24 (3d10 + 8) bludgeoning damage.
The Pit Fiend attacks with its Tail.
A bright streak flashes from your pointing finger to a point you choose within range and then blossoms with a low roar into an explosion of flame. Each creature in a 20-foot-radius sphere centered on that point must make a Dexterity saving throw. A target takes 8d6 fire damage on a failed save, or half as much damage on a successful one.
The fire spreads around corners. It ignites flammable objects in the area that aren't being worn or carried.
Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.
Choose a creature that you can see within range. The target must succeed on a Wisdom saving throw or be Paralyzed for the Duration. This spell has no effect on Undead. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target.
At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, you can target one additional creature for each slot level above 5th. The creatures must be within 30 feet of each other when you target them.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.
The Ogre Zombie attacks with its Morningstar.
The Swarm of Insects attacks with a flurry of Bites.
If the rhinoceros moves at least 20 ft. straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 9 (2d8) bludgeoning damage.
If the rhinoceros moves at least 20 ft. straight toward a target and then hits it with a gore attack on the same turn, the target takes extra bludgeoning damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.
Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.
The Rhinoceros attacks with its Gore.
The snake doesn't provoke opportunity attacks when it flies out of an enemy's reach.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 1 piercing damage plus 7 (3d4) poison damage.
The Flying Snake attacks with its Bite.
Melee Weapon Attack:+16 to hit,, 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage plus 10 (2d10) lightning damage.
The Ancient Blue Dragon attacks with its Bite.
The Ancient Blue Dragon attacks with its Claw.
Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.
The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.
The Ancient Blue Dragon attacks with its Tail.
Melee Weapon Attack:+9 to hit,, 15 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.
The Stone Giant attacks with its Greatclub.
If the target is a creature, it must succeed on a DC 17 Strength saving throw or be knocked prone.
The Stone Giant attacks with its Rock. If the target is a creature, it must make a Strength saving throw or be knocked prone.
If a rock or similar object is hurled at the giant, the giant can, with a successful DC 10 Dexterity saving throw, catch the missile and take no bludgeoning damage from it.
If a rock or similar object is hurled at the giant, the giant can catch the missile and take no bludgeoning damage from it.
The giant has advantage on Dexterity (Stealth) checks made to hide in rocky terrain.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 6 (1d8 + 2) slashing damage.
The Axe Beak attacks with its Beak.
The bat can't use its blindsight while deafened.
The bat has advantage on Wisdom (Perception) checks that rely on hearing.
The Giant Bat attacks with its Bite.
The Commoner attacks with their Club.
If the boar moves at least 20 ft. straight toward a target and then hits it with a tusk attack on the same turn, the target takes an extra 7 (2d6) slashing damage.
If the boar moves at least 20 ft. straight toward a target and then hits it with a tusk attack on the same turn, the target takes extra slashing damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.
If the boar takes 10 damage or less that would reduce it to 0 hit points, it is reduced to 1 hit point instead. Recharges after a short or long rest.
If the boar takes damage that would reduce it to 0 hit points, it is reduced to 1 hit point instead.
The Giant Boar attacks with its Tusk.
If the horse moves at least 20 ft. straight toward a creature and then hits it with a hooves attack on the same turn, that target must succeed on a DC 14 Strength saving throw or be knocked prone. If the target is prone, the horse can make another attack with its hooves against it as a bonus action.
If the horse moves at least 20 ft. straight toward a creature and then hits it with a hooves attack on the same turn, that target must succeed on Strength saving throw.
The Warhorse attacks with its Hooves.
The hippogriff has advantage on Wisdom (Perception) checks that rely on sight.
The hippogriff makes two attacks: one with its beak and one with its claws.
The Hippogriff attacks with its Beak.
The Hippogriff attacks with its Claws.
When bright light or a creature is within 30 feet of the shrieker, it emits a shriek audible within 300 feet of it. The shrieker continues to shriek until the disturbance moves out of range and for 1d4 of the shrieker's turns afterward
When bright light or a creature is within 30 feet of the shrieker, it emits a shriek audible within 300 feet of it.
While the shrieker remains motionless, it is indistinguishable from an ordinary fungus.
The goblin can take the Disengage or Hide action as a bonus action on each of its turns.
The Goblin attacks with its Scimitar.
Ranged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.
The Goblin attacks with its Shortbow.
Blinding dust and sand swirls magically around the mummy lord. Each creature within 5 feet of the mummy lord must succeed on a DC 16 Constitution saving throw or be blinded until the end of the creature's next turn.
Blinding dust and sand swirls magically around the mummy lord. Each creature within 5 feet of the mummy lord must make a Constitution saving throw.
The mummy lord utters a blasphemous word. Each non-undead creature within 10 feet of the mummy lord that can hear the magical utterance must succeed on a DC 16 Constitution saving throw or be stunned until the end of the mummy lord's next turn.
The mummy lord utters a blasphemous word. Each non-undead creature within 10 feet of the mummy lord that can hear the magical utterance must make a Constitution saving throw.
The mummy lord magically unleashes negative energy. Creatures within 60 feet of the mummy lord, including ones behind barriers and around corners, can't regain hit points until the end of the mummy lord's next turn.
The mummy lord has advantage on saving throws against spells and other magical effects.
A destroyed mummy lord gains a new body in 24 hours if its heart is intact, regaining all its hit points and becoming active again. The new body appears within 5 feet of the mummy lord's heart.
A destroyed mummy lord gains a new body in 24 hours.
The mummy lord is a 10th-level spellcaster. Its spellcasting ability is Wisdom (spell save DC 17, +9 to hit with spell attacks). The mummy lord has the following cleric spells prepared:
Cantrips (at will): sacred flame, thaumaturgy
1st level (4 slots): command, guiding bolt, shield of faith
2nd level (3 slots): hold person, silence, spiritual weapon
3rd level (3 slots): animate dead, dispel magic
4th level (3 slots): divination, guardian of faith
5th level (2 slots): contagion, insect plague
6th level (1 slot): harm
The mummy lord is a spellcaster. Its spellcasting ability is Wisdom.
The mummy can use its Dreadful Glare and makes one attack with its rotting fist.
Melee Weapon Attack:+9 to hit,, 5 ft., one target. Hit: 14 (3d6 + 4) bludgeoning damage plus 21 (6d6) necrotic damage.
If the target is a creature, it must succeed on a DC 16 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.
The Mummy Lord attacks with its Rotting Fist. If the target is a creature, it must make a Constitution saving throw.
The mummy lord targets one creature it can see within 60 feet of it. If the target can see the mummy lord, it must succeed on a DC 16 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn.
If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies and mummy lords for the next 24 hours.
The mummy lord targets one creature it can see within 60 ft. of it. If the target can see the mummy, it must make a Wisdom saving throw against this magic.
The mummy lord can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The mummy lord regains spent legendary actions at the start of its turn.
The mummy lord can take 3 legendary actions.
The mummy lord makes one attack with its Rotting Fist or uses its Dreadful Glare.
The mummy lord magically transforms into a whirlwind of sand, moves up to 60 feet, and reverts to its normal form. While in whirlwind form, the mummy lord is immune to all damage, and it can't be grappled, petrified, knocked prone, restrained, or stunned. Equipment worn or carried by the mummy lord remain in its possession.
For the Duration, no sound can be created within or pass through a 20-foot-radius sphere centered on a point you choose within range. Any creature or object entirely inside the sphere is immune to thunder damage, and creatures are Deafened while entirely inside it. Casting a Spell that includes a verbal component is impossible there.
This spell creates an undead servant. Choose a pile of bones or a corpse of a Medium or Small humanoid within range. Your spell imbues the target with a foul mimicry of life, raising it as an undead creature. The target becomes a skeleton if you chose bones or a zombie if you chose a corpse (the DM has the creature's game statistics).
On each of your turns, you can use a bonus action to mentally command any creature you made with this spell if the creature is within 60 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete.
The creature is under your control for 24 hours, after which it stops obeying any command you've given it. To maintain control of the creature for another 24 hours, you must cast this spell on the creature again before the current 24-hour period ends. This use of the spell reasserts your control over up to four creatures you have animated with this spell, rather than animating a new one.
At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, you animate or reassert control over two additional undead creatures for each slot level above 3rd. Each of the creatures must come from a different corpse or pile of bones.
Your magic and an offering put you in contact with a god or a god's servants. You ask a single question concerning a specific goal, event, or activity to occur within 7 days. The DM offers a truthful reply. The reply might be a short phrase, a cryptic rhyme, or an omen.
The spell doesn't take into account any possible circumstances that might change the outcome, such as the casting of additional spells or the loss or gain of a companion.
If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get a random reading. The DM makes this roll in secret.
A Large Spectral Guardian appears and hovers for the Duration in an unoccupied space of your choice that you can see within range. The guardian occupies that space and is indistinct except for a gleaming sword and shield emblazoned with the symbol of your deity.
Any creature hostile to you that moves to a space within 10 feet of the guardian for the first time on a turn must succeed on a Dexterity saving throw. The creature takes 20 radiant damage on a failed save, or half as much damage on a successful one. The guardian vanishes when it has dealt a total of 60 damage.
Your touch inflicts disease. Make a melee spell attack against a creature within your reach. On a hit, you afflict the creature with a disease of your choice from any of the ones described below.
At the end of each of the target's turns, it must make a Constitution saving throw. After failing three of these saving throws, the disease's effects last for the duration, and the creature stops making these saves. After succeeding on three of these saving throws, the creature recovers from the disease, and the spell ends.
Since this spell induces a natural disease in its target, any effect that removes a disease or otherwise ameliorates a disease's effects apply to it.
Blinding Sickness. Pain grips the creature's mind, and its eyes turn milky white. The creature has disadvantage on Wisdom checks and Wisdom saving throws and is blinded.
Filth Fever. A raging fever sweeps through the creature's body. The creature has disadvantage on Strength checks, Strength saving throws, and attack rolls that use Strength.
Flesh Rot. The creature's flesh decays. The creature has disadvantage on Charisma checks and vulnerability to all damage.
Mindfire. The creature's mind becomes feverish. The creature has disadvantage on Intelligence checks and Intelligence saving throws, and the creature behaves as if under the effects of the confusion spell during combat.
Seizure. The creature is overcome with shaking. The creature has disadvantage on Dexterity checks, Dexterity saving throws, and attack rolls that use Dexterity.
Slimy Doom. The creature begins to bleed uncontrollably. The creature has disadvantage on Constitution checks and Constitution saving throws. In addition, whenever the creature takes damage, it is stunned until the end of its next turn.
Swarming, biting locusts fill a 20-foot-radius Sphere centered on a point you choose within range. The sphere spreads around corners. The sphere remains for the Duration, and its area is lightly obscured. The sphere's area is difficult terrain.
When the area appears, each creature in it must make a Constitution saving throw. A creature takes 4d10 piercing damage on a failed save, or half as much damage on a successful one. A creature must also make this saving throw when it enters the spell's area for the first time on a turn or ends its turn there.
At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d10 for each slot level above 5th.
You unleash a virulent disease on a creature that you can see within range. The target must make a Constitution saving throw. On a failed save, it takes 14d6 necrotic damage, or half as much damage on a successful save. The damage can't reduce the target's Hit Points below 1. If the target fails the saving throw, its hit point maximum is reduced for 1 Hour by an amount equal to the necrotic damage it took. Any effect that removes a disease allows a creature's hit point maximum to return to normal before that time passes.
While the tree remains motionless, it is indistinguishable from a normal tree.
Melee Weapon Attack:+6 to hit,, 10 ft., one target. Hit: 14 (3d6 + 4) bludgeoning damage.
The Awakened Tree attacks with its Slam.
The Constrictor Snake attacks with its Bite.
Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 6 (1d8 + 2) bludgeoning damage. The target is grappled (escape DC 14). Until this grapple ends, the creature is restrained, and the snake can't constrict another target.
The Constrictor Snake attacks with its Constrict. The target is grappled. Until this grapple ends, the creature is restrained, and the snake can't constrict another target.
Melee Weapon Attack:+2 to hit,, 5 ft., one creature. Hit: 2 (1d4) slashing damage plus 2 (1d4) fire damage.
The Steam Mephit attacks with its Claws.
When the mephit dies, it explodes in a cloud of steam.
Each creature within 5 ft. of the mephit must succeed on a DC 10 Dexterity saving throw or take 4 (1d8) fire damage.
When the mephit dies, it explodes in a cloud of steam. Each creature within 5 ft. of the mephit must make a Dexterity saving throw.
The mephit can innately cast blur, requiring no material components. Its innate spellcasting ability is Charisma.
The mephit exhales a 15-foot cone of scalding steam. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 4 (1d8) fire damage on a failed save, or half as much damage on a successful one.
The mephit exhales a 15-foot cone of scalding steam. Each creature in that area must succeed on a Dexterity saving throw.
Your body becomes blurred, shifting and wavering to all who can see you. For the duration, any creature has disadvantage on attack rolls against you. An attacker is immune to this effect if it doesn't rely on sight, as with blindsight, or can see through illusions, as with truesight.
The worg has advantage on Wisdom (Perception) checks that rely on hearing or smell.
The Worg attacks with its Bite. If the target is a creature, it must make a Strength saving throw or be knocked prone.
Melee Weapon Attack:+11 to hit,, 10 ft., one target. Hit: 40 (6d10 + 7) piercing damage plus 10 (3d6) fire damage.
If the target is a creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the remorhaz can't bite another target.
The Remorhaz attacks with its Bite. If the target is a creature, it is grappled. Until this grapple ends, the target is restrained, and the remorhaz can't bite another target.
A creature that touches the remorhaz or hits it with a melee attack while within 5 feet of it takes 10 (3d6) fire damage.
A creature that touches the remorhaz or hits it with a melee attack while within 5 feet of it takes fire damage.
The remorhaz makes one bite attack against a Medium or smaller creature it is grappling.
If the attack hits, that creature takes the bite's damage and is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the remorhaz, and it takes 21 (6d6) acid damage at the start of each of the remorhaz's turns.
The Remorhaz attacks with its Swallow.
Melee Weapon Attack:+12 to hit,, 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage.
The Adult Bronze Dragon attacks with its Bite.
Melee Weapon Attack:+12 to hit,, 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.
The Adult Bronze Dragon attacks with its Claw.
Melee Weapon Attack:+12 to hit,, 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.
The Adult Bronze Dragon attacks with its Tail.
Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute.
**Lightning Breath.** The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.
**Repulsion Breath.** The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 19 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.
The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.
The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 20 Dexterity saving throw or take 16 (2d6+7) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.
The owl doesn't provoke opportunity attacks when it flies out of an enemy's reach.
The owl has advantage on Wisdom (Perception) checks that rely on hearing or sight.
Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 8 (2d6 + 1) slashing damage.
The Giant Owl attacks with its Talons.
The mule is considered to be a Large animal for the purpose of determining its carrying capacity.
The mule has advantage on Strength and Dexterity saving throws made against effects that would knock it prone.
Melee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 4 (1d4 + 2) bludgeoning damage.
The Mule attacks with its Hooves.
The fiend ignores the range restriction on its telepathy when communicating with a creature it has charmed. The two don't even need to be on the same plane of existence.
The fiend can use its action to polymorph into a Small or Medium humanoid, or back into its true form. Without wings, the fiend loses its flying speed. Other than its size and speed, its statistics are the same in each form.
Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies.
The fiend can use its action to polymorph into a humanoid, or back into its true form.
The Succubus/Incubus attacks with its Claw.
One humanoid the fiend can see within 30 feet of it must make a Wisdom saving throw or be magically charmed for 1 day. The charmed target obeys the fiend's verbal or telepathic commands.
If the target suffers any harm or receives a suicidal command, it can repeat the saving throw, ending the effect on a success. If the target successfully saves against the effect, or if the effect on it ends, the target is immune to this fiend's Charm for the next 24 hours.The fiend can have only one target charmed at a time. If it charms another, the effect on the previous target ends.
One humanoid the fiend can see within 30 feet of it must make a Wisdom saving throw.
The fiend kisses a creature charmed by it or a willing creature. The target must make a DC 15 Constitution saving throw against this magic, taking 32 (5d10 + 5) psychic damage on a failed save, or half as much damage on a successful one.
The fiend magically enters the Ethereal Plane from the Material Plane, or vice versa.
The rust monster can pinpoint, by scent, the location of ferrous metal within 30 feet of it.
Any nonmagical weapon made of metal that hits the rust monster corrodes. After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls. If its penalty drops to -5, the weapon is destroyed. Non magical ammunition made of metal that hits the rust monster is destroyed after dealing damage.
Any nonmagical weapon made of metal that hits the rust monster corrodes. After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls.
The Rust Monster attacks with its Bite.
The rust monster corrodes a nonmagical ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it.
If the object is being worn or carried by a creature, the creature can make a DC 11 Dexterity saving throw to avoid the rust monster's touch.If the object touched is either metal armor or a metal shield being worn or carried, its takes a permanent and cumulative -1 penalty to the AC it offers. Armor reduced to an AC of 10 or a shield that drops to a +0 bonus is destroyed. If the object touched is a held metal weapon, it rusts as described in the Rust Metal trait.
The rust monster corrodes a ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it.
Melee Weapon Attack:+5 to hit,, 5 ft., one creature. Hit: 1 piercing damage.
The Weasel attacks with its Bite.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage plus 3 (1d6) acid damage.
If the target is a Large or smaller creature, it is grappled (escape DC 13). Until this grapple ends, the ankheg can bite only the grappled creature and has advantage on attack rolls to do so.
The Ankheg attacks with its Bite.
The ankheg spits acid in a line that is 30 ft. long and 5 ft. wide, provided that it has no creature grappled.
The ankheg spits acid in a line that is 30 ft. long and 5 ft. wide. Each creature in that line must make a Dexterity saving throw.
The planetar's weapon attacks are magical. When the planetar hits with any weapon, the weapon deals an extra 5d8 radiant damage (included in the attack).
The planetar's weapon attacks are magical. When the planetar hits with any weapon, the weapon deals extra radiant damage (included in the attack).
The planetar knows if it hears a lie.
The planetar's spellcasting ability is Charisma (spell save DC 20). The planetar can innately cast the following spells, requiring no material components:
At will: detect evil and good, invisibility (self only)
3/day each: blade barrier, dispel evil and good, flame strike, raise dead
1/day each: commune, control weather, insect plague
The planetar has advantage on saving throws against spells and other magical effects.
The planetar makes two melee attacks.
Melee Weapon Attack:+12 to hit,, 5 ft., one target. Hit: 21 (4d6 + 7) slashing damage plus 22 (5d8) radiant damage.
The Planetar attacks with its Greatsword.
The planetar touches another creature. The target magically regains 30 (6d8 + 3) hit points and is freed from any curse, disease, poison, blindness, or deafness.
You create a vertical wall of whirling, razor-sharp blades made of magical energy. The wall appears within range and lasts for the duration. You can make a straight wall up to 100 feet long, 20 feet high, and 5 feet thick, or a ringed wall up to 60 feet in diameter, 20 feet high, and 5 feet thick. The wall provides three-quarters cover to creatures behind it, and its space is difficult terrain.
When a creature enters the wall's area for the first time on a turn or starts its turn there, the creature must make a Dexterity saving throw. On a failed save, the creature takes 6d10 slashing damage. On a successful save, the creature takes half as much damage.
You return a dead creature you touch to life, provided that it has been dead no longer than 10 days. If the creature's soul is both willing and at liberty to rejoin the body, the creature returns to life with 1 hit point.
This spell also neutralizes any poisons and cures nonmagical diseases that affected the creature at the time it died. This spell doesn't, however, remove magical diseases, curses, or similar effects; if these aren't first removed prior to casting the spell, they take effect when the creature returns to life. The spell can't return an undead creature to life.
This spell closes all mortal wounds, but it doesn't restore missing body parts. If the creature is lacking body parts or organs integral for its survival—its head, for instance—the spell automatically fails.
Coming back from the dead is an ordeal. The target takes a −4 penalty to all attack rolls, saving throws, and ability checks. Every time the target finishes a long rest, the penalty is reduced by 1 until it disappears.
You contact your deity or a divine proxy and ask up to three questions that can be answered with a yes or no. You must ask your questions before the spell ends. You receive a correct answer for each question.
Divine beings aren't necessarily omniscient, so you might receive \"unclear\" as an answer if a question pertains to information that lies beyond the deity's knowledge. In a case where a one-word answer could be misleading or contrary to the deity's interests, the DM might offer a short phrase as an answer instead.
If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get no answer. The DM makes this roll in secret.
The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny snake. The swarm can't regain hit points or gain temporary hit points.
Melee Weapon Attack:+6 to hit,, 0 ft., one creature in the swarm's space. Hit: 7 (2d6) piercing damage, or 3 (1d6) piercing damage if the swarm has half of its hit points or fewer.
The target must make a DC 10 Constitution saving throw, taking 14 (4d6) poison damage on a failed save, or half as much damage on a successful one.
The Swarm of Poisonous Snakes attacks with a flurry of Bites. The target must make a Constitution saving throw.
The avatar can move through other creatures and objects as if they were difficult terrain.
The avatar is immune to features that turn undead.
The avatar sweeps its spectral scythe through a creature within 5 feet of it, dealing 7 (1d8 + 3) slashing damage plus 4 (1d8) necrotic damage.
The avatar sweeps its spectral scythe through a creature within 5 feet of it.
Melee Weapon Attack:+2 to hit,, 5 ft., one creature. Hit: 1 piercing damage.
The target must make a DC 9 Constitution saving throw, taking 4 (1d8) poison damage on a failed save, or half as much damage on a successful one.
The Scorpion attacks with its Sting. The target must make a Constitution saving throw.
Melee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage.
If the target is a creature, it must succeed on a DC 15 Constitution saving throw or have its hit point maximum reduced by an amount equal to the damage taken. The target dies if this attack reduces its hit point maximum to 0. The reduction lasts until removed by the greater restoration spell or other magic.
The Clay Golem attacks with its Slam. If the target is a creature, it must make a Constitution saving throw.
Until the end of its next turn, the golem magically gains a +2 bonus to its AC, has advantage on Dexterity saving throws, and can use its slam attack as a bonus action.
Whenever the golem starts its turn with 60 hit points or fewer, roll a d6. On a 6, the golem goes berserk. On each of its turns while berserk, the golem attacks the nearest creature it can see.
If no creature is near enough to move to and attack, the golem attacks an object, with preference for an object smaller than itself. Once the golem goes berserk, it continues to do so until it is destroyed or regains all its hit points.
Whenever the golem is subjected to acid damage, it takes no damage and instead regains a number of hit points equal to the acid damage dealt.
The mastiff has advantage on Wisdom (Perception) checks that rely on hearing or smell.
Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) piercing damage.
The Mastiff attacks with its Bite. If the target is a creature, it must succeed on a Strength saving throw or be knocked prone.
The Swarm of Wasps attacks with a flurry of Bites.
Melee Weapon Attack:+1 to hit,, 5 ft., one target. Hit: 2 (1d6 - 1) slashing damage.
The Giant Fire Beetle attacks with its Bite.
The beetle sheds bright light in a 10-foot radius and dim light for an additional 10 feet.
Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 7 (1d6 + 4) piercing damage.
The Troll attacks with its Bite.
The Troll attacks with its Claw.
The troll has advantage on Wisdom (Perception) checks that rely on smell.
The troll makes three attacks: one with its bite and two with its claws.
The troll regains 10 hit points at the start of its turn. If the troll takes acid or fire damage, this trait doesn't function at the start of the troll's next turn. The troll dies only if it starts its turn with 0 hit points and doesn't regenerate.
The troll regains 10 hit points at the start of its turn.
The gnome has advantage on Dexterity (Stealth) checks made to hide in rocky terrain.
The gnome has advantage on Intelligence, Wisdom, and Charisma saving throws against magic.
The Deep Gnome (Svirfneblin) attacks with its War Pick.
The gnome's innate spellcasting ability is Intelligence (spell save DC 11). It can innately cast the following spells, requiring no material components:
At will: nondetection (self only)
1/day each: blindness/deafness, blur, disguise self
Ranged Weapon Attack: +4 to hit, range 30/120 ft., one creature. Hit: 4 (1d4 + 2) piercing damage.
The target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The Deep Gnome (Svirfneblin) attacks with its Poisoned Dart. The target must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
For the Duration, you hide a target that you touch from Divination magic. The target can be a willing creature or a place or an object no larger than 10 feet in any dimension. The target can't be targeted by any divination magic or perceived through magical Scrying sensors.
You can blind or deafen a foe. Choose one creature that you can see within range to make a Constitution saving throw. If it fails, the target is either blinded or deafened (your choice) for the duration. At the end of each of its turns, the target can make a Constitution saving throw. On a success, the spell ends.
The target must succeed on a DC 10 Constitution saving throw or be poisoned for 1 minute. If the saving throw fails by 5 or more, the target is instead poisoned for 5 (1d10) minutes and unconscious while poisoned in this way.
The Homunculus attacks with its Bite.The target must make a Constitution saving throw.
While the homunculus is on the same plane of existence as its master, it can magically convey what it senses to its master, and the two can communicate telepathically.
Melee Weapon Attack:+6 to hit,, 10 ft., one target. Hit: 6 (1d4 + 4) piercing damage.
The target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.
The Giant Poisonous Snake attacks with its Bite. The target must make a Constitution saving throw.
Melee Weapon Attack:+8 to hit,, 5 ft., one creature. Hit: 8 (1d6 + 5) piercing damage.
The target must succeed on a DC 13 Constitution saving throw or be poisoned for 24 hours. Until this poison ends, the target is unconscious. Another creature can use an action to shake the target awake.
The Couatl attacks with its Bite. The target must make a Constitution saving throw.
Melee Weapon Attack:+6 to hit,, 10 ft., one Medium or smaller creature. Hit: 10 (2d6 + 3) bludgeoning damage.
The target is grappled (escape DC 15). Until this grapple ends, the target is restrained, and the couatl can't constrict another target.
The Couatl attacks with its Constrict. The target is grappled. Until this grapple ends, the target is restrained, and the couatl can't constrict another target.
The couatl magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the couatl's choice).
In a new form, the couatl retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and other actions are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks. If the new form has a bite attack, the couatl can use its bite in that form.
The couatl's spellcasting ability is Charisma (spell save DC 14). It can innately cast the following spells, requiring only verbal components:
At will: detect evil and good, detect magic, detect thoughts
3/day each: bless, create food and water, cure wounds, lesser restoration, protection from poison, sanctuary, shield
1/day each: dream, greater restoration, scrying
The couatl's weapon attacks are magical.
The couatl is immune to scrying and to any effect that would sense its emotions, read its thoughts, or detect its location.
This spell shapes a creature's dreams. Choose a creature known to you as the target of this spell. The target must be on the same plane of existence as you. Creatures that don't sleep, such as elves, can't be contacted by this spell. You, or a willing creature you touch, enters a trance state, acting as a messenger. While in the trance, the messenger is aware of his or her surroundings, but can't take Actions or move.
If the target is asleep, the messenger appears in the target's dreams and can converse with the target as long as it remains asleep, through the Duration of the spell. The messenger can also shape The Environment of the dream, creating landscapes, Objects, and other images. The messenger can emerge from the trance at any time, ending the effect of the spell early. The target recalls the dream perfectly upon waking. If the target is awake when you cast the spell, the messenger knows it, and can either end the trance (and the spell) or wait for the target to fall asleep, at which point the messenger appears in the target's dreams.
You can make the messenger appear monstrous and terrifying to the target. If you do, the messenger can deliver a message of no more than ten words and then the target must make a Wisdom saving throw. On a failed save, echoes of the phantasmal monstrosity spawn a nightmare that lasts the Duration of the target's sleep and prevents the target from gaining any benefit from that rest. In addition, when the target wakes up, it takes 3d6 psychic damage.
If you have a body part, lock of hair, clipping from a nail, or similar portion of the target's body, the target makes its saving throw with disadvantage.
You imbue a creature you touch with positive energy to undo a debilitating effect. You can reduce the target's Exhaustion level by one, or end one of the following Effects on the target:
You touch a creature. If it is poisoned, you neutralize the poison. If more than one poison afflicts the target, you neutralize one poison that you know is present, or you neutralize one at random.
For the duration, the target has advantage on saving throws against being poisoned, and it has resistance to poison damage.
The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 63 (18d6) fire damage on a failed save, or half as much damage on a successful one.
Melee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 7 (2d6) fire damage.
The Adult Red Dragon attacks with its Bite.
The Adult Red Dragon attacks with its Claw.
The Adult Red Dragon attacks with its Tail.
When the hyena reduces a creature to 0 hit points with a melee attack on its turn, the hyena can take a bonus action to move up to half its speed and make a bite attack.
The Giant Hyena attacks with its Bite.
The ettercap can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.
While in contact with a web, the ettercap knows the exact location of any other creature in contact with the same web.
The ettercap ignores movement restrictions caused by webbing.
The ettercap makes two attacks: one with its bite and one with its claws.
Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage plus 4 (1d8) poison damage.
The target must succeed on a DC 11 Constitution saving throw or be poisoned for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The Ettercap attacks with its Bite. The target must make a Constitution saving throw. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The Ettercap attacks with its Claws.
Melee Weapon Attack:+14 to hit,, 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) cold damage.
The Ancient White Dragon attacks with its Bite.
Melee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.
The Ancient White Dragon attacks with its Claw.
The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 72 (l6d8) cold damage on a failed save, or half as much damage on a successful one.
The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a Constitution saving throw.
Melee Weapon Attack:+14 to hit,, 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.
The Ancient White Dragon attacks with its Tail.
The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 22 Dexterity saving throw or take 15 ([[/r 2d6+8]]) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.
The Brass Dragon Wyrmling attacks with its Bite.
**Fire Breath.** The dragon exhales fire in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 14 (4d6) fire damage on a failed save, or half as much damage on a successful one.
**Sleep Breath.** The dragon exhales sleep gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw or fall unconscious for 1 minute. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.
The dragon exhales fire in an 20-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.
The dragon exhales sleep gas in a 15-foot cone. Each creature in that area must make a Constitution saving throw.
The elemental can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing.
The elemental makes two slam attacks.
Melee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.
The Air Elemental attacks with its Slam.
Each creature in the elemental's space must make a DC 13 Strength saving throw. On a failure, a target takes 15 (3d8 + 2) bludgeoning damage and is flung up 20 feet away from the elemental in a random direction and knocked prone.
Each creature in the elemental's space must make a Strength saving throw. On a failure, a target is flung up 20 feet away from the elemental in a random direction and knocked prone. If the target is thrown at another creature, that creature must make a Dexterity saving throw or take the same damage and be knocked prone.
The dragon exhales acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 49 (11d8) acid damage on a failed save, or half as much damage on a successful one.
Each creature in that line must make a DC 14 Dexterity saving throw, taking 49 (11d8) acid damage on a failed save, or half as much damage on a successful one.
The dragon exhales acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.
Melee Weapon Attack:+7 to hit,, 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) acid damage.
The Young Black Dragon attacks with its Bite.
The Young Black Dragon attacks with its Claw.
The lich casts a cantrip.
The lich uses its Paralyzing Touch.
The lich fixes its gaze on one creature it can see within 10 feet of it. The target must succeed on a DC 18 Wisdom saving throw against this magic or become grappled for 1 minute. The grappled target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to the lich's gaze for the next 24 hours.
The lich fixes its gaze on one creature it can see within 10 feet of it. The target must make a Wisdom saving throw.
Each non-undead creature within 20 feet of the lich must make a DC 18 Constitution saving throw against this magic, taking 21 (6d6) necrotic damage on a failed save, or half as much damage on a successful one.
Each non-undead creature within 20 feet of the lich must make a Constitution saving throw against this magic.
If the lich fails a saving throw, it can choose to succeed instead.
If it has a phylactery, a destroyed lich gains a new body in 1d10 days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the phylactery.
A destroyed lich gains a new body in 1d10 days, regaining all its hit points and becoming active again.
The lich is an 18th-level spellcaster. Its spellcasting ability is Intelligence (spell save DC 20, +12 to hit with spell attacks). The lich has the following wizard spells prepared:
Cantrips (at will): mage hand, prestidigitation, ray of frost
1st level (4 slots): detect magic, magic missile, shield, thunderwave
2nd level (3 slots): detect thoughts, invisibility, acid arrow, mirror image
3rd level (3 slots): animate dead, counterspell, dispel magic, fireball
4th level (3 slots): blight, dimension door
5th level (3 slots): cloudkill, scrying
6th level (1 slot): disintegrate, globe of invulnerability
7th level (1 slot): finger of death, plane shift
8th level (1 slot): dominate monster, power word stun
9th level (1 slot): power word kill
The lich is an spellcaster. Its spellcasting ability is Intelligence.
Melee Spell Attack:+12 to hit,, 5 ft., one creature. Hit: 10 (3d6) cold damage.
The target must succeed on a DC 18 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The Lich attacks with its Paralyzing Touch. The target must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The lich has advantage on saving throws against any effect that turns undead.
The lich can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The lich regains spent legendary actions at the start of its turn.
The lich can take 3 legendary actions.
A shimmering green arrow streaks toward a target within range and bursts in a spray of acid. Make a ranged spell Attack against the target. On a hit, the target takes 4d4 acid damage immediately and 2d4 acid damage at the end of its next turn. On a miss, the arrow splashes the target with acid for half as much of the initial damage and no damage at the end of its next turn.
At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage (both initial and later) increases by 1d4 for each slot level above 2nd.
You create a 20-foot-radius sphere of poisonous, yellow-green fog centered on a point you choose within range. The fog spreads around corners. It lasts for the duration or until strong wind disperses the fog, ending the spell. Its area is heavily obscured.
When a creature enters the spell's area for the first time on a turn or starts its turn there, that creature must make a Constitution saving throw. The creature takes 5d8 poison damage on a failed save, or half as much damage on a successful one. Creatures are affected even if they hold their breath or don't need to breathe.
The fog moves 10 feet away from you at the start of each of your turns, rolling along the surface of the ground. The vapors, being heavier than air, sink to the lowest level of the land, even pouring down openings.
A thin green ray springs from your pointing finger to a target that you can see within range. The target can be a creature, an object, or a creation of magical force, such as the wall created by wall of force.
A creature targeted by this spell must make a Dexterity saving throw. On a failed save, the target takes 10d6 + 40 force damage. The target is disintegrated if this damage leaves it with 0 hit points.
A disintegrated creature and everything it is wearing and carrying, except magic items, are reduced to a pile of fine gray dust. The creature can be restored to life only by means of a true resurrection or a wish spell.
This spell automatically disintegrates a Large or smaller nonmagical object or a creation of magical force. If the target is a Huge or larger object or creation of force, this spell disintegrates a 10-foot-cube portion of it. A magic item is unaffected by this spell.
At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the damage increases by 3d6 for each slot level above 6th.
You send negative energy coursing through a creature that you can see within range, causing it searing pain. The target must make a Constitution saving throw. It takes 7d8 + 30 necrotic damage on a failed save, or half as much damage on a successful one.
A humanoid killed by this spell rises at the start of your next turn as a Zombie that is permanently under your command, following your verbal orders to the best of its ability.
You attempt to beguile a creature that you can see within range. It must succeed on a Wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw.
While the creature is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability.
You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time, you can also cause the creature to use a reaction, but this requires you to use your own reaction as well.
At Higher Levels. When you cast this spell with a 9th-level spell slot, the duration is concentration, up to 8 hours.
You utter a word of power that can compel one creature you can see within range to die instantly. If the creature you choose has 100 hit points or fewer, it dies. Otherwise, the spell has no effect.
The quasit magically turns invisible until it attacks or uses Scare, or until its concentration ends (as if concentrating on a spell). Any equipment the quasit wears or carries is invisible with it.
The quasit magically turns invisible. Any equipment the quasit wears or carries is invisible with it.
Melee Weapon Attack: +4 to hit, reach 5 ft ., one target. Hit: 5 (1d4 + 3) piercing damage.
The target must succeed on a DC 10 Constitution saving throw or take 5 (2d4) poison damage and become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The Quasit attacks with its Claw. The target must make a Constitution saving throw. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The quasit can use its action to polymorph into a beast form that resembles a bat (speed 10 ft. fly 40 ft.), a centipede (40 ft., climb 40 ft.), or a toad (40 ft., swim 40 ft.), or back into its true form . Its statistics are the same in each form, except for the speed changes noted.
Any equipment it is wearing or carrying isn't transformed . It reverts to its true form if it dies.
The quasit can use its action to polymorph into a beast form or back into its true form.
The quasit has advantage on saving throws against spells and other magical effects.
One creature of the quasit's choice within 20 ft. of it must succeed on a DC 10 Wisdom saving throw or be frightened for 1 minute.
The target can repeat the saving throw at the end of each of its turns, with disadvantage if the quasit is within line of sight, ending the effect on itself on a success.
One creature of the quasit's choice within 20 ft. of it must make a Wisdom saving throw. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the quasit is within line of sight, ending the effect on itself on a success.
If the sea horse moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 7 (2d6) bludgeoning damage.
If the sea horse moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes extra bludgeoning damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.
The Giant Sea Horse attacks with its Ram.
The hyena has advantage on an attack roll against a creature if at least one of the hyena's allies is within 5 ft. of the creature and the ally isn't incapacitated.
Melee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 3 (1d6) piercing damage.
The Hyena attacks with its Bite.
Melee Weapon Attack:+12 to hit,, 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage plus 5 (1d10) lightning damage.
The Adult Blue Dragon attacks with its Bite.
The Adult Blue Dragon attacks with its Claw.
Each creature of the dragon's choice that is within 120 ft. of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute.
The dragon exhales lightning in a 90-foot line that is 5 ft. wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.
The dragon exhales lightning in a 90-foot line that is 5 ft. wide. Each creature in that line must make a Dexterity saving throw.
The Adult Blue Dragon attacks with its Tail.
The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 20 Dexterity saving throw or take 14 (2d6+7) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.
The badger has advantage on Wisdom (Perception) checks that rely on smell.
The badger makes two attacks: one with its bite and one with its claws.
The Giant Badger attacks with its Bite.
The Giant Badger attacks with its Claws.
The whale can't use its blindsight while deafened.
The whale can hold its breath for 30 minutes.
The whale has advantage on Wisdom (Perception) checks that rely on hearing.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 21 (5d6 + 4) piercing damage.
The Killer Whale attacks with its Bite.
Melee Weapon Attack:+17 to hit,, 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.
The Ancient Gold Dragon attacks with its Bite.
Melee Weapon Attack:+17 to hit,, 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.
The Ancient Gold Dragon attacks with its Claw.
Melee Weapon Attack:+17 to hit,, 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.
The Ancient Gold Dragon attacks with its Tail.
Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 24 Wisdom saving throw or become frightened for 1 minute.
**Fire Breath.** The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 71 (13d10) fire damage on a failed save, or half as much damage on a successful one.
**Weakening Breath.** The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The dragon exhales fire in a 90-foot cone. Each creature in that area must make a Dexterity saving throw.
The dragon exhales gas in a 90-foot cone. Each creature in that area must make a Strength saving throw.
The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 25 Dexterity saving throw or take 17 ([[/r 2d6+10]]) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.
Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 1 slashing damage.
The Owl attacks with its Talons.
The imp can use its action to polymorph into a beast form that resembles a rat (speed 20 ft.), a raven (20 ft., fly 60 ft.), or a spider (20 ft., climb 20 ft.), or back into its true form. Its statistics are the same in each form, except for the speed changes noted. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies.
Magical darkness doesn't impede the imp's darkvision.
The imp has advantage on saving throws against spells and other magical effects.
Melee Weapon Attack: +5 to hit, reach 5 ft ., one target. Hit: 5 (1d4 + 3) piercing damage.
The target must make on a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.
The Imp attacks with its Sting. The target must make a Constitution saving throw.
The imp magically turns invisible until it attacks, or until its concentration ends (as if concentrating on a spell). Any equipment the imp wears or carries is invisible with it.
The imp magically turns invisible. Any equipment the imp wears or carries is invisible with it.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.
The Imp attacks with its Bite.
The Swarm of Beetles attacks with a flurry of Bites.
Melee Weapon Attack:+9 to hit,, 5 ft., one target. Hit: 24 (4d8 + 6) piercing damage.
The Triceratops attacks with its Gore.
Melee Weapon Attack:+9 to hit,, 5 ft., one prone creature. Hit: 22 (3d10 + 6) bludgeoning damage.
The Triceratops attacks with its Stomp.
If the triceratops moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a DC 13 Strength saving throw or be knocked prone. If the target is prone, the triceratops can make one stomp attack against it as a bonus action.
If the triceratops moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a Strength saving throw.
The Ogre attacks with its Greatclub.
Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 11 (2d6 + 4) piercing damage.
The Ogre attacks with its Javelin.
The armor is incapacitated while in the area of an antimagic field.
If targeted by dispel magic, the armor must succeed on a Constitution saving throw against the caster's spell save DC or fall unconscious for 1 minute.
While the armor remains motionless, it is indistinguishable from a normal suit of armor.
The armor makes two melee attacks.
The Animated Armor makes a slam attack!
The hezrou has advantage on saving throws against spells and other magical effects.
Any creature that starts its turn within 10 feet of the hezrou must succeed on a DC 14 Constitution saving throw or be poisoned until the start of its next turn. On a successful saving throw, the creature is immune to the hezrou's stench for 24 hours.
Any creature that starts its turn within 10 feet of the hezrou must succeed on a Constitution saving throw.
The hezrou makes three attacks: one with its bite and two with its claws.
Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage.
The Hezrou attacks with its Bite.
The Hezrou attacks with its Claws.
The marilith has advantage on saving throws against spells and other magical effects.
The marilith's weapon attacks are magical.
The marilith can take one reaction on every turn in combat.
The marilith can make seven attacks: six with its longswords and one with its tail.
Melee Weapon Attack:+9 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.
The Marilith attacks with its Longsword.
Melee Weapon Attack:+9 to hit,, 10 ft., one creature. Hit: 15 (2d10 + 4) bludgeoning damage.
If the target is Medium or smaller, it is grappled (escape DC 19). Until this grapple ends, the target is restrained, the marilith can automatically hit the target with its tail, and the marilith can't make tail attacks against other targets.
The Marilith attacks with its Tail. If the target is Medium or smaller, it is grappled. Until this grapple ends, the target is restrained, the marilith can automatically hit the target with its tail, and the marilith can't make tail attacks against other targets.
The marilith magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.
The marlith adds 5 to its AC against one melee Attack that would hit it. To do so, the marlith must see the attacker and be wielding a melee weapon.
The marlith adds 5 to its AC against one melee Attack that would hit it.
When a creature that can see the medusa's eyes starts its turn within 30 ft. of the medusa, the medusa can force it to make a DC 14 Constitution saving throw if the medusa isn't incapacitated and can see the creature. If the saving throw fails by 5 or more, the creature is instantly petrified. Otherwise, a creature that fails the save begins to turn to stone and is restrained. The restrained creature must repeat the saving throw at the end of its next turn, becoming petrified on a failure or ending the effect on a success. The petrification lasts until the creature is freed by the greater restoration spell or other magic.
Unless surprised, a creature can avert its eyes to avoid the saving throw at the start of its turn. If the creature does so, it can't see the medusa until the start of its next turn, when it can avert its eyes again. If the creature looks at the medusa in the meantime, it must immediately make the save. If the medusa sees itself reflected on a polished surface within 30 ft. of it and in an area of bright light, the medusa is, due to its curse, affected by its own gaze.
The medusa can force it to make a Constitution saving throw. The restrained creature must repeat the saving throw at the end of its next turn, becoming petrified on a failure or ending the effect on a success. The petrification lasts until the creature is freed by the greater restoration spell or other magic. Unless surprised, a creature can avert its eyes to avoid the saving throw at the start of its turn. If the creature does so, it can't see the medusa until the start of its next turn, when it can avert its eyes again. If the creature looks at the medusa in the meantime, it must immediately make the save. If the medusa sees itself reflected on a polished surface within 30 ft. of it and in an area of bright light, the medusa is, due to its curse, affected by its own gaze.
The medusa makes either three melee attacks - one with its snake hair and two with its shortsword - or two ranged attacks with its longbow.
Melee Weapon Attack:+5 to hit,, 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage plus 14 (4d6) poison damage.
The Medusa attacks with its Snake Hair.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.
The Medusa attacks with its Shortsword.
Ranged Weapon Attack: +5 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage plus 7 (2d6) poison damage.
The Medusa attacks with its Longbow.
The Young Silver Dragon attacks with its Bite.
**Cold Breath.** The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 17 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.
**Paralyzing Breath.** The dragon exhales paralyzing gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The Young Silver Dragon attacks with its Claw.
The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a Constitution saving throw.
The dragon exhales paralyzing gas in a 30-foot cone. Each creature in that area must make a Constitution saving throw.
The rug is incapacitated while in the area of an antimagic field.
If targeted by dispel magic, the rug must succeed on a Constitution saving throw against the caster's spell save DC or fall unconscious for 1 minute.
While it is grappling a creature, the rug takes only half the damage dealt to it, and the creature grappled by the rug takes the other half.
While the rug remains motionless, it is indistinguishable from a normal rug.
Melee Weapon Attack:+5 to hit,, 5 ft., one Medium or smaller creature. Hit:
The creature is grappled (escape DC 13). Until this grapple ends, the target is restrained, blinded, and at risk of suffocating, and the rug can't smother another target. In addition, at the start of each of the target's turns, the target takes 10 (2d6 + 3) bludgeoning damage.
The Rug of Smothering makes a smothering attack! The creature is grappled. Until this grapple ends, the target is restrained, blinded, and at risk of suffocating, and the rug can't smother another target.
Melee Weapon Attack:+3 to hit,, 5 ft., one creature. Hit: 4 (1d6 + 1) piercing damage.
The target must make a DC 11 Constitution saving throw, taking 7 (2d6) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but poisoned for 1 hour, even after regaining hit points, and is paralyzed while poisoned in this way.
The Giant Wolf Spider attacks with its Bite. The target must make a Constitution saving throw.
The pseudodragon has advantage on Wisdom (Perception) checks that rely on sight, hearing, or smell.
The pseudodragon has advantage on saving throws against spells and other magical effects.
The pseudodragon can magically communicate simple ideas, emotions, and images telepathically with any creature within 100 ft. of it that can understand a language.
The Pseudodragon attacks with its Bite.
The target must succeed on a DC 11 Constitution saving throw or become poisoned for 1 hour. If the saving throw fails by 5 or more, the target falls unconscious for the same duration, or until it takes damage or another creature uses an action to shake it awake.
The Pseudodragon attacks with its Sting. The target must make a Constitution saving throw.
The Vulture attacks with its Beak.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 1 slashing damage.
The Hawk attacks with its Talons.
The ooze can move through a space as narrow as 1 inch wide without squeezing.
Any nonmagical weapon made of metal that hits the ooze corrodes. After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls.
If its penalty drops to -5, the weapon is destroyed. Nonmagical ammunition made of metal that hits the ooze is destroyed after dealing damage. The ooze can eat through 2-inch-thick, nonmagical metal in 1 round.
The ooze corrodes metal.
While the ooze remains motionless, it is indistinguishable from an oily pool or wet rock.
Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage plus 7 (2d6) acid damage.
If the target is wearing nonmagical metal armor, its armor is partly corroded and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.
The Gray Ooze attacks with its Pseudopod. If the target is wearing nonmagical metal armor, its armor is partly corroded and takes a permanent and cumulative -1 penalty to the AC it offers.
The gladiator has advantage on saving throws against being Frightened.
A melee weapon deals one extra die of its damage when the gladiator hits with it (included in the attack).
The gladiator makes three melee attacks or two ranged attacks.
Melee or Ranged Weapon Attack: +7 to hit, reach 5 ft. and range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage, or 13 (2d8 + 4) piercing damage if used with two hands to make a melee attack.
The Gladiator attacks with their Spear.
Melee Weapon Attack:+7 to hit,, 5 ft., one creature. Hit: 9 (2d4 + 4) bludgeoning damage.
If the target is a Medium or smaller creature, it must succeed on a DC 15 Strength saving throw or be knocked prone.
The Gladiator attacks with their Shield Bash. If the target is a Medium or smaller creature, it must make a Strength saving throw or be knocked prone.
The gladiator adds 3 to its AC against one melee Attack that would hit it. To do so, the gladiator must see the attacker and be wielding a melee weapon.
The gladiator adds 3 to its AC against one melee Attack that would hit it.
The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny raven. The swarm can't regain hit points or gain temporary hit points.
Melee Weapon Attack:+4 to hit,, 5 ft., one target in the swarm's space. Hit: 7 (2d6) piercing damage, or 3 (1d6) piercing damage if the swarm has half of its hit points or fewer.
The Swarm of Ravens attacks with its Beaks.
The darkmantle can't use its blindsight while deafened.
While the darkmantle remains motionless, it is indistinguishable from a cave formation such as a stalactite or stalagmite.
Melee Weapon Attack:+5 to hit,, 5 ft., one creature. Hit: 6 (1d6 + 3) bludgeoning damage.
The darkmantle attaches to the target. If the target is Medium or smaller and the darkmantle has advantage on the attack roll, it attaches by engulfing the target's head, and the target is also blinded and unable to breathe while the darkmantle is attached in this way.
While attached to the target, the darkmantle can attack no other creature except the target but has advantage on its attack rolls. The darkmantle's speed also becomes 0, it can't benefit from any bonus to its speed, and it moves with the target.
A creature can detach the darkmantle by making a successful DC 13 Strength check as an action. On its turn, the darkmantle can detach itself from the target by using 5 feet of movement.
The darkmantle attacks with its Crush. The darkmantle attaches to the target. While attached to the target, the darkmantle can attack no other creature except the target but has advantage on its attack rolls. A creature can detach the darkmantle by making a successful Strength check as an action.
A 15-foot radius of magical darkness extends out from the darkmantle, moves with it, and spreads around corners. The darkness lasts as long as the darkmantle maintains concentration, up to 10 minutes (as if concentrating on a spell).
A 15-foot radius of magical darkness extends out from the darkmantle, moves with it, and spreads around corners. Darkvision can't penetrate this darkness, and no natural light can illuminate it.
Whenever the shambling mound is subjected to lightning damage, it takes no damage and regains a number of hit points equal to the lightning damage dealt.
The shambling mound makes two slam attacks. If both attacks hit a Medium or smaller target, the target is grappled escape DC 14, and the shambling mound uses its Engulf on it.
The shambling mound engulfs a Medium or smaller creature grappled by it. The engulfed target is blinded, restrained, and unable to breathe, and it must succeed on a DC 14 Constitution saving throw at the start of each of the mound's turns or take 13 (2d8 + 4) bludgeoning damage.
If the mound moves, the engulfed target moves with it. The mound can have only one creature engulfed at a time.
The shambling mound engulfs a Medium or smaller creature grappled by it. The engulfed target is blinded, restrained, and unable to breathe, and it must make a Constitution saving throw at the start of each of the mound's turns. If the mound moves, the engulfed target moves with it.
The Shambling Mound attacks with its Slam.
Melee Weapon Attack:+5 to hit,, 5 ft., one creature. Hit: 5 (1d4 + 3) piercing damage.
The stirge attaches to the target. While attached, the stirge doesn't attack. Instead, at the start of each of the stirge's turns, the target loses 5 (1d4 + 3) hit points due to blood loss.The stirge can detach itself by spending 5 feet of its movement. It does so after it drains 10 hit points of blood from the target or the target dies.
The Stirge attacks with its Blood Drain. A creature, including the target, can use its action to detach the stirge.
Melee Weapon Attack:+1 to hit,, 5 ft., one target. Hit: 1 (1d4 - 1) slashing damage.
The Awakened Shrub attacks with its Rake.
While the shrub remains motionless, it is indistinguishable from a normal shrub.
Melee Weapon Attack:+13 to hit,, 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.
The Adult Silver Dragon attacks with its Bite.
Melee Weapon Attack:+13 to hit,, 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.
The Adult Silver Dragon attacks with its Claw.
Melee Weapon Attack:+13 to hit,, 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.
The Adult Silver Dragon attacks with its Tail.
Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute.
**Cold Breath.** The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 20 Constitution saving throw, taking 58 (13d8) cold damage on a failed save, or half as much damage on a successful one.
**Paralyzing Breath.** The dragon exhales paralyzing gas in a 60-foot cone. Each creature in that area must succeed on a DC 20 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The dragon exhales paralyzing gas in a 60-foot cone. Each creature in that area must make a Constitution saving throw.
The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a DC 21 Dexterity saving throw or take 15 (2d6+8) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.
The dragon beats its wings! Each creature within 10 feet of the dragon must make a Dexterity saving throw.
The Ancient Silver Dragon attacks with its Bite.
The Ancient Silver Dragon attacks with its Claw.
The Ancient Silver Dragon attacks with its Tail.
**Cold Breath.** The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 24 Constitution saving throw, taking 67 (15d8) cold damage on a failed save, or half as much damage on a successful one.
**Paralyzing Breath.** The dragon exhales paralyzing gas in a 90- foot cone. Each creature in that area must succeed on a DC 24 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The dragon exhales paralyzing gas in a 90- foot cone. Each creature in that area must make a Constitution saving throw.
The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 25 Dexterity saving throw or take 17 (2d6+10) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.
The dragon beats its wings! Each creature within 15 feet of the dragon must make a Dexterity saving throw.
The griffon has advantage on Wisdom (Perception) checks that rely on sight.
The griffon makes two attacks: one with its beak and one with its claws.
The Griffon attacks with its Beak.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.
The Griffon attacks with its Claws.
Whenever the golem is subjected to fire damage, it takes no damage and instead regains a number of hit points equal to the fire damage dealt.
The golem makes two melee attacks.
Melee Weapon Attack:+13 to hit,, 5 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.
The Iron Golem attacks with its Slam.
Melee Weapon Attack:+13 to hit,, 10 ft., one target. Hit: 23 (3d10 + 7) slashing damage.
The Iron Golem attacks with its Sword.
The golem exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.
The golem exhales poisonous gas in a 15-foot cone. Each creature in that area must make a Constitution saving throw.
Melee Weapon Attack:+0 to hit,, 5 ft., one target. Hit: 1 slashing damage.
The Cat attacks with its Claws.
The cat has advantage on Wisdom (Perception) checks that rely on smell.
If the target is a creature, it must succeed on a DC 14 Strength saving throw or be knocked prone.
Melee Weapon Attack:+6 to hit,, 5 ft., one prone creature. Hit: 22 (4d8 + 4) bludgeoning damage.
The Giant Elk attacks with its Hooves.
The Giant Elk attacks with its Ram.
The Bronze Dragon Wyrmling attacks with its Bite.
**Lightning Breath.** The dragon exhales lightning in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 16 (3d10) lightning damage on a failed save, or half as much damage on a successful one.
**Repulsion Breath.** The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 12 Strength saving throw. On a failed save, the creature is pushed 30 feet away from the dragon.
The dragon exhales lightning in a 40-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.
Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 9 (1d8 + 5) piercing damage.
The Polar Bear attacks with its Bite.
Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.
The Polar Bear attacks with its Claws.
The lion has advantage on Wisdom (Perception) checks that rely on smell.
The lion has advantage on an attack roll against a creature if at least one of the lion's allies is within 5 ft. of the creature and the ally isn't incapacitated.
If the lion moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a DC 13 Strength saving throw or be knocked prone.
If the target is prone, the lion can make one bite attack against it as a bonus action.
If the lion moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must make a Strength saving throw.
With a 10-foot running start, the lion can long jump up to 25 ft.
The Lion attacks with its Bite.
The Lion attacks with its Claw.
If a creature starts its turn within 30 ft. of the basilisk and the two of them can see each other, the basilisk can force the creature to make a DC 12 Constitution saving throw if the basilisk isn't incapacitated. On a failed save, the creature magically begins to turn to stone and is restrained. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is petrified until freed by the greater restoration spell or other magic.
A creature that isn't surprised can avert its eyes to avoid the saving throw at the start of its turn. If it does so, it can't see the basilisk until the start of its next turn, when it can avert its eyes again. If it looks at the basilisk in the meantime, it must immediately make the save. If the basilisk sees its reflection within 30 ft. of it in bright light, it mistakes itself for a rival and targets itself with its gaze.
The basilisk can force the creature to make a Constitution saving throw. It must repeat the saving throw at the end of its next turn. A creature that isn't surprised can avert its eyes to avoid the saving throw at the start of its turn. If it does so, it can't see the basilisk until the start of its next turn, when it can avert its eyes again. If it looks at the basilisk in the meantime, it must immediately make the save.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage plus 7 (2d6) poison damage.
The Basilisk attacks with its Bite.
The mimic can use its action to polymorph into an object or back into its true, amorphous form. Its statistics are the same in each form.
The mimic can use its action to polymorph into an object or back into its true, amorphous form.
The mimic adheres to anything that touches it. A Huge or smaller creature adhered to the mimic is also grappled by it escape DC 13. Ability checks made to escape this grapple have disadvantage.
The mimic adheres to anything that touches it. A Huge or smaller creature adhered to the mimic is also grappled by it. Make an escape check, with disadvantage.
While the mimic remains motionless, it is indistinguishable from an ordinary object.
The mimic has advantage on attack rolls against any creature grappled by it.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage.
If the mimic is in object form, the target is subjected to its Adhesive trait.
The Mimic attacks with its Pseudopod.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) acid damage.
The Mimic attacks with its Bite.
The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being charmed or paralyzed.
While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.
For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage, or 11 (2d8 + 2) piercing damage while enlarged.
The Duergar attacks with its War Pick.
Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 9 (2d6 + 2) piercing damage while enlarged.
The Duergar attacks with its Javelin.
The duergar magically turns invisible until it attacks, casts a spell, or uses its Enlarge, or until its concentration is broken, up to 1 hour (as if concentrating on a spell).
The duergar magically turns invisible. Any equipment the duergar wears or carries is invisible with it.
The hound has advantage on Wisdom (Perception) checks that rely on hearing or smell.
The hound has advantage on an attack roll against a creature if at least one of the hound's allies is within 5 ft. of the creature and the ally isn't incapacitated.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 7 (2d6) fire damage.
The Hell Hound attacks with its Bite.
The hound exhales fire in a 15-foot cone. Each creature in that area must make a DC 12 Dexterity saving throw, taking 21 (6d6) fire damage on a failed save, or half as much damage on a successful one.
The hound exhales fire in a 15-foot cone. Each creature in that area must make a Dexterity saving throw.
The dragon turtle can breathe air and water.
The dragon turtle makes three attacks: one with its bite and two with its claws. It can make one tail attack in place of its two claw attacks.
Melee Weapon Attack:+13 to hit,, 15 ft., one target. Hit: 26 (3d12 + 7) piercing damage.
The Dragon Turtle attacks with its Bite.
Melee Weapon Attack:+13 to hit,, 10 ft., one target. Hit: 16 (2d8 + 7) slashing damage.
The Dragon Turtle attacks with its Claw.
Melee Weapon Attack:+13 to hit,, 15 ft., one target. Hit: 26 (3d12 + 7) bludgeoning damage.
If the target is a creature, it must succeed on a DC 20 Strength saving throw or be pushed up to 10 feet away from the dragon turtle and knocked prone.
The Dragon Turtle attacks with its Tail. If the target is a creature, it must make a Strength saving throw.
The dragon turtle exhales scalding steam in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 52 (15d6) fire damage on a failed save, or half as much damage on a successful one.
The dragon turtle exhales scalding steam in a 60-foot cone. Each creature in that area must make a Constitution saving throw.
Melee Weapon Attack:+11 to hit,, 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.
The Adult Copper Dragon attacks with its Bite.
The Adult Copper Dragon attacks with its Claw.
The Adult Copper Dragon attacks with its Tail.
**Acid Breath.** The dragon exhales acid in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.
**Slowing Breath.** The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.
The dragon exhales acid in an 60-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.
The dragon exhales gas in a 60-foot cone. Each creature in that area must make a Constitution saving throw.
If the elephant moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a DC 12 Strength saving throw or be knocked prone. If the target is prone, the elephant can make one stomp attack against it as a bonus action.
If the elephant moves at least 20 ft. straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a Strength saving throw.
Melee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 19 (3d8 + 6) piercing damage.
The Elephant attacks with its Gore.
Melee Weapon Attack:+8 to hit,, 5 ft., one prone creature. Hit: 22 (3d10 + 6) bludgeoning damage.
The Elephant attacks with its Stomp.
The dog has advantage on Wisdom (Perception) checks that rely on hearing or smell.
The Blink Dog attacks with its Bite.
The dog magically teleports, along with any equipment it is wearing or carrying, up to 40 ft. to an unoccupied space it can see. Before or after teleporting, the dog can make one bite attack.
The otyugh can magically transmit simple messages and images to any creature within 120 ft. of it that can understand a language. This form of telepathy doesn't allow the receiving creature to telepathically respond.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 12 (2d8 + 3) piercing damage.
If the target is a creature, it must succeed on a DC 15 Constitution saving throw against disease or become poisoned until the disease is cured. Every 24 hours that elapse, the target must repeat the saving throw, reducing its hit point maximum by 5 (1d10) on a failure. The disease is cured on a success. The target dies if the disease reduces its hit point maximum to 0. This reduction to the target's hit point maximum lasts until the disease is cured.
The Otyugh attacks with its Bite. If the target is a creature, it must make a Constitution saving throw. Every 24 hours that elapse, the target must repeat the saving throw.
Melee Weapon Attack:+6 to hit,, 10 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage plus 4 (1d8) piercing damage.
If the target is Medium or smaller, it is grappled (escape DC 13) and restrained until the grapple ends. The otyugh has two tentacles, each of which can grapple one target.
The Otyugh attacks with its Tentacle. If the target is Medium or smaller, it is grappled, and restrained until the grapple ends. The otyugh has two tentacles, each of which can grapple one target.
The otyugh slams creatures grappled by it into each other or a solid surface. Each creature must succeed on a DC 14 Constitution saving throw or take 10 (2d6 + 3) bludgeoning damage and be stunned until the end of the otyugh's next turn.
The otyugh slams creatures grappled by it into each other or a solid surface. Each creature must make a Constitution saving throw.
The otyugh makes three attacks: one with its bite and two with its tentacles.
The frog's long jump is up to 20 ft. and its high jump is up to 10 ft., with or without a running start.
The target is grappled (escape DC 11). Until this grapple ends, the target is restrained, and the frog can't bite another target.
The Giant Frog attacks with its Bite. If successful, the target is grappled. Until this grapple ends, the target is restrained, and the frog can't bite another target.
The frog makes one bite attack against a Small or smaller target it is grappling. If the attack hits, the target is swallowed, and the grapple ends.
The swallowed target is blinded and restrained, it has total cover against attacks and other effects outside the frog, and it takes 5 (2d4) acid damage at the start of each of the frog's turns. The frog can have only one target swallowed at a time. If the frog dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 5 ft. of movement, exiting prone.
The Giant Frog attacks with its Swallow.
The kraken can breathe air and water.
The kraken ignores difficult terrain, and magical effects can't reduce its speed or cause it to be restrained. It can spend 5 feet of movement to escape from nonmagical restraints or being grappled.
The kraken ignores difficult terrain, and magical effects can't reduce its speed or cause it to be restrained.
The kraken deals double damage to objects and structures.
The kraken makes three tentacle attacks, each of which it can replace with one use of Fling.
Melee Weapon Attack:+17 to hit,, 5 ft., one target. Hit: 23 (3d8 + 10) piercing damage.
If the target is a Large or smaller creature grappled by the kraken, that creature is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the kraken, and it takes 42 (12d6) acid damage at the start of each of the kraken's turns. If the kraken takes 50 damage or more on a single turn from a creature inside it, the kraken must succeed on a DC 25 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the kraken. If the kraken dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 15 feet of movement, exiting prone.
The Kraken attacks with its Bite. If the target is a Large or smaller creature grappled by the kraken, that creature is swallowed, and the grapple ends.
Melee Weapon Attack:+17 to hit,, 30 ft., one target. Hit: 20 (3d6 + 10) bludgeoning damage.
The target is grappled (escape DC 18). Until this grapple ends, the target is restrained. The kraken has ten tentacles, each of which can grapple one target.
The Kraken attacks with its Tentacle. The target is grappled. Until this grapple ends, the target is restrained. The kraken has ten tentacles, each of which can grapple one target.
One Large or smaller object held or creature grappled by the kraken is thrown up to 60 feet in a random direction and knocked prone.
One Large or smaller object held or creature grappled by the kraken is thrown up to 60 feet in a random direction and knocked prone. If the target is thrown at another creature, that creature must make a Dexterity saving throw or take the same damage and be knocked prone.
The kraken magically creates three bolts of lightning, each of which can strike a target the kraken can see within 120 feet of it.
The kraken magically creates three bolts of lightning, each of which can strike a target the kraken can see within 120 feet of it. A target must make a Dexterity saving throw.
The kraken can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The kraken regains spent legendary actions at the start of its turn.
The kraken can take 3 legendary actions.
The kraken makes one tentacle attack or uses its Fling.
The kraken uses Lightning Storm.
While Underwater, the Kraken expels an ink cloud in a 60-foot radius. The cloud spreads around corners, and that area is heavily obscured to creatures other than the Kraken. Each creature other than the Kraken that ends its turn there must succeed on a DC 23 Constitution saving throw, taking 16 (3d10) poison damage on a failed save, or half as much damage on a successful one. A strong current disperses the cloud, which otherwise disappears at the end of the kraken's next turn.
The Kraken expels an ink cloud. The cloud spreads around corners, and that area is heavily obscured to creatures other than the Kraken. Each creature other than the Kraken that ends its turn there must succeed on a Constitution saving throw.
Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) piercing damage.
The Chimera attacks with its Bite.
The Chimera attacks with its Claws.
The dragon head exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 31 (7d8) fire damage on a failed save, or half as much damage on a successful one.
The dragon head exhales fire in a 15-foot cone. Each creature in that area must make a Dexterity saving throw.
The chimera makes three attacks: one with its bite, one with its horns, and one with its claws. When its fire breath is available, it can use the breath in place of its bite or horns.
Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 10 (1d12 + 4) bludgeoning damage.
The Chimera attacks with its Horns.
At the start of its turn, the berserker can gain advantage on all melee weapon attack rolls during that turn, but attack rolls against it have advantage until the start of its next turn.
The Berserker attacks with their Greataxe.
The dretch makes two attacks: one with its bite and one with its claws.
The Dretch attacks with its Bite.
Melee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 5 (2d4) slashing damage.
The Dretch attacks with its Claws.
A 10-foot radius of disgusting green gas extends out from the dretch. The gas spreads around corners, and its area is lightly obscured. It lasts for 1 minute or until a strong wind disperses it.
A 10-foot radius of disgusting green gas extends out from the dretch. The gas spreads around corners, and its area is lightly obscured. Any creature that starts its turn in that area must make a Constitution saving throw.
The solar's weapon attacks are magical. When the solar hits with any weapon, the weapon deals an extra 6d8 radiant damage (included in the attack).
The solar's weapon attacks are magical. When the solar hits with any weapon, the weapon deals extra radiant damage (included in the attack).
The solar knows if it hears a lie.
The solar releases its greatsword to hover magically in an unoccupied space within 5 ft. of it. If the solar can see the sword, the solar can mentally command it as a bonus action to fly up to 50 ft. and either make one attack against a target or return to the solar's hands.
If the hovering sword is targeted by any effect, the solar is considered to be holding it. The hovering sword falls if the solar dies.
The solar releases its greatsword to hover magically in an unoccupied space within 5 ft. of it. If the hovering sword is targeted by any effect, the solar is considered to be holding it.
The solar touches another creature. The target magically regains 40 (8d8 + 4) hit points and is freed from any curse, disease, poison, blindness, or deafness.
The solar's spell casting ability is Charisma (spell save DC 25). It can innately cast the following spells, requiring no material components:
3/day each: blade barrier, dispel evil and good, resurrection
1/day each: commune, control weather
The solar has advantage on saving throws against spells and other magical effects.
The solar makes two greatsword attacks.
Melee Weapon Attack:+15 to hit,, 5 ft., one target. Hit: 22 (4d6 + 8) slashing damage plus 27 (6d8) radiant damage.
The Solar attacks with its Greatsword.
Ranged Weapon Attack: +13 to hit, range 150/600 ft., one target. Hit: 15 (2d8 + 6) piercing damage plus 27 (6d8) radiant damage.
If the target is a creature that has 190 hit points or fewer, it must succeed on a DC 15 Constitution saving throw or die.
The Solar attacks with its Slaying Longbow. If the target is a creature that has 190 hit points or fewer, it must make a Constitution saving throw.
The solar can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The solar regains spent legendary actions at the start of its turn.
The solar can take 3 legendary actions.
The solar magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.
The solar emits magical, divine energy. Each creature of its choice in a 10-foot radius must make a Dexterity saving throw.
The solar targets one creature it can see within 30 feet of it. If the target can see it, the target must make a Constitution saving throw.
The solar targets one creature it can see within 30 feet of it. If the target can see it, the target must succeed on a Constitution saving throw or be blinded.
You touch a dead creature that has been dead for no more than a century, that didn't die of old age, and that isn't undead. If its soul is free and willing, the target returns to life with all its hit points.
This spell neutralizes any poisons and cures normal diseases afflicting the creature when it died. It doesn't, however, remove magical diseases, curses, and the like; if such effects aren't removed prior to casting the spell, they afflict the target on its return to life.
This spell closes all mortal wounds and restores any missing body parts.
Casting this spell to restore life to a creature that has been dead for one year or longer taxes you greatly. Until you finish a long rest, you can't cast spells again, and you have disadvantage on all attack rolls, ability checks, and saving throws.
Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 4 (1d6 + 1) slashing damage.
The Boar attacks with its Tusk.
If the boar moves at least 20 ft. straight toward a target and then hits it with a tusk attack on the same turn, the target takes an extra 3 (1d6) slashing damage.
If the boar takes 7 damage or less that would reduce it to 0 hit points, it is reduced to 1 hit point instead. Recharges on a short or long rest.
As a bonus action, the spider can magically shift from the Material Plane to the Ethereal Plane, or vice versa.
The target must make a DC 11 Constitution saving throw, taking 18 (4d8) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but poisoned for 1 hour, even after regaining hit points, and is paralyzed while poisoned in this way.
The Phase Spider attacks with its Bite. The target must make a Constitution saving throw.
Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 3 (1d4 + 1) piercing damage.
The Sahuagin attacks with its Bite.
The sahuagin has advantage on melee attack rolls against any creature that doesn't have all its hit points.
Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 3 (1d4 + 1) slashing damage.
The Sahuagin attacks with its Claws.
The sahuagin can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating.
The sahuagin can breathe air and water.
The sahuagin makes two melee attacks: one with its bite and one with its claws or spear.
The sahuagin can magically command any shark within 120 feet of it, using a limited telepathy.
The deva's weapon attacks are magical. When the deva hits with any weapon, the weapon deals an extra 4d8 radiant damage (included in the attack).
The deva's weapon attacks are magical. When the deva hits with any weapon, the weapon deals extra radiant damage (included in the attack).
The deva magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the deva's choice).
In a new form, the deva retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and special senses are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks.
The deva touches another creature. The target magically regains 20 (4d8 + 2) hit points and is freed from any curse, disease, poison, blindness, or deafness.
The deva's spellcasting ability is Charisma (spell save DC 17). The deva can innately cast the following spells, requiring only verbal components:
At will: detect evil and good
1/day each: commune, raise dead
The deva has advantage on saving throws against spells and other magical effects.
The deva makes two melee attacks.
Melee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage plus 18 (4d8) radiant damage.
The Deva attacks with its Mace.
Melee Weapon Attack:+9 to hit,, 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage plus 5 (1d10) lightning damage.
The Young Blue Dragon attacks with its Bite.
Melee Weapon Attack:+9 to hit,, 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.
The Young Blue Dragon attacks with its Claw.
The dragon exhales lightning in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.
The mage is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save DC 14, +6 to hit with spell attacks). The mage has the following wizard spells prepared:
Cantrips (at will): fire bolt, light, mage hand, prestidigitation
1st level (4 slots): detect magic, mage armor, magic missile, shield
2nd level (3 slots): misty step, suggestion
3rd level (3 slots): counterspell, fireball, fly
4th level (3 slots): greater invisibility, ice storm
5th level (1 slot): cone of cold
The mage is a spellcaster. Its spellcasting ability is Intelligence.
Melee or Ranged Weapon Attack: +5 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 4 (1d4 + 2) piercing damage.
The Mage attacks with its Dagger.
A hail of rock-hard ice pounds to the ground in a 20-foot-radius, 40-foot-high Cylinder centered on a point within range. Each creature in the cylinder must make a Dexterity saving throw. A creature takes 2d8 bludgeoning damage and 4d6 cold damage on a failed save, or half as much damage on a successful one.
Hailstones turn the storm's area of effect into difficult terrain until the end of your next turn.
At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the bludgeoning damage increases by 1d8 for each slot level above 4th.
In the first round of a combat, the doppelganger has advantage on attack rolls against any creature it has surprised.
If the doppelganger surprises a creature and hits it with an attack during the first round of combat, the target takes an extra 10 (3d6) damage from the attack.
The doppelganger makes two melee attacks.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage.
The Doppelganger attacks with its Slam.
The doppelganger magically reads the surface thoughts of one creature within 60 ft. of it. The effect can penetrate barriers, but 3 ft. of wood or dirt, 2 ft. of stone, 2 inches of metal, or a thin sheet of lead blocks it.
While the target is in range, the doppelganger can continue reading its thoughts, as long as the doppelganger's concentration isn't broken (as if concentrating on a spell). While reading the target's mind, the doppelganger has advantage on Wisdom (Insight) and Charisma (Deception, Intimidation, and Persuasion) checks against the target.
The doppelganger magically reads the surface thoughts of one creature within 60 ft. of it.
The doppelganger can use its action to polymorph into a Small or Medium humanoid it has seen, or back into its true form.
The Bandit attacks with their Scimitar.
Ranged Weapon Attack: +3 to hit, range 80 ft./320 ft., one target. Hit: 5 (1d8 + 1) piercing damage.
The Bandit attacks with their Light Crossbow.
The sphinx is a 12th-level spellcaster. Its spellcasting ability is Wisdom (spell save DC 18, +10 to hit with spell attacks). It requires no material components to cast its spells. The sphinx has the following cleric spells prepared:
• Cantrips (at will): sacred flame, spare the dying, thaumaturgy• 1st level (4 slots): command, detect evil and good, detect magic• 2nd level (3 slots): lesser restoration, zone of truth• 3rd level (3 slots): dispel magic, tongues• 4th level (3 slots): banishment, freedom of movement• 5th level (2 slots): flame strike, greater restoration• 6th level (1 slot): heroes' feast
The sphinx is a spellcaster. Its spellcasting ability is Wisdom.
Melee Weapon Attack:+12 to hit,, 5 ft., one target. Hit: 17 (2d10 + 6) slashing damage.
The Androsphinx attacks with its Claw.
The sphinx emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different, as detailed below. Each creature within 500 feet of the sphinx and able to hear the roar must make a saving throw.
**First Roar.** Each creature that fails a DC 18 Wisdom saving throw is frightened for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.**Second Roar.** Each creature that fails a DC 18 Wisdom saving throw is deafened and frightened for 1 minute. A frightened creature is paralyzed and can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.**Third Roar.** Each creature makes a DC 18 Constitution saving throw. On a failed save, a creature takes 44 (8d10) thunder damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone.
The sphinx emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different. Each creature within 500 feet of the sphinx and able to hear the roar must make a saving throw.
The sphinx can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature’s turn. The sphinx regains spent legendary actions at the start of its turn.
You touch a living creature that has 0 hit points. The creature becomes stable. This spell has no effect on undead or constructs.
You create a magical zone that guards against deception in a 15-foot-radius sphere centered on a point of your choice within range. Until the spell ends, a creature that enters the spell's area for the first time on a turn or starts its turn there must make a Charisma saving throw. On a failed save, a creature can't speak a deliberate lie while in the radius. You know whether each creature succeeds or fails on its saving throw.
An affected creature is aware of the spell and can thus avoid answering questions to which it would normally respond with a lie. Such a creature can be evasive in its answers as long as it remains within the boundaries of the truth.
You bring forth a great feast, including magnificent food and drink. The feast takes 1 Hour to consume and disappears at the end of that time, and the beneficial Effects don't set in until this hour is over. Up to twelve creatures can partake of the feast.
A creature that partakes of the feast gains several benefits. The creature is cured of all Diseases and poison, becomes immune to poison and being Frightened, and makes all Wisdom Saving Throws with advantage. Its hit point maximum also increases by 2d10, and it gains the same number of Hit Points. These benefits last for 24 hours.
The warrior has advantage on an attack roll against a creature if at least one of the warrior's allies is within 5 ft. of the creature and the ally isn't incapacitated.
Melee or Ranged Weapon Attack: +3 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 4 (1d6 + 1) piercing damage, or 5 (1d8 + 1) piercing damage if used with two hands to make a melee attack.
The Tribal Warrior attacks with their Spear.
The Skeleton attacks with its Shortbow.
The Skeleton attacks with its Shortsword.
If the gorgon moves at least 20 feet straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a DC 16 Strength saving throw or be knocked prone. If the target is prone, the gorgon can make one attack with its hooves against it as a bonus action.
If the gorgon moves at least 20 feet straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on Strength saving throw.
Melee Weapon Attack:+8 to hit,, 5 ft., one target. Hit: 18 (2d12 + 5) piercing damage.
The Gorgon attacks with its Gore.
The Gorgon attacks with its Hooves.
The gorgon exhales petrifying gas in a 30-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw.
The gorgon exhales petrifying gas in a 30-foot cone. Each creature in that area must make a Constitution saving throw.
The Gold Dragon Wyrmling attacks with its Bite.
**Fire Breath.** The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 22 (4d10) fire damage on a failed save, or half as much damage on a successful one.
**Weakening Breath.** The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The dragon exhales fire in a 15-foot cone. Each creature in that area must make a Dexterity saving throw.
The dragon exhales gas in a 15-foot cone. Each creature in that area must make a Strength saving throw.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage plus 3 (1d6) lightning damage.
The Blue Dragon Wyrmling attacks with its Bite.
The dragon exhales lightning in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.
The dragon exhales lightning in a 30-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.
If the elemental takes cold damage, it partially freezes; its speed is reduced by 20 ft. until the end of its next turn.
If the elemental takes cold damage, it partially freezes.
The Water Elemental attacks with its Slam.
Each creature in the elemental's space must make a DC 15 Strength saving throw. On a failure, a target takes 13 (2d8 + 4) bludgeoning damage. If it is Large or smaller, it is also grappled (escape DC 14). Until this grapple ends, the target is restrained and unable to breathe unless it can breathe water.
If the saving throw is successful, the target is pushed out of the elemental's space.The elemental can grapple one Large creature or up to two Medium or smaller creatures at one time. At the start of each of the elemental's turns, each target grappled by it takes 13 (2d8 + 4) bludgeoning damage. A creature within 5 feet of the elemental can pull a creature or object out of it by taking an action to make a DC 14 Strength check and succeeding.
Each creature in the elemental's space must make a Strength saving throw. If it is Large or smaller, it is also grappled. Until this grapple ends, the target is restrained and unable to breathe unless it can breathe water. A creature within 5 feet of the elemental can pull a creature or object out of it by taking an action to make a Strength check and succeeding.
The quipper has advantage on melee attack rolls against any creature that doesn't have all its hit points.
The quipper can breathe only underwater.
The Quipper attacks with its Bite.
The stalker is given a quarry by its summoner. The stalker knows the direction and distance to its quarry as long as the two of them are on the same plane of existence. The stalker also knows the location of its summoner.
The stalker is invisible.
The stalker makes two slam attacks.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.
The Invisible Stalker attacks with its Slam.
The mephit can innately cast heat metal (spell save DC 10), requiring no material components. Its innate spellcasting ability is Charisma.
When the mephit dies, it explodes in a burst of lava. Each creature within 5 ft. of it must make a DC 11 Dexterity saving throw, taking 7 (2d6) fire damage on a failed save, or half as much damage on a successful one.
When the mephit dies, it explodes in a burst of lava. Each creature within 5 ft. of it must make a Dexterity saving throw.
While the mephit remains motionless, it is indistinguishable from an ordinary mound of magma.
Melee Weapon Attack: +3 to hit, reach 5 ft ., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) fire damage.
The Magma Mephit attacks with its Claws.
The mephit exhales a 15-foot cone of fire. Each creature in that area must make a DC 11 Dexterity saving throw, taking 7 (2d6) fire damage on a failed save, or half as much damage on a successful one.
The mephit exhales a 15-foot cone of fire. Each creature in that area must make a Dexterity saving throw.
Choose a manufactured metal object, such as a metal weapon or a suit of heavy or medium metal armor, that you can see within range. You cause the object to glow red-hot. Any creature in physical contact with the object takes 2d8 fire damage when you cast the spell. Until the spell ends, you can use a bonus action on each of your subsequent turns to cause this damage again.
If a creature is holding or wearing the object and takes the damage from it, the creature must succeed on a Constitution saving throw or drop the object if it can. If it doesn't drop the object, it has disadvantage on attack rolls and ability checks until the start of your next turn.
Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.
Melee Weapon Attack:+2 to hit,, 5 ft., one target. Hit: 1 piercing damage.
The Badger attacks with its Bite.
The werebear can use its action to polymorph into a Large bear-humanoid hybrid or into a Large bear, or back into its true form, which is humanoid.
Its statistics, other than its size and AC, are the same in each form. Any equipment it. is wearing or carrying isn't transformed. It reverts to its true form if it dies.
The werebear can use its action to polymorph, or return to its true form.
The werebear has advantage on Wisdom (Perception) checks that rely on smell.
In bear form, the werebear makes two claw attacks. In humanoid form, it makes two greataxe attacks. In hybrid form, it can attack like a bear or a humanoid.
If the target is a humanoid, it must succeed on a DC 14 Constitution saving throw or be cursed with were bear lycanthropy.
The Werebear attacks with its Bite. If the target is a humanoid, it must make a Constitution saving throw.
The Werebear attacks with its Claw.
Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 10 (1d12 + 4) slashing damage.
The Werebear attacks with its Greataxe.
Melee Weapon Attack: +6 to hit, 5 ft., one target. Hit: 9 (1d8 + 4) piercing damage.
The Brown Bear attacks with its Bite.
Melee Weapon Attack: +6 to hit, 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.
The Brown Bear attacks with its Claws.
Melee Weapon Attack:+13 to hit,, 10 ft., one target. Hit: 27 (4d8 + 9) piercing damage.
The Roc attacks with its Beak.
The roc has advantage on Wisdom (Perception) checks that rely on sight.
The roc makes two attacks: one with its beak and one with its talons.
Melee Weapon Attack:+13 to hit,, 5 ft., one target. Hit: 23 (4d6 + 9) slashing damage.
The target is grappled (escape DC 19). Until this grapple ends, the target is restrained, and the roc can't use its talons on another target.
The Roc attacks with its Talons. The target is grappled. Until this grapple ends, the target is restrained, and the roc can't use its talons on another target.
While out of water, the octopus can hold its breath for 1 hour.
A 20-foot-radius cloud of ink extends all around the octopus if it is underwater. The area is heavily obscured for 1 minute, although a significant current can disperse the ink. After releasing the ink, the octopus can use the Dash action as a bonus action. Recharges after a Short or Long Rest.
A 20-foot-radius cloud of ink extends all around the octopus if it is underwater.
Melee Weapon Attack:+5 to hit,, 15 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.
If the target is a creature, it is grappled (escape DC 16). Until this grapple ends, the target is restrained, and the octopus can't use its tentacles on another target.
The Giant Octopus attacks with its Tentacles. If the target is a creature, it is grappled. Until this grapple ends, the target is restrained, and the octopus can't use its tentacles on another target.
Melee Weapon Attack:+14 to hit,, 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.
The Ancient Brass Dragon attacks with its Bite.
The Ancient Brass Dragon attacks with its Claw.
The Ancient Brass Dragon attacks with its Tail.
The dragon uses one of the following breath weapons:
**Fire Breath.** The dragon exhales fire in an 90-foot line that is 10 feet wide. Each creature in that line must make a DC 21 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.
**Sleep Breath.** The dragon exhales sleep gas in a 90-foot cone. Each creature in that area must succeed on a DC 21 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.
The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 22 Dexterity saving throw or take 15 ( 2d6+8) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.
The Giant Lizard attacks with its Bite.
If the minotaur moves at least 10 ft. straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 9 (2d8) piercing damage.
If the target is a creature, it must succeed on a DC 14 Strength saving throw or be pushed up to 10 ft. away and knocked prone.
If the minotaur moves at least 10 ft. straight toward a target and then hits it with a gore attack on the same turn, the target takes extra piercing damage. If the target is a creature, it must make a Strength saving throw or be pushed up to 10 ft. away and knocked prone.
The minotaur can perfectly recall any path it has traveled.
At the start of its turn, the minotaur can gain advantage on all melee weapon attack rolls it makes during that turn, but attack rolls against it have advantage until the start of its next turn.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.
The Minotaur attacks with its Greataxe.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.
The Minotaur attacks with its Gore.
The rat has advantage on Wisdom (Perception) checks that rely on smell.
The Rat attacks with its Bite.
The rat has advantage on an attack roll against a creature if at least one of the rat's allies is within 5 ft. of the creature and the ally isn't incapacitated.
The Giant Rat attacks with its Bite.
Melee Weapon Attack:+ 15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) acid damage.
The Ancient Black Dragon attacks with its Bite.
Melee Weapon Attack:+15 to hit,, 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.
The Ancient Black Dragon attacks with its Claw.
Melee Weapon Attack: +15 to hit, reach 20 ft ., one target. Hit: 17 (2d8 + 8) bludgeoning damage.
The Ancient Black Dragon attacks with its Tail.
Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute.
The dragon exhales acid in a 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 67 (15d8) acid damage on a failed save, or half as much damage on a successful one.
Each creature in that line must make a DC 22 Dexterity saving throw, taking 67 (15d8) acid damage on a failed save, or half as much damage on a successful one.
The dragon exhales acid in a 90-foot line that is 10 feet wide. Each creature in that line must make a Dexterity saving throw.
The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a DC 23 Dexterity saving throw or take 15 ([[/r 2d6+8]]) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.
The Young Copper Dragon attacks with its Bite.
The Young Copper Dragon attacks with its Claw.
**Acid Breath.** The dragon exhales acid in an 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 40 (9d8) acid damage on a failed save, or half as much damage on a successful one.
**Slowing Breath.** The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.
The dragon exhales acid in an 40-foot line that is 5 feet wide. Each creature in that line must make a Dexterity saving throw.
The dragon exhales gas in a 30-foot cone. Each creature in that area make a Constitution saving throw.
The rakshasa can't be affected or detected by spells of 6th level or lower unless it wishes to be. It has advantage on saving throws against all other spells and magical effects.
The rakshasa's innate spellcasting ability is Charisma (spell save DC 18, +10 to hit with spell attacks). The rakshasa can innately cast the following spells, requiring no material components:
At will: detect thoughts, disguise self, mage hand, minor illusion
3/day each: charm person, detect magic, invisibility, major image, suggestion
1/day each: dominate person, fly, plane shift, true seeing
The rakshasa makes two claw attacks.
Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage, and the target is cursed if it is a creature.
The magical curse takes effect whenever the target takes a short or long rest, filling the target's thoughts with horrible images and dreams. The cursed target gains no benefit from finishing a short or long rest. The curse lasts until it is lifted by a remove curse spell or similar magic.
The Rakshasa attacks with its Claw.
While the roper remains motionless, it is indistinguishable from a normal cave formation, such as a stalagmite.
The roper can have up to six tendrils at a time. Each tendril can be attacked (AC 20; 10 hit points; immunity to poison and psychic damage).
Destroying a tendril deals no damage to the roper, which can extrude a replacement tendril on its next turn. A tendril can also be broken if a creature takes an action and succeeds on a DC 15 Strength check against it.
The roper can have up to six tendrils at a time. Each tendril can be attacked. A tendril can also be broken if a creature takes an action and succeeds on a Strength check against it.
The roper can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.
Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 22 (4d8 + 4) piercing damage.
The Roper attacks with its Bite.
Melee Weapon Attack:+7 to hit,, 50 ft., one target. Hit: The target is Grappled (escape DC 15). Until the grapple ends, the target is Restrained and has disadvantage on Strength Checks and Strength Saving Throws , and the roper can't use the same tendril on another target.
The Roper attacks with its Tendril. The target is grappled. Until the grapple ends, the target is restrained and has disadvantage on Strength Checks and Strength Saving Throws.
The roper pulls each creature grappled by it up to 25 ft. straight toward it.
The roper makes four attacks with its tendrils, uses Reel, and makes one attack with its bite.
Melee Weapon Attack:+0 to hit,, 5 ft., one creature. Hit: 1 piercing damage.
The Bat attacks with its Bite.
The cultist has advantage on saving throws against being charmed or frightened.
Melee Weapon Attack:+3 to hit,, 5 ft., one creature. Hit: 4 (1d6 + 1) slashing damage.
The Cultist attacks with their Scimitar.
The ghost can see 60 ft. into the Ethereal Plane when it is on the Material Plane, and vice versa.
The ghost can move through other creatures and objects as if they were difficult terrain.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 17 (4d6 + 3) necrotic damage.
The Ghost attacks with its Withering Touch.
The ghost enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane.
Each non-undead creature within 60 ft. of the ghost that can see it must succeed on a DC 13 Wisdom saving throw or be frightened for 1 minute. If the save fails by 5 or more, the target also ages 1d4 x 10 years.
A frightened target can repeat the saving throw at the end of each of its turns, ending the frightened condition on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this ghost's Horrifying Visage for the next 24 hours. The aging effect can be reversed with a greater restoration spell, but only within 24 hours of it occurring.
Each non-undead creature within 60 ft. of the ghost that can see it must succeed make a Wisdom saving throw. A target can repeat the saving throw at the end of each of its turns, ending the condition on itself on a success.
One humanoid that the ghost can see within 5 ft. of it must succeed on a DC 13 Charisma saving throw or be possessed by the ghost; the ghost then disappears, and the target is incapacitated and loses control of its body. The ghost now controls the body but doesn't deprive the target of awareness.
The ghost can't be targeted by any attack, spell, or other effect, except ones that turn undead, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being charmed and frightened. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.The possession lasts until the body drops to 0 hit points, the ghost ends it as a bonus action, or the ghost is turned or forced out by an effect like the dispel evil and good spell. When the possession ends, the ghost reappears in an unoccupied space within 5 ft. of the body. The target is immune to this ghost's Possession for 24 hours after succeeding on the saving throw or after the possession ends.
One humanoid that the ghost can see within 5 ft. of it must make a Charisma saving throw.
Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 3 (1d6) fire damage.
The Young Red Dragon attacks with its Bite.
The Young Red Dragon attacks with its Claw.
The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.
The nalfeshnee has advantage on saving throws against spells and other magical effects.
The nalfeshnee uses Horror Nimbus if it can. It then makes three attacks: one with its bite and two with its claws.
Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 32 (5d10 + 5) piercing damage.
The Nalfeshnee attacks with its Bite.
Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 15 (3d6 + 5) slashing damage.
The Nalfeshnee attacks with its Claw.
The nalfeshnee magically emits scintillating, multicolored light. Each creature within 15 feet of the nalfeshnee that can see the light must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute.
A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the nalfeshnee's Horror Nimbus for the next 24 hours.
The nalfeshnee magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.
The captain makes three melee attacks: two with its scimitar and one with its dagger. Or the captain makes two ranged attacks with its daggers.
The Bandit Captain attacks with their Scimitar.
Melee or Ranged Weapon Attack: +5 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 5 (1d4 + 3) piercing damage.
The Bandit Captain attacks with their Dagger.
The captain adds 2 to its AC against one melee attack that would hit it. To do so, the captain must see the attacker and be wielding a melee weapon.
While in sunlight, the wight has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight.
The wight makes two longsword attacks or two longbow attacks. It can use its Life Drain in place of one longsword attack.
The Wight attacks with its Longbow.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 6 (1d8 + 2) slashing damage, or 7 (1d10 + 2) slashing damage if used with two hands.
The Wight attacks with its Longsword.
Melee Weapon Attack:+4 to hit,, 5 ft., one creature. Hit: 5 (1d6 + 2) necrotic damage.
The target must succeed on a DC 13 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.
A humanoid slain by this attack rises 24 hours later as a zombie under the wight's control, unless the humanoid is restored to life or its body is destroyed. The wight can have no more than twelve zombies under its control at one time.
The Wight attacks with its Life Drain. The target must make a Constitution saving throw.
If the goat moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 5 (2d4) bludgeoning damage.
If the goat moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes a extra bludgeoning damage. If the target is a creature, it must make a Strength saving throw or be knocked prone.
The goat has advantage on Strength and Dexterity saving throws made against effects that would knock it prone.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 8 (2d4 + 3) bludgeoning damage.
The Giant Goat attacks with its Ram.
The Riding Horse attacks with its Hooves.
The elemental can burrow through nonmagical, unworked earth and stone. While doing so, the elemental doesn't disturb the material it moves through.
The elemental deals double damage to objects and structures.
Melee Weapon Attack:+8 to hit,, 10 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.
The Earth Elemental attacks with its Slam.
At the start of each of its turns, the barbed devil deals 5 (1d10) piercing damage to any creature grappling it.
The devil makes three melee attacks: one with its tail and two with its claws. Alternatively, it can use Hurl Flame twice.
Melee Weapon Attack: +6 to hit, reach 5 ft ., one target. Hit: 6 (1d6 + 3) piercing damage.
The Barbed Devil attacks with its Claw.
The Barbed Devil attacks with its Tail.
Ranged Spell Attack:+5 to hit,, 150 ft., one target. Hit: 10 (3d6) fire damage.
The Barbed Devil attacks with its Hurl Flame. If the target is a flammable object that isn't being worn or carried, it also catches fire.
The hag's innate spellcasting ability is Charisma (spell save DC 12). She can innately cast the following spells, requiring no material components:
At will: dancing lights, minor illusion, vicious mockery
The hag can mimic animal sounds and humanoid voices. A creature that hears the sounds can tell they are imitations with a successful DC 14 Wisdom (Insight) check.
The hag can mimic animal sounds and humanoid voices. A creature that hears the sounds can tell they are imitations with a successful Wisdom (Insight) check.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.
The Green Hag attacks with its Claws.
The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like another creature of her general size and humanoid shape. The illusion ends if the hag takes a bonus action to end it or if she dies.
The changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have smooth skin, but someone touching her would feel her rough flesh. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 20 Intelligence (Investigation) check to discern that the hag is disguised.
The hag magically turns invisible until she attacks or casts a spell, or until her concentration ends (as if concentrating on a spell). While invisible, she leaves no physical evidence of her passage, so she can be tracked only by magic. Any equipment she wears or carries is invisible with her.
The hag magically turns invisible. Any equipment she wears or carries is invisible with her.
You unleash a string of insults laced with subtle enchantments at a creature you can see within range. If the target can hear you (though it need not understand you), it must succeed on a Wisdom saving throw or take 1d4 psychic damage and have disadvantage on the next attack roll it makes before the end of its next turn.
This spell's damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).
The aboleth targets one creature it can see within 30 ft. of it. The target must succeed on a DC 14 Wisdom saving throw or be magically charmed by the aboleth until the aboleth dies or until it is on a different plane of existence from the target.
The charmed target is under the aboleth's control and can't take reactions, and the aboleth and the target can communicate telepathically with each other over any distance.Whenever the charmed target takes damage, the target can repeat the saving throw. On a success, the effect ends. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the aboleth.
The target must make a Wisdom saving throw. Whenever the target takes damage, the target can repeat the saving throw. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the aboleth.
The aboleth makes a Wisdom (Perception) check.
The aboleth makes one tail attack.
The aboleth swipes its tail against its prey!
One creature charmed by the aboleth takes 10 (3d6) psychic damage, and the aboleth regains hit points equal to the damage the creature takes.
While underwater, the aboleth is surrounded by transformative mucus. A creature that touches the aboleth or that hits it with a melee attack while within 5 ft. of it must make a DC 14 Constitution saving throw. On a failure, the creature is diseased for 1d4 hours. The diseased creature can breathe only underwater.
While underwater, the aboleth is surrounded by transformative mucus. A creature that touches the aboleth or that hits it with a melee attack while within 5 ft. of it must make a Constitution saving throw.
If a creature communicates telepathically with the aboleth, the aboleth learns the creature's greatest desires if the aboleth can see the creature.
Melee Weapon Attack:+9 to hit,, 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage.
If the target is a creature, it must succeed on a DC 14 Constitution saving throw or become diseased. The disease has no effect for 1 minute and can be removed by any magic that cures disease. After 1 minute, the diseased creature gains Tentacle Disease.
The Aboleth attacks with its Tentacle. If the target is a creature, it must make a Constitution saving throw.
Melee Weapon Attack: +9 to hit, reach 10 ft. one target. Hit: 15 (3d6 + 5) bludgeoning damage.
The Aboleth attacks with its Tail.
The aboleth can breathe air and water.
The aboleth makes three tentacle attacks.
The aboleth can take 3 legendary actions. Only one legendary action option can be used at a time and only at the end of another creature's turn. The aboleth regains spent legendary actions at the start of its turn.
The aboleth can take 3 legendary actions.
The Hunter Shark attacks with its Bite.
Melee Weapon Attack:+5 to hit,, 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage plus 10 (3d6) necrotic damage.
If the target is a creature, it must succeed on a DC 12 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.
The Mummy attacks with its Rotting Fist. If the target is a creature, it must make a Constitution saving throw.
The mummy targets one creature it can see within 60 ft. of it. If the target can see the mummy, it must succeed on a DC 11 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn.
The mummy targets one creature it can see within 60 ft. of it. If the target can see the mummy, it must make a Wisdom saving throw against this magic.
The grick has advantage on Dexterity (Stealth) checks made to hide in rocky terrain.
The grick makes one attack with its tentacles. If that attack hits, the grick can make one beak attack against the same target.
The Grick attacks with its Tentacles.
The Grick attacks with its Beak.
If the tiger moves at least 20 ft. straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a DC 14 Strength saving throw or be knocked prone.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 10 (1d10 + 5) piercing damage.
The Saber-Toothed Tiger attacks with its Bite.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.
The Saber-Toothed Tiger attacks with its Claw.
The fanatic has advantage on saving throws against being charmed or frightened.
The fanatic is a 4th-level spellcaster. Its spell casting ability is Wisdom (spell save DC 11, +3 to hit with spell attacks).
The fanatic has the following cleric spells prepared:
1st level (4 slots): command, inflict wounds, shield of faith
2nd level (3 slots): hold person, spiritual weapon
The fanatic is a spellcaster. Its spell casting ability is Wisdom.
The fanatic makes two melee attacks.
Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one creature. Hit: 4 (1d4 + 2) piercing damage.
The Cult Fanatic attacks with their Dagger.
Magical darkness doesn't impede the lemure's darkvision.
A lemure that dies in the Nine Hells sometimes comes back to comes back to life with all its hit points in 1d10 days unless it is killed by a good-aligned creature with a bless spell cast on that creature or its remains are sprinkled with holy water.
A lemure that dies in the Nine Hells sometimes comes back to life.
Melee Weapon Attack:+3 to hit,, 5 ft., one target. Hit: 2 (1d4) bludgeoning damage.
The Lemure attacks with its Fist.
Melee Weapon Attack:+15 to hit,, 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.
The Ancient Copper Dragon attacks with its Bite.
The Ancient Copper Dragon attacks with its Claw.
Melee Weapon Attack:+15 to hit,, 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.
The Ancient Copper Dragon attacks with its Tail.
**Acid Breath.** The dragon exhales acid in an 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 63 (14d8) acid damage on a failed save, or half as much damage on a successful one.
**Slowing Breath.** The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 22 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.
The dragon exhales acid in an 90-foot line that is 10 feet wide. Each creature in that line must make a Dexterity saving throw.
The dragon exhales gas in a 90-foot cone. Each creature in that area must make a Constitution saving throw.
Melee Weapon Attack:+7 to hit,, 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) cold damage.
The Young White Dragon attacks with its Bite.
The Young White Dragon attacks with its Claw.
The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 15 Constitution saving throw, taking 45 (10d8) cold damage on a failed save, or half as much damage on a successful one.
When the balor dies, it explodes, and each creature within 30 feet of it must make a DC 20 Dexterity saving throw, taking 70 (20d6) fire damage on a failed save, or half as much damage on a successful one.
The explosion ignites flammable objects in that area that aren't being worn or carried, and it destroys the balor's weapons.
When the balor dies, it explodes, and each creature within 30 feet of it must make a Dexterity saving throw. The explosion ignites flammable objects in that area that aren't being worn or carried, and it destroys the balor's weapons.
At the start of each of the balor's turns, each creature within 5 feet of it takes 10 (3d6) fire damage, and flammable objects in the aura that aren't being worn or carried ignite.
A creature that touches the balor or hits it with a melee attack while within 5 feet of it takes 10 (3d6) fire damage.
At the start of each of the balor's turns, each creature within 5 feet of it takes fire damage, and flammable objects in the aura that aren't being worn or carried ignite. A creature that touches the balor or hits it with a melee attack while within 5 feet of it takes fire damage.
The balor has advantage on saving throws against spells and other magical effects.
The balor's weapon attacks are magical.
The balor makes two attacks: one with its longsword and one with its whip.
The balor magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.
Melee Weapon Attack:+14 to hit,, 10 ft., one target. Hit: 21 (3d8 + 8) slashing damage plus 13 (3d8) lightning damage.
If the balor scores a critical hit, it rolls damage dice three times, instead of twice.
The Balor attacks with its Longsword.
Melee Weapon Attack:+14 to hit,, 30 ft., one target. Hit: 15 (2d6 + 8) slashing damage plus 10 (3d6) fire damage.
The target must succeed on a DC 20 Strength saving throw or be pulled up to 25 feet toward the balor.
The Balor attacks with its Whip. The target must make a Strength saving throw.
Melee Weapon Attack:+5 to hit,, 5 ft., one creature. Hit: 7 (1d8 + 3) piercing damage.
The target must make a DC 11 Constitution saving throw, taking 9 (2d8) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but poisoned for 1 hour, even after regaining hit points, and is paralyzed while poisoned in this way.
The Giant Spider attacks with its Bite. The target must make a Constitution saving throw.
Ranged Weapon Attack: +5 to hit, range 30/60 ft., one creature. Hit: The target is restrained by webbing.
As an action, the restrained target can make a DC 12 Strength check, bursting the webbing on a success. The webbing can also be attacked and destroyed (AC 10; hp 5; vulnerability to fire damage; immunity to bludgeoning, poison, and psychic damage).
The target is restrained by webbing. As an action, the restrained target can make a Strength check, bursting the webbing on a success.
Melee Weapon Attack:+17 to hit,, 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage plus 14 (4d6) fire damage.
The Ancient Red Dragon attacks with its Bite.
The Ancient Red Dragon attacks with its Claw.
The Ancient Red Dragon attacks with its Tail.
The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 91 (26d6) fire damage on a failed save, or half as much damage on a successful one.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) cold damage.
The White Dragon Wyrmling attacks with its Bite.
The dragon exhales an icy blast of hail in a 15-foot cone. Each creature in that area must make a DC 12 Constitution saving throw, taking 22 (5d8) cold damage on a failed save, or half as much damage on a successful one.
The dragon exhales an icy blast of hail in a 15-foot cone. Each creature in that area must make a Constitution saving throw.
The behir makes two attacks: one with its bite and one to constrict.
Melee Weapon Attack:+10 to hit,, 10 ft., one target. Hit: 22 (3d10 + 6) piercing damage.
The Behir attacks with its Bite.
Melee Weapon Attack: +10 to hit, reach 5 ft., one Large or smaller creature. Hit: 17 (2d10 + 6) bludgeoning damage plus 17 (2d10 + 6) slashing damage.
The target is grappled (escape DC 16) if the behir isn't already constricting a creature, and the target is restrained until this grapple ends.
The Behir attacks with its Constrict. The target is grappled if the Behir isn't already constricting a creature, and the target is restrained until this grapple ends.
The behir exhales a line of lightning that is 20 ft. long and 5 ft. wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.
The behir exhales a line of lightning that is 20 ft. long and 5 ft. wide. Each creature in that line must make a Dexterity saving throw.
The behir makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is also swallowed, and the grapple ends. While swallowed, the target is blinded and restrained, it has total cover against attacks and other effects outside the behir, and it takes 21 (6d6) acid damage at the start of each of the behir's turns. A behir can have only one creature swallowed at a time.
If the behir takes 30 damage or more on a single turn from the swallowed creature, the behir must succeed on a DC 14 Constitution saving throw at the end of that turn or regurgitate the creature, which falls prone in a space within 10 ft. of the behir. If the behir dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 15 ft. of movement, exiting prone.
The Behir attacks with its Swallow.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 9 (2d6 + 2) bludgeoning damage plus 3 (1d6) acid damage.
The Ochre Jelly attacks with its Pseudopod.
The jelly can move through a space as narrow as 1 inch wide without squeezing.
The jelly can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.
When a jelly that is Medium or larger is subjected to lightning or slashing damage, it splits into two new jellies if it has at least 10 Hit Points. Each new jelly has Hit Points equal to half the original jelly's, rounded down. New jellies are one size smaller than the original jelly.
The jelly splits into two new jellies. New jellies are one size smaller than the original jelly.
If the skeleton moves at least 10 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 9 (2d8) piercing damage.
If the target is a creature, it must succeed on a DC 14 Strength saving throw or be pushed up to 10 feet away and knocked prone.
If the skeleton moves at least 10 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes extra piercing damage. If the target is a creature, it must make a Strength saving throw or be pushed up to 10 feet away and knocked prone.
The Minotaur Skeleton attacks with its Greataxe.
The Minotaur Skeleton attacks with its Gore.
The hag's innate spellcasting ability is Charisma (spell save DC 14, +6 to hit with spell attacks). She can innately cast the following spells, requiring no material components:
At will: detect magic, magic missile
2/day each: plane shift (self only), ray of enfeeblement, sleep
The hag has advantage on saving throws against spells and other magical effects.
The Night Hag attacks with its Claws.
The hag magically polymorphs into a Small or Medium female humanoid, or back into her true form. Her statistics are the same in each form. Any equipment she is wearing or carrying isn't transformed. She reverts to her true form if she dies.
The hag magically enters the Ethereal Plane from the Material Plane, or vice versa. To do so, the hag must have a heartstone in her possession.
While on the Ethereal Plane, the hag magically touches a sleeping humanoid on the Material Plane. A protection from evil and good spell cast on the target prevents this contact, as does a magic circle.
While on the Ethereal Plane, the hag magically touches a sleeping humanoid on the Material Plane. As long as the contact persists, the target has dreadful visions.
A black beam of enervating energy springs from your finger toward a creature within range. Make a ranged spell attack against the target. On a hit, the target deals only half damage with weapon attacks that use Strength until the spell ends.
At the end of each of the target's turns, it can make a Constitution saving throw against the spell. On a success, the spell ends.
If the goat moves at least 20 ft. straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 2 (1d4) bludgeoning damage.
If the target is a creature, it must succeed on a DC 10 Strength saving throw or be knocked prone.
The Goat attacks with its Ram.
The wolf has advantage on Dexterity (Stealth) checks made to hide in snowy terrain.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) piercing damage. If the target is a creature, it must succeed on a DC 14 Strength saving throw or be knocked prone.
The Winter Wolf attacks with its Bite. If the target is a creature, it must make a Strength saving throw or be knocked prone.
The wolf exhales a blast of freezing wind in a 15-foot cone. Each creature in that area must make a DC 12 Dexterity saving throw, taking 18 (4d8) cold damage on a failed save, or half as much damage on a successful one. Recharge 5-6.
The wolf exhales a blast of freezing wind in a 15-foot cone. Each creature in that area must make a Dexterity saving throw.
A creature that touches the salamander or hits it with a melee attack while within 5 ft. of it takes 7 (2d6) fire damage.
A creature that touches the salamander or hits it with a melee attack while within 5 ft. of it takes fire damage.
Any metal melee weapon the salamander wields deals an extra 3 (1d6) fire damage on a hit (included in the attack).
Any metal melee weapon the salamander wields deals an extra fire damage on a hit (included in the attack).
The salamander makes two attacks: one with its spear and one with its tail.
Melee Weapon Attack:+7 to hit,, 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage plus 7 (2d6) fire damage.
The target is grappled (escape DC 14). Until this grapple ends, the target is restrained, the salamander can automatically hit the target with its tail, and the salamander can't make tail attacks against other targets.
The Salamander attacks with its Tail. The target is grappled. Until this grapple ends, the target is restrained, the salamander can automatically hit the target with its tail, and the salamander can't make tail attacks against other targets.
Melee or Ranged Weapon Attack: +7 to hit, reach 5 ft. or range 20 ft./60 ft., one target. Hit: 11 (2d6 + 4) piercing damage, or 13 (2d8 + 4) piercing damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.
The Salamander attacks with its Spear.
The Wolf attacks with its Bite. If the target is a creature, it must make a Strength saving throw or be knocked prone.
Melee Weapon Attack:+4 to hit,, 5 ft., one target. Hit: 3 (1d4 + 2) piercing damage.
If the target is a creature, it must succeed on a DC 10 Constitution saving throw or contract a disease. Until the disease is cured, the target can't regain hit points except by magical means, and the target's hit point maximum decreases by 3 (1d6) every 24 hours. If the target's hit point maximum drops to 0 as a result of this disease, the target dies.
The Giant Rat (Diseased) attacks with its Bite. If the target is a creature, it must make a Constitution saving throw.
Melee Weapon Attack:+10 to hit,, 5 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.
The Stone Golem attacks with its Slam.
The golem targets one or more creatures it can see within 10 ft. of it. Each target must make a DC 17 Wisdom saving throw against this magic.
The golem targets one or more creatures it can see within 10 ft. of it. Each target must make a Wisdom saving throw against this magic. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.
The shield guardian is magically bound to an amulet. As long as the guardian and its amulet are on the same plane of existence, the amulet's wearer can telepathically call the guardian to travel to it, and the guardian knows the distance and direction to the amulet.
If the guardian is within 60 feet of the amulet's wearer, half of any damage the wearer takes (rounded up) is transferred to the guardian.
The shield guardian is magically bound to an amulet.
The shield guardian regains 10 hit points at the start of its turn if it has at least 1 hit point.
The shield guardian regains 10 hit points at the start of its turn.
A spellcaster who wears the shield guardian's amulet can cause the guardian to store one spell of 4th level or lower. To do so, the wearer must cast the spell on the guardian. The spell has no effect but is stored within the guardian. When commanded to do so by the wearer or when a situation arises that was predefined by the spellcaster, the guardian casts the stored spell with any parameters set by the original caster, requiring no components. When the spell is cast or a new spell is stored, any previously stored spell is lost.
The guardian makes two fist attacks.
Melee Weapon Attack:+7 to hit,, 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.
The Shield Guardian attacks with its Fist.
When a creature makes an Attack against the wearer of the guardian's Amulet, the Guardian grants a +2 bonus to the wearer's AC if the Guardian is within 5 feet of the wearer.
The weretiger can use its action to polymorph into a tiger-humanoid hybrid or into a tiger, or back into its true form, which is humanoid.
The weretiger can use its action to polymorph, or return to its true form.
The weretiger has advantage on Wisdom (Perception) checks that rely on hearing or smell.
If the weretiger moves at least 15 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a DC 14 Strength saving throw or be knocked prone. If the target is prone, the weretiger can make one bite attack against it as a bonus action.
If the weretiger moves at least 15 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must make a Strength saving throw or be knocked prone.
In humanoid form, the weretiger makes two scimitar attacks or two longbow attacks. In hybrid form, it can attack like a humanoid or make two claw attacks.
If the target is a humanoid, it must succeed on a DC 13 Constitution saving throw or be cursed with weretiger lycanthropy.
The Weretiger attacks with its Bite. If the target is a humanoid, it must make a Constitution saving throw.
The Weretiger attacks with its Claw.
The Weretiger attacks with its Scimitar.
The Weretiger attacks with its Longbow.
The owlbear has advantage on Wisdom (Perception) checks that rely on sight or smell.
The owlbear makes two attacks: one with its beak and one with its claws.
Melee Weapon Attack:+7 to hit,, 5 ft., one creature. Hit: 10 (1d10 + 5) piercing damage.
The Owlbear attacks with its Beak.
The Owlbear attacks with its Claws.
Melee Weapon Attack:+6 to hit,, 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage plus 3 (1d6) fire damage.
The Red Dragon Wyrmling attacks with its Bite.
The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.
Melee Weapon Attack:+15 to hit,, 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 10 (3d6) poison damage.
The Ancient Green Dragon attacks with its Bite.
Melee Weapon Attack:+15 to hit,, 10 ft., one target. Hit: 22 (4d6 + 8) slashing damage.
The Ancient Green Dragon attacks with its Claw.
The Ancient Green Dragon attacks with its Tail.
The dragon exhales poisonous gas in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 77 (22d6) poison damage on a failed save, or half as much damage on a successful one.
The dragon exhales poisonous gas in a 90-foot cone. Each creature in that area must make a Constitution saving throw.
Melee Weapon Attack:+6 to hit,, 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 6 (1d6 + 3) piercing damage plus 7 (2d6) necrotic damage.
The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.
The Vampire Spawn attacks with its Bite.
Melee Weapon Attack:+6 to hit,, 5 ft., one creature. Hit: 8 (2d4 + 3) slashing damage.
The Vampire Spawn attacks with its Claws. Instead of dealing damage, the vampire can grapple the target.
The vampire regains 10 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or running water. If the vampire takes radiant damage or damage from holy water, this trait doesn't function at the start of the vampire's next turn.
The vampire regains 10 hit points at the start of its turn.
Harmed by Running Water. The vampire takes 20 acid damage when it ends its turn in running water.
Stake to the Heart. The vampire is destroyed if a piercing weapon made of wood is driven into its heart while it is incapacitated in its resting place.
Your half-elf character has some qualities in common with elves and some that are unique to half-elves.
Age. Half-elves mature at the same rate humans do and reach adulthood around the age of 20. They live much longer than humans, however, often exceeding 180 years.
Alignment. Half-elves share the chaotic bent of their elven heritage. They value both personal freedom and creative expression, demonstrating neither love of leaders nor desire for followers. They chafe at rules, resent others' demands, and sometimes prove unreliable, or at least unpredictable.
Size. Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.
Age. Young dragonborn grow quickly. They walk hours after hatching, attain the size and development of a 10-year-old human child by the age of 3, and reach adulthood by 15. They live to be around 80.
Edit the Details for this feat, so that the damage type, saving throw, and area of effect match those of your Draconic Ancestry.
Alignment. Gnomes are most often good. Those who tend toward law are sages, engineers, researchers, scholars, investigators, or inventors. Those who tend toward chaos are minstrels, tricksters, wanderers, or fanciful jewelers. Gnomes are good-‐‑hearted, and even the tricksters among them are more playful than vicious.
Your half-orc character has certain traits deriving from your orc ancestry.
Age. Half-orcs mature a little faster than humans, reaching adulthood around age 14. They age noticeably faster and rarely live longer than 75 years.
Size. Half-orcs are somewhat larger and bulkier than humans, and they range from 5 to well over 6 feet tall. Your size is Medium.
When you use your breath weapon, each creature in the area of the exhalation must make a dexterity saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 fire damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.
When you use your breath weapon, each creature in the area of the exhalation must make a dexterity saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 lightning damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.
When you use your breath weapon, each creature in the area of the exhalation must make a dexterity saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 acid damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.
When you use your breath weapon, each creature in the area of the exhalation must make a Dexterity saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 fire damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.
When you use your breath weapon, each creature in the area of the exhalation must make a Constitution saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 poison damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.
Magic permeates fantasy gaming worlds and often appears in the form of a spell.
This section provides the rules for casting spells. Different character classes have distinctive ways of learning and preparing their spells, and monsters use spells in unique ways. Regardless of its source, a spell follows the rules here.
A spell is a discrete magical effect, a single shaping of the magical energies that suffuse the multiverse into a specific, limited expression. In casting a spell, a character carefully plucks at the invisible strands of raw magic suffusing the world, pins them in place in a particular pattern, sets them vibrating in a specific way, and then releases them to unleash the desired effect—in most cases, all in the span of seconds.
Spells can be versatile tools, weapons, or protective wards. They can deal damage or undo it, impose or remove conditions (see @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0]{Appendix A: Conditions}), drain life energy away, and restore life to the dead.
Uncounted thousands of spells have been created over the course of the multiverse's history, and many of them are long forgotten. Some might yet lie recorded in crumbling spellbooks hidden in ancient ruins or trapped in the minds of dead gods. Or they might someday be reinvented by a character who has amassed enough power and wisdom to do so.
Every spell has a level from 0 to 9. A spell's level is a general indicator of how powerful it is, with the lowly (but still impressive) @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile} at 1st level and the earth-shaking @Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish} at 9th. Cantrips—simple but powerful spells that characters can cast almost by rote—are level 0. The higher a spell's level, the higher level a spellcaster must be to use that spell.
Spell level and character level don't correspond directly. Typically, a character has to be at least 17th level, not 9th level, to cast a 9th-level spell.
Before a spellcaster can use a spell, he or she must have the spell firmly fixed in mind, or must have access to the spell in a magic item. Members of a few classes, including bards and sorcerers, have a limited list of spells they know that are always fixed in mind. The same thing is true of many magic-using monsters. Other spellcasters, such as clerics and wizards, undergo a process of preparing spells. This process varies for different classes, as detailed in their descriptions.
In every case, the number of spells a caster can have fixed in mind at any given time depends on the character's level.
Regardless of how many spells a caster knows or prepares, he or she can cast only a limited number of spells before resting. Manipulating the fabric of magic and channeling its energy into even a simple spell is physically and mentally taxing, and higherlevel spells are even more so. Thus, each spellcasting class's description (except that of the warlock) includes a table showing how many spell slots of each spell level a character can use at each character level. For example, the 3rd-level wizard Umara has four 1st-level spell slots and two 2nd-level slots.
When a character casts a spell, he or she expends a slot of that spell's level or higher, effectively “filling” a slot with the spell. You can think of a spell slot as a groove of a certain size—small for a 1st-level slot, larger for a spell of higher level. A 1st-level spell fits into a slot of any size, but a 9th-level spell fits only in a 9th-level slot. So when Umara casts @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile}, a 1st-level spell, she spends one of her four 1st-level slots and has three remaining.
Finishing a long rest restores any expended spell slots.
Some characters and monsters have special abilities that let them cast spells without using spell slots. For example, a monk who follows the Way of the Four Elements, a warlock who chooses certain eldritch invocations, and a pit fiend from the Nine Hells can all cast spells in such a way.
When a spellcaster casts a spell using a slot that is of a higher level than the spell, the spell assumes the higher level for that casting. For instance, if Umara casts @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile} using one of her 2nd-level slots, that magic missile is 2nd level. Effectively, the spell expands to fill the slot it is put into.
Some spells, such as magic missile and @Compendium[dnd5e.spells.uUWb1wZgtMou0TVP]{Cure Wounds}, have more powerful effects when cast at a higher level, as detailed in a spell's description.
Because of the mental focus and precise gestures required for spellcasting, you must be proficient with the armor you are wearing to cast a spell. You are otherwise too distracted and physically hampered by your armor for spellcasting.
A cantrip is a spell that can be cast at will, without using a spell slot and without being prepared in advance. Repeated practice has fixed the spell in the caster's mind and infused the caster with the magic needed to produce the effect over and over. A cantrip's spell level is 0.
Certain spells have a special tag: ritual. Such a spell can be cast following the normal rules for spellcasting, or the spell can be cast as a ritual. The ritual version of a spell takes 10 minutes longer to cast than normal. It also doesn't expend a spell slot, which means the ritual version of a spell can't be cast at a higher level.
To cast a spell as a ritual, a spellcaster must have a feature that grants the ability to do so. The cleric and the druid, for example, have such a feature. The caster must also have the spell prepared or on his or her list of spells known, unless the character's ritual feature specifies otherwise, as the wizard's does.
When a character casts any spell, the same basic rules are followed, regardless of the character’s class or the spell’s effects.
Each spell description begins with a block of information, including the spell’s name, level, school of magic, casting time, range, components, and duration. The rest of a spell entry describes the spell’s effect.
Most spells require a single action to cast, but some spells require a bonus action, a reaction, or much more time to cast.
A spell cast with a bonus action is especially swift. You must use a bonus action on your turn to cast the spell, provided that you haven’t already taken a bonus action this turn. You can’t cast another spell during the same turn, except for a cantrip with a casting time of 1 action.
Some spells can be cast as reactions. These spells take a fraction of a second to bring about and are cast in response to some event. If a spell can be cast as a reaction, the spell description tells you exactly when you can do so.
Certain spells (including spells cast as rituals) require more time to cast: minutes or even hours. When you cast a spell with a casting time longer than a single action or reaction, you must spend your action each turn casting the spell, and you must maintain your concentration while you do so (see “Concentration” below). If your concentration is broken, the spell fails, but you don’t expend a spell slot. If you want to try casting the spell again, you must start over.
The target of a spell must be within the spell’s range. For a spell like @Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile}, the target is a creature. For a spell like @Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball}, the target is the point in space where the ball of fire erupts.
Most spells have ranges expressed in feet. Some spells can target only a creature (including you) that you touch. Other spells, such as the @Compendium[dnd5e.spells.z1mx84ONwkXKUZd7]{Shield} spell, affect only you. These spells have a range of self.
Spells that create cones or lines of effect that originate from you also have a range of self, indicating that the origin point of the spell’s effect must be you (see “Areas of Effect”).
Once a spell is cast, its effects aren’t limited by its range, unless the spell’s description says otherwise.
A spell’s components are the physical requirements you must meet in order to cast it. Each spell’s description indicates whether it requires verbal (V), somatic (S), or material (M) components. If you can’t provide one or more of a spell’s components, you are unable to cast the spell.
Most spells require the chanting of mystic words. The words themselves aren’t the source of the spell’s power; rather, the particular combination of sounds, with specific pitch and resonance, sets the threads of magic in motion. Thus, a character who is gagged or in an area of silence, such as one created by the silence spell, can’t cast a spell with a verbal component.
Spellcasting gestures might include a forceful gesticulation or an intricate set of gestures. If a spell requires a somatic component, the caster must have free use of at least one hand to perform these gestures.
Casting some spells requires particular objects, specified in parentheses in the component entry. A character can use a component pouch or a spellcasting focus (found in @UUID[Compendium.dnd5e.rules.BYFd9hiJGo9L5aOM]{Chapter 5: Equipment}) in place of the components specified for a spell. But if a cost is indicated for a component, a character must have that specific component before he or she can cast the spell.
If a spell states that a material component is consumed by the spell, the caster must provide this component for each casting of the spell.
A spellcaster must have a hand free to access a spell’s material components—or to hold a spellcasting focus—but it can be the same hand that he or she uses to perform somatic components.
A spell’s duration is the length of time the spell persists. A duration can be expressed in rounds, minutes, hours, or even years. Some spells specify that their effects last until the spells are dispelled or destroyed.
Many spells are instantaneous. The spell harms, heals, creates, or alters a creature or an object in a way that can’t be dispelled, because its magic exists only for an instant.
Some spells require you to maintain concentration in order to keep their magic active. If you lose concentration, such a spell ends.
If a spell must be maintained with concentration, that fact appears in its Duration entry, and the spell specifies how long you can concentrate on it. You can end concentration at any time (no action required).
Normal activity, such as moving and attacking, doesn’t interfere with concentration. The following factors can break concentration:
The GM might also decide that certain environmental phenomena, such as a wave crashing over you while you’re on a storm-tossed ship, require you to succeed on a DC 10 Constitution saving throw to maintain concentration on a spell.
A typical spell requires you to pick one or more targets to be affected by the spell’s magic. A spell’s description tells you whether the spell targets creatures, objects, or a point of origin for an area of effect (described below).
Unless a spell has a perceptible effect, a creature might not know it was targeted by a spell at all. An effect like crackling lightning is obvious, but a more subtle effect, such as an attempt to read a creature’s thoughts, typically goes unnoticed, unless a spell says otherwise.
To target something, you must have a clear path to it, so it can’t be behind total cover.
If you place an area of effect at a point that you can’t see and an obstruction, such as a wall, is between you and that point, the point of origin comes into being on the near side of that obstruction.
If a spell targets a creature of your choice, you can choose yourself, unless the creature must be hostile or specifically a creature other than you. If you are in the area of effect of a spell you cast, you can target yourself.
Spells such as @Compendium[dnd5e.spells.5SuJewoa1CRWaj1F]{Burning Hands} and @Compendium[dnd5e.spells.RpKjTlYASrfqUPVA]{Cone of Cold} cover an area, allowing them to affect multiple creatures at once.
A spell’s description specifies its area of effect, which typically has one of five different shapes: cone, cube, cylinder, line, or sphere. Every area of effect has a point of origin, a location from which the spell’s energy erupts. The rules for each shape specify how you position its point of origin. Typically, a point of origin is a point in space, but some spells have an area whose origin is a creature or an object.
A spell’s effect expands in straight lines from the point of origin. If no unblocked straight line extends from the point of origin to a location within the area of effect, that location isn’t included in the spell’s area. To block one of these imaginary lines, an obstruction must provide total cover.
A cone extends in a direction you choose from its point of origin. A cone’s width at a given point along its length is equal to that point’s distance from the point of origin. A cone’s area of effect specifies its maximum length.
A cone’s point of origin is not included in the cone’s area of effect, unless you decide otherwise.
You select a cube’s point of origin, which lies anywhere on a face of the cubic effect. The cube’s size is expressed as the length of each side.
A cube’s point of origin is not included in the cube’s area of effect, unless you decide otherwise.
A cylinder’s point of origin is the center of a circle of a particular radius, as given in the spell description. The circle must either be on the ground or at the height of the spell effect. The energy in a cylinder expands in straight lines from the point of origin to the perimeter of the circle, forming the base of the cylinder. The spell’s effect then shoots up from the base or down from the top, to a distance equal to the height of the cylinder.
A cylinder’s point of origin is included in the cylinder’s area of effect.
A line extends from its point of origin in a straight path up to its length and covers an area defined by its width.
A line’s point of origin is not included in the line’s area of effect, unless you decide otherwise.
You select a sphere’s point of origin, and the sphere extends outward from that point. The sphere’s size is expressed as a radius in feet that extends from the point.
A sphere’s point of origin is included in the sphere’s area of effect.
Many spells specify that a target can make a saving throw to avoid some or all of a spell’s effects. The spell specifies the ability that the target uses for the save and what happens on a success or failure.
The DC to resist one of your spells equals 8 + your spellcasting ability modifier + your proficiency bonus + any special modifiers.
Some spells require the caster to make an attack roll to determine whether the spell effect hits the intended target. Your attack bonus with a spell attack equals your spellcasting ability modifier + your proficiency bonus.
Most spells that require attack rolls involve ranged attacks. Remember that you have disadvantage on a ranged attack roll if you are within 5 feet of a hostile creature that can see you and that isn’t incapacitated.
The effects of different spells add together while the durations of those spells overlap. The effects of the same spell cast multiple times don’t combine, however. Instead, the most potent effect—such as the highest bonus—from those castings applies while their durations overlap.
For example, if two clerics cast bless on the same target, that character gains the spell’s benefit only once; he or she doesn’t get to roll two bonus dice.
Academies of magic group spells into eight categories called schools of magic. Scholars, particularly wizards, apply these categories to all spells, believing that all magic functions in essentially the same way, whether it derives from rigorous study or is bestowed by a deity.
The schools of magic help describe spells; they have no rules of their own, although some rules refer to the schools.
Abjuration spells are protective in nature, though some of them have aggressive uses. They create magical barriers, negate harmful effects, harm trespassers, or banish creatures to other planes of existence.
Conjuration spells involve the transportation of objects and creatures from one location to another. Some spells summon creatures or objects to the caster’s side, whereas others allow the caster to teleport to another location. Some conjurations create objects or effects out of nothing.
Divination spells reveal information, whether in the form of secrets long forgotten, glimpses of the future, the locations of hidden things, the truth behind illusions, or visions of distant people or places.
Enchantment spells affect the minds of others, influencing or controlling their behavior. Such spells can make enemies see the caster as a friend, force creatures to take a course of action, or even control another creature like a puppet.
Evocation spells manipulate magical energy to produce a desired effect. Some call up blasts of fire or lightning. Others channel positive energy to heal wounds.
Illusion spells deceive the senses or minds of others. They cause people to see things that are not there, to miss things that are there, to hear phantom noises, or to remember things that never happened. Some illusions create phantom images that any creature can see, but the most insidious illusions plant an image directly in the mind of a creature.
Necromancy spells manipulate the energies of life and death. Such spells can grant an extra reserve of life force, drain the life energy from another creature, create the undead, or even bring the dead back to life. Creating the undead through the use of necromancy spells such as animate dead is not a good act, and only evil casters use such spells frequently.
Transmutation spells change the properties of a creature, object, or environment. They might turn an enemy into a harmless creature, bolster the strength of an ally, make an object move at the caster’s command, or enhance a creature’s innate healing abilities to rapidly recover from injury.
@Compendium[dnd5e.spells.CAxSzHWizrafT033]{Dancing Lights}
@Compendium[dnd5e.spells.Bnn9Nzajixvow9xi]{Light}
@Compendium[dnd5e.spells.Utk1OQRwYkMkFRD3]{Mage Hand}
@Compendium[dnd5e.spells.kjmjY0zlE6IEiQVL]{Mending}
@Compendium[dnd5e.spells.icZokbgV1jIMpNCv]{Message}
@Compendium[dnd5e.spells.oIzA2MEHwxhtQneU]{Minor Illusion}
@Compendium[dnd5e.spells.udsLtG0BugXHR2JQ]{Prestidigitation}
@Compendium[dnd5e.spells.mGGlcLdggHwcL7MG]{True Strike}
@Compendium[dnd5e.spells.cdrYKaFi98YWaBMw]{Vicious Mockery}
@Compendium[dnd5e.spells.hDOENzjuj5WpLq7B]{Animal Friendship}
@Compendium[dnd5e.spells.95K2aUhAGV9qXjnf]{Bane}
@Compendium[dnd5e.spells.eS7XnnApoxRxYXPs]{Charm Person}
@Compendium[dnd5e.spells.4dSvfvTy2ZIJ3K4k]{Comprehend Languages}
@Compendium[dnd5e.spells.uUWb1wZgtMou0TVP]{Cure Wounds}
@Compendium[dnd5e.spells.ghXTfe7sgCbgf1Q8]{Detect Magic}
@Compendium[dnd5e.spells.A3q2gTNqG6fvNGrv]{Disguise Self}
@Compendium[dnd5e.spells.nqBDWkVOfcGZt4YU]{Faerie Fire}
@Compendium[dnd5e.spells.pub0OWVEB71XQx1n]{Feather Fall}
@Compendium[dnd5e.spells.o8Dh7fblk1d16tnO]{Healing Word}
@Compendium[dnd5e.spells.ge3Saet9zPTDyaoL]{Heroism}
@Compendium[dnd5e.spells.BQk5Row4NymMnUQl]{Hideous Laughter}
@Compendium[dnd5e.spells.3OZnNhunvRtPOQmH]{Identify}
@Compendium[dnd5e.spells.82jM6qD9axLJsTrH]{Illusory Script}
@Compendium[dnd5e.spells.B0pnIcc52O6G8hi8]{Longstrider}
@Compendium[dnd5e.spells.BrBZdCCrJRIVg7YX]{Silent Image}
@Compendium[dnd5e.spells.KhwiSi9fwVfUPtku]{Sleep}
@Compendium[dnd5e.spells.aL1F8fvYLtNzUbKu]{Speak with Animals}
@Compendium[dnd5e.spells.WTbOQBsarsL1LuXJ]{Thunderwave}
@Compendium[dnd5e.spells.ccduLIvutyNqvkgv]{Unseen Servant}
@Compendium[dnd5e.spells.X8w9EzYLGc4vQ1H2]{Animal Messenger}
@Compendium[dnd5e.spells.zwGsAv6kmwzYGhh3]{Blindness/Deafness}
@Compendium[dnd5e.spells.3MYDjS6k9IYL0aTj]{Calm Emotions}
@Compendium[dnd5e.spells.ppWAAEul0QHtm4er]{Detect Thoughts}
@Compendium[dnd5e.spells.9eOZDBImVKxbeOyZ]{Enhance Ability}
@Compendium[dnd5e.spells.30ZgXtijJVCxQk5N]{Enthrall}
@Compendium[dnd5e.spells.2yHXEcrRbadZDr5M]{Heat Metal}
@Compendium[dnd5e.spells.3Lo9boi7P2ro6QV4]{Hold Person}
@Compendium[dnd5e.spells.1N8dDMMgZ1h1YJ3B]{Invisibility}
@Compendium[dnd5e.spells.1nhIxh0DsJsntCfj]{Knock}
@Compendium[dnd5e.spells.F0GsG0SJzsIOacwV]{Lesser Restoration}
@Compendium[dnd5e.spells.Iv2qqSAT7OkXKPFx]{Locate Animals or Plants}
@Compendium[dnd5e.spells.SleYkHovQ8NagmeV]{Locate Object}
@Compendium[dnd5e.spells.7v06rdmUakoTk1LQ]{Magic Mouth}
@Compendium[dnd5e.spells.DQzlB5Y3k791W5bH]{See Invisibility}
@Compendium[dnd5e.spells.wJKpSvSTbSkTjqyb]{Shatter}
@Compendium[dnd5e.spells.5VhqFROQYjr1P9lp]{Silence}
@Compendium[dnd5e.spells.zMAWdyc8UVb37BK4]{Suggestion}
@Compendium[dnd5e.spells.CylBa7jR8DSbo8Z3]{Zone of Truth}
@Compendium[dnd5e.spells.pO4zGe5LmFIYqJiL]{Bestow Curse}
@Compendium[dnd5e.spells.cg50KpBkBdPK6vPL]{Clairvoyance}
@Compendium[dnd5e.spells.15Fa6q1nH27XfbR8]{Dispel Magic}
@Compendium[dnd5e.spells.XXUDGFELgoskdOD0]{Fear}
@Compendium[dnd5e.spells.pB7XVYwdGNcUG935]{Glyph of Warding}
@Compendium[dnd5e.spells.6g3WLOZ2u0EbaLAd]{Hypnotic Pattern}
@Compendium[dnd5e.spells.nslx2nT3p4lNkmdp]{Major Image}
@Compendium[dnd5e.spells.aU62xVUBYkAQWIHv]{Nondetection}
@Compendium[dnd5e.spells.YWtwzp6ZnQJMEmVW]{Plant Growth}
@Compendium[dnd5e.spells.GtGjNjPBgUHxGYAD]{Sending}
@Compendium[dnd5e.spells.I2LUSF5ogc7Bj62e]{Speak with Dead}
@Compendium[dnd5e.spells.2VXGS206tuChoeXy]{Speak with Plants}
@Compendium[dnd5e.spells.TwlD4PLcltv7Xh7j]{Stinking Cloud}
@Compendium[dnd5e.spells.NXWWWgHtWb7Nv21F]{Tiny Hut}
@Compendium[dnd5e.spells.gopnZvS0c2jD5FP8]{Tongues}
@Compendium[dnd5e.spells.P6f1PPKPd9BCb742]{Compulsion}
@Compendium[dnd5e.spells.9hQXdMSmerkTsHDe]{Confusion}
@Compendium[dnd5e.spells.A4RsPuSvB9wFtz1j]{Dimension Door}
@Compendium[dnd5e.spells.da0a1t2FqaTjRZGT]{Freedom of Movement}
@Compendium[dnd5e.spells.tEpDmYZNGc9f5OhJ]{Greater Invisibility}
@Compendium[dnd5e.spells.sTIkQK7KuQNOyY0C]{Hallucinatory Terrain}
@Compendium[dnd5e.spells.gXtzz9t1DTzJeLr4]{Locate Creature}
@Compendium[dnd5e.spells.04nMsTWkIFvkbXlY]{Polymorph}
@Compendium[dnd5e.spells.ATo0Eb63TDtnu6iA]{Animate Objects}
@Compendium[dnd5e.spells.MCEpGpvovcXagwQS]{Awaken}
@Compendium[dnd5e.spells.91Sw6vOIaO7U8DvM]{Dominate Person}
@Compendium[dnd5e.spells.kSPRpeIx3w3nihrF]{Dream}
@Compendium[dnd5e.spells.JQyigMNPiDnGI18b]{Geas}
@Compendium[dnd5e.spells.WzvJ7G3cqvIubsLk]{Greater Restoration}
@Compendium[dnd5e.spells.l9Ju5KE7bbn3WpTm]{Hold Monster}
@Compendium[dnd5e.spells.W4Qx5z0id6da0vqg]{Legend Lore}
@Compendium[dnd5e.spells.Pyzmm8R7rVsNAPsd]{Mass Cure Wounds}
@Compendium[dnd5e.spells.MBMaQLwoy05qzMJ3]{Mislead}
@Compendium[dnd5e.spells.r3243JU4AyQJyfX4]{Modify Memory}
@Compendium[dnd5e.spells.42O2aNBW7vK90gTL]{Planar Binding}
@Compendium[dnd5e.spells.AGFMPAmuzwWO6Dfz]{Raise Dead}
@Compendium[dnd5e.spells.fVbCxFRaORalHB20]{Scrying}
@Compendium[dnd5e.spells.mbFw57uyfLkyiw5k]{Seeming}
@Compendium[dnd5e.spells.8aWtP5hcrmcEesBW]{Teleportation Circle}
@Compendium[dnd5e.spells.ZRqu3Xh9FmlBCZGy]{Eyebite}
@Compendium[dnd5e.spells.cYI4RNNjI5GAmLhy]{Find the Path}
@Compendium[dnd5e.spells.yw0tYQkOMCgKZ8Ur]{Guards and Wards}
@Compendium[dnd5e.spells.TfRzwEgBHHkCc6Ql]{Irresistible Dance}
@Compendium[dnd5e.spells.5OGFdJw35QXp6mh6]{Mass Suggestion}
@Compendium[dnd5e.spells.bA2sk9eMKBeY7EPD]{Programmed Illusion}
@Compendium[dnd5e.spells.XzkJpE6XpZfKjODD]{True Seeing}
@Compendium[dnd5e.spells.LTDNWoFVJNLjiiNa]{Arcane Sword}
@Compendium[dnd5e.spells.PQuEgKyCdovOvhqN]{Etherealness}
@Compendium[dnd5e.spells.Y7uWUO4yqUN0JKl0]{Forcecage}
@Compendium[dnd5e.spells.pn4SnsFDvYDiE6rC]{Magnificent Mansion}
@Compendium[dnd5e.spells.f38w5rd9SgdmWc6F]{Mirage Arcane}
@Compendium[dnd5e.spells.ePhRKHXRE7l1sEoQ]{Project Image}
@Compendium[dnd5e.spells.9kGrFXnLiRg3Xnbo]{Regenerate}
@Compendium[dnd5e.spells.jhhT9PsHy5A7EojO]{Resurrection}
@Compendium[dnd5e.spells.B2kbmgbA2WQR00kx]{Symbol}
@Compendium[dnd5e.spells.L4J89JXqbKs6puEV]{Teleport}
@Compendium[dnd5e.spells.eEpy1ONlXumKS1mp]{Dominate Monster}
@Compendium[dnd5e.spells.hYCrN82dMJFuJODB]{Feeblemind}
@Compendium[dnd5e.spells.1RzxKZzkQOoioxPj]{Glibness}
@Compendium[dnd5e.spells.bllEWfm9xfEKynhv]{Mind Blank}
@Compendium[dnd5e.spells.35j2QIMmIk6aEdxj]{Power Word Stun}
@Compendium[dnd5e.spells.6HEEhLdJz32TL4Js]{Foresight}
@Compendium[dnd5e.spells.dmvaMLFWFtv0qx0S]{Power Word Kill}
@Compendium[dnd5e.spells.QbQZKoXOgHWN06aa]{True Polymorph}
@Compendium[dnd5e.spells.P7mF2MxSuVJwHRRY]{Guidance}
@Compendium[dnd5e.spells.dl8YwvMboBqX2OC4]{Resistance}
@Compendium[dnd5e.spells.n9pJzTDsAwQxJVRl]{Sacred Flame}
@Compendium[dnd5e.spells.8zT7njvqbpXs4Cel]{Spare the Dying}
@Compendium[dnd5e.spells.MUO1uYN7JR1hm4dR]{Thaumaturgy}
@Compendium[dnd5e.spells.8dzaICjGy6mTUaUr]{Bless}
@Compendium[dnd5e.spells.arzCrMRgcNiQuh43]{Command}
@Compendium[dnd5e.spells.a3XtAO5n2GrqiAh5]{Create or Destroy Water}
@Compendium[dnd5e.spells.Mzh95utKDPIrjiH8]{Detect Evil and Good}
@Compendium[dnd5e.spells.2skfDtglk1mGrb3l]{Detect Poison and Disease}
@Compendium[dnd5e.spells.7buEm5KhI5lP8m1z]{Guiding Bolt}
@Compendium[dnd5e.spells.ksaaTxIbKx2sJfia]{Inflict Wounds}
@Compendium[dnd5e.spells.xmDBqZhRVrtLP8h2]{Protection from Evil and Good}
@Compendium[dnd5e.spells.Kn7K5PtYUJAKZTTp]{Purify Food and Drink}
@Compendium[dnd5e.spells.gvdA9nPuWLck4tBl]{Sanctuary}
@Compendium[dnd5e.spells.jZ6JNykRtdQ90MOo]{Shield of Faith}
@Compendium[dnd5e.spells.Opwh2PdX4runSBlm]{Aid}
@Compendium[dnd5e.spells.4v2H3hHb3Ph9XLNd]{Augury}
@Compendium[dnd5e.spells.MK6gpQMeDFo0cP9f]{Continual Flame}
@Compendium[dnd5e.spells.KrM3oHVv13RAALrS]{Find Traps}
@Compendium[dnd5e.spells.n4JDcFKe5ikzYmAc]{Gentle Repose}
@Compendium[dnd5e.spells.MOEmz9N0j0QPkKEE]{Prayer of Healing}
@Compendium[dnd5e.spells.MAxM77CDUu8dgIRQ]{Protection from Poison}
@Compendium[dnd5e.spells.JbxsYXxSOTZbf9I0]{Spiritual Weapon}
@Compendium[dnd5e.spells.JVhKeanAXZH62DrF]{Warding Bond}
@Compendium[dnd5e.spells.oyE5nVppa5mde5gT]{Animate Dead}
@Compendium[dnd5e.spells.ZU9d6woBdUP8pIPt]{Beacon of Hope}
@Compendium[dnd5e.spells.BV0mpbHh29IbbIj5]{Create Food and Water}
@Compendium[dnd5e.spells.BP3GCwa66IAw1yTG]{Daylight}
@Compendium[dnd5e.spells.y8A4HfTwd93ypdEz]{Magic Circle}
@Compendium[dnd5e.spells.34ddoYIrnOZ2GFYi]{Mass Healing Word}
@Compendium[dnd5e.spells.64uo4fHriHLjRUrX]{Meld into Stone}
@Compendium[dnd5e.spells.j8NtLXOOJ3GAKF8I]{Protection from Energy}
@Compendium[dnd5e.spells.XZhdgVK3cLoxNCQl]{Remove Curse}
@Compendium[dnd5e.spells.LmRHHMtplpxr9fX6]{Revivify}
@Compendium[dnd5e.spells.uCud2s4TjMfjiXUb]{Spirit Guardians}
@Compendium[dnd5e.spells.YBda6nLKjxdT1LbS]{Water Walk}
@Compendium[dnd5e.spells.pxpb2eOB6bv4phAf]{Banishment}
@Compendium[dnd5e.spells.7fFHlBk3UNX8gPKL]{Control Water}
@Compendium[dnd5e.spells.VtCXMdyM6mAdIJZb]{Death Ward}
@Compendium[dnd5e.spells.XqzXSKNR75ZdYTA9]{Divination}
@Compendium[dnd5e.spells.TgHsuhNasPbhu8MO]{Guardian of Faith}
@Compendium[dnd5e.spells.QvGcdRUSNRKEQJlK]{Stone Shape}
@Compendium[dnd5e.spells.d54VDyFulD9xxY7J]{Commune}
@Compendium[dnd5e.spells.CjIq8Ed7bu3vVwT1]{Contagion}
@Compendium[dnd5e.spells.TkJ8Wtg1L7TZtspm]{Dispel Evil and Good}
@Compendium[dnd5e.spells.5e1xTohkzqFqbYH4]{Flame Strike}
@Compendium[dnd5e.spells.SLxA9QhrggTz0taU]{Hallow}
@Compendium[dnd5e.spells.OVikYmSdHliAG2YD]{Insect Plague}
@Compendium[dnd5e.spells.dLJhxDfeyOsc3zsY]{Blade Barrier}
@Compendium[dnd5e.spells.E4NXux0RHvME1XgP]{Create Undead}
@Compendium[dnd5e.spells.64D1gNZ4hx7SWG2x]{Forbiddance}
@Compendium[dnd5e.spells.tMH6Ivn4GmE1naMj]{Harm}
@Compendium[dnd5e.spells.qcYitWoSMTnKkzM1]{Heal}
@Compendium[dnd5e.spells.mgFqi0ev8f7Ut19y]{Heroes' Feast}
@Compendium[dnd5e.spells.fkREcytuZ8sngWtC]{Planar Ally}
@Compendium[dnd5e.spells.76C0FdcxlU8F9Rl2]{Word of Recall}
@Compendium[dnd5e.spells.XT7nzJmVGgv73uaf]{Conjure Celestial}
@Compendium[dnd5e.spells.T1vpZLam7LezjToj]{Divine Word}
@Compendium[dnd5e.spells.J3uILDYS7MiOfmTJ]{Fire Storm}
@Compendium[dnd5e.spells.J6Jpw5XzB5aTeqnz]{Plane Shift}
@Compendium[dnd5e.spells.Eon0jzGzQRNluTPQ]{Antimagic Field}
@Compendium[dnd5e.spells.ZPd73HtKF3At11jh]{Control Weather}
@Compendium[dnd5e.spells.x5JNBSyIBBZsjcGT]{Earthquake}
@Compendium[dnd5e.spells.j8S49Rea8b1640Zi]{Holy Aura}
@Compendium[dnd5e.spells.TIoadMIsUKD4edXi]{Astral Projection}
@Compendium[dnd5e.spells.XbwGq5kDJNvAxNXV]{Gate}
@Compendium[dnd5e.spells.Y6oItIuhOJZ0i0FC]{Mass Heal}
@Compendium[dnd5e.spells.qLeEXZDbW5y4bmLY]{True Resurrection}
@Compendium[dnd5e.spells.SbSvZKkJASyk8jKo]{Druidcraft}
@Compendium[dnd5e.spells.g2u9PYfqWQAyg9OI]{Poison Spray}
@Compendium[dnd5e.spells.eCPQuQkIabFKTl9u]{Produce Flame}
@Compendium[dnd5e.spells.VzgFzcmocr1X1cp4]{Shillelagh}
@Compendium[dnd5e.spells.gMrWeG8fMDPRFiVe]{Entangle}
@Compendium[dnd5e.spells.IBJmWjzbQGu7M4UX]{Fog Cloud}
@Compendium[dnd5e.spells.Qf6CAZkc7ms4ZY3e]{Goodberry}
@Compendium[dnd5e.spells.ZrTc23tToJ0JpH2h]{Jump}
@Compendium[dnd5e.spells.JPwIEfgUPVebr5AH]{Barkskin}
@Compendium[dnd5e.spells.hJ6ZiA3fpoY8v9cp]{Darkvision}
@Compendium[dnd5e.spells.Advtckpz1B733bu9]{Flame Blade}
@Compendium[dnd5e.spells.FjYE214HTERCRZNm]{Flaming Sphere}
@Compendium[dnd5e.spells.FSMy6VAjDnXY9vWz]{Gust of Wind}
@Compendium[dnd5e.spells.bV3yun6MIuFj71Er]{Moonbeam}
@Compendium[dnd5e.spells.pRMvmknwLf2tdMTj]{Pass without Trace}
@Compendium[dnd5e.spells.9gYGkrL6qFTsE6fw]{Spike Growth}
@Compendium[dnd5e.spells.ehvmg9U9fcMEhE4z]{Call Lightning}
@Compendium[dnd5e.spells.1Drt0SHxbEAHxprN]{Conjure Animals}
@Compendium[dnd5e.spells.dhqBY4TvVjxVmOZd]{Sleet Storm}
@Compendium[dnd5e.spells.13uVuBQP6VaiSPvC]{Water Breathing}
@Compendium[dnd5e.spells.ew6GA8dJy2spQmFW]{Wind Wall}
@Compendium[dnd5e.spells.pybg5MNc3lkerH4Y]{Blight}
@Compendium[dnd5e.spells.KgEw3sDr39C6g8nY]{Conjure Minor Elementals}
@Compendium[dnd5e.spells.dEfSELiY1eO3cpX9]{Conjure Woodland Beings}
@Compendium[dnd5e.spells.LrPvWHBPmiMQQsKB]{Dominate Beast}
@Compendium[dnd5e.spells.czXrVRx6XYRWsHAi]{Giant Insect}
@Compendium[dnd5e.spells.WN2LWEljYU6QqnRH]{Ice Storm}
@Compendium[dnd5e.spells.ReMbjfeOKoSj3O79]{Stoneskin}
@Compendium[dnd5e.spells.X3DrXgxjwI2dvkD6]{Wall of Fire}
@Compendium[dnd5e.spells.wXzkqpeFP8eWgJzK]{Antilife Shell}
@Compendium[dnd5e.spells.dp6xny4v8PDoIGjh]{Commune with Nature}
@Compendium[dnd5e.spells.1LkZvINag7KqBmDR]{Conjure Elemental}
@Compendium[dnd5e.spells.zMEo5DKK8uxsuWnq]{Reincarnate}
@Compendium[dnd5e.spells.DUBgwHPakcLDkB6W]{Tree Stride}
@Compendium[dnd5e.spells.NmoRmM1mhuM3pqnY]{Wall of Stone}
@Compendium[dnd5e.spells.yN3XZZujhR4aVvPa]{Conjure Fey}
@Compendium[dnd5e.spells.yI0XWIgI0IGGsR3R]{Move Earth}
@Compendium[dnd5e.spells.2RC0EyvBLPH88PZF]{Sunbeam}
@Compendium[dnd5e.spells.s7nXgot5gGZVcMrv]{Transport via Plants}
@Compendium[dnd5e.spells.AQsBc94ES7W7s7iG]{Wall of Thorns}
@Compendium[dnd5e.spells.8PJAsHmbu6UgDHC0]{Wind Walk}
@Compendium[dnd5e.spells.ERCv7yuRkQ0YjGx6]{Reverse Gravity}
@Compendium[dnd5e.spells.ohqAIBg6de989CIo]{Animal Shapes}
@Compendium[dnd5e.spells.GJ2WYm3SQFR0winH]{Antipathy/Sympathy}
@Compendium[dnd5e.spells.hzK7FQya0BDjSmLE]{Sunburst}
@Compendium[dnd5e.spells.N2UEFq8X5LRsLcOZ]{Shapechange}
@Compendium[dnd5e.spells.7KjExw0kmuqERa7C]{Storm of Vengeance}
@Compendium[dnd5e.spells.8MICCMeOXT3aJUy9]{Divine Favor}
@Compendium[dnd5e.spells.7UwUjJ6owIQkEPrs]{Branding Smite}
@Compendium[dnd5e.spells.5eh2HFbS13078Y3H]{Find Steed}
@Compendium[dnd5e.spells.Sgjrf8qqv97CCWM4]{Magic Weapon}
@Compendium[dnd5e.spells.7p9IuWrSWFgfyQo2]{Alarm}
@Compendium[dnd5e.spells.0xmXiPiuYws1OGcX]{Hunter's Mark}
@Compendium[dnd5e.spells.JLTQyqXEaJDrTXyW]{Acid Splash}
@Compendium[dnd5e.spells.vrN18tbTw7io5MWd]{Chill Touch}
@Compendium[dnd5e.spells.EOmsUcFQJTfG2oio]{Fire Bolt}
@Compendium[dnd5e.spells.ctW81uiX56xZR2c5]{Ray of Frost}
@Compendium[dnd5e.spells.XvbiNhNqXXIFisIy]{Shocking Grasp}
@Compendium[dnd5e.spells.5SuJewoa1CRWaj1F]{Burning Hands}
@Compendium[dnd5e.spells.LWTUqKkUQdMAmOe0]{Color Spray}
@Compendium[dnd5e.spells.zPGohqJRir6MyQ3U]{Expeditious Retreat}
@Compendium[dnd5e.spells.7e3QXF10hLNDEdr6]{False Life}
@Compendium[dnd5e.spells.CKZTpZlxj7hjjo2H]{Mage Armor}
@Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile}]
@Compendium[dnd5e.spells.z1mx84ONwkXKUZd7]{Shield}
@Compendium[dnd5e.spells.8RTDOt80u8aBv9qx]{Alter Self}
@Compendium[dnd5e.spells.UDUnlfPsOAbq2RSE]{Blur}
@Compendium[dnd5e.spells.S7VbUetIfVT7B6Eq]{Darkness}
@Compendium[dnd5e.spells.WahI41a3goVUg0x1]{Enlarge/Reduce}
@Compendium[dnd5e.spells.MRxldJd6C4bsBo3O]{Levitate}
@Compendium[dnd5e.spells.X4c8xCkmF8U9HUMz]{Mirror Image}
@Compendium[dnd5e.spells.wqfAVANuQonNBgnL]{Misty Step}
@Compendium[dnd5e.spells.7u2obDvuvtZBkTfq]{Scorching Ray}
@Compendium[dnd5e.spells.KJRVzeMQXPj8Gtyx]{Spider Climb}
@Compendium[dnd5e.spells.UJJu9c2UvCzVljiP]{Web}
@Compendium[dnd5e.spells.GSvLWcdCZLQkilXT]{Blink}
@Compendium[dnd5e.spells.Ek45cBpVXvJdv1Qy]{Counterspell}
@Compendium[dnd5e.spells.ztgcdrWPshKRpFd0]{Fireball}
@Compendium[dnd5e.spells.yfbK8gZqESlaoY5t]{Fly}
@Compendium[dnd5e.spells.2IWiZAJtOGDoKjiz]{Gaseous Form}
@Compendium[dnd5e.spells.Szvk5FEVQW3uhJi5]{Haste}
@Compendium[dnd5e.spells.IyikgTEOTv701jgQ]{Lightning Bolt}
@Compendium[dnd5e.spells.yqUDoxk4x0NWG5Bz]{Slow}
@Compendium[dnd5e.spells.LkvI11Uue774QBKZ]{Cloudkill}
@Compendium[dnd5e.spells.RpKjTlYASrfqUPVA]{Cone of Cold}
@Compendium[dnd5e.spells.lnaGnxMzpYnbw1uU]{Creation}
@Compendium[dnd5e.spells.HQfd7jJyULIoGxrZ]{Telekinesis}
@Compendium[dnd5e.spells.QbTxN5dWIbYZ4jLU]{Chain Lightning}
@Compendium[dnd5e.spells.KeunEkg1JYbOCOhV]{Circle of Death}
@Compendium[dnd5e.spells.HBHbOGKNVVprSlwn]{Disintegrate}
@Compendium[dnd5e.spells.WmQpxfjZwF3MGUby]{Globe of Invulnerability}
@Compendium[dnd5e.spells.AoTTjapz1FsGOIZz]{Delayed Blast Fireball}
@Compendium[dnd5e.spells.HPvZm8YJO91k6Qdg]{Finger of Death}
@Compendium[dnd5e.spells.eGMhwmuleAM46C6L]{Prismatic Spray}
@Compendium[dnd5e.spells.pV04y1iXoWiom6bp]{Incendiary Cloud}
@Compendium[dnd5e.spells.mF52ldF79Cr7wfQo]{Meteor Swarm}
@Compendium[dnd5e.spells.JYuRBwxpoFhXduvD]{Time Stop}
@Compendium[dnd5e.spells.3okM6Gn63zzEULkz]{Wish}
@Compendium[dnd5e.spells.Z9p1vezIn95jw1Yw]{Eldritch Blast}
@Compendium[dnd5e.spells.22dPoeXfaaAv4K3h]{Hellish Rebuke}
@Compendium[dnd5e.spells.ODhLKBxLnvvLOnw1]{Ray of Enfeeblement}
@Compendium[dnd5e.spells.UfHQhA54M4323gVO]{Vampiric Touch}
@Compendium[dnd5e.spells.dSTu1MaPhBqPITwM]{Contact Other Plane}
@Compendium[dnd5e.spells.kozNy29b0X6exFhY]{Flesh to Stone}
@Compendium[dnd5e.spells.xNM9CzQQr2CieM4B]{Demiplane}
@Compendium[dnd5e.spells.ZVnL9L8v1KC9TBF4]{Imprisonment}
@Compendium[dnd5e.spells.JGT5bNqu9REL7Fuz]{Find Familiar}
@Compendium[dnd5e.spells.bnjXlk13ZRJuf5d0]{Floating Disk}
@Compendium[dnd5e.spells.etgcR9wqmrhyZ0tx]{Grease}
@Compendium[dnd5e.spells.41JIhpDyM9Anm7cs]{Magic Missile}
@Compendium[dnd5e.spells.4H6YgYdKgnX6ZQ8M]{Acid Arrow}
@Compendium[dnd5e.spells.8cse7rit0oswRPUP]{Arcane Lock}
@Compendium[dnd5e.spells.RvEqsD89Zvd5yex4]{Arcanist's Magic Aura}
@Compendium[dnd5e.spells.ap4dmtshjEbwU3Ts]{Rope Trick}
@Compendium[dnd5e.spells.wpx42mtoZ5BmXRs1]{Phantom Steed}
@Compendium[dnd5e.spells.ImlCJQwR1VL40Qem]{Arcane Eye}
@Compendium[dnd5e.spells.DGONTFbk5eORs5qv]{Black Tentacles}
@Compendium[dnd5e.spells.7Fw7Bf1k3xxDVr5L]{Fabricate}
@Compendium[dnd5e.spells.SAj03P2WBDiWu7zu]{Faithful Hound}
@Compendium[dnd5e.spells.avD5XUtkBPQQR97c]{Fire Shield}
@Compendium[dnd5e.spells.BYNvBJzHcF5VJhXw]{Phantasmal Killer}
@Compendium[dnd5e.spells.NJgxf7pmSsBArIG7]{Private Sanctum}
@Compendium[dnd5e.spells.1ADstb0Xec6HHRcU]{Resilient Sphere}
@Compendium[dnd5e.spells.8sgwRh8NUNkn9Vi0]{Secret Chest}
@Compendium[dnd5e.spells.a2KJHCIbY5Mi4Dmn]{Arcane Hand}
@Compendium[dnd5e.spells.d9MwcXi7Il3HROXd]{Passwall}
@Compendium[dnd5e.spells.uAwtVZkiSTyP6ORB]{Telepathic Bond}
@Compendium[dnd5e.spells.o9ZCvuD2B1OTcubb]{Wall of Force}
@Compendium[dnd5e.spells.4smlOvpF5AQHcyg1]{Contingency}
@Compendium[dnd5e.spells.MImfWCzEPRMYD3Xp]{Freezing Sphere}
@Compendium[dnd5e.spells.SgrEKiC6dAtvy6Pz]{Instant Summons}
@Compendium[dnd5e.spells.ej6wyY4G1gOcb1U6]{Magic Jar}
@Compendium[dnd5e.spells.fzZnVKLmBMo2f5up]{Wall of Ice}
@Compendium[dnd5e.spells.wvLbtemkH8gyBpdc]{Sequester}
@Compendium[dnd5e.spells.jccbeBIfLrqEZnDP]{Simulacrum}
@Compendium[dnd5e.spells.h830iyqParFleNqR]{Clone}
@Compendium[dnd5e.spells.clwv2PWOcT822hlr]{Maze}
@Compendium[dnd5e.spells.jmfu8zj4zjjzUbeh]{Prismatic Wall}
@Compendium[dnd5e.spells.Wl2vtJ4hCt2tpWfR]{Weird}
In situations where keeping track of the passage of time is important, the GM determines the time a task requires. The GM might use a different time scale depending on the context of the situation at hand. In a dungeon environment, the adventurers' movement happens on a scale of minutes. It takes them about a minute to creep down a long hallway, another minute to check for traps on the door at the end of the hall, and a good ten minutes to search the chamber beyond for anything interesting or valuable.
In a city or wilderness, a scale of hours is often more appropriate. Adventurers eager to reach the lonely tower at the heart of the forest hurry across those fifteen miles in just under four hours' time.
For long journeys, a scale of days works best. Following the road from Baldur's Gate to Waterdeep, the adventurers spend four uneventful days before a goblin ambush interrupts their journey.
In combat and other fast-paced situations, the game relies on rounds, a 6-second span of time.
Swimming across a rushing river, sneaking down a dungeon corridor, scaling a treacherous mountain slope—all sorts of movement play a key role in fantasy gaming adventures.
The GM can summarize the adventurers’ movement without calculating exact distances or travel times: “You travel through the forest and find the dungeon entrance late in the evening of the third day.” Even in a dungeon, particularly a large dungeon or a cave network, the GM can summarize movement between encounters: “After killing the guardian at the entrance to the ancient dwarven stronghold, you consult your map, which leads you through miles of echoing corridors to a chasm bridged by a narrow stone arch.”
Sometimes it’s important, though, to know how long it takes to get from one spot to another, whether the answer is in days, hours, or minutes. The rules for determining travel time depend on two factors: the speed and travel pace of the creatures moving and the terrain they’re moving over.
Every character and monster has a speed, which is the distance in feet that the character or monster can walk in 1 round. This number assumes short bursts of energetic movement in the midst of a lifethreatening situation.
The following rules determine how far a character or monster can move in a minute, an hour, or a day.
While traveling, a group of adventurers can move at a normal, fast, or slow pace, as shown on the Travel Pace table. The table states how far the party can move in a period of time and whether the pace has any effect. A fast pace makes characters less perceptive, while a slow pace makes it possible to sneak around and to search an area more carefully.
Forced March. The Travel Pace table assumes that characters travel for 8 hours in day. They can push on beyond that limit, at the risk of exhaustion.
For each additional hour of travel beyond 8 hours, the characters cover the distance shown in the Hour column for their pace, and each character must make a Constitution saving throw at the end of the hour. The DC is 10 + 1 for each hour past 8 hours. On a failed saving throw, a character suffers one level of @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.cspWveykstnu3Zcv]{Exhaustion}.
Mounts and Vehicles. For short spans of time (up to an hour), many animals move much faster than humanoids. A mounted character can ride at a gallop for about an hour, covering twice the usual distance for a fast pace. If fresh mounts are available every 8 to 10 miles, characters can cover larger distances at this pace, but this is very rare except in densely populated areas.
Characters in wagons, carriages, or other land vehicles choose a pace as normal. Characters in a waterborne vessel are limited to the speed of the vessel, and they don’t suffer penalties for a fast pace or gain benefits from a slow pace. Depending on the vessel and the size of the crew, ships might be able to travel for up to 24 hours per day.
Certain special mounts, such as a pegasus or griffon, or special vehicles, such as a @Compendium[dnd5e.items.TjWk2mpNXjDdfIDM]{Carpet of Flying}, allow you to travel more swiftly.
The travel speeds given in the Travel Pace table assume relatively simple terrain: roads, open plains, or clear dungeon corridors. But adventurers often face dense forests, deep swamps, rubble-filled ruins, steep mountains, and ice-covered ground—all considered difficult terrain.
You move at half speed in difficult terrain— moving 1 foot in difficult terrain costs 2 feet of speed—so you can cover only half the normal distance in a minute, an hour, or a day.
Movement through dangerous dungeons or wilderness areas often involves more than simply walking. Adventurers might have to climb, crawl, swim, or jump to get where they need to go.
While climbing or swimming, each foot of movement costs 1 extra foot (2 extra feet in difficult terrain), unless a creature has a climbing or swimming speed. At the GM’s option, climbing a slippery vertical surface or one with few handholds requires a successful Strength (Athletics) check. Similarly, gaining any distance in rough water might require a successful Strength (Athletics) check.
Your Strength determines how far you can jump.
Long Jump. When you make a long jump, you cover a number of feet up to your Strength score if you move at least 10 feet on foot immediately before the jump. When you make a standing long jump, you can leap only half that distance. Either way, each foot you clear on the jump costs a foot of movement.
This rule assumes that the height of your jump doesn’t matter, such as a jump across a stream or chasm. At your GM’s option, you must succeed on a DC 10 Strength (Athletics) check to clear a low obstacle (no taller than a quarter of the jump’s distance), such as a hedge or low wall. Otherwise, you hit it.
When you land in difficult terrain, you must succeed on a DC 10 Dexterity (Acrobatics) check to land on your feet. Otherwise, you land prone.
High Jump. When you make a high jump, you leap into the air a number of feet equal to 3 + your Strength modifier if you move at least 10 feet on foot immediately before the jump. When you make a standing high jump, you can jump only half that distance. Either way, each foot you clear on the jump costs a foot of movement. In some circumstances, your GM might allow you to make a Strength (Athletics) check to jump higher than you normally can.
You can extend your arms half your height above yourself during the jump. Thus, you can reach above you a distance equal to the height of the jump plus 1½ times your height.
By its nature, adventuring involves delving into places that are dark, dangerous, and full of mysteries to be explored. The rules in this section cover some of the most important ways in which adventurers interact with the environment in such places.
A fall from a great height is one of the most common hazards facing an adventurer. At the end of a fall, a creature takes 1d6 bludgeoning damage for every 10 feet it fell, to a maximum of 20d6. The creature lands prone, unless it avoids taking damage from the fall.
A creature can hold its breath for a number of minutes equal to 1 + its Constitution modifier (minimum of 30 seconds).
When a creature runs out of breath or is choking, it can survive for a number of rounds equal to its Constitution modifier (minimum of 1 round). At the start of its next turn, it drops to 0 hit points and is dying, and it can't regain hit points or be stabilized until it can breathe again.
For example, a creature with a Constitution of 14 can hold its breath for 3 minutes. If it starts suffocating, it has 2 rounds to reach air before it drops to 0 hit points.
The most fundamental tasks of adventuring— noticing danger, finding hidden objects, hitting an enemy in combat, and targeting a spell, to name just a few—rely heavily on a character's ability to see. Darkness and other effects that obscure vision can prove a significant hindrance.
A given area might be lightly or heavily obscured. In a lightly obscured area, such as dim light, patchy fog, or moderate foliage, creatures have disadvantage on Wisdom (Perception) checks that rely on sight.
A heavily obscured area—such as darkness, opaque fog, or dense foliage—blocks vision entirely. A creature effectively suffers from the @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.0b8N4FymGGfbZGpJ]{Blinded} condition when trying to see something in that area.
The presence or absence of light in an environment creates three categories of illumination: bright light, dim light, and darkness.
Bright light lets most creatures see normally. Even gloomy days provide bright light, as do torches, lanterns, fires, and other sources of illumination within a specific radius.
Dim light, also called shadows, creates a lightly obscured area. An area of dim light is usually a boundary between a source of bright light, such as a torch, and surrounding darkness. The soft light of twilight and dawn also counts as dim light. A particularly brilliant full moon might bathe the land in dim light.
Darkness creates a heavily obscured area. Characters face darkness outdoors at night (even most moonlit nights), within the confines of an unlit dungeon or a subterranean vault, or in an area of magical darkness.
A creature with blindsight can perceive its surroundings without relying on sight, within a specific radius. Creatures without eyes, such as oozes, and creatures with echolocation or heightened senses, such as bats and true dragons, have this sense.
Many creatures in fantasy gaming worlds, especially those that dwell underground, have darkvision. Within a specified range, a creature with darkvision can see in darkness as if the darkness were dim light, so areas of darkness are only lightly obscured as far as that creature is concerned. However, the creature can't discern color in darkness, only shades of gray.
A creature with truesight can, out to a specific range, see in normal and magical darkness, see @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.3UU5GCTVeRDbZy9u]{Invisible} creatures and objects, automatically detect visual illusions and succeed on saving throws against them, and perceives the original form of a shapechanger or a creature that is transformed by magic. Furthermore, the creature can see into the Ethereal Plane.
Characters who don't eat or drink suffer the effects of @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.cspWveykstnu3Zcv]{Exhaustion}. Exhaustion caused by lack of food or water can't be removed until the character eats and drinks the full required amount.
A character needs one pound of food per day and can make food last longer by subsisting on half rations. Eating half a pound of food in a day counts as half a day without food.
A character can go without food for a number of days equal to 3 + his or her Constitution modifier (minimum 1). At the end of each day beyond that limit, a character automatically suffers one level of exhaustion.
A normal day of eating resets the count of days without food to zero.
A character needs one gallon of water per day, or two gallons per day if the weather is hot. A character who drinks only half that much water must succeed on a DC 15 Constitution saving throw or suffer one level of exhaustion at the end of the day. A character with access to even less water automatically suffers one level of exhaustion at the end of the day.
If the character already has one or more levels of exhaustion, the character takes two levels in either case.
A character's interaction with objects in an environment is often simple to resolve in the game. The player tells the GM that his or her character is doing something, such as moving a lever, and the GM describes what, if anything, happens.
For example, a character might decide to pull a lever, which might, in turn, raise a portcullis, cause a room to flood with water, or open a secret door in a nearby wall. If the lever is rusted in position, though, a character might need to force it. In such a situation, the GM might call for a Strength check to see whether the character can wrench the lever into place. The GM sets the DC for any such check based on the difficulty of the task.
Characters can also damage objects with their weapons and spells. Objects are immune to poison and psychic damage, but otherwise they can be affected by physical and magical attacks much like creatures can. The GM determines an object's Armor Class and hit points, and might decide that certain objects have resistance or immunity to certain kinds of attacks. (It's hard to cut a rope with a club, for example.) Objects always fail Strength and Dexterity saving throws, and they are immune to effects that require other saves. When an object drops to 0 hit points, it breaks.
A character can also attempt a Strength check to break an object. The GM sets the DC for any such check.
Heroic though they might be, adventurers can't spend every hour of the day in the thick of exploration, social interaction, and combat. They need rest—time to sleep and eat, tend their wounds, refresh their minds and spirits for spellcasting, and brace themselves for further adventure.
Adventurers can take short rests in the midst of an adventuring day and a long rest to end the day.
A short rest is a period of downtime, at least 1 hour long, during which a character does nothing more strenuous than eating, drinking, reading, and tending to wounds.
A character can spend one or more Hit Dice at the end of a short rest, up to the character's maximum number of Hit Dice, which is equal to the character's level. For each Hit Die spent in this way, the player rolls the die and adds the character's Constitution modifier to it. The character regains hit points equal to the total. The player can decide to spend an additional Hit Die after each roll. A character regains some spent Hit Dice upon finishing a long rest, as explained below.
A long rest is a period of extended downtime, at least 8 hours long, during which a character sleeps or performs light activity: reading, talking, eating, or standing watch for no more than 2 hours. If the rest is interrupted by a period of strenuous activity—at least 1 hour of walking, fighting, casting spells, or similar adventuring activity—the characters must begin the rest again to gain any benefit from it.
At the end of a long rest, a character regains all lost hit points. The character also regains spent Hit Dice, up to a number of dice equal to half of the character's total number of them (minimum of one die). For example, if a character has eight Hit Dice, he or she can regain four spent Hit Dice upon finishing a long rest.
A character can't benefit from more than one long rest in a 24-hour period, and a character must have at least 1 hit point at the start of the rest to gain its benefits.
Between trips to dungeons and battles against ancient evils, adventurers need time to rest, recuperate, and prepare for their next adventure. Many adventurers also use this time to perform other tasks, such as crafting arms and armor, performing research, or spending their hard-earned gold.
In some cases, the passage of time is something that occurs with little fanfare or description. When starting a new adventure, the GM might simply declare that a certain amount of time has passed and allow you to describe in general terms what your character has been doing. At other times, the GM might want to keep track of just how much time is passing as events beyond your perception stay in motion.
Between adventures, you choose a particular quality of life and pay the cost of maintaining that lifestyle.
Living a particular lifestyle doesn't have a huge effect on your character, but your lifestyle can affect the way other individuals and groups react to you. For example, when you lead an aristocratic lifestyle, it might be easier for you to influence the nobles of the city than if you live in poverty.
Between adventures, the GM might ask you what your character is doing during his or her downtime. Periods of downtime can vary in duration, but each downtime activity requires a certain number of days to complete before you gain any benefit, and at least 8 hours of each day must be spent on the downtime activity for the day to count. The days do not need to be consecutive. If you have more than the minimum amount of days to spend, you can keep doing the same thing for a longer period of time, or switch to a new downtime activity.
Downtime activities other than the ones presented below are possible. If you want your character to spend his or her downtime performing an activity not covered here, discuss it with your GM.
You can craft nonmagical objects, including adventuring equipment and works of art. You must be proficient with tools related to the object you are trying to create (typically artisan's tools). You might also need access to special materials or locations necessary to create it. For example, someone proficient with smith's tools needs a forge in order to craft a sword or suit of armor.
For every day of downtime you spend crafting, you can craft one or more items with a total market value not exceeding 5 gp, and you must expend raw materials worth half the total market value. If something you want to craft has a market value greater than 5 gp, you make progress every day in 5- gp increments until you reach the market value of the item. For example, a suit of plate armor (market value 1,500 gp) takes 300 days to craft by yourself.
Multiple characters can combine their efforts toward the crafting of a single item, provided that the characters all have proficiency with the requisite tools and are working together in the same place. Each character contributes 5 gp worth of effort for every day spent helping to craft the item. For example, three characters with the requisite tool proficiency and the proper facilities can craft a suit of plate armor in 100 days, at a total cost of 750 gp.
While crafting, you can maintain a modest lifestyle without having to pay 1 gp per day, or a comfortable lifestyle at half the normal cost.
You can work between adventures, allowing you to maintain a modest lifestyle without having to pay 1 gp per day. This benefit lasts as long you continue to practice your profession.
If you are a member of an organization that can provide gainful employment, such as a temple or a thieves' guild, you earn enough to support a comfortable lifestyle instead.
If you have proficiency in the Performance skill and put your performance skill to use during your downtime, you earn enough to support a wealthy lifestyle instead.
You can use downtime between adventures to recover from a debilitating injury, disease, or poison.
After three days of downtime spent recuperating, you can make a DC 15 Constitution saving throw. On a successful save, you can choose one of the following results:
The time between adventures is a great chance to perform research, gaining insight into mysteries that have unfurled over the course of the campaign. Research can include poring over dusty tomes and crumbling scrolls in a library or buying drinks for the locals to pry rumors and gossip from their lips.
When you begin your research, the GM determines whether the information is available, how many days of downtime it will take to find it, and whether there are any restrictions on your research (such as needing to seek out a specific individual, tome, or location). The GM might also require you to make one or more ability checks, such as an Intelligence (Investigation) check to find clues pointing toward the information you seek, or a Charisma (Persuasion) check to secure someone's aid. Once those conditions are met, you learn the information if it is available.
For each day of research, you must spend 1 gp to cover your expenses. This cost is in addition to your normal lifestyle expenses.
You can spend time between adventures learning a new language or training with a set of tools. Your GM might allow additional training options.
First, you must find an instructor willing to teach you. The GM determines how long it takes, and whether one or more ability checks are required.
The training lasts for 250 days and costs 1 gp per day. After you spend the requisite amount of time and money, you learn the new language or gain proficiency with the new tool.
A monster with blindsight can perceive its surroundings without relying on sight, within a specific radius.
Creatures without eyes, such as grimlocks and gray oozes, typically have this special sense, as do creatures with echolocation or heightened senses, such as bats and true dragons.
If a monster is naturally blind, it has a parenthetical note to this effect, indicating that the radius of its blindsight defines the maximum range of its perception.
A monster with darkvision can see in the dark within a specific radius. The monster can see in dim light within the radius as if it were bright light, and in darkness as if it were dim light. The monster can't discern color in darkness, only shades of gray. Many creatures that live underground have this special sense.
A monster with tremorsense can detect and pinpoint the origin of vibrations within a specific radius, provided that the monster and the source of the vibrations are in contact with the same ground or substance. Tremorsense can't be used to detect flying or incorporeal creatures. Many burrowing creatures, such as ankhegs and umber hulks, have this special sense.
A monster with truesight can, out to a specific range, see in normal and magical darkness, see invisible creatures and objects, automatically detect visual illusions and succeed on saving throws against them, and perceive the original form of a shapechanger or a creature that is transformed by magic. Furthermore, the monster can see into the Ethereal Plane within the same range.
A monster that has a burrowing speed can use that speed to move through sand, earth, mud, or ice. A monster can't burrow through solid rock unless it has a special trait that allows it to do so.
A monster that has a climbing speed can use all or part of its movement to move on vertical surfaces. The monster doesn't need to spend extra movement to climb.
A monster that has a flying speed can use all or part of its movement to fly. Some monsters have the ability to hover, which makes them hard to knock out of the air (as explained in the rules on flying in the Player's Handbook). Such a monster stops hovering when it dies.
A monster that has a swimming speed doesn't need to spend extra movement to swim.
Armor: NoneWeapons: Simple weapons, shortswordsTools: Choose one type of artisan’s tools or one musical instrumentSaving Throws: Strength, DexteritySkills: Choose two from Acrobatics, Athletics, History, Insight, Religion, and Stealth
Becoming a paladin involves taking vows that commit the paladin to the cause of righteousness, an active path of fighting wickedness. The final oath, taken when he or she reaches 3rd level, is the culmination of all the paladin’s training. Some characters with this class don’t consider themselves true paladins until they have reached 3rd level and made this oath. For others, the actual swearing of the oath is a formality, an official stamp on what has always been true in the paladin’s heart.
Armor: Light armorWeapons: Simple weapons, hand crossbows, longswords, rapiers, shortswordsTools: Thieves’ toolsSaving Throws: Dexterity, IntelligenceSkills: Choose four from Acrobatics, Athletics, Deception, Insight, Intimidation, Investigation, Perception, Performance, Persuasion, Sleight of Hand, and Stealth
Multiclassing allows you to gain levels in multiple classes. Doing so lets you mix the abilities of those classes to realize a character concept that might not be reflected in one of the standard class options.
With this rule, you have the option of gaining a level in a new class whenever you advance in level, instead of gaining a level in your current class. Your levels in all your classes are added together to determine your character level. For example, if you have three levels in wizard and two in fighter, you’re a 5th-level character.
As you advance in levels, you might primarily remain a member of your original class with just a few levels in another class, or you might change course entirely, never looking back at the class you left behind. You might even start progressing in a third or fourth class. Compared to a single-class character of the same level, you’ll sacrifice some focus in exchange for versatility.
To qualify for a new class, you must meet the ability score prerequisites for both your current class and your new one, as shown in the Multiclassing Prerequisites table. For example, a barbarian who decides to multiclass into the druid class must have both Strength and Wisdom scores of 13 or higher. Without the full training that a beginning character receives, you must be a quick study in your new class, having a natural aptitude that is reflected by higherthan-average ability scores.
The experience point cost to gain a level is always based on your total character level, as shown in the Character Advancement table, not your level in a particular class. So, if you are a cleric 6/fighter 1, you must gain enough XP to reach 8th level before you can take your second level as a fighter or your seventh level as a cleric.
You gain the hit points from your new class as described for levels after 1st. You gain the 1st-level hit points for a class only when you are a 1st-level character.
You add together the Hit Dice granted by all your classes to form your pool of Hit Dice. If the Hit Dice are the same die type, you can simply pool them together. For example, both the fighter and the paladin have a d10, so if you are a paladin 5/fighter 5, you have ten d10 Hit Dice. If your classes give you Hit Dice of different types, keep track of them separately. If you are a paladin 5/cleric 5, for example, you have five d10 Hit Dice and five d8 Hit Dice.
Your proficiency bonus is always based on your total character level, as shown in the @UUID[Compendium.dnd5e.rules.5LoAJLkfIYBAgWTW]{Character Advancement} table, not your level in a particular class. For example, if you are a fighter 3/rogue 2, you have the proficiency bonus of a 5th-level character, which is +3.
When you gain your first level in a class other than your initial class, you gain only some of new class’s starting proficiencies, as shown in the Multiclassing Proficiencies table.
When you gain a new level in a class, you get its features for that level. You don’t, however, receive the class’s starting equipment, and a few features have additional rules when you’re multiclassing: Channel Divinity, Extra Attack, Unarmored Defense, and Spellcasting.
If you already have the Channel Divinity (@Compendium[dnd5e.classfeatures.YpiLQEKGalROn7iJ]{Cleric} @Compendium[dnd5e.classfeatures.8M7uOPhbTxoxxJSo]{Paladin})feature and gain a level in a class that also grants the feature, you gain the Channel Divinity effects granted by that class, but getting the feature again doesn’t give you an additional use of it. You gain additional uses only when you reach a class level that explicitly grants them to you. For example, if you are a cleric 6/paladin 4, you can use Channel Divinity twice between rests because you are high enough level in the cleric class to have more uses. Whenever you use the feature, you can choose any of the Channel Divinity effects available to you from your two classes.
If you gain the @Compendium[dnd5e.classfeatures.XogoBnFWmCAHXppo]{Extra Attack} class feature from more than one class, the features don’t add together. You can’t make more than two attacks with this feature unless it says you do (as the fighter’s version of @Compendium[dnd5e.classfeatures.q9g1MLXuLZyxjQMg]{Extra Attack} does). Similarly, the warlock’s eldritch invocation @Compendium[dnd5e.classfeatures.pJADgAxxefgcATWr]{Thirsting Blade} doesn’t give you additional attacks if you also have Extra Attack.
If you already have the Unarmored Defense (@Compendium[dnd5e.classfeatures.SZbsNbaxFFGwBpNK]{Barbarian} @Compendium[dnd5e.classfeatures.UAvV7N7T4zJhxdfI]{Monk}) feature, you can’t gain it again from another class.
Your capacity for spellcasting depends partly on your combined levels in all your spellcasting classes and partly on your individual levels in those classes. Once you have the Spellcasting feature from more than one class, use the rules below. If you multiclass but have the Spellcasting feature from only one class, you follow the rules as described in that class.
Spells Known and Prepared. You determine what spells you know and can prepare for each class individually, as if you were a single-classed member of that class. If you are a ranger 4/wizard 3, for example, you know three 1st-level ranger spells based on your levels in the ranger class. As 3rd-level wizard, you know three wizard cantrips, and your spellbook contains ten wizard spells, two of which (the two you gained when you reached 3rd level as a wizard) can be 2nd-level spells. If your Intelligence is 16, you can prepare six wizard spells from your spellbook.
Each spell you know and prepare is associated with one of your classes, and you use the spellcasting ability of that class when you cast the spell. Similarly, a spellcasting focus, such as a holy symbol, can be used only for the spells from the class associated with that focus.
Spell Slots. You determine your available spell slots by adding together all your levels in the bard, cleric, druid, sorcerer, and wizard classes, and half your levels (rounded down) in the paladin and ranger classes. Use this total to determine your spell slots by consulting the Multiclass Spellcaster table.
If you have more than one spellcasting class, this table might give you spell slots of a level that is higher than the spells you know or can prepare. You can use those slots, but only to cast your lower-level spells. If a lower-level spell that you cast, like burning hands, has an enhanced effect when cast using a higher-level slot, you can use the enhanced effect, even though you don’t have any spells of that higher level.
For example, if you are the aforementioned ranger 4/wizard 3, you count as a 5th-level character when determining your spell slots: you have four 1st-level slots, three 2nd-level slots, and two 3rd-level slots. However, you don’t know any 3rd-level spells, nor do you know any 2nd-level ranger spells. You can use the spell slots of those levels to cast the spells you do know—and potentially enhance their effects.
Pact Magic. If you have both the Spellcasting class feature and the Pact Magic class feature from the warlock class, you can use the spell slots you gain from the Pact Magic feature to cast spells you know or have prepared from classes with the Spellcasting class feature, and you can use the spell slots you gain from the Spellcasting class feature to cast warlock spells you know.
A feat represents a talent or an area of expertise that gives a character special capabilities. It embodies training, experience, and abilities beyond what a class provides.
At certain levels, your class gives you the Ability Score Improvement feature. Using the optional feats rule, you can forgo taking that feature to take a feat of your choice instead. You can take each feat only once, unless the feat's description says otherwise.
You must meet any prerequisite specified in a feat to take that feat. If you ever lose a feat's prerequisite, you can't use that feat until you regain the prerequisite. For example, the Grappler feat requires you to have a Strength of 13 or higher. If your Strength is reduced below 13 somehow—perhaps by a withering curse—you can't benefit from the Grappler feat until your Strength is restored.
You've developed the skills necessary to hold your own in close-quarters grappling. You gain the following benefits:
A typical creature in the game world has an alignment, which broadly describes its moral and personal attitudes. Alignment is a combination of two factors: one identifies morality (good, evil, or neutral), and the other describes attitudes toward society and order (lawful, chaotic, or neutral). Thus, nine distinct alignments define the possible combinations.
These brief summaries of the nine alignments describe the typical behavior of a creature with that alignment. Individuals might vary significantly from that typical behavior, and few people are perfectly and consistently faithful to the precepts of their alignment.
Lawful good (LG) creatures can be counted on to do the right thing as expected by society. Gold dragons, paladins, and most dwarves are lawful good.
Neutral good (NG) folk do the best they can to help others according to their needs. Many celestials, some cloud giants, and most gnomes are neutral good.
Chaotic good (CG) creatures act as their conscience directs, with little regard for what others expect. Copper dragons, many elves, and unicorns are chaotic good.
Lawful neutral (LN) individuals act in accordance with law, tradition, or personal codes. Many monks and some wizards are lawful neutral.
Neutral (N) is the alignment of those who prefer to steer clear of moral questions and don't take sides, doing what seems best at the time. Lizardfolk, most druids, and many humans are neutral.
Chaotic neutral (CN) creatures follow their whims, holding their personal freedom above all else. Many barbarians and rogues, and some bards, are chaotic neutral.
Lawful evil (LE) creatures methodically take what they want, within the limits of a code of tradition, loyalty, or order. Devils, blue dragons, and hobgoblins are lawful evil.
Neutral evil (NE) is the alignment of those who do whatever they can get away with, without compassion or qualms. Many drow, some cloud giants, and goblins are neutral evil.
Chaotic evil (CE) creatures act with arbitrary violence, spurred by their greed, hatred, or bloodlust. Demons, red dragons, and orcs are chaotic evil.
For many thinking creatures, alignment is a moral choice. Humans, dwarves, elves, and other humanoid races can choose whether to follow the paths of good or evil, law or chaos. According to myth, the goodaligned gods who created these races gave them free will to choose their moral paths, knowing that good without free will is slavery.
The evil deities who created other races, though, made those races to serve them. Those races have strong inborn tendencies that match the nature of their gods. Most orcs share the violent, savage nature of the orc gods, and are thus inclined toward evil. Even if an orc chooses a good alignment, it struggles against its innate tendencies for its entire life. (Even half-orcs feel the lingering pull of the orc god's influence.)
Alignment is an essential part of the nature of celestials and fiends. A devil does not choose to be lawful evil, and it doesn't tend toward lawful evil, but rather it is lawful evil in its essence. If it somehow ceased to be lawful evil, it would cease to be a devil.
Most creatures that lack the capacity for rational thought do not have alignments—they are unaligned. Such a creature is incapable of making a moral or ethical choice and acts according to its bestial nature. Sharks are savage predators, for example, but they are not evil; they have no alignment.
Your race indicates the languages your character can speak by default, and your background might give you access to one or more additional languages of your choice. Note these languages on your character sheet.
Choose your languages from the Standard Languages table, or choose one that is common in your campaign. With your GM's permission, you can instead choose a language from the Exotic Languages table or a secret language, such as thieves' cant or the tongue of druids.
Some of these languages are actually families of languages with many dialects. For example, the Primordial language includes the Auran, Aquan, Ignan, and Terran dialects, one for each of the four elemental planes. Creatures that speak different dialects of the same language can communicate with one another.
Inspiration is a rule the game master can use to reward you for playing your character in a way that's true to his or her personality traits, ideal, bond, and flaw. By using inspiration, you can draw on your personality trait of compassion for the downtrodden to give you an edge in negotiating with the Beggar Prince. Or inspiration can let you call on your bond to the defense of your home village to push past the effect of a spell that has been laid on you.
Your GM can choose to give you inspiration for a variety of reasons. Typically, GMs award it when you play out your personality traits, give in to the drawbacks presented by a flaw or bond, and otherwise portray your character in a compelling way. Your GM will tell you how you can earn inspiration in the game.
You either have inspiration or you don't—you can't stockpile multiple “inspirations” for later use.
If you have inspiration, you can expend it when you make an attack roll, saving throw, or ability check. Spending your inspiration gives you advantage on that roll.
Additionally, if you have inspiration, you can reward another player for good roleplaying, clever thinking, or simply doing something exciting in the game. When another player character does something that really contributes to the story in a fun and interesting way, you can give up your inspiration to give that character inspiration.
Every story has a beginning. Your character’s background reveals where you came from, how you became an adventurer, and your place in the world. Your fighter might have been a courageous knight or a grizzled soldier. Your wizard could have been a sage or an artisan. Your rogue might have gotten by as a guild thief or commanded audiences as a jester.
Choosing a background provides you with important story cues about your character’s identity. The most important question to ask about your background is what changed? Why did you stop doing whatever your background describes and start adventuring? Where did you get the money to purchase your starting gear, or, if you come from a wealthy background, why don’t you have more money? How did you learn the skills of your class? What sets you apart from ordinary people who share your background?
The sample background presented here provides both concrete benefits (features, proficiencies, and languages) and roleplaying suggestions.
Each background gives a character proficiency in two skills (described in @UUID[Compendium.dnd5e.rules.0AGfrwZRzSG0vNKb]{Chapter 7: Using Ability Scores}).
In addition, most backgrounds give a character proficiency with one or more tools (detailed in @UUID[Compendium.dnd5e.rules.BYFd9hiJGo9L5aOM]{Chapter 5: Equipment}).
If a character would gain the same proficiency from two different sources, he or she can choose a different proficiency of the same kind (skill or tool) instead.
Some backgrounds also allow characters to learn additional languages beyond those given by race. See @UUID[.jcpZgjk77lUW7OkM]{Languages}.
Each background provides a package of starting equipment. If you use the optional rule to spend coin on gear, you do not receive the starting equipment from your background.
A background contains suggested personal characteristics based on your background. You can pick characteristics, roll dice to determine them randomly, or use the suggestions as inspiration for characteristics of your own creation.
You might want to tweak some of the features of a background so it better fits your character or the campaign setting. To customize a background, you can replace one feature with any other one, choose any two skills, and choose a total of two tool proficiencies or languages from the sample backgrounds. You can either use the equipment package from your background or spend coin on gear as described in the equipment section. (If you spend coin, you can’t also take the equipment package suggested for your class.) Finally, choose two personality traits, one ideal, one bond, and one flaw. If you can’t find a feature that matches your desired background, work with your GM to create one.
@Compendium[dnd5e.backgrounds.IgJkSnLiLJOWH7eK]{Acolyte}
The description of each race includes racial traits that are common to members of that race. The following entries appear among the traits of most races.
Every race increases one or more of a character’s ability scores.
The age entry notes the age when a member of the race is considered an adult, as well as the race’s expected lifespan. This information can help you decide how old your character is at the start of the game. You can choose any age for your character, which could provide an explanation for some of your ability scores. For example, if you play a young or very old character, your age could explain a particularly low Strength or Constitution score, while advanced age could account for a high Intelligence or Wisdom.
Most races have tendencies toward certain alignments, described in this entry. These are not binding for player characters, but considering why your dwarf is chaotic, for example, in defiance of lawful dwarf society can help you better define your character.
Characters of most races are Medium, a size category including creatures that are roughly 4 to 8 feet tall. Members of a few races are Small (between 2 and 4 feet tall), which means that certain rules of the game affect them differently. The most important of these rules is that Small characters have trouble wielding heavy weapons, as explained in @UUID[Compendium.dnd5e.rules.BYFd9hiJGo9L5aOM]{Chapter 5: Equipment}.
Your speed determines how far you can move when traveling (@UUID[Compendium.dnd5e.rules.aYmUMcQfSIqYWpKk]{Chapter 8: Adventuring}) and fighting (@UUID[Compendium.dnd5e.rules.6PfYpwxkdQkyS6b7]{Chapter 9: Combat}).
By virtue of your race, your character can speak, read, and write certain languages.
Some races have subraces. Members of a subrace have the traits of the parent race in addition to the traits specified for their subrace. Relationships among subraces vary significantly from race to race and world to world.
@Compendium[dnd5e.races.6N31WSez2szqQcIQ]{Dwarf}
@Compendium[dnd5e.races.UQiRQUTBcsz8gZU1]{Hill Dwarf}
@Compendium[dnd5e.races.rAGnsfgw3ZqAme1v]{Elf}
@Compendium[dnd5e.races.A69KxdH1renVPrQV]{High Elf}
@Compendium[dnd5e.races.GH2dNne2bt1NjcJk]{Halfling}
@Compendium[dnd5e.races.ZgYBjYYfiUstQD6f]{Lightfoot}
@Compendium[dnd5e.races.ydP3QzCmur55mtY2]{Human}
@Compendium[dnd5e.races.K4DNDcR6vngbp0pf]{Dragonborn}
@Compendium[dnd5e.races.kmRnMETG5hB9Bmwu]{Gnome}
@Compendium[dnd5e.races.TZtarkKs6cgGD7z2]{Rock Gnome}
@Compendium[dnd5e.races.Hye5IZwPOSwV0qRR]{Half-Elf}
@Compendium[dnd5e.races.n5L000DkNBU6h2oJ]{Half-Orc}
@Compendium[dnd5e.races.aHTokZ151W0ASSmo]{Tiefling}
This spell transforms a creature that you can see within range into a new form. An unwilling creature must make a Wisdom saving throw to avoid the effect. The spell has no effect on a Shapechanger or a creature with 0 Hit Points.
The transformation lasts for the Duration, or until the target drops to 0 Hit Points or dies. The new form can be any beast whose Challenge rating is equal to or less than the target's (or the target's level, if it doesn't have a challenge rating). The target's game statistics, including mental Ability Scores, are replaced by the Statistics of the chosen beast. It retains its Alignment and personality.
The target assumes the Hit Points of its new form. When it reverts to its normal form, the creature returns to the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked Unconscious.
The creature is limited in the Actions it can perform by the Nature of its new form, and it can't speak, cast Spells, or take any other action that requires hands or speech.
The target's gear melds into the new form. The creature can't activate, use, wield, or otherwise benefit from any of its Equipment.
You choose a creature you can see within range and mystically mark it as your quarry. Until the spell ends, you deal an extra {@dice 1d6} damage to the target whenever you hit it with a weapon attack, and you have advantage on any Wisdom (Perception) or Wisdom (Survival) check you make to find it. If the target drops to 0 hit points before this spell ends, you can use a bonus action on a subsequent turn of yours to mark a new creature.
A sphere of shimmering force encloses a creature or object of Large size or smaller within range. An unwilling creature must make a Dexterity saving throw. On a failed save, the creature is enclosed for the Duration.
Nothing—not physical Objects, energy, or other spell effects—can pass through the barrier, in or out, though a creature in the sphere can breathe there. The sphere is immune to all damage, and a creature or object inside can't be damaged by attacks or Effects originating from outside, nor can a creature inside the sphere damage anything outside it.
The sphere is weightless and just large enough to contain the creature or object inside. An enclosed creature can use its action to push against the sphere's walls and thus roll the sphere at up to half the creature's speed. Similarly, the globe can be picked up and moved by other creatures.
A Disintegrate spell targeting the globe destroys it without harming anything inside it.
You summon fey spirits that take the form of beasts and appear in unoccupied spaces that you can see within range. Choose one of the following options for what appears:
The summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which has its own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions.
Higher Levels. When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 5th-level slot, three times as many with a 7th-level.
Until the spell ends, when you make a Charisma check, you can replace the number you roll with a 15. Additionally, no matter what you say, magic that would determine if you are telling the truth indicates that you are being truthful.
Choose an object that you can see within range. The object can be a door, a box, a chest, a set of Manacles, a padlock, or another object that contains a mundane or magical means that prevents access.
A target that is held shut by a mundane lock or that is stuck or barred becomes unlocked, unstuck, or unbarred. If the object has multiple locks, only one of them is unlocked.
If you choose a target that is held shut with Arcane Lock, that spell is suppressed for 10 minutes, during which time the target can be opened and shut normally.
When you cast the spell, a loud knock, audible from as far away as 300 feet, emanates from the target object.
When you are damaged by a creature within 60 feet of you that you can see, you point your finger, and the creature that damaged you is momentarily surrounded by hellish flames. The creature must make a Dexterity saving throw. It takes 2d10 fire damage on a failed save, or half as much damage on a successful one.
A beam of brilliant light flashes out from your hand in a 5-foot-wide, 60-foot-long line. Each creature in the line must make a Constitution saving throw. On a failed save, a creature takes 6d8 radiant damage and is Blinded until your next turn. On a successful save, it takes half as much damage and isn't blinded by this spell. Undead and oozes have disadvantage on this saving throw.
You can create a new line of radiance as your action on any turn until the spell ends.
For the Duration, a mote of brilliant radiance shines in your hand. It sheds bright light in a 30-foot radius and dim light for an additional 30 feet. This light is sunlight.
You imbue Plants within 30 feet of you with limited sentience and animation, giving them the ability to communicate with you and follow your simple commands. You can question plants about events in the spell's area within the past day, gaining information about creatures that have passed, weather, and other circumstances.
You can also turn difficult terrain caused by Plant Growth (such as thickets and undergrowth) into ordinary terrain that lasts for the Duration. Or you can turn ordinary terrain where Plants are present into difficult terrain that lasts for the duration, causing vines and branches to hinder pursuers, for example.
Plants might be able to perform other tasks on your behalf, at the DM's discretion. The spell doesn't enable Plants to uproot themselves and move about, but they can freely move branches, tendrils, and stalks.
If a plant creature is in the area, you can communicate with it as if you shared a Common language, but you gain no magical ability to influence it.
This spell can cause the plants created by the Entangle spell to release a Restrained creature.
You weave a distracting string of words, causing creatures of your choice that you can see within range and that can hear you to make a Wisdom saving throw. Any creature that can't be Charmed succeeds on this saving throw automatically, and if you or your companions are fighting a creature, it has advantage on the save. On a failed save, the target has disadvantage on Wisdom (Perception) checks made to perceive any creature other than you until the spell ends or until the target can no longer hear you. The spell ends if you are Incapacitated or can no longer speak.
As you call out words of restoration, up to six creatures of your choice that you can see within range regain hit points equal to 1d4 + your spellcasting ability modifier. This spell has no effect on undead or constructs.
At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the healing increases by 1d4 for each slot level above 3rd.
Wish is the mightiest spell a mortal creature can cast. By simply speaking aloud, you can alter the very foundations of reality in accord with your desires.
The basic use of this spell is to duplicate any other spell of 8th level or lower. You don't need to meet any requirements in that spell, including costly Components. The spell simply takes effect.
Alternatively, you can create one of the following Effects of your choice:
You might be able to achieve something beyond the scope of the above examples. State your wish to the DM as precisely as possible. The DM has great latitude in ruling what occurs in such an instance; the greater the wish, the greater the likelihood that something goes wrong. This spell might simply fail, the effect you desire might only be partly achieved, or you might suffer some unforeseen consequence as a result of how you worded the wish. For example, wishing that a villain were dead might propel you forward in time to a period when that villain is no longer alive, effectively removing you from the game. Similarly, wishing for a legendary magic item or artifact might instantly transport you to the presence of the item's current owner.
The stress of casting this spell to produce any effect other than duplicating another spell weakens you. After enduring that stress, each time you cast a spell until you finish a Long Rest, you take 1d10 necrotic damage per level of that spell. This damage can't be reduced or prevented in any way. In addition, your Strength drops to 3, if it isn't 3 or lower already, for 2d4 days. For each of those days that you spend Resting and doing nothing more than light activity, your remaining recovery time decreases by 2 days. Finally, there is a 33 percent chance that you are unable to cast wish ever again if you suffer this stress.
With this spell, you attempt to bind a Celestial, an elemental, a fey, or a fiend to your service. The creature must be within range for the entire casting of the spell. (Typically, the creature is first summoned into the center of an inverted Magic Circle in order to keep it trapped while this spell is cast.) At the completion of the casting, the target must make a Charisma saving throw. On a failed save, it is bound to serve you for the Duration. If the creature was summoned or created by another spell, that spell's duration is extended to match the duration of this spell.
A bound creature must follow your instructions to the best of its ability. You might command the creature to accompany you on an adventure, to guard a location, or to deliver a message. The creature obeys the letter of your instructions, but if the creature is hostile to you, it strives to twist your words to achieve its own objectives. If the creature carries out your instructions completely before the spell ends, it travels to you to report this fact if you are on the same plane of existence. If you are on a different plane of existence, it returns to the place where you bound it and remains there until the spell ends.
At Higher Levels. When you cast this spell using a spell slot of a higher level, the Duration increases to 10 days with a 6th-level slot, to 30 days with a 7th-level slot, to 180 days with an 8th-level slot, and to a year and a day with a 9th-level spell slot.
For the duration, you understand the literal meaning of any spoken language that you hear. You also understand any written language that you see, but you must be touching the surface on which the words are written. It takes about 1 minute to read one page of text.
This spell doesn't decode secret messages in a text or a glyph, such as an arcane sigil, that isn't part of a written language.
Choose a spell of 5th level or lower that you can cast, that has a casting time of 1 action, and that can target you. You cast that spell—called the contingent spell—as part of casting contingency, expending spell slots for both, but the contingent spell doesn't come into effect. Instead, it takes effect when a certain circumstance occurs. You describe that circumstance when you cast the two spells. For example, a contingency cast with water breathing might stipulate that water breathing comes into effect when you are engulfed in water or a similar liquid.
The contingent spell takes effect immediately after the circumstance is met for the first time, whether or not you want it to. and then contingency ends.
The contingent spell takes effect only on you, even if it can normally target others. You can use only one contingency spell at a time. If you cast this spell again, the effect of another contingency spell on you ends. Also, contingency ends on you if its material component is ever not on your person.
By casting gem-inlaid sticks, rolling dragon bones, laying out ornate cards, or employing some other divining tool, you receive an omen from an otherworldly entity about the results of a specific course of action that you plan to take within the next 30 minutes. The DM chooses from the following possible omens:
If you cast the spell two or more times before completing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get a random reading. The DM makes this roll in secret.
You suggest a course of activity (limited to a sentence or two) and magically influence up to twelve creatures of your choice that you can see within range and that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act automatically negates the effect of the spell.
Each target must make a Wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do.
You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a group of soldiers give all their money to the first beggar they meet. If the condition isn't met before the spell ends, the activity isn't performed.
If you or any of your companions damage a creature affected by this spell, the spell ends for that creature.
At Higher Levels. When you cast this spell using a 7th-level spell slot, the duration is 10 days. When you use an 8th-level spell slot, the duration is 30 days. When you use a 9th-level spell slot, the duration is a year and a day.
You summon a spirit that assumes the form of an unusually intelligent, strong, and loyal steed, creating a long-lasting bond with it. Appearing in an unoccupied space within range, the steed takes on a form that you choose, such as a warhorse, a pony, a camel, an elk, or a mastiff. (Your DM might allow other animals to be summoned as steeds.) The steed has the statistics of the chosen form, though it is a celestial, fey, or fiend (your choice) instead of its normal type. Additionally, if your steed has an Intelligence of 5 or less, its Intelligence becomes 6, and it gains the ability to understand one language of your choice that you speak.
Your steed serves you as a mount, both in combat and out, and you have an instinctive bond with it that allows you to fight as a seamless unit. While mounted on your steed, you can make any spell you cast that targets only you also target your steed.
When the steed drops to 0 hit points, it disappears, leaving behind no physical form. You can also dismiss your steed at any time as an action, causing it to disappear. In either case, casting this spell again summons the same steed, restored to its hit point maximum.
While your steed is within 1 mile of you, you can communicate with it telepathically.
You can't have more than one steed bonded by this spell at a time. As an action, you can release the steed from its bond at any time, causing it to disappear.
You create a ward against magical travel that protects up to 40,000 square feet of floor space to a height of 30 feet above the floor. For the Duration, creatures can't teleport into the area or use portals, such as those created by the gate spell, to enter the area. The spell proofs the area against Planar Travel, and therefore prevents creatures from accessing the area by way of the Astral Plane, Ethereal Plane, Feywild, Shadowfell, or the Plane Shift spell.
In addition, the spell damages types of creatures that you choose when you cast it. Choose one or more of the following: Celestials, Elementals, fey, Fiends, and Undead. When a chosen creature enters the spell's area for the first time on a turn or starts its turn there, the creature takes 5d10 radiant or necrotic damage (your choice when you cast this spell).
When you cast this spell, you can designate a password. A creature that speaks the password as it enters the area takes no damage from the spell.
The spell's area can't overlap with the area of another forbiddance spell. If you cast forbiddance every day for 30 days in the same location, the spell lasts until it is dispelled, and the material Components are consumed on the last casting.
You step into a stone object or surface large enough to fully contain your body, melding yourself and all the Equipment you carry with the stone for the Duration. Using your Movement, you step into the stone at a point you can touch. Nothing of your presence remains visible or otherwise detectable by nonmagical Senses.
While merged with the stone, you can't see what occurs outside it, and any Wisdom (Perception) checks you make to hear sounds outside it are made with disadvantage. You remain aware of the passage of time and can cast Spells on yourself while merged in the stone. You can use your Movement to leave the stone where you entered it, which ends the spell. You otherwise can't move.
Minor physical damage to the stone doesn't harm you, but its partial destruction or a change in its shape (to the extent that you no longer fit within it) expels you and deals 6d6 bludgeoning damage to you. The stone's complete destruction (or Transmutation into a different substance) expels you and deals 50 bludgeoning damage to you. If expelled, you fall prone in an unoccupied space closest to where you first entered.
You touch a willing creature and bestow a limited ability to see into the immediate future. For the Duration, the target can't be surprised and has advantage on Attack rolls, Ability Checks, and Saving Throws. Additionally, other creatures have disadvantage on attack rolls against the target for the duration.
This spell immediately ends if you cast it again before its Duration ends.
You create a twisting pattern of colors that weaves through the air inside a 30-foot cube within range. The pattern appears for a moment and vanishes. Each creature in the area who sees the pattern must make a Wisdom saving throw. On a failed save, the creature becomes charmed for the duration. While charmed by this spell, the creature is incapacitated and has a speed of 0.
The spell ends for an affected creature if it takes any damage or if someone else uses an action to shake the creature out of its stupor.
You and up to five willing creatures within 5 feet of you instantly teleport to a previously designated sanctuary. You and any creatures that teleport with you appear in the nearest unoccupied space to the spot you designated when you prepared your sanctuary (see below). If you cast this spell without first preparing a sanctuary, the spell has no effect.
You must designate a sanctuary by casting this spell within a location, such as a temple, dedicated to or strongly linked to your deity. If you attempt to cast the spell in this manner in an area that isn't dedicated to your deity, the spell has no effect.
You convert raw materials into products of the same material. For example, you can fabricate a wooden bridge from a clump of trees, a rope from a patch of hemp, and clothes from flax or wool.
Choose raw materials that you can see within range. You can fabricate a Large or smaller object (contained within a 10-foot cube, or eight connected 5-foot cubes), given a sufficient quantity of raw material. If you are working with metal, stone, or another mineral substance, however, the fabricated object can be no larger than Medium (contained within a single 5-foot cube). The quality of Objects made by the spell is commensurate with the quality of the raw materials.
Creatures or Magic Items can't be created or transmuted by this spell. You also can't use it to create items that ordinarily require a high degree of craftsmanship, such as jewelry, Weapons, glass, or armor, unless you have proficiency with the type of artisan's tools used to craft such Objects.
Range: sight
A churning storm cloud forms, centered on a point you can see and spreading to a radius of 360 feet. Lightning flashes in the area, thunder booms, and strong winds roar. Each creature under the cloud (no more than 5,000 feet beneath the cloud) when it appears must make a Constitution saving throw. On a failed save, a creature takes 2d6 thunder damage and becomes Deafened for 5 minutes.
Each round you maintain Concentration on this spell, the storm produces different Effects on your turn.
Round 2. Acidic rain falls from the cloud. Each creature and object under the cloud takes 1d6 acid damage.
Round 3. You call six bolts of lightning from the cloud to strike six creatures or objects of your choice beneath the cloud. A given creature or object can't be struck by more than one bolt. A struck creature must make a Dexterity saving throw. The creature takes 10d6 lightning damage on a failed save, or half as much damage on a successful one.
Round 4. Hailstones rain down from the cloud. Each creature under the cloud takes 2d6 bludgeoning damage.
Round 5–10. Gusts and freezing rain assail the area under the cloud. The area becomes difficult terrain and is heavily obscured. Each creature there takes 1d6 cold damage. Ranged weapon attacks in the area are impossible. The wind and rain count as a severe distraction for the purposes of maintaining Concentration on Spells. Finally, gusts of strong wind (ranging from 20 to 50 miles per hour) automatically disperse fog, mists, and similar phenomena in the area, whether mundane or magical.
The next time you hit a creature with a weapon attack before this spell ends, the weapon gleams with astral radiance as you strike. The attack deals an extra 2d6 radiant damage to the target, which becomes visible if it's invisible, and the target sheds dim light in a 5-foot radius and can't become invisible until the spell ends.
At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the extra damage increases by 1d6 for each slot level above 2nd.
Bolstering yourself with a necromantic facsimile of life, you gain 1d4 + 4 Temporary Hit Points for the Duration.
At Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, you gain 5 additional Temporary Hit Points for each slot level above 1st.
Until the spell ends, you control any freestanding water inside an area you choose that is a cube up to 100 feet on a side. You can choose from any of the following effects when you cast this spell. As an action on your turn, you can repeat the same effect or choose a different one.
Flood. You cause the water level of all standing water in the area to rise by as much as 20 feet. If the area includes a shore, the flooding water spills over onto dry land, instead create a 20-foot tall wave that travels from one side of the area to the other and then crashes down. Any Huge or smaller vehicles in the wave's path are carried with it to the other side. Any Huge or smaller vehicles struck by the wave have a 25 percent chance of capsizing.
The water level remains elevated until the spell ends or you choose a different effect. If this effect produced a wave, the wave repeats on the start of your next turn while the flood effect lasts.
Part Water. You cause water in the area to move apart and create a trench. The trench extends across the spell's area, and the separated water forms a wall to either side. The trench remains until the spell ends or you choose a different effect. The water then slowly fills in the trench over the course of the next round until the normal water level is restored.
Redirect Flow. You cause flowing water in the area to move in a direction you choose, even if the water has to flow over obstacles, up walls, or in other unlikely directions. The water in the area moves as you direct it, but once it moves beyond the spell's area, it resumes its flow based on the terrain conditions. The water continues to move in the direction you chose until the spell ends or you choose a different effect.
Whirlpool. This effect requires a body of water at least 50 feet square and 25 feet deep. You cause a whirlpool to form in the center of the area. The whirlpool forms a vortex that is 5 feet wide at the base, up to 50 feet wide at the top, and 25 feet tall. Any creature or object in the water and within 25 feet of the vortex is pulled 10 feet toward it. A creature can swim away from the vortex by making a Strength (Athletics) check against your spell save DC.
When a creature enters the vortex for the first time on a turn or starts its turn there, it must make a Strength saving throw. On a failed save, the creature takes 2d8 bludgeoning damage and is caught in the vortex until the spell ends. On a successful save, the creature takes half damage, and isn't caught in the vortex. A creature caught in the vortex can use its action to try to swim away from the vortex as described above, but has disadvantage on the Strength (Athletics) check to do so.
The first time each turn that an object enters the vortex, the object takes 2d8 bludgeoning damage; this damage occurs each round it remains in the vortex.
You create three rays of fire and hurl them at targets within range. You can hurl them at one target or several.
Make a ranged Spell Attack for each ray. On a hit, the target takes 2d6 fire damage.
Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, you create one additional ray for each slot level above 2nd.
You implant a message within an object in range, a message that is uttered when a trigger condition is met. Choose an object that you can see and that isn't being worn or carried by another creature. Then speak the message, which must be 25 words or less, though it can be delivered over as long as 10 minutes. Finally, determine the circumstance that will trigger the spell to deliver your message.
When that circumstance occurs, a magical mouth appears on the object and recites the message in your voice and at the same volume you spoke. If the object you chose has a mouth or something that looks like a mouth (for example, the mouth of a statue), the magical mouth appears there so that the words appear to come from the object's mouth. When you cast this spell, you can have the spell end after it delivers its message, or it can remain and repeat its message whenever the trigger occurs.
The triggering circumstance can be as general or as detailed as you like, though it must be based on visual or audible conditions that occur within 30 feet of the object. For example, you could instruct the mouth to speak when any creature moves within 30 feet of the object or when a silver bell rings within 30 feet of it.
You write on Parchment, paper, or some other suitable writing material and imbue it with a potent Illusion that lasts for the Duration.
To you and any creatures you designate when you cast the spell, the writing appears normal, written in your hand, and conveys whatever meaning you intended when you wrote the text. To all others, the writing appears as if it were written in an unknown or magical script that is unintelligible. Alternatively, you can cause the writing to appear to be an entirely different message, written in a different hand and language, though the language must be one you know.
Should the spell be dispelled, the original script and the Illusion both disappear.
A creature with Truesight can read the hidden message.
Your prayer empowers you with divine radiance. Until the spell ends, your weapon attacks deal an extra 1d4 radiant damage on a hit.
You assume a different form. When you cast the spell, choose one of the following options, the effects of which last for the duration of the spell. While the spell lasts, you can end one option as an action to gain the benefits of a different one.
Aquatic Adaptation. You adapt your body to an aquatic environment, sprouting gills and growing webbing between your fingers. You can breathe underwater and gain a swimming speed equal to your walking speed.
Change Appearance. You transform your appearance. You decide what you look like, including your height, weight, facial features, sound of your voice, hair length, coloration, and distinguishing characteristics, if any. You can make yourself appear as a member of another race, though none of your statistics change. You also can't appear as a creature of a different size than you, and your basic shape stays the same; if you're bipedal, you can't use this spell to become quadrupedal, for instance. At any time for the duration of the spell, you can use your action to change your appearance in this way again.
Natural Weapons. You grow claws, fangs, spines, horns, or a different natural weapon of your choice. Your unarmed strikes deal 1d6 bludgeoning, piercing, or slashing damage, as appropriate to the natural weapon you chose, and you are proficient with your unarmed strikes. Finally, the natural weapon is magic and you have a +1 bonus to the attack and damage rolls you make using it.
As you cast the spell, you draw a 10-foot-diameter circle on the ground inscribed with sigils that link your location to a permanent teleportation circle of your choice whose sigil sequence you know and that is on the same plane of existence as you. A shimmering portal opens within the circle you drew and remains open until the end of your next turn. Any creature that enters the portal instantly appears within 5 feet of the destination circle or in the nearest unoccupied space if that space is occupied.
Many major temples, guilds, and other important places have permanent teleportation circles inscribed somewhere within their confines. Each such circle includes a unique sigil sequence—a string of magical runes arranged in a particular pattern. When you first gain the ability to cast this spell, you learn the sigil sequences for two destinations on The Material Plane, determined by the DM. You can learn additional sigil sequences during your adventures. You can commit a new sigil sequence to memory after studying it for 1 minute.
You can create a permanent teleportation circle by casting this spell in the same location every day for one year. You need not use the circle to Teleport when you cast the spell in this way.
You touch a closed door, window, gate, chest, or other entryway, and it becomes locked for the duration. You and the creatures you designate when you cast this spell can open the object normally. You can also set a password that, when spoken within 5 feet of the object, suppresses this spell for 1 minute. Otherwise, it is impassable until it is broken or the spell is dispelled or suppressed. Casting knock on the object suppresses arcane lock for 10 minutes.
While affected by this spell, the object is more difficult to break or force open; the DC to break it or pick any locks on it increases by 10.
You hide a chest, and all its contents, on the Ethereal Plane. You must touch the chest and the miniature replica that serves as a material component for the spell. The chest can contain up to 12 cubic feet of nonliving material (3 feet by 2 feet by 2 feet).
While the chest remains on the Ethereal Plane, you can use an action and touch the replica to recall the chest. It appears in an unoccupied space on the ground within 5 feet of you. You can send the chest back to the Ethereal Plane by using an action and touching both the chest and the replica.
After 60 days, there is a cumulative 5 percent chance per day that the spell's effect ends. This effect ends if you cast this spell again, if the smaller replica chest is destroyed, or if you choose to end the spell as an action. If the spell ends and the larger chest is on the Ethereal Plane, it is irretrievably lost.
You touch a creature and bestow upon it a magical enhancement. Choose one of the following effects; the target gains that effect until the spell ends.
The ground in a 20-foot radius centered on a point within range twists and sprouts hard spikes and thorns. The area becomes difficult terrain for the Duration. When a creature moves into or within the area, it takes 2d4 piercing damage for every 5 feet it travels.
The transformation of the ground is camouflaged to look natural. Any creature that can't see the area at the time the spell is cast must make a Wisdom (Perception) check against your spell save DC to recognize the terrain as hazardous before entering it.
An affected target can't take reactions and must roll from the @Compendium[dnd5e.tables.LHEts1oDaDwcehuj]{Confusion} table at the start of each of its turns to determine its behavior for that turn.
You touch a creature and stimulate its natural Healing ability. The target regains 4d8 + 15 Hit Points. For the Duration of the spell, the target regains 1 hit point at the start of each of its turns (10 hit points each minute).
The target's severed body members (fingers, legs, tails, and so on), if any, are restored after 2 minutes. If you have the severed part and hold it to the stump, the spell instantaneously causes the limb to knit to the stump.
You create a wall of tough, pliable, tangled brush bristling with needle-sharp thorns. The wall appears within range on a solid surface and lasts for the Duration. You choose to make the wall up to 60 feet long, 10 feet high, and 5 feet thick or a circle that has a 20-foot diameter and is up to 20 feet high and 5 feet thick. The wall blocks line of sight.
When the wall appears, each creature within its area must make a Dexterity saving throw. On a failed save, a creature takes 7d8 piercing damage, or half as much damage on a successful save.
A creature can move through the wall, albeit slowly and painfully. For every 1 foot a creature moves through the wall, it must spend 4 feet of Movement. Furthermore, the first time a creature enters the wall on a turn or ends its turn there, the creature must make a Dexterity saving throw. It takes 7d8 slashing damage on a failed save, or half as much damage on a successful one.
At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, both types of damage increase by 1d8 for each slot level above 6th.
Objects come to life at your command. Choose up to ten nonmagical objects within range that are not being worn or carried. Medium targets count as two objects, Large targets count as four objects, Huge targets count as eight objects. You can't animate any object larger than Huge. Each target animates and becomes a creature under your control until the spell ends or until reduced to 0 hit points.
As a bonus action, you can mentally command any creature you made with this spell if the creature is within 500 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete.
Animated Object Statistics
Size HP AC Attack Str Dex
Tiny 20 18 +8 to hit, 1d4 + 4 damage 4 18
Small 25 16 +6 to hit, 1d8 + 2 damage 6 14
Medium 40 13 +5 to hit, 2d6 + 1 damage 10 12
Large 50 10 +6 to hit, 2d10 + 2 damage 14 10
Huge 80 10 +8 to hit, 2d12 + 4 damage 18 6
An animated object is a construct with AC, hit points, attacks, Strength, and Dexterity determined by its size. Its Constitution is 10 and its Intelligence and Wisdom are 3, and its Charisma is 1. Its speed is 30 feet; if the object lacks legs or other appendages it can use for locomotion, it instead has a flying speed of 30 feet and can hover. If the object is securely attached to a surface or a larger object, such as a chain bolted to a wall, its speed is 0. It has blindsight with a radius of 30 feet and is blind beyond that distance. When the animated object drops to 0 hit points, it reverts to its original object form, and any remaining damage carries over to its original object form.
If you command an object to attack, it can make a single melee attack against a creature within 5 feet of it. It makes a slam attack with an attack bonus and bludgeoning damage determined by its size. The DM might rule that a specific object inflicts slashing or piercing damage based on its form.
At Higher Levels. If you cast this spell using a spell slot of 6th level or higher, you can animate two additional objects for each slot level above 5th.
You evoke a fiery blade in your free hand. The blade is similar in size and shape to a Scimitar, and it lasts for the Duration. If you let go of the blade, it disappears, but you can evoke the blade again as a Bonus Action.
You can use your action to make a melee spell Attack with the fiery blade. On a hit, the target takes 3d6 fire damage.
The flaming blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.
At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for every two slot levels above 2nd.
A beam of yellow light flashes from your pointing finger, then condenses to linger at a chosen point within range as a glowing bead for the duration. When the spell ends, either because your concentration is broken or because you decide to end it, the bead blossoms with a low roar into an explosion of flame that spreads around corners. Each creature in a 20-foot-radius sphere centered on that point must make a Dexterity saving throw. A creature takes fire damage equal to the total accumulated damage on a failed save, or half as much damage on a successful one.
The spell's base damage is 12d6. If at the end of your turn the bead has not yet detonated, the damage increases by 1d6.
If the glowing bead is touched before the interval has expired, the creature touching it must make a Dexterity saving throw. On a failed save, the spell ends immediately, causing the bead to erupt in flame. On a successful save, the creature can throw the bead up to 40 feet. When it strikes a creature or a solid object, the spell ends, and the bead explodes.
The fire damages objects in the area and ignites flammable objects that aren't being worn or carried.
At Higher Levels. When you cast this spell using a spell slot of 8th level or higher, the base damage increases by 1d6 for each slot level above 7th.
When you cast this spell, you inscribe a harmful glyph either on a surface (such as a section of floor, a wall, or a table) or within an object that can be closed to conceal the glyph (such as a book, a scroll, or a treasure chest). If you choose a surface, the glyph can cover an area of the surface no larger than 10 feet in diameter. If you choose an object, that object must remain in its place; if the object is moved more than 10 feet from where you cast this spell, the glyph is broken, and the spell ends without being triggered.
The glyph is nearly invisible, requiring an Intelligence (Investigation) check against your spell save DC to find it.
You decide what triggers the glyph when you cast the spell. For glyphs inscribed on a surface, the most typical triggers include touching or stepping on the glyph, removing another object covering it, approaching within a certain distance of it, or manipulating the object that holds it. For glyphs inscribed within an object, the most common triggers are opening the object, approaching within a certain distance of it, or seeing or reading the glyph.
You can further refine the trigger so the spell is activated only under certain circumstances or according to a creature's physical characteristics (such as height or weight), or physical kind (for example, the ward could be set to affect hags or shapechangers). You can also specify creatures that don't trigger the glyph, such as those who say a certain password.
When you inscribe the glyph, choose one of the options below for its effect. Once triggered, the glyph glows, filling a 60-foot-radius sphere with dim light for 10 minutes, after which time the spell ends. Each creature in the sphere when the glyph activates is targeted by its effect, as is a creature that enters the Sphere for the first time on a turn or ends its turn there.
A 60-foot-radius sphere of light spreads out from a point you choose within range. The sphere is bright light and sheds dim light for an additional 60 feet.
If you chose a point on an object you are holding or one that isn't being worn or carried, the light shines from the object and moves with it. Completely covering the affected object with an opaque object, such as a bowl or a helm, blocks the light.
If any of this spell's area overlaps with an area of darkness created by a spell of 3rd level or lower, the spell that created the darkness is dispelled.
You tap into the nightmares of a creature you can see within range and create an illusory manifestation of its deepest fears, visible only to that creature. The target must make a Wisdom saving throw. On a failed save, the target becomes Frightened for the Duration. At the end of each of the target's turns before the spell ends, the target must succeed on a Wisdom saving throw or take 4d10 psychic damage. On a successful save, the spell ends.
At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d10 for each slot level above 4th.
You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 15-foot cube. The image appears at a spot within range and lasts for the duration. The image is purely visual; it isn't accompanied by sound, smell, or other sensory effects.
You can use your action to cause the image to move to any spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking.
Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image.
Squirming, ebony tentacles fill a 20-foot square on ground that you can see within range. For the Duration, these tentacles turn the ground in the area into difficult terrain.
When a creature enters the affected area for the first time on a turn or starts its turn there, the creature must succeed on a Dexterity saving throw or take 3d6 bludgeoning damage and be @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.cSVcyZyNe2iG1fIc]{Restrained} by the tentacles until the spell ends. A creature that starts its turn in the area and is already @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.cSVcyZyNe2iG1fIc]{Restrained} by the tentacles takes 3d6 bludgeoning damage.
A creature @UUID[Compendium.dnd5e.rules.w7eitkpD7QQTB6j0.JournalEntryPage.cSVcyZyNe2iG1fIc]{Restrained} by the tentacles can use its action to make a Strength or Dexterity check (its choice) against your spell save DC. On a success, it frees itself.
For the duration, you see invisible creatures and objects as if they were visible, and you can see into the Ethereal Plane. Ethereal creatures and objects appear ghostly and translucent.
You gain the ability to enter a tree and move from inside it to inside another tree of the same kind within 500 feet. Both trees must be living and at least the same size as you. You must use 5 feet of Movement to enter a tree. You instantly know the location of all other trees of the same kind within 500 feet and, as part of the move used to enter the tree, can either pass into one of those trees or step out of the tree you're in. You appear in a spot of your choice within 5 feet of the destination tree, using another 5 feet of movement. If you have no movement left, you appear within 5 feet of the tree you entered.
You can use this transportation ability once per round for the Duration. You must end each turn outside a tree.
You can cast this spell only at night. Choose up to three corpses of Medium or Small humanoids within range. Each corpse becomes a ghoul under your control. (The DM has game statistics for these creatures.)
As a bonus action on each of your turns, you can mentally command any creature you animated with this spell if the creature is within 120 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete.
The creature is under your control for 24 hours, after which it stops obeying any command you have given it. To maintain control of the creature for another 24 hours, you must cast this spell on the creature before the current 24-hour period ends. This use of the spell reasserts your control over up to three creatures you have animated with this spell, rather than animating new ones.
Higher Levels. When you cast this spell using a 7th-level spell slot, you can animate or reassert control over four ghouls. When you cast this spell using an 8th-level spell slot, you can animate or reassert control over five ghouls or two ghasts or wights. When you cast this spell using a 9th-level spell slot, you can animate or reassert control over six ghouls, three ghasts or wights, or two mummies.
This spell reverses gravity in a 50-foot-radius, 100-foot high Cylinder centered on a point within range. All creatures and Objects that aren't somehow anchored to the ground in the area fall upward and reach the top of the area when you cast this spell. A creature can make a Dexterity saving throw to grab onto a fixed object it can reach, thus avoiding the fall.
If some solid object (such as a ceiling) is encountered in this fall, Falling Objects and creatures strike it just as they would during a normal downward fall. If an object or creature reaches the top of the area without striking anything, it remains there, oscillating slightly, for the Duration.
At the end of the Duration, affected Objects and creatures fall back down.
A 10-foot-radius invisible sphere of antimagic surrounds you. This area is divorced from the magical energy that suffuses the multiverse. Within the sphere, spells can't be cast, summoned creatures disappear, and even magic items become mundane. Until the spell ends, the sphere moves with you, centered on you.
Spells and other magical effects, except those created by an artifact or a deity, are suppressed in the sphere and can't protrude into it. A slot expended to cast a suppressed spell is consumed. While an effect is suppressed, it doesn't function, but the time it spends suppressed counts against its duration.
Targeted Effects. Spells and other magical effects, such as magic missile and charm person, that target a creature or an object in the sphere have no effect on that target.
Areas of Magic. The area of another spell or magical effect, such as fireball, can't extend into the sphere. If the sphere overlaps an area of magic, the part of the area that is covered by the sphere is suppressed. For example, the flames created by a wall of fire are suppressed within the sphere, creating a gap in the wall if the overlap is large enough.
Spells. Any active spell or other magical effect on a creature or an object in the sphere is suppressed while the creature or object is in it.
Magic Items. The properties and powers of magic items are suppressed in the sphere. For example, a +1 longsword in the sphere functions as a nonmagical longsword.
A magic weapon's properties and powers are suppressed if it is used against a target in the sphere or wielded by an attacker in the sphere. If a magic weapon or a piece of magic ammunition fully leaves the sphere (for example, if you fire a magic arrow or throw a magic spear at a target outside the sphere), the magic of the item ceases to be suppressed as soon as it exits.
Magical Travel. Teleportation and planar travel fail to work in the sphere, whether the sphere is the destination or the departure point for such magical travel. A portal to another location, world, or plane of existence, as well as an opening to an extradimensional space such as that created by the rope trick spell, temporarily closes while in the sphere.
Creatures and Objects. A creature or object summoned or created by magic temporarily winks out of existence in the sphere. Such a creature instantly reappears once the space the creature occupied is no longer within the sphere.
Dispel Magic. Spells and magical effects such as dispel magic have no effect on the sphere. Likewise, the spheres created by different antimagic field spells don't nullify each other.
A line of strong wind 60 feet long and 10 feet wide blasts from you in a direction you choose for the spell's duration. Each creature that starts its turn in the line must succeed on a Strength saving throw or be pushed 15 feet away from you in a direction following the line.
Any creature in the line must spend 2 feet of movement for every 1 foot it moves when moving closer to you.
The gust disperses gas or vapor, and it extinguishes candles, torches, and similar unprotected flames in the area. It causes protected flames, such as those of lanterns, to dance wildly and has a 50 percent chance to extinguish them.
As a bonus action on each of your turns before the spell ends, you can change the direction in which the line blasts from you.
A 5-foot-diameter Sphere of fire appears in an unoccupied space of your choice within range and lasts for the Duration. Any creature that ends its turn within 5 feet of the sphere must make a Dexterity saving throw. The creature takes 2d6 fire damage on a failed save, or half as much damage on a successful one.
As a Bonus Action, you can move the Sphere up to 30 feet. If you ram the sphere into a creature, that creature must make the saving throw against the sphere's damage, and the sphere stops moving this turn.
When you move the Sphere, you can direct it over barriers up to 5 feet tall and jump it across pits up to 10 feet wide. The sphere ignites flammable Objects not being worn or carried, and it sheds bright light in a 20-foot radius and dim light for an additional 20 feet.
At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.
This spell attracts or repels creatures of your choice. You target something within range, either a Huge or smaller object or creature or an area that is no larger than a 200-foot cube. Then specify a kind of intelligent creature, such as red dragons, goblins, or vampires. You invest the target with an aura that either attracts or repels the specified creatures for the duration. Choose antipathy or sympathy as the aura's effect.
Antipathy. The enchantment causes creatures of the kind you designated to feel an intense urge to leave the area and avoid the target. When such a creature can see the target or comes within 60 feet of it, the creature must succeed on a Wisdom saving throw or become frightened. The creature remains frightened while it can see the target or is within 60 feet of it. While frightened by the target, the creature must use its movement to move to the nearest safe spot from which it can't see the target. If the creature moves more than 60 feet from the target and can't see it, the creature is no longer frightened, but the creature becomes frightened again if it regains sight of the target or moves within 60 feet of it.
Sympathy. The enchantment causes the specified creatures to feel an intense urge to approach the target while within 60 feet of it or able to see it. When such a creature can see the target or comes within 60 feet of it, the creature must succeed on a Wisdom saving throw or use its movement on each of its turns to enter the area or move within reach of the target. When the creature has done so, it can't willingly move away from the target.
If the target damages or otherwise harms an affected creature, the affected creature can make a Wisdom saving throw to end the effect, as described below.
Ending the Effect. If an affected creature ends its turn while not within 60 feet of the target or able to see it, the creature makes a Wisdom saving throw. On a successful save, the creature is no longer affected by the target and recognizes the feeling of repugnance or attraction as magical. In addition, a creature affected by the spell is allowed another Wisdom saving throw every 24 hours while the spell persists.
A creature that successfully saves against this effect is immune to it for 1 minute, after which time it can be affected again.
Roll a d20 at the end of each of your turns for the duration of the spell. On a roll of 11 or higher, you vanish from your current plane of existence and appear in the Ethereal Plane (the spell fails and the casting is wasted if you were already on that plane). At the start of your next turn, and when the spell ends if you are on the Ethereal Plane, you return to an unoccupied space of your choice that you can see within 10 feet of the space you vanished from. If no unoccupied space is available within that range, you appear in the nearest unoccupied space (chosen at random if more than one space is equally near). You can dismiss this spell as an action.
While on the Ethereal Plane, you can see and hear the plane you originated from, which is cast in shades of gray, and you can't see anything there more than 60 feet away. You can only affect and be affected by other creatures on the Ethereal Plane. Creatures that aren't there can't perceive you or interact with you, unless they have the ability to do so.
You send a short message of twenty-five words or less to a creature with which you are familiar. The creature hears the message in its mind, recognizes you as the sender if it knows you, and can answer in a like manner immediately. The spell enables creatures with Intelligence scores of at least 1 to understand the meaning of your message.
You can send the message across any distance and even to other planes of existence, but if the target is on a different plane than you, there is a 5 percent chance that the message doesn't arrive.
You grant the semblance of life and intelligence to a corpse of your choice within range, allowing it to answer the questions you pose. The corpse must still have a mouth and can't be undead. The spell fails if the corpse was the target of this spell within the last 10 days.
Until the spell ends, you can ask the corpse up to five questions. The corpse knows only what it knew in life, including the languages it knew. Answers are usually brief, cryptic, or repetitive, and the corpse is under no compulsion to offer a truthful answer if you are hostile to it or it recognizes you as an enemy. This spell doesn't return the creature's soul to its body, only its animating spirit. Thus, the corpse can't learn new information, doesn't comprehend anything that has happened since it died, and can't speculate about future events.
You create an invisible, magical eye within range that hovers in the air for the duration.
You mentally receive visual information from the eye, which has normal vision and darkvision out to 30 feet. The eye can look in every direction.
As an action, you can move the eye up to 30 feet in any direction. There is no limit to how far away from you the eye can move, but it can't enter another plane of existence. A solid barrier blocks the eye's movement, but the eye can pass through an opening as small as 1 inch in diameter.
Describe or name a specific kind of beast or plant. Concentrating on the voice of nature in your surroundings, you learn the direction and distance to the closest creature or plant of that kind within 5 miles, if any are present.
A storm made up of sheets of roaring flame appears in a location you choose within range. The area of the storm consists of up to ten 10-foot cubes, which you can arrange as you wish. Each cube must have at least one face adjacent to the face of another cube. Each creature in the area must make a Dexterity saving throw. It takes 7d10 fire damage on a failed save, or half as much damage on a successful one.
The fire damages Objects in the area and ignites flammable Objects that aren't being worn or carried. If you choose, plant life in the area is unaffected by this spell.
You hurl a bubble of acid. Choose one creature you can see within range, or choose two creatures you can see within range that are within 5 feet of each other. A target must succeed on a Dexterity saving throw or take 1d6acid damage.
This spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).
This spell wards a willing creature you touch and creates a mystic connection between you and the target until the spell ends. While the target is within 60 feet of you, it gains a +1 bonus to AC and saving throws, and it has resistance to all damage. Also, each time it takes damage, you take the same amount of damage.
The spell ends if you drop to 0 hit points or if you and the target become separated by more than 60 feet. It also ends if the spell is cast again on either of the connected creatures. You can also dismiss the spell as an action.
Until the spell ends, one willing creature you touch gains the ability to move up, down, and across vertical surfaces and upside down along ceilings, while leaving its hands free. The target also gains a climbing speed equal to its walking speed.
A sphere of negative energy ripples out in a 60-foot radius from a point within range. Each creature in that area must make a Constitution saving throw. A target takes 8d6 necrotic damage on a failed save, or half as much damage on a successful one.
Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the damage increases by 2d6 for each slot level above 6th.
You summon elementals that appear in unoccupied spaces that you can see within range. You choose one the following options for what appears:
An elemental summoned by this spell disappears when it drops to 0 hit points or when the spell ends.
Higher Levels. When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 6th-level slot and three times as many with an 8th-level slot.
You sense the presence of any trap within range that is within line of sight. A trap, for the purpose of this spell, includes anything that would inflict a sudden or unexpected effect you consider harmful or undesirable, which was specifically intended as such by its creator. Thus, the spell would sense an area affected by the alarm spell, a glyph of warding, or a mechanical pit trap, but it would not reveal a natural weakness in the floor, an unstable ceiling, or a hidden sinkhole.
This spell merely reveals that a trap is present. You don't learn the location of each trap, but you do learn the general nature of the danger posed by a trap you sense.
You create a sword-shaped plane of force that hovers within range. It lasts for the Duration.
When the sword appears, you make a melee spell Attack against a target of your choice within 5 feet of the sword. On a hit, the target takes 3d10 force damage. Until the spell ends, you can use a Bonus Action on each of your turns to move the sword up to 20 feet to a spot you can see and repeat this Attack against the same target or a different one.
A dazzling array of flashing, colored light springs from your hand. Roll 6d10; the total is how many hit points of creatures this spell can effect. Creatures in a 15-foot cone originating from you are affected in ascending order of their current hit points (ignoring unconscious creatures and creatures that can't see).
Starting with the creature that has the lowest current hit points, each creature affected by this spell is blinded until the spell ends. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.
Higher Levels. When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d10 for each slot level above 1st.
You touch a creature that has died within the last minute. That creature returns to life with 1 hit point. This spell can't return to life a creature that has died of old age, nor can it restore any missing body parts.
You attempt to beguile a beast that you can see within range. It must succeed on a Wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw.
While the beast is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability.
At Higher Levels. When you cast this spell with a 5th-level spell slot, the duration is concentration, up to 10 minutes. When you use a 6th-level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 7th level or higher, the duration is concentration, up to 8 hours.
You become Invisible at the same time that an illusory double of you appears where you are standing. The double lasts for the Duration, but the Invisibility ends if you Attack or Cast a Spell.
You can use your action to move your illusory double up to twice your speed and make it gesture, speak, and behave in whatever way you choose.
You can see through its eyes and hear through its ears as if you were located where it is. On each of your turns as a Bonus Action, you can switch from using its senses to using your own, or back again. While you are using its senses, you are Blinded and Deafened in regard to your own surroundings.
After spending the casting time tracing magical pathways within a precious gemstone, you touch a Huge or smaller beast or plant. The target must have either no Intelligence score or an Intelligence of 3 or less. The target gains an Intelligence of 10. The target also gains the ability to speak one language you know. If the target is a plant, it gains the ability to move its limbs, roots, vines, creepers, and so forth, and it gains senses similar to a human's. Your DM chooses statistics appropriate for the awakened plant, such as the statistics for the awakened shrub or the awakened tree.
The awakened beast or plant is charmed by you for 30 days or until you or your companions do anything harmful to it. When the charmed condition ends, the awakened creature chooses whether to remain friendly to you, based on how you treated it while it was charmed.
A frigid globe of cold energy streaks from your fingertips to a point of your choice within range, where it explodes in a 60-foot-radius sphere. Each creature within the area must make a Constitution saving throw. On a failed save, a creature takes 10d6 cold damage. On a successful save, it takes half as much damage.
If the globe strikes a body of water or a liquid that is principally water (not including water-based creatures), it freezes the liquid to a depth of 6 inches over an area 30 feet square. This ice lasts for 1 minute. Creatures that were swimming on the surface of frozen water are trapped in the ice. A trapped creature can use an action to make a Strength check against your spell save DC to break free.
You can refrain from firing the globe after completing the spell, if you wish. A small globe about the size of a sling stone, cool to the touch, appears in your hand. At any time, you or a creature you give the globe to can throw the globe (to a range of 40 feet) or hurl it with a sling (to the sling's normal range). It shatters on impact, with the same effect as the normal casting of the spell. You can also set the globe down without shattering it. After 1 minute, if the globe hasn't already shattered, it explodes.
At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the damage increases by 1d6 for each slot level above 6th.
A flame, equivalent in brightness to a torch, springs forth from an object that you touch. The effect looks like a regular flame, but it creates no heat and doesn't use oxygen. A continual flame can be covered or hidden but not smothered or quenched.
Up to six creatures of your choice that you can see within range each regain Hit Points equal to 2d8 + your Spellcasting ability modifier. This spell has no effect on Undead or constructs.
At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the Healing increases by 1d8 for each slot level above 2nd.
You assume the form of a different creature for the Duration. The new form can be of any creature with a Challenge rating equal to your level or lower. The creature can't be a construct or an Undead, and you must have seen the sort of creature at least once. You transform into an average example of that creature, one without any class levels or the Spellcasting trait.
Your game statistics are replaced by the statistics of the chosen creature, though you retain your Alignment and Intelligence, Wisdom, and Charisma scores. You also retain all of your skill and saving throw proficiencies, in addition to gaining those of the creature. If the creature has the same proficiency as you and the bonus listed in its Statistics is higher than yours, use the creature's bonus in place of yours. You can't use any legendary Actions or Lair Actions of the new form.
You assume the Hit Points and Hit Dice of the new form. When you revert to your normal form, you return to the number of Hit Points you had before you transformed. If you revert as a result of Dropping to 0 Hit Points, any excess damage carries over to your normal form. As long as the excess damage doesn't reduce your normal form to 0 Hit Points, you aren't knocked Unconscious.
You retain the benefit of any features from your class, race, or other source and can use them, provided that your new form is physically capable of doing so. You can't use any Special Senses you have (for example, darkvision) unless your new form also has that sense. You can only speak if the creature can normally speak.
When you transform, you choose whether your Equipment falls to the ground, merges into the new form, or is worn by it. Worn equipment functions as normal. The DM determines whether it is practical for the new form to wear a piece of equipment, based on the creature's shape and size. Your equipment doesn't change shape or size to match the new form, and any equipment that the new form can't wear must either fall to the ground or merge into your new form. Equipment that merges has no effect in that state.
During this spell's Duration, you can use your action to assume a different form following the same restrictions and rules for the original form, with one exception: if your new form has more hit points than your current one, your hit points remain at their current value.
You make an area within range magically secure. The area is a cube that can be as small as 5 feet to as large as 100 feet on each side. The spell lasts for the Duration or until you use an action to dismiss it.
When you cast the spell, you decide what sort of security the spell provides, choosing any or all of the following properties:
Casting this spell on the same spot every day for a year makes this effect permanent.
At Higher Levels. When you cast this spell using a spell slot of 5th level or higher, you can increase the size of the cube by 100 feet for each slot level beyond 4th. Thus you could protect a cube that can be up to 200 feet on one side by using a spell slot of 5th level.
A 10-foot-radius immobile dome of force springs into existence around and above you and remains stationary for the duration. The spell ends if you leave its area.
Nine creatures of Medium size or smaller can fit inside the dome with you. The spell fails if its area includes a larger creature or more than nine creatures. Creatures and objects within the dome when you cast this spell can move through it freely. All other creatures and objects are barred from passing through it. Spells and other magical effects can't extend through the dome or be cast through it. The atmosphere inside the space is comfortable and dry, regardless of the weather outside.
Until the spell ends, you can command the interior to become dimly lit or dark. The dome is opaque from the outside, of any color you choose, but it is transparent from the inside.
A nonmagical wall of solid stone springs into existence at a point you choose within range. The wall is 6 inches thick and is composed of ten 10-foot-by-10-foot panels. Each panel must be contiguous with at least one other panel. Alternatively, you can create 10-foot-by-20-foot panels that are only 3 inches thick.
If the wall cuts through a creature's space when it appears, the creature is pushed to one side of the wall (your choice). If a creature would be surrounded on all sides by the wall (or the wall and another solid surface), that creature can make a Dexterity saving throw. On a success, it can use its Reaction to move up to its speed so that it is no longer enclosed by the wall.
The wall can have any shape you desire, though it can't occupy the same space as a creature or object. The wall doesn't need to be vertical or rest on any firm foundation. It must, however, merge with and be solidly supported by existing stone. Thus, you can use this spell to bridge a chasm or create a ramp.
If you create a span greater than 20 feet in length, you must halve the size of each panel to create supports. You can crudely shape the wall to create crenellations, battlements, and so on.
The wall is an object made of stone that can be damaged and thus breached. Each panel has AC 15 and 30 Hit Points per inch of thickness. Reducing a panel to 0 Hit Points destroys it and might cause connected panels to collapse at the DM's discretion.
If you maintain your Concentration on this spell for its whole Duration, the wall becomes permanent and can't be dispelled. Otherwise, the wall disappears when the spell ends.
Your spell bolsters your allies with toughness and resolve. Choose up to three creatures within range. Each target's hit point maximum and current hit points increase by 5 for the duration.
At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, a target's hit points increase by an additional 5 for each slot level above 2nd.
Creatures of your choice that you can see within range and that can hear you must make a Wisdom saving throw. A target automatically succeeds on this saving throw if it can't be charmed. On a failed save, a target is affected by this spell. Until the spell ends, you can use a bonus action on each of your turns to designate a direction that is horizontal to you. Each affected target must use as much of its movement as possible to move in that direction on its next turn. It can take any action before it moves. After moving in this way, it can make another Wisdom save to try to end the effect.
A target isn't compelled to move into an obviously deadly hazard, such as a fire or a pit, but it will provoke opportunity attacks to move in the designated direction.
You step into the border regions of the Ethereal Plane, in the area where it overlaps with your current plane. You remain in the Border Ethereal for the Duration or until you use your action to dismiss the spell. During this time, you can move in any direction. If you move up or down, every foot of Movement costs an extra foot. You can see and hear the plane you originated from, but everything there looks gray, and you can't see anything more than 60 feet away.
While on the Ethereal Plane, you can only affect and be affected by other creatures on that plane. Creatures that aren't on the Ethereal Plane can't perceive you and can't interact with you, unless a special ability or magic has given them the ability to do so.
You ignore all Objects and Effects that aren't on the Ethereal Plane, allowing you to move through objects you perceive on the plane you originated from.
When the spell ends, you immediately return to the plane you originated from in the spot you currently occupy. If you occupy the same spot as a solid object or creature when this happens, you are immediately shunted to the nearest unoccupied space that you can occupy and take force damage equal to twice the number of feet you are moved.
This spell has no effect if you cast it while you are on the Ethereal Plane or a plane that doesn't border it, such as one of the Outer Planes.
At Higher Levels. When you cast this spell using a spell slot of 8th level or higher, you can target up to three willing creatures (including you) for each slot level above 7th. The creatures must be within 10 feet of you when you cast the spell.
A wave of Healing energy washes out from a point of your choice within range. Choose up to six creatures in a 30-foot-radius Sphere centered on that point. Each target regains Hit Points equal to 3d8 + your Spellcasting ability modifier. This spell has no effect on Undead or constructs.
At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the Healing increases by 1d8 for each slot level above 5th.
Choose one creature or nonmagical object that you can see within range. You transform the creature into a different creature, the creature into a nonmagical object, or the object into a creature (the object must be neither worn nor carried by another creature). The transformation lasts for the duration, or until the target drops to 0 hit points or dies. If you concentrate on this spell for the full Duration, the transformation lasts until it is dispelled.
This spell has no effect on a target with 0 Hit Points. An unwilling creature can make a Wisdom saving throw, and if it succeeds, it isn't affected by this spell.
Creature into Creature. If you turn a creature into another kind of creature, the new form can be any kind you choose whose challenge rating is equal to or less than the target's (or its level, if the target doesn't have a Challenge rating). The target's game statistics, including mental Ability Scores, are replaced by the statistics of the new form. It retains its Alignment and personality.
The target assumes the hit points of its new form, and when it reverts to its normal form, the creature returns to the number of Hit Points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked Unconscious.
The creature is limited in the Actions it can perform by the nature of its new form, and it can't speak, cast Spells, or take any other action that requires hands or speech, unless its new form is capable of such Actions.
Object into Creature. You can turn an object into any kind of creature, as long as the creature's size is no larger than the object's size and the creature's Challenge rating is 9 or lower. The creature is friendly to you and your companions. It acts on each of your turns. You decide what action it takes and how it moves. The DM has the creature's Statistics and resolves all of its Actions and Movement.
If the spell becomes permanent, you no longer control the creature. It might remain friendly to you, depending on how you have treated it.
Creature into Object. If you turn a creature into an object, it transforms along with whatever it is wearing and carrying into that form. The creature's statistics become those of the object, and the creature has no memory of time spent in this form, after the spell ends and it returns to its normal form.
You create a bolt of lightning that arcs toward a target of your choice that you can see within range. Three bolts then leap from that target to as many as three other targets, each of which must be within 30 feet of the first target. A target can be a creature or an object and can be targeted by only one of the bolts.
A target must make a Dexterity saving throw. The target takes 10d8 lightning damage on a failed save, or half as much damage on a successful one.
Higher Levels. When you cast this spell using a spell slot of 7th level or higher, one additional bolt leaps from the first target to another target for each slot level above 6th.
You touch a stone object of Medium size or smaller or a section of stone no more than 5 feet in any dimension and form it into any shape that suits your purpose. So, for example, you could shape a large rock into a weapon, idol, or coffer, or make a small passage through a wall, as long as the wall is less than 5 feet thick. You could also shape a stone door or its frame to seal the door shut. The object you create can have up to two hinges and a latch, but finer mechanical detail isn't possible.
You place an Illusion on a creature or an object you touch so that Divination Spells reveal false information about it. The target can be a willing creature or an object that isn't being carried or worn by another creature.
When you cast the spell, choose one or both of the following Effects. The effect lasts for the Duration. If you cast this spell on the same creature or object every day for 30 days, placing the same effect on it each time, the illusion lasts until it is dispelled.
False Aura. You change the way the target appears to Spells and magical Effects, such as Detect Magic, that detect magical auras. You can make a nonmagical object appear magical, a magical object appear nonmagical, or change the object's magical aura so that it appears to belong to a specific school of magic that you choose. When you use this effect on an object, you can make the false magic apparent to any creature that handles the item.
Mask. You change the way the target appears to Spells and magical Effects that detect creature types, such as a paladin's Divine Sense or the trigger of a symbol spell. You choose a creature type and other Spells and magical Effects treat the target as if it were a creature of that type or of that Alignment.
You conjure a phantom watchdog in an unoccupied space that you can see within range, where it remains for the Duration, until you dismiss it as an action, or until you move more than 100 feet away from it.
The hound is Invisible to all creatures except you and can't be harmed. When a Small or larger creature comes within 30 feet of it without first speaking the password that you specify when you cast this spell, the hound starts barking loudly. The hound sees invisible creatures and can see into the Ethereal Plane. It ignores illusions.
At the start of each of your turns, the hound attempts to bite one creature within 5 feet of it that is hostile to you. The hound's Attack bonus is equal to your Spellcasting ability modifier + your Proficiency Bonus. On a hit, it deals 4d8 piercing damage.
You touch a point and infuse an area around it with holy (or unholy) power. The area can have a radius up to 60 feet, and the spell fails if the radius includes an area already under the effect a hallow spell. The affected area is subject to the following Effects.
First, Celestials, Elementals, fey, Fiends, and Undead can't enter the area, nor can such creatures charm, frighten, or possess creatures within it. Any creature Charmed, Frightened, or possessed by such a creature is no longer charmed, frightened, or possessed upon entering the area. You can exclude one or more of those types of creatures from this effect.
Second, you can bind an extra effect to the area. Choose the effect from the following list, or choose an effect offered by the DM. Some of these Effects apply to creatures in the area; you can designate whether the effect applies to all creatures, creatures that follow a specific deity or leader, or creatures of a specific sort, such as orcs or Trolls. When a creature that would be affected enters the spell's area for the first time on a turn or starts its turn there, it can make a Charisma saving throw. On a success, the creature ignores the extra effect until it leaves the area.
You touch a nonmagical weapon. Until the spell ends, that weapon becomes a magic weapon with a +1 bonus to Attack rolls and Damage Rolls.
At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the bonus increases to +2. When you use a spell slot of 6th level or higher, the bonus increases to +3.
You touch an object weighing 10 pounds or less whose longest dimension is 6 feet or less. The spell leaves an Invisible mark on its surface and invisibly inscribes the name of the item on the sapphire you use as the material component. Each time you cast this spell, you must use a different sapphire.
At any time thereafter, you can use your action to speak the item's name and crush the sapphire. The item instantly appears in your hand regardless of physical or planar distances, and the spell ends.
If another creature is holding or carrying the item, crushing the sapphire doesn't transport the item to you, but instead you learn who the creature possessing the object is and roughly where that creature is located at that moment.
Dispel Magic or a similar effect successfully applied to the sapphire ends this spell's effect.
Choose a willing creature that you can see within range. Until the spell ends, the target's speed is doubled, it gains a +2 bonus to AC, it has advantage on Dexterity Saving Throws, and it gains an additional action on each of its turns. That action can be used only to take the Attack (one weapon attack only), Dash, Disengage, Hide, or Use an Object action.
When the spell ends, the target can't move or take Actions until after its next turn, as a wave of lethargy sweeps over it.
You utter a divine word, imbued with the power that shaped the world at the dawn of Creation. Choose any number of creatures you can see within range. Each creature that can hear you must make a Charisma saving throw. On a failed save, a creature suffers an effect based on its current hit points:
Regardless of its current Hit Points, a Celestial, an elemental, a fey, or a fiend that fails its save is forced back to its plane of Origin (if it isn't there already) and can't return to your current plane for 24 hours by any means short of a wish spell.
You and up to eight willing creatures within range project your astral bodies into the Astral Plane (the spell fails and the casting is wasted if you are already on that plane). The material body you leave behind is unconscious and in a state of suspended animation, it doesn't need food or air and doesn't age.
Your astral body resembles your mortal form in almost every way, replicating your game statistics and possessions. The principal difference is the addition of a silvery cord that extends from between your shoulder blades and trails behind you, fading to invisibility after 1 foot. This cord is your tether to your material body. As long as the tether remains intact, you can find your way home. If the cord is cut-something that can happen only when an effect specifically states that it does-your soul and body are separated, killing you instantly.
Your astral form can freely travel through the Astral Plane and can pass through portals there leading to any other plane. If you enter a new plane or return to the plane you were on when casting this spell, your body and possessions are transported along the silver cord, allowing you to re-enter your body as you enter the new plane. Your astral form is a separate incarnation. Any damage or other effects that apply to it have no effect on your physical body, nor do they persist when you return to it.
The spell ends for you and your companions when you use your action to dismiss it. When the spell ends, the affected creature returns to its physical body, and it awakens.
The spell might also end early for you or one of your companions. A successful dispel magic spell used against an astral or physical body ends the spell for that creature. If a creature's original body or its astral form drops to 0 hit points, the spell ends for that creature. If the spell ends and the silver cord is intact, the cord pulls the creature's astral form back to its body, ending its state of suspended animation.
If you are returned to your body prematurely, your companions remain in their astral forms and must find their own way back to their bodies, usually by dropping to 0 hit points.
Choose one creature that you can see within range. The target begins a comic dance in place: shuffling, tapping its feet, and capering for the duration. Creatures taht can't be charmed are immune to this spell.
A dancing creature must use all its movement to dance without leaving its space and has disadvantage on Dexterity saving throws and attack rolls. While the target is affected by this spell, other creatures have advantage on attack rolls against it. As an action, a dancing creature makes a Wisdom saving throw to regain control of itself. On a successful save, the spell ends.
You create a 20-foot-radius sphere of yellow, nauseating gas centered on a point within range. The cloud spreads around corners, and its area is heavily obscured. The cloud lingers in the air for the duration.
Each creature that is completely within the cloud at the start of its turn must make a Constitution saving throw against poison. On a failed save, the creature spends its action that turn retching and reeling. Creatures that don't need to breathe or are immune to poison automatically succeed on this saving throw.
A moderate wind (at least 10 miles per hour) disperses the cloud after 4 rounds. A strong wind (at least 20 miles per hour) disperses it after 1 round.
You conjure a mass of thick, sticky webbing at a point of your choice within range. The webs fill a 20-foot cube from that point for the Duration. The webs are difficult terrain and lightly obscure their area.
If the webs aren't anchored between two solid masses (such as walls or trees) or layered across a floor, wall, or ceiling, the conjured web collapses on itself, and the spell ends at the start of your next turn. Webs layered over a flat surface have a depth of 5 feet.
Each creature that starts its turn in the webs or that enters them during its turn must make a Dexterity saving throw. On a failed save, the creature is Restrained as long as it remains in the webs or until it breaks free.
A creature Restrained by the webs can use its action to make a Strength check against your spell save DC. If it succeeds, it is no longer Restrained.
The webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire.
The touch of your shadow-wreathed hand can siphon life force from others to heal your wounds. Make a melee spell attack against a creature within your reach. On a hit, the target takes 3d6 necrotic damage, and you regain hit points equal to half the amount of necrotic damage dealt. Until the spell ends, you can make the attack again on each of your turns as an action.
You touch a creature and grant it a measure of protection from death.
The first time the target would drop to 0 hit points as a result of taking damage, the target instead drops to 1 hit point, and the spell ends.
If the spell is still in effect when the target is subjected to an effect that would kill it instantaneously without dealing damage, that effect is instead negated against the target, and the spell ends.
Drawing on the deepest fears of a group of creatures, you create illusory creatures in their minds, visible only to them. Each creature in a 30-foot-radius sphere centered on a point of your choice within range must make a Wisdom saving throw. On a failed save, a creature becomes Frightened for the Duration. The illusion calls on the creature's deepest fears, manifesting its worst nightmares as an implacable threat. At the end of each of the Frightened creature's turns, it must succeed on a Wisdom saving throw or take 4d10 psychic damage. On a successful save, the spell ends for that creature.
You summon a celestial of challenge rating 4 or lower, which appears in an unoccupied space that you can see within range. The celestial disappears when it drops to 0 hit points or when the spell ends.
The celestial is friendly to you and your companions for the duration. Roll initiative for the celestial, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you), as long as they don't violate its alignment. If you don't issue any commands to the celestial, it defends itself from hostile creatures but otherwise takes no actions.
Higher Levels. When you cast this spell using a 9th-level spell slot, you summon a celestial of challenge rating 5 or lower.
You project a phantasmal image of a creature's worst fears. Each creature in a 30-foot cone must succeed on a Wisdom saving throw or drop whatever it is holding and become Frightened for the duration.
While Frightened by this spell, a creature must take the Dash action and move away from you by the safest available route on each of its turns, unless there is nowhere to move. If the creature ends its turn in a location where it doesn't have line of sight to you, the creature can make a Wisdom saving throw. On a successful save, the spell ends for that creature.
You conjure a portal linking an unoccupied space you can see within range to a precise location on a different plane of existence. The portal is a circular opening, which you can make 5 to 20 feet in diameter. You can orient the portal in any direction you choose. The portal lasts for the Duration.
The portal has a front and a back on each plane where it appears. Travel through the portal is possible only by moving through its front. Anything that does so is instantly transported to the other plane, appearing in the unoccupied space nearest to the portal.
Deities and other planar rulers can prevent portals created by this spell from opening in their presence or anywhere within their domains.
When you cast this spell, you can speak the name of a specific creature (a pseudonym, title, or nickname doesn't work). If that creature is on a plane other than the one you are on, the portal opens in the named creature's immediate vicinity and draws the creature through it to the nearest unoccupied space on your side of the portal. You gain no special power over the creature, and it is free to act as the DM deems appropriate. It might leave, Attack you, or help you.
A flood of Healing energy flows from you into injured creatures around you. You restore up to 700 Hit Points, divided as you choose among any number of creatures that you can see within range. Creatures healed by this spell are also cured of all Diseases and any effect making them Blinded or Deafened. This spell has no effect on Undead or constructs.
An immobile, Invisible, cube-shaped prison composed of magical force springs into existence around an area you choose within range. The prison can be a cage or a solid box, as you choose.
A prison in the shape of a cage can be up to 20 feet on a side and is made from 1/2-inch diameter bars spaced 1/2 inch apart.
A prison in the shape of a box can be up to 10 feet on a side, creating a solid barrier that prevents any matter from passing through it and blocking any Spells cast into or out from the area.
When you cast the spell, any creature that is completely inside the cage's area is trapped. Creatures only partially within the area, or those too large to fit inside the area, are pushed away from the center of the area until they are completely outside the area.
A creature inside the cage can't leave it by nonmagical means. If the creature tries to use teleportation or interplanar travel to leave the cage, it must first make a Charisma saving throw. On a success, the creature can use that magic to exit the cage. On a failure, the creature can't exit the cage and wastes the use of the spell or effect. The cage also extends into the Ethereal Plane, blocking ethereal travel.
This spell can't be dispelled by Dispel Magic.
This spell grants the ability to move across any liquid surface—such as water, acid, mud, snow, quicksand, or lava—as if it were harmless solid ground (creatures crossing molten lava can still take damage from the heat). Up to ten willing creatures you can see within range gain this ability for the duration.
If you target a creature submerged in a liquid, the spell carries the target to the surface of the liquid at a rate of 60 feet per round.
This spell channels vitality into plants within a specific area. There are two possible uses for the spell, granting either immediate or long-term benefits.
If you cast this spell using 1 action, choose a point within range. All normal plants in a 100-foot radius centered on that point become thick and overgrown. A creature moving through the area must spend 4 feet of movement for every 1 foot it moves.
You can exclude one or more areas of any size within the spell's area from being affected.
If you cast this spell over 8 hours, you enrich the land. All plants in a half-mile radius centered on a point within range become enriched for 1 year. The plants yield twice the normal amount of food when harvested.
For the spell's Duration, your eyes become an inky void imbued with dread power. One creature of your choice within 60 feet of you that you can see must succeed on a Wisdom saving throw or be affected by one of the following Effects of your choice for the Duration. On each of your turns until the spell ends, you can use your action to target another creature but can't target a creature again if it has succeeded on a saving throw against this casting of eyebite.
This spell bestows hope and vitality. Choose any number of creatures within range. For the duration, each target has advantage on Wisdom saving throws and death saving throws, and regains the maximum number of hit points possible from any healing.
You create a magical restraint to hold a creature that you can see within range. The target must succeed on a Wisdom saving throw or be bound by the spell; if it succeeds, it is immune to this spell if you cast it again. While affected by this spell, the creature doesn't need to breathe, eat, or drink, and it doesn't age. Divination Spells can't locate or perceive the target.
When you cast the spell, you choose one of the following forms of imprisonment.
Burial. The target is entombed far beneath the earth in a Sphere of magical force that is just large enough to contain the target. Nothing can pass through the sphere, nor can any creature Teleport or use Planar Travel to get into or out of it. The special component for this version of the spell is a small mithral orb.
Chaining. Heavy chains, firmly rooted in the ground, hold the target in place. The target is Restrained until the spell ends, and it can't move or be moved by any means until then. The special component for this version of the spell is a fine chain of precious metal.
Hedged Prison. The spell transports the target into a tiny Demiplane that is warded against teleportation and Planar Travel. The Demiplane can be a labyrinth, a cage, a tower, or any similar confined structure or area of your choice. The special component for this version of the spell is a miniature representation of the prison made from jade.
Minimus Containment. The target shrinks to a height of 1 inch and is imprisoned inside a gemstone or similar object. Light can pass through the gemstone normally (allowing the target to see out and other creatures to see in), but nothing else can pass through, even by means of teleportation or Planar Travel. The gemstone can't be cut or broken while the spell remains in effect. The special component for this version of the spell is a large, transparent gemstone, such as a corundum, diamond, or ruby.
Slumber. The target falls asleep and can't be awoken. The special component for this version of the spell consists of rare soporific herbs.
Ending the Spell. During the casting of the spell, in any of its versions, you can specify a condition that will cause the spell to end and release the target. The condition can be as specific or as elaborate as you choose, but the DM must agree that the condition is reasonable and has a likelihood of coming to pass. The Conditions can be based on a creature's name, identity, or deity but otherwise must be based on observable Actions or qualities and not based on intangibles such as level, class, or Hit Points.
A Dispel Magic spell can end the spell only if it is cast as a 9th-level spell, targeting either the prison or the special component used to create it.
You can use a particular special component to create only one prison at a time. If you cast the spell again using the same component, the target of the first casting is immediately freed from its binding.
You create a Large hand of shimmering, translucent force in an unoccupied space that you can see within range. The hand lasts for the spell's Duration, and it moves at your command, mimicking the movements of your own hand.
The hand is an object that has AC 20 and Hit Points equal to your hit point maximum. If it drops to 0 Hit Points, the spell ends. It has a Strength of 26 (+8) and a Dexterity of 10 (+0). The hand doesn't fill its space.
When you cast the spell and as a Bonus Action on your subsequent turns, you can move the hand up to 60 feet and then cause one of the following Effects with it.
Clenched Fist. The hand strikes one creature or object within 5 feet of it. Make a melee spell Attack for the hand using your game Statistics. On a hit, the target takes 4d8 force damage.
Forceful Hand. The hand attempts to push a creature within 5 feet of it in a direction you choose. Make a check with the hand's Strength contested by the Strength (Athletics) check of the target. If the target is Medium or smaller, you have advantage on the check. If you succeed, the hand pushes the target up to 5 feet plus a number of feet equal to five times your Spellcasting ability modifier. The hand moves with the target to remain within 5 feet of it.
Grasping Hand. The hand attempts to grapple a Huge or smaller creature within 5 feet of it. You use the hand's Strength score to resolve the grapple. If the target is Medium or smaller, you have advantage on the check. While the hand is Grappling the target, you can use a Bonus Action to have the hand crush it. When you do so, the target takes bludgeoning damage equal to 2d6 + your Spellcasting ability modifier.
Interposing Hand. The hand interposes itself between you and a creature you choose until you give the hand a different command. The hand moves to stay between you and the target, providing you with half cover against the target. The target can't move through the hand's space if its Strength score is less than or equal to the hand's Strength score. If its Strength score is higher than the hand's Strength score, the target can move toward you through the hand's space, but that space is difficult terrain for the target.
At Higher Levels. When you cast this spell using a spell slot of 6th level or higher, the damage from the clenched fist option increases by 2d8 and the damage from the grasping hand increases by 2d6 for each slot level above 5th.
You touch a length of rope that is up to 60 feet long. One end of the rope then rises into the air until the whole rope hangs perpendicular to the ground. At the upper end of the rope, an invisible entrance opens to an extradimensional space that lasts until the spell ends.
The extradimensional space can be reached by climbing to the top of the rope. The space can hold as many as eight Medium or smaller creatures. The rope can be pulled into the space, making the rope disappear from view outside the space.
Attacks and spells can't cross through the entrance into or out of the extradimensional space, but those inside can see out of it as if through a 3-foot-by-5-foot window centered on the rope.
Anything inside the extradimensional space drops out when the spell ends.
You create an Illusion of an object, a creature, or some other visible phenomenon within range that activates when a specific condition occurs. The illusion is imperceptible until then. It must be no larger than a 30-foot cube, and you decide when you cast the spell how the illusion behaves and what sounds it makes. This scripted Performance can last up to 5 minutes.
When the condition you specify occurs, the illusion springs into existence and performs in the manner you described. Once the illusion finishes performing, it disappears and remains dormant for 10 minutes. After this time, the illusion can be activated again.
The triggering condition can be as general or as detailed as you like, though it must be based on visual or audible Conditions that occur within 30 feet of the area. For example, you could create an illusion of yourself to appear and warn off others who attempt to open a trapped door, or you could set the illusion to trigger only when a creature says the correct word or phrase.
Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the Illusion for what it is, the creature can see through the image, and any noise it makes sounds hollow to the creature
A silvery beam of pale light shines down in a 5-foot-radius, 40-foot-high Cylinder centered on a point within range. Until the spell ends, dim light fills the cylinder.
When a creature enters the spell's area for the first time on a turn or starts its turn there, it is engulfed in ghostly flames that cause searing pain, and it must make a Constitution saving throw. It takes 2d10 radiant damage on a failed save, or half as much damage on a successful one.
A Shapechanger makes its saving throw with disadvantage. If it fails, it also instantly reverts to its original form and can't assume a different form until it leaves the spell's light.
On each of your turns after you cast this spell, you can use an action to move the beam up to 60 feet in any direction.
At Higher Levels. When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d10 for each slot level above 2nd.
This spell creates a circular, horizontal plane of force, 3 feet in diameter and 1 inch thick, that floats 3 feet above the ground in an unoccupied space of your choice that you can see within range. The disk remains for the Duration, and can hold up to 500 pounds. If more weight is placed on it, the spell ends, and everything on the disk falls to the ground.
The disk is immobile while you are within 20 feet of it. If you move more than 20 feet away from it, the disk follows you so that it remains within 20 feet of you. It can move across uneven terrain, up or down stairs, slopes and the like, but it can't cross an elevation change of 10 feet or more. For example, the disk can't move across a 10-foot-deep pit, nor could it leave such a pit if it was created at the bottom.
If you move more than 100 feet from the disk (typically because it can't move around an obstacle to follow you), the spell ends.
This spell allows you to find the shortest, most direct physical route to a specific fixed location that you are familiar with on the same plane of existence. If you name a destination on another plane of existence, a destination that moves (such as a Mobile fortress), or a destination that isn't specific (such as \"a green dragon's lair\"), the spell fails.
For the Duration, as long as you are on the same plane of existence as the destination, you know how far it is and in what direction it lies. While you are traveling there, whenever you are presented with a choice of paths along the way, you automatically determine which path is the shortest and most direct route (but not necessarily the safest route) to the destination.
This spell creates an Invisible, mindless, shapeless, Medium force that performs simple tasks at your command until the spell ends. The servant springs into existence in an unoccupied space on the ground within range. It has AC 10, 1 hit point, and a Strength of 2, and it can't attack. If it drops to 0 hit points, the spell ends.
Once on each of your turns as a Bonus Action, you can mentally command the servant to move up to 15 feet and interact with an object. The servant can perform simple tasks that a human servant could do, such as fetching things, cleaning, mending, folding clothes, lighting fires, serving food, and pouring wine. Once you give the command, the servant performs the task to the best of its ability until it completes the task, then waits for your next command.
If you command the servant to perform a task that would move it more than 60 feet away from you, the spell ends.
You banish a creature that you can see within range into a labyrinthine Demiplane. The target remains there for the Duration or until it escapes the maze.
The target can use its action to attempt to escape. When it does so, it makes a DC 20 Intelligence check. If it succeeds, it escapes, and the spell ends (a Minotaur or Goristro demon automatically succeeds).
When the spell ends, the target reappears in the space it left or, if that space is occupied, in the nearest unoccupied space.
You transform up to ten centipedes, three spiders, five wasps, or one Scorpion within range into giant versions of their natural forms for the Duration. A centipede becomes a Giant Centipede, a Spider becomes a Giant Spider, a wasp becomes a Giant Wasp, and a Scorpion becomes a Giant Scorpion.
Each creature obeys your verbal commands, and in Combat, they act on Your Turn each round. The DM has the Statistics for these creatures and resolves their Actions and Movement.
A creature remains in its giant size for the Duration, until it drops to 0 Hit Points, or until you use an action to dismiss the effect on it.
The DM might allow you to choose different Targets. For example, if you transform a bee, its giant version might have the same Statistics as a Giant Wasp.
A passage appears at a point of your choice that you can see on a wooden, plaster, or stone surface (such as a wall, a ceiling, or a floor) within range, and lasts for the duration. You choose the opening's dimensions: up to 5 feet wide, 8 feet tall, and 20 feet deep. The passage creates no instability in a structure surrounding it.
When the opening disappears, any creatures or objects still in the passage created by the spell are safely ejected to an unoccupied space nearest to the surface on which you cast the spell.
You summon fey creatures that appear in unoccupied spaces that you can see within range. Choose one of the following options for what appears:
A summoned creature disappears when it drops to 0 hit points or when the spell ends.
The summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which have their own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions.
You mentally contact a demigod, the spirit of a long-dead sage, or some other mysterious entity from another plane. Contacting this extraplanar intelligence can strain or even break your mind. When you cast this spell, make a DC 15 Intelligence saving throw. On a failure, you take 6d6 psychic damage and are insane until you finish a long rest. While insane, you can't take actions, can't understand what other creatures say, can't read, and speak only in gibberish. A greater restoration spell cast on you ends this effect.
On a successful save, you can ask the entity up to five questions. You must ask your questions before the spell ends. The DM answers each question with one word, such as \"yes,\" \"no,\" \"maybe,\" \"never,\" \"irrelevant,\" or \"unclear\" (if the entity doesn't know the answer to the question). If a one-word answer would be misleading, the DM might instead offer a short phrase as an answer.
Until the spell ends, freezing rain and sleet fall in a 20-foot-tall cylinder with a 40-foot radius centered on a point you choose within range. The area is heavily obscured, and exposed flames in the area are doused.
The ground in the area is covered with slick ice, making it difficult terrain. When a creature enters the spell's area for the first time on a turn or starts its turn there, it must make a Dexterity saving throw. On a failed save, it falls Prone.
If a creature is concentrating in the spell's area, the creature must make a successful Constitution saving throw against your spell save DC or lose concentration.
You touch one willing creature. Once before the spell ends, the target can roll a d4 and add the number rolled to one saving throw of its choice. It can roll the die before or after making the saving throw. The spell then ends.
You briefly become one with nature and gain knowledge of the surrounding territory. In the outdoors, the spell gives you knowledge of the land within 3 miles of you. In caves and other natural underground settings, the radius is limited to 300 feet. The spell doesn't function where nature has been replaced by construction, such as in dungeons and towns.
You instantly gain knowledge of up to three facts of your choice about any of the following subjects as they relate to the area:
For example, you could determine the location of powerful undead in the area, the location of major sources of safe drinking water, and the location of any nearby towns.
Eight multicolored rays of light flash from your hand. Each ray is a different color and has a different power and purpose. Each creature in a 60-foot cone must make a Dexterity saving throw. For each target, roll a d8 to determine which color ray affects it.
You create an illusory copy of yourself that lasts for the Duration. The copy can appear at any location within range that you have seen before, regardless of intervening obstacles. The Illusion looks and sounds like you but is intangible. If the illusion takes any damage, it disappears, and the spell ends.
You can use your action to move this illusion up to twice your speed, and make it gesture, speak, and behave in whatever way you choose. It mimics your mannerisms perfectly.
You can see through its eyes and hear through its ears as if you were in its space. On Your Turn as a Bonus Action, you can switch from using its senses to using your own, or back again. While you are using its senses, you are Blinded and Deafened in regard to your own surroundings.
Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an Illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and any noise it makes sounds hollow to the creature.
A storm cloud appears in the shape of a cylinder that is 10 feet tall with a 60-foot radius, centered on a point you can see 100 feet directly above you. The spell fails if you can't see a point in the air where the storm cloud could appear (for example, if you are in a room that can't accommodate the cloud).
When you cast the spell, choose a point you can see within range. A bolt of lightning flashes down from the cloud to that point. Each creature within 5 feet of that point must make a Dexterity saving throw. A creature takes 3d10 lightning damage on a failed save, or half as much damage on a successful one. On each of your turns until the spell ends, you can use your action to call down lightning in this way again, targeting the same point or a different one.
If you are outdoors in stormy conditions when you cast this spell, the spell gives you control over the existing storm instead of creating a new one. Under such conditions, the spell's damage increases by 1d10.
Higher Levels. When you cast this spell using a spell slot of 4th or higher level, the damage increases by 1d10 for each slot level above 3rd.
Your body falls into a catatonic state as your soul leaves it and enters the container you used for the spell's material component. While your soul inhabits the container, you are aware of your surroundings as if you were in the container's space. You can't move or use reactions. The only action you can take is to project your soul up to 100 feet out of the container, either returning to your living body (and ending the spell) or attempting to possess a humanoids body.
You can attempt to possess any humanoid within 100 feet of you that you can see (creatures warded by a protection from evil and good or magic circle spell can't be possessed). The target must make a Charisma saving throw. On a failure, your soul moves into the target's body, and the target's soul becomes trapped in the container. On a success, the target resists your efforts to possess it, and you can't attempt to possess it again for 24 hours.
Once you possess a creature's body, you control it. Your game statistics are replaced by the statistics of the creature, though you retain your alignment and your Intelligence, Wisdom, and Charisma scores. You retain the benefit of your own class features. If the target has any class levels, you can't use any of its class features.
Meanwhile, the possessed creature's soul can perceive from the container using its own senses, but it can't move or take actions at all.
While possessing a body, you can use your action to return from the host body to the container if it is within 100 feet of you, returning the host creature's soul to its body. If the host body dies while you're in it, the creature dies, and you must make a Charisma saving throw against your own spellcasting DC. On a success, you return to the container if it is within 100 feet of you. Otherwise, you die.
If the container is destroyed or the spell ends, your soul immediately returns to your body. If your body is more than 100 feet away from you or if your body is dead when you attempt to return to it, you die. If another creature's soul is in the container when it is destroyed, the creature's soul returns to its body if the body is alive and within 100 feet. Otherwise, that creature dies.
When the spell ends, the container is destroyed.
Slick grease covers the ground in a 10-foot square centered on a point within range and turns it into difficult terrain for the duration.
When the grease appears, each creature standing in its area must succeed on a Dexterity saving throw or fall prone. A creature that enters the area or ends its turn there must also succeed on a Dexterity saving throw or fall prone.
A wall of strong wind rises from the ground at a point you choose within range. You can make the wall up to 50 feet long, 15 feet high, and 1 foot thick. You can shape the wall in any way you choose so long as it makes one continuous path along the ground. The wall lasts for the Duration.
When the wall appears, each creature within its area must make a Strength saving throw. A creature takes 3d8 bludgeoning damage on a failed save, or half as much damage on a successful one.
The strong wind keeps fog, smoke, and other gases at bay. Small or smaller flying creatures or objects can't pass through the wall. Loose, lightweight materials brought into the wall fly upward. Arrows, bolts, and other ordinary projectiles launched at targets behind the wall are deflected upward and automatically miss. (Boulders hurled by Giants or siege engines, and similar projectiles, are unaffected.) Creatures in gaseous form can't pass through it.
You make terrain in an area up to 1 mile square look, sound, smell, and even feel like some other sort of terrain. The terrain's general shape remains the same, however. Open fields or a road could be made to resemble a swamp, hill, crevasse, or some other difficult or impassable terrain. A pond can be made to seem like a grassy meadow, a precipice like a gentle slope, or a rock-strewn gully like a wide and smooth road.
Similarly, you can alter the appearance of structures, or add them where none are present. The spell doesn't disguise, conceal, or add creatures.
The Illusion includes audible, visual, tactile, and olfactory elements, so it can turn clear ground into difficult terrain (or vice versa) or otherwise impede Movement through the area. Any piece of the illusory terrain (such as a rock or stick) that is removed from the spell's area disappears immediately.
Creatures with Truesight can see through the Illusion to the terrain's true form; however, all other elements of the illusion remain, so while the creature is aware of the illusion's presence, the creature can still physically interact with the illusion.
You beseech an otherworldly entity for aid. The being must be known to you: a god, a Primordial, a demon prince, or some other being of cosmic power. That entity sends a Celestial, an elemental, or a fiend loyal to it to aid you, making the creature appear in an unoccupied space within range. If you know a specific creature's name, you can speak that name when you cast this spell to request that creature, though you might get a different creature anyway (DM's choice).
When the creature appears, it is under no Compulsion to behave in any particular way. You can ask the creature to perform a service in exchange for payment, but it isn't obliged to do so. The requested task could range from simple (fly us across the chasm, or help us fight a battle) to complex (spy on our enemies, or protect us during our foray into the dungeon). You must be able to communicate with the creature to bargain for its Services.
Payment can take a variety of forms. A Celestial might require a sizable donation of gold or Magic Items to an allied Temple, while a fiend might demand a living sacrifice or a gift of Treasure. Some creatures might exchange their service for a quest undertaken by you.
As a rule of thumb, a task that can be measured in minutes requires a payment worth 100 gp per minute. A task measured in hours requires 1,000 gp per hour. And a task measured in days (up to 10 days) requires 10,000 gp per day. The DM can adjust these payments based on the circumstances under which you cast the spell. If the task is aligned with the creature's ethos, the payment might be halved or even waived. Nonhazardous tasks typically require only half the suggested payment, while especially dangerous tasks might require a greater gift. Creatures rarely accept tasks that seem suicidal.
After the creature completes the task, or when the agreed-upon Duration of service expires, the creature returns to its home plane after reporting back to you, if appropriate to the task and if possible. If you are unable to agree on a price for the creature's service, the creature immediately returns to its home plane.
A creature enlisted to join your group counts as a member of it, receiving a full share of Experience Points awarded.
You create a wall of ice on a solid surface within range. You can form it into a hemispherical dome or a sphere with a radius of up to 10 feet, or you can shape a flat surface made up of ten 10-foot-square panels. Each panel must be contiguous with another panel. In any form, the wall is 1 foot thick and lasts for the Duration.
If the wall cuts through a creature's space when it appears, the creature within its area is pushed to one side of the wall and must make a Dexterity saving throw. On a failed save, the creature takes 10d6 cold damage, or half as much damage on a successful save.
The wall is an object that can be damaged and thus breached. It has AC 12 and 30 hit points per 10-foot section, and it is vulnerable to fire damage. Reducing a 10-foot section of wall to 0 hit points destroys it and leaves behind a sheet of frigid air in the space the wall occupied. A creature moving through the sheet of frigid air for the first time on a turn must make a Constitution saving throw. That creature takes 5d6 cold damage on a failed save, or half as much damage on a successful one.
At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the damage the wall deals when it appears increases by 2d6, and the damage from passing through the sheet of frigid air increases by 1d6, for each slot level above 6th.
You extend your hand toward a creature you can see within range and project a puff of noxious gas from your palm. The creature must succeed on a Constitution saving throw or take 1d12 poison damage.
This spell's damage increases by 1d12 when you reach 5th level (2d12), 11th level (3d12), and 17th level (4d12).
Describe or name a creature that is familiar to you. You sense the direction to the creature's location, as long as that creature is within 1,000 feet of you. If the creature is moving, you know the direction of its movement.
The spell can locate a specific creature known to you, or the nearest creature of a specific kind (such as a human or a unicorn), so long as you have seen such a creature up close—within 30 feet—at least once. If the creature you described or named is in a different form, such as being under the effects of a polymorph spell, this spell doesn't locate the creature.
This spell can't locate a creature if running water at least 10 feet wide blocks a direct path between you and the creature.
This spell grows an inert duplicate of a living creature as a safeguard against death. This clone forms inside a sealed vessel and grows to full size and maturity after 120 days; you can also choose to have the clone be a younger version of the same creature. It remains inert and endures indefinitely, as long as its vessel remains undisturbed.
At any time after the clone matures, if the original creature dies, its soul transfers to the clone, provided that the soul is free and willing to return. The clone is physically identical to the original and has the same personality, memories, and abilities, but none of the original's equipment. The original creature's physical remains, if they still exist, become inert and can't thereafter be restored to life, since the creature's soul is elsewhere.
You touch a willing creature to grant it the ability to see in the dark. For the duration, that creature has darkvision out to a range of 60 feet.
You blast the mind of a creature that you can see within range, attempting to shatter its intellect and personality. The target takes 4d6 psychic damage and must make an Intelligence saving throw.
On a failed save, the creature's Intelligence and Charisma scores become 1. The creature can't cast Spells, activate Magic Items, understand language, or communicate in any intelligible way. The creature can, however, identify its friends, follow them, and even protect them.
At the end of every 30 days, the creature can repeat its saving throw against this spell. If it succeeds on its saving throw, the spell ends.
The spell can also be ended by Greater Restoration, heal, or wish.
Brilliant sunlight flashes in a 60-foot radius centered on a point you choose within range. Each creature in that light must make a Constitution saving throw. On a failed save, a creature takes 12d6 radiant damage and is Blinded for 1 minute. On a successful save, it takes half as much damage and isn't blinded by this spell. Undead and oozes have disadvantage on this saving throw.
A creature Blinded by this spell makes another Constitution saving throw at the end of each of its turns. On a successful save, it is no longer blinded.
This spell dispels any Darkness in its area that was created by a spell.
For the duration, the willing creature you touch has resistance to one damage type of your choice: acid, cold, fire, lightning, or thunder.
Divine light washes out from you and coalesces in a soft radiance in a 30-foot radius around you. Creatures of your choice in that radius when you cast this spell shed dim light in a 5-foot radius and have advantage on all Saving Throws, and other creatures have disadvantage on Attack rolls against them until the spell ends. In addition, when a fiend or an Undead hits an affected creature with a melee attack, the aura flashes with brilliant light. The attacker must succeed on a Constitution saving throw or be Blinded until the spell ends.
You shape an illusory duplicate of one beast or humanoid that is within range for the entire casting time of the spell. The duplicate is a creature, partially real and formed from ice or snow, and it can take actions and otherwise be affected as a normal creature. It appears to be the same as the original, but it has half the creature's hit point maximum and is formed without any equipment. Otherwise, the illusion uses all the statistics of the creature it duplicates.
The simulacrum is friendly to you and creatures you designate. It obeys your spoken commands, moving and acting in accordance with your wishes and acting on your turn in combat. The simulacrum lacks the ability to learn or become more powerful, so it never increases its level or other abilities, nor can it regain expended spell slots.
If the simulacrum is damaged, you can repair it in an alchemical laboratory, using rare herbs and minerals worth 100 gp per hit point it regains. The simulacrum lasts until it drops to 0 hit points, at which point it reverts to snow and melts instantly.
If you cast this spell again, any currently active duplicates you created with this spell are instantly destroyed.
A shimmering, multicolored plane of light forms a vertical opaque wall—up to 90 feet long, 30 feet high, and 1 inch thick—centered on a point you can see within range. Alternatively, you can shape the wall into a Sphere up to 30 feet in diameter centered on a point you choose within range. The wall remains in place for the Duration. If you position the wall so that it passes through a space occupied by a creature, the spell fails, and your action and the spell slot are wasted.
The wall sheds bright light out to a range of 100 feet and dim light for an additional 100 feet. You and creatures you designate at the time you cast the spell can pass through and remain near the wall without harm. If another creature that can see the wall moves to within 20 feet of it or starts its turn there, the creature must succeed on a Constitution saving throw or become Blinded for 1 minute.
The wall consists of seven layers, each with a different color. When a creature attempts to reach into or pass through the wall, it does so one layer at a time through all the wall's layers. As it passes or reaches through each layer, the creature must make a Dexterity saving throw or be affected by that layer's properties as described below.
The wall can be destroyed, also one layer at a time, in order from red to violet, by means specific to each layer. Once a layer is destroyed, it remains so for the Duration of the spell. An Antimagic Field has no effect on the wall, and Dispel Magic works only against the violet layer.
You attempt to turn one creature that you can see within range into stone. If the target's body is made of flesh, the creature must make a Constitution saving throw. On a failed save, it is Restrained as its flesh begins to harden. On a successful save, the creature isn't affected.
A creature Restrained by this spell must make another Constitution saving throw at the end of each of its turns. If it successfully saves against this spell three times, the spell ends. If it fails its saves three times, it is turned to stone and subjected to the Petrified condition for the Duration. The successes and failures don't need to be consecutive; keep track of both until the target collects three of a kind.
If the creature is physically broken while Petrified, it suffers from similar deformities if it reverts to its original state.
If you maintain your Concentration on this spell for the entire possible Duration, the creature is turned to stone until the effect is removed.
Blazing orbs of fire plummet to the ground at four different points you can see within range. Each creature in a 40-foot-radius sphere centered on each point you choose must make a Dexterity saving throw. The sphere spreads around corners. A creature takes 20d6 fire damage and 20d6 bludgeoning damage on a failed save, or half as much damage on a successful one. A creature in the area of more than one fiery burst is affected only once.
The spell damages objects in the area and ignites flammable objects that aren't being worn or carried.
You extend your hand and point a finger at a target in range. Your magic grants you a brief insight into the target's defenses. On your next turn, you gain advantage on your first attack roll against the target, provided that this spell hasn't ended.
This spell allows you to change the appearance of any number of creatures that you can see within range. You give each target you choose a new, illusory appearance. An unwilling target can make a Charisma saving throw, and if it succeeds, it is unaffected by this spell.
The spell disguises physical appearance as well as clothing, armor, Weapons, and Equipment. You can make each creature seem 1 foot shorter or taller and appear thin, fat, or in between. You can't change a target's body type, so you must choose a form that has the same basic arrangement of limbs. Otherwise, the extent of the Illusion is up to you. The spell lasts for the Duration, unless you use your action to dismiss it sooner.
The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to a creature's outfit, Objects pass through the hat, and anyone who touches it would feel nothing or would feel the creature's head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair.
A creature can use its action to inspect a target and make an Intelligence (Investigation) check against your spell save DC. If it succeeds, it becomes aware that the target is disguised.
You touch a corpse or other remains. For the duration, the target is protected from decay and can't become undead.
The spell also effectively extends the time limit on raising the target from the dead, since days spent under the influence of this spell don't count against the time limit of spells such as raise dead.
Your magic turns others into beasts. Choose any number of willing creatures that you can see within range. You transform each target into the form of a Large or smaller beast with a challenge rating of 4 or lower. On subsequent turns, you can use your action to transform affected creatures into new forms.
The transformation lasts for the duration for each target, or until the target drops to 0 hit points or dies. You can choose a different form for each target. A target's game statistics are replaced by the statistics of the chosen beast, though the target retains its alignment and Intelligence, Wisdom, and Charisma scores. The target assumes the hit points of its new form, and when it reverts to its normal form, it returns to the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked unconscious. The creature is limited in the actions it can perform by the nature of its new form, and it can't speak or cast spells.
The target's gear melds into the new form. The target can't activate, wield, or otherwise benefit from any of its equipment.
When you cast this spell, you inscribe a glyph that later unleashes a magical effect. You inscribe it either on a surface (such as a table or a section of floor or wall) or within an object that can be closed (such as a book, a scroll, or a treasure chest) to conceal the glyph. The glyph can cover an area no larger than 10 feet in diameter. If the surface or object is moved more than 10 feet from where you cast this spell, the glyph is broken, and the spell ends without being triggered.
The glyph is nearly invisible and requires a successful Intelligence (Investigation) check against your spell save DC to be found.
You decide what triggers the glyph when you cast the spell. For glyphs inscribed on a surface, the most typical triggers include touching or standing on the glyph, removing another object covering the glyph, approaching within a certain distance of the glyph, or manipulating the object on which the glyph is inscribed. For glyphs inscribed within an object, the most common triggers include opening that object, approaching within a certain distance of the object, or seeing or reading the glyph. Once a glyph is triggered, this spell ends.
You can further refine the trigger so the spell activates only under certain circumstances or according to physical characteristics (such as height or weight), creature kind (for example, the ward could be set to affect aberrations or drow), or alignment. You can also set conditions for creatures that don't trigger the glyph, such as those who say a certain password.
When you inscribe the glyph, choose explosive runes or a spell glyph.
Explosive Runes. When triggered, the glyph erupts with magical energy in a 20-foot-radius sphere centered on the glyph. The sphere spreads around corners. Each creature in the area must make a Dexterity saving throw. A creature takes [[/r 5d8]] acid, cold, fire, lightning, or thunder damage on a failed saving throw (your choice when you create the glyph), or half as much damage on a successful one.
Spell Glyph. You can store a prepared spell of 3rd level or lower in the glyph by casting it as part of creating the glyph. The spell must target a single creature or an area. The spell being stored has no immediate effect when cast in this way. When the glyph is triggered, the stored spell is cast. If the spell has a target, it targets the creature that triggered the glyph. If the spell affects an area, the area is centered on that creature. If the spell summons hostile creatures or creates harmful objects or traps, they appear as close as possible to the intruder and attack it. If the spell requires concentration, it lasts until the end of its full duration.
At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the damage of an explosive runes glyph increases by 1d8 for each slot level above 3rd. If you create a spell glyph, you can store any spell of up to the same level as the slot you use for the glyph of warding.
A swirling cloud of smoke shot through with white-hot embers appears in a 20-foot-radius Sphere centered on a point within range. The cloud spreads around corners and is heavily obscured. It lasts for the Duration or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.
When the cloud appears, each creature in it must make a Dexterity saving throw. A creature takes 10d8 fire damage on a failed save, or half as much damage on a successful one. A creature must also make this saving throw when it enters the spell's area for the first time on a turn or ends its turn there.
The cloud moves 10 feet directly away from you in a direction that you choose at the start of each of your turns.
You conjure an extradimensional dwelling in range that lasts for the Duration. You choose where its one entrance is located. The entrance shimmers faintly and is 5 feet wide and 10 feet tall. You and any creature you designate when you cast the spell can enter the extradimensional dwelling as long as the portal remains open. You can open or close the portal if you are within 30 feet of it. While closed, the portal is Invisible.
Beyond the portal is a magnificent foyer with numerous chambers beyond. The atmosphere is clean, fresh, and warm.
You can create any floor plan you like, but the space can't exceed 50 cubes, each cube being 10 feet on each side. The place is furnished and decorated as you choose. It contains sufficient food to serve a nine-course banquet for up to 100 people. A staff of 100 near-transparent Servants attends all who enter. You decide the visual appearance of these Servants and their attire. They are completely obedient to your orders. Each servant can perform any task a normal human servant could perform, but they can't Attack or take any action that would directly harm another creature. Thus the Servants can fetch things, clean, mend, fold clothes, light fires, serve food, pour wine, and so on. The Servants can go anywhere in the mansion but can't leave it. Furnishings and other Objects created by this spell dissipate into smoke if removed from the mansion. When the spell ends, any creatures inside the extradimensional space are expelled into the open spaces nearest to the entrance.
You touch a creature that has been dead for no longer than 200 years and that died for any reason except old age. If the creature's soul is free and willing, the creature is restored to life with all its hit points.
This spell closes all wounds, neutralizes any poison, cures all diseases, and lifts any curses affecting the creature when it died. The spell replaces damaged or missing organs and limbs. If the creature was undead, it is restored to its non-undead form.
The spell can even provide a new body if the original no longer exists, in which case you must speak the creature's name. The creature then appears in an unoccupied space you choose within 10 feet of you.
Choose a creature that you can see within range. A surge of positive energy washes through the creature, causing it to regain 70 Hit Points. This spell also ends blindness, deafness, and any Diseases affecting the target. This spell has no effect on constructs or Undead.
At Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the amount of Healing increases by 10 for each slot level above 6th.
You attempt to reshape another creature's memories. One creature that you can see must make a Wisdom saving throw. If you are fighting the creature, it has advantage on the saving throw. On a failed save, the target becomes Charmed by you for the Duration. The charmed target is Incapacitated and unaware of its surroundings, though it can still hear you. If it takes any damage or is targeted by another spell, this spell ends, and none of the target's memories are modified.
While this charm lasts, you can affect the target's memory of an event that it experienced within the last 24 hours and that lasted no more than 10 minutes. You can permanently eliminate all memory of the event, allow the target to recall the event with perfect clarity and exacting detail, change its memory of the details of the event, or create a memory of some other event.
You must speak to the target to describe how its memories are affected, and it must be able to understand your language for the modified memories to take root. Its mind fills in any gaps in the details of your description. If the spell ends before you have finished describing the modified memories, the creature's memory isn't altered. Otherwise, the modified memories take hold when the spell ends.
A modified memory doesn't necessarily affect how a creature behaves, particularly if the memory contradicts the creature's natural inclinations, Alignment, or beliefs. An illogical modified memory, such as implanting a memory of how much the creature enjoyed dousing itself in acid, is dismissed, perhaps as a bad dream. The DM might deem a modified memory too nonsensical to affect a creature in a significant manner.
A Remove Curse or Greater Restoration spell cast on the target restores the creature's true memory.
At Higher Levels. If you cast this spell using a spell slot of 6th level or higher, you can alter the target's memories of an event that took place up to 7 days ago (6th level), 30 days ago (7th level), 1 year ago (8th level), or any time in the creature's past (9th level).
This spell creates a magical link between a Large or larger inanimate plant within range and another plant, at any distance, on the same plane of existence. You must have seen or touched the destination plant at least once before. For the Duration, any creature can step into the target plant and exit from the destination plant by using 5 feet of Movement.
You make natural terrain in a 150-foot cube in range look, sound, and smell like some other sort of natural terrain. Thus, open fields or a road can be made to resemble a swamp, hill, crevasse, or some other difficult or impassable terrain. A pond can be made to seem like a grassy meadow, a precipice like a gentle slope, or a rock-strewn gully like a wide and smooth road. Manufactured structures, Equipment, and creatures within the area aren't changed in appearance.
The tactile characteristics of the terrain are unchanged, so creatures entering the area are likely to see through the Illusion. If the difference isn't obvious by touch, a creature carefully examining the Illusion can attempt an Intelligence (Investigation) check against your spell save DC to disbelieve it. A creature who discerns the Illusion for what it is, sees it as a vague image superimposed on the terrain.
You forge a telepathic link among up to eight willing creatures of your choice within range, psychically linking each creature to all the others for the duration. Creatures with Intelligence scores of 2 or less aren't affected by this spell.
Until the spell ends, the targets can communicate telepathically through the bond whether or not they have a common language. The communication is possible over any distance, though it can't extend to other planes of existence.
A sudden loud ringing noise, painfully intense, erupts from a point of your choice within range. Each creature in a 10-foot-radius sphere centered on that point must make a Constitution saving throw. A creature takes 3d8 thunder damage on a failed save, or half as much damage on a successful one. A creature made of inorganic material such as stone, crystal, or metal has disadvantage on this saving throw.
A nonmagical object that isn't being worn or carried also takes the damage if it's in the spell's area.
Higher Levels. When you cast this spell using a 3 or higher level spell slot, the damage of the spell increases by 1d8 for each level of higher spell slot 2.
A shimmering barrier extends out from you in a 10-foot radius and moves with you, remaining centered on you and hedging out creatures other than undead and constructs. The barrier lasts for the duration.
The barrier prevents an affected creature from passing or reaching through. An affected creature can cast spells or make attacks with ranged or reach weapons through the barrier.
If you move so that an affected creature is forced to pass through the barrier, the spell ends.
A Large quasi-real, horselike creature appears on the ground in an unoccupied space of your choice within range. You decide the creature's appearance, but it is equipped with a saddle, bit, and bridle. Any of the equipment created by the spell vanishes in a puff of smoke if it is carried more than 10 feet away from the steed.
For the duration, you or a creature you choose can ride the steed. The creature uses the statistics for a riding horse, except it has a speed of 100 feet and can travel 10 miles in an hour, or 13 miles at a fast pace. When the spell ends, the steed gradually fades, giving the rider 1 minute to dismount. The spell ends if you use an action to dismiss it or if the steed takes any damage.
By means of this spell, a willing creature or an object can be hidden away, safe from detection for the Duration. When you cast the spell and touch the target, it becomes Invisible and can't be targeted by divination spells or perceived through Scrying sensors created by Divination Spells.
If the target is a creature, it falls into a state of suspended animation. Time ceases to flow for it, and it doesn't grow older.
You can set a condition for the spell to end early. The condition can be anything you choose, but it must occur or be visible within 1 mile of the target. Examples include \"after 1,000 years\" or \"when the Tarrasque awakens.\" This spell also ends if the target takes any damage.
You create a seismic disturbance at a point on the ground that you can see within range. For the Duration, an intense tremor rips through the ground in a 100-foot-radius circle centered on that point and shakes creatures and structures in contact with the ground in that area.
The ground in the area becomes difficult terrain. Each creature on the ground that is concentrating must make a Constitution saving throw. On a failed save, the creature's Concentration is broken.
When you cast this spell and at the end of each turn you spend concentrating on it, each creature on the ground in the area must make a Dexterity saving throw. On a failed save, the creature is knocked prone.
This spell can have additional Effects depending on the terrain in the area, as determined by the DM.
Fissures. Fissures open throughout the spell's area at the start of your next turn after you cast the spell. A total of 1d6 such fissures open in locations chosen by the DM. Each is 1d10 × 10 feet deep, 10 feet wide, and extends from one edge of the spell's area to the opposite side. A creature standing on a spot where a fissure opens must succeed on a Dexterity saving throw or fall in. A creature that successfully saves moves with the fissure's edge as it opens.
A fissure that opens beneath a structure causes it to automatically collapse (see below).
Structures. The tremor deals 50 bludgeoning damage to any structure in contact with the ground in the area when you cast the spell and at the start of each of your turns until the spell ends. If a structure drops to 0 Hit Points, it collapses and potentially damages nearby creatures. A creature within half the distance of a structure's height must make a Dexterity saving throw. On a failed save, the creature takes 5d6 bludgeoning damage, is knocked prone, and is buried in the rubble, requiring a DC 20 Strength (Athletics) check as an action to escape. The DM can adjust the DC higher or lower, depending on the Nature of the rubble. On a successful save, the creature takes half as much damage and doesn't fall prone or become buried.
You create a shadowy door on a flat solid surface that you can see within range. The door is large enough to allow Medium creatures to pass through unhindered. When opened, the door leads to a demiplane that appears to be an empty room 30 feet in each dimension, made of wood or stone. When the spell ends, the door disappears, and any creatures or objects inside the demiplane remain trapped there, as the door also disappears from the other side.
Each time you cast this spell, you can create a new demiplane, or have the shadowy door connect to a demiplane you created with a previous casting of this spell. Additionally, if you know the nature and contents of a demiplane created by a casting of this spell by another creature, you can have the shadowy door connect to its demiplane instead.
You create a 10-foot-radius, 20-foot-tall Cylinder of magical energy centered on a point on the ground that you can see within range. Glowing runes appear wherever the cylinder intersects with the floor or other surface.
Choose one or more of the following types of creatures: Celestials, Elementals, fey, Fiends, or Undead. The circle affects a creature of the chosen type in the following ways:
When you cast this spell, you can elect to cause its magic to operate in the reverse direction, preventing a creature of the specified type from leaving the cylinder and protecting targets outside it.
At Higher Levels. When you cast this spell using a spell slot of 4th level or higher, the Duration increases by 1 Hour for each slot level above 3rd.
Choose an area of terrain no larger than 40 feet on a side within range. You can reshape dirt, sand, or clay in the area in any manner you choose for the Duration. You can raise or lower the area's elevation, create or fill in a trench, erect or flatten a wall, or form a pillar. The extent of any such changes can't exceed half the area's largest dimension. So, if you affect a 40-foot square, you can create a pillar up to 20 feet high, raise or lower the square's elevation by up to 20 feet, dig a trench up to 20 feet deep, and so on. It takes 10 minutes for these changes to complete.
At the end of every 10 minutes you spend concentrating on the spell, you can choose a new area of terrain to affect.
Because the terrain's transformation occurs slowly, creatures in the area can't usually be trapped or injured by the ground's Movement.
This spell can't manipulate natural stone or stone construction. Rocks and structures shift to accommodate the new terrain. If the way you shape the terrain would make a structure unstable, it might collapse.
Similarly, this spell doesn't directly affect Plant Growth. The moved earth carries any Plants along with it.
You summon a fey creature of challenge rating 6 or lower, or a fey spirit that takes the form of a beast of challenge rating 6 or lower. It appears in an unoccupied space that you can see within range. The fey creature disappears when it drops to 0 hit points or when the spell ends.
The fey creature is friendly to you and your companions for the duration. Roll initiative for the creature, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you), as long as they don't violate its alignment. If you don't issue any commands to the fey creature, it defends itself from hostile creatures but otherwise takes no actions.
If your concentration is broken, the fey creature doesn't disappear. Instead, you lose control of the fey creature, it becomes hostile toward you and your companions, and it might attack. An uncontrolled fey creature can't be dismissed by you, and it disappears 1 hour after you summoned it.
Higher Levels. When you cast this spell using a spell slot of 7th level or higher, the challenge rating increases by 1 for each slot level above 6th.
You alter time around up to six creatures of your choice in a 40-foot cube within range. Each target must succeed on a Wisdom saving throw or be affected by this spell for the duration.
An affected target's speed is halved, it takes a -2 penalty to AC and Dexterity saving throws, and it can't use reactions. On its turn, it can use either an action or a bonus action, not both. Regardless of the creature's abilities or magic items, it can't make more than one melee or ranged attack during its turn.
If the creature attempts to cast a spell with a casting time of 1 action, roll a d20. On an 11 or higher, the spell doesn't take effect until the creature's next turn, and the creature must use its action on that turn to complete the spell. If it can't, the spell is wasted.
A creature affected by this spell makes another Wisdom saving throw at the end of its turn. On a successful save, the effect ends for it.
You create a ward that protects up to 2,500 square feet of floor space (an area 50 feet square, or one hundred 5-foot squares or twenty-five 10-foot squares). The warded area can be up to 20 feet tall, and shaped as you desire. You can ward several stories of a stronghold by dividing the area among them, as long as you can walk into each contiguous area while you are casting the spell.
When you cast this spell, you can specify individuals that are unaffected by any or all of the Effects that you choose. You can also specify a password that, when spoken aloud, makes the speaker immune to these Effects.
Guards and wards creates the following Effects within the warded area.
Corridors. Fog fills all the warded corridors, making them heavily obscured. In addition, at each intersection or branching passage offering a choice of direction, there is a 50 percent chance that a creature other than you will believe it is going in the opposite direction from the one it chooses.
Doors. All doors in the warded area are magically locked, as if sealed by an Arcane Lock spell. In addition, you can cover up to ten doors with an Illusion (equivalent to the illusory object function of the Minor Illusion spell) to make them appear as plain sections of wall.
Stairs. Webs fill all stairs in the warded area from top to bottom, as the web spell. These strands regrow in 10 minutes if they are burned or torn away while guards and wards lasts.
Other Spell Effect. You can place your choice of one of the following magical Effects within the warded area of the stronghold.
The whole warded area radiates magic. A Dispel Magic cast on a specific effect, if successful, removes only that effect.
You can create a permanently guarded and warded structure by casting this spell there every day for one year.
You touch a dead humanoid or a piece of a dead humanoid. Provided that the creature has been dead no longer than 10 days, the spell forms a new adult body for it and then calls the soul to enter that body. If the target's soul isn't free or willing to do so, the spell fails.
The magic fashions a new body for the creature to inhabit, which likely causes the creature's race to change. The DM rolls on the @Compendium[dnd5e.tables.eXu1QFMsFtTtoJBZ]{Reincarnate} table to determine what form the creature takes when restored to life, or the DM chooses a form.
The reincarnated creature recalls its former life and experiences. It retains the capabilities it had in its original form, except it exchanges its original race for the new one and changes its Racial Traits accordingly.
This spell allows you to move at an incredible pace. When you cast this spell, and then as a bonus action on each of your turns until the spell ends, you can take the Dash action.
The Circle of the Land is made up of mystics and sages who safeguard ancient knowledge and rites through a vast oral tradition. These druids meet within sacred circles of trees or standing stones to whisper primal secrets in Druidic. The circle's wisest members preside as the chief priests of communities that hold to the Old Faith and serve as advisors to the rulers of those folk. As a member of this circle, your magic is influenced by the land where you were initiated into the circle's mysterious rites.
Monks of the Way of the Open Hand are the ultimate masters of martial arts combat, whether armed or unarmed. They learn techniques to push and trip their opponents, manipulate ki to heal damage to their bodies, and practice advanced meditation that can protect them from harm.
Bards of the College of Lore know something about most things, collecting bits of knowledge from sources as diverse as scholarly tomes and peasant tales. Whether singing folk ballads in taverns or elaborate compositions in royal courts, these bards use their gifts to hold audiences spellbound. When the applause dies down, the audience members might find themselves questioning everything they held to be true, from their faith in the priesthood of the local temple to their loyalty to the king.
The loyalty of these bards lies in the pursuit of beauty and truth, not in fealty to a monarch or following the tenets of a deity. A noble who keeps such a bard as a herald or advisor knows that the bard would rather be honest than politic.
The college's members gather in libraries and sometimes in actual colleges, complete with classrooms and dormitories, to share their lore with one another. They also meet at festivals or affairs of state, where they can expose corruption, unravel lies, and poke fun at self-important figures of authority.
You focus your study on magic that creates powerful elemental effects such as bitter cold, searing flame, rolling thunder, crackling lightning, and burning acid. Some evokers find employment in military forces, serving as artillery to blast enemy armies from afar. Others use their spectacular power to protect the weak, while some seek their own gain as bandits, adventurers, or aspiring tyrants.
You hone your skills in the larcenous arts. Burglars, bandits, cutpurses, and other criminals typically follow this archetype, but so do rogues who prefer to think of themselves as professional treasure seekers, explorers, delvers, and investigators. In addition to improving your agility and stealth, you learn skills useful for delving into ancient ruins, reading unfamiliar languages, and using magic items you normally couldn't employ.
The Oath of Devotion binds a paladin to the loftiest ideals of justice, virtue, and order. Sometimes called cavaliers, white knights, or holy warriors, these paladins meet the ideal of the knight in shining armor, acting with honor in pursuit of justice and the greater good. They hold themselves to the highest standards of conduct, and some, for better or worse, hold the rest of the world to the same standards. Many who swear this oath are devoted to gods of law and good and use their gods' tenets as the measure of their devotion. They hold angels—the perfect servants of good—as their ideals, and incorporate images of angelic wings into their helmets or coats of arms.
Though the exact words and strictures of the Oath of Devotion vary, paladins of this oath share these tenets.
Honesty. Don't lie or cheat. Let your word be your promise.
Courage. Never fear to act, though caution is wise.
Compassion. Aid others, protect the weak, and punish those who threaten them. Show mercy to your foes, but temper it with wisdom.
Honor. Treat others with fairness, and let your honorable deeds be an example to them. Do as much good as possible while causing the least amount of harm.
Duty. Be responsible for your actions and their consequences, protect those entrusted to your care, and obey those who have just authority over you.
You gain oath spells at the paladin levels listed.
The archetypal Champion focuses on the development of raw physical power honed to deadly perfection. Those who model themselves on this archetype combine rigorous training with physical excellence to deal devastating blows.
For some barbarians, rage is a means to an end—that end being violence. The Path of the Berserker is a path of untrammeled fury, slick with blood. As you enter the berserker's rage, you thrill in the chaos of battle, heedless of your own health or well-being.
Emulating the Hunter archetype means accepting your place as a bulwark between civilization and the terrors of the wilderness. As you walk the Hunter's path, you learn specialized techniques for fighting the threats you face, from rampaging ogres and hordes of orcs to towering giants and terrifying dragons.
Peppercorns are the tiny fruit, or drupe, of the pepper plant, a flowering vine also known as the piper nigrum. Highly prized by chefs for its versaility and can be utilized in a pinch by adventurers when ground down for distractions and shenanigans.
Silver has long been appreciated for its unreactive nature and ease with which it can be shaped into the finest of decorations, adornments, and of course used as coin.
Silver is rarely found in its native form in nuggets. Normally it is found mixed with other substances like sulfur or chlorine, in ores, or as an alloy with the likes of gold. Surface silver can be found, but is much more commonly mined underground. Silver mining is lucrative and can inspire silver-rushes.
Grain that has been ground by a miller in the next step along the food chain.
Far rarer than gold, platinum may either be treated as the pinnacle of wealth, or the vestige of a bygone age that may be met with distrust or envy.
Unlike gold, platinum is almost exclusively mined underground.
A square yard of linen of average quality and weight. Used for all many of items and clothing.
Longer lasting than cotton, its durability and breathability make it particularly valued in warm climtes.
Different types of linen do exist, with lighter weaves starting at 6 ounces per square yard, and the rest going up to 15 ounces.
Gold is the king of currency for many civilizations. Usually more common than the likes of platinum, but nowhere near as common as other metals like iron, it occupies a sweet spot in rarity and unreactiveness.
Unlike silver, gold can be found more easily on the surface. Both surface and underground mining can be extremely profitable. Gold rushes can and have been a source a great happiness and huge tragedy.
Likely to be one of the most highly prized ingredients in the world, saffron is so expensive because it is so labor-intensive to produce. Made from the Crocus sativus, or more commonly the \"saffron crocus\", it takes 80,000 crocus flowers to produce 1 pound of saffron.By weight, it is worth more than gold. Treasured by the most discerning of cooks and apothecaries for its flavoring and purported health benefits.
A useful creature for small-area farmers and highland dwellers, though not quite as nimble as goats, they have the valuable ability to be sheared every year, giving people a source of clothing, rugs, and throws for beds and chairs. Their larger size also means they are more valuable for slaughter.
Depending on the breed, adult sheep can range from 100 pounds all the way up to 350 pounds.
Taken from the inner bark of the cinnamon tree, a popular if slightly rarer spice, amongst chefs of the world. Adored by children when combined with sugar to make many kinds of treats.
Often the workhorse of the metalworker, iron is appreciated for its relative abundence and ease of attainment. Surface iron can be found from fallen meteors and xenoliths, but is much more commonly mined underground. However, care must be given otherwise rust will take its toll.
A spice that comes from the fresh or dried root of the ginger plant Zingiber officinale. It belongs to the same family as tumeric and cardamom.
Valued by chefs and sweet-makers, loved by children and those with spicier tastes.
A creature for large-area farmers, cows require large areas of flat grazing meaning they are not as common as other livestock. However, they live longer, and give far more milk. They are also a source for much more durable leather that is less prone to cracking and is resistant to heat and dirt.
Depending in the gender and breed, adult cows can weigh between 1,000 and 1,800 pounds.
Essentially a specially trained beef or dairy steer that has reached the age of 5. These heavy-duty beasts of burden can pull or carry up to and over their own body weight. Used for a multitude of tasks like hauling wagons, threshing grain, powering machines that irrigate or grind grain, and even been ridden, oxen are highly prized creatures for workers in a range of fields.
A common ingredient for bread, beer, and more; this staple often forms the base of a diet for people where their land is open and relatively flat, the weather temperate, and the area safe enough for farmers to operate.
A creature for medium- or larger area farmers, pigs breed relatively quickly and are sturdy creatures that provide all manner of cooking possibilities for the enterprizing cook, foremost of which is of course bacon. Their skin can also be used as a cheaper leather, but it is less tear-resistant compared to lamb or goat. Pigs are also the source of lard.
Most pigs weigh between 250 and 270 pounds at slaughter as it gives optimal retail cuts and medium fat covering.
A square yard of cotton of average quality and weight. Used for all many of items and clothing.
Far lighter, more comfortable, and easier to work with than canvas; however, the comparatively more delicate crop means it is accordingly more expensive and potentially harder to come by.
Coveted by advanced shipwrights, alchemists, certain jewelers, and chefs alike, copper is commonly surface mined but underground mining exists when surface sources have been depleted or unable to be located.
Although it can be used for armor, it is far better mixed with tin to make the much more superior bronze alloy for military needs.
Prized by chefs and quartermasters alike as a seasoning and preservative for supplies where alcohol or vinegar are undesired.
A square yard of silk of average quality and weight. Used for all many of items and clothing.
The finest and most desirable of the common fabrics, silk is also the lightest. Most silks will weigh between 2 and 4 ounces per square yard. The heavier the silk, the higher the quality, more durable, and more opaque in color it is.
The source of omelettes and chicken wings, the average adult chicken weighs between 5 and 10 pounds.
A square yard of canvas of average quality and weight. Used for all many of items and clothing.
Graded from 1 to 12, the lower the number, the better the quality and the heavier the weight. #1 quality canvas weighs around 1.7 pounds per square yard, while the weaker, lighter #12 can weigh only 0.7 pounds.
A useful creature for small-area farmers and highland dwellers, goats are effective at keeping meadows from overgrowing while providing milk, cheese, and eventually skins and meat.
Depending on the breed, adult goats can range from 45 pounds all the way up to 300 pounds.
A strong spice treasured by both chefs and distillers, working well to flavor meat and stews, rich sauces, warm beverages like cider and chai tea, bread, cheeses, and sweet desserts like pies and fruitcakes.
Cloves are the rich, dried, unopened buds of the Syzygium aromaticum, an evergreen tree in the myrtle family.
{{localize "DND5E.FilterNoSpells"}}
{{localize "DND5E.AdvancementAbilityScoreImprovementCapHint"}}
{{pointCap}}
{{hint}}
{{localize (lookup (lookup CONFIG.traitModes configuration.mode) "hint")}}
{{localize "DND5E.AdvancementTraitAllowReplacementsHint"}}
{{localize "DND5E.AdvancementTraitGrantsHint"}}
{{localize "DND5E.AdvancementTraitChoicesHint"}}
{{title}}
{{note}}
{{this}}
{{localize "DND5E.MovementConfigHint"}}
{{ localize "DND5E.RequiredMaterials" }}. {{data.materials.value}}
+ {{localize "DND5E.Armor"}}: {{advancement.traits.armor}} + {{localize "TYPES.Item.weaponPl"}}: {{advancement.traits.weapons}} + {{localize "TYPES.Item.toolPl"}}: {{advancement.traits.tools}} + {{localize "DND5E.ClassSaves"}}: {{advancement.traits.saves}} + {{localize "DND5E.Skills"}}: {{advancement.traits.skills}} +